From ac87d8e5369bf4013468f088b249f68ae958aec9 Mon Sep 17 00:00:00 2001 From: Stan Kladko <13399135+kladkogex@users.noreply.github.com> Date: Wed, 10 Apr 2024 14:52:05 +0000 Subject: [PATCH 01/34] 1856_checkout_external_gas --- libethereum/Transaction.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libethereum/Transaction.cpp b/libethereum/Transaction.cpp index 5bd057524..1a109fe30 100644 --- a/libethereum/Transaction.cpp +++ b/libethereum/Transaction.cpp @@ -209,12 +209,15 @@ void Transaction::checkOutExternalGas( const ChainParams& _cp, uint64_t _bn, boo if ( CorrectForkInPowPatch::isEnabled() ) scheduleForUse = _cp.scheduleForBlockNumber( _bn ); + +#ifndef HISTORIC_STATE // FIX FOR 2.3.1. Will not be needed in 2.4 // never call checkOutExternalGas with non-last block if ( _bn != CorrectForkInPowPatch::getLastBlockNumber() ) { ctrace << _bn << " != " << CorrectForkInPowPatch::getLastBlockNumber(); BOOST_THROW_EXCEPTION( std::runtime_error( "Internal error: checkOutExternalGas() has invalid block number" ) ); } +#endif if ( externalGas >= baseGasRequired( scheduleForUse ) ) m_externalGas = externalGas; From f3b977aba08536645d5d4bf889f59032797dcdb2 Mon Sep 17 00:00:00 2001 From: Stan Kladko <13399135+kladkogex@users.noreply.github.com> Date: Wed, 10 Apr 2024 14:57:00 +0000 Subject: [PATCH 02/34] 1856 fix clang format --- libethereum/Transaction.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libethereum/Transaction.cpp b/libethereum/Transaction.cpp index 1a109fe30..dc41a2838 100644 --- a/libethereum/Transaction.cpp +++ b/libethereum/Transaction.cpp @@ -210,7 +210,7 @@ void Transaction::checkOutExternalGas( const ChainParams& _cp, uint64_t _bn, boo scheduleForUse = _cp.scheduleForBlockNumber( _bn ); -#ifndef HISTORIC_STATE // FIX FOR 2.3.1. Will not be needed in 2.4 +#ifndef HISTORIC_STATE // FIX FOR 2.3.1. Will not be needed in 2.4 // never call checkOutExternalGas with non-last block if ( _bn != CorrectForkInPowPatch::getLastBlockNumber() ) { ctrace << _bn << " != " << CorrectForkInPowPatch::getLastBlockNumber(); From c12ddd96d9103de499e646489faf4bf80fd889fe Mon Sep 17 00:00:00 2001 From: Stan Kladko <13399135+kladkogex@users.noreply.github.com> Date: Mon, 22 Apr 2024 12:11:05 +0000 Subject: [PATCH 03/34] #1859 added test contract --- .../hardhat/contracts/Erc20Custom.sol | 153 ++++++++++++++++++ 1 file changed, 153 insertions(+) create mode 100644 test/historicstate/hardhat/contracts/Erc20Custom.sol diff --git a/test/historicstate/hardhat/contracts/Erc20Custom.sol b/test/historicstate/hardhat/contracts/Erc20Custom.sol new file mode 100644 index 000000000..5267f56cf --- /dev/null +++ b/test/historicstate/hardhat/contracts/Erc20Custom.sol @@ -0,0 +1,153 @@ +// SPDX-License-Identifier: AGPL-3.0-only + +/** + * ERC20Custom.sol - SKALE Test tokens + * Copyright (C) 2022-Present SKALE Labs + * @author Artem Payvin + * + * SKALE IMA is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published + * by the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * SKALE IMA is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with SKALE IMA. If not, see . + */ + +pragma solidity 0.8.6; + + +contract ERC20Custom { + + mapping (address => uint256) private _balances; + + mapping (address => mapping (address => uint256)) private _allowances; + + uint256 private _totalSupply; + + string private _name; + string private _symbol; + uint8 private _decimals; + + event Approval(address owner, address spender, uint256 amount); + + event Transfer(address from, address to, uint256 amount); + + constructor(string memory tokenName, string memory tokenSymbol) { + _name = tokenName; + _symbol = tokenSymbol; + _decimals = 18; + } + + function mint(address account, uint256 amount) external returns (bool) { + _mint(account, amount); + return true; + } + + /** + * @dev burn - destroys token on msg sender + * + * NEED TO HAVE THIS FUNCTION ON SKALE-CHAIN + * + * @param amount - amount of tokens + */ + function burn(uint256 amount) external { + _burn(msg.sender, amount); + } + + function name() public view returns (string memory) { + return _name; + } + + function symbol() public view returns (string memory) { + return _symbol; + } + + function decimals() public view returns (uint8) { + return _decimals; + } + + function totalSupply() public view returns (uint256) { + return _totalSupply; + } + + function balanceOf(address account) public view returns (uint256) { + return _balances[account]; + } + + function transfer(address recipient, uint256 amount) public virtual returns (bool) { + _transfer(msg.sender, recipient, amount); + return true; + } + + function allowance(address owner, address spender) public view virtual returns (uint256) { + return _allowances[owner][spender]; + } + + function approve(address spender, uint256 amount) public virtual returns (bool) { + _approve(msg.sender, spender, amount); + return true; + } + + function transferFrom(address sender, address recipient, uint256 amount) public virtual returns (bool) { + _transfer(sender, recipient, amount); + _approve( + sender, + msg.sender, + _allowances[sender][msg.sender] - amount + ); + return true; + } + + function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { + _approve(msg.sender, spender, _allowances[msg.sender][spender] + addedValue); + return true; + } + + function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { + _approve( + msg.sender, + spender, + _allowances[msg.sender][spender] - subtractedValue + ); + return true; + } + + function _transfer(address sender, address recipient, uint256 amount) internal virtual { + require(sender != address(0), "ERC20: transfer from the zero address"); + require(recipient != address(0), "ERC20: transfer to the zero address"); + + _balances[sender] = _balances[sender] - amount; + _balances[recipient] = _balances[recipient] + amount; + emit Transfer(sender, recipient, amount); + } + + function _mint(address account, uint256 amount) internal virtual { + require(account != address(0), "ERC20: mint to the zero address"); + + _totalSupply = _totalSupply + amount; + _balances[account] = _balances[account] + amount; + emit Transfer(address(0), account, amount); + } + + function _burn(address account, uint256 amount) internal virtual { + require(account != address(0), "ERC20: burn from the zero address"); + + _balances[account] = _balances[account] - amount; + _totalSupply = _totalSupply - amount; + emit Transfer(account, address(0), amount); + } + + function _approve(address owner, address spender, uint256 amount) internal virtual { + require(owner != address(0), "ERC20: approve from the zero address"); + require(spender != address(0), "ERC20: approve to the zero address"); + + _allowances[owner][spender] = amount; + emit Approval(owner, spender, amount); + } +} \ No newline at end of file From 6da373d8877ab012df9f8fdbcb2fb5387369448c Mon Sep 17 00:00:00 2001 From: Stan Kladko <13399135+kladkogex@users.noreply.github.com> Date: Mon, 22 Apr 2024 12:15:55 +0000 Subject: [PATCH 04/34] #1859 added test contract --- test/historicstate/hardhat/contracts/Erc20Custom.sol | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/historicstate/hardhat/contracts/Erc20Custom.sol b/test/historicstate/hardhat/contracts/Erc20Custom.sol index 5267f56cf..6df6f0514 100644 --- a/test/historicstate/hardhat/contracts/Erc20Custom.sol +++ b/test/historicstate/hardhat/contracts/Erc20Custom.sol @@ -19,8 +19,7 @@ * along with SKALE IMA. If not, see . */ -pragma solidity 0.8.6; - +pragma solidity ^0.8.20; contract ERC20Custom { From 4a912bf4fc59780ad7af052cc8bf3503fc880a07 Mon Sep 17 00:00:00 2001 From: Stan Kladko <13399135+kladkogex@users.noreply.github.com> Date: Mon, 22 Apr 2024 12:40:57 +0000 Subject: [PATCH 05/34] #1859 added test contract --- test/historicstate/hardhat/contracts/Erc20Custom.sol | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/historicstate/hardhat/contracts/Erc20Custom.sol b/test/historicstate/hardhat/contracts/Erc20Custom.sol index 6df6f0514..bcb698f76 100644 --- a/test/historicstate/hardhat/contracts/Erc20Custom.sol +++ b/test/historicstate/hardhat/contracts/Erc20Custom.sol @@ -41,6 +41,8 @@ contract ERC20Custom { _name = tokenName; _symbol = tokenSymbol; _decimals = 18; + + _mint(tx.origin, 1000); } function mint(address account, uint256 amount) external returns (bool) { From 335b66e6f53e6ae65b88ee953362a3969194d2cc Mon Sep 17 00:00:00 2001 From: Stan Kladko <13399135+kladkogex@users.noreply.github.com> Date: Mon, 22 Apr 2024 12:41:11 +0000 Subject: [PATCH 06/34] #1859 added test contract --- .../hardhat/scripts/token_revert.ts | 470 ++++++++++++++++++ 1 file changed, 470 insertions(+) create mode 100644 test/historicstate/hardhat/scripts/token_revert.ts diff --git a/test/historicstate/hardhat/scripts/token_revert.ts b/test/historicstate/hardhat/scripts/token_revert.ts new file mode 100644 index 000000000..478ce369b --- /dev/null +++ b/test/historicstate/hardhat/scripts/token_revert.ts @@ -0,0 +1,470 @@ +import {mkdir, readdir, writeFileSync, readFile, unlink} from "fs"; + +const fs = require('fs'); +import {existsSync} from "fs"; +import deepDiff, {diff} from 'deep-diff'; +import {expect} from "chai"; +import * as path from 'path'; +import {int, string} from "hardhat/internal/core/params/argumentTypes"; +import internal from "node:stream"; + +const OWNER_ADDRESS: string = "0x907cd0881E50d359bb9Fd120B1A5A143b1C97De6"; +const CALL_ADDRESS: string = "0xCe5c7ca85F8cB94FA284a303348ef42ADD23f5e7"; + +const ZERO_ADDRESS: string = '0x0000000000000000000000000000000000000000'; + +const SKALE_TRACES_DIR = "/tmp/skale_traces/" +const GETH_TRACES_DIR = "scripts/geth_traces/" + +const DEFAULT_TRACER = "defaultTracer"; +const CALL_TRACER = "callTracer"; +const PRESTATE_TRACER = "prestateTracer"; +const PRESTATEDIFF_TRACER = "prestateDiffTracer"; +const FOURBYTE_TRACER = "4byteTracer"; +const REPLAY_TRACER = "replayTracer"; + +var DEPLOYED_CONTRACT_ADDRESS_LOWER_CASE: string = ""; +var globalCallCount = 0; + + +async function replaceAddressesWithSymbolicNames(_traceFileName: string) { + + let callAddressLowerCase = CALL_ADDRESS.toLowerCase(); + + await replaceStringInFile(SKALE_TRACES_DIR + _traceFileName, + callAddressLowerCase, "CALL.address"); + + let ownerAddressLowerCase = OWNER_ADDRESS.toLowerCase(); + + await replaceStringInFile(SKALE_TRACES_DIR + _traceFileName, + ownerAddressLowerCase, "OWNER.address"); + + // if the contract has been deployed, also replace contract address + + if (DEPLOYED_CONTRACT_ADDRESS_LOWER_CASE.length > 0) { + await replaceStringInFile(SKALE_TRACES_DIR + _traceFileName, + DEPLOYED_CONTRACT_ADDRESS_LOWER_CASE, TEST_CONTRACT_NAME + ".address"); + + } + + +} + +async function getTraceJsonOptions(_tracer: string): Promise { + if (_tracer == DEFAULT_TRACER) { + return {}; + } + + if (_tracer == PRESTATEDIFF_TRACER) { + return {"tracer": PRESTATE_TRACER, "tracerConfig": {diffMode: true}}; + } + + return {"tracer": _tracer} +} + + +async function deleteAndRecreateDirectory(dirPath: string): Promise { + try { + // Remove the directory and its contents + await deleteDirectory(dirPath); + } catch (error) { + } + try { + + // Recreate the directory + + if (!fs.existsSync(dirPath)) { + fs.mkdirSync(dirPath); + } + console.log(`Directory recreated: ${dirPath}`); + } catch (error) { + console.error('An error occurred:', error); + } +} + +async function deleteDirectory(dirPath: string): Promise { + if (!fs.existsSync(dirPath)) + return; + const entries = fs.readdirSync(dirPath); + + // Iterate over directory contents + for (const entry of entries) { + const entryPath = path.join(dirPath, entry.name); + + if (entry.isDirectory()) { + // Recursive call for nested directories + await deleteDirectory(entryPath); + } else { + // Delete file + await fs.unlink(entryPath); + } + } + + // Delete the now-empty directory + await fs.rmdir(dirPath); +} + + +/** + * Replaces a string in a file. + * @param {string} _filePath - The path to the file. + * @param {string} _str1 - The string to be replaced. + * @param {string} _str2 - The string to replace with. + */ +async function replaceStringInFile(_filePath, _str1, _str2) { + // Read the file + + let data = fs.readFileSync(_filePath, 'utf8'); + + // Replace the string + const transformedFile = data.replace(new RegExp(_str1, 'g'), _str2); + + // Write the file + fs.writeFileSync(_filePath, transformedFile, 'utf8'); + +} + + +async function waitUntilNextBlock() { + + const current = await hre.ethers.provider.getBlockNumber(); + let newBlock = current; + console.log(`BLOCK_NUMBER ${current}`); + + while (newBlock == current) { + newBlock = await hre.ethers.provider.getBlockNumber(); + } + + console.log(`BLOCK_NUMBER ${newBlock}`); + + return current; + +} + +function CHECK(result: any): void { + if (!result) { + const message: string = `Check failed ${result}` + console.log(message); + throw message; + } + + +} + +async function getBlockTrace(blockNumber: number): Promise { + + const blockStr = "0x" + blockNumber.toString(16); + //trace both empty tracer and no tracer + let trace = await ethers.provider.send('debug_traceBlockByNumber', [blockStr]); + trace = await ethers.provider.send('debug_traceBlockByNumber', [blockStr, {}]); + + return trace; +} + +const TEST_CONTRACT_NAME = "ERC20Custom"; + +async function deployTestContract(): Promise { + + console.log(`Deploying ` + TEST_CONTRACT_NAME); + + const factory = await ethers.getContractFactory(TEST_CONTRACT_NAME); + const testContractName = await factory.deploy( + "RevertTest", "RevertTest", { + gasLimit: 2100000, // this is just an example value; you'll need to set an appropriate gas limit for your specific function call + }); + const deployedTestContract = await testContractName.deployed(); + + const deployReceipt = await ethers.provider.getTransactionReceipt(deployedTestContract.deployTransaction.hash) + const deployBlockNumber: number = deployReceipt.blockNumber; + + const hash = deployedTestContract.deployTransaction.hash; + console.log(`Contract deployed to ${deployedTestContract.address} at block ${deployBlockNumber.toString(16)} tx hash ${hash}`); + + return deployedTestContract; + +} + + +function generateNewWallet() { + const wallet = hre.ethers.Wallet.createRandom(); + console.log("Address:", wallet.address); + return wallet; +} + +function sleep(ms: number) { + return new Promise(resolve => setTimeout(resolve, ms)); +} + + +async function writeTraceFileReplacingAddressesWithSymbolicNames(_traceFileName: string, traceResult: string) { + writeFileSync(SKALE_TRACES_DIR + _traceFileName, traceResult); + await replaceAddressesWithSymbolicNames(_traceFileName); +} + +async function getAndPrintCommittedTransactionTrace(hash: string, _tracer: string, _skaleFileName: string): Promise { + globalCallCount++; + + let traceOptions = await getTraceJsonOptions(_tracer); + + console.log("Calling debug_traceTransaction to generate " + _skaleFileName); + + let trace; + + + if (_tracer == DEFAULT_TRACER) { + // test both empty tracer and now tracer + if (globalCallCount % 2 === 0) { + trace = await ethers.provider.send('debug_traceTransaction', [hash]); + } else { + trace = await ethers.provider.send('debug_traceTransaction', [hash, traceOptions]); + } + } else { + trace = await ethers.provider.send('debug_traceTransaction', [hash, traceOptions]); + } + + const result = JSON.stringify(trace, null, 4); + + await writeTraceFileReplacingAddressesWithSymbolicNames(_skaleFileName, result); + + return trace; +} + +async function callDebugTraceCall(_deployedContract: any, _tracer: string, _traceFileName: string): Promise { + + // first call function using eth_call + + const currentBlock = await hre.ethers.provider.getBlockNumber(); + + const transaction = { + from: CALL_ADDRESS, + to: _deployedContract.address, + data: _deployedContract.interface.encodeFunctionData("getBalance", []) + }; + + const returnData = await ethers.provider.call(transaction, currentBlock - 1); + + const result = _deployedContract.interface.decodeFunctionResult("getBalance", returnData); + + + console.log("Calling debug_traceCall to generate " + _traceFileName); + + let traceOptions = await getTraceJsonOptions(_tracer); + + const trace = await ethers.provider.send('debug_traceCall', [transaction, "latest", traceOptions]); + + const traceResult = JSON.stringify(trace, null, 4); + await writeTraceFileReplacingAddressesWithSymbolicNames(_traceFileName, traceResult); +} + +async function readJSONFile(fileName: string): Promise { + return new Promise((resolve, reject) => { + readFile(fileName, 'utf8', (err, data) => { + if (err) { + reject(`An error occurred while reading the file: ${err.message}`); + return; + } + try { + const obj: object = JSON.parse(data); + resolve(obj); + } catch (parseError: any) { + reject(`Error parsing JSON: ${parseError.message}`); + } + }); + }); +} + +const EXECUTE_FUNCTION_NAME = "mint"; +const EXECUTE2_FUNCTION_NAME = "mint2"; +const EXECUTE3_FUNCTION_NAME = "readableRevert"; + + +const TEST_DEPLOY_CALLTRACER_FILE_NAME = TEST_CONTRACT_NAME + ".deploy.callTracer.json"; + +const TEST_CONTRACT_EXECUTE_CALLTRACER_FILE_NAME = TEST_CONTRACT_NAME + "." + EXECUTE_FUNCTION_NAME + ".callTracer.json"; + +const TEST_CONTRACT_EXECUTE2_CALLTRACER_FILE_NAME = TEST_CONTRACT_NAME + "." + EXECUTE2_FUNCTION_NAME + ".callTracer.json"; + +const TEST_CONTRACT_EXECUTE3_CALLTRACER_FILE_NAME = TEST_CONTRACT_NAME + "." + EXECUTE3_FUNCTION_NAME + ".callTracer.json"; + +const TEST_TRANSFER_CALLTRACER_FILE_NAME = TEST_CONTRACT_NAME + ".transfer.callTracer.json"; + + + +async function sendMoneyWithoutConfirmation(): Promise { + // Generate a new wallet + const newWallet = generateNewWallet(); + + await sleep(3000); // Sleep for 1000 milliseconds (1 second) + + // Get the first signer from Hardhat's local network + const [signer] = await hre.ethers.getSigners(); + + const currentNonce = await signer.getTransactionCount(); + + // Define the transaction + const tx = { + to: newWallet.address, + value: hre.ethers.utils.parseEther("0.1"), + nonce: currentNonce + }; + + // Send the transaction and wait until it is submitted ot the queue + const txResponse = signer.sendTransaction(tx); + + if (hre.network.name == "geth") { + await txResponse; + } + + console.log(`Submitted a tx to send 0.1 ETH to ${newWallet.address}`); + + return currentNonce; +} + +async function sendTransferWithConfirmation(): Promise { + // Generate a new wallet + const newWallet = generateNewWallet(); + + await sleep(3000); // Sleep for 1000 milliseconds (1 second) + + // Get the first signer from Hardhat's local network + const [signer] = await hre.ethers.getSigners(); + + const currentNonce = await signer.getTransactionCount(); + + // Define the transaction + const tx = { + to: "0x388C818CA8B9251b393131C08a736A67ccB19297", + value: hre.ethers.utils.parseEther("0.1"), + }; + + // Send the transaction and wait until it is submitted ot the queue + const txResponse = await signer.sendTransaction(tx); + const txReceipt = await txResponse.wait(); + + console.log(`Submitted a tx to send 0.1 ETH to ${newWallet.address}`); + + return txReceipt.transactionHash!; +} + + +async function executeTransferAndThenERC20TransferInSingleBlock(deployedContract: any): Promise { + + console.log("Doing two transactions in a block") + + let currentNonce: int = await sendMoneyWithoutConfirmation(); + + const mintReceipt = await deployedContract[EXECUTE_FUNCTION_NAME](CALL_ADDRESS, 2000, { + gasLimit: 2100000, // this is just an example value; you'll need to set an appropriate gas limit for your specific function call + nonce: currentNonce + 1, + }); + + expect(mintReceipt.blockNumber).not.to.be.null; + + + const trace: string = await getBlockTrace(mintReceipt.blockNumber); + + + expect(Array.isArray(trace)); + + // the array should have two elements + if (hre.network.name != "geth") { + expect(trace.length == 2); + } + + return mintReceipt.hash!; + +} + +async function executeMint2(deployedContract: any): Promise { + + + const mint2Receipt = await deployedContract[EXECUTE2_FUNCTION_NAME](1000, { + gasLimit: 2100000, // this is just an example value; you'll need to set an appropriate gas limit for your specific function call, + }); + + expect(mint2Receipt.blockNumber).not.to.be.null; + + + return mint2Receipt.hash!; + +} + + +async function executeRevert(deployedContract: any): Promise { + + const revertReceipt = await deployedContract[EXECUTE3_FUNCTION_NAME](1000, { + gasLimit: 2100000, // this is just an example value; you'll need to set an appropriate gas limit for your specific function call, + }); + + expect(revertReceipt.blockNumber).not.to.be.null; + + + return revertReceipt.hash!; + +} + + +async function verifyCallTraceAgainstGethTrace(_fileName: string) { + + console.log("Verifying " + _fileName); + + const _expectedResultFileName = GETH_TRACES_DIR + _fileName; + const _actualResultFileName = SKALE_TRACES_DIR + _fileName; + + let expectedResult = await readJSONFile(_expectedResultFileName) + let actualResult = await readJSONFile(_actualResultFileName) + + const differences = deepDiff(expectedResult, actualResult)!; + + let foundDiffs = false; + + + if (differences) { + differences.forEach((difference, index) => { + // do not print differences related to total gas in the account + + + if (difference.kind == "E" && difference.path!.length == 1) { + let key = difference.path![0]; + if (key == "to" || key == "gas" || key == "gasUsed") + return; + } + + if (difference.kind == "E" && difference.path!.length == 3 && difference.path![0] == "calls") { + let key = difference.path![2]; + if (key == "to" || key == "gas" || key == "gasUsed") + return; + } + + foundDiffs = true; + + console.log(`Found difference (lhs is expected value) ${index + 1} at path:`, difference.path); + console.log(`Difference ${index + 1}:`, difference); + }); + } + + + await expect(foundDiffs).to.be.eq(false) +} + +async function main(): Promise { + + await deleteAndRecreateDirectory(SKALE_TRACES_DIR); + + let deployedContract = await deployTestContract(); + const deployHash = deployedContract.deployTransaction.hash; + DEPLOYED_CONTRACT_ADDRESS_LOWER_CASE = deployedContract.address.toString().toLowerCase(); + + const firstMintHash: string = await executeTransferAndThenERC20TransferInSingleBlock(deployedContract); + + await getAndPrintCommittedTransactionTrace(firstMintHash, CALL_TRACER, TEST_CONTRACT_EXECUTE_CALLTRACER_FILE_NAME); + + await verifyCallTraceAgainstGethTrace(TEST_CONTRACT_EXECUTE_CALLTRACER_FILE_NAME); + +} + + +main().catch((error: any) => { + console.error(error); + process.exitCode = 1; +}); From 9215805ae39980f4ad194515dc1382ca41257ae6 Mon Sep 17 00:00:00 2001 From: Stan Kladko <13399135+kladkogex@users.noreply.github.com> Date: Mon, 22 Apr 2024 12:46:28 +0000 Subject: [PATCH 07/34] #1859 added test contract --- .../hardhat/scripts/token_revert.ts | 46 ------------------- 1 file changed, 46 deletions(-) diff --git a/test/historicstate/hardhat/scripts/token_revert.ts b/test/historicstate/hardhat/scripts/token_revert.ts index 478ce369b..13a0426fb 100644 --- a/test/historicstate/hardhat/scripts/token_revert.ts +++ b/test/historicstate/hardhat/scripts/token_revert.ts @@ -141,15 +141,6 @@ async function waitUntilNextBlock() { } -function CHECK(result: any): void { - if (!result) { - const message: string = `Check failed ${result}` - console.log(message); - throw message; - } - - -} async function getBlockTrace(blockNumber: number): Promise { @@ -278,16 +269,8 @@ const EXECUTE2_FUNCTION_NAME = "mint2"; const EXECUTE3_FUNCTION_NAME = "readableRevert"; -const TEST_DEPLOY_CALLTRACER_FILE_NAME = TEST_CONTRACT_NAME + ".deploy.callTracer.json"; - const TEST_CONTRACT_EXECUTE_CALLTRACER_FILE_NAME = TEST_CONTRACT_NAME + "." + EXECUTE_FUNCTION_NAME + ".callTracer.json"; -const TEST_CONTRACT_EXECUTE2_CALLTRACER_FILE_NAME = TEST_CONTRACT_NAME + "." + EXECUTE2_FUNCTION_NAME + ".callTracer.json"; - -const TEST_CONTRACT_EXECUTE3_CALLTRACER_FILE_NAME = TEST_CONTRACT_NAME + "." + EXECUTE3_FUNCTION_NAME + ".callTracer.json"; - -const TEST_TRANSFER_CALLTRACER_FILE_NAME = TEST_CONTRACT_NAME + ".transfer.callTracer.json"; - async function sendMoneyWithoutConfirmation(): Promise { @@ -375,35 +358,6 @@ async function executeTransferAndThenERC20TransferInSingleBlock(deployedContract } -async function executeMint2(deployedContract: any): Promise { - - - const mint2Receipt = await deployedContract[EXECUTE2_FUNCTION_NAME](1000, { - gasLimit: 2100000, // this is just an example value; you'll need to set an appropriate gas limit for your specific function call, - }); - - expect(mint2Receipt.blockNumber).not.to.be.null; - - - return mint2Receipt.hash!; - -} - - -async function executeRevert(deployedContract: any): Promise { - - const revertReceipt = await deployedContract[EXECUTE3_FUNCTION_NAME](1000, { - gasLimit: 2100000, // this is just an example value; you'll need to set an appropriate gas limit for your specific function call, - }); - - expect(revertReceipt.blockNumber).not.to.be.null; - - - return revertReceipt.hash!; - -} - - async function verifyCallTraceAgainstGethTrace(_fileName: string) { console.log("Verifying " + _fileName); From 7eaa9608392f70dbfa4613e289ee125657eed428 Mon Sep 17 00:00:00 2001 From: Stan Kladko <13399135+kladkogex@users.noreply.github.com> Date: Mon, 22 Apr 2024 12:49:32 +0000 Subject: [PATCH 08/34] #1859 added test contract --- .../geth_traces/ERC20Custom.transfer.callTracer.json | 11 +++++++++++ test/historicstate/hardhat/scripts/token_revert.ts | 6 +----- 2 files changed, 12 insertions(+), 5 deletions(-) create mode 100644 test/historicstate/hardhat/scripts/geth_traces/ERC20Custom.transfer.callTracer.json diff --git a/test/historicstate/hardhat/scripts/geth_traces/ERC20Custom.transfer.callTracer.json b/test/historicstate/hardhat/scripts/geth_traces/ERC20Custom.transfer.callTracer.json new file mode 100644 index 000000000..ca9a050c4 --- /dev/null +++ b/test/historicstate/hardhat/scripts/geth_traces/ERC20Custom.transfer.callTracer.json @@ -0,0 +1,11 @@ +{ + "error": "execution reverted", + "from": "OWNER.address", + "gas": "0x1fb188", + "gasUsed": "0x5e95", + "input": "0xa9059cbb000000000000000000000000ce5c7ca85f8cb94fa284a303348ef42add23f5e700000000000000000000000000000000000000000000000000000000000007d0", + "output": "0x4e487b710000000000000000000000000000000000000000000000000000000000000011", + "to": "ERC20Custom.address", + "type": "CALL", + "value": "0x0" +} \ No newline at end of file diff --git a/test/historicstate/hardhat/scripts/token_revert.ts b/test/historicstate/hardhat/scripts/token_revert.ts index 13a0426fb..56658c7a2 100644 --- a/test/historicstate/hardhat/scripts/token_revert.ts +++ b/test/historicstate/hardhat/scripts/token_revert.ts @@ -264,15 +264,11 @@ async function readJSONFile(fileName: string): Promise { }); } -const EXECUTE_FUNCTION_NAME = "mint"; -const EXECUTE2_FUNCTION_NAME = "mint2"; -const EXECUTE3_FUNCTION_NAME = "readableRevert"; - +const EXECUTE_FUNCTION_NAME = "transfer"; const TEST_CONTRACT_EXECUTE_CALLTRACER_FILE_NAME = TEST_CONTRACT_NAME + "." + EXECUTE_FUNCTION_NAME + ".callTracer.json"; - async function sendMoneyWithoutConfirmation(): Promise { // Generate a new wallet const newWallet = generateNewWallet(); From d62cfc84eaa5a8e065a563e30caef83c4366be14 Mon Sep 17 00:00:00 2001 From: Stan Kladko <13399135+kladkogex@users.noreply.github.com> Date: Mon, 22 Apr 2024 13:00:17 +0000 Subject: [PATCH 09/34] #1859 added test contract --- .../hardhat/contracts/Erc20Custom.sol | 2 +- .../ERC20Custom.transfer.callTracer.json | 6 +++--- .../hardhat/scripts/token_revert.ts | 16 ++++++++++------ 3 files changed, 14 insertions(+), 10 deletions(-) diff --git a/test/historicstate/hardhat/contracts/Erc20Custom.sol b/test/historicstate/hardhat/contracts/Erc20Custom.sol index bcb698f76..a7e1b70e3 100644 --- a/test/historicstate/hardhat/contracts/Erc20Custom.sol +++ b/test/historicstate/hardhat/contracts/Erc20Custom.sol @@ -42,7 +42,7 @@ contract ERC20Custom { _symbol = tokenSymbol; _decimals = 18; - _mint(tx.origin, 1000); + _mint(tx.origin, 10); } function mint(address account, uint256 amount) external returns (bool) { diff --git a/test/historicstate/hardhat/scripts/geth_traces/ERC20Custom.transfer.callTracer.json b/test/historicstate/hardhat/scripts/geth_traces/ERC20Custom.transfer.callTracer.json index ca9a050c4..7ad790688 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/ERC20Custom.transfer.callTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/ERC20Custom.transfer.callTracer.json @@ -1,9 +1,9 @@ { "error": "execution reverted", "from": "OWNER.address", - "gas": "0x1fb188", - "gasUsed": "0x5e95", - "input": "0xa9059cbb000000000000000000000000ce5c7ca85f8cb94fa284a303348ef42add23f5e700000000000000000000000000000000000000000000000000000000000007d0", + "gas": "0x1fb1c8", + "gasUsed": "0x5e55", + "input": "0xa9059cbb000000000000000000000000ce5c7ca85f8cb94fa284a303348ef42add23f5e7000000000000000000000000000000000000000000000000000000000000000b", "output": "0x4e487b710000000000000000000000000000000000000000000000000000000000000011", "to": "ERC20Custom.address", "type": "CALL", diff --git a/test/historicstate/hardhat/scripts/token_revert.ts b/test/historicstate/hardhat/scripts/token_revert.ts index 56658c7a2..9e52872c4 100644 --- a/test/historicstate/hardhat/scripts/token_revert.ts +++ b/test/historicstate/hardhat/scripts/token_revert.ts @@ -7,6 +7,7 @@ import {expect} from "chai"; import * as path from 'path'; import {int, string} from "hardhat/internal/core/params/argumentTypes"; import internal from "node:stream"; +import exp from "node:constants"; const OWNER_ADDRESS: string = "0x907cd0881E50d359bb9Fd120B1A5A143b1C97De6"; const CALL_ADDRESS: string = "0xCe5c7ca85F8cB94FA284a303348ef42ADD23f5e7"; @@ -332,15 +333,15 @@ async function executeTransferAndThenERC20TransferInSingleBlock(deployedContract let currentNonce: int = await sendMoneyWithoutConfirmation(); - const mintReceipt = await deployedContract[EXECUTE_FUNCTION_NAME](CALL_ADDRESS, 2000, { + const receipt = await deployedContract[EXECUTE_FUNCTION_NAME](CALL_ADDRESS, 11, { gasLimit: 2100000, // this is just an example value; you'll need to set an appropriate gas limit for your specific function call nonce: currentNonce + 1, }); - expect(mintReceipt.blockNumber).not.to.be.null; + expect(receipt.blockNumber).not.to.be.null; - const trace: string = await getBlockTrace(mintReceipt.blockNumber); + const trace: string = await getBlockTrace(receipt.blockNumber); expect(Array.isArray(trace)); @@ -350,7 +351,7 @@ async function executeTransferAndThenERC20TransferInSingleBlock(deployedContract expect(trace.length == 2); } - return mintReceipt.hash!; + return receipt.hash!; } @@ -405,9 +406,12 @@ async function main(): Promise { const deployHash = deployedContract.deployTransaction.hash; DEPLOYED_CONTRACT_ADDRESS_LOWER_CASE = deployedContract.address.toString().toLowerCase(); - const firstMintHash: string = await executeTransferAndThenERC20TransferInSingleBlock(deployedContract); + await expect(await deployedContract.balanceOf(OWNER_ADDRESS)).eq(10); + const failedTransferHash: string = await executeTransferAndThenERC20TransferInSingleBlock(deployedContract); - await getAndPrintCommittedTransactionTrace(firstMintHash, CALL_TRACER, TEST_CONTRACT_EXECUTE_CALLTRACER_FILE_NAME); + await expect(await deployedContract.balanceOf(OWNER_ADDRESS)).eq(10); + + await getAndPrintCommittedTransactionTrace(failedTransferHash, CALL_TRACER, TEST_CONTRACT_EXECUTE_CALLTRACER_FILE_NAME); await verifyCallTraceAgainstGethTrace(TEST_CONTRACT_EXECUTE_CALLTRACER_FILE_NAME); From a3c26d7031e38a35045c64f9ea3346c147e51881 Mon Sep 17 00:00:00 2001 From: Stan Kladko <13399135+kladkogex@users.noreply.github.com> Date: Mon, 22 Apr 2024 16:09:25 +0100 Subject: [PATCH 10/34] #1859 added test contract --- .../hardhat/scripts/token_revert.ts | 66 +++++++------------ 1 file changed, 24 insertions(+), 42 deletions(-) diff --git a/test/historicstate/hardhat/scripts/token_revert.ts b/test/historicstate/hardhat/scripts/token_revert.ts index 9e52872c4..1effd9cb8 100644 --- a/test/historicstate/hardhat/scripts/token_revert.ts +++ b/test/historicstate/hardhat/scripts/token_revert.ts @@ -143,15 +143,6 @@ async function waitUntilNextBlock() { } -async function getBlockTrace(blockNumber: number): Promise { - - const blockStr = "0x" + blockNumber.toString(16); - //trace both empty tracer and no tracer - let trace = await ethers.provider.send('debug_traceBlockByNumber', [blockStr]); - trace = await ethers.provider.send('debug_traceBlockByNumber', [blockStr, {}]); - - return trace; -} const TEST_CONTRACT_NAME = "ERC20Custom"; @@ -193,6 +184,16 @@ async function writeTraceFileReplacingAddressesWithSymbolicNames(_traceFileName: await replaceAddressesWithSymbolicNames(_traceFileName); } +async function getBlockTrace(blockNumber: number): Promise { + + const blockStr = "0x" + blockNumber.toString(16); + //trace both empty tracer and no tracer + let trace = await ethers.provider.send('debug_traceBlockByNumber', [blockStr]); + trace = await ethers.provider.send('debug_traceBlockByNumber', [blockStr, getTraceJsonOptions(CALL_TRACER)]); + + return trace; +} + async function getAndPrintCommittedTransactionTrace(hash: string, _tracer: string, _skaleFileName: string): Promise { globalCallCount++; @@ -270,7 +271,7 @@ const EXECUTE_FUNCTION_NAME = "transfer"; const TEST_CONTRACT_EXECUTE_CALLTRACER_FILE_NAME = TEST_CONTRACT_NAME + "." + EXECUTE_FUNCTION_NAME + ".callTracer.json"; -async function sendMoneyWithoutConfirmation(): Promise { +async function sendERCTransferWithoutConfirmation(deployedContract: any): Promise { // Generate a new wallet const newWallet = generateNewWallet(); @@ -285,7 +286,9 @@ async function sendMoneyWithoutConfirmation(): Promise { const tx = { to: newWallet.address, value: hre.ethers.utils.parseEther("0.1"), - nonce: currentNonce + nonce: currentNonce, + data: deployedContract.interface.encodeFunctionData(EXECUTE_FUNCTION_NAME, [ + CALL_ADDRESS, 3]) }; // Send the transaction and wait until it is submitted ot the queue @@ -300,40 +303,15 @@ async function sendMoneyWithoutConfirmation(): Promise { return currentNonce; } -async function sendTransferWithConfirmation(): Promise { - // Generate a new wallet - const newWallet = generateNewWallet(); - await sleep(3000); // Sleep for 1000 milliseconds (1 second) - // Get the first signer from Hardhat's local network - const [signer] = await hre.ethers.getSigners(); - - const currentNonce = await signer.getTransactionCount(); - - // Define the transaction - const tx = { - to: "0x388C818CA8B9251b393131C08a736A67ccB19297", - value: hre.ethers.utils.parseEther("0.1"), - }; - - // Send the transaction and wait until it is submitted ot the queue - const txResponse = await signer.sendTransaction(tx); - const txReceipt = await txResponse.wait(); - - console.log(`Submitted a tx to send 0.1 ETH to ${newWallet.address}`); - - return txReceipt.transactionHash!; -} - - -async function executeTransferAndThenERC20TransferInSingleBlock(deployedContract: any): Promise { +async function executeERC20TransferAndThenERC20TransferInSingleBlock(deployedContract: any): Promise { console.log("Doing two transactions in a block") - let currentNonce: int = await sendMoneyWithoutConfirmation(); + let currentNonce: int = await sendERCTransferWithoutConfirmation(deployedContract); - const receipt = await deployedContract[EXECUTE_FUNCTION_NAME](CALL_ADDRESS, 11, { + const receipt = await deployedContract[EXECUTE_FUNCTION_NAME](CALL_ADDRESS, 5, { gasLimit: 2100000, // this is just an example value; you'll need to set an appropriate gas limit for your specific function call nonce: currentNonce + 1, }); @@ -343,7 +321,6 @@ async function executeTransferAndThenERC20TransferInSingleBlock(deployedContract const trace: string = await getBlockTrace(receipt.blockNumber); - expect(Array.isArray(trace)); // the array should have two elements @@ -351,6 +328,8 @@ async function executeTransferAndThenERC20TransferInSingleBlock(deployedContract expect(trace.length == 2); } + console.log("Trace:" + JSON.stringify(trace)); + return receipt.hash!; } @@ -406,13 +385,16 @@ async function main(): Promise { const deployHash = deployedContract.deployTransaction.hash; DEPLOYED_CONTRACT_ADDRESS_LOWER_CASE = deployedContract.address.toString().toLowerCase(); - await expect(await deployedContract.balanceOf(OWNER_ADDRESS)).eq(10); - const failedTransferHash: string = await executeTransferAndThenERC20TransferInSingleBlock(deployedContract); + sleep(10000); await expect(await deployedContract.balanceOf(OWNER_ADDRESS)).eq(10); + const failedTransferHash: string = await executeERC20TransferAndThenERC20TransferInSingleBlock(deployedContract); + + await getAndPrintCommittedTransactionTrace(failedTransferHash, CALL_TRACER, TEST_CONTRACT_EXECUTE_CALLTRACER_FILE_NAME); + await expect(await deployedContract.balanceOf(OWNER_ADDRESS)).eq(10); await verifyCallTraceAgainstGethTrace(TEST_CONTRACT_EXECUTE_CALLTRACER_FILE_NAME); } From a2030366910062ff2e258a6bd459fb4d62de4d48 Mon Sep 17 00:00:00 2001 From: Stan Kladko <13399135+kladkogex@users.noreply.github.com> Date: Mon, 22 Apr 2024 16:49:03 +0100 Subject: [PATCH 11/34] #1859 added test contract --- test/historicstate/hardhat/scripts/token_revert.ts | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/test/historicstate/hardhat/scripts/token_revert.ts b/test/historicstate/hardhat/scripts/token_revert.ts index 1effd9cb8..b3e97fe39 100644 --- a/test/historicstate/hardhat/scripts/token_revert.ts +++ b/test/historicstate/hardhat/scripts/token_revert.ts @@ -187,9 +187,9 @@ async function writeTraceFileReplacingAddressesWithSymbolicNames(_traceFileName: async function getBlockTrace(blockNumber: number): Promise { const blockStr = "0x" + blockNumber.toString(16); - //trace both empty tracer and no tracer - let trace = await ethers.provider.send('debug_traceBlockByNumber', [blockStr]); - trace = await ethers.provider.send('debug_traceBlockByNumber', [blockStr, getTraceJsonOptions(CALL_TRACER)]); + const params : any = [blockStr, await getTraceJsonOptions(CALL_TRACER)]; + console.log(params); + const trace : any = await ethers.provider.send('debug_traceBlockByNumber', params); return trace; } @@ -284,8 +284,9 @@ async function sendERCTransferWithoutConfirmation(deployedContract: any): Promis // Define the transaction const tx = { - to: newWallet.address, + to: deployedContract.address, value: hre.ethers.utils.parseEther("0.1"), + gasLimit: 2100000, nonce: currentNonce, data: deployedContract.interface.encodeFunctionData(EXECUTE_FUNCTION_NAME, [ CALL_ADDRESS, 3]) @@ -328,7 +329,8 @@ async function executeERC20TransferAndThenERC20TransferInSingleBlock(deployedCon expect(trace.length == 2); } - console.log("Trace:" + JSON.stringify(trace)); + console.log("Trace:" + JSON.stringify(trace[0])); + console.log("Trace:" + JSON.stringify(trace[1])); return receipt.hash!; @@ -390,8 +392,6 @@ async function main(): Promise { await expect(await deployedContract.balanceOf(OWNER_ADDRESS)).eq(10); const failedTransferHash: string = await executeERC20TransferAndThenERC20TransferInSingleBlock(deployedContract); - - await getAndPrintCommittedTransactionTrace(failedTransferHash, CALL_TRACER, TEST_CONTRACT_EXECUTE_CALLTRACER_FILE_NAME); await expect(await deployedContract.balanceOf(OWNER_ADDRESS)).eq(10); From f3eb1a1a5de9d3a45bb615313c01bd4597fc54d5 Mon Sep 17 00:00:00 2001 From: Stan Kladko <13399135+kladkogex@users.noreply.github.com> Date: Mon, 22 Apr 2024 17:48:53 +0100 Subject: [PATCH 12/34] #1859 added test contract --- test/historicstate/hardhat/scripts/token_revert.ts | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/test/historicstate/hardhat/scripts/token_revert.ts b/test/historicstate/hardhat/scripts/token_revert.ts index b3e97fe39..b0891d06b 100644 --- a/test/historicstate/hardhat/scripts/token_revert.ts +++ b/test/historicstate/hardhat/scripts/token_revert.ts @@ -285,11 +285,9 @@ async function sendERCTransferWithoutConfirmation(deployedContract: any): Promis // Define the transaction const tx = { to: deployedContract.address, - value: hre.ethers.utils.parseEther("0.1"), gasLimit: 2100000, nonce: currentNonce, - data: deployedContract.interface.encodeFunctionData(EXECUTE_FUNCTION_NAME, [ - CALL_ADDRESS, 3]) + data: deployedContract.interface.encodeFunctionData(EXECUTE_FUNCTION_NAME, [CALL_ADDRESS, 10]) }; // Send the transaction and wait until it is submitted ot the queue @@ -312,7 +310,8 @@ async function executeERC20TransferAndThenERC20TransferInSingleBlock(deployedCon let currentNonce: int = await sendERCTransferWithoutConfirmation(deployedContract); - const receipt = await deployedContract[EXECUTE_FUNCTION_NAME](CALL_ADDRESS, 5, { + + const receipt = await deployedContract[EXECUTE_FUNCTION_NAME]( CALL_ADDRESS, 1, { gasLimit: 2100000, // this is just an example value; you'll need to set an appropriate gas limit for your specific function call nonce: currentNonce + 1, }); @@ -326,7 +325,7 @@ async function executeERC20TransferAndThenERC20TransferInSingleBlock(deployedCon // the array should have two elements if (hre.network.name != "geth") { - expect(trace.length == 2); + expect(trace.length).equal(2); } console.log("Trace:" + JSON.stringify(trace[0])); From 9b538c7fa24813814ef813d11220a4d0fae28403 Mon Sep 17 00:00:00 2001 From: Stan Kladko <13399135+kladkogex@users.noreply.github.com> Date: Mon, 22 Apr 2024 19:29:07 +0100 Subject: [PATCH 13/34] #1859 added test contract --- libhistoric/AlethStandardTrace.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/libhistoric/AlethStandardTrace.cpp b/libhistoric/AlethStandardTrace.cpp index affcdf988..444bc3399 100644 --- a/libhistoric/AlethStandardTrace.cpp +++ b/libhistoric/AlethStandardTrace.cpp @@ -315,6 +315,12 @@ void AlethStandardTrace::recordInstructionIsExecuted( uint64_t _pc, Instruction STATE_CHECK( _voidExt ) STATE_CHECK( !m_isFinalized ) + // geth trace does not record in the trace instructions that are + // reverted by out of gas + if (_gasRemaining < _gasOpGas) { + return; + } + // remove const qualifier since we need to set tracing values in AlethExtVM AlethExtVM& ext = ( AlethExtVM& ) ( *_voidExt ); auto vm = dynamic_cast< LegacyVM const* >( _vm ); From 961fff1ac0b2503d7e81cca7c612b07f5288ee46 Mon Sep 17 00:00:00 2001 From: Stan Kladko <13399135+kladkogex@users.noreply.github.com> Date: Mon, 22 Apr 2024 20:18:52 +0100 Subject: [PATCH 14/34] #1859 added test contract --- test/historicstate/hardhat/run_geth.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/historicstate/hardhat/run_geth.py b/test/historicstate/hardhat/run_geth.py index 22d576487..f1dd69709 100755 --- a/test/historicstate/hardhat/run_geth.py +++ b/test/historicstate/hardhat/run_geth.py @@ -50,7 +50,7 @@ def add_ether_to_account(address, amount): return # Unlock the default account (coinbase) - coinbase = w3.eth.coinbase + coinbase = w3.eth.accounts[0] w3.geth.personal.unlock_account(coinbase, '', 0) # Convert Ether to Wei From b1a05190389a516f0727e77568e9137024aaa92f Mon Sep 17 00:00:00 2001 From: Stan Kladko <13399135+kladkogex@users.noreply.github.com> Date: Tue, 23 Apr 2024 11:41:31 +0100 Subject: [PATCH 15/34] #1859 added test contract --- .../ERC20Custom.transfer.callTracer.json | 7 +- .../Tracer.deploy.4byteTracer.json | 4 +- .../geth_traces/Tracer.deploy.callTracer.json | 6 +- .../Tracer.deploy.defaultTracer.json | 178 +- .../Tracer.deploy.prestateDiffTracer.json | 23 +- .../Tracer.deploy.prestateTracer.json | 13 +- .../Tracer.getBalance.defaultTracer.json | 162 +- .../Tracer.getBalance.prestateTracer.json | 4 +- .../Tracer.getBalance.replayTracer.json | 2 +- .../geth_traces/Tracer.mint.4byteTracer.json | 2 +- .../geth_traces/Tracer.mint.callTracer.json | 13 +- .../Tracer.mint.defaultTracer.json | 5073 +++++----- .../Tracer.mint.prestateDiffTracer.json | 12 +- .../Tracer.mint.prestateTracer.json | 12 +- .../geth_traces/Tracer.mint2.callTracer.json | 18 +- .../Tracer.mint2.defaultTracer.json | 8799 ++++++++--------- .../Tracer.mint2.prestateDiffTracer.json | 40 +- .../Tracer.mint2.prestateTracer.json | 20 +- .../Tracer.readableRevert.callTracer.json | 4 +- .../Tracer.readableRevert.defaultTracer.json | 7765 +++++++-------- ...cer.readableRevert.prestateDiffTracer.json | 12 +- .../Tracer.readableRevert.prestateTracer.json | 12 +- .../Tracer.transfer.prestateDiffTracer.json | 16 +- .../Tracer.transfer.prestateTracer.json | 8 +- 24 files changed, 10924 insertions(+), 11281 deletions(-) diff --git a/test/historicstate/hardhat/scripts/geth_traces/ERC20Custom.transfer.callTracer.json b/test/historicstate/hardhat/scripts/geth_traces/ERC20Custom.transfer.callTracer.json index 7ad790688..016008707 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/ERC20Custom.transfer.callTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/ERC20Custom.transfer.callTracer.json @@ -1,10 +1,9 @@ { - "error": "execution reverted", "from": "OWNER.address", "gas": "0x1fb1c8", - "gasUsed": "0x5e55", - "input": "0xa9059cbb000000000000000000000000ce5c7ca85f8cb94fa284a303348ef42add23f5e7000000000000000000000000000000000000000000000000000000000000000b", - "output": "0x4e487b710000000000000000000000000000000000000000000000000000000000000011", + "gasUsed": "0xcb55", + "input": "0xa9059cbb000000000000000000000000ce5c7ca85f8cb94fa284a303348ef42add23f5e70000000000000000000000000000000000000000000000000000000000000001", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001", "to": "ERC20Custom.address", "type": "CALL", "value": "0x0" diff --git a/test/historicstate/hardhat/scripts/geth_traces/Tracer.deploy.4byteTracer.json b/test/historicstate/hardhat/scripts/geth_traces/Tracer.deploy.4byteTracer.json index 77ad47965..9e26dfeeb 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/Tracer.deploy.4byteTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/Tracer.deploy.4byteTracer.json @@ -1,3 +1 @@ -{ - "0x60806040-7464": 1 -} \ No newline at end of file +{} \ No newline at end of file diff --git a/test/historicstate/hardhat/scripts/geth_traces/Tracer.deploy.callTracer.json b/test/historicstate/hardhat/scripts/geth_traces/Tracer.deploy.callTracer.json index 69c028a91..d49befbc0 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/Tracer.deploy.callTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/Tracer.deploy.callTracer.json @@ -1,10 +1,10 @@ { "from": "OWNER.address", "gas": "0x200b20", - "gasUsed": "0x18928c", + "gasUsed": "0x1811a2", "to": "Tracer.address", - "input": "0x60806040526000600260006101000a81548160ff02191690831515021790555034801561002b57600080fd5b50600260009054906101000a900460ff161561007c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016100739061011f565b60405180910390fd5b6001600260006101000a81548160ff02191690831515021790555061013f565b600082825260208201905092915050565b7f436f6e747261637420696e7374616e63652068617320616c726561647920626560008201527f656e20696e697469616c697a6564000000000000000000000000000000000000602082015250565b6000610109602e8361009c565b9150610114826100ad565b604082019050919050565b60006020820190508181036000830152610138816100fc565b9050919050565b611bde8061014e6000396000f3fe60806040523480156200001157600080fd5b5060043610620000ac5760003560e01c80638bfe44ff116200006f5780638bfe44ff14620001975780639295436214620001a3578063a0712d6814620001af578063b69ef8a814620001e5578063c9353cb5146200020757620000ac565b806312065fe014620000b15780631c71706914620000d35780631c93908c14620000f55780633aa18088146200012b5780637f29c3941462000161575b600080fd5b620000bb62000227565b604051620000ca919062000997565b60405180910390f35b620000dd62000231565b604051620000ec9190620009cf565b60405180910390f35b6200011360048036038101906200010d919062000a2c565b62000280565b60405162000122919062000997565b60405180910390f35b62000149600480360381019062000143919062000a2c565b620002f6565b60405162000158919062000997565b60405180910390f35b6200017f600480360381019062000179919062000a2c565b620004ae565b6040516200018e919062000997565b60405180910390f35b620001a162000783565b005b620001ad620007c5565b005b620001cd6004803603810190620001c7919062000a2c565b62000802565b604051620001dc919062000997565b60405180910390f35b620001ef6200094f565b604051620001fe919062000997565b60405180910390f35b6200022560048036038101906200021f919062000ac3565b62000955565b005b6000600154905090565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620002ca919062000b56565b60405180910390a28160036000828254620002e6919062000bb7565b9250508190555060029050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405162000340919062000c64565b60405180910390a260405162000356906200096e565b604051809103906000f08015801562000373573d6000803e3d6000fd5b506000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508160016000828254620003c7919062000bb7565b92505081905550620003e7600183620003e1919062000bb7565b62000280565b50620003f262000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b81526004016200044e919062000997565b602060405180830381600087803b1580156200046957600080fd5b505af11580156200047e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004a4919062000cad565b5060019050919050565b60003073ffffffffffffffffffffffffffffffffffffffff1663929543626040518163ffffffff1660e01b815260040160006040518083038186803b158015620004f757600080fd5b505afa92505050801562000509575060015b620005f2576200051862000cec565b806308c379a014156200057d57506200053062000d87565b806200053d57506200057f565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a816040516200056e919062000eab565b60405180910390a150620005ec565b505b3d8060008114620005ad576040519150601f19603f3d011682016040523d82523d6000602084013e620005b2565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620005e29062000f45565b60405180910390a1505b620005f3565b5b3073ffffffffffffffffffffffffffffffffffffffff16638bfe44ff6040518163ffffffff1660e01b815260040160006040518083038186803b1580156200063a57600080fd5b505afa9250505080156200064c575060015b62000735576200065b62000cec565b806308c379a01415620006c057506200067362000d87565b80620006805750620006c2565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a81604051620006b1919062000eab565b60405180910390a1506200072f565b505b3d8060008114620006f0576040519150601f19603f3d011682016040523d82523d6000602084013e620006f5565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620007259062000f45565b60405180910390a1505b62000736565b5b60006200077a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007719062000fb7565b60405180910390fd5b60019050919050565b6001806040517fcf479181000000000000000000000000000000000000000000000000000000008152600401620007bc92919062001026565b60405180910390fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007f990620010a3565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200084c919062000c64565b60405180910390a2816001600082825462000868919062000bb7565b925050819055506200088860018362000882919062000bb7565b62000280565b506200089362000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b8152600401620008ef919062000997565b602060405180830381600087803b1580156200090a57600080fd5b505af11580156200091f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000945919062000cad565b5060019050919050565b60015481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b610ae380620010c683390190565b6000819050919050565b62000991816200097c565b82525050565b6000602082019050620009ae600083018462000986565b92915050565b6000819050919050565b620009c981620009b4565b82525050565b6000602082019050620009e66000830184620009be565b92915050565b6000604051905090565b600080fd5b62000a06816200097c565b811462000a1257600080fd5b50565b60008135905062000a2681620009fb565b92915050565b60006020828403121562000a455762000a44620009f6565b5b600062000a558482850162000a15565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000a8b8262000a5e565b9050919050565b62000a9d8162000a7e565b811462000aa957600080fd5b50565b60008135905062000abd8162000a92565b92915050565b60006020828403121562000adc5762000adb620009f6565b5b600062000aec8482850162000aac565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000b3e600e8362000af5565b915062000b4b8262000b06565b602082019050919050565b600060408201905062000b6d600083018462000986565b818103602083015262000b808162000b2f565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000bc4826200097c565b915062000bd1836200097c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000c095762000c0862000b88565b5b828201905092915050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b600062000c4c60058362000af5565b915062000c598262000c14565b602082019050919050565b600060408201905062000c7b600083018462000986565b818103602083015262000c8e8162000c3d565b905092915050565b60008151905062000ca781620009fb565b92915050565b60006020828403121562000cc65762000cc5620009f6565b5b600062000cd68482850162000c96565b91505092915050565b60008160e01c9050919050565b600060033d111562000d0e5760046000803e62000d0b60005162000cdf565b90505b90565b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000d5c8262000d11565b810181811067ffffffffffffffff8211171562000d7e5762000d7d62000d22565b5b80604052505050565b600060443d101562000d995762000e26565b62000da3620009ec565b60043d036004823e80513d602482011167ffffffffffffffff8211171562000dcd57505062000e26565b808201805167ffffffffffffffff81111562000ded575050505062000e26565b80602083010160043d03850181111562000e0c57505050505062000e26565b62000e1d8260200185018662000d51565b82955050505050505b90565b600081519050919050565b60005b8381101562000e5457808201518184015260208101905062000e37565b8381111562000e64576000848401525b50505050565b600062000e778262000e29565b62000e83818562000af5565b935062000e9581856020860162000e34565b62000ea08162000d11565b840191505092915050565b6000602082019050818103600083015262000ec7818462000e6a565b905092915050565b7f45787465726e616c2063616c6c206661696c656420776974686f757420616e2060008201527f6572726f72206d65737361676500000000000000000000000000000000000000602082015250565b600062000f2d602d8362000af5565b915062000f3a8262000ecf565b604082019050919050565b6000602082019050818103600083015262000f608162000f1e565b9050919050565b7f494e53554646494349454e542042414c414e4345000000000000000000000000600082015250565b600062000f9f60148362000af5565b915062000fac8262000f67565b602082019050919050565b6000602082019050818103600083015262000fd28162000f90565b9050919050565b6000819050919050565b6000819050919050565b60006200100e62001008620010028462000fd9565b62000fe3565b6200097c565b9050919050565b620010208162000fed565b82525050565b60006040820190506200103d600083018562001015565b6200104c602083018462001015565b9392505050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b60006200108b60178362000af5565b9150620010988262001053565b602082019050919050565b60006020820190508181036000830152620010be816200107c565b905091905056fe60806040526000600160006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b50600160009054906101000a900460ff161562000080576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200007790620002b5565b60405180910390fd5b60018060006101000a81548160ff021916908315150217905550620000bc701d6329f1c35ca4bfabb9f5610000000000620000c360201b60201c565b5062000482565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200010d919062000342565b60405180910390a281600080828254620001289190620003a3565b925050819055506200014e600183620001429190620003a3565b6200016960201b60201c565b506200015f620001df60201b60201c565b5060019050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620001b3919062000450565b60405180910390a28160026000828254620001cf9190620003a3565b9250508190555060029050919050565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b600082825260208201905092915050565b7f436f6e747261637420696e7374616e63652068617320616c726561647920626560008201527f656e20696e697469616c697a6564000000000000000000000000000000000000602082015250565b60006200029d602e836200022e565b9150620002aa826200023f565b604082019050919050565b60006020820190508181036000830152620002d0816200028e565b9050919050565b6000819050919050565b620002ec81620002d7565b82525050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006200032a6005836200022e565b91506200033782620002f2565b602082019050919050565b6000604082019050620003596000830184620002e1565b81810360208301526200036c816200031b565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620003b082620002d7565b9150620003bd83620002d7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620003f557620003f462000374565b5b828201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000438600e836200022e565b9150620004458262000400565b602082019050919050565b6000604082019050620004676000830184620002e1565b81810360208301526200047a8162000429565b905092915050565b61065180620004926000396000f3fe608060405234801561001057600080fd5b50600436106100625760003560e01c80631c717069146100675780631c93908c1461008557806392954362146100b5578063a0712d68146100bf578063b69ef8a8146100ef578063c9353cb51461010d575b600080fd5b61006f610129565b60405161007c91906102ed565b60405180910390f35b61009f600480360381019061009a9190610343565b610178565b6040516100ac919061037f565b60405180910390f35b6100bd6101ea565b005b6100d960048036038101906100d49190610343565b610225565b6040516100e6919061037f565b60405180910390f35b6100f76102b5565b604051610104919061037f565b60405180910390f35b610127600480360381019061012291906103f8565b6102bb565b005b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516101c09190610482565b60405180910390a281600260008282546101da91906104df565b9250508190555060029050919050565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161021c90610581565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405161026d91906105ed565b60405180910390a28160008082825461028691906104df565b925050819055506102a260018361029d91906104df565b610178565b506102ab610129565b5060019050919050565b60005481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b6000819050919050565b6102e7816102d4565b82525050565b600060208201905061030260008301846102de565b92915050565b600080fd5b6000819050919050565b6103208161030d565b811461032b57600080fd5b50565b60008135905061033d81610317565b92915050565b60006020828403121561035957610358610308565b5b60006103678482850161032e565b91505092915050565b6103798161030d565b82525050565b60006020820190506103946000830184610370565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006103c58261039a565b9050919050565b6103d5816103ba565b81146103e057600080fd5b50565b6000813590506103f2816103cc565b92915050565b60006020828403121561040e5761040d610308565b5b600061041c848285016103e3565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600061046c600e83610425565b915061047782610436565b602082019050919050565b60006040820190506104976000830184610370565b81810360208301526104a88161045f565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006104ea8261030d565b91506104f58361030d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561052a576105296104b0565b5b828201905092915050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b600061056b601783610425565b915061057682610535565b602082019050919050565b6000602082019050818103600083015261059a8161055e565b9050919050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006105d7600583610425565b91506105e2826105a1565b602082019050919050565b60006040820190506106026000830184610370565b8181036020830152610613816105ca565b90509291505056fea26469706673582212208743accab6cfcd1c8ccb3f51b787d679e803a77ce24ec642bd068883132fd5fa64736f6c63430008090033a264697066735822122066241fedca9ebd69f0cd9e4879f75428f5d4bf734eb072e52934a8b3161581f064736f6c63430008090033", - "output": "0x60806040523480156200001157600080fd5b5060043610620000ac5760003560e01c80638bfe44ff116200006f5780638bfe44ff14620001975780639295436214620001a3578063a0712d6814620001af578063b69ef8a814620001e5578063c9353cb5146200020757620000ac565b806312065fe014620000b15780631c71706914620000d35780631c93908c14620000f55780633aa18088146200012b5780637f29c3941462000161575b600080fd5b620000bb62000227565b604051620000ca919062000997565b60405180910390f35b620000dd62000231565b604051620000ec9190620009cf565b60405180910390f35b6200011360048036038101906200010d919062000a2c565b62000280565b60405162000122919062000997565b60405180910390f35b62000149600480360381019062000143919062000a2c565b620002f6565b60405162000158919062000997565b60405180910390f35b6200017f600480360381019062000179919062000a2c565b620004ae565b6040516200018e919062000997565b60405180910390f35b620001a162000783565b005b620001ad620007c5565b005b620001cd6004803603810190620001c7919062000a2c565b62000802565b604051620001dc919062000997565b60405180910390f35b620001ef6200094f565b604051620001fe919062000997565b60405180910390f35b6200022560048036038101906200021f919062000ac3565b62000955565b005b6000600154905090565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620002ca919062000b56565b60405180910390a28160036000828254620002e6919062000bb7565b9250508190555060029050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405162000340919062000c64565b60405180910390a260405162000356906200096e565b604051809103906000f08015801562000373573d6000803e3d6000fd5b506000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508160016000828254620003c7919062000bb7565b92505081905550620003e7600183620003e1919062000bb7565b62000280565b50620003f262000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b81526004016200044e919062000997565b602060405180830381600087803b1580156200046957600080fd5b505af11580156200047e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004a4919062000cad565b5060019050919050565b60003073ffffffffffffffffffffffffffffffffffffffff1663929543626040518163ffffffff1660e01b815260040160006040518083038186803b158015620004f757600080fd5b505afa92505050801562000509575060015b620005f2576200051862000cec565b806308c379a014156200057d57506200053062000d87565b806200053d57506200057f565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a816040516200056e919062000eab565b60405180910390a150620005ec565b505b3d8060008114620005ad576040519150601f19603f3d011682016040523d82523d6000602084013e620005b2565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620005e29062000f45565b60405180910390a1505b620005f3565b5b3073ffffffffffffffffffffffffffffffffffffffff16638bfe44ff6040518163ffffffff1660e01b815260040160006040518083038186803b1580156200063a57600080fd5b505afa9250505080156200064c575060015b62000735576200065b62000cec565b806308c379a01415620006c057506200067362000d87565b80620006805750620006c2565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a81604051620006b1919062000eab565b60405180910390a1506200072f565b505b3d8060008114620006f0576040519150601f19603f3d011682016040523d82523d6000602084013e620006f5565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620007259062000f45565b60405180910390a1505b62000736565b5b60006200077a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007719062000fb7565b60405180910390fd5b60019050919050565b6001806040517fcf479181000000000000000000000000000000000000000000000000000000008152600401620007bc92919062001026565b60405180910390fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007f990620010a3565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200084c919062000c64565b60405180910390a2816001600082825462000868919062000bb7565b925050819055506200088860018362000882919062000bb7565b62000280565b506200089362000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b8152600401620008ef919062000997565b602060405180830381600087803b1580156200090a57600080fd5b505af11580156200091f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000945919062000cad565b5060019050919050565b60015481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b610ae380620010c683390190565b6000819050919050565b62000991816200097c565b82525050565b6000602082019050620009ae600083018462000986565b92915050565b6000819050919050565b620009c981620009b4565b82525050565b6000602082019050620009e66000830184620009be565b92915050565b6000604051905090565b600080fd5b62000a06816200097c565b811462000a1257600080fd5b50565b60008135905062000a2681620009fb565b92915050565b60006020828403121562000a455762000a44620009f6565b5b600062000a558482850162000a15565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000a8b8262000a5e565b9050919050565b62000a9d8162000a7e565b811462000aa957600080fd5b50565b60008135905062000abd8162000a92565b92915050565b60006020828403121562000adc5762000adb620009f6565b5b600062000aec8482850162000aac565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000b3e600e8362000af5565b915062000b4b8262000b06565b602082019050919050565b600060408201905062000b6d600083018462000986565b818103602083015262000b808162000b2f565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000bc4826200097c565b915062000bd1836200097c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000c095762000c0862000b88565b5b828201905092915050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b600062000c4c60058362000af5565b915062000c598262000c14565b602082019050919050565b600060408201905062000c7b600083018462000986565b818103602083015262000c8e8162000c3d565b905092915050565b60008151905062000ca781620009fb565b92915050565b60006020828403121562000cc65762000cc5620009f6565b5b600062000cd68482850162000c96565b91505092915050565b60008160e01c9050919050565b600060033d111562000d0e5760046000803e62000d0b60005162000cdf565b90505b90565b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000d5c8262000d11565b810181811067ffffffffffffffff8211171562000d7e5762000d7d62000d22565b5b80604052505050565b600060443d101562000d995762000e26565b62000da3620009ec565b60043d036004823e80513d602482011167ffffffffffffffff8211171562000dcd57505062000e26565b808201805167ffffffffffffffff81111562000ded575050505062000e26565b80602083010160043d03850181111562000e0c57505050505062000e26565b62000e1d8260200185018662000d51565b82955050505050505b90565b600081519050919050565b60005b8381101562000e5457808201518184015260208101905062000e37565b8381111562000e64576000848401525b50505050565b600062000e778262000e29565b62000e83818562000af5565b935062000e9581856020860162000e34565b62000ea08162000d11565b840191505092915050565b6000602082019050818103600083015262000ec7818462000e6a565b905092915050565b7f45787465726e616c2063616c6c206661696c656420776974686f757420616e2060008201527f6572726f72206d65737361676500000000000000000000000000000000000000602082015250565b600062000f2d602d8362000af5565b915062000f3a8262000ecf565b604082019050919050565b6000602082019050818103600083015262000f608162000f1e565b9050919050565b7f494e53554646494349454e542042414c414e4345000000000000000000000000600082015250565b600062000f9f60148362000af5565b915062000fac8262000f67565b602082019050919050565b6000602082019050818103600083015262000fd28162000f90565b9050919050565b6000819050919050565b6000819050919050565b60006200100e62001008620010028462000fd9565b62000fe3565b6200097c565b9050919050565b620010208162000fed565b82525050565b60006040820190506200103d600083018562001015565b6200104c602083018462001015565b9392505050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b60006200108b60178362000af5565b9150620010988262001053565b602082019050919050565b60006020820190508181036000830152620010be816200107c565b905091905056fe60806040526000600160006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b50600160009054906101000a900460ff161562000080576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200007790620002b5565b60405180910390fd5b60018060006101000a81548160ff021916908315150217905550620000bc701d6329f1c35ca4bfabb9f5610000000000620000c360201b60201c565b5062000482565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200010d919062000342565b60405180910390a281600080828254620001289190620003a3565b925050819055506200014e600183620001429190620003a3565b6200016960201b60201c565b506200015f620001df60201b60201c565b5060019050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620001b3919062000450565b60405180910390a28160026000828254620001cf9190620003a3565b9250508190555060029050919050565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b600082825260208201905092915050565b7f436f6e747261637420696e7374616e63652068617320616c726561647920626560008201527f656e20696e697469616c697a6564000000000000000000000000000000000000602082015250565b60006200029d602e836200022e565b9150620002aa826200023f565b604082019050919050565b60006020820190508181036000830152620002d0816200028e565b9050919050565b6000819050919050565b620002ec81620002d7565b82525050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006200032a6005836200022e565b91506200033782620002f2565b602082019050919050565b6000604082019050620003596000830184620002e1565b81810360208301526200036c816200031b565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620003b082620002d7565b9150620003bd83620002d7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620003f557620003f462000374565b5b828201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000438600e836200022e565b9150620004458262000400565b602082019050919050565b6000604082019050620004676000830184620002e1565b81810360208301526200047a8162000429565b905092915050565b61065180620004926000396000f3fe608060405234801561001057600080fd5b50600436106100625760003560e01c80631c717069146100675780631c93908c1461008557806392954362146100b5578063a0712d68146100bf578063b69ef8a8146100ef578063c9353cb51461010d575b600080fd5b61006f610129565b60405161007c91906102ed565b60405180910390f35b61009f600480360381019061009a9190610343565b610178565b6040516100ac919061037f565b60405180910390f35b6100bd6101ea565b005b6100d960048036038101906100d49190610343565b610225565b6040516100e6919061037f565b60405180910390f35b6100f76102b5565b604051610104919061037f565b60405180910390f35b610127600480360381019061012291906103f8565b6102bb565b005b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516101c09190610482565b60405180910390a281600260008282546101da91906104df565b9250508190555060029050919050565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161021c90610581565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405161026d91906105ed565b60405180910390a28160008082825461028691906104df565b925050819055506102a260018361029d91906104df565b610178565b506102ab610129565b5060019050919050565b60005481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b6000819050919050565b6102e7816102d4565b82525050565b600060208201905061030260008301846102de565b92915050565b600080fd5b6000819050919050565b6103208161030d565b811461032b57600080fd5b50565b60008135905061033d81610317565b92915050565b60006020828403121561035957610358610308565b5b60006103678482850161032e565b91505092915050565b6103798161030d565b82525050565b60006020820190506103946000830184610370565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006103c58261039a565b9050919050565b6103d5816103ba565b81146103e057600080fd5b50565b6000813590506103f2816103cc565b92915050565b60006020828403121561040e5761040d610308565b5b600061041c848285016103e3565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600061046c600e83610425565b915061047782610436565b602082019050919050565b60006040820190506104976000830184610370565b81810360208301526104a88161045f565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006104ea8261030d565b91506104f58361030d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561052a576105296104b0565b5b828201905092915050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b600061056b601783610425565b915061057682610535565b602082019050919050565b6000602082019050818103600083015261059a8161055e565b9050919050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006105d7600583610425565b91506105e2826105a1565b602082019050919050565b60006040820190506106026000830184610370565b8181036020830152610613816105ca565b90509291505056fea26469706673582212208743accab6cfcd1c8ccb3f51b787d679e803a77ce24ec642bd068883132fd5fa64736f6c63430008090033a264697066735822122066241fedca9ebd69f0cd9e4879f75428f5d4bf734eb072e52934a8b3161581f064736f6c63430008090033", + "input": "0x60806040526000600260006101000a81548160ff02191690831515021790555034801561002b57600080fd5b50600260009054906101000a900460ff161561007c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016100739061011f565b60405180910390fd5b6001600260006101000a81548160ff02191690831515021790555061013f565b600082825260208201905092915050565b7f436f6e747261637420696e7374616e63652068617320616c726561647920626560008201527f656e20696e697469616c697a6564000000000000000000000000000000000000602082015250565b6000610109602e8361009c565b9150610114826100ad565b604082019050919050565b60006020820190508181036000830152610138816100fc565b9050919050565b611b458061014e6000396000f3fe60806040523480156200001157600080fd5b5060043610620000ac5760003560e01c80638bfe44ff116200006f5780638bfe44ff14620001975780639295436214620001a3578063a0712d6814620001af578063b69ef8a814620001e5578063c9353cb5146200020757620000ac565b806312065fe014620000b15780631c71706914620000d35780631c93908c14620000f55780633aa18088146200012b5780637f29c3941462000161575b600080fd5b620000bb62000227565b604051620000ca919062000975565b60405180910390f35b620000dd62000231565b604051620000ec9190620009ad565b60405180910390f35b6200011360048036038101906200010d919062000a0a565b62000280565b60405162000122919062000975565b60405180910390f35b62000149600480360381019062000143919062000a0a565b620002f6565b60405162000158919062000975565b60405180910390f35b6200017f600480360381019062000179919062000a0a565b6200049e565b6040516200018e919062000975565b60405180910390f35b620001a162000771565b005b620001ad620007b3565b005b620001cd6004803603810190620001c7919062000a0a565b620007f0565b604051620001dc919062000975565b60405180910390f35b620001ef6200092d565b604051620001fe919062000975565b60405180910390f35b6200022560048036038101906200021f919062000aa1565b62000933565b005b6000600154905090565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620002ca919062000b34565b60405180910390a28160036000828254620002e6919062000b95565b9250508190555060029050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405162000340919062000c20565b60405180910390a260405162000356906200094c565b604051809103906000f08015801562000373573d6000803e3d6000fd5b506000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508160016000828254620003c7919062000b95565b92505081905550620003e7600183620003e1919062000b95565b62000280565b50620003f262000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b81526004016200044e919062000975565b6020604051808303816000875af11580156200046e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000494919062000c69565b5060019050919050565b60003073ffffffffffffffffffffffffffffffffffffffff1663929543626040518163ffffffff1660e01b815260040160006040518083038186803b158015620004e757600080fd5b505afa925050508015620004f9575060015b620005e1576200050862000ca8565b806308c379a0036200056c57506200051f62000d43565b806200052c57506200056e565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a816040516200055d919062000e56565b60405180910390a150620005db565b505b3d80600081146200059c576040519150601f19603f3d011682016040523d82523d6000602084013e620005a1565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620005d19062000ef0565b60405180910390a1505b620005e2565b5b3073ffffffffffffffffffffffffffffffffffffffff16638bfe44ff6040518163ffffffff1660e01b815260040160006040518083038186803b1580156200062957600080fd5b505afa9250505080156200063b575060015b62000723576200064a62000ca8565b806308c379a003620006ae57506200066162000d43565b806200066e5750620006b0565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a816040516200069f919062000e56565b60405180910390a1506200071d565b505b3d8060008114620006de576040519150601f19603f3d011682016040523d82523d6000602084013e620006e3565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620007139062000ef0565b60405180910390a1505b62000724565b5b600062000768576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200075f9062000f62565b60405180910390fd5b60019050919050565b6001806040517fcf479181000000000000000000000000000000000000000000000000000000008152600401620007aa92919062000fd1565b60405180910390fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007e7906200104e565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200083a919062000c20565b60405180910390a2816001600082825462000856919062000b95565b925050819055506200087660018362000870919062000b95565b62000280565b506200088162000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b8152600401620008dd919062000975565b6020604051808303816000875af1158015620008fd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000923919062000c69565b5060019050919050565b60015481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b610a9f806200107183390190565b6000819050919050565b6200096f816200095a565b82525050565b60006020820190506200098c600083018462000964565b92915050565b6000819050919050565b620009a78162000992565b82525050565b6000602082019050620009c460008301846200099c565b92915050565b6000604051905090565b600080fd5b620009e4816200095a565b8114620009f057600080fd5b50565b60008135905062000a0481620009d9565b92915050565b60006020828403121562000a235762000a22620009d4565b5b600062000a3384828501620009f3565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000a698262000a3c565b9050919050565b62000a7b8162000a5c565b811462000a8757600080fd5b50565b60008135905062000a9b8162000a70565b92915050565b60006020828403121562000aba5762000ab9620009d4565b5b600062000aca8482850162000a8a565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000b1c600e8362000ad3565b915062000b298262000ae4565b602082019050919050565b600060408201905062000b4b600083018462000964565b818103602083015262000b5e8162000b0d565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000ba2826200095a565b915062000baf836200095a565b925082820190508082111562000bca5762000bc962000b66565b5b92915050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b600062000c0860058362000ad3565b915062000c158262000bd0565b602082019050919050565b600060408201905062000c37600083018462000964565b818103602083015262000c4a8162000bf9565b905092915050565b60008151905062000c6381620009d9565b92915050565b60006020828403121562000c825762000c81620009d4565b5b600062000c928482850162000c52565b91505092915050565b60008160e01c9050919050565b600060033d111562000cca5760046000803e62000cc760005162000c9b565b90505b90565b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000d188262000ccd565b810181811067ffffffffffffffff8211171562000d3a5762000d3962000cde565b5b80604052505050565b600060443d1062000ddb5762000d58620009ca565b60043d036004823e80513d602482011167ffffffffffffffff8211171562000d8257505062000ddb565b808201805167ffffffffffffffff81111562000da2575050505062000ddb565b80602083010160043d03850181111562000dc157505050505062000ddb565b62000dd28260200185018662000d0d565b82955050505050505b90565b600081519050919050565b60005b8381101562000e0957808201518184015260208101905062000dec565b60008484015250505050565b600062000e228262000dde565b62000e2e818562000ad3565b935062000e4081856020860162000de9565b62000e4b8162000ccd565b840191505092915050565b6000602082019050818103600083015262000e72818462000e15565b905092915050565b7f45787465726e616c2063616c6c206661696c656420776974686f757420616e2060008201527f6572726f72206d65737361676500000000000000000000000000000000000000602082015250565b600062000ed8602d8362000ad3565b915062000ee58262000e7a565b604082019050919050565b6000602082019050818103600083015262000f0b8162000ec9565b9050919050565b7f494e53554646494349454e542042414c414e4345000000000000000000000000600082015250565b600062000f4a60148362000ad3565b915062000f578262000f12565b602082019050919050565b6000602082019050818103600083015262000f7d8162000f3b565b9050919050565b6000819050919050565b6000819050919050565b600062000fb962000fb362000fad8462000f84565b62000f8e565b6200095a565b9050919050565b62000fcb8162000f98565b82525050565b600060408201905062000fe8600083018562000fc0565b62000ff7602083018462000fc0565b9392505050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b60006200103660178362000ad3565b9150620010438262000ffe565b602082019050919050565b60006020820190508181036000830152620010698162001027565b905091905056fe60806040526000600160006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b50600160009054906101000a900460ff161562000080576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200007790620002b5565b60405180910390fd5b60018060006101000a81548160ff021916908315150217905550620000bc701d6329f1c35ca4bfabb9f5610000000000620000c360201b60201c565b5062000460565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200010d919062000342565b60405180910390a281600080828254620001289190620003a3565b925050819055506200014e600183620001429190620003a3565b6200016960201b60201c565b506200015f620001df60201b60201c565b5060019050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620001b391906200042e565b60405180910390a28160026000828254620001cf9190620003a3565b9250508190555060029050919050565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b600082825260208201905092915050565b7f436f6e747261637420696e7374616e63652068617320616c726561647920626560008201527f656e20696e697469616c697a6564000000000000000000000000000000000000602082015250565b60006200029d602e836200022e565b9150620002aa826200023f565b604082019050919050565b60006020820190508181036000830152620002d0816200028e565b9050919050565b6000819050919050565b620002ec81620002d7565b82525050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006200032a6005836200022e565b91506200033782620002f2565b602082019050919050565b6000604082019050620003596000830184620002e1565b81810360208301526200036c816200031b565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620003b082620002d7565b9150620003bd83620002d7565b9250828201905080821115620003d857620003d762000374565b5b92915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000416600e836200022e565b91506200042382620003de565b602082019050919050565b6000604082019050620004456000830184620002e1565b8181036020830152620004588162000407565b905092915050565b61062f80620004706000396000f3fe608060405234801561001057600080fd5b50600436106100625760003560e01c80631c717069146100675780631c93908c1461008557806392954362146100b5578063a0712d68146100bf578063b69ef8a8146100ef578063c9353cb51461010d575b600080fd5b61006f610129565b60405161007c91906102ed565b60405180910390f35b61009f600480360381019061009a9190610343565b610178565b6040516100ac919061037f565b60405180910390f35b6100bd6101ea565b005b6100d960048036038101906100d49190610343565b610225565b6040516100e6919061037f565b60405180910390f35b6100f76102b5565b604051610104919061037f565b60405180910390f35b610127600480360381019061012291906103f8565b6102bb565b005b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516101c09190610482565b60405180910390a281600260008282546101da91906104df565b9250508190555060029050919050565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161021c9061055f565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405161026d91906105cb565b60405180910390a28160008082825461028691906104df565b925050819055506102a260018361029d91906104df565b610178565b506102ab610129565b5060019050919050565b60005481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b6000819050919050565b6102e7816102d4565b82525050565b600060208201905061030260008301846102de565b92915050565b600080fd5b6000819050919050565b6103208161030d565b811461032b57600080fd5b50565b60008135905061033d81610317565b92915050565b60006020828403121561035957610358610308565b5b60006103678482850161032e565b91505092915050565b6103798161030d565b82525050565b60006020820190506103946000830184610370565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006103c58261039a565b9050919050565b6103d5816103ba565b81146103e057600080fd5b50565b6000813590506103f2816103cc565b92915050565b60006020828403121561040e5761040d610308565b5b600061041c848285016103e3565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600061046c600e83610425565b915061047782610436565b602082019050919050565b60006040820190506104976000830184610370565b81810360208301526104a88161045f565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006104ea8261030d565b91506104f58361030d565b925082820190508082111561050d5761050c6104b0565b5b92915050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b6000610549601783610425565b915061055482610513565b602082019050919050565b600060208201905081810360008301526105788161053c565b9050919050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006105b5600583610425565b91506105c08261057f565b602082019050919050565b60006040820190506105e06000830184610370565b81810360208301526105f1816105a8565b90509291505056fea26469706673582212202a0a0fa5842e91cc0c1e5b645f7286aad7193a83c3b2f8c8e4c1b35008af0d6f64736f6c63430008140033a264697066735822122036f326b9881542090544d5d6e9f2ff18b13ec09bd4994f14891a84e97f4d6db964736f6c63430008140033", + "output": "0x60806040523480156200001157600080fd5b5060043610620000ac5760003560e01c80638bfe44ff116200006f5780638bfe44ff14620001975780639295436214620001a3578063a0712d6814620001af578063b69ef8a814620001e5578063c9353cb5146200020757620000ac565b806312065fe014620000b15780631c71706914620000d35780631c93908c14620000f55780633aa18088146200012b5780637f29c3941462000161575b600080fd5b620000bb62000227565b604051620000ca919062000975565b60405180910390f35b620000dd62000231565b604051620000ec9190620009ad565b60405180910390f35b6200011360048036038101906200010d919062000a0a565b62000280565b60405162000122919062000975565b60405180910390f35b62000149600480360381019062000143919062000a0a565b620002f6565b60405162000158919062000975565b60405180910390f35b6200017f600480360381019062000179919062000a0a565b6200049e565b6040516200018e919062000975565b60405180910390f35b620001a162000771565b005b620001ad620007b3565b005b620001cd6004803603810190620001c7919062000a0a565b620007f0565b604051620001dc919062000975565b60405180910390f35b620001ef6200092d565b604051620001fe919062000975565b60405180910390f35b6200022560048036038101906200021f919062000aa1565b62000933565b005b6000600154905090565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620002ca919062000b34565b60405180910390a28160036000828254620002e6919062000b95565b9250508190555060029050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405162000340919062000c20565b60405180910390a260405162000356906200094c565b604051809103906000f08015801562000373573d6000803e3d6000fd5b506000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508160016000828254620003c7919062000b95565b92505081905550620003e7600183620003e1919062000b95565b62000280565b50620003f262000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b81526004016200044e919062000975565b6020604051808303816000875af11580156200046e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000494919062000c69565b5060019050919050565b60003073ffffffffffffffffffffffffffffffffffffffff1663929543626040518163ffffffff1660e01b815260040160006040518083038186803b158015620004e757600080fd5b505afa925050508015620004f9575060015b620005e1576200050862000ca8565b806308c379a0036200056c57506200051f62000d43565b806200052c57506200056e565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a816040516200055d919062000e56565b60405180910390a150620005db565b505b3d80600081146200059c576040519150601f19603f3d011682016040523d82523d6000602084013e620005a1565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620005d19062000ef0565b60405180910390a1505b620005e2565b5b3073ffffffffffffffffffffffffffffffffffffffff16638bfe44ff6040518163ffffffff1660e01b815260040160006040518083038186803b1580156200062957600080fd5b505afa9250505080156200063b575060015b62000723576200064a62000ca8565b806308c379a003620006ae57506200066162000d43565b806200066e5750620006b0565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a816040516200069f919062000e56565b60405180910390a1506200071d565b505b3d8060008114620006de576040519150601f19603f3d011682016040523d82523d6000602084013e620006e3565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620007139062000ef0565b60405180910390a1505b62000724565b5b600062000768576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200075f9062000f62565b60405180910390fd5b60019050919050565b6001806040517fcf479181000000000000000000000000000000000000000000000000000000008152600401620007aa92919062000fd1565b60405180910390fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007e7906200104e565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200083a919062000c20565b60405180910390a2816001600082825462000856919062000b95565b925050819055506200087660018362000870919062000b95565b62000280565b506200088162000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b8152600401620008dd919062000975565b6020604051808303816000875af1158015620008fd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000923919062000c69565b5060019050919050565b60015481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b610a9f806200107183390190565b6000819050919050565b6200096f816200095a565b82525050565b60006020820190506200098c600083018462000964565b92915050565b6000819050919050565b620009a78162000992565b82525050565b6000602082019050620009c460008301846200099c565b92915050565b6000604051905090565b600080fd5b620009e4816200095a565b8114620009f057600080fd5b50565b60008135905062000a0481620009d9565b92915050565b60006020828403121562000a235762000a22620009d4565b5b600062000a3384828501620009f3565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000a698262000a3c565b9050919050565b62000a7b8162000a5c565b811462000a8757600080fd5b50565b60008135905062000a9b8162000a70565b92915050565b60006020828403121562000aba5762000ab9620009d4565b5b600062000aca8482850162000a8a565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000b1c600e8362000ad3565b915062000b298262000ae4565b602082019050919050565b600060408201905062000b4b600083018462000964565b818103602083015262000b5e8162000b0d565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000ba2826200095a565b915062000baf836200095a565b925082820190508082111562000bca5762000bc962000b66565b5b92915050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b600062000c0860058362000ad3565b915062000c158262000bd0565b602082019050919050565b600060408201905062000c37600083018462000964565b818103602083015262000c4a8162000bf9565b905092915050565b60008151905062000c6381620009d9565b92915050565b60006020828403121562000c825762000c81620009d4565b5b600062000c928482850162000c52565b91505092915050565b60008160e01c9050919050565b600060033d111562000cca5760046000803e62000cc760005162000c9b565b90505b90565b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000d188262000ccd565b810181811067ffffffffffffffff8211171562000d3a5762000d3962000cde565b5b80604052505050565b600060443d1062000ddb5762000d58620009ca565b60043d036004823e80513d602482011167ffffffffffffffff8211171562000d8257505062000ddb565b808201805167ffffffffffffffff81111562000da2575050505062000ddb565b80602083010160043d03850181111562000dc157505050505062000ddb565b62000dd28260200185018662000d0d565b82955050505050505b90565b600081519050919050565b60005b8381101562000e0957808201518184015260208101905062000dec565b60008484015250505050565b600062000e228262000dde565b62000e2e818562000ad3565b935062000e4081856020860162000de9565b62000e4b8162000ccd565b840191505092915050565b6000602082019050818103600083015262000e72818462000e15565b905092915050565b7f45787465726e616c2063616c6c206661696c656420776974686f757420616e2060008201527f6572726f72206d65737361676500000000000000000000000000000000000000602082015250565b600062000ed8602d8362000ad3565b915062000ee58262000e7a565b604082019050919050565b6000602082019050818103600083015262000f0b8162000ec9565b9050919050565b7f494e53554646494349454e542042414c414e4345000000000000000000000000600082015250565b600062000f4a60148362000ad3565b915062000f578262000f12565b602082019050919050565b6000602082019050818103600083015262000f7d8162000f3b565b9050919050565b6000819050919050565b6000819050919050565b600062000fb962000fb362000fad8462000f84565b62000f8e565b6200095a565b9050919050565b62000fcb8162000f98565b82525050565b600060408201905062000fe8600083018562000fc0565b62000ff7602083018462000fc0565b9392505050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b60006200103660178362000ad3565b9150620010438262000ffe565b602082019050919050565b60006020820190508181036000830152620010698162001027565b905091905056fe60806040526000600160006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b50600160009054906101000a900460ff161562000080576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200007790620002b5565b60405180910390fd5b60018060006101000a81548160ff021916908315150217905550620000bc701d6329f1c35ca4bfabb9f5610000000000620000c360201b60201c565b5062000460565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200010d919062000342565b60405180910390a281600080828254620001289190620003a3565b925050819055506200014e600183620001429190620003a3565b6200016960201b60201c565b506200015f620001df60201b60201c565b5060019050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620001b391906200042e565b60405180910390a28160026000828254620001cf9190620003a3565b9250508190555060029050919050565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b600082825260208201905092915050565b7f436f6e747261637420696e7374616e63652068617320616c726561647920626560008201527f656e20696e697469616c697a6564000000000000000000000000000000000000602082015250565b60006200029d602e836200022e565b9150620002aa826200023f565b604082019050919050565b60006020820190508181036000830152620002d0816200028e565b9050919050565b6000819050919050565b620002ec81620002d7565b82525050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006200032a6005836200022e565b91506200033782620002f2565b602082019050919050565b6000604082019050620003596000830184620002e1565b81810360208301526200036c816200031b565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620003b082620002d7565b9150620003bd83620002d7565b9250828201905080821115620003d857620003d762000374565b5b92915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000416600e836200022e565b91506200042382620003de565b602082019050919050565b6000604082019050620004456000830184620002e1565b8181036020830152620004588162000407565b905092915050565b61062f80620004706000396000f3fe608060405234801561001057600080fd5b50600436106100625760003560e01c80631c717069146100675780631c93908c1461008557806392954362146100b5578063a0712d68146100bf578063b69ef8a8146100ef578063c9353cb51461010d575b600080fd5b61006f610129565b60405161007c91906102ed565b60405180910390f35b61009f600480360381019061009a9190610343565b610178565b6040516100ac919061037f565b60405180910390f35b6100bd6101ea565b005b6100d960048036038101906100d49190610343565b610225565b6040516100e6919061037f565b60405180910390f35b6100f76102b5565b604051610104919061037f565b60405180910390f35b610127600480360381019061012291906103f8565b6102bb565b005b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516101c09190610482565b60405180910390a281600260008282546101da91906104df565b9250508190555060029050919050565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161021c9061055f565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405161026d91906105cb565b60405180910390a28160008082825461028691906104df565b925050819055506102a260018361029d91906104df565b610178565b506102ab610129565b5060019050919050565b60005481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b6000819050919050565b6102e7816102d4565b82525050565b600060208201905061030260008301846102de565b92915050565b600080fd5b6000819050919050565b6103208161030d565b811461032b57600080fd5b50565b60008135905061033d81610317565b92915050565b60006020828403121561035957610358610308565b5b60006103678482850161032e565b91505092915050565b6103798161030d565b82525050565b60006020820190506103946000830184610370565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006103c58261039a565b9050919050565b6103d5816103ba565b81146103e057600080fd5b50565b6000813590506103f2816103cc565b92915050565b60006020828403121561040e5761040d610308565b5b600061041c848285016103e3565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600061046c600e83610425565b915061047782610436565b602082019050919050565b60006040820190506104976000830184610370565b81810360208301526104a88161045f565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006104ea8261030d565b91506104f58361030d565b925082820190508082111561050d5761050c6104b0565b5b92915050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b6000610549601783610425565b915061055482610513565b602082019050919050565b600060208201905081810360008301526105788161053c565b9050919050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006105b5600583610425565b91506105c08261057f565b602082019050919050565b60006040820190506105e06000830184610370565b81810360208301526105f1816105a8565b90509291505056fea26469706673582212202a0a0fa5842e91cc0c1e5b645f7286aad7193a83c3b2f8c8e4c1b35008af0d6f64736f6c63430008140033a264697066735822122036f326b9881542090544d5d6e9f2ff18b13ec09bd4994f14891a84e97f4d6db964736f6c63430008140033", "value": "0x0", "type": "CREATE" } \ No newline at end of file diff --git a/test/historicstate/hardhat/scripts/geth_traces/Tracer.deploy.defaultTracer.json b/test/historicstate/hardhat/scripts/geth_traces/Tracer.deploy.defaultTracer.json index 3f83b34c4..184f6f237 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/Tracer.deploy.defaultTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/Tracer.deploy.defaultTracer.json @@ -1,12 +1,12 @@ { - "gas": 1610380, + "gas": 1577378, "failed": false, - "returnValue": "60806040523480156200001157600080fd5b5060043610620000ac5760003560e01c80638bfe44ff116200006f5780638bfe44ff14620001975780639295436214620001a3578063a0712d6814620001af578063b69ef8a814620001e5578063c9353cb5146200020757620000ac565b806312065fe014620000b15780631c71706914620000d35780631c93908c14620000f55780633aa18088146200012b5780637f29c3941462000161575b600080fd5b620000bb62000227565b604051620000ca919062000997565b60405180910390f35b620000dd62000231565b604051620000ec9190620009cf565b60405180910390f35b6200011360048036038101906200010d919062000a2c565b62000280565b60405162000122919062000997565b60405180910390f35b62000149600480360381019062000143919062000a2c565b620002f6565b60405162000158919062000997565b60405180910390f35b6200017f600480360381019062000179919062000a2c565b620004ae565b6040516200018e919062000997565b60405180910390f35b620001a162000783565b005b620001ad620007c5565b005b620001cd6004803603810190620001c7919062000a2c565b62000802565b604051620001dc919062000997565b60405180910390f35b620001ef6200094f565b604051620001fe919062000997565b60405180910390f35b6200022560048036038101906200021f919062000ac3565b62000955565b005b6000600154905090565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620002ca919062000b56565b60405180910390a28160036000828254620002e6919062000bb7565b9250508190555060029050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405162000340919062000c64565b60405180910390a260405162000356906200096e565b604051809103906000f08015801562000373573d6000803e3d6000fd5b506000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508160016000828254620003c7919062000bb7565b92505081905550620003e7600183620003e1919062000bb7565b62000280565b50620003f262000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b81526004016200044e919062000997565b602060405180830381600087803b1580156200046957600080fd5b505af11580156200047e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004a4919062000cad565b5060019050919050565b60003073ffffffffffffffffffffffffffffffffffffffff1663929543626040518163ffffffff1660e01b815260040160006040518083038186803b158015620004f757600080fd5b505afa92505050801562000509575060015b620005f2576200051862000cec565b806308c379a014156200057d57506200053062000d87565b806200053d57506200057f565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a816040516200056e919062000eab565b60405180910390a150620005ec565b505b3d8060008114620005ad576040519150601f19603f3d011682016040523d82523d6000602084013e620005b2565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620005e29062000f45565b60405180910390a1505b620005f3565b5b3073ffffffffffffffffffffffffffffffffffffffff16638bfe44ff6040518163ffffffff1660e01b815260040160006040518083038186803b1580156200063a57600080fd5b505afa9250505080156200064c575060015b62000735576200065b62000cec565b806308c379a01415620006c057506200067362000d87565b80620006805750620006c2565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a81604051620006b1919062000eab565b60405180910390a1506200072f565b505b3d8060008114620006f0576040519150601f19603f3d011682016040523d82523d6000602084013e620006f5565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620007259062000f45565b60405180910390a1505b62000736565b5b60006200077a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007719062000fb7565b60405180910390fd5b60019050919050565b6001806040517fcf479181000000000000000000000000000000000000000000000000000000008152600401620007bc92919062001026565b60405180910390fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007f990620010a3565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200084c919062000c64565b60405180910390a2816001600082825462000868919062000bb7565b925050819055506200088860018362000882919062000bb7565b62000280565b506200089362000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b8152600401620008ef919062000997565b602060405180830381600087803b1580156200090a57600080fd5b505af11580156200091f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000945919062000cad565b5060019050919050565b60015481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b610ae380620010c683390190565b6000819050919050565b62000991816200097c565b82525050565b6000602082019050620009ae600083018462000986565b92915050565b6000819050919050565b620009c981620009b4565b82525050565b6000602082019050620009e66000830184620009be565b92915050565b6000604051905090565b600080fd5b62000a06816200097c565b811462000a1257600080fd5b50565b60008135905062000a2681620009fb565b92915050565b60006020828403121562000a455762000a44620009f6565b5b600062000a558482850162000a15565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000a8b8262000a5e565b9050919050565b62000a9d8162000a7e565b811462000aa957600080fd5b50565b60008135905062000abd8162000a92565b92915050565b60006020828403121562000adc5762000adb620009f6565b5b600062000aec8482850162000aac565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000b3e600e8362000af5565b915062000b4b8262000b06565b602082019050919050565b600060408201905062000b6d600083018462000986565b818103602083015262000b808162000b2f565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000bc4826200097c565b915062000bd1836200097c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000c095762000c0862000b88565b5b828201905092915050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b600062000c4c60058362000af5565b915062000c598262000c14565b602082019050919050565b600060408201905062000c7b600083018462000986565b818103602083015262000c8e8162000c3d565b905092915050565b60008151905062000ca781620009fb565b92915050565b60006020828403121562000cc65762000cc5620009f6565b5b600062000cd68482850162000c96565b91505092915050565b60008160e01c9050919050565b600060033d111562000d0e5760046000803e62000d0b60005162000cdf565b90505b90565b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000d5c8262000d11565b810181811067ffffffffffffffff8211171562000d7e5762000d7d62000d22565b5b80604052505050565b600060443d101562000d995762000e26565b62000da3620009ec565b60043d036004823e80513d602482011167ffffffffffffffff8211171562000dcd57505062000e26565b808201805167ffffffffffffffff81111562000ded575050505062000e26565b80602083010160043d03850181111562000e0c57505050505062000e26565b62000e1d8260200185018662000d51565b82955050505050505b90565b600081519050919050565b60005b8381101562000e5457808201518184015260208101905062000e37565b8381111562000e64576000848401525b50505050565b600062000e778262000e29565b62000e83818562000af5565b935062000e9581856020860162000e34565b62000ea08162000d11565b840191505092915050565b6000602082019050818103600083015262000ec7818462000e6a565b905092915050565b7f45787465726e616c2063616c6c206661696c656420776974686f757420616e2060008201527f6572726f72206d65737361676500000000000000000000000000000000000000602082015250565b600062000f2d602d8362000af5565b915062000f3a8262000ecf565b604082019050919050565b6000602082019050818103600083015262000f608162000f1e565b9050919050565b7f494e53554646494349454e542042414c414e4345000000000000000000000000600082015250565b600062000f9f60148362000af5565b915062000fac8262000f67565b602082019050919050565b6000602082019050818103600083015262000fd28162000f90565b9050919050565b6000819050919050565b6000819050919050565b60006200100e62001008620010028462000fd9565b62000fe3565b6200097c565b9050919050565b620010208162000fed565b82525050565b60006040820190506200103d600083018562001015565b6200104c602083018462001015565b9392505050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b60006200108b60178362000af5565b9150620010988262001053565b602082019050919050565b60006020820190508181036000830152620010be816200107c565b905091905056fe60806040526000600160006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b50600160009054906101000a900460ff161562000080576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200007790620002b5565b60405180910390fd5b60018060006101000a81548160ff021916908315150217905550620000bc701d6329f1c35ca4bfabb9f5610000000000620000c360201b60201c565b5062000482565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200010d919062000342565b60405180910390a281600080828254620001289190620003a3565b925050819055506200014e600183620001429190620003a3565b6200016960201b60201c565b506200015f620001df60201b60201c565b5060019050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620001b3919062000450565b60405180910390a28160026000828254620001cf9190620003a3565b9250508190555060029050919050565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b600082825260208201905092915050565b7f436f6e747261637420696e7374616e63652068617320616c726561647920626560008201527f656e20696e697469616c697a6564000000000000000000000000000000000000602082015250565b60006200029d602e836200022e565b9150620002aa826200023f565b604082019050919050565b60006020820190508181036000830152620002d0816200028e565b9050919050565b6000819050919050565b620002ec81620002d7565b82525050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006200032a6005836200022e565b91506200033782620002f2565b602082019050919050565b6000604082019050620003596000830184620002e1565b81810360208301526200036c816200031b565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620003b082620002d7565b9150620003bd83620002d7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620003f557620003f462000374565b5b828201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000438600e836200022e565b9150620004458262000400565b602082019050919050565b6000604082019050620004676000830184620002e1565b81810360208301526200047a8162000429565b905092915050565b61065180620004926000396000f3fe608060405234801561001057600080fd5b50600436106100625760003560e01c80631c717069146100675780631c93908c1461008557806392954362146100b5578063a0712d68146100bf578063b69ef8a8146100ef578063c9353cb51461010d575b600080fd5b61006f610129565b60405161007c91906102ed565b60405180910390f35b61009f600480360381019061009a9190610343565b610178565b6040516100ac919061037f565b60405180910390f35b6100bd6101ea565b005b6100d960048036038101906100d49190610343565b610225565b6040516100e6919061037f565b60405180910390f35b6100f76102b5565b604051610104919061037f565b60405180910390f35b610127600480360381019061012291906103f8565b6102bb565b005b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516101c09190610482565b60405180910390a281600260008282546101da91906104df565b9250508190555060029050919050565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161021c90610581565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405161026d91906105ed565b60405180910390a28160008082825461028691906104df565b925050819055506102a260018361029d91906104df565b610178565b506102ab610129565b5060019050919050565b60005481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b6000819050919050565b6102e7816102d4565b82525050565b600060208201905061030260008301846102de565b92915050565b600080fd5b6000819050919050565b6103208161030d565b811461032b57600080fd5b50565b60008135905061033d81610317565b92915050565b60006020828403121561035957610358610308565b5b60006103678482850161032e565b91505092915050565b6103798161030d565b82525050565b60006020820190506103946000830184610370565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006103c58261039a565b9050919050565b6103d5816103ba565b81146103e057600080fd5b50565b6000813590506103f2816103cc565b92915050565b60006020828403121561040e5761040d610308565b5b600061041c848285016103e3565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600061046c600e83610425565b915061047782610436565b602082019050919050565b60006040820190506104976000830184610370565b81810360208301526104a88161045f565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006104ea8261030d565b91506104f58361030d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561052a576105296104b0565b5b828201905092915050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b600061056b601783610425565b915061057682610535565b602082019050919050565b6000602082019050818103600083015261059a8161055e565b9050919050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006105d7600583610425565b91506105e2826105a1565b602082019050919050565b60006040820190506106026000830184610370565b8181036020830152610613816105ca565b90509291505056fea26469706673582212208743accab6cfcd1c8ccb3f51b787d679e803a77ce24ec642bd068883132fd5fa64736f6c63430008090033a264697066735822122066241fedca9ebd69f0cd9e4879f75428f5d4bf734eb072e52934a8b3161581f064736f6c63430008090033", + "returnValue": "60806040523480156200001157600080fd5b5060043610620000ac5760003560e01c80638bfe44ff116200006f5780638bfe44ff14620001975780639295436214620001a3578063a0712d6814620001af578063b69ef8a814620001e5578063c9353cb5146200020757620000ac565b806312065fe014620000b15780631c71706914620000d35780631c93908c14620000f55780633aa18088146200012b5780637f29c3941462000161575b600080fd5b620000bb62000227565b604051620000ca919062000975565b60405180910390f35b620000dd62000231565b604051620000ec9190620009ad565b60405180910390f35b6200011360048036038101906200010d919062000a0a565b62000280565b60405162000122919062000975565b60405180910390f35b62000149600480360381019062000143919062000a0a565b620002f6565b60405162000158919062000975565b60405180910390f35b6200017f600480360381019062000179919062000a0a565b6200049e565b6040516200018e919062000975565b60405180910390f35b620001a162000771565b005b620001ad620007b3565b005b620001cd6004803603810190620001c7919062000a0a565b620007f0565b604051620001dc919062000975565b60405180910390f35b620001ef6200092d565b604051620001fe919062000975565b60405180910390f35b6200022560048036038101906200021f919062000aa1565b62000933565b005b6000600154905090565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620002ca919062000b34565b60405180910390a28160036000828254620002e6919062000b95565b9250508190555060029050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405162000340919062000c20565b60405180910390a260405162000356906200094c565b604051809103906000f08015801562000373573d6000803e3d6000fd5b506000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508160016000828254620003c7919062000b95565b92505081905550620003e7600183620003e1919062000b95565b62000280565b50620003f262000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b81526004016200044e919062000975565b6020604051808303816000875af11580156200046e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000494919062000c69565b5060019050919050565b60003073ffffffffffffffffffffffffffffffffffffffff1663929543626040518163ffffffff1660e01b815260040160006040518083038186803b158015620004e757600080fd5b505afa925050508015620004f9575060015b620005e1576200050862000ca8565b806308c379a0036200056c57506200051f62000d43565b806200052c57506200056e565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a816040516200055d919062000e56565b60405180910390a150620005db565b505b3d80600081146200059c576040519150601f19603f3d011682016040523d82523d6000602084013e620005a1565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620005d19062000ef0565b60405180910390a1505b620005e2565b5b3073ffffffffffffffffffffffffffffffffffffffff16638bfe44ff6040518163ffffffff1660e01b815260040160006040518083038186803b1580156200062957600080fd5b505afa9250505080156200063b575060015b62000723576200064a62000ca8565b806308c379a003620006ae57506200066162000d43565b806200066e5750620006b0565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a816040516200069f919062000e56565b60405180910390a1506200071d565b505b3d8060008114620006de576040519150601f19603f3d011682016040523d82523d6000602084013e620006e3565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620007139062000ef0565b60405180910390a1505b62000724565b5b600062000768576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200075f9062000f62565b60405180910390fd5b60019050919050565b6001806040517fcf479181000000000000000000000000000000000000000000000000000000008152600401620007aa92919062000fd1565b60405180910390fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007e7906200104e565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200083a919062000c20565b60405180910390a2816001600082825462000856919062000b95565b925050819055506200087660018362000870919062000b95565b62000280565b506200088162000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b8152600401620008dd919062000975565b6020604051808303816000875af1158015620008fd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000923919062000c69565b5060019050919050565b60015481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b610a9f806200107183390190565b6000819050919050565b6200096f816200095a565b82525050565b60006020820190506200098c600083018462000964565b92915050565b6000819050919050565b620009a78162000992565b82525050565b6000602082019050620009c460008301846200099c565b92915050565b6000604051905090565b600080fd5b620009e4816200095a565b8114620009f057600080fd5b50565b60008135905062000a0481620009d9565b92915050565b60006020828403121562000a235762000a22620009d4565b5b600062000a3384828501620009f3565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000a698262000a3c565b9050919050565b62000a7b8162000a5c565b811462000a8757600080fd5b50565b60008135905062000a9b8162000a70565b92915050565b60006020828403121562000aba5762000ab9620009d4565b5b600062000aca8482850162000a8a565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000b1c600e8362000ad3565b915062000b298262000ae4565b602082019050919050565b600060408201905062000b4b600083018462000964565b818103602083015262000b5e8162000b0d565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000ba2826200095a565b915062000baf836200095a565b925082820190508082111562000bca5762000bc962000b66565b5b92915050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b600062000c0860058362000ad3565b915062000c158262000bd0565b602082019050919050565b600060408201905062000c37600083018462000964565b818103602083015262000c4a8162000bf9565b905092915050565b60008151905062000c6381620009d9565b92915050565b60006020828403121562000c825762000c81620009d4565b5b600062000c928482850162000c52565b91505092915050565b60008160e01c9050919050565b600060033d111562000cca5760046000803e62000cc760005162000c9b565b90505b90565b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000d188262000ccd565b810181811067ffffffffffffffff8211171562000d3a5762000d3962000cde565b5b80604052505050565b600060443d1062000ddb5762000d58620009ca565b60043d036004823e80513d602482011167ffffffffffffffff8211171562000d8257505062000ddb565b808201805167ffffffffffffffff81111562000da2575050505062000ddb565b80602083010160043d03850181111562000dc157505050505062000ddb565b62000dd28260200185018662000d0d565b82955050505050505b90565b600081519050919050565b60005b8381101562000e0957808201518184015260208101905062000dec565b60008484015250505050565b600062000e228262000dde565b62000e2e818562000ad3565b935062000e4081856020860162000de9565b62000e4b8162000ccd565b840191505092915050565b6000602082019050818103600083015262000e72818462000e15565b905092915050565b7f45787465726e616c2063616c6c206661696c656420776974686f757420616e2060008201527f6572726f72206d65737361676500000000000000000000000000000000000000602082015250565b600062000ed8602d8362000ad3565b915062000ee58262000e7a565b604082019050919050565b6000602082019050818103600083015262000f0b8162000ec9565b9050919050565b7f494e53554646494349454e542042414c414e4345000000000000000000000000600082015250565b600062000f4a60148362000ad3565b915062000f578262000f12565b602082019050919050565b6000602082019050818103600083015262000f7d8162000f3b565b9050919050565b6000819050919050565b6000819050919050565b600062000fb962000fb362000fad8462000f84565b62000f8e565b6200095a565b9050919050565b62000fcb8162000f98565b82525050565b600060408201905062000fe8600083018562000fc0565b62000ff7602083018462000fc0565b9392505050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b60006200103660178362000ad3565b9150620010438262000ffe565b602082019050919050565b60006020820190508181036000830152620010698162001027565b905091905056fe60806040526000600160006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b50600160009054906101000a900460ff161562000080576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200007790620002b5565b60405180910390fd5b60018060006101000a81548160ff021916908315150217905550620000bc701d6329f1c35ca4bfabb9f5610000000000620000c360201b60201c565b5062000460565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200010d919062000342565b60405180910390a281600080828254620001289190620003a3565b925050819055506200014e600183620001429190620003a3565b6200016960201b60201c565b506200015f620001df60201b60201c565b5060019050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620001b391906200042e565b60405180910390a28160026000828254620001cf9190620003a3565b9250508190555060029050919050565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b600082825260208201905092915050565b7f436f6e747261637420696e7374616e63652068617320616c726561647920626560008201527f656e20696e697469616c697a6564000000000000000000000000000000000000602082015250565b60006200029d602e836200022e565b9150620002aa826200023f565b604082019050919050565b60006020820190508181036000830152620002d0816200028e565b9050919050565b6000819050919050565b620002ec81620002d7565b82525050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006200032a6005836200022e565b91506200033782620002f2565b602082019050919050565b6000604082019050620003596000830184620002e1565b81810360208301526200036c816200031b565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620003b082620002d7565b9150620003bd83620002d7565b9250828201905080821115620003d857620003d762000374565b5b92915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000416600e836200022e565b91506200042382620003de565b602082019050919050565b6000604082019050620004456000830184620002e1565b8181036020830152620004588162000407565b905092915050565b61062f80620004706000396000f3fe608060405234801561001057600080fd5b50600436106100625760003560e01c80631c717069146100675780631c93908c1461008557806392954362146100b5578063a0712d68146100bf578063b69ef8a8146100ef578063c9353cb51461010d575b600080fd5b61006f610129565b60405161007c91906102ed565b60405180910390f35b61009f600480360381019061009a9190610343565b610178565b6040516100ac919061037f565b60405180910390f35b6100bd6101ea565b005b6100d960048036038101906100d49190610343565b610225565b6040516100e6919061037f565b60405180910390f35b6100f76102b5565b604051610104919061037f565b60405180910390f35b610127600480360381019061012291906103f8565b6102bb565b005b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516101c09190610482565b60405180910390a281600260008282546101da91906104df565b9250508190555060029050919050565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161021c9061055f565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405161026d91906105cb565b60405180910390a28160008082825461028691906104df565b925050819055506102a260018361029d91906104df565b610178565b506102ab610129565b5060019050919050565b60005481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b6000819050919050565b6102e7816102d4565b82525050565b600060208201905061030260008301846102de565b92915050565b600080fd5b6000819050919050565b6103208161030d565b811461032b57600080fd5b50565b60008135905061033d81610317565b92915050565b60006020828403121561035957610358610308565b5b60006103678482850161032e565b91505092915050565b6103798161030d565b82525050565b60006020820190506103946000830184610370565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006103c58261039a565b9050919050565b6103d5816103ba565b81146103e057600080fd5b50565b6000813590506103f2816103cc565b92915050565b60006020828403121561040e5761040d610308565b5b600061041c848285016103e3565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600061046c600e83610425565b915061047782610436565b602082019050919050565b60006040820190506104976000830184610370565b81810360208301526104a88161045f565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006104ea8261030d565b91506104f58361030d565b925082820190508082111561050d5761050c6104b0565b5b92915050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b6000610549601783610425565b915061055482610513565b602082019050919050565b600060208201905081810360008301526105788161053c565b9050919050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006105b5600583610425565b91506105c08261057f565b602082019050919050565b60006040820190506105e06000830184610370565b81810360208301526105f1816105a8565b90509291505056fea26469706673582212202a0a0fa5842e91cc0c1e5b645f7286aad7193a83c3b2f8c8e4c1b35008af0d6f64736f6c63430008140033a264697066735822122036f326b9881542090544d5d6e9f2ff18b13ec09bd4994f14891a84e97f4d6db964736f6c63430008140033", "structLogs": [ { "pc": 0, "op": "PUSH1", - "gas": 1940508, + "gas": 1942882, "gasCost": 3, "depth": 1, "stack": [] @@ -14,7 +14,7 @@ { "pc": 2, "op": "PUSH1", - "gas": 1940505, + "gas": 1942879, "gasCost": 3, "depth": 1, "stack": [ @@ -24,7 +24,7 @@ { "pc": 4, "op": "MSTORE", - "gas": 1940502, + "gas": 1942876, "gasCost": 12, "depth": 1, "stack": [ @@ -35,7 +35,7 @@ { "pc": 5, "op": "PUSH1", - "gas": 1940490, + "gas": 1942864, "gasCost": 3, "depth": 1, "stack": [] @@ -43,7 +43,7 @@ { "pc": 7, "op": "PUSH1", - "gas": 1940487, + "gas": 1942861, "gasCost": 3, "depth": 1, "stack": [ @@ -53,7 +53,7 @@ { "pc": 9, "op": "PUSH1", - "gas": 1940484, + "gas": 1942858, "gasCost": 3, "depth": 1, "stack": [ @@ -64,7 +64,7 @@ { "pc": 11, "op": "PUSH2", - "gas": 1940481, + "gas": 1942855, "gasCost": 3, "depth": 1, "stack": [ @@ -76,7 +76,7 @@ { "pc": 14, "op": "EXP", - "gas": 1940478, + "gas": 1942852, "gasCost": 10, "depth": 1, "stack": [ @@ -89,7 +89,7 @@ { "pc": 15, "op": "DUP2", - "gas": 1940468, + "gas": 1942842, "gasCost": 3, "depth": 1, "stack": [ @@ -101,7 +101,7 @@ { "pc": 16, "op": "SLOAD", - "gas": 1940465, + "gas": 1942839, "gasCost": 2100, "depth": 1, "stack": [ @@ -117,7 +117,7 @@ { "pc": 17, "op": "DUP2", - "gas": 1938365, + "gas": 1940739, "gasCost": 3, "depth": 1, "stack": [ @@ -130,7 +130,7 @@ { "pc": 18, "op": "PUSH1", - "gas": 1938362, + "gas": 1940736, "gasCost": 3, "depth": 1, "stack": [ @@ -144,7 +144,7 @@ { "pc": 20, "op": "MUL", - "gas": 1938359, + "gas": 1940733, "gasCost": 5, "depth": 1, "stack": [ @@ -159,7 +159,7 @@ { "pc": 21, "op": "NOT", - "gas": 1938354, + "gas": 1940728, "gasCost": 3, "depth": 1, "stack": [ @@ -173,7 +173,7 @@ { "pc": 22, "op": "AND", - "gas": 1938351, + "gas": 1940725, "gasCost": 3, "depth": 1, "stack": [ @@ -187,7 +187,7 @@ { "pc": 23, "op": "SWAP1", - "gas": 1938348, + "gas": 1940722, "gasCost": 3, "depth": 1, "stack": [ @@ -200,7 +200,7 @@ { "pc": 24, "op": "DUP4", - "gas": 1938345, + "gas": 1940719, "gasCost": 3, "depth": 1, "stack": [ @@ -213,7 +213,7 @@ { "pc": 25, "op": "ISZERO", - "gas": 1938342, + "gas": 1940716, "gasCost": 3, "depth": 1, "stack": [ @@ -227,7 +227,7 @@ { "pc": 26, "op": "ISZERO", - "gas": 1938339, + "gas": 1940713, "gasCost": 3, "depth": 1, "stack": [ @@ -241,7 +241,7 @@ { "pc": 27, "op": "MUL", - "gas": 1938336, + "gas": 1940710, "gasCost": 5, "depth": 1, "stack": [ @@ -255,7 +255,7 @@ { "pc": 28, "op": "OR", - "gas": 1938331, + "gas": 1940705, "gasCost": 3, "depth": 1, "stack": [ @@ -268,7 +268,7 @@ { "pc": 29, "op": "SWAP1", - "gas": 1938328, + "gas": 1940702, "gasCost": 3, "depth": 1, "stack": [ @@ -280,7 +280,7 @@ { "pc": 30, "op": "SSTORE", - "gas": 1938325, + "gas": 1940699, "gasCost": 100, "depth": 1, "stack": [ @@ -295,7 +295,7 @@ { "pc": 31, "op": "POP", - "gas": 1938225, + "gas": 1940599, "gasCost": 2, "depth": 1, "stack": [ @@ -305,7 +305,7 @@ { "pc": 32, "op": "CALLVALUE", - "gas": 1938223, + "gas": 1940597, "gasCost": 2, "depth": 1, "stack": [] @@ -313,7 +313,7 @@ { "pc": 33, "op": "DUP1", - "gas": 1938221, + "gas": 1940595, "gasCost": 3, "depth": 1, "stack": [ @@ -323,7 +323,7 @@ { "pc": 34, "op": "ISZERO", - "gas": 1938218, + "gas": 1940592, "gasCost": 3, "depth": 1, "stack": [ @@ -334,7 +334,7 @@ { "pc": 35, "op": "PUSH2", - "gas": 1938215, + "gas": 1940589, "gasCost": 3, "depth": 1, "stack": [ @@ -345,7 +345,7 @@ { "pc": 38, "op": "JUMPI", - "gas": 1938212, + "gas": 1940586, "gasCost": 10, "depth": 1, "stack": [ @@ -357,7 +357,7 @@ { "pc": 43, "op": "JUMPDEST", - "gas": 1938202, + "gas": 1940576, "gasCost": 1, "depth": 1, "stack": [ @@ -367,7 +367,7 @@ { "pc": 44, "op": "POP", - "gas": 1938201, + "gas": 1940575, "gasCost": 2, "depth": 1, "stack": [ @@ -377,7 +377,7 @@ { "pc": 45, "op": "PUSH1", - "gas": 1938199, + "gas": 1940573, "gasCost": 3, "depth": 1, "stack": [] @@ -385,7 +385,7 @@ { "pc": 47, "op": "PUSH1", - "gas": 1938196, + "gas": 1940570, "gasCost": 3, "depth": 1, "stack": [ @@ -395,7 +395,7 @@ { "pc": 49, "op": "SWAP1", - "gas": 1938193, + "gas": 1940567, "gasCost": 3, "depth": 1, "stack": [ @@ -406,7 +406,7 @@ { "pc": 50, "op": "SLOAD", - "gas": 1938190, + "gas": 1940564, "gasCost": 100, "depth": 1, "stack": [ @@ -420,7 +420,7 @@ { "pc": 51, "op": "SWAP1", - "gas": 1938090, + "gas": 1940464, "gasCost": 3, "depth": 1, "stack": [ @@ -431,7 +431,7 @@ { "pc": 52, "op": "PUSH2", - "gas": 1938087, + "gas": 1940461, "gasCost": 3, "depth": 1, "stack": [ @@ -442,7 +442,7 @@ { "pc": 55, "op": "EXP", - "gas": 1938084, + "gas": 1940458, "gasCost": 10, "depth": 1, "stack": [ @@ -454,7 +454,7 @@ { "pc": 56, "op": "SWAP1", - "gas": 1938074, + "gas": 1940448, "gasCost": 3, "depth": 1, "stack": [ @@ -465,7 +465,7 @@ { "pc": 57, "op": "DIV", - "gas": 1938071, + "gas": 1940445, "gasCost": 5, "depth": 1, "stack": [ @@ -476,7 +476,7 @@ { "pc": 58, "op": "PUSH1", - "gas": 1938066, + "gas": 1940440, "gasCost": 3, "depth": 1, "stack": [ @@ -486,7 +486,7 @@ { "pc": 60, "op": "AND", - "gas": 1938063, + "gas": 1940437, "gasCost": 3, "depth": 1, "stack": [ @@ -497,7 +497,7 @@ { "pc": 61, "op": "ISZERO", - "gas": 1938060, + "gas": 1940434, "gasCost": 3, "depth": 1, "stack": [ @@ -507,7 +507,7 @@ { "pc": 62, "op": "PUSH2", - "gas": 1938057, + "gas": 1940431, "gasCost": 3, "depth": 1, "stack": [ @@ -517,7 +517,7 @@ { "pc": 65, "op": "JUMPI", - "gas": 1938054, + "gas": 1940428, "gasCost": 10, "depth": 1, "stack": [ @@ -528,7 +528,7 @@ { "pc": 124, "op": "JUMPDEST", - "gas": 1938044, + "gas": 1940418, "gasCost": 1, "depth": 1, "stack": [] @@ -536,7 +536,7 @@ { "pc": 125, "op": "PUSH1", - "gas": 1938043, + "gas": 1940417, "gasCost": 3, "depth": 1, "stack": [] @@ -544,7 +544,7 @@ { "pc": 127, "op": "PUSH1", - "gas": 1938040, + "gas": 1940414, "gasCost": 3, "depth": 1, "stack": [ @@ -554,7 +554,7 @@ { "pc": 129, "op": "PUSH1", - "gas": 1938037, + "gas": 1940411, "gasCost": 3, "depth": 1, "stack": [ @@ -565,7 +565,7 @@ { "pc": 131, "op": "PUSH2", - "gas": 1938034, + "gas": 1940408, "gasCost": 3, "depth": 1, "stack": [ @@ -577,7 +577,7 @@ { "pc": 134, "op": "EXP", - "gas": 1938031, + "gas": 1940405, "gasCost": 10, "depth": 1, "stack": [ @@ -590,7 +590,7 @@ { "pc": 135, "op": "DUP2", - "gas": 1938021, + "gas": 1940395, "gasCost": 3, "depth": 1, "stack": [ @@ -602,7 +602,7 @@ { "pc": 136, "op": "SLOAD", - "gas": 1938018, + "gas": 1940392, "gasCost": 100, "depth": 1, "stack": [ @@ -618,7 +618,7 @@ { "pc": 137, "op": "DUP2", - "gas": 1937918, + "gas": 1940292, "gasCost": 3, "depth": 1, "stack": [ @@ -631,7 +631,7 @@ { "pc": 138, "op": "PUSH1", - "gas": 1937915, + "gas": 1940289, "gasCost": 3, "depth": 1, "stack": [ @@ -645,7 +645,7 @@ { "pc": 140, "op": "MUL", - "gas": 1937912, + "gas": 1940286, "gasCost": 5, "depth": 1, "stack": [ @@ -660,7 +660,7 @@ { "pc": 141, "op": "NOT", - "gas": 1937907, + "gas": 1940281, "gasCost": 3, "depth": 1, "stack": [ @@ -674,7 +674,7 @@ { "pc": 142, "op": "AND", - "gas": 1937904, + "gas": 1940278, "gasCost": 3, "depth": 1, "stack": [ @@ -688,7 +688,7 @@ { "pc": 143, "op": "SWAP1", - "gas": 1937901, + "gas": 1940275, "gasCost": 3, "depth": 1, "stack": [ @@ -701,7 +701,7 @@ { "pc": 144, "op": "DUP4", - "gas": 1937898, + "gas": 1940272, "gasCost": 3, "depth": 1, "stack": [ @@ -714,7 +714,7 @@ { "pc": 145, "op": "ISZERO", - "gas": 1937895, + "gas": 1940269, "gasCost": 3, "depth": 1, "stack": [ @@ -728,7 +728,7 @@ { "pc": 146, "op": "ISZERO", - "gas": 1937892, + "gas": 1940266, "gasCost": 3, "depth": 1, "stack": [ @@ -742,7 +742,7 @@ { "pc": 147, "op": "MUL", - "gas": 1937889, + "gas": 1940263, "gasCost": 5, "depth": 1, "stack": [ @@ -756,7 +756,7 @@ { "pc": 148, "op": "OR", - "gas": 1937884, + "gas": 1940258, "gasCost": 3, "depth": 1, "stack": [ @@ -769,7 +769,7 @@ { "pc": 149, "op": "SWAP1", - "gas": 1937881, + "gas": 1940255, "gasCost": 3, "depth": 1, "stack": [ @@ -781,7 +781,7 @@ { "pc": 150, "op": "SSTORE", - "gas": 1937878, + "gas": 1940252, "gasCost": 20000, "depth": 1, "stack": [ @@ -796,7 +796,7 @@ { "pc": 151, "op": "POP", - "gas": 1917878, + "gas": 1920252, "gasCost": 2, "depth": 1, "stack": [ @@ -806,7 +806,7 @@ { "pc": 152, "op": "PUSH2", - "gas": 1917876, + "gas": 1920250, "gasCost": 3, "depth": 1, "stack": [] @@ -814,7 +814,7 @@ { "pc": 155, "op": "JUMP", - "gas": 1917873, + "gas": 1920247, "gasCost": 8, "depth": 1, "stack": [ @@ -824,7 +824,7 @@ { "pc": 319, "op": "JUMPDEST", - "gas": 1917865, + "gas": 1920239, "gasCost": 1, "depth": 1, "stack": [] @@ -832,7 +832,7 @@ { "pc": 320, "op": "PUSH2", - "gas": 1917864, + "gas": 1920238, "gasCost": 3, "depth": 1, "stack": [] @@ -840,45 +840,45 @@ { "pc": 323, "op": "DUP1", - "gas": 1917861, + "gas": 1920235, "gasCost": 3, "depth": 1, "stack": [ - "0x1bde" + "0x1b45" ] }, { "pc": 324, "op": "PUSH2", - "gas": 1917858, + "gas": 1920232, "gasCost": 3, "depth": 1, "stack": [ - "0x1bde", - "0x1bde" + "0x1b45", + "0x1b45" ] }, { "pc": 327, "op": "PUSH1", - "gas": 1917855, + "gas": 1920229, "gasCost": 3, "depth": 1, "stack": [ - "0x1bde", - "0x1bde", + "0x1b45", + "0x1b45", "0x14e" ] }, { "pc": 329, "op": "CODECOPY", - "gas": 1917852, - "gasCost": 1429, + "gas": 1920226, + "gasCost": 1401, "depth": 1, "stack": [ - "0x1bde", - "0x1bde", + "0x1b45", + "0x1b45", "0x14e", "0x0" ] @@ -886,21 +886,21 @@ { "pc": 330, "op": "PUSH1", - "gas": 1916423, + "gas": 1918825, "gasCost": 3, "depth": 1, "stack": [ - "0x1bde" + "0x1b45" ] }, { "pc": 332, "op": "RETURN", - "gas": 1916420, + "gas": 1918822, "gasCost": 0, "depth": 1, "stack": [ - "0x1bde", + "0x1b45", "0x0" ] } diff --git a/test/historicstate/hardhat/scripts/geth_traces/Tracer.deploy.prestateDiffTracer.json b/test/historicstate/hardhat/scripts/geth_traces/Tracer.deploy.prestateDiffTracer.json index fc07703fa..bb4689866 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/Tracer.deploy.prestateDiffTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/Tracer.deploy.prestateDiffTracer.json @@ -1,30 +1,27 @@ { "post": { "0x0000000000000000000000000000000000000000": { - "balance": "0x1b4d4a6" - }, - "OWNER.address": { - "balance": "0x3611ac5ad359e668e5", - "nonce": 79 + "balance": "0x3bf546" }, "Tracer.address": { - "code": "0x60806040523480156200001157600080fd5b5060043610620000ac5760003560e01c80638bfe44ff116200006f5780638bfe44ff14620001975780639295436214620001a3578063a0712d6814620001af578063b69ef8a814620001e5578063c9353cb5146200020757620000ac565b806312065fe014620000b15780631c71706914620000d35780631c93908c14620000f55780633aa18088146200012b5780637f29c3941462000161575b600080fd5b620000bb62000227565b604051620000ca919062000997565b60405180910390f35b620000dd62000231565b604051620000ec9190620009cf565b60405180910390f35b6200011360048036038101906200010d919062000a2c565b62000280565b60405162000122919062000997565b60405180910390f35b62000149600480360381019062000143919062000a2c565b620002f6565b60405162000158919062000997565b60405180910390f35b6200017f600480360381019062000179919062000a2c565b620004ae565b6040516200018e919062000997565b60405180910390f35b620001a162000783565b005b620001ad620007c5565b005b620001cd6004803603810190620001c7919062000a2c565b62000802565b604051620001dc919062000997565b60405180910390f35b620001ef6200094f565b604051620001fe919062000997565b60405180910390f35b6200022560048036038101906200021f919062000ac3565b62000955565b005b6000600154905090565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620002ca919062000b56565b60405180910390a28160036000828254620002e6919062000bb7565b9250508190555060029050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405162000340919062000c64565b60405180910390a260405162000356906200096e565b604051809103906000f08015801562000373573d6000803e3d6000fd5b506000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508160016000828254620003c7919062000bb7565b92505081905550620003e7600183620003e1919062000bb7565b62000280565b50620003f262000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b81526004016200044e919062000997565b602060405180830381600087803b1580156200046957600080fd5b505af11580156200047e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004a4919062000cad565b5060019050919050565b60003073ffffffffffffffffffffffffffffffffffffffff1663929543626040518163ffffffff1660e01b815260040160006040518083038186803b158015620004f757600080fd5b505afa92505050801562000509575060015b620005f2576200051862000cec565b806308c379a014156200057d57506200053062000d87565b806200053d57506200057f565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a816040516200056e919062000eab565b60405180910390a150620005ec565b505b3d8060008114620005ad576040519150601f19603f3d011682016040523d82523d6000602084013e620005b2565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620005e29062000f45565b60405180910390a1505b620005f3565b5b3073ffffffffffffffffffffffffffffffffffffffff16638bfe44ff6040518163ffffffff1660e01b815260040160006040518083038186803b1580156200063a57600080fd5b505afa9250505080156200064c575060015b62000735576200065b62000cec565b806308c379a01415620006c057506200067362000d87565b80620006805750620006c2565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a81604051620006b1919062000eab565b60405180910390a1506200072f565b505b3d8060008114620006f0576040519150601f19603f3d011682016040523d82523d6000602084013e620006f5565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620007259062000f45565b60405180910390a1505b62000736565b5b60006200077a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007719062000fb7565b60405180910390fd5b60019050919050565b6001806040517fcf479181000000000000000000000000000000000000000000000000000000008152600401620007bc92919062001026565b60405180910390fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007f990620010a3565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200084c919062000c64565b60405180910390a2816001600082825462000868919062000bb7565b925050819055506200088860018362000882919062000bb7565b62000280565b506200089362000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b8152600401620008ef919062000997565b602060405180830381600087803b1580156200090a57600080fd5b505af11580156200091f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000945919062000cad565b5060019050919050565b60015481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b610ae380620010c683390190565b6000819050919050565b62000991816200097c565b82525050565b6000602082019050620009ae600083018462000986565b92915050565b6000819050919050565b620009c981620009b4565b82525050565b6000602082019050620009e66000830184620009be565b92915050565b6000604051905090565b600080fd5b62000a06816200097c565b811462000a1257600080fd5b50565b60008135905062000a2681620009fb565b92915050565b60006020828403121562000a455762000a44620009f6565b5b600062000a558482850162000a15565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000a8b8262000a5e565b9050919050565b62000a9d8162000a7e565b811462000aa957600080fd5b50565b60008135905062000abd8162000a92565b92915050565b60006020828403121562000adc5762000adb620009f6565b5b600062000aec8482850162000aac565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000b3e600e8362000af5565b915062000b4b8262000b06565b602082019050919050565b600060408201905062000b6d600083018462000986565b818103602083015262000b808162000b2f565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000bc4826200097c565b915062000bd1836200097c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000c095762000c0862000b88565b5b828201905092915050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b600062000c4c60058362000af5565b915062000c598262000c14565b602082019050919050565b600060408201905062000c7b600083018462000986565b818103602083015262000c8e8162000c3d565b905092915050565b60008151905062000ca781620009fb565b92915050565b60006020828403121562000cc65762000cc5620009f6565b5b600062000cd68482850162000c96565b91505092915050565b60008160e01c9050919050565b600060033d111562000d0e5760046000803e62000d0b60005162000cdf565b90505b90565b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000d5c8262000d11565b810181811067ffffffffffffffff8211171562000d7e5762000d7d62000d22565b5b80604052505050565b600060443d101562000d995762000e26565b62000da3620009ec565b60043d036004823e80513d602482011167ffffffffffffffff8211171562000dcd57505062000e26565b808201805167ffffffffffffffff81111562000ded575050505062000e26565b80602083010160043d03850181111562000e0c57505050505062000e26565b62000e1d8260200185018662000d51565b82955050505050505b90565b600081519050919050565b60005b8381101562000e5457808201518184015260208101905062000e37565b8381111562000e64576000848401525b50505050565b600062000e778262000e29565b62000e83818562000af5565b935062000e9581856020860162000e34565b62000ea08162000d11565b840191505092915050565b6000602082019050818103600083015262000ec7818462000e6a565b905092915050565b7f45787465726e616c2063616c6c206661696c656420776974686f757420616e2060008201527f6572726f72206d65737361676500000000000000000000000000000000000000602082015250565b600062000f2d602d8362000af5565b915062000f3a8262000ecf565b604082019050919050565b6000602082019050818103600083015262000f608162000f1e565b9050919050565b7f494e53554646494349454e542042414c414e4345000000000000000000000000600082015250565b600062000f9f60148362000af5565b915062000fac8262000f67565b602082019050919050565b6000602082019050818103600083015262000fd28162000f90565b9050919050565b6000819050919050565b6000819050919050565b60006200100e62001008620010028462000fd9565b62000fe3565b6200097c565b9050919050565b620010208162000fed565b82525050565b60006040820190506200103d600083018562001015565b6200104c602083018462001015565b9392505050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b60006200108b60178362000af5565b9150620010988262001053565b602082019050919050565b60006020820190508181036000830152620010be816200107c565b905091905056fe60806040526000600160006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b50600160009054906101000a900460ff161562000080576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200007790620002b5565b60405180910390fd5b60018060006101000a81548160ff021916908315150217905550620000bc701d6329f1c35ca4bfabb9f5610000000000620000c360201b60201c565b5062000482565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200010d919062000342565b60405180910390a281600080828254620001289190620003a3565b925050819055506200014e600183620001429190620003a3565b6200016960201b60201c565b506200015f620001df60201b60201c565b5060019050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620001b3919062000450565b60405180910390a28160026000828254620001cf9190620003a3565b9250508190555060029050919050565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b600082825260208201905092915050565b7f436f6e747261637420696e7374616e63652068617320616c726561647920626560008201527f656e20696e697469616c697a6564000000000000000000000000000000000000602082015250565b60006200029d602e836200022e565b9150620002aa826200023f565b604082019050919050565b60006020820190508181036000830152620002d0816200028e565b9050919050565b6000819050919050565b620002ec81620002d7565b82525050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006200032a6005836200022e565b91506200033782620002f2565b602082019050919050565b6000604082019050620003596000830184620002e1565b81810360208301526200036c816200031b565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620003b082620002d7565b9150620003bd83620002d7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620003f557620003f462000374565b5b828201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000438600e836200022e565b9150620004458262000400565b602082019050919050565b6000604082019050620004676000830184620002e1565b81810360208301526200047a8162000429565b905092915050565b61065180620004926000396000f3fe608060405234801561001057600080fd5b50600436106100625760003560e01c80631c717069146100675780631c93908c1461008557806392954362146100b5578063a0712d68146100bf578063b69ef8a8146100ef578063c9353cb51461010d575b600080fd5b61006f610129565b60405161007c91906102ed565b60405180910390f35b61009f600480360381019061009a9190610343565b610178565b6040516100ac919061037f565b60405180910390f35b6100bd6101ea565b005b6100d960048036038101906100d49190610343565b610225565b6040516100e6919061037f565b60405180910390f35b6100f76102b5565b604051610104919061037f565b60405180910390f35b610127600480360381019061012291906103f8565b6102bb565b005b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516101c09190610482565b60405180910390a281600260008282546101da91906104df565b9250508190555060029050919050565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161021c90610581565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405161026d91906105ed565b60405180910390a28160008082825461028691906104df565b925050819055506102a260018361029d91906104df565b610178565b506102ab610129565b5060019050919050565b60005481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b6000819050919050565b6102e7816102d4565b82525050565b600060208201905061030260008301846102de565b92915050565b600080fd5b6000819050919050565b6103208161030d565b811461032b57600080fd5b50565b60008135905061033d81610317565b92915050565b60006020828403121561035957610358610308565b5b60006103678482850161032e565b91505092915050565b6103798161030d565b82525050565b60006020820190506103946000830184610370565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006103c58261039a565b9050919050565b6103d5816103ba565b81146103e057600080fd5b50565b6000813590506103f2816103cc565b92915050565b60006020828403121561040e5761040d610308565b5b600061041c848285016103e3565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600061046c600e83610425565b915061047782610436565b602082019050919050565b60006040820190506104976000830184610370565b81810360208301526104a88161045f565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006104ea8261030d565b91506104f58361030d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561052a576105296104b0565b5b828201905092915050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b600061056b601783610425565b915061057682610535565b602082019050919050565b6000602082019050818103600083015261059a8161055e565b9050919050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006105d7600583610425565b91506105e2826105a1565b602082019050919050565b60006040820190506106026000830184610370565b8181036020830152610613816105ca565b90509291505056fea26469706673582212208743accab6cfcd1c8ccb3f51b787d679e803a77ce24ec642bd068883132fd5fa64736f6c63430008090033a264697066735822122066241fedca9ebd69f0cd9e4879f75428f5d4bf734eb072e52934a8b3161581f064736f6c63430008090033", + "code": "0x60806040523480156200001157600080fd5b5060043610620000ac5760003560e01c80638bfe44ff116200006f5780638bfe44ff14620001975780639295436214620001a3578063a0712d6814620001af578063b69ef8a814620001e5578063c9353cb5146200020757620000ac565b806312065fe014620000b15780631c71706914620000d35780631c93908c14620000f55780633aa18088146200012b5780637f29c3941462000161575b600080fd5b620000bb62000227565b604051620000ca919062000975565b60405180910390f35b620000dd62000231565b604051620000ec9190620009ad565b60405180910390f35b6200011360048036038101906200010d919062000a0a565b62000280565b60405162000122919062000975565b60405180910390f35b62000149600480360381019062000143919062000a0a565b620002f6565b60405162000158919062000975565b60405180910390f35b6200017f600480360381019062000179919062000a0a565b6200049e565b6040516200018e919062000975565b60405180910390f35b620001a162000771565b005b620001ad620007b3565b005b620001cd6004803603810190620001c7919062000a0a565b620007f0565b604051620001dc919062000975565b60405180910390f35b620001ef6200092d565b604051620001fe919062000975565b60405180910390f35b6200022560048036038101906200021f919062000aa1565b62000933565b005b6000600154905090565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620002ca919062000b34565b60405180910390a28160036000828254620002e6919062000b95565b9250508190555060029050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405162000340919062000c20565b60405180910390a260405162000356906200094c565b604051809103906000f08015801562000373573d6000803e3d6000fd5b506000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508160016000828254620003c7919062000b95565b92505081905550620003e7600183620003e1919062000b95565b62000280565b50620003f262000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b81526004016200044e919062000975565b6020604051808303816000875af11580156200046e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000494919062000c69565b5060019050919050565b60003073ffffffffffffffffffffffffffffffffffffffff1663929543626040518163ffffffff1660e01b815260040160006040518083038186803b158015620004e757600080fd5b505afa925050508015620004f9575060015b620005e1576200050862000ca8565b806308c379a0036200056c57506200051f62000d43565b806200052c57506200056e565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a816040516200055d919062000e56565b60405180910390a150620005db565b505b3d80600081146200059c576040519150601f19603f3d011682016040523d82523d6000602084013e620005a1565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620005d19062000ef0565b60405180910390a1505b620005e2565b5b3073ffffffffffffffffffffffffffffffffffffffff16638bfe44ff6040518163ffffffff1660e01b815260040160006040518083038186803b1580156200062957600080fd5b505afa9250505080156200063b575060015b62000723576200064a62000ca8565b806308c379a003620006ae57506200066162000d43565b806200066e5750620006b0565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a816040516200069f919062000e56565b60405180910390a1506200071d565b505b3d8060008114620006de576040519150601f19603f3d011682016040523d82523d6000602084013e620006e3565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620007139062000ef0565b60405180910390a1505b62000724565b5b600062000768576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200075f9062000f62565b60405180910390fd5b60019050919050565b6001806040517fcf479181000000000000000000000000000000000000000000000000000000008152600401620007aa92919062000fd1565b60405180910390fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007e7906200104e565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200083a919062000c20565b60405180910390a2816001600082825462000856919062000b95565b925050819055506200087660018362000870919062000b95565b62000280565b506200088162000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b8152600401620008dd919062000975565b6020604051808303816000875af1158015620008fd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000923919062000c69565b5060019050919050565b60015481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b610a9f806200107183390190565b6000819050919050565b6200096f816200095a565b82525050565b60006020820190506200098c600083018462000964565b92915050565b6000819050919050565b620009a78162000992565b82525050565b6000602082019050620009c460008301846200099c565b92915050565b6000604051905090565b600080fd5b620009e4816200095a565b8114620009f057600080fd5b50565b60008135905062000a0481620009d9565b92915050565b60006020828403121562000a235762000a22620009d4565b5b600062000a3384828501620009f3565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000a698262000a3c565b9050919050565b62000a7b8162000a5c565b811462000a8757600080fd5b50565b60008135905062000a9b8162000a70565b92915050565b60006020828403121562000aba5762000ab9620009d4565b5b600062000aca8482850162000a8a565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000b1c600e8362000ad3565b915062000b298262000ae4565b602082019050919050565b600060408201905062000b4b600083018462000964565b818103602083015262000b5e8162000b0d565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000ba2826200095a565b915062000baf836200095a565b925082820190508082111562000bca5762000bc962000b66565b5b92915050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b600062000c0860058362000ad3565b915062000c158262000bd0565b602082019050919050565b600060408201905062000c37600083018462000964565b818103602083015262000c4a8162000bf9565b905092915050565b60008151905062000c6381620009d9565b92915050565b60006020828403121562000c825762000c81620009d4565b5b600062000c928482850162000c52565b91505092915050565b60008160e01c9050919050565b600060033d111562000cca5760046000803e62000cc760005162000c9b565b90505b90565b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000d188262000ccd565b810181811067ffffffffffffffff8211171562000d3a5762000d3962000cde565b5b80604052505050565b600060443d1062000ddb5762000d58620009ca565b60043d036004823e80513d602482011167ffffffffffffffff8211171562000d8257505062000ddb565b808201805167ffffffffffffffff81111562000da2575050505062000ddb565b80602083010160043d03850181111562000dc157505050505062000ddb565b62000dd28260200185018662000d0d565b82955050505050505b90565b600081519050919050565b60005b8381101562000e0957808201518184015260208101905062000dec565b60008484015250505050565b600062000e228262000dde565b62000e2e818562000ad3565b935062000e4081856020860162000de9565b62000e4b8162000ccd565b840191505092915050565b6000602082019050818103600083015262000e72818462000e15565b905092915050565b7f45787465726e616c2063616c6c206661696c656420776974686f757420616e2060008201527f6572726f72206d65737361676500000000000000000000000000000000000000602082015250565b600062000ed8602d8362000ad3565b915062000ee58262000e7a565b604082019050919050565b6000602082019050818103600083015262000f0b8162000ec9565b9050919050565b7f494e53554646494349454e542042414c414e4345000000000000000000000000600082015250565b600062000f4a60148362000ad3565b915062000f578262000f12565b602082019050919050565b6000602082019050818103600083015262000f7d8162000f3b565b9050919050565b6000819050919050565b6000819050919050565b600062000fb962000fb362000fad8462000f84565b62000f8e565b6200095a565b9050919050565b62000fcb8162000f98565b82525050565b600060408201905062000fe8600083018562000fc0565b62000ff7602083018462000fc0565b9392505050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b60006200103660178362000ad3565b9150620010438262000ffe565b602082019050919050565b60006020820190508181036000830152620010698162001027565b905091905056fe60806040526000600160006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b50600160009054906101000a900460ff161562000080576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200007790620002b5565b60405180910390fd5b60018060006101000a81548160ff021916908315150217905550620000bc701d6329f1c35ca4bfabb9f5610000000000620000c360201b60201c565b5062000460565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200010d919062000342565b60405180910390a281600080828254620001289190620003a3565b925050819055506200014e600183620001429190620003a3565b6200016960201b60201c565b506200015f620001df60201b60201c565b5060019050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620001b391906200042e565b60405180910390a28160026000828254620001cf9190620003a3565b9250508190555060029050919050565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b600082825260208201905092915050565b7f436f6e747261637420696e7374616e63652068617320616c726561647920626560008201527f656e20696e697469616c697a6564000000000000000000000000000000000000602082015250565b60006200029d602e836200022e565b9150620002aa826200023f565b604082019050919050565b60006020820190508181036000830152620002d0816200028e565b9050919050565b6000819050919050565b620002ec81620002d7565b82525050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006200032a6005836200022e565b91506200033782620002f2565b602082019050919050565b6000604082019050620003596000830184620002e1565b81810360208301526200036c816200031b565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620003b082620002d7565b9150620003bd83620002d7565b9250828201905080821115620003d857620003d762000374565b5b92915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000416600e836200022e565b91506200042382620003de565b602082019050919050565b6000604082019050620004456000830184620002e1565b8181036020830152620004588162000407565b905092915050565b61062f80620004706000396000f3fe608060405234801561001057600080fd5b50600436106100625760003560e01c80631c717069146100675780631c93908c1461008557806392954362146100b5578063a0712d68146100bf578063b69ef8a8146100ef578063c9353cb51461010d575b600080fd5b61006f610129565b60405161007c91906102ed565b60405180910390f35b61009f600480360381019061009a9190610343565b610178565b6040516100ac919061037f565b60405180910390f35b6100bd6101ea565b005b6100d960048036038101906100d49190610343565b610225565b6040516100e6919061037f565b60405180910390f35b6100f76102b5565b604051610104919061037f565b60405180910390f35b610127600480360381019061012291906103f8565b6102bb565b005b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516101c09190610482565b60405180910390a281600260008282546101da91906104df565b9250508190555060029050919050565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161021c9061055f565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405161026d91906105cb565b60405180910390a28160008082825461028691906104df565b925050819055506102a260018361029d91906104df565b610178565b506102ab610129565b5060019050919050565b60005481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b6000819050919050565b6102e7816102d4565b82525050565b600060208201905061030260008301846102de565b92915050565b600080fd5b6000819050919050565b6103208161030d565b811461032b57600080fd5b50565b60008135905061033d81610317565b92915050565b60006020828403121561035957610358610308565b5b60006103678482850161032e565b91505092915050565b6103798161030d565b82525050565b60006020820190506103946000830184610370565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006103c58261039a565b9050919050565b6103d5816103ba565b81146103e057600080fd5b50565b6000813590506103f2816103cc565b92915050565b60006020828403121561040e5761040d610308565b5b600061041c848285016103e3565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600061046c600e83610425565b915061047782610436565b602082019050919050565b60006040820190506104976000830184610370565b81810360208301526104a88161045f565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006104ea8261030d565b91506104f58361030d565b925082820190508082111561050d5761050c6104b0565b5b92915050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b6000610549601783610425565b915061055482610513565b602082019050919050565b600060208201905081810360008301526105788161053c565b9050919050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006105b5600583610425565b91506105c08261057f565b602082019050919050565b60006040820190506105e06000830184610370565b81810360208301526105f1816105a8565b90509291505056fea26469706673582212202a0a0fa5842e91cc0c1e5b645f7286aad7193a83c3b2f8c8e4c1b35008af0d6f64736f6c63430008140033a264697066735822122036f326b9881542090544d5d6e9f2ff18b13ec09bd4994f14891a84e97f4d6db964736f6c63430008140033", + "nonce": 1, "storage": { "0x0000000000000000000000000000000000000000000000000000000000000002": "0x0000000000000000000000000000000000000000000000000000000000000001" } + }, + "OWNER.address": { + "balance": "0x10f0a2572ebdf8ca48a", + "nonce": 7 } }, "pre": { "0x0000000000000000000000000000000000000000": { - "balance": "0x19c421a" + "balance": "0x23e3a4" }, "OWNER.address": { - "balance": "0x3611ac5ae39cd182dd", - "nonce": 78 - }, - "Tracer.address": { - "balance": "0x0", - "nonce": 1 + "balance": "0x10f0a26a4e4b8d3e124", + "nonce": 6 } } } \ No newline at end of file diff --git a/test/historicstate/hardhat/scripts/geth_traces/Tracer.deploy.prestateTracer.json b/test/historicstate/hardhat/scripts/geth_traces/Tracer.deploy.prestateTracer.json index 321757829..f547dcf81 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/Tracer.deploy.prestateTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/Tracer.deploy.prestateTracer.json @@ -1,16 +1,9 @@ { "0x0000000000000000000000000000000000000000": { - "balance": "0x19c421a" + "balance": "0x23e3a4" }, "OWNER.address": { - "balance": "0x3611ac5ae39cd182dd", - "nonce": 78 - }, - "Tracer.address": { - "balance": "0x0", - "nonce": 1, - "storage": { - "0x0000000000000000000000000000000000000000000000000000000000000002": "0x0000000000000000000000000000000000000000000000000000000000000000" - } + "balance": "0x10f0a26a4e4b8d3e124", + "nonce": 6 } } \ No newline at end of file diff --git a/test/historicstate/hardhat/scripts/geth_traces/Tracer.getBalance.defaultTracer.json b/test/historicstate/hardhat/scripts/geth_traces/Tracer.getBalance.defaultTracer.json index 820376d8d..2ffb0099c 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/Tracer.getBalance.defaultTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/Tracer.getBalance.defaultTracer.json @@ -554,11 +554,11 @@ "0xca", "0x3e8", "0x80", - "0x997" + "0x975" ] }, { - "pc": 2455, + "pc": 2421, "op": "JUMPDEST", "gas": 49976651, "gasCost": 1, @@ -571,7 +571,7 @@ ] }, { - "pc": 2456, + "pc": 2422, "op": "PUSH1", "gas": 49976650, "gasCost": 3, @@ -584,7 +584,7 @@ ] }, { - "pc": 2458, + "pc": 2424, "op": "PUSH1", "gas": 49976647, "gasCost": 3, @@ -598,7 +598,7 @@ ] }, { - "pc": 2460, + "pc": 2426, "op": "DUP3", "gas": 49976644, "gasCost": 3, @@ -613,7 +613,7 @@ ] }, { - "pc": 2461, + "pc": 2427, "op": "ADD", "gas": 49976641, "gasCost": 3, @@ -629,7 +629,7 @@ ] }, { - "pc": 2462, + "pc": 2428, "op": "SWAP1", "gas": 49976638, "gasCost": 3, @@ -644,7 +644,7 @@ ] }, { - "pc": 2463, + "pc": 2429, "op": "POP", "gas": 49976635, "gasCost": 2, @@ -659,7 +659,7 @@ ] }, { - "pc": 2464, + "pc": 2430, "op": "PUSH3", "gas": 49976633, "gasCost": 3, @@ -673,7 +673,7 @@ ] }, { - "pc": 2468, + "pc": 2434, "op": "PUSH1", "gas": 49976630, "gasCost": 3, @@ -684,11 +684,11 @@ "0x3e8", "0x80", "0xa0", - "0x9ae" + "0x98c" ] }, { - "pc": 2470, + "pc": 2436, "op": "DUP4", "gas": 49976627, "gasCost": 3, @@ -699,12 +699,12 @@ "0x3e8", "0x80", "0xa0", - "0x9ae", + "0x98c", "0x0" ] }, { - "pc": 2471, + "pc": 2437, "op": "ADD", "gas": 49976624, "gasCost": 3, @@ -715,13 +715,13 @@ "0x3e8", "0x80", "0xa0", - "0x9ae", + "0x98c", "0x0", "0x80" ] }, { - "pc": 2472, + "pc": 2438, "op": "DUP5", "gas": 49976621, "gasCost": 3, @@ -732,12 +732,12 @@ "0x3e8", "0x80", "0xa0", - "0x9ae", + "0x98c", "0x80" ] }, { - "pc": 2473, + "pc": 2439, "op": "PUSH3", "gas": 49976618, "gasCost": 3, @@ -748,13 +748,13 @@ "0x3e8", "0x80", "0xa0", - "0x9ae", + "0x98c", "0x80", "0x3e8" ] }, { - "pc": 2477, + "pc": 2443, "op": "JUMP", "gas": 49976615, "gasCost": 8, @@ -765,14 +765,14 @@ "0x3e8", "0x80", "0xa0", - "0x9ae", + "0x98c", "0x80", "0x3e8", - "0x986" + "0x964" ] }, { - "pc": 2438, + "pc": 2404, "op": "JUMPDEST", "gas": 49976607, "gasCost": 1, @@ -783,13 +783,13 @@ "0x3e8", "0x80", "0xa0", - "0x9ae", + "0x98c", "0x80", "0x3e8" ] }, { - "pc": 2439, + "pc": 2405, "op": "PUSH3", "gas": 49976606, "gasCost": 3, @@ -800,13 +800,13 @@ "0x3e8", "0x80", "0xa0", - "0x9ae", + "0x98c", "0x80", "0x3e8" ] }, { - "pc": 2443, + "pc": 2409, "op": "DUP2", "gas": 49976603, "gasCost": 3, @@ -817,14 +817,14 @@ "0x3e8", "0x80", "0xa0", - "0x9ae", + "0x98c", "0x80", "0x3e8", - "0x991" + "0x96f" ] }, { - "pc": 2444, + "pc": 2410, "op": "PUSH3", "gas": 49976600, "gasCost": 3, @@ -835,15 +835,15 @@ "0x3e8", "0x80", "0xa0", - "0x9ae", + "0x98c", "0x80", "0x3e8", - "0x991", + "0x96f", "0x3e8" ] }, { - "pc": 2448, + "pc": 2414, "op": "JUMP", "gas": 49976597, "gasCost": 8, @@ -854,16 +854,16 @@ "0x3e8", "0x80", "0xa0", - "0x9ae", + "0x98c", "0x80", "0x3e8", - "0x991", + "0x96f", "0x3e8", - "0x97c" + "0x95a" ] }, { - "pc": 2428, + "pc": 2394, "op": "JUMPDEST", "gas": 49976589, "gasCost": 1, @@ -874,15 +874,15 @@ "0x3e8", "0x80", "0xa0", - "0x9ae", + "0x98c", "0x80", "0x3e8", - "0x991", + "0x96f", "0x3e8" ] }, { - "pc": 2429, + "pc": 2395, "op": "PUSH1", "gas": 49976588, "gasCost": 3, @@ -893,15 +893,15 @@ "0x3e8", "0x80", "0xa0", - "0x9ae", + "0x98c", "0x80", "0x3e8", - "0x991", + "0x96f", "0x3e8" ] }, { - "pc": 2431, + "pc": 2397, "op": "DUP2", "gas": 49976585, "gasCost": 3, @@ -912,16 +912,16 @@ "0x3e8", "0x80", "0xa0", - "0x9ae", + "0x98c", "0x80", "0x3e8", - "0x991", + "0x96f", "0x3e8", "0x0" ] }, { - "pc": 2432, + "pc": 2398, "op": "SWAP1", "gas": 49976582, "gasCost": 3, @@ -932,17 +932,17 @@ "0x3e8", "0x80", "0xa0", - "0x9ae", + "0x98c", "0x80", "0x3e8", - "0x991", + "0x96f", "0x3e8", "0x0", "0x3e8" ] }, { - "pc": 2433, + "pc": 2399, "op": "POP", "gas": 49976579, "gasCost": 2, @@ -953,17 +953,17 @@ "0x3e8", "0x80", "0xa0", - "0x9ae", + "0x98c", "0x80", "0x3e8", - "0x991", + "0x96f", "0x3e8", "0x3e8", "0x0" ] }, { - "pc": 2434, + "pc": 2400, "op": "SWAP2", "gas": 49976577, "gasCost": 3, @@ -974,16 +974,16 @@ "0x3e8", "0x80", "0xa0", - "0x9ae", + "0x98c", "0x80", "0x3e8", - "0x991", + "0x96f", "0x3e8", "0x3e8" ] }, { - "pc": 2435, + "pc": 2401, "op": "SWAP1", "gas": 49976574, "gasCost": 3, @@ -994,16 +994,16 @@ "0x3e8", "0x80", "0xa0", - "0x9ae", + "0x98c", "0x80", "0x3e8", "0x3e8", "0x3e8", - "0x991" + "0x96f" ] }, { - "pc": 2436, + "pc": 2402, "op": "POP", "gas": 49976571, "gasCost": 2, @@ -1014,16 +1014,16 @@ "0x3e8", "0x80", "0xa0", - "0x9ae", + "0x98c", "0x80", "0x3e8", "0x3e8", - "0x991", + "0x96f", "0x3e8" ] }, { - "pc": 2437, + "pc": 2403, "op": "JUMP", "gas": 49976569, "gasCost": 8, @@ -1034,15 +1034,15 @@ "0x3e8", "0x80", "0xa0", - "0x9ae", + "0x98c", "0x80", "0x3e8", "0x3e8", - "0x991" + "0x96f" ] }, { - "pc": 2449, + "pc": 2415, "op": "JUMPDEST", "gas": 49976561, "gasCost": 1, @@ -1053,14 +1053,14 @@ "0x3e8", "0x80", "0xa0", - "0x9ae", + "0x98c", "0x80", "0x3e8", "0x3e8" ] }, { - "pc": 2450, + "pc": 2416, "op": "DUP3", "gas": 49976560, "gasCost": 3, @@ -1071,14 +1071,14 @@ "0x3e8", "0x80", "0xa0", - "0x9ae", + "0x98c", "0x80", "0x3e8", "0x3e8" ] }, { - "pc": 2451, + "pc": 2417, "op": "MSTORE", "gas": 49976557, "gasCost": 9, @@ -1089,7 +1089,7 @@ "0x3e8", "0x80", "0xa0", - "0x9ae", + "0x98c", "0x80", "0x3e8", "0x3e8", @@ -1097,7 +1097,7 @@ ] }, { - "pc": 2452, + "pc": 2418, "op": "POP", "gas": 49976548, "gasCost": 2, @@ -1108,13 +1108,13 @@ "0x3e8", "0x80", "0xa0", - "0x9ae", + "0x98c", "0x80", "0x3e8" ] }, { - "pc": 2453, + "pc": 2419, "op": "POP", "gas": 49976546, "gasCost": 2, @@ -1125,12 +1125,12 @@ "0x3e8", "0x80", "0xa0", - "0x9ae", + "0x98c", "0x80" ] }, { - "pc": 2454, + "pc": 2420, "op": "JUMP", "gas": 49976544, "gasCost": 8, @@ -1141,11 +1141,11 @@ "0x3e8", "0x80", "0xa0", - "0x9ae" + "0x98c" ] }, { - "pc": 2478, + "pc": 2444, "op": "JUMPDEST", "gas": 49976536, "gasCost": 1, @@ -1159,7 +1159,7 @@ ] }, { - "pc": 2479, + "pc": 2445, "op": "SWAP3", "gas": 49976535, "gasCost": 3, @@ -1173,7 +1173,7 @@ ] }, { - "pc": 2480, + "pc": 2446, "op": "SWAP2", "gas": 49976532, "gasCost": 3, @@ -1187,7 +1187,7 @@ ] }, { - "pc": 2481, + "pc": 2447, "op": "POP", "gas": 49976529, "gasCost": 2, @@ -1201,7 +1201,7 @@ ] }, { - "pc": 2482, + "pc": 2448, "op": "POP", "gas": 49976527, "gasCost": 2, @@ -1214,7 +1214,7 @@ ] }, { - "pc": 2483, + "pc": 2449, "op": "JUMP", "gas": 49976525, "gasCost": 8, diff --git a/test/historicstate/hardhat/scripts/geth_traces/Tracer.getBalance.prestateTracer.json b/test/historicstate/hardhat/scripts/geth_traces/Tracer.getBalance.prestateTracer.json index 5b933285f..57430df8e 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/Tracer.getBalance.prestateTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/Tracer.getBalance.prestateTracer.json @@ -1,10 +1,10 @@ { "0x0000000000000000000000000000000000000000": { - "balance": "0x1bf279a" + "balance": "0x462d20" }, "Tracer.address": { "balance": "0x0", - "code": "0x60806040523480156200001157600080fd5b5060043610620000ac5760003560e01c80638bfe44ff116200006f5780638bfe44ff14620001975780639295436214620001a3578063a0712d6814620001af578063b69ef8a814620001e5578063c9353cb5146200020757620000ac565b806312065fe014620000b15780631c71706914620000d35780631c93908c14620000f55780633aa18088146200012b5780637f29c3941462000161575b600080fd5b620000bb62000227565b604051620000ca919062000997565b60405180910390f35b620000dd62000231565b604051620000ec9190620009cf565b60405180910390f35b6200011360048036038101906200010d919062000a2c565b62000280565b60405162000122919062000997565b60405180910390f35b62000149600480360381019062000143919062000a2c565b620002f6565b60405162000158919062000997565b60405180910390f35b6200017f600480360381019062000179919062000a2c565b620004ae565b6040516200018e919062000997565b60405180910390f35b620001a162000783565b005b620001ad620007c5565b005b620001cd6004803603810190620001c7919062000a2c565b62000802565b604051620001dc919062000997565b60405180910390f35b620001ef6200094f565b604051620001fe919062000997565b60405180910390f35b6200022560048036038101906200021f919062000ac3565b62000955565b005b6000600154905090565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620002ca919062000b56565b60405180910390a28160036000828254620002e6919062000bb7565b9250508190555060029050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405162000340919062000c64565b60405180910390a260405162000356906200096e565b604051809103906000f08015801562000373573d6000803e3d6000fd5b506000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508160016000828254620003c7919062000bb7565b92505081905550620003e7600183620003e1919062000bb7565b62000280565b50620003f262000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b81526004016200044e919062000997565b602060405180830381600087803b1580156200046957600080fd5b505af11580156200047e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004a4919062000cad565b5060019050919050565b60003073ffffffffffffffffffffffffffffffffffffffff1663929543626040518163ffffffff1660e01b815260040160006040518083038186803b158015620004f757600080fd5b505afa92505050801562000509575060015b620005f2576200051862000cec565b806308c379a014156200057d57506200053062000d87565b806200053d57506200057f565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a816040516200056e919062000eab565b60405180910390a150620005ec565b505b3d8060008114620005ad576040519150601f19603f3d011682016040523d82523d6000602084013e620005b2565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620005e29062000f45565b60405180910390a1505b620005f3565b5b3073ffffffffffffffffffffffffffffffffffffffff16638bfe44ff6040518163ffffffff1660e01b815260040160006040518083038186803b1580156200063a57600080fd5b505afa9250505080156200064c575060015b62000735576200065b62000cec565b806308c379a01415620006c057506200067362000d87565b80620006805750620006c2565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a81604051620006b1919062000eab565b60405180910390a1506200072f565b505b3d8060008114620006f0576040519150601f19603f3d011682016040523d82523d6000602084013e620006f5565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620007259062000f45565b60405180910390a1505b62000736565b5b60006200077a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007719062000fb7565b60405180910390fd5b60019050919050565b6001806040517fcf479181000000000000000000000000000000000000000000000000000000008152600401620007bc92919062001026565b60405180910390fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007f990620010a3565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200084c919062000c64565b60405180910390a2816001600082825462000868919062000bb7565b925050819055506200088860018362000882919062000bb7565b62000280565b506200089362000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b8152600401620008ef919062000997565b602060405180830381600087803b1580156200090a57600080fd5b505af11580156200091f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000945919062000cad565b5060019050919050565b60015481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b610ae380620010c683390190565b6000819050919050565b62000991816200097c565b82525050565b6000602082019050620009ae600083018462000986565b92915050565b6000819050919050565b620009c981620009b4565b82525050565b6000602082019050620009e66000830184620009be565b92915050565b6000604051905090565b600080fd5b62000a06816200097c565b811462000a1257600080fd5b50565b60008135905062000a2681620009fb565b92915050565b60006020828403121562000a455762000a44620009f6565b5b600062000a558482850162000a15565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000a8b8262000a5e565b9050919050565b62000a9d8162000a7e565b811462000aa957600080fd5b50565b60008135905062000abd8162000a92565b92915050565b60006020828403121562000adc5762000adb620009f6565b5b600062000aec8482850162000aac565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000b3e600e8362000af5565b915062000b4b8262000b06565b602082019050919050565b600060408201905062000b6d600083018462000986565b818103602083015262000b808162000b2f565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000bc4826200097c565b915062000bd1836200097c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000c095762000c0862000b88565b5b828201905092915050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b600062000c4c60058362000af5565b915062000c598262000c14565b602082019050919050565b600060408201905062000c7b600083018462000986565b818103602083015262000c8e8162000c3d565b905092915050565b60008151905062000ca781620009fb565b92915050565b60006020828403121562000cc65762000cc5620009f6565b5b600062000cd68482850162000c96565b91505092915050565b60008160e01c9050919050565b600060033d111562000d0e5760046000803e62000d0b60005162000cdf565b90505b90565b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000d5c8262000d11565b810181811067ffffffffffffffff8211171562000d7e5762000d7d62000d22565b5b80604052505050565b600060443d101562000d995762000e26565b62000da3620009ec565b60043d036004823e80513d602482011167ffffffffffffffff8211171562000dcd57505062000e26565b808201805167ffffffffffffffff81111562000ded575050505062000e26565b80602083010160043d03850181111562000e0c57505050505062000e26565b62000e1d8260200185018662000d51565b82955050505050505b90565b600081519050919050565b60005b8381101562000e5457808201518184015260208101905062000e37565b8381111562000e64576000848401525b50505050565b600062000e778262000e29565b62000e83818562000af5565b935062000e9581856020860162000e34565b62000ea08162000d11565b840191505092915050565b6000602082019050818103600083015262000ec7818462000e6a565b905092915050565b7f45787465726e616c2063616c6c206661696c656420776974686f757420616e2060008201527f6572726f72206d65737361676500000000000000000000000000000000000000602082015250565b600062000f2d602d8362000af5565b915062000f3a8262000ecf565b604082019050919050565b6000602082019050818103600083015262000f608162000f1e565b9050919050565b7f494e53554646494349454e542042414c414e4345000000000000000000000000600082015250565b600062000f9f60148362000af5565b915062000fac8262000f67565b602082019050919050565b6000602082019050818103600083015262000fd28162000f90565b9050919050565b6000819050919050565b6000819050919050565b60006200100e62001008620010028462000fd9565b62000fe3565b6200097c565b9050919050565b620010208162000fed565b82525050565b60006040820190506200103d600083018562001015565b6200104c602083018462001015565b9392505050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b60006200108b60178362000af5565b9150620010988262001053565b602082019050919050565b60006020820190508181036000830152620010be816200107c565b905091905056fe60806040526000600160006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b50600160009054906101000a900460ff161562000080576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200007790620002b5565b60405180910390fd5b60018060006101000a81548160ff021916908315150217905550620000bc701d6329f1c35ca4bfabb9f5610000000000620000c360201b60201c565b5062000482565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200010d919062000342565b60405180910390a281600080828254620001289190620003a3565b925050819055506200014e600183620001429190620003a3565b6200016960201b60201c565b506200015f620001df60201b60201c565b5060019050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620001b3919062000450565b60405180910390a28160026000828254620001cf9190620003a3565b9250508190555060029050919050565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b600082825260208201905092915050565b7f436f6e747261637420696e7374616e63652068617320616c726561647920626560008201527f656e20696e697469616c697a6564000000000000000000000000000000000000602082015250565b60006200029d602e836200022e565b9150620002aa826200023f565b604082019050919050565b60006020820190508181036000830152620002d0816200028e565b9050919050565b6000819050919050565b620002ec81620002d7565b82525050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006200032a6005836200022e565b91506200033782620002f2565b602082019050919050565b6000604082019050620003596000830184620002e1565b81810360208301526200036c816200031b565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620003b082620002d7565b9150620003bd83620002d7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620003f557620003f462000374565b5b828201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000438600e836200022e565b9150620004458262000400565b602082019050919050565b6000604082019050620004676000830184620002e1565b81810360208301526200047a8162000429565b905092915050565b61065180620004926000396000f3fe608060405234801561001057600080fd5b50600436106100625760003560e01c80631c717069146100675780631c93908c1461008557806392954362146100b5578063a0712d68146100bf578063b69ef8a8146100ef578063c9353cb51461010d575b600080fd5b61006f610129565b60405161007c91906102ed565b60405180910390f35b61009f600480360381019061009a9190610343565b610178565b6040516100ac919061037f565b60405180910390f35b6100bd6101ea565b005b6100d960048036038101906100d49190610343565b610225565b6040516100e6919061037f565b60405180910390f35b6100f76102b5565b604051610104919061037f565b60405180910390f35b610127600480360381019061012291906103f8565b6102bb565b005b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516101c09190610482565b60405180910390a281600260008282546101da91906104df565b9250508190555060029050919050565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161021c90610581565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405161026d91906105ed565b60405180910390a28160008082825461028691906104df565b925050819055506102a260018361029d91906104df565b610178565b506102ab610129565b5060019050919050565b60005481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b6000819050919050565b6102e7816102d4565b82525050565b600060208201905061030260008301846102de565b92915050565b600080fd5b6000819050919050565b6103208161030d565b811461032b57600080fd5b50565b60008135905061033d81610317565b92915050565b60006020828403121561035957610358610308565b5b60006103678482850161032e565b91505092915050565b6103798161030d565b82525050565b60006020820190506103946000830184610370565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006103c58261039a565b9050919050565b6103d5816103ba565b81146103e057600080fd5b50565b6000813590506103f2816103cc565b92915050565b60006020828403121561040e5761040d610308565b5b600061041c848285016103e3565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600061046c600e83610425565b915061047782610436565b602082019050919050565b60006040820190506104976000830184610370565b81810360208301526104a88161045f565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006104ea8261030d565b91506104f58361030d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561052a576105296104b0565b5b828201905092915050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b600061056b601783610425565b915061057682610535565b602082019050919050565b6000602082019050818103600083015261059a8161055e565b9050919050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006105d7600583610425565b91506105e2826105a1565b602082019050919050565b60006040820190506106026000830184610370565b8181036020830152610613816105ca565b90509291505056fea26469706673582212208743accab6cfcd1c8ccb3f51b787d679e803a77ce24ec642bd068883132fd5fa64736f6c63430008090033a264697066735822122066241fedca9ebd69f0cd9e4879f75428f5d4bf734eb072e52934a8b3161581f064736f6c63430008090033", + "code": "0x60806040523480156200001157600080fd5b5060043610620000ac5760003560e01c80638bfe44ff116200006f5780638bfe44ff14620001975780639295436214620001a3578063a0712d6814620001af578063b69ef8a814620001e5578063c9353cb5146200020757620000ac565b806312065fe014620000b15780631c71706914620000d35780631c93908c14620000f55780633aa18088146200012b5780637f29c3941462000161575b600080fd5b620000bb62000227565b604051620000ca919062000975565b60405180910390f35b620000dd62000231565b604051620000ec9190620009ad565b60405180910390f35b6200011360048036038101906200010d919062000a0a565b62000280565b60405162000122919062000975565b60405180910390f35b62000149600480360381019062000143919062000a0a565b620002f6565b60405162000158919062000975565b60405180910390f35b6200017f600480360381019062000179919062000a0a565b6200049e565b6040516200018e919062000975565b60405180910390f35b620001a162000771565b005b620001ad620007b3565b005b620001cd6004803603810190620001c7919062000a0a565b620007f0565b604051620001dc919062000975565b60405180910390f35b620001ef6200092d565b604051620001fe919062000975565b60405180910390f35b6200022560048036038101906200021f919062000aa1565b62000933565b005b6000600154905090565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620002ca919062000b34565b60405180910390a28160036000828254620002e6919062000b95565b9250508190555060029050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405162000340919062000c20565b60405180910390a260405162000356906200094c565b604051809103906000f08015801562000373573d6000803e3d6000fd5b506000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508160016000828254620003c7919062000b95565b92505081905550620003e7600183620003e1919062000b95565b62000280565b50620003f262000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b81526004016200044e919062000975565b6020604051808303816000875af11580156200046e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000494919062000c69565b5060019050919050565b60003073ffffffffffffffffffffffffffffffffffffffff1663929543626040518163ffffffff1660e01b815260040160006040518083038186803b158015620004e757600080fd5b505afa925050508015620004f9575060015b620005e1576200050862000ca8565b806308c379a0036200056c57506200051f62000d43565b806200052c57506200056e565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a816040516200055d919062000e56565b60405180910390a150620005db565b505b3d80600081146200059c576040519150601f19603f3d011682016040523d82523d6000602084013e620005a1565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620005d19062000ef0565b60405180910390a1505b620005e2565b5b3073ffffffffffffffffffffffffffffffffffffffff16638bfe44ff6040518163ffffffff1660e01b815260040160006040518083038186803b1580156200062957600080fd5b505afa9250505080156200063b575060015b62000723576200064a62000ca8565b806308c379a003620006ae57506200066162000d43565b806200066e5750620006b0565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a816040516200069f919062000e56565b60405180910390a1506200071d565b505b3d8060008114620006de576040519150601f19603f3d011682016040523d82523d6000602084013e620006e3565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620007139062000ef0565b60405180910390a1505b62000724565b5b600062000768576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200075f9062000f62565b60405180910390fd5b60019050919050565b6001806040517fcf479181000000000000000000000000000000000000000000000000000000008152600401620007aa92919062000fd1565b60405180910390fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007e7906200104e565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200083a919062000c20565b60405180910390a2816001600082825462000856919062000b95565b925050819055506200087660018362000870919062000b95565b62000280565b506200088162000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b8152600401620008dd919062000975565b6020604051808303816000875af1158015620008fd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000923919062000c69565b5060019050919050565b60015481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b610a9f806200107183390190565b6000819050919050565b6200096f816200095a565b82525050565b60006020820190506200098c600083018462000964565b92915050565b6000819050919050565b620009a78162000992565b82525050565b6000602082019050620009c460008301846200099c565b92915050565b6000604051905090565b600080fd5b620009e4816200095a565b8114620009f057600080fd5b50565b60008135905062000a0481620009d9565b92915050565b60006020828403121562000a235762000a22620009d4565b5b600062000a3384828501620009f3565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000a698262000a3c565b9050919050565b62000a7b8162000a5c565b811462000a8757600080fd5b50565b60008135905062000a9b8162000a70565b92915050565b60006020828403121562000aba5762000ab9620009d4565b5b600062000aca8482850162000a8a565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000b1c600e8362000ad3565b915062000b298262000ae4565b602082019050919050565b600060408201905062000b4b600083018462000964565b818103602083015262000b5e8162000b0d565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000ba2826200095a565b915062000baf836200095a565b925082820190508082111562000bca5762000bc962000b66565b5b92915050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b600062000c0860058362000ad3565b915062000c158262000bd0565b602082019050919050565b600060408201905062000c37600083018462000964565b818103602083015262000c4a8162000bf9565b905092915050565b60008151905062000c6381620009d9565b92915050565b60006020828403121562000c825762000c81620009d4565b5b600062000c928482850162000c52565b91505092915050565b60008160e01c9050919050565b600060033d111562000cca5760046000803e62000cc760005162000c9b565b90505b90565b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000d188262000ccd565b810181811067ffffffffffffffff8211171562000d3a5762000d3962000cde565b5b80604052505050565b600060443d1062000ddb5762000d58620009ca565b60043d036004823e80513d602482011167ffffffffffffffff8211171562000d8257505062000ddb565b808201805167ffffffffffffffff81111562000da2575050505062000ddb565b80602083010160043d03850181111562000dc157505050505062000ddb565b62000dd28260200185018662000d0d565b82955050505050505b90565b600081519050919050565b60005b8381101562000e0957808201518184015260208101905062000dec565b60008484015250505050565b600062000e228262000dde565b62000e2e818562000ad3565b935062000e4081856020860162000de9565b62000e4b8162000ccd565b840191505092915050565b6000602082019050818103600083015262000e72818462000e15565b905092915050565b7f45787465726e616c2063616c6c206661696c656420776974686f757420616e2060008201527f6572726f72206d65737361676500000000000000000000000000000000000000602082015250565b600062000ed8602d8362000ad3565b915062000ee58262000e7a565b604082019050919050565b6000602082019050818103600083015262000f0b8162000ec9565b9050919050565b7f494e53554646494349454e542042414c414e4345000000000000000000000000600082015250565b600062000f4a60148362000ad3565b915062000f578262000f12565b602082019050919050565b6000602082019050818103600083015262000f7d8162000f3b565b9050919050565b6000819050919050565b6000819050919050565b600062000fb962000fb362000fad8462000f84565b62000f8e565b6200095a565b9050919050565b62000fcb8162000f98565b82525050565b600060408201905062000fe8600083018562000fc0565b62000ff7602083018462000fc0565b9392505050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b60006200103660178362000ad3565b9150620010438262000ffe565b602082019050919050565b60006020820190508181036000830152620010698162001027565b905091905056fe60806040526000600160006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b50600160009054906101000a900460ff161562000080576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200007790620002b5565b60405180910390fd5b60018060006101000a81548160ff021916908315150217905550620000bc701d6329f1c35ca4bfabb9f5610000000000620000c360201b60201c565b5062000460565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200010d919062000342565b60405180910390a281600080828254620001289190620003a3565b925050819055506200014e600183620001429190620003a3565b6200016960201b60201c565b506200015f620001df60201b60201c565b5060019050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620001b391906200042e565b60405180910390a28160026000828254620001cf9190620003a3565b9250508190555060029050919050565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b600082825260208201905092915050565b7f436f6e747261637420696e7374616e63652068617320616c726561647920626560008201527f656e20696e697469616c697a6564000000000000000000000000000000000000602082015250565b60006200029d602e836200022e565b9150620002aa826200023f565b604082019050919050565b60006020820190508181036000830152620002d0816200028e565b9050919050565b6000819050919050565b620002ec81620002d7565b82525050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006200032a6005836200022e565b91506200033782620002f2565b602082019050919050565b6000604082019050620003596000830184620002e1565b81810360208301526200036c816200031b565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620003b082620002d7565b9150620003bd83620002d7565b9250828201905080821115620003d857620003d762000374565b5b92915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000416600e836200022e565b91506200042382620003de565b602082019050919050565b6000604082019050620004456000830184620002e1565b8181036020830152620004588162000407565b905092915050565b61062f80620004706000396000f3fe608060405234801561001057600080fd5b50600436106100625760003560e01c80631c717069146100675780631c93908c1461008557806392954362146100b5578063a0712d68146100bf578063b69ef8a8146100ef578063c9353cb51461010d575b600080fd5b61006f610129565b60405161007c91906102ed565b60405180910390f35b61009f600480360381019061009a9190610343565b610178565b6040516100ac919061037f565b60405180910390f35b6100bd6101ea565b005b6100d960048036038101906100d49190610343565b610225565b6040516100e6919061037f565b60405180910390f35b6100f76102b5565b604051610104919061037f565b60405180910390f35b610127600480360381019061012291906103f8565b6102bb565b005b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516101c09190610482565b60405180910390a281600260008282546101da91906104df565b9250508190555060029050919050565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161021c9061055f565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405161026d91906105cb565b60405180910390a28160008082825461028691906104df565b925050819055506102a260018361029d91906104df565b610178565b506102ab610129565b5060019050919050565b60005481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b6000819050919050565b6102e7816102d4565b82525050565b600060208201905061030260008301846102de565b92915050565b600080fd5b6000819050919050565b6103208161030d565b811461032b57600080fd5b50565b60008135905061033d81610317565b92915050565b60006020828403121561035957610358610308565b5b60006103678482850161032e565b91505092915050565b6103798161030d565b82525050565b60006020820190506103946000830184610370565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006103c58261039a565b9050919050565b6103d5816103ba565b81146103e057600080fd5b50565b6000813590506103f2816103cc565b92915050565b60006020828403121561040e5761040d610308565b5b600061041c848285016103e3565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600061046c600e83610425565b915061047782610436565b602082019050919050565b60006040820190506104976000830184610370565b81810360208301526104a88161045f565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006104ea8261030d565b91506104f58361030d565b925082820190508082111561050d5761050c6104b0565b5b92915050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b6000610549601783610425565b915061055482610513565b602082019050919050565b600060208201905081810360008301526105788161053c565b9050919050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006105b5600583610425565b91506105c08261057f565b602082019050919050565b60006040820190506105e06000830184610370565b81810360208301526105f1816105a8565b90509291505056fea26469706673582212202a0a0fa5842e91cc0c1e5b645f7286aad7193a83c3b2f8c8e4c1b35008af0d6f64736f6c63430008140033a264697066735822122036f326b9881542090544d5d6e9f2ff18b13ec09bd4994f14891a84e97f4d6db964736f6c63430008140033", "nonce": 2, "storage": { "0x0000000000000000000000000000000000000000000000000000000000000001": "0x00000000000000000000000000000000000000000000000000000000000003e8" diff --git a/test/historicstate/hardhat/scripts/geth_traces/Tracer.getBalance.replayTracer.json b/test/historicstate/hardhat/scripts/geth_traces/Tracer.getBalance.replayTracer.json index 9bf648a70..aa01818dc 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/Tracer.getBalance.replayTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/Tracer.getBalance.replayTracer.json @@ -20,6 +20,6 @@ "type": "call" } ], - "transactionHash": "0x9ad9cd25ca343d5251c2c2e73ae88d0079496279e5ee21ed294795ed27b5ea62", + "transactionHash": "0xa47ba3a37138df5b8b302f7a536e2322d54d294ee5d70cc681a64f19c23cc189", "vmTrace": null } \ No newline at end of file diff --git a/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint.4byteTracer.json b/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint.4byteTracer.json index 00cc957e2..78ba3cda3 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint.4byteTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint.4byteTracer.json @@ -1,3 +1,3 @@ { - "0xa0712d68-32": 1 + "0xa0712d68-32": 2 } \ No newline at end of file diff --git a/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint.callTracer.json b/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint.callTracer.json index 8988acd9d..439fa1315 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint.callTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint.callTracer.json @@ -1,10 +1,21 @@ { "from": "OWNER.address", "gas": "0x200b20", - "gasUsed": "0x1221b", + "gasUsed": "0x1228b", "to": "Tracer.address", "input": "0xa0712d6800000000000000000000000000000000000000000000000000000000000003e8", "error": "execution reverted", + "calls": [ + { + "from": "Tracer.address", + "gas": "0x1e6d90", + "gasUsed": "0x0", + "to": "0x0000000000000000000000000000000000000000", + "input": "0xa0712d6800000000000000000000000000000000000000000000000000000000000003e8", + "value": "0x0", + "type": "CALL" + } + ], "value": "0x0", "type": "CALL" } \ No newline at end of file diff --git a/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint.defaultTracer.json b/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint.defaultTracer.json index 50d146e7f..87ba2b6c4 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint.defaultTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint.defaultTracer.json @@ -1,5 +1,5 @@ { - "gas": 74267, + "gas": 74379, "failed": true, "returnValue": "", "structLogs": [ @@ -594,11 +594,11 @@ "0x1c7", "0x24", "0x4", - "0xa2c" + "0xa0a" ] }, { - "pc": 2604, + "pc": 2570, "op": "JUMPDEST", "gas": 2078577, "gasCost": 1, @@ -612,7 +612,7 @@ ] }, { - "pc": 2605, + "pc": 2571, "op": "PUSH1", "gas": 2078576, "gasCost": 3, @@ -626,7 +626,7 @@ ] }, { - "pc": 2607, + "pc": 2573, "op": "PUSH1", "gas": 2078573, "gasCost": 3, @@ -641,7 +641,7 @@ ] }, { - "pc": 2609, + "pc": 2575, "op": "DUP3", "gas": 2078570, "gasCost": 3, @@ -657,7 +657,7 @@ ] }, { - "pc": 2610, + "pc": 2576, "op": "DUP5", "gas": 2078567, "gasCost": 3, @@ -674,7 +674,7 @@ ] }, { - "pc": 2611, + "pc": 2577, "op": "SUB", "gas": 2078564, "gasCost": 3, @@ -692,7 +692,7 @@ ] }, { - "pc": 2612, + "pc": 2578, "op": "SLT", "gas": 2078561, "gasCost": 3, @@ -709,7 +709,7 @@ ] }, { - "pc": 2613, + "pc": 2579, "op": "ISZERO", "gas": 2078558, "gasCost": 3, @@ -725,7 +725,7 @@ ] }, { - "pc": 2614, + "pc": 2580, "op": "PUSH3", "gas": 2078555, "gasCost": 3, @@ -741,7 +741,7 @@ ] }, { - "pc": 2618, + "pc": 2584, "op": "JUMPI", "gas": 2078552, "gasCost": 10, @@ -754,11 +754,11 @@ "0x4", "0x0", "0x1", - "0xa45" + "0xa23" ] }, { - "pc": 2629, + "pc": 2595, "op": "JUMPDEST", "gas": 2078542, "gasCost": 1, @@ -773,7 +773,7 @@ ] }, { - "pc": 2630, + "pc": 2596, "op": "PUSH1", "gas": 2078541, "gasCost": 3, @@ -788,7 +788,7 @@ ] }, { - "pc": 2632, + "pc": 2598, "op": "PUSH3", "gas": 2078538, "gasCost": 3, @@ -804,7 +804,7 @@ ] }, { - "pc": 2636, + "pc": 2602, "op": "DUP5", "gas": 2078535, "gasCost": 3, @@ -817,11 +817,11 @@ "0x4", "0x0", "0x0", - "0xa55" + "0xa33" ] }, { - "pc": 2637, + "pc": 2603, "op": "DUP3", "gas": 2078532, "gasCost": 3, @@ -834,12 +834,12 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24" ] }, { - "pc": 2638, + "pc": 2604, "op": "DUP6", "gas": 2078529, "gasCost": 3, @@ -852,13 +852,13 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x0" ] }, { - "pc": 2639, + "pc": 2605, "op": "ADD", "gas": 2078526, "gasCost": 3, @@ -871,14 +871,14 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x0", "0x4" ] }, { - "pc": 2640, + "pc": 2606, "op": "PUSH3", "gas": 2078523, "gasCost": 3, @@ -891,13 +891,13 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4" ] }, { - "pc": 2644, + "pc": 2610, "op": "JUMP", "gas": 2078520, "gasCost": 8, @@ -910,14 +910,14 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", - "0xa15" + "0x9f3" ] }, { - "pc": 2581, + "pc": 2547, "op": "JUMPDEST", "gas": 2078512, "gasCost": 1, @@ -930,13 +930,13 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4" ] }, { - "pc": 2582, + "pc": 2548, "op": "PUSH1", "gas": 2078511, "gasCost": 3, @@ -949,13 +949,13 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4" ] }, { - "pc": 2584, + "pc": 2550, "op": "DUP2", "gas": 2078508, "gasCost": 3, @@ -968,14 +968,14 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x0" ] }, { - "pc": 2585, + "pc": 2551, "op": "CALLDATALOAD", "gas": 2078505, "gasCost": 3, @@ -988,7 +988,7 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x0", @@ -996,7 +996,7 @@ ] }, { - "pc": 2586, + "pc": 2552, "op": "SWAP1", "gas": 2078502, "gasCost": 3, @@ -1009,7 +1009,7 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x0", @@ -1017,7 +1017,7 @@ ] }, { - "pc": 2587, + "pc": 2553, "op": "POP", "gas": 2078499, "gasCost": 2, @@ -1030,7 +1030,7 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8", @@ -1038,7 +1038,7 @@ ] }, { - "pc": 2588, + "pc": 2554, "op": "PUSH3", "gas": 2078497, "gasCost": 3, @@ -1051,14 +1051,14 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8" ] }, { - "pc": 2592, + "pc": 2558, "op": "DUP2", "gas": 2078494, "gasCost": 3, @@ -1071,15 +1071,15 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8", - "0xa26" + "0xa04" ] }, { - "pc": 2593, + "pc": 2559, "op": "PUSH3", "gas": 2078491, "gasCost": 3, @@ -1092,16 +1092,16 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8", - "0xa26", + "0xa04", "0x3e8" ] }, { - "pc": 2597, + "pc": 2563, "op": "JUMP", "gas": 2078488, "gasCost": 8, @@ -1114,17 +1114,17 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8", - "0xa26", + "0xa04", "0x3e8", - "0x9fb" + "0x9d9" ] }, { - "pc": 2555, + "pc": 2521, "op": "JUMPDEST", "gas": 2078480, "gasCost": 1, @@ -1137,16 +1137,16 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8", - "0xa26", + "0xa04", "0x3e8" ] }, { - "pc": 2556, + "pc": 2522, "op": "PUSH3", "gas": 2078479, "gasCost": 3, @@ -1159,16 +1159,16 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8", - "0xa26", + "0xa04", "0x3e8" ] }, { - "pc": 2560, + "pc": 2526, "op": "DUP2", "gas": 2078476, "gasCost": 3, @@ -1181,17 +1181,17 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8", - "0xa26", + "0xa04", "0x3e8", - "0xa06" + "0x9e4" ] }, { - "pc": 2561, + "pc": 2527, "op": "PUSH3", "gas": 2078473, "gasCost": 3, @@ -1204,18 +1204,18 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8", - "0xa26", + "0xa04", "0x3e8", - "0xa06", + "0x9e4", "0x3e8" ] }, { - "pc": 2565, + "pc": 2531, "op": "JUMP", "gas": 2078470, "gasCost": 8, @@ -1228,19 +1228,19 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8", - "0xa26", + "0xa04", "0x3e8", - "0xa06", + "0x9e4", "0x3e8", - "0x97c" + "0x95a" ] }, { - "pc": 2428, + "pc": 2394, "op": "JUMPDEST", "gas": 2078462, "gasCost": 1, @@ -1253,18 +1253,18 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8", - "0xa26", + "0xa04", "0x3e8", - "0xa06", + "0x9e4", "0x3e8" ] }, { - "pc": 2429, + "pc": 2395, "op": "PUSH1", "gas": 2078461, "gasCost": 3, @@ -1277,18 +1277,18 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8", - "0xa26", + "0xa04", "0x3e8", - "0xa06", + "0x9e4", "0x3e8" ] }, { - "pc": 2431, + "pc": 2397, "op": "DUP2", "gas": 2078458, "gasCost": 3, @@ -1301,19 +1301,19 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8", - "0xa26", + "0xa04", "0x3e8", - "0xa06", + "0x9e4", "0x3e8", "0x0" ] }, { - "pc": 2432, + "pc": 2398, "op": "SWAP1", "gas": 2078455, "gasCost": 3, @@ -1326,20 +1326,20 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8", - "0xa26", + "0xa04", "0x3e8", - "0xa06", + "0x9e4", "0x3e8", "0x0", "0x3e8" ] }, { - "pc": 2433, + "pc": 2399, "op": "POP", "gas": 2078452, "gasCost": 2, @@ -1352,20 +1352,20 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8", - "0xa26", + "0xa04", "0x3e8", - "0xa06", + "0x9e4", "0x3e8", "0x3e8", "0x0" ] }, { - "pc": 2434, + "pc": 2400, "op": "SWAP2", "gas": 2078450, "gasCost": 3, @@ -1378,19 +1378,19 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8", - "0xa26", + "0xa04", "0x3e8", - "0xa06", + "0x9e4", "0x3e8", "0x3e8" ] }, { - "pc": 2435, + "pc": 2401, "op": "SWAP1", "gas": 2078447, "gasCost": 3, @@ -1403,19 +1403,19 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8", - "0xa26", + "0xa04", "0x3e8", "0x3e8", "0x3e8", - "0xa06" + "0x9e4" ] }, { - "pc": 2436, + "pc": 2402, "op": "POP", "gas": 2078444, "gasCost": 2, @@ -1428,19 +1428,19 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8", - "0xa26", + "0xa04", "0x3e8", "0x3e8", - "0xa06", + "0x9e4", "0x3e8" ] }, { - "pc": 2437, + "pc": 2403, "op": "JUMP", "gas": 2078442, "gasCost": 8, @@ -1453,18 +1453,18 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8", - "0xa26", + "0xa04", "0x3e8", "0x3e8", - "0xa06" + "0x9e4" ] }, { - "pc": 2566, + "pc": 2532, "op": "JUMPDEST", "gas": 2078434, "gasCost": 1, @@ -1477,17 +1477,17 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8", - "0xa26", + "0xa04", "0x3e8", "0x3e8" ] }, { - "pc": 2567, + "pc": 2533, "op": "DUP2", "gas": 2078433, "gasCost": 3, @@ -1500,17 +1500,17 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8", - "0xa26", + "0xa04", "0x3e8", "0x3e8" ] }, { - "pc": 2568, + "pc": 2534, "op": "EQ", "gas": 2078430, "gasCost": 3, @@ -1523,18 +1523,18 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8", - "0xa26", + "0xa04", "0x3e8", "0x3e8", "0x3e8" ] }, { - "pc": 2569, + "pc": 2535, "op": "PUSH3", "gas": 2078427, "gasCost": 3, @@ -1547,17 +1547,17 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8", - "0xa26", + "0xa04", "0x3e8", "0x1" ] }, { - "pc": 2573, + "pc": 2539, "op": "JUMPI", "gas": 2078424, "gasCost": 10, @@ -1570,18 +1570,18 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8", - "0xa26", + "0xa04", "0x3e8", "0x1", - "0xa12" + "0x9f0" ] }, { - "pc": 2578, + "pc": 2544, "op": "JUMPDEST", "gas": 2078414, "gasCost": 1, @@ -1594,16 +1594,16 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8", - "0xa26", + "0xa04", "0x3e8" ] }, { - "pc": 2579, + "pc": 2545, "op": "POP", "gas": 2078413, "gasCost": 2, @@ -1616,16 +1616,16 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8", - "0xa26", + "0xa04", "0x3e8" ] }, { - "pc": 2580, + "pc": 2546, "op": "JUMP", "gas": 2078411, "gasCost": 8, @@ -1638,15 +1638,15 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8", - "0xa26" + "0xa04" ] }, { - "pc": 2598, + "pc": 2564, "op": "JUMPDEST", "gas": 2078403, "gasCost": 1, @@ -1659,14 +1659,14 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8" ] }, { - "pc": 2599, + "pc": 2565, "op": "SWAP3", "gas": 2078402, "gasCost": 3, @@ -1679,14 +1679,14 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8" ] }, { - "pc": 2600, + "pc": 2566, "op": "SWAP2", "gas": 2078399, "gasCost": 3, @@ -1702,11 +1702,11 @@ "0x3e8", "0x24", "0x4", - "0xa55" + "0xa33" ] }, { - "pc": 2601, + "pc": 2567, "op": "POP", "gas": 2078396, "gasCost": 2, @@ -1720,13 +1720,13 @@ "0x0", "0x0", "0x3e8", - "0xa55", + "0xa33", "0x4", "0x24" ] }, { - "pc": 2602, + "pc": 2568, "op": "POP", "gas": 2078394, "gasCost": 2, @@ -1740,12 +1740,12 @@ "0x0", "0x0", "0x3e8", - "0xa55", + "0xa33", "0x4" ] }, { - "pc": 2603, + "pc": 2569, "op": "JUMP", "gas": 2078392, "gasCost": 8, @@ -1759,11 +1759,11 @@ "0x0", "0x0", "0x3e8", - "0xa55" + "0xa33" ] }, { - "pc": 2645, + "pc": 2611, "op": "JUMPDEST", "gas": 2078384, "gasCost": 1, @@ -1780,7 +1780,7 @@ ] }, { - "pc": 2646, + "pc": 2612, "op": "SWAP2", "gas": 2078383, "gasCost": 3, @@ -1797,7 +1797,7 @@ ] }, { - "pc": 2647, + "pc": 2613, "op": "POP", "gas": 2078380, "gasCost": 2, @@ -1814,7 +1814,7 @@ ] }, { - "pc": 2648, + "pc": 2614, "op": "POP", "gas": 2078378, "gasCost": 2, @@ -1830,7 +1830,7 @@ ] }, { - "pc": 2649, + "pc": 2615, "op": "SWAP3", "gas": 2078376, "gasCost": 3, @@ -1845,7 +1845,7 @@ ] }, { - "pc": 2650, + "pc": 2616, "op": "SWAP2", "gas": 2078373, "gasCost": 3, @@ -1860,7 +1860,7 @@ ] }, { - "pc": 2651, + "pc": 2617, "op": "POP", "gas": 2078370, "gasCost": 2, @@ -1875,7 +1875,7 @@ ] }, { - "pc": 2652, + "pc": 2618, "op": "POP", "gas": 2078368, "gasCost": 2, @@ -1889,7 +1889,7 @@ ] }, { - "pc": 2653, + "pc": 2619, "op": "JUMP", "gas": 2078366, "gasCost": 8, @@ -1935,11 +1935,11 @@ "0xa0712d68", "0x1cd", "0x3e8", - "0x802" + "0x7f0" ] }, { - "pc": 2050, + "pc": 2032, "op": "JUMPDEST", "gas": 2078346, "gasCost": 1, @@ -1951,7 +1951,7 @@ ] }, { - "pc": 2051, + "pc": 2033, "op": "PUSH1", "gas": 2078345, "gasCost": 3, @@ -1963,7 +1963,7 @@ ] }, { - "pc": 2053, + "pc": 2035, "op": "CALLER", "gas": 2078342, "gasCost": 2, @@ -1976,7 +1976,7 @@ ] }, { - "pc": 2054, + "pc": 2036, "op": "PUSH20", "gas": 2078340, "gasCost": 3, @@ -1990,7 +1990,7 @@ ] }, { - "pc": 2075, + "pc": 2057, "op": "AND", "gas": 2078337, "gasCost": 3, @@ -2005,7 +2005,7 @@ ] }, { - "pc": 2076, + "pc": 2058, "op": "PUSH32", "gas": 2078334, "gasCost": 3, @@ -2019,7 +2019,7 @@ ] }, { - "pc": 2109, + "pc": 2091, "op": "DUP4", "gas": 2078331, "gasCost": 3, @@ -2034,7 +2034,7 @@ ] }, { - "pc": 2110, + "pc": 2092, "op": "PUSH1", "gas": 2078328, "gasCost": 3, @@ -2050,7 +2050,7 @@ ] }, { - "pc": 2112, + "pc": 2094, "op": "MLOAD", "gas": 2078325, "gasCost": 3, @@ -2067,7 +2067,7 @@ ] }, { - "pc": 2113, + "pc": 2095, "op": "PUSH3", "gas": 2078322, "gasCost": 3, @@ -2084,7 +2084,7 @@ ] }, { - "pc": 2117, + "pc": 2099, "op": "SWAP2", "gas": 2078319, "gasCost": 3, @@ -2098,11 +2098,11 @@ "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", "0x3e8", "0x80", - "0x84c" + "0x83a" ] }, { - "pc": 2118, + "pc": 2100, "op": "SWAP1", "gas": 2078316, "gasCost": 3, @@ -2114,13 +2114,13 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x80", "0x3e8" ] }, { - "pc": 2119, + "pc": 2101, "op": "PUSH3", "gas": 2078313, "gasCost": 3, @@ -2132,13 +2132,13 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80" ] }, { - "pc": 2123, + "pc": 2105, "op": "JUMP", "gas": 2078310, "gasCost": 8, @@ -2150,14 +2150,14 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", - "0xc64" + "0xc20" ] }, { - "pc": 3172, + "pc": 3104, "op": "JUMPDEST", "gas": 2078302, "gasCost": 1, @@ -2169,13 +2169,13 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80" ] }, { - "pc": 3173, + "pc": 3105, "op": "PUSH1", "gas": 2078301, "gasCost": 3, @@ -2187,13 +2187,13 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80" ] }, { - "pc": 3175, + "pc": 3107, "op": "PUSH1", "gas": 2078298, "gasCost": 3, @@ -2205,14 +2205,14 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0x0" ] }, { - "pc": 3177, + "pc": 3109, "op": "DUP3", "gas": 2078295, "gasCost": 3, @@ -2224,7 +2224,7 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0x0", @@ -2232,7 +2232,7 @@ ] }, { - "pc": 3178, + "pc": 3110, "op": "ADD", "gas": 2078292, "gasCost": 3, @@ -2244,7 +2244,7 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0x0", @@ -2253,7 +2253,7 @@ ] }, { - "pc": 3179, + "pc": 3111, "op": "SWAP1", "gas": 2078289, "gasCost": 3, @@ -2265,7 +2265,7 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0x0", @@ -2273,7 +2273,7 @@ ] }, { - "pc": 3180, + "pc": 3112, "op": "POP", "gas": 2078286, "gasCost": 2, @@ -2285,7 +2285,7 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", @@ -2293,7 +2293,7 @@ ] }, { - "pc": 3181, + "pc": 3113, "op": "PUSH3", "gas": 2078284, "gasCost": 3, @@ -2305,14 +2305,14 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0" ] }, { - "pc": 3185, + "pc": 3117, "op": "PUSH1", "gas": 2078281, "gasCost": 3, @@ -2324,15 +2324,15 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", - "0xc7b" + "0xc37" ] }, { - "pc": 3187, + "pc": 3119, "op": "DUP4", "gas": 2078278, "gasCost": 3, @@ -2344,16 +2344,16 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", - "0xc7b", + "0xc37", "0x0" ] }, { - "pc": 3188, + "pc": 3120, "op": "ADD", "gas": 2078275, "gasCost": 3, @@ -2365,17 +2365,17 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", - "0xc7b", + "0xc37", "0x0", "0x80" ] }, { - "pc": 3189, + "pc": 3121, "op": "DUP5", "gas": 2078272, "gasCost": 3, @@ -2387,16 +2387,16 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", - "0xc7b", + "0xc37", "0x80" ] }, { - "pc": 3190, + "pc": 3122, "op": "PUSH3", "gas": 2078269, "gasCost": 3, @@ -2408,17 +2408,17 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", - "0xc7b", + "0xc37", "0x80", "0x3e8" ] }, { - "pc": 3194, + "pc": 3126, "op": "JUMP", "gas": 2078266, "gasCost": 8, @@ -2430,18 +2430,18 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", - "0xc7b", + "0xc37", "0x80", "0x3e8", - "0x986" + "0x964" ] }, { - "pc": 2438, + "pc": 2404, "op": "JUMPDEST", "gas": 2078258, "gasCost": 1, @@ -2453,17 +2453,17 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", - "0xc7b", + "0xc37", "0x80", "0x3e8" ] }, { - "pc": 2439, + "pc": 2405, "op": "PUSH3", "gas": 2078257, "gasCost": 3, @@ -2475,17 +2475,17 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", - "0xc7b", + "0xc37", "0x80", "0x3e8" ] }, { - "pc": 2443, + "pc": 2409, "op": "DUP2", "gas": 2078254, "gasCost": 3, @@ -2497,18 +2497,18 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", - "0xc7b", + "0xc37", "0x80", "0x3e8", - "0x991" + "0x96f" ] }, { - "pc": 2444, + "pc": 2410, "op": "PUSH3", "gas": 2078251, "gasCost": 3, @@ -2520,19 +2520,19 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", - "0xc7b", + "0xc37", "0x80", "0x3e8", - "0x991", + "0x96f", "0x3e8" ] }, { - "pc": 2448, + "pc": 2414, "op": "JUMP", "gas": 2078248, "gasCost": 8, @@ -2544,20 +2544,20 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", - "0xc7b", + "0xc37", "0x80", "0x3e8", - "0x991", + "0x96f", "0x3e8", - "0x97c" + "0x95a" ] }, { - "pc": 2428, + "pc": 2394, "op": "JUMPDEST", "gas": 2078240, "gasCost": 1, @@ -2569,19 +2569,19 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", - "0xc7b", + "0xc37", "0x80", "0x3e8", - "0x991", + "0x96f", "0x3e8" ] }, { - "pc": 2429, + "pc": 2395, "op": "PUSH1", "gas": 2078239, "gasCost": 3, @@ -2593,19 +2593,19 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", - "0xc7b", + "0xc37", "0x80", "0x3e8", - "0x991", + "0x96f", "0x3e8" ] }, { - "pc": 2431, + "pc": 2397, "op": "DUP2", "gas": 2078236, "gasCost": 3, @@ -2617,20 +2617,20 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", - "0xc7b", + "0xc37", "0x80", "0x3e8", - "0x991", + "0x96f", "0x3e8", "0x0" ] }, { - "pc": 2432, + "pc": 2398, "op": "SWAP1", "gas": 2078233, "gasCost": 3, @@ -2642,21 +2642,21 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", - "0xc7b", + "0xc37", "0x80", "0x3e8", - "0x991", + "0x96f", "0x3e8", "0x0", "0x3e8" ] }, { - "pc": 2433, + "pc": 2399, "op": "POP", "gas": 2078230, "gasCost": 2, @@ -2668,21 +2668,21 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", - "0xc7b", + "0xc37", "0x80", "0x3e8", - "0x991", + "0x96f", "0x3e8", "0x3e8", "0x0" ] }, { - "pc": 2434, + "pc": 2400, "op": "SWAP2", "gas": 2078228, "gasCost": 3, @@ -2694,20 +2694,20 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", - "0xc7b", + "0xc37", "0x80", "0x3e8", - "0x991", + "0x96f", "0x3e8", "0x3e8" ] }, { - "pc": 2435, + "pc": 2401, "op": "SWAP1", "gas": 2078225, "gasCost": 3, @@ -2719,20 +2719,20 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", - "0xc7b", + "0xc37", "0x80", "0x3e8", "0x3e8", "0x3e8", - "0x991" + "0x96f" ] }, { - "pc": 2436, + "pc": 2402, "op": "POP", "gas": 2078222, "gasCost": 2, @@ -2744,20 +2744,20 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", - "0xc7b", + "0xc37", "0x80", "0x3e8", "0x3e8", - "0x991", + "0x96f", "0x3e8" ] }, { - "pc": 2437, + "pc": 2403, "op": "JUMP", "gas": 2078220, "gasCost": 8, @@ -2769,19 +2769,19 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", - "0xc7b", + "0xc37", "0x80", "0x3e8", "0x3e8", - "0x991" + "0x96f" ] }, { - "pc": 2449, + "pc": 2415, "op": "JUMPDEST", "gas": 2078212, "gasCost": 1, @@ -2793,18 +2793,18 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", - "0xc7b", + "0xc37", "0x80", "0x3e8", "0x3e8" ] }, { - "pc": 2450, + "pc": 2416, "op": "DUP3", "gas": 2078211, "gasCost": 3, @@ -2816,18 +2816,18 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", - "0xc7b", + "0xc37", "0x80", "0x3e8", "0x3e8" ] }, { - "pc": 2451, + "pc": 2417, "op": "MSTORE", "gas": 2078208, "gasCost": 9, @@ -2839,11 +2839,11 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", - "0xc7b", + "0xc37", "0x80", "0x3e8", "0x3e8", @@ -2851,7 +2851,7 @@ ] }, { - "pc": 2452, + "pc": 2418, "op": "POP", "gas": 2078199, "gasCost": 2, @@ -2863,17 +2863,17 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", - "0xc7b", + "0xc37", "0x80", "0x3e8" ] }, { - "pc": 2453, + "pc": 2419, "op": "POP", "gas": 2078197, "gasCost": 2, @@ -2885,16 +2885,16 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", - "0xc7b", + "0xc37", "0x80" ] }, { - "pc": 2454, + "pc": 2420, "op": "JUMP", "gas": 2078195, "gasCost": 8, @@ -2906,15 +2906,15 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", - "0xc7b" + "0xc37" ] }, { - "pc": 3195, + "pc": 3127, "op": "JUMPDEST", "gas": 2078187, "gasCost": 1, @@ -2926,14 +2926,14 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0" ] }, { - "pc": 3196, + "pc": 3128, "op": "DUP2", "gas": 2078186, "gasCost": 3, @@ -2945,14 +2945,14 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0" ] }, { - "pc": 3197, + "pc": 3129, "op": "DUP2", "gas": 2078183, "gasCost": 3, @@ -2964,7 +2964,7 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", @@ -2972,7 +2972,7 @@ ] }, { - "pc": 3198, + "pc": 3130, "op": "SUB", "gas": 2078180, "gasCost": 3, @@ -2984,7 +2984,7 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", @@ -2993,7 +2993,7 @@ ] }, { - "pc": 3199, + "pc": 3131, "op": "PUSH1", "gas": 2078177, "gasCost": 3, @@ -3005,7 +3005,7 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", @@ -3013,7 +3013,7 @@ ] }, { - "pc": 3201, + "pc": 3133, "op": "DUP4", "gas": 2078174, "gasCost": 3, @@ -3025,7 +3025,7 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", @@ -3034,7 +3034,7 @@ ] }, { - "pc": 3202, + "pc": 3134, "op": "ADD", "gas": 2078171, "gasCost": 3, @@ -3046,7 +3046,7 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", @@ -3056,7 +3056,7 @@ ] }, { - "pc": 3203, + "pc": 3135, "op": "MSTORE", "gas": 2078168, "gasCost": 6, @@ -3068,7 +3068,7 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", @@ -3077,7 +3077,7 @@ ] }, { - "pc": 3204, + "pc": 3136, "op": "PUSH3", "gas": 2078162, "gasCost": 3, @@ -3089,14 +3089,14 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0" ] }, { - "pc": 3208, + "pc": 3140, "op": "DUP2", "gas": 2078159, "gasCost": 3, @@ -3108,15 +3108,15 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", - "0xc8e" + "0xc4a" ] }, { - "pc": 3209, + "pc": 3141, "op": "PUSH3", "gas": 2078156, "gasCost": 3, @@ -3128,16 +3128,16 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xc0" ] }, { - "pc": 3213, + "pc": 3145, "op": "JUMP", "gas": 2078153, "gasCost": 8, @@ -3149,17 +3149,17 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xc0", - "0xc3d" + "0xbf9" ] }, { - "pc": 3133, + "pc": 3065, "op": "JUMPDEST", "gas": 2078145, "gasCost": 1, @@ -3171,16 +3171,16 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xc0" ] }, { - "pc": 3134, + "pc": 3066, "op": "PUSH1", "gas": 2078144, "gasCost": 3, @@ -3192,16 +3192,16 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xc0" ] }, { - "pc": 3136, + "pc": 3068, "op": "PUSH3", "gas": 2078141, "gasCost": 3, @@ -3213,17 +3213,17 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xc0", "0x0" ] }, { - "pc": 3140, + "pc": 3072, "op": "PUSH1", "gas": 2078138, "gasCost": 3, @@ -3235,18 +3235,18 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xc0", "0x0", - "0xc4c" + "0xc08" ] }, { - "pc": 3142, + "pc": 3074, "op": "DUP4", "gas": 2078135, "gasCost": 3, @@ -3258,19 +3258,19 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xc0", "0x0", - "0xc4c", + "0xc08", "0x5" ] }, { - "pc": 3143, + "pc": 3075, "op": "PUSH3", "gas": 2078132, "gasCost": 3, @@ -3282,20 +3282,20 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xc0", "0x0", - "0xc4c", + "0xc08", "0x5", "0xc0" ] }, { - "pc": 3147, + "pc": 3079, "op": "JUMP", "gas": 2078129, "gasCost": 8, @@ -3307,21 +3307,21 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xc0", "0x0", - "0xc4c", + "0xc08", "0x5", "0xc0", - "0xaf5" + "0xad3" ] }, { - "pc": 2805, + "pc": 2771, "op": "JUMPDEST", "gas": 2078121, "gasCost": 1, @@ -3333,20 +3333,20 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xc0", "0x0", - "0xc4c", + "0xc08", "0x5", "0xc0" ] }, { - "pc": 2806, + "pc": 2772, "op": "PUSH1", "gas": 2078120, "gasCost": 3, @@ -3358,20 +3358,20 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xc0", "0x0", - "0xc4c", + "0xc08", "0x5", "0xc0" ] }, { - "pc": 2808, + "pc": 2774, "op": "DUP3", "gas": 2078117, "gasCost": 3, @@ -3383,21 +3383,21 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xc0", "0x0", - "0xc4c", + "0xc08", "0x5", "0xc0", "0x0" ] }, { - "pc": 2809, + "pc": 2775, "op": "DUP3", "gas": 2078114, "gasCost": 3, @@ -3409,14 +3409,14 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xc0", "0x0", - "0xc4c", + "0xc08", "0x5", "0xc0", "0x0", @@ -3424,7 +3424,7 @@ ] }, { - "pc": 2810, + "pc": 2776, "op": "MSTORE", "gas": 2078111, "gasCost": 6, @@ -3436,14 +3436,14 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xc0", "0x0", - "0xc4c", + "0xc08", "0x5", "0xc0", "0x0", @@ -3452,7 +3452,7 @@ ] }, { - "pc": 2811, + "pc": 2777, "op": "PUSH1", "gas": 2078105, "gasCost": 3, @@ -3464,21 +3464,21 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xc0", "0x0", - "0xc4c", + "0xc08", "0x5", "0xc0", "0x0" ] }, { - "pc": 2813, + "pc": 2779, "op": "DUP3", "gas": 2078102, "gasCost": 3, @@ -3490,14 +3490,14 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xc0", "0x0", - "0xc4c", + "0xc08", "0x5", "0xc0", "0x0", @@ -3505,7 +3505,7 @@ ] }, { - "pc": 2814, + "pc": 2780, "op": "ADD", "gas": 2078099, "gasCost": 3, @@ -3517,14 +3517,14 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xc0", "0x0", - "0xc4c", + "0xc08", "0x5", "0xc0", "0x0", @@ -3533,7 +3533,7 @@ ] }, { - "pc": 2815, + "pc": 2781, "op": "SWAP1", "gas": 2078096, "gasCost": 3, @@ -3545,14 +3545,14 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xc0", "0x0", - "0xc4c", + "0xc08", "0x5", "0xc0", "0x0", @@ -3560,7 +3560,7 @@ ] }, { - "pc": 2816, + "pc": 2782, "op": "POP", "gas": 2078093, "gasCost": 2, @@ -3572,14 +3572,14 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xc0", "0x0", - "0xc4c", + "0xc08", "0x5", "0xc0", "0xe0", @@ -3587,7 +3587,7 @@ ] }, { - "pc": 2817, + "pc": 2783, "op": "SWAP3", "gas": 2078091, "gasCost": 3, @@ -3599,21 +3599,21 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xc0", "0x0", - "0xc4c", + "0xc08", "0x5", "0xc0", "0xe0" ] }, { - "pc": 2818, + "pc": 2784, "op": "SWAP2", "gas": 2078088, "gasCost": 3, @@ -3625,21 +3625,21 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xc0", "0x0", "0xe0", "0x5", "0xc0", - "0xc4c" + "0xc08" ] }, { - "pc": 2819, + "pc": 2785, "op": "POP", "gas": 2078085, "gasCost": 2, @@ -3651,21 +3651,21 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xc0", "0x0", "0xe0", - "0xc4c", + "0xc08", "0xc0", "0x5" ] }, { - "pc": 2820, + "pc": 2786, "op": "POP", "gas": 2078083, "gasCost": 2, @@ -3677,20 +3677,20 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xc0", "0x0", "0xe0", - "0xc4c", + "0xc08", "0xc0" ] }, { - "pc": 2821, + "pc": 2787, "op": "JUMP", "gas": 2078081, "gasCost": 8, @@ -3702,19 +3702,19 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xc0", "0x0", "0xe0", - "0xc4c" + "0xc08" ] }, { - "pc": 3148, + "pc": 3080, "op": "JUMPDEST", "gas": 2078073, "gasCost": 1, @@ -3726,18 +3726,18 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xc0", "0x0", "0xe0" ] }, { - "pc": 3149, + "pc": 3081, "op": "SWAP2", "gas": 2078072, "gasCost": 3, @@ -3749,18 +3749,18 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xc0", "0x0", "0xe0" ] }, { - "pc": 3150, + "pc": 3082, "op": "POP", "gas": 2078069, "gasCost": 2, @@ -3772,18 +3772,18 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xe0", "0x0", "0xc0" ] }, { - "pc": 3151, + "pc": 3083, "op": "PUSH3", "gas": 2078067, "gasCost": 3, @@ -3795,17 +3795,17 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xe0", "0x0" ] }, { - "pc": 3155, + "pc": 3087, "op": "DUP3", "gas": 2078064, "gasCost": 3, @@ -3817,18 +3817,18 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xe0", "0x0", - "0xc59" + "0xc15" ] }, { - "pc": 3156, + "pc": 3088, "op": "PUSH3", "gas": 2078061, "gasCost": 3, @@ -3840,19 +3840,19 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xe0", "0x0", - "0xc59", + "0xc15", "0xe0" ] }, { - "pc": 3160, + "pc": 3092, "op": "JUMP", "gas": 2078058, "gasCost": 8, @@ -3864,20 +3864,20 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xe0", "0x0", - "0xc59", + "0xc15", "0xe0", - "0xc14" + "0xbd0" ] }, { - "pc": 3092, + "pc": 3024, "op": "JUMPDEST", "gas": 2078050, "gasCost": 1, @@ -3889,19 +3889,19 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xe0", "0x0", - "0xc59", + "0xc15", "0xe0" ] }, { - "pc": 3093, + "pc": 3025, "op": "PUSH32", "gas": 2078049, "gasCost": 3, @@ -3913,19 +3913,19 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xe0", "0x0", - "0xc59", + "0xc15", "0xe0" ] }, { - "pc": 3126, + "pc": 3058, "op": "PUSH1", "gas": 2078046, "gasCost": 3, @@ -3937,20 +3937,20 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xe0", "0x0", - "0xc59", + "0xc15", "0xe0", "0x746f706963000000000000000000000000000000000000000000000000000000" ] }, { - "pc": 3128, + "pc": 3060, "op": "DUP3", "gas": 2078043, "gasCost": 3, @@ -3962,21 +3962,21 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xe0", "0x0", - "0xc59", + "0xc15", "0xe0", "0x746f706963000000000000000000000000000000000000000000000000000000", "0x0" ] }, { - "pc": 3129, + "pc": 3061, "op": "ADD", "gas": 2078040, "gasCost": 3, @@ -3988,14 +3988,14 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xe0", "0x0", - "0xc59", + "0xc15", "0xe0", "0x746f706963000000000000000000000000000000000000000000000000000000", "0x0", @@ -4003,7 +4003,7 @@ ] }, { - "pc": 3130, + "pc": 3062, "op": "MSTORE", "gas": 2078037, "gasCost": 6, @@ -4015,21 +4015,21 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xe0", "0x0", - "0xc59", + "0xc15", "0xe0", "0x746f706963000000000000000000000000000000000000000000000000000000", "0xe0" ] }, { - "pc": 3131, + "pc": 3063, "op": "POP", "gas": 2078031, "gasCost": 2, @@ -4041,19 +4041,19 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xe0", "0x0", - "0xc59", + "0xc15", "0xe0" ] }, { - "pc": 3132, + "pc": 3064, "op": "JUMP", "gas": 2078029, "gasCost": 8, @@ -4065,18 +4065,18 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xe0", "0x0", - "0xc59" + "0xc15" ] }, { - "pc": 3161, + "pc": 3093, "op": "JUMPDEST", "gas": 2078021, "gasCost": 1, @@ -4088,17 +4088,17 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xe0", "0x0" ] }, { - "pc": 3162, + "pc": 3094, "op": "PUSH1", "gas": 2078020, "gasCost": 3, @@ -4110,17 +4110,17 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xe0", "0x0" ] }, { - "pc": 3164, + "pc": 3096, "op": "DUP3", "gas": 2078017, "gasCost": 3, @@ -4132,18 +4132,18 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xe0", "0x0", "0x20" ] }, { - "pc": 3165, + "pc": 3097, "op": "ADD", "gas": 2078014, "gasCost": 3, @@ -4155,11 +4155,11 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xe0", "0x0", "0x20", @@ -4167,7 +4167,7 @@ ] }, { - "pc": 3166, + "pc": 3098, "op": "SWAP1", "gas": 2078011, "gasCost": 3, @@ -4179,18 +4179,18 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xe0", "0x0", "0x100" ] }, { - "pc": 3167, + "pc": 3099, "op": "POP", "gas": 2078008, "gasCost": 2, @@ -4202,18 +4202,18 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xe0", "0x100", "0x0" ] }, { - "pc": 3168, + "pc": 3100, "op": "SWAP2", "gas": 2078006, "gasCost": 3, @@ -4225,17 +4225,17 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xe0", "0x100" ] }, { - "pc": 3169, + "pc": 3101, "op": "SWAP1", "gas": 2078003, "gasCost": 3, @@ -4247,17 +4247,17 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", "0x100", "0xe0", - "0xc8e" + "0xc4a" ] }, { - "pc": 3170, + "pc": 3102, "op": "POP", "gas": 2078000, "gasCost": 2, @@ -4269,17 +4269,17 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", "0x100", - "0xc8e", + "0xc4a", "0xe0" ] }, { - "pc": 3171, + "pc": 3103, "op": "JUMP", "gas": 2077998, "gasCost": 8, @@ -4291,16 +4291,16 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", "0x100", - "0xc8e" + "0xc4a" ] }, { - "pc": 3214, + "pc": 3146, "op": "JUMPDEST", "gas": 2077990, "gasCost": 1, @@ -4312,7 +4312,7 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", @@ -4320,7 +4320,7 @@ ] }, { - "pc": 3215, + "pc": 3147, "op": "SWAP1", "gas": 2077989, "gasCost": 3, @@ -4332,7 +4332,7 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0xc0", @@ -4340,7 +4340,7 @@ ] }, { - "pc": 3216, + "pc": 3148, "op": "POP", "gas": 2077986, "gasCost": 2, @@ -4352,7 +4352,7 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0x100", @@ -4360,7 +4360,7 @@ ] }, { - "pc": 3217, + "pc": 3149, "op": "SWAP3", "gas": 2077984, "gasCost": 3, @@ -4372,14 +4372,14 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x84c", + "0x83a", "0x3e8", "0x80", "0x100" ] }, { - "pc": 3218, + "pc": 3150, "op": "SWAP2", "gas": 2077981, "gasCost": 3, @@ -4394,11 +4394,11 @@ "0x100", "0x3e8", "0x80", - "0x84c" + "0x83a" ] }, { - "pc": 3219, + "pc": 3151, "op": "POP", "gas": 2077978, "gasCost": 2, @@ -4411,13 +4411,13 @@ "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", "0x100", - "0x84c", + "0x83a", "0x80", "0x3e8" ] }, { - "pc": 3220, + "pc": 3152, "op": "POP", "gas": 2077976, "gasCost": 2, @@ -4430,12 +4430,12 @@ "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", "0x100", - "0x84c", + "0x83a", "0x80" ] }, { - "pc": 3221, + "pc": 3153, "op": "JUMP", "gas": 2077974, "gasCost": 8, @@ -4448,11 +4448,11 @@ "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", "0x100", - "0x84c" + "0x83a" ] }, { - "pc": 2124, + "pc": 2106, "op": "JUMPDEST", "gas": 2077966, "gasCost": 1, @@ -4468,7 +4468,7 @@ ] }, { - "pc": 2125, + "pc": 2107, "op": "PUSH1", "gas": 2077965, "gasCost": 3, @@ -4484,7 +4484,7 @@ ] }, { - "pc": 2127, + "pc": 2109, "op": "MLOAD", "gas": 2077962, "gasCost": 3, @@ -4501,7 +4501,7 @@ ] }, { - "pc": 2128, + "pc": 2110, "op": "DUP1", "gas": 2077959, "gasCost": 3, @@ -4518,7 +4518,7 @@ ] }, { - "pc": 2129, + "pc": 2111, "op": "SWAP2", "gas": 2077956, "gasCost": 3, @@ -4536,7 +4536,7 @@ ] }, { - "pc": 2130, + "pc": 2112, "op": "SUB", "gas": 2077953, "gasCost": 3, @@ -4554,7 +4554,7 @@ ] }, { - "pc": 2131, + "pc": 2113, "op": "SWAP1", "gas": 2077950, "gasCost": 3, @@ -4571,7 +4571,7 @@ ] }, { - "pc": 2132, + "pc": 2114, "op": "LOG2", "gas": 2077947, "gasCost": 2149, @@ -4588,7 +4588,7 @@ ] }, { - "pc": 2133, + "pc": 2115, "op": "DUP2", "gas": 2075798, "gasCost": 3, @@ -4601,7 +4601,7 @@ ] }, { - "pc": 2134, + "pc": 2116, "op": "PUSH1", "gas": 2075795, "gasCost": 3, @@ -4615,7 +4615,7 @@ ] }, { - "pc": 2136, + "pc": 2118, "op": "PUSH1", "gas": 2075792, "gasCost": 3, @@ -4630,7 +4630,7 @@ ] }, { - "pc": 2138, + "pc": 2120, "op": "DUP3", "gas": 2075789, "gasCost": 3, @@ -4646,7 +4646,7 @@ ] }, { - "pc": 2139, + "pc": 2121, "op": "DUP3", "gas": 2075786, "gasCost": 3, @@ -4663,7 +4663,7 @@ ] }, { - "pc": 2140, + "pc": 2122, "op": "SLOAD", "gas": 2075783, "gasCost": 2100, @@ -4684,7 +4684,7 @@ } }, { - "pc": 2141, + "pc": 2123, "op": "PUSH3", "gas": 2073683, "gasCost": 3, @@ -4702,7 +4702,7 @@ ] }, { - "pc": 2145, + "pc": 2127, "op": "SWAP2", "gas": 2073680, "gasCost": 3, @@ -4717,11 +4717,11 @@ "0x0", "0x3e8", "0x0", - "0x868" + "0x856" ] }, { - "pc": 2146, + "pc": 2128, "op": "SWAP1", "gas": 2073677, "gasCost": 3, @@ -4734,13 +4734,13 @@ "0x3e8", "0x1", "0x0", - "0x868", + "0x856", "0x0", "0x3e8" ] }, { - "pc": 2147, + "pc": 2129, "op": "PUSH3", "gas": 2073674, "gasCost": 3, @@ -4753,13 +4753,13 @@ "0x3e8", "0x1", "0x0", - "0x868", + "0x856", "0x3e8", "0x0" ] }, { - "pc": 2151, + "pc": 2133, "op": "JUMP", "gas": 2073671, "gasCost": 8, @@ -4772,14 +4772,14 @@ "0x3e8", "0x1", "0x0", - "0x868", + "0x856", "0x3e8", "0x0", - "0xbb7" + "0xb95" ] }, { - "pc": 2999, + "pc": 2965, "op": "JUMPDEST", "gas": 2073663, "gasCost": 1, @@ -4792,13 +4792,13 @@ "0x3e8", "0x1", "0x0", - "0x868", + "0x856", "0x3e8", "0x0" ] }, { - "pc": 3000, + "pc": 2966, "op": "PUSH1", "gas": 2073662, "gasCost": 3, @@ -4811,13 +4811,13 @@ "0x3e8", "0x1", "0x0", - "0x868", + "0x856", "0x3e8", "0x0" ] }, { - "pc": 3002, + "pc": 2968, "op": "PUSH3", "gas": 2073659, "gasCost": 3, @@ -4830,14 +4830,14 @@ "0x3e8", "0x1", "0x0", - "0x868", + "0x856", "0x3e8", "0x0", "0x0" ] }, { - "pc": 3006, + "pc": 2972, "op": "DUP3", "gas": 2073656, "gasCost": 3, @@ -4850,15 +4850,15 @@ "0x3e8", "0x1", "0x0", - "0x868", + "0x856", "0x3e8", "0x0", "0x0", - "0xbc4" + "0xba2" ] }, { - "pc": 3007, + "pc": 2973, "op": "PUSH3", "gas": 2073653, "gasCost": 3, @@ -4871,16 +4871,16 @@ "0x3e8", "0x1", "0x0", - "0x868", + "0x856", "0x3e8", "0x0", "0x0", - "0xbc4", + "0xba2", "0x0" ] }, { - "pc": 3011, + "pc": 2977, "op": "JUMP", "gas": 2073650, "gasCost": 8, @@ -4893,17 +4893,17 @@ "0x3e8", "0x1", "0x0", - "0x868", + "0x856", "0x3e8", "0x0", "0x0", - "0xbc4", + "0xba2", "0x0", - "0x97c" + "0x95a" ] }, { - "pc": 2428, + "pc": 2394, "op": "JUMPDEST", "gas": 2073642, "gasCost": 1, @@ -4916,16 +4916,16 @@ "0x3e8", "0x1", "0x0", - "0x868", + "0x856", "0x3e8", "0x0", "0x0", - "0xbc4", + "0xba2", "0x0" ] }, { - "pc": 2429, + "pc": 2395, "op": "PUSH1", "gas": 2073641, "gasCost": 3, @@ -4938,16 +4938,16 @@ "0x3e8", "0x1", "0x0", - "0x868", + "0x856", "0x3e8", "0x0", "0x0", - "0xbc4", + "0xba2", "0x0" ] }, { - "pc": 2431, + "pc": 2397, "op": "DUP2", "gas": 2073638, "gasCost": 3, @@ -4960,17 +4960,17 @@ "0x3e8", "0x1", "0x0", - "0x868", + "0x856", "0x3e8", "0x0", "0x0", - "0xbc4", + "0xba2", "0x0", "0x0" ] }, { - "pc": 2432, + "pc": 2398, "op": "SWAP1", "gas": 2073635, "gasCost": 3, @@ -4983,18 +4983,18 @@ "0x3e8", "0x1", "0x0", - "0x868", + "0x856", "0x3e8", "0x0", "0x0", - "0xbc4", + "0xba2", "0x0", "0x0", "0x0" ] }, { - "pc": 2433, + "pc": 2399, "op": "POP", "gas": 2073632, "gasCost": 2, @@ -5007,18 +5007,18 @@ "0x3e8", "0x1", "0x0", - "0x868", + "0x856", "0x3e8", "0x0", "0x0", - "0xbc4", + "0xba2", "0x0", "0x0", "0x0" ] }, { - "pc": 2434, + "pc": 2400, "op": "SWAP2", "gas": 2073630, "gasCost": 3, @@ -5031,17 +5031,17 @@ "0x3e8", "0x1", "0x0", - "0x868", + "0x856", "0x3e8", "0x0", "0x0", - "0xbc4", + "0xba2", "0x0", "0x0" ] }, { - "pc": 2435, + "pc": 2401, "op": "SWAP1", "gas": 2073627, "gasCost": 3, @@ -5054,17 +5054,17 @@ "0x3e8", "0x1", "0x0", - "0x868", + "0x856", "0x3e8", "0x0", "0x0", "0x0", "0x0", - "0xbc4" + "0xba2" ] }, { - "pc": 2436, + "pc": 2402, "op": "POP", "gas": 2073624, "gasCost": 2, @@ -5077,17 +5077,17 @@ "0x3e8", "0x1", "0x0", - "0x868", + "0x856", "0x3e8", "0x0", "0x0", "0x0", - "0xbc4", + "0xba2", "0x0" ] }, { - "pc": 2437, + "pc": 2403, "op": "JUMP", "gas": 2073622, "gasCost": 8, @@ -5100,16 +5100,16 @@ "0x3e8", "0x1", "0x0", - "0x868", + "0x856", "0x3e8", "0x0", "0x0", "0x0", - "0xbc4" + "0xba2" ] }, { - "pc": 3012, + "pc": 2978, "op": "JUMPDEST", "gas": 2073614, "gasCost": 1, @@ -5122,7 +5122,7 @@ "0x3e8", "0x1", "0x0", - "0x868", + "0x856", "0x3e8", "0x0", "0x0", @@ -5130,7 +5130,7 @@ ] }, { - "pc": 3013, + "pc": 2979, "op": "SWAP2", "gas": 2073613, "gasCost": 3, @@ -5143,7 +5143,7 @@ "0x3e8", "0x1", "0x0", - "0x868", + "0x856", "0x3e8", "0x0", "0x0", @@ -5151,7 +5151,7 @@ ] }, { - "pc": 3014, + "pc": 2980, "op": "POP", "gas": 2073610, "gasCost": 2, @@ -5164,7 +5164,7 @@ "0x3e8", "0x1", "0x0", - "0x868", + "0x856", "0x3e8", "0x0", "0x0", @@ -5172,7 +5172,7 @@ ] }, { - "pc": 3015, + "pc": 2981, "op": "PUSH3", "gas": 2073608, "gasCost": 3, @@ -5185,14 +5185,14 @@ "0x3e8", "0x1", "0x0", - "0x868", + "0x856", "0x3e8", "0x0", "0x0" ] }, { - "pc": 3019, + "pc": 2985, "op": "DUP4", "gas": 2073605, "gasCost": 3, @@ -5205,15 +5205,15 @@ "0x3e8", "0x1", "0x0", - "0x868", + "0x856", "0x3e8", "0x0", "0x0", - "0xbd1" + "0xbaf" ] }, { - "pc": 3020, + "pc": 2986, "op": "PUSH3", "gas": 2073602, "gasCost": 3, @@ -5226,16 +5226,16 @@ "0x3e8", "0x1", "0x0", - "0x868", + "0x856", "0x3e8", "0x0", "0x0", - "0xbd1", + "0xbaf", "0x3e8" ] }, { - "pc": 3024, + "pc": 2990, "op": "JUMP", "gas": 2073599, "gasCost": 8, @@ -5248,17 +5248,17 @@ "0x3e8", "0x1", "0x0", - "0x868", + "0x856", "0x3e8", "0x0", "0x0", - "0xbd1", + "0xbaf", "0x3e8", - "0x97c" + "0x95a" ] }, { - "pc": 2428, + "pc": 2394, "op": "JUMPDEST", "gas": 2073591, "gasCost": 1, @@ -5271,16 +5271,16 @@ "0x3e8", "0x1", "0x0", - "0x868", + "0x856", "0x3e8", "0x0", "0x0", - "0xbd1", + "0xbaf", "0x3e8" ] }, { - "pc": 2429, + "pc": 2395, "op": "PUSH1", "gas": 2073590, "gasCost": 3, @@ -5293,16 +5293,16 @@ "0x3e8", "0x1", "0x0", - "0x868", + "0x856", "0x3e8", "0x0", "0x0", - "0xbd1", + "0xbaf", "0x3e8" ] }, { - "pc": 2431, + "pc": 2397, "op": "DUP2", "gas": 2073587, "gasCost": 3, @@ -5315,17 +5315,17 @@ "0x3e8", "0x1", "0x0", - "0x868", + "0x856", "0x3e8", "0x0", "0x0", - "0xbd1", + "0xbaf", "0x3e8", "0x0" ] }, { - "pc": 2432, + "pc": 2398, "op": "SWAP1", "gas": 2073584, "gasCost": 3, @@ -5338,18 +5338,18 @@ "0x3e8", "0x1", "0x0", - "0x868", + "0x856", "0x3e8", "0x0", "0x0", - "0xbd1", + "0xbaf", "0x3e8", "0x0", "0x3e8" ] }, { - "pc": 2433, + "pc": 2399, "op": "POP", "gas": 2073581, "gasCost": 2, @@ -5362,18 +5362,18 @@ "0x3e8", "0x1", "0x0", - "0x868", + "0x856", "0x3e8", "0x0", "0x0", - "0xbd1", + "0xbaf", "0x3e8", "0x3e8", "0x0" ] }, { - "pc": 2434, + "pc": 2400, "op": "SWAP2", "gas": 2073579, "gasCost": 3, @@ -5386,17 +5386,17 @@ "0x3e8", "0x1", "0x0", - "0x868", + "0x856", "0x3e8", "0x0", "0x0", - "0xbd1", + "0xbaf", "0x3e8", "0x3e8" ] }, { - "pc": 2435, + "pc": 2401, "op": "SWAP1", "gas": 2073576, "gasCost": 3, @@ -5409,17 +5409,17 @@ "0x3e8", "0x1", "0x0", - "0x868", + "0x856", "0x3e8", "0x0", "0x0", "0x3e8", "0x3e8", - "0xbd1" + "0xbaf" ] }, { - "pc": 2436, + "pc": 2402, "op": "POP", "gas": 2073573, "gasCost": 2, @@ -5432,17 +5432,17 @@ "0x3e8", "0x1", "0x0", - "0x868", + "0x856", "0x3e8", "0x0", "0x0", "0x3e8", - "0xbd1", + "0xbaf", "0x3e8" ] }, { - "pc": 2437, + "pc": 2403, "op": "JUMP", "gas": 2073571, "gasCost": 8, @@ -5455,16 +5455,16 @@ "0x3e8", "0x1", "0x0", - "0x868", + "0x856", "0x3e8", "0x0", "0x0", "0x3e8", - "0xbd1" + "0xbaf" ] }, { - "pc": 3025, + "pc": 2991, "op": "JUMPDEST", "gas": 2073563, "gasCost": 1, @@ -5477,7 +5477,7 @@ "0x3e8", "0x1", "0x0", - "0x868", + "0x856", "0x3e8", "0x0", "0x0", @@ -5485,7 +5485,7 @@ ] }, { - "pc": 3026, + "pc": 2992, "op": "SWAP3", "gas": 2073562, "gasCost": 3, @@ -5498,7 +5498,7 @@ "0x3e8", "0x1", "0x0", - "0x868", + "0x856", "0x3e8", "0x0", "0x0", @@ -5506,7 +5506,7 @@ ] }, { - "pc": 3027, + "pc": 2993, "op": "POP", "gas": 2073559, "gasCost": 2, @@ -5519,7 +5519,7 @@ "0x3e8", "0x1", "0x0", - "0x868", + "0x856", "0x3e8", "0x0", "0x0", @@ -5527,7 +5527,7 @@ ] }, { - "pc": 3028, + "pc": 2994, "op": "DUP3", "gas": 2073557, "gasCost": 3, @@ -5540,15 +5540,15 @@ "0x3e8", "0x1", "0x0", - "0x868", + "0x856", "0x3e8", "0x0", "0x0" ] }, { - "pc": 3029, - "op": "PUSH32", + "pc": 2995, + "op": "DUP3", "gas": 2073554, "gasCost": 3, "depth": 1, @@ -5560,7 +5560,7 @@ "0x3e8", "0x1", "0x0", - "0x868", + "0x856", "0x3e8", "0x0", "0x0", @@ -5568,8 +5568,8 @@ ] }, { - "pc": 3062, - "op": "SUB", + "pc": 2996, + "op": "ADD", "gas": 2073551, "gasCost": 3, "depth": 1, @@ -5581,17 +5581,17 @@ "0x3e8", "0x1", "0x0", - "0x868", + "0x856", "0x3e8", "0x0", "0x0", "0x3e8", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + "0x0" ] }, { - "pc": 3063, - "op": "DUP3", + "pc": 2997, + "op": "SWAP1", "gas": 2073548, "gasCost": 3, "depth": 1, @@ -5603,18 +5603,18 @@ "0x3e8", "0x1", "0x0", - "0x868", + "0x856", "0x3e8", "0x0", "0x0", - "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc17" + "0x3e8" ] }, { - "pc": 3064, - "op": "GT", + "pc": 2998, + "op": "POP", "gas": 2073545, - "gasCost": 3, + "gasCost": 2, "depth": 1, "stack": [ "0xa0712d68", @@ -5624,18 +5624,17 @@ "0x3e8", "0x1", "0x0", - "0x868", + "0x856", "0x3e8", "0x0", - "0x0", - "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc17", + "0x3e8", "0x0" ] }, { - "pc": 3065, - "op": "ISZERO", - "gas": 2073542, + "pc": 2999, + "op": "DUP1", + "gas": 2073543, "gasCost": 3, "depth": 1, "stack": [ @@ -5646,17 +5645,16 @@ "0x3e8", "0x1", "0x0", - "0x868", + "0x856", "0x3e8", "0x0", - "0x0", - "0x0" + "0x3e8" ] }, { - "pc": 3066, - "op": "PUSH3", - "gas": 2073539, + "pc": 3000, + "op": "DUP3", + "gas": 2073540, "gasCost": 3, "depth": 1, "stack": [ @@ -5667,18 +5665,18 @@ "0x3e8", "0x1", "0x0", - "0x868", + "0x856", "0x3e8", "0x0", - "0x0", - "0x1" + "0x3e8", + "0x3e8" ] }, { - "pc": 3070, - "op": "JUMPI", - "gas": 2073536, - "gasCost": 10, + "pc": 3001, + "op": "GT", + "gas": 2073537, + "gasCost": 3, "depth": 1, "stack": [ "0xa0712d68", @@ -5688,38 +5686,18 @@ "0x3e8", "0x1", "0x0", - "0x868", - "0x3e8", - "0x0", - "0x0", - "0x1", - "0xc09" - ] - }, - { - "pc": 3081, - "op": "JUMPDEST", - "gas": 2073526, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xa0712d68", - "0x1cd", + "0x856", "0x3e8", "0x0", "0x3e8", - "0x1", - "0x0", - "0x868", "0x3e8", - "0x0", "0x0" ] }, { - "pc": 3082, - "op": "DUP3", - "gas": 2073525, + "pc": 3002, + "op": "ISZERO", + "gas": 2073534, "gasCost": 3, "depth": 1, "stack": [ @@ -5730,16 +5708,17 @@ "0x3e8", "0x1", "0x0", - "0x868", + "0x856", "0x3e8", "0x0", + "0x3e8", "0x0" ] }, { - "pc": 3083, - "op": "DUP3", - "gas": 2073522, + "pc": 3003, + "op": "PUSH3", + "gas": 2073531, "gasCost": 3, "depth": 1, "stack": [ @@ -5750,18 +5729,18 @@ "0x3e8", "0x1", "0x0", - "0x868", + "0x856", "0x3e8", "0x0", - "0x0", - "0x3e8" + "0x3e8", + "0x1" ] }, { - "pc": 3084, - "op": "ADD", - "gas": 2073519, - "gasCost": 3, + "pc": 3007, + "op": "JUMPI", + "gas": 2073528, + "gasCost": 10, "depth": 1, "stack": [ "0xa0712d68", @@ -5771,40 +5750,19 @@ "0x3e8", "0x1", "0x0", - "0x868", - "0x3e8", - "0x0", - "0x0", - "0x3e8", - "0x0" - ] - }, - { - "pc": 3085, - "op": "SWAP1", - "gas": 2073516, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa0712d68", - "0x1cd", + "0x856", "0x3e8", "0x0", "0x3e8", "0x1", - "0x0", - "0x868", - "0x3e8", - "0x0", - "0x0", - "0x3e8" + "0xbca" ] }, { - "pc": 3086, - "op": "POP", - "gas": 2073513, - "gasCost": 2, + "pc": 3018, + "op": "JUMPDEST", + "gas": 2073518, + "gasCost": 1, "depth": 1, "stack": [ "0xa0712d68", @@ -5814,17 +5772,16 @@ "0x3e8", "0x1", "0x0", - "0x868", + "0x856", "0x3e8", "0x0", - "0x3e8", - "0x0" + "0x3e8" ] }, { - "pc": 3087, + "pc": 3019, "op": "SWAP3", - "gas": 2073511, + "gas": 2073517, "gasCost": 3, "depth": 1, "stack": [ @@ -5835,16 +5792,16 @@ "0x3e8", "0x1", "0x0", - "0x868", + "0x856", "0x3e8", "0x0", "0x3e8" ] }, { - "pc": 3088, + "pc": 3020, "op": "SWAP2", - "gas": 2073508, + "gas": 2073514, "gasCost": 3, "depth": 1, "stack": [ @@ -5858,13 +5815,13 @@ "0x3e8", "0x3e8", "0x0", - "0x868" + "0x856" ] }, { - "pc": 3089, + "pc": 3021, "op": "POP", - "gas": 2073505, + "gas": 2073511, "gasCost": 2, "depth": 1, "stack": [ @@ -5876,15 +5833,15 @@ "0x1", "0x0", "0x3e8", - "0x868", + "0x856", "0x0", "0x3e8" ] }, { - "pc": 3090, + "pc": 3022, "op": "POP", - "gas": 2073503, + "gas": 2073509, "gasCost": 2, "depth": 1, "stack": [ @@ -5896,14 +5853,14 @@ "0x1", "0x0", "0x3e8", - "0x868", + "0x856", "0x0" ] }, { - "pc": 3091, + "pc": 3023, "op": "JUMP", - "gas": 2073501, + "gas": 2073507, "gasCost": 8, "depth": 1, "stack": [ @@ -5915,13 +5872,13 @@ "0x1", "0x0", "0x3e8", - "0x868" + "0x856" ] }, { - "pc": 2152, + "pc": 2134, "op": "JUMPDEST", - "gas": 2073493, + "gas": 2073499, "gasCost": 1, "depth": 1, "stack": [ @@ -5936,9 +5893,9 @@ ] }, { - "pc": 2153, + "pc": 2135, "op": "SWAP3", - "gas": 2073492, + "gas": 2073498, "gasCost": 3, "depth": 1, "stack": [ @@ -5953,9 +5910,9 @@ ] }, { - "pc": 2154, + "pc": 2136, "op": "POP", - "gas": 2073489, + "gas": 2073495, "gasCost": 2, "depth": 1, "stack": [ @@ -5970,9 +5927,9 @@ ] }, { - "pc": 2155, + "pc": 2137, "op": "POP", - "gas": 2073487, + "gas": 2073493, "gasCost": 2, "depth": 1, "stack": [ @@ -5986,9 +5943,9 @@ ] }, { - "pc": 2156, + "pc": 2138, "op": "DUP2", - "gas": 2073485, + "gas": 2073491, "gasCost": 3, "depth": 1, "stack": [ @@ -6001,9 +5958,9 @@ ] }, { - "pc": 2157, + "pc": 2139, "op": "SWAP1", - "gas": 2073482, + "gas": 2073488, "gasCost": 3, "depth": 1, "stack": [ @@ -6017,9 +5974,9 @@ ] }, { - "pc": 2158, + "pc": 2140, "op": "SSTORE", - "gas": 2073479, + "gas": 2073485, "gasCost": 20000, "depth": 1, "stack": [ @@ -6036,9 +5993,9 @@ } }, { - "pc": 2159, + "pc": 2141, "op": "POP", - "gas": 2053479, + "gas": 2053485, "gasCost": 2, "depth": 1, "stack": [ @@ -6050,9 +6007,9 @@ ] }, { - "pc": 2160, + "pc": 2142, "op": "PUSH3", - "gas": 2053477, + "gas": 2053483, "gasCost": 3, "depth": 1, "stack": [ @@ -6063,9 +6020,9 @@ ] }, { - "pc": 2164, + "pc": 2146, "op": "PUSH1", - "gas": 2053474, + "gas": 2053480, "gasCost": 3, "depth": 1, "stack": [ @@ -6073,13 +6030,13 @@ "0x1cd", "0x3e8", "0x0", - "0x888" + "0x876" ] }, { - "pc": 2166, + "pc": 2148, "op": "DUP4", - "gas": 2053471, + "gas": 2053477, "gasCost": 3, "depth": 1, "stack": [ @@ -6087,14 +6044,14 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x1" ] }, { - "pc": 2167, + "pc": 2149, "op": "PUSH3", - "gas": 2053468, + "gas": 2053474, "gasCost": 3, "depth": 1, "stack": [ @@ -6102,15 +6059,15 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x1", "0x3e8" ] }, { - "pc": 2171, + "pc": 2153, "op": "SWAP2", - "gas": 2053465, + "gas": 2053471, "gasCost": 3, "depth": 1, "stack": [ @@ -6118,16 +6075,16 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x1", "0x3e8", - "0x882" + "0x870" ] }, { - "pc": 2172, + "pc": 2154, "op": "SWAP1", - "gas": 2053462, + "gas": 2053468, "gasCost": 3, "depth": 1, "stack": [ @@ -6135,16 +6092,16 @@ "0x1cd", "0x3e8", "0x0", - "0x888", - "0x882", + "0x876", + "0x870", "0x3e8", "0x1" ] }, { - "pc": 2173, + "pc": 2155, "op": "PUSH3", - "gas": 2053459, + "gas": 2053465, "gasCost": 3, "depth": 1, "stack": [ @@ -6152,16 +6109,16 @@ "0x1cd", "0x3e8", "0x0", - "0x888", - "0x882", + "0x876", + "0x870", "0x1", "0x3e8" ] }, { - "pc": 2177, + "pc": 2159, "op": "JUMP", - "gas": 2053456, + "gas": 2053462, "gasCost": 8, "depth": 1, "stack": [ @@ -6169,17 +6126,17 @@ "0x1cd", "0x3e8", "0x0", - "0x888", - "0x882", + "0x876", + "0x870", "0x1", "0x3e8", - "0xbb7" + "0xb95" ] }, { - "pc": 2999, + "pc": 2965, "op": "JUMPDEST", - "gas": 2053448, + "gas": 2053454, "gasCost": 1, "depth": 1, "stack": [ @@ -6187,16 +6144,16 @@ "0x1cd", "0x3e8", "0x0", - "0x888", - "0x882", + "0x876", + "0x870", "0x1", "0x3e8" ] }, { - "pc": 3000, + "pc": 2966, "op": "PUSH1", - "gas": 2053447, + "gas": 2053453, "gasCost": 3, "depth": 1, "stack": [ @@ -6204,16 +6161,16 @@ "0x1cd", "0x3e8", "0x0", - "0x888", - "0x882", + "0x876", + "0x870", "0x1", "0x3e8" ] }, { - "pc": 3002, + "pc": 2968, "op": "PUSH3", - "gas": 2053444, + "gas": 2053450, "gasCost": 3, "depth": 1, "stack": [ @@ -6221,17 +6178,17 @@ "0x1cd", "0x3e8", "0x0", - "0x888", - "0x882", + "0x876", + "0x870", "0x1", "0x3e8", "0x0" ] }, { - "pc": 3006, + "pc": 2972, "op": "DUP3", - "gas": 2053441, + "gas": 2053447, "gasCost": 3, "depth": 1, "stack": [ @@ -6239,18 +6196,18 @@ "0x1cd", "0x3e8", "0x0", - "0x888", - "0x882", + "0x876", + "0x870", "0x1", "0x3e8", "0x0", - "0xbc4" + "0xba2" ] }, { - "pc": 3007, + "pc": 2973, "op": "PUSH3", - "gas": 2053438, + "gas": 2053444, "gasCost": 3, "depth": 1, "stack": [ @@ -6258,19 +6215,19 @@ "0x1cd", "0x3e8", "0x0", - "0x888", - "0x882", + "0x876", + "0x870", "0x1", "0x3e8", "0x0", - "0xbc4", + "0xba2", "0x3e8" ] }, { - "pc": 3011, + "pc": 2977, "op": "JUMP", - "gas": 2053435, + "gas": 2053441, "gasCost": 8, "depth": 1, "stack": [ @@ -6278,20 +6235,20 @@ "0x1cd", "0x3e8", "0x0", - "0x888", - "0x882", + "0x876", + "0x870", "0x1", "0x3e8", "0x0", - "0xbc4", + "0xba2", "0x3e8", - "0x97c" + "0x95a" ] }, { - "pc": 2428, + "pc": 2394, "op": "JUMPDEST", - "gas": 2053427, + "gas": 2053433, "gasCost": 1, "depth": 1, "stack": [ @@ -6299,19 +6256,19 @@ "0x1cd", "0x3e8", "0x0", - "0x888", - "0x882", + "0x876", + "0x870", "0x1", "0x3e8", "0x0", - "0xbc4", + "0xba2", "0x3e8" ] }, { - "pc": 2429, + "pc": 2395, "op": "PUSH1", - "gas": 2053426, + "gas": 2053432, "gasCost": 3, "depth": 1, "stack": [ @@ -6319,19 +6276,19 @@ "0x1cd", "0x3e8", "0x0", - "0x888", - "0x882", + "0x876", + "0x870", "0x1", "0x3e8", "0x0", - "0xbc4", + "0xba2", "0x3e8" ] }, { - "pc": 2431, + "pc": 2397, "op": "DUP2", - "gas": 2053423, + "gas": 2053429, "gasCost": 3, "depth": 1, "stack": [ @@ -6339,20 +6296,20 @@ "0x1cd", "0x3e8", "0x0", - "0x888", - "0x882", + "0x876", + "0x870", "0x1", "0x3e8", "0x0", - "0xbc4", + "0xba2", "0x3e8", "0x0" ] }, { - "pc": 2432, + "pc": 2398, "op": "SWAP1", - "gas": 2053420, + "gas": 2053426, "gasCost": 3, "depth": 1, "stack": [ @@ -6360,21 +6317,21 @@ "0x1cd", "0x3e8", "0x0", - "0x888", - "0x882", + "0x876", + "0x870", "0x1", "0x3e8", "0x0", - "0xbc4", + "0xba2", "0x3e8", "0x0", "0x3e8" ] }, { - "pc": 2433, + "pc": 2399, "op": "POP", - "gas": 2053417, + "gas": 2053423, "gasCost": 2, "depth": 1, "stack": [ @@ -6382,21 +6339,21 @@ "0x1cd", "0x3e8", "0x0", - "0x888", - "0x882", + "0x876", + "0x870", "0x1", "0x3e8", "0x0", - "0xbc4", + "0xba2", "0x3e8", "0x3e8", "0x0" ] }, { - "pc": 2434, + "pc": 2400, "op": "SWAP2", - "gas": 2053415, + "gas": 2053421, "gasCost": 3, "depth": 1, "stack": [ @@ -6404,20 +6361,20 @@ "0x1cd", "0x3e8", "0x0", - "0x888", - "0x882", + "0x876", + "0x870", "0x1", "0x3e8", "0x0", - "0xbc4", + "0xba2", "0x3e8", "0x3e8" ] }, { - "pc": 2435, + "pc": 2401, "op": "SWAP1", - "gas": 2053412, + "gas": 2053418, "gasCost": 3, "depth": 1, "stack": [ @@ -6425,20 +6382,20 @@ "0x1cd", "0x3e8", "0x0", - "0x888", - "0x882", + "0x876", + "0x870", "0x1", "0x3e8", "0x0", "0x3e8", "0x3e8", - "0xbc4" + "0xba2" ] }, { - "pc": 2436, + "pc": 2402, "op": "POP", - "gas": 2053409, + "gas": 2053415, "gasCost": 2, "depth": 1, "stack": [ @@ -6446,20 +6403,20 @@ "0x1cd", "0x3e8", "0x0", - "0x888", - "0x882", + "0x876", + "0x870", "0x1", "0x3e8", "0x0", "0x3e8", - "0xbc4", + "0xba2", "0x3e8" ] }, { - "pc": 2437, + "pc": 2403, "op": "JUMP", - "gas": 2053407, + "gas": 2053413, "gasCost": 8, "depth": 1, "stack": [ @@ -6467,19 +6424,19 @@ "0x1cd", "0x3e8", "0x0", - "0x888", - "0x882", + "0x876", + "0x870", "0x1", "0x3e8", "0x0", "0x3e8", - "0xbc4" + "0xba2" ] }, { - "pc": 3012, + "pc": 2978, "op": "JUMPDEST", - "gas": 2053399, + "gas": 2053405, "gasCost": 1, "depth": 1, "stack": [ @@ -6487,8 +6444,8 @@ "0x1cd", "0x3e8", "0x0", - "0x888", - "0x882", + "0x876", + "0x870", "0x1", "0x3e8", "0x0", @@ -6496,9 +6453,9 @@ ] }, { - "pc": 3013, + "pc": 2979, "op": "SWAP2", - "gas": 2053398, + "gas": 2053404, "gasCost": 3, "depth": 1, "stack": [ @@ -6506,8 +6463,8 @@ "0x1cd", "0x3e8", "0x0", - "0x888", - "0x882", + "0x876", + "0x870", "0x1", "0x3e8", "0x0", @@ -6515,9 +6472,9 @@ ] }, { - "pc": 3014, + "pc": 2980, "op": "POP", - "gas": 2053395, + "gas": 2053401, "gasCost": 2, "depth": 1, "stack": [ @@ -6525,8 +6482,8 @@ "0x1cd", "0x3e8", "0x0", - "0x888", - "0x882", + "0x876", + "0x870", "0x1", "0x3e8", "0x0", @@ -6534,9 +6491,9 @@ ] }, { - "pc": 3015, + "pc": 2981, "op": "PUSH3", - "gas": 2053393, + "gas": 2053399, "gasCost": 3, "depth": 1, "stack": [ @@ -6544,17 +6501,17 @@ "0x1cd", "0x3e8", "0x0", - "0x888", - "0x882", + "0x876", + "0x870", "0x1", "0x3e8", "0x0" ] }, { - "pc": 3019, + "pc": 2985, "op": "DUP4", - "gas": 2053390, + "gas": 2053396, "gasCost": 3, "depth": 1, "stack": [ @@ -6562,18 +6519,18 @@ "0x1cd", "0x3e8", "0x0", - "0x888", - "0x882", + "0x876", + "0x870", "0x1", "0x3e8", "0x0", - "0xbd1" + "0xbaf" ] }, { - "pc": 3020, + "pc": 2986, "op": "PUSH3", - "gas": 2053387, + "gas": 2053393, "gasCost": 3, "depth": 1, "stack": [ @@ -6581,19 +6538,19 @@ "0x1cd", "0x3e8", "0x0", - "0x888", - "0x882", + "0x876", + "0x870", "0x1", "0x3e8", "0x0", - "0xbd1", + "0xbaf", "0x1" ] }, { - "pc": 3024, + "pc": 2990, "op": "JUMP", - "gas": 2053384, + "gas": 2053390, "gasCost": 8, "depth": 1, "stack": [ @@ -6601,20 +6558,20 @@ "0x1cd", "0x3e8", "0x0", - "0x888", - "0x882", + "0x876", + "0x870", "0x1", "0x3e8", "0x0", - "0xbd1", + "0xbaf", "0x1", - "0x97c" + "0x95a" ] }, { - "pc": 2428, + "pc": 2394, "op": "JUMPDEST", - "gas": 2053376, + "gas": 2053382, "gasCost": 1, "depth": 1, "stack": [ @@ -6622,19 +6579,19 @@ "0x1cd", "0x3e8", "0x0", - "0x888", - "0x882", + "0x876", + "0x870", "0x1", "0x3e8", "0x0", - "0xbd1", + "0xbaf", "0x1" ] }, { - "pc": 2429, + "pc": 2395, "op": "PUSH1", - "gas": 2053375, + "gas": 2053381, "gasCost": 3, "depth": 1, "stack": [ @@ -6642,19 +6599,19 @@ "0x1cd", "0x3e8", "0x0", - "0x888", - "0x882", + "0x876", + "0x870", "0x1", "0x3e8", "0x0", - "0xbd1", + "0xbaf", "0x1" ] }, { - "pc": 2431, + "pc": 2397, "op": "DUP2", - "gas": 2053372, + "gas": 2053378, "gasCost": 3, "depth": 1, "stack": [ @@ -6662,20 +6619,20 @@ "0x1cd", "0x3e8", "0x0", - "0x888", - "0x882", + "0x876", + "0x870", "0x1", "0x3e8", "0x0", - "0xbd1", + "0xbaf", "0x1", "0x0" ] }, { - "pc": 2432, + "pc": 2398, "op": "SWAP1", - "gas": 2053369, + "gas": 2053375, "gasCost": 3, "depth": 1, "stack": [ @@ -6683,21 +6640,21 @@ "0x1cd", "0x3e8", "0x0", - "0x888", - "0x882", + "0x876", + "0x870", "0x1", "0x3e8", "0x0", - "0xbd1", + "0xbaf", "0x1", "0x0", "0x1" ] }, { - "pc": 2433, + "pc": 2399, "op": "POP", - "gas": 2053366, + "gas": 2053372, "gasCost": 2, "depth": 1, "stack": [ @@ -6705,21 +6662,21 @@ "0x1cd", "0x3e8", "0x0", - "0x888", - "0x882", + "0x876", + "0x870", "0x1", "0x3e8", "0x0", - "0xbd1", + "0xbaf", "0x1", "0x1", "0x0" ] }, { - "pc": 2434, + "pc": 2400, "op": "SWAP2", - "gas": 2053364, + "gas": 2053370, "gasCost": 3, "depth": 1, "stack": [ @@ -6727,20 +6684,20 @@ "0x1cd", "0x3e8", "0x0", - "0x888", - "0x882", + "0x876", + "0x870", "0x1", "0x3e8", "0x0", - "0xbd1", + "0xbaf", "0x1", "0x1" ] }, { - "pc": 2435, + "pc": 2401, "op": "SWAP1", - "gas": 2053361, + "gas": 2053367, "gasCost": 3, "depth": 1, "stack": [ @@ -6748,20 +6705,20 @@ "0x1cd", "0x3e8", "0x0", - "0x888", - "0x882", + "0x876", + "0x870", "0x1", "0x3e8", "0x0", "0x1", "0x1", - "0xbd1" + "0xbaf" ] }, { - "pc": 2436, + "pc": 2402, "op": "POP", - "gas": 2053358, + "gas": 2053364, "gasCost": 2, "depth": 1, "stack": [ @@ -6769,20 +6726,20 @@ "0x1cd", "0x3e8", "0x0", - "0x888", - "0x882", + "0x876", + "0x870", "0x1", "0x3e8", "0x0", "0x1", - "0xbd1", + "0xbaf", "0x1" ] }, { - "pc": 2437, + "pc": 2403, "op": "JUMP", - "gas": 2053356, + "gas": 2053362, "gasCost": 8, "depth": 1, "stack": [ @@ -6790,19 +6747,19 @@ "0x1cd", "0x3e8", "0x0", - "0x888", - "0x882", + "0x876", + "0x870", "0x1", "0x3e8", "0x0", "0x1", - "0xbd1" + "0xbaf" ] }, { - "pc": 3025, + "pc": 2991, "op": "JUMPDEST", - "gas": 2053348, + "gas": 2053354, "gasCost": 1, "depth": 1, "stack": [ @@ -6810,8 +6767,8 @@ "0x1cd", "0x3e8", "0x0", - "0x888", - "0x882", + "0x876", + "0x870", "0x1", "0x3e8", "0x0", @@ -6819,9 +6776,9 @@ ] }, { - "pc": 3026, + "pc": 2992, "op": "SWAP3", - "gas": 2053347, + "gas": 2053353, "gasCost": 3, "depth": 1, "stack": [ @@ -6829,8 +6786,8 @@ "0x1cd", "0x3e8", "0x0", - "0x888", - "0x882", + "0x876", + "0x870", "0x1", "0x3e8", "0x0", @@ -6838,9 +6795,9 @@ ] }, { - "pc": 3027, + "pc": 2993, "op": "POP", - "gas": 2053344, + "gas": 2053350, "gasCost": 2, "depth": 1, "stack": [ @@ -6848,8 +6805,8 @@ "0x1cd", "0x3e8", "0x0", - "0x888", - "0x882", + "0x876", + "0x870", "0x1", "0x3e8", "0x0", @@ -6857,9 +6814,9 @@ ] }, { - "pc": 3028, + "pc": 2994, "op": "DUP3", - "gas": 2053342, + "gas": 2053348, "gasCost": 3, "depth": 1, "stack": [ @@ -6867,17 +6824,17 @@ "0x1cd", "0x3e8", "0x0", - "0x888", - "0x882", + "0x876", + "0x870", "0x1", "0x3e8", "0x0" ] }, { - "pc": 3029, - "op": "PUSH32", - "gas": 2053339, + "pc": 2995, + "op": "DUP3", + "gas": 2053345, "gasCost": 3, "depth": 1, "stack": [ @@ -6885,8 +6842,8 @@ "0x1cd", "0x3e8", "0x0", - "0x888", - "0x882", + "0x876", + "0x870", "0x1", "0x3e8", "0x0", @@ -6894,9 +6851,9 @@ ] }, { - "pc": 3062, - "op": "SUB", - "gas": 2053336, + "pc": 2996, + "op": "ADD", + "gas": 2053342, "gasCost": 3, "depth": 1, "stack": [ @@ -6904,38 +6861,19 @@ "0x1cd", "0x3e8", "0x0", - "0x888", - "0x882", + "0x876", + "0x870", "0x1", "0x3e8", "0x0", "0x1", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" - ] - }, - { - "pc": 3063, - "op": "DUP3", - "gas": 2053333, - "gasCost": 3, - "depth": 1, - "stack": [ - "0xa0712d68", - "0x1cd", - "0x3e8", - "0x0", - "0x888", - "0x882", - "0x1", - "0x3e8", - "0x0", - "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe" + "0x3e8" ] }, { - "pc": 3064, - "op": "GT", - "gas": 2053330, + "pc": 2997, + "op": "SWAP1", + "gas": 2053339, "gasCost": 3, "depth": 1, "stack": [ @@ -6943,38 +6881,37 @@ "0x1cd", "0x3e8", "0x0", - "0x888", - "0x882", + "0x876", + "0x870", "0x1", "0x3e8", "0x0", - "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe", - "0x3e8" + "0x3e9" ] }, { - "pc": 3065, - "op": "ISZERO", - "gas": 2053327, - "gasCost": 3, + "pc": 2998, + "op": "POP", + "gas": 2053336, + "gasCost": 2, "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x888", - "0x882", + "0x876", + "0x870", "0x1", "0x3e8", - "0x0", + "0x3e9", "0x0" ] }, { - "pc": 3066, - "op": "PUSH3", - "gas": 2053324, + "pc": 2999, + "op": "DUP1", + "gas": 2053334, "gasCost": 3, "depth": 1, "stack": [ @@ -6982,56 +6919,56 @@ "0x1cd", "0x3e8", "0x0", - "0x888", - "0x882", + "0x876", + "0x870", "0x1", "0x3e8", - "0x0", - "0x1" + "0x3e9" ] }, { - "pc": 3070, - "op": "JUMPI", - "gas": 2053321, - "gasCost": 10, + "pc": 3000, + "op": "DUP3", + "gas": 2053331, + "gasCost": 3, "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x888", - "0x882", + "0x876", + "0x870", "0x1", "0x3e8", - "0x0", - "0x1", - "0xc09" + "0x3e9", + "0x3e9" ] }, { - "pc": 3081, - "op": "JUMPDEST", - "gas": 2053311, - "gasCost": 1, + "pc": 3001, + "op": "GT", + "gas": 2053328, + "gasCost": 3, "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x888", - "0x882", + "0x876", + "0x870", "0x1", "0x3e8", - "0x0" + "0x3e9", + "0x3e9", + "0x3e8" ] }, { - "pc": 3082, - "op": "DUP3", - "gas": 2053310, + "pc": 3002, + "op": "ISZERO", + "gas": 2053325, "gasCost": 3, "depth": 1, "stack": [ @@ -7039,17 +6976,18 @@ "0x1cd", "0x3e8", "0x0", - "0x888", - "0x882", + "0x876", + "0x870", "0x1", "0x3e8", + "0x3e9", "0x0" ] }, { - "pc": 3083, - "op": "DUP3", - "gas": 2053307, + "pc": 3003, + "op": "PUSH3", + "gas": 2053322, "gasCost": 3, "depth": 1, "stack": [ @@ -7057,76 +6995,56 @@ "0x1cd", "0x3e8", "0x0", - "0x888", - "0x882", + "0x876", + "0x870", "0x1", "0x3e8", - "0x0", + "0x3e9", "0x1" ] }, { - "pc": 3084, - "op": "ADD", - "gas": 2053304, - "gasCost": 3, + "pc": 3007, + "op": "JUMPI", + "gas": 2053319, + "gasCost": 10, "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x888", - "0x882", + "0x876", + "0x870", "0x1", "0x3e8", - "0x0", + "0x3e9", "0x1", - "0x3e8" + "0xbca" ] }, { - "pc": 3085, - "op": "SWAP1", - "gas": 2053301, - "gasCost": 3, + "pc": 3018, + "op": "JUMPDEST", + "gas": 2053309, + "gasCost": 1, "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x888", - "0x882", + "0x876", + "0x870", "0x1", "0x3e8", - "0x0", "0x3e9" ] }, { - "pc": 3086, - "op": "POP", - "gas": 2053298, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa0712d68", - "0x1cd", - "0x3e8", - "0x0", - "0x888", - "0x882", - "0x1", - "0x3e8", - "0x3e9", - "0x0" - ] - }, - { - "pc": 3087, + "pc": 3019, "op": "SWAP3", - "gas": 2053296, + "gas": 2053308, "gasCost": 3, "depth": 1, "stack": [ @@ -7134,17 +7052,17 @@ "0x1cd", "0x3e8", "0x0", - "0x888", - "0x882", + "0x876", + "0x870", "0x1", "0x3e8", "0x3e9" ] }, { - "pc": 3088, + "pc": 3020, "op": "SWAP2", - "gas": 2053293, + "gas": 2053305, "gasCost": 3, "depth": 1, "stack": [ @@ -7152,17 +7070,17 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x1", "0x3e8", - "0x882" + "0x870" ] }, { - "pc": 3089, + "pc": 3021, "op": "POP", - "gas": 2053290, + "gas": 2053302, "gasCost": 2, "depth": 1, "stack": [ @@ -7170,17 +7088,17 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", - "0x882", + "0x870", "0x3e8", "0x1" ] }, { - "pc": 3090, + "pc": 3022, "op": "POP", - "gas": 2053288, + "gas": 2053300, "gasCost": 2, "depth": 1, "stack": [ @@ -7188,16 +7106,16 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", - "0x882", + "0x870", "0x3e8" ] }, { - "pc": 3091, + "pc": 3023, "op": "JUMP", - "gas": 2053286, + "gas": 2053298, "gasCost": 8, "depth": 1, "stack": [ @@ -7205,15 +7123,15 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", - "0x882" + "0x870" ] }, { - "pc": 2178, + "pc": 2160, "op": "JUMPDEST", - "gas": 2053278, + "gas": 2053290, "gasCost": 1, "depth": 1, "stack": [ @@ -7221,14 +7139,14 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9" ] }, { - "pc": 2179, + "pc": 2161, "op": "PUSH3", - "gas": 2053277, + "gas": 2053289, "gasCost": 3, "depth": 1, "stack": [ @@ -7236,14 +7154,14 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9" ] }, { - "pc": 2183, + "pc": 2165, "op": "JUMP", - "gas": 2053274, + "gas": 2053286, "gasCost": 8, "depth": 1, "stack": [ @@ -7251,7 +7169,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x280" ] @@ -7259,7 +7177,7 @@ { "pc": 640, "op": "JUMPDEST", - "gas": 2053266, + "gas": 2053278, "gasCost": 1, "depth": 1, "stack": [ @@ -7267,14 +7185,14 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9" ] }, { "pc": 641, "op": "PUSH1", - "gas": 2053265, + "gas": 2053277, "gasCost": 3, "depth": 1, "stack": [ @@ -7282,14 +7200,14 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9" ] }, { "pc": 643, "op": "CALLER", - "gas": 2053262, + "gas": 2053274, "gasCost": 2, "depth": 1, "stack": [ @@ -7297,7 +7215,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0" ] @@ -7305,7 +7223,7 @@ { "pc": 644, "op": "PUSH20", - "gas": 2053260, + "gas": 2053272, "gasCost": 3, "depth": 1, "stack": [ @@ -7313,7 +7231,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address" @@ -7322,7 +7240,7 @@ { "pc": 665, "op": "AND", - "gas": 2053257, + "gas": 2053269, "gasCost": 3, "depth": 1, "stack": [ @@ -7330,7 +7248,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -7340,7 +7258,7 @@ { "pc": 666, "op": "PUSH32", - "gas": 2053254, + "gas": 2053266, "gasCost": 3, "depth": 1, "stack": [ @@ -7348,7 +7266,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address" @@ -7357,7 +7275,7 @@ { "pc": 699, "op": "DUP4", - "gas": 2053251, + "gas": 2053263, "gasCost": 3, "depth": 1, "stack": [ @@ -7365,7 +7283,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -7375,7 +7293,7 @@ { "pc": 700, "op": "PUSH1", - "gas": 2053248, + "gas": 2053260, "gasCost": 3, "depth": 1, "stack": [ @@ -7383,7 +7301,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -7394,7 +7312,7 @@ { "pc": 702, "op": "MLOAD", - "gas": 2053245, + "gas": 2053257, "gasCost": 3, "depth": 1, "stack": [ @@ -7402,7 +7320,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -7414,7 +7332,7 @@ { "pc": 703, "op": "PUSH3", - "gas": 2053242, + "gas": 2053254, "gasCost": 3, "depth": 1, "stack": [ @@ -7422,7 +7340,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -7434,7 +7352,7 @@ { "pc": 707, "op": "SWAP2", - "gas": 2053239, + "gas": 2053251, "gasCost": 3, "depth": 1, "stack": [ @@ -7442,7 +7360,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -7455,7 +7373,7 @@ { "pc": 708, "op": "SWAP1", - "gas": 2053236, + "gas": 2053248, "gasCost": 3, "depth": 1, "stack": [ @@ -7463,7 +7381,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -7476,7 +7394,7 @@ { "pc": 709, "op": "PUSH3", - "gas": 2053233, + "gas": 2053245, "gasCost": 3, "depth": 1, "stack": [ @@ -7484,7 +7402,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -7497,7 +7415,7 @@ { "pc": 713, "op": "JUMP", - "gas": 2053230, + "gas": 2053242, "gasCost": 8, "depth": 1, "stack": [ @@ -7505,7 +7423,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -7513,13 +7431,13 @@ "0x2ca", "0x3e9", "0x80", - "0xb56" + "0xb34" ] }, { - "pc": 2902, + "pc": 2868, "op": "JUMPDEST", - "gas": 2053222, + "gas": 2053234, "gasCost": 1, "depth": 1, "stack": [ @@ -7527,7 +7445,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -7538,9 +7456,9 @@ ] }, { - "pc": 2903, + "pc": 2869, "op": "PUSH1", - "gas": 2053221, + "gas": 2053233, "gasCost": 3, "depth": 1, "stack": [ @@ -7548,7 +7466,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -7559,9 +7477,9 @@ ] }, { - "pc": 2905, + "pc": 2871, "op": "PUSH1", - "gas": 2053218, + "gas": 2053230, "gasCost": 3, "depth": 1, "stack": [ @@ -7569,7 +7487,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -7581,9 +7499,9 @@ ] }, { - "pc": 2907, + "pc": 2873, "op": "DUP3", - "gas": 2053215, + "gas": 2053227, "gasCost": 3, "depth": 1, "stack": [ @@ -7591,7 +7509,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -7604,9 +7522,9 @@ ] }, { - "pc": 2908, + "pc": 2874, "op": "ADD", - "gas": 2053212, + "gas": 2053224, "gasCost": 3, "depth": 1, "stack": [ @@ -7614,7 +7532,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -7628,9 +7546,9 @@ ] }, { - "pc": 2909, + "pc": 2875, "op": "SWAP1", - "gas": 2053209, + "gas": 2053221, "gasCost": 3, "depth": 1, "stack": [ @@ -7638,7 +7556,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -7651,9 +7569,9 @@ ] }, { - "pc": 2910, + "pc": 2876, "op": "POP", - "gas": 2053206, + "gas": 2053218, "gasCost": 2, "depth": 1, "stack": [ @@ -7661,7 +7579,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -7674,9 +7592,9 @@ ] }, { - "pc": 2911, + "pc": 2877, "op": "PUSH3", - "gas": 2053204, + "gas": 2053216, "gasCost": 3, "depth": 1, "stack": [ @@ -7684,7 +7602,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -7696,9 +7614,9 @@ ] }, { - "pc": 2915, + "pc": 2881, "op": "PUSH1", - "gas": 2053201, + "gas": 2053213, "gasCost": 3, "depth": 1, "stack": [ @@ -7706,7 +7624,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -7715,13 +7633,13 @@ "0x3e9", "0x80", "0xc0", - "0xb6d" + "0xb4b" ] }, { - "pc": 2917, + "pc": 2883, "op": "DUP4", - "gas": 2053198, + "gas": 2053210, "gasCost": 3, "depth": 1, "stack": [ @@ -7729,7 +7647,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -7738,14 +7656,14 @@ "0x3e9", "0x80", "0xc0", - "0xb6d", + "0xb4b", "0x0" ] }, { - "pc": 2918, + "pc": 2884, "op": "ADD", - "gas": 2053195, + "gas": 2053207, "gasCost": 3, "depth": 1, "stack": [ @@ -7753,7 +7671,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -7762,15 +7680,15 @@ "0x3e9", "0x80", "0xc0", - "0xb6d", + "0xb4b", "0x0", "0x80" ] }, { - "pc": 2919, + "pc": 2885, "op": "DUP5", - "gas": 2053192, + "gas": 2053204, "gasCost": 3, "depth": 1, "stack": [ @@ -7778,7 +7696,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -7787,14 +7705,14 @@ "0x3e9", "0x80", "0xc0", - "0xb6d", + "0xb4b", "0x80" ] }, { - "pc": 2920, + "pc": 2886, "op": "PUSH3", - "gas": 2053189, + "gas": 2053201, "gasCost": 3, "depth": 1, "stack": [ @@ -7802,7 +7720,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -7811,15 +7729,15 @@ "0x3e9", "0x80", "0xc0", - "0xb6d", + "0xb4b", "0x80", "0x3e9" ] }, { - "pc": 2924, + "pc": 2890, "op": "JUMP", - "gas": 2053186, + "gas": 2053198, "gasCost": 8, "depth": 1, "stack": [ @@ -7827,7 +7745,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -7836,16 +7754,16 @@ "0x3e9", "0x80", "0xc0", - "0xb6d", + "0xb4b", "0x80", "0x3e9", - "0x986" + "0x964" ] }, { - "pc": 2438, + "pc": 2404, "op": "JUMPDEST", - "gas": 2053178, + "gas": 2053190, "gasCost": 1, "depth": 1, "stack": [ @@ -7853,7 +7771,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -7862,15 +7780,15 @@ "0x3e9", "0x80", "0xc0", - "0xb6d", + "0xb4b", "0x80", "0x3e9" ] }, { - "pc": 2439, + "pc": 2405, "op": "PUSH3", - "gas": 2053177, + "gas": 2053189, "gasCost": 3, "depth": 1, "stack": [ @@ -7878,7 +7796,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -7887,15 +7805,15 @@ "0x3e9", "0x80", "0xc0", - "0xb6d", + "0xb4b", "0x80", "0x3e9" ] }, { - "pc": 2443, + "pc": 2409, "op": "DUP2", - "gas": 2053174, + "gas": 2053186, "gasCost": 3, "depth": 1, "stack": [ @@ -7903,7 +7821,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -7912,16 +7830,16 @@ "0x3e9", "0x80", "0xc0", - "0xb6d", + "0xb4b", "0x80", "0x3e9", - "0x991" + "0x96f" ] }, { - "pc": 2444, + "pc": 2410, "op": "PUSH3", - "gas": 2053171, + "gas": 2053183, "gasCost": 3, "depth": 1, "stack": [ @@ -7929,7 +7847,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -7938,17 +7856,17 @@ "0x3e9", "0x80", "0xc0", - "0xb6d", + "0xb4b", "0x80", "0x3e9", - "0x991", + "0x96f", "0x3e9" ] }, { - "pc": 2448, + "pc": 2414, "op": "JUMP", - "gas": 2053168, + "gas": 2053180, "gasCost": 8, "depth": 1, "stack": [ @@ -7956,7 +7874,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -7965,18 +7883,18 @@ "0x3e9", "0x80", "0xc0", - "0xb6d", + "0xb4b", "0x80", "0x3e9", - "0x991", + "0x96f", "0x3e9", - "0x97c" + "0x95a" ] }, { - "pc": 2428, + "pc": 2394, "op": "JUMPDEST", - "gas": 2053160, + "gas": 2053172, "gasCost": 1, "depth": 1, "stack": [ @@ -7984,7 +7902,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -7993,17 +7911,17 @@ "0x3e9", "0x80", "0xc0", - "0xb6d", + "0xb4b", "0x80", "0x3e9", - "0x991", + "0x96f", "0x3e9" ] }, { - "pc": 2429, + "pc": 2395, "op": "PUSH1", - "gas": 2053159, + "gas": 2053171, "gasCost": 3, "depth": 1, "stack": [ @@ -8011,7 +7929,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -8020,17 +7938,17 @@ "0x3e9", "0x80", "0xc0", - "0xb6d", + "0xb4b", "0x80", "0x3e9", - "0x991", + "0x96f", "0x3e9" ] }, { - "pc": 2431, + "pc": 2397, "op": "DUP2", - "gas": 2053156, + "gas": 2053168, "gasCost": 3, "depth": 1, "stack": [ @@ -8038,7 +7956,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -8047,18 +7965,18 @@ "0x3e9", "0x80", "0xc0", - "0xb6d", + "0xb4b", "0x80", "0x3e9", - "0x991", + "0x96f", "0x3e9", "0x0" ] }, { - "pc": 2432, + "pc": 2398, "op": "SWAP1", - "gas": 2053153, + "gas": 2053165, "gasCost": 3, "depth": 1, "stack": [ @@ -8066,7 +7984,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -8075,19 +7993,19 @@ "0x3e9", "0x80", "0xc0", - "0xb6d", + "0xb4b", "0x80", "0x3e9", - "0x991", + "0x96f", "0x3e9", "0x0", "0x3e9" ] }, { - "pc": 2433, + "pc": 2399, "op": "POP", - "gas": 2053150, + "gas": 2053162, "gasCost": 2, "depth": 1, "stack": [ @@ -8095,7 +8013,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -8104,19 +8022,19 @@ "0x3e9", "0x80", "0xc0", - "0xb6d", + "0xb4b", "0x80", "0x3e9", - "0x991", + "0x96f", "0x3e9", "0x3e9", "0x0" ] }, { - "pc": 2434, + "pc": 2400, "op": "SWAP2", - "gas": 2053148, + "gas": 2053160, "gasCost": 3, "depth": 1, "stack": [ @@ -8124,7 +8042,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -8133,18 +8051,18 @@ "0x3e9", "0x80", "0xc0", - "0xb6d", + "0xb4b", "0x80", "0x3e9", - "0x991", + "0x96f", "0x3e9", "0x3e9" ] }, { - "pc": 2435, + "pc": 2401, "op": "SWAP1", - "gas": 2053145, + "gas": 2053157, "gasCost": 3, "depth": 1, "stack": [ @@ -8152,7 +8070,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -8161,18 +8079,18 @@ "0x3e9", "0x80", "0xc0", - "0xb6d", + "0xb4b", "0x80", "0x3e9", "0x3e9", "0x3e9", - "0x991" + "0x96f" ] }, { - "pc": 2436, + "pc": 2402, "op": "POP", - "gas": 2053142, + "gas": 2053154, "gasCost": 2, "depth": 1, "stack": [ @@ -8180,7 +8098,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -8189,18 +8107,18 @@ "0x3e9", "0x80", "0xc0", - "0xb6d", + "0xb4b", "0x80", "0x3e9", "0x3e9", - "0x991", + "0x96f", "0x3e9" ] }, { - "pc": 2437, + "pc": 2403, "op": "JUMP", - "gas": 2053140, + "gas": 2053152, "gasCost": 8, "depth": 1, "stack": [ @@ -8208,7 +8126,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -8217,17 +8135,17 @@ "0x3e9", "0x80", "0xc0", - "0xb6d", + "0xb4b", "0x80", "0x3e9", "0x3e9", - "0x991" + "0x96f" ] }, { - "pc": 2449, + "pc": 2415, "op": "JUMPDEST", - "gas": 2053132, + "gas": 2053144, "gasCost": 1, "depth": 1, "stack": [ @@ -8235,7 +8153,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -8244,16 +8162,16 @@ "0x3e9", "0x80", "0xc0", - "0xb6d", + "0xb4b", "0x80", "0x3e9", "0x3e9" ] }, { - "pc": 2450, + "pc": 2416, "op": "DUP3", - "gas": 2053131, + "gas": 2053143, "gasCost": 3, "depth": 1, "stack": [ @@ -8261,7 +8179,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -8270,16 +8188,16 @@ "0x3e9", "0x80", "0xc0", - "0xb6d", + "0xb4b", "0x80", "0x3e9", "0x3e9" ] }, { - "pc": 2451, + "pc": 2417, "op": "MSTORE", - "gas": 2053128, + "gas": 2053140, "gasCost": 3, "depth": 1, "stack": [ @@ -8287,7 +8205,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -8296,7 +8214,7 @@ "0x3e9", "0x80", "0xc0", - "0xb6d", + "0xb4b", "0x80", "0x3e9", "0x3e9", @@ -8304,9 +8222,9 @@ ] }, { - "pc": 2452, + "pc": 2418, "op": "POP", - "gas": 2053125, + "gas": 2053137, "gasCost": 2, "depth": 1, "stack": [ @@ -8314,7 +8232,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -8323,15 +8241,15 @@ "0x3e9", "0x80", "0xc0", - "0xb6d", + "0xb4b", "0x80", "0x3e9" ] }, { - "pc": 2453, + "pc": 2419, "op": "POP", - "gas": 2053123, + "gas": 2053135, "gasCost": 2, "depth": 1, "stack": [ @@ -8339,7 +8257,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -8348,14 +8266,14 @@ "0x3e9", "0x80", "0xc0", - "0xb6d", + "0xb4b", "0x80" ] }, { - "pc": 2454, + "pc": 2420, "op": "JUMP", - "gas": 2053121, + "gas": 2053133, "gasCost": 8, "depth": 1, "stack": [ @@ -8363,7 +8281,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -8372,13 +8290,13 @@ "0x3e9", "0x80", "0xc0", - "0xb6d" + "0xb4b" ] }, { - "pc": 2925, + "pc": 2891, "op": "JUMPDEST", - "gas": 2053113, + "gas": 2053125, "gasCost": 1, "depth": 1, "stack": [ @@ -8386,7 +8304,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -8398,9 +8316,9 @@ ] }, { - "pc": 2926, + "pc": 2892, "op": "DUP2", - "gas": 2053112, + "gas": 2053124, "gasCost": 3, "depth": 1, "stack": [ @@ -8408,7 +8326,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -8420,9 +8338,9 @@ ] }, { - "pc": 2927, + "pc": 2893, "op": "DUP2", - "gas": 2053109, + "gas": 2053121, "gasCost": 3, "depth": 1, "stack": [ @@ -8430,7 +8348,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -8443,9 +8361,9 @@ ] }, { - "pc": 2928, + "pc": 2894, "op": "SUB", - "gas": 2053106, + "gas": 2053118, "gasCost": 3, "depth": 1, "stack": [ @@ -8453,7 +8371,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -8467,9 +8385,9 @@ ] }, { - "pc": 2929, + "pc": 2895, "op": "PUSH1", - "gas": 2053103, + "gas": 2053115, "gasCost": 3, "depth": 1, "stack": [ @@ -8477,7 +8395,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -8490,9 +8408,9 @@ ] }, { - "pc": 2931, + "pc": 2897, "op": "DUP4", - "gas": 2053100, + "gas": 2053112, "gasCost": 3, "depth": 1, "stack": [ @@ -8500,7 +8418,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -8514,9 +8432,9 @@ ] }, { - "pc": 2932, + "pc": 2898, "op": "ADD", - "gas": 2053097, + "gas": 2053109, "gasCost": 3, "depth": 1, "stack": [ @@ -8524,7 +8442,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -8539,9 +8457,9 @@ ] }, { - "pc": 2933, + "pc": 2899, "op": "MSTORE", - "gas": 2053094, + "gas": 2053106, "gasCost": 3, "depth": 1, "stack": [ @@ -8549,7 +8467,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -8563,9 +8481,9 @@ ] }, { - "pc": 2934, + "pc": 2900, "op": "PUSH3", - "gas": 2053091, + "gas": 2053103, "gasCost": 3, "depth": 1, "stack": [ @@ -8573,7 +8491,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -8585,9 +8503,9 @@ ] }, { - "pc": 2938, + "pc": 2904, "op": "DUP2", - "gas": 2053088, + "gas": 2053100, "gasCost": 3, "depth": 1, "stack": [ @@ -8595,7 +8513,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -8604,13 +8522,13 @@ "0x3e9", "0x80", "0xc0", - "0xb80" + "0xb5e" ] }, { - "pc": 2939, + "pc": 2905, "op": "PUSH3", - "gas": 2053085, + "gas": 2053097, "gasCost": 3, "depth": 1, "stack": [ @@ -8618,7 +8536,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -8627,14 +8545,14 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xc0" ] }, { - "pc": 2943, + "pc": 2909, "op": "JUMP", - "gas": 2053082, + "gas": 2053094, "gasCost": 8, "depth": 1, "stack": [ @@ -8642,7 +8560,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -8651,15 +8569,15 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xc0", - "0xb2f" + "0xb0d" ] }, { - "pc": 2863, + "pc": 2829, "op": "JUMPDEST", - "gas": 2053074, + "gas": 2053086, "gasCost": 1, "depth": 1, "stack": [ @@ -8667,7 +8585,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -8676,14 +8594,14 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xc0" ] }, { - "pc": 2864, + "pc": 2830, "op": "PUSH1", - "gas": 2053073, + "gas": 2053085, "gasCost": 3, "depth": 1, "stack": [ @@ -8691,7 +8609,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -8700,14 +8618,14 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xc0" ] }, { - "pc": 2866, + "pc": 2832, "op": "PUSH3", - "gas": 2053070, + "gas": 2053082, "gasCost": 3, "depth": 1, "stack": [ @@ -8715,7 +8633,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -8724,15 +8642,15 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xc0", "0x0" ] }, { - "pc": 2870, + "pc": 2836, "op": "PUSH1", - "gas": 2053067, + "gas": 2053079, "gasCost": 3, "depth": 1, "stack": [ @@ -8740,7 +8658,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -8749,16 +8667,16 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xc0", "0x0", - "0xb3e" + "0xb1c" ] }, { - "pc": 2872, + "pc": 2838, "op": "DUP4", - "gas": 2053064, + "gas": 2053076, "gasCost": 3, "depth": 1, "stack": [ @@ -8766,7 +8684,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -8775,17 +8693,17 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xc0", "0x0", - "0xb3e", + "0xb1c", "0xe" ] }, { - "pc": 2873, + "pc": 2839, "op": "PUSH3", - "gas": 2053061, + "gas": 2053073, "gasCost": 3, "depth": 1, "stack": [ @@ -8793,7 +8711,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -8802,18 +8720,18 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xc0", "0x0", - "0xb3e", + "0xb1c", "0xe", "0xc0" ] }, { - "pc": 2877, + "pc": 2843, "op": "JUMP", - "gas": 2053058, + "gas": 2053070, "gasCost": 8, "depth": 1, "stack": [ @@ -8821,7 +8739,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -8830,19 +8748,19 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xc0", "0x0", - "0xb3e", + "0xb1c", "0xe", "0xc0", - "0xaf5" + "0xad3" ] }, { - "pc": 2805, + "pc": 2771, "op": "JUMPDEST", - "gas": 2053050, + "gas": 2053062, "gasCost": 1, "depth": 1, "stack": [ @@ -8850,7 +8768,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -8859,18 +8777,18 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xc0", "0x0", - "0xb3e", + "0xb1c", "0xe", "0xc0" ] }, { - "pc": 2806, + "pc": 2772, "op": "PUSH1", - "gas": 2053049, + "gas": 2053061, "gasCost": 3, "depth": 1, "stack": [ @@ -8878,7 +8796,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -8887,18 +8805,18 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xc0", "0x0", - "0xb3e", + "0xb1c", "0xe", "0xc0" ] }, { - "pc": 2808, + "pc": 2774, "op": "DUP3", - "gas": 2053046, + "gas": 2053058, "gasCost": 3, "depth": 1, "stack": [ @@ -8906,7 +8824,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -8915,19 +8833,19 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xc0", "0x0", - "0xb3e", + "0xb1c", "0xe", "0xc0", "0x0" ] }, { - "pc": 2809, + "pc": 2775, "op": "DUP3", - "gas": 2053043, + "gas": 2053055, "gasCost": 3, "depth": 1, "stack": [ @@ -8935,7 +8853,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -8944,10 +8862,10 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xc0", "0x0", - "0xb3e", + "0xb1c", "0xe", "0xc0", "0x0", @@ -8955,9 +8873,9 @@ ] }, { - "pc": 2810, + "pc": 2776, "op": "MSTORE", - "gas": 2053040, + "gas": 2053052, "gasCost": 3, "depth": 1, "stack": [ @@ -8965,7 +8883,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -8974,10 +8892,10 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xc0", "0x0", - "0xb3e", + "0xb1c", "0xe", "0xc0", "0x0", @@ -8986,9 +8904,9 @@ ] }, { - "pc": 2811, + "pc": 2777, "op": "PUSH1", - "gas": 2053037, + "gas": 2053049, "gasCost": 3, "depth": 1, "stack": [ @@ -8996,7 +8914,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -9005,19 +8923,19 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xc0", "0x0", - "0xb3e", + "0xb1c", "0xe", "0xc0", "0x0" ] }, { - "pc": 2813, + "pc": 2779, "op": "DUP3", - "gas": 2053034, + "gas": 2053046, "gasCost": 3, "depth": 1, "stack": [ @@ -9025,7 +8943,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -9034,10 +8952,10 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xc0", "0x0", - "0xb3e", + "0xb1c", "0xe", "0xc0", "0x0", @@ -9045,9 +8963,9 @@ ] }, { - "pc": 2814, + "pc": 2780, "op": "ADD", - "gas": 2053031, + "gas": 2053043, "gasCost": 3, "depth": 1, "stack": [ @@ -9055,7 +8973,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -9064,10 +8982,10 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xc0", "0x0", - "0xb3e", + "0xb1c", "0xe", "0xc0", "0x0", @@ -9076,9 +8994,9 @@ ] }, { - "pc": 2815, + "pc": 2781, "op": "SWAP1", - "gas": 2053028, + "gas": 2053040, "gasCost": 3, "depth": 1, "stack": [ @@ -9086,7 +9004,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -9095,10 +9013,10 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xc0", "0x0", - "0xb3e", + "0xb1c", "0xe", "0xc0", "0x0", @@ -9106,9 +9024,9 @@ ] }, { - "pc": 2816, + "pc": 2782, "op": "POP", - "gas": 2053025, + "gas": 2053037, "gasCost": 2, "depth": 1, "stack": [ @@ -9116,7 +9034,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -9125,10 +9043,10 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xc0", "0x0", - "0xb3e", + "0xb1c", "0xe", "0xc0", "0xe0", @@ -9136,9 +9054,9 @@ ] }, { - "pc": 2817, + "pc": 2783, "op": "SWAP3", - "gas": 2053023, + "gas": 2053035, "gasCost": 3, "depth": 1, "stack": [ @@ -9146,7 +9064,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -9155,19 +9073,19 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xc0", "0x0", - "0xb3e", + "0xb1c", "0xe", "0xc0", "0xe0" ] }, { - "pc": 2818, + "pc": 2784, "op": "SWAP2", - "gas": 2053020, + "gas": 2053032, "gasCost": 3, "depth": 1, "stack": [ @@ -9175,7 +9093,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -9184,19 +9102,19 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xc0", "0x0", "0xe0", "0xe", "0xc0", - "0xb3e" + "0xb1c" ] }, { - "pc": 2819, + "pc": 2785, "op": "POP", - "gas": 2053017, + "gas": 2053029, "gasCost": 2, "depth": 1, "stack": [ @@ -9204,7 +9122,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -9213,19 +9131,19 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xc0", "0x0", "0xe0", - "0xb3e", + "0xb1c", "0xc0", "0xe" ] }, { - "pc": 2820, + "pc": 2786, "op": "POP", - "gas": 2053015, + "gas": 2053027, "gasCost": 2, "depth": 1, "stack": [ @@ -9233,7 +9151,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -9242,18 +9160,18 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xc0", "0x0", "0xe0", - "0xb3e", + "0xb1c", "0xc0" ] }, { - "pc": 2821, + "pc": 2787, "op": "JUMP", - "gas": 2053013, + "gas": 2053025, "gasCost": 8, "depth": 1, "stack": [ @@ -9261,7 +9179,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -9270,17 +9188,17 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xc0", "0x0", "0xe0", - "0xb3e" + "0xb1c" ] }, { - "pc": 2878, + "pc": 2844, "op": "JUMPDEST", - "gas": 2053005, + "gas": 2053017, "gasCost": 1, "depth": 1, "stack": [ @@ -9288,7 +9206,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -9297,16 +9215,16 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xc0", "0x0", "0xe0" ] }, { - "pc": 2879, + "pc": 2845, "op": "SWAP2", - "gas": 2053004, + "gas": 2053016, "gasCost": 3, "depth": 1, "stack": [ @@ -9314,7 +9232,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -9323,16 +9241,16 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xc0", "0x0", "0xe0" ] }, { - "pc": 2880, + "pc": 2846, "op": "POP", - "gas": 2053001, + "gas": 2053013, "gasCost": 2, "depth": 1, "stack": [ @@ -9340,7 +9258,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -9349,16 +9267,16 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xe0", "0x0", "0xc0" ] }, { - "pc": 2881, + "pc": 2847, "op": "PUSH3", - "gas": 2052999, + "gas": 2053011, "gasCost": 3, "depth": 1, "stack": [ @@ -9366,7 +9284,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -9375,15 +9293,15 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xe0", "0x0" ] }, { - "pc": 2885, + "pc": 2851, "op": "DUP3", - "gas": 2052996, + "gas": 2053008, "gasCost": 3, "depth": 1, "stack": [ @@ -9391,7 +9309,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -9400,16 +9318,16 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xe0", "0x0", - "0xb4b" + "0xb29" ] }, { - "pc": 2886, + "pc": 2852, "op": "PUSH3", - "gas": 2052993, + "gas": 2053005, "gasCost": 3, "depth": 1, "stack": [ @@ -9417,7 +9335,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -9426,17 +9344,17 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xe0", "0x0", - "0xb4b", + "0xb29", "0xe0" ] }, { - "pc": 2890, + "pc": 2856, "op": "JUMP", - "gas": 2052990, + "gas": 2053002, "gasCost": 8, "depth": 1, "stack": [ @@ -9444,7 +9362,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -9453,18 +9371,18 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xe0", "0x0", - "0xb4b", + "0xb29", "0xe0", - "0xb06" + "0xae4" ] }, { - "pc": 2822, + "pc": 2788, "op": "JUMPDEST", - "gas": 2052982, + "gas": 2052994, "gasCost": 1, "depth": 1, "stack": [ @@ -9472,7 +9390,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -9481,17 +9399,17 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xe0", "0x0", - "0xb4b", + "0xb29", "0xe0" ] }, { - "pc": 2823, + "pc": 2789, "op": "PUSH32", - "gas": 2052981, + "gas": 2052993, "gasCost": 3, "depth": 1, "stack": [ @@ -9499,7 +9417,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -9508,17 +9426,17 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xe0", "0x0", - "0xb4b", + "0xb29", "0xe0" ] }, { - "pc": 2856, + "pc": 2822, "op": "PUSH1", - "gas": 2052978, + "gas": 2052990, "gasCost": 3, "depth": 1, "stack": [ @@ -9526,7 +9444,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -9535,18 +9453,18 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xe0", "0x0", - "0xb4b", + "0xb29", "0xe0", "0x696e7465726e616c20746f706963000000000000000000000000000000000000" ] }, { - "pc": 2858, + "pc": 2824, "op": "DUP3", - "gas": 2052975, + "gas": 2052987, "gasCost": 3, "depth": 1, "stack": [ @@ -9554,7 +9472,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -9563,19 +9481,19 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xe0", "0x0", - "0xb4b", + "0xb29", "0xe0", "0x696e7465726e616c20746f706963000000000000000000000000000000000000", "0x0" ] }, { - "pc": 2859, + "pc": 2825, "op": "ADD", - "gas": 2052972, + "gas": 2052984, "gasCost": 3, "depth": 1, "stack": [ @@ -9583,7 +9501,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -9592,10 +9510,10 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xe0", "0x0", - "0xb4b", + "0xb29", "0xe0", "0x696e7465726e616c20746f706963000000000000000000000000000000000000", "0x0", @@ -9603,9 +9521,9 @@ ] }, { - "pc": 2860, + "pc": 2826, "op": "MSTORE", - "gas": 2052969, + "gas": 2052981, "gasCost": 3, "depth": 1, "stack": [ @@ -9613,7 +9531,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -9622,19 +9540,19 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xe0", "0x0", - "0xb4b", + "0xb29", "0xe0", "0x696e7465726e616c20746f706963000000000000000000000000000000000000", "0xe0" ] }, { - "pc": 2861, + "pc": 2827, "op": "POP", - "gas": 2052966, + "gas": 2052978, "gasCost": 2, "depth": 1, "stack": [ @@ -9642,7 +9560,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -9651,17 +9569,17 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xe0", "0x0", - "0xb4b", + "0xb29", "0xe0" ] }, { - "pc": 2862, + "pc": 2828, "op": "JUMP", - "gas": 2052964, + "gas": 2052976, "gasCost": 8, "depth": 1, "stack": [ @@ -9669,7 +9587,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -9678,16 +9596,16 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xe0", "0x0", - "0xb4b" + "0xb29" ] }, { - "pc": 2891, + "pc": 2857, "op": "JUMPDEST", - "gas": 2052956, + "gas": 2052968, "gasCost": 1, "depth": 1, "stack": [ @@ -9695,7 +9613,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -9704,15 +9622,15 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xe0", "0x0" ] }, { - "pc": 2892, + "pc": 2858, "op": "PUSH1", - "gas": 2052955, + "gas": 2052967, "gasCost": 3, "depth": 1, "stack": [ @@ -9720,7 +9638,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -9729,15 +9647,15 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xe0", "0x0" ] }, { - "pc": 2894, + "pc": 2860, "op": "DUP3", - "gas": 2052952, + "gas": 2052964, "gasCost": 3, "depth": 1, "stack": [ @@ -9745,7 +9663,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -9754,16 +9672,16 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xe0", "0x0", "0x20" ] }, { - "pc": 2895, + "pc": 2861, "op": "ADD", - "gas": 2052949, + "gas": 2052961, "gasCost": 3, "depth": 1, "stack": [ @@ -9771,7 +9689,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -9780,7 +9698,7 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xe0", "0x0", "0x20", @@ -9788,9 +9706,9 @@ ] }, { - "pc": 2896, + "pc": 2862, "op": "SWAP1", - "gas": 2052946, + "gas": 2052958, "gasCost": 3, "depth": 1, "stack": [ @@ -9798,7 +9716,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -9807,16 +9725,16 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xe0", "0x0", "0x100" ] }, { - "pc": 2897, + "pc": 2863, "op": "POP", - "gas": 2052943, + "gas": 2052955, "gasCost": 2, "depth": 1, "stack": [ @@ -9824,7 +9742,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -9833,16 +9751,16 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xe0", "0x100", "0x0" ] }, { - "pc": 2898, + "pc": 2864, "op": "SWAP2", - "gas": 2052941, + "gas": 2052953, "gasCost": 3, "depth": 1, "stack": [ @@ -9850,7 +9768,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -9859,15 +9777,15 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xe0", "0x100" ] }, { - "pc": 2899, + "pc": 2865, "op": "SWAP1", - "gas": 2052938, + "gas": 2052950, "gasCost": 3, "depth": 1, "stack": [ @@ -9875,7 +9793,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -9886,13 +9804,13 @@ "0xc0", "0x100", "0xe0", - "0xb80" + "0xb5e" ] }, { - "pc": 2900, + "pc": 2866, "op": "POP", - "gas": 2052935, + "gas": 2052947, "gasCost": 2, "depth": 1, "stack": [ @@ -9900,7 +9818,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -9910,14 +9828,14 @@ "0x80", "0xc0", "0x100", - "0xb80", + "0xb5e", "0xe0" ] }, { - "pc": 2901, + "pc": 2867, "op": "JUMP", - "gas": 2052933, + "gas": 2052945, "gasCost": 8, "depth": 1, "stack": [ @@ -9925,7 +9843,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -9935,13 +9853,13 @@ "0x80", "0xc0", "0x100", - "0xb80" + "0xb5e" ] }, { - "pc": 2944, + "pc": 2910, "op": "JUMPDEST", - "gas": 2052925, + "gas": 2052937, "gasCost": 1, "depth": 1, "stack": [ @@ -9949,7 +9867,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -9962,9 +9880,9 @@ ] }, { - "pc": 2945, + "pc": 2911, "op": "SWAP1", - "gas": 2052924, + "gas": 2052936, "gasCost": 3, "depth": 1, "stack": [ @@ -9972,7 +9890,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -9985,9 +9903,9 @@ ] }, { - "pc": 2946, + "pc": 2912, "op": "POP", - "gas": 2052921, + "gas": 2052933, "gasCost": 2, "depth": 1, "stack": [ @@ -9995,7 +9913,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -10008,9 +9926,9 @@ ] }, { - "pc": 2947, + "pc": 2913, "op": "SWAP3", - "gas": 2052919, + "gas": 2052931, "gasCost": 3, "depth": 1, "stack": [ @@ -10018,7 +9936,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -10030,9 +9948,9 @@ ] }, { - "pc": 2948, + "pc": 2914, "op": "SWAP2", - "gas": 2052916, + "gas": 2052928, "gasCost": 3, "depth": 1, "stack": [ @@ -10040,7 +9958,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -10052,9 +9970,9 @@ ] }, { - "pc": 2949, + "pc": 2915, "op": "POP", - "gas": 2052913, + "gas": 2052925, "gasCost": 2, "depth": 1, "stack": [ @@ -10062,7 +9980,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -10074,9 +9992,9 @@ ] }, { - "pc": 2950, + "pc": 2916, "op": "POP", - "gas": 2052911, + "gas": 2052923, "gasCost": 2, "depth": 1, "stack": [ @@ -10084,7 +10002,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -10095,9 +10013,9 @@ ] }, { - "pc": 2951, + "pc": 2917, "op": "JUMP", - "gas": 2052909, + "gas": 2052921, "gasCost": 8, "depth": 1, "stack": [ @@ -10105,7 +10023,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -10117,7 +10035,7 @@ { "pc": 714, "op": "JUMPDEST", - "gas": 2052901, + "gas": 2052913, "gasCost": 1, "depth": 1, "stack": [ @@ -10125,7 +10043,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -10136,7 +10054,7 @@ { "pc": 715, "op": "PUSH1", - "gas": 2052900, + "gas": 2052912, "gasCost": 3, "depth": 1, "stack": [ @@ -10144,7 +10062,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -10155,7 +10073,7 @@ { "pc": 717, "op": "MLOAD", - "gas": 2052897, + "gas": 2052909, "gasCost": 3, "depth": 1, "stack": [ @@ -10163,7 +10081,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -10175,7 +10093,7 @@ { "pc": 718, "op": "DUP1", - "gas": 2052894, + "gas": 2052906, "gasCost": 3, "depth": 1, "stack": [ @@ -10183,7 +10101,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -10195,7 +10113,7 @@ { "pc": 719, "op": "SWAP2", - "gas": 2052891, + "gas": 2052903, "gasCost": 3, "depth": 1, "stack": [ @@ -10203,7 +10121,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -10216,7 +10134,7 @@ { "pc": 720, "op": "SUB", - "gas": 2052888, + "gas": 2052900, "gasCost": 3, "depth": 1, "stack": [ @@ -10224,7 +10142,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -10237,7 +10155,7 @@ { "pc": 721, "op": "SWAP1", - "gas": 2052885, + "gas": 2052897, "gasCost": 3, "depth": 1, "stack": [ @@ -10245,7 +10163,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -10257,7 +10175,7 @@ { "pc": 722, "op": "LOG2", - "gas": 2052882, + "gas": 2052894, "gasCost": 2149, "depth": 1, "stack": [ @@ -10265,7 +10183,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "OWNER.address", @@ -10277,7 +10195,7 @@ { "pc": 723, "op": "DUP2", - "gas": 2050733, + "gas": 2050745, "gasCost": 3, "depth": 1, "stack": [ @@ -10285,7 +10203,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0" ] @@ -10293,7 +10211,7 @@ { "pc": 724, "op": "PUSH1", - "gas": 2050730, + "gas": 2050742, "gasCost": 3, "depth": 1, "stack": [ @@ -10301,7 +10219,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "0x3e9" @@ -10310,7 +10228,7 @@ { "pc": 726, "op": "PUSH1", - "gas": 2050727, + "gas": 2050739, "gasCost": 3, "depth": 1, "stack": [ @@ -10318,7 +10236,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "0x3e9", @@ -10328,7 +10246,7 @@ { "pc": 728, "op": "DUP3", - "gas": 2050724, + "gas": 2050736, "gasCost": 3, "depth": 1, "stack": [ @@ -10336,7 +10254,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "0x3e9", @@ -10347,7 +10265,7 @@ { "pc": 729, "op": "DUP3", - "gas": 2050721, + "gas": 2050733, "gasCost": 3, "depth": 1, "stack": [ @@ -10355,7 +10273,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "0x3e9", @@ -10367,7 +10285,7 @@ { "pc": 730, "op": "SLOAD", - "gas": 2050718, + "gas": 2050730, "gasCost": 2100, "depth": 1, "stack": [ @@ -10375,7 +10293,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "0x3e9", @@ -10392,7 +10310,7 @@ { "pc": 731, "op": "PUSH3", - "gas": 2048618, + "gas": 2048630, "gasCost": 3, "depth": 1, "stack": [ @@ -10400,7 +10318,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "0x3e9", @@ -10413,7 +10331,7 @@ { "pc": 735, "op": "SWAP2", - "gas": 2048615, + "gas": 2048627, "gasCost": 3, "depth": 1, "stack": [ @@ -10421,7 +10339,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "0x3e9", @@ -10435,7 +10353,7 @@ { "pc": 736, "op": "SWAP1", - "gas": 2048612, + "gas": 2048624, "gasCost": 3, "depth": 1, "stack": [ @@ -10443,7 +10361,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "0x3e9", @@ -10457,7 +10375,7 @@ { "pc": 737, "op": "PUSH3", - "gas": 2048609, + "gas": 2048621, "gasCost": 3, "depth": 1, "stack": [ @@ -10465,7 +10383,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "0x3e9", @@ -10479,7 +10397,7 @@ { "pc": 741, "op": "JUMP", - "gas": 2048606, + "gas": 2048618, "gasCost": 8, "depth": 1, "stack": [ @@ -10487,7 +10405,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "0x3e9", @@ -10496,13 +10414,13 @@ "0x2e6", "0x3e9", "0x0", - "0xbb7" + "0xb95" ] }, { - "pc": 2999, + "pc": 2965, "op": "JUMPDEST", - "gas": 2048598, + "gas": 2048610, "gasCost": 1, "depth": 1, "stack": [ @@ -10510,7 +10428,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "0x3e9", @@ -10522,9 +10440,9 @@ ] }, { - "pc": 3000, + "pc": 2966, "op": "PUSH1", - "gas": 2048597, + "gas": 2048609, "gasCost": 3, "depth": 1, "stack": [ @@ -10532,7 +10450,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "0x3e9", @@ -10544,9 +10462,9 @@ ] }, { - "pc": 3002, + "pc": 2968, "op": "PUSH3", - "gas": 2048594, + "gas": 2048606, "gasCost": 3, "depth": 1, "stack": [ @@ -10554,7 +10472,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "0x3e9", @@ -10567,9 +10485,9 @@ ] }, { - "pc": 3006, + "pc": 2972, "op": "DUP3", - "gas": 2048591, + "gas": 2048603, "gasCost": 3, "depth": 1, "stack": [ @@ -10577,7 +10495,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "0x3e9", @@ -10587,13 +10505,13 @@ "0x3e9", "0x0", "0x0", - "0xbc4" + "0xba2" ] }, { - "pc": 3007, + "pc": 2973, "op": "PUSH3", - "gas": 2048588, + "gas": 2048600, "gasCost": 3, "depth": 1, "stack": [ @@ -10601,7 +10519,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "0x3e9", @@ -10611,14 +10529,14 @@ "0x3e9", "0x0", "0x0", - "0xbc4", + "0xba2", "0x0" ] }, { - "pc": 3011, + "pc": 2977, "op": "JUMP", - "gas": 2048585, + "gas": 2048597, "gasCost": 8, "depth": 1, "stack": [ @@ -10626,7 +10544,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "0x3e9", @@ -10636,15 +10554,15 @@ "0x3e9", "0x0", "0x0", - "0xbc4", + "0xba2", "0x0", - "0x97c" + "0x95a" ] }, { - "pc": 2428, + "pc": 2394, "op": "JUMPDEST", - "gas": 2048577, + "gas": 2048589, "gasCost": 1, "depth": 1, "stack": [ @@ -10652,7 +10570,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "0x3e9", @@ -10662,14 +10580,14 @@ "0x3e9", "0x0", "0x0", - "0xbc4", + "0xba2", "0x0" ] }, { - "pc": 2429, + "pc": 2395, "op": "PUSH1", - "gas": 2048576, + "gas": 2048588, "gasCost": 3, "depth": 1, "stack": [ @@ -10677,7 +10595,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "0x3e9", @@ -10687,14 +10605,14 @@ "0x3e9", "0x0", "0x0", - "0xbc4", + "0xba2", "0x0" ] }, { - "pc": 2431, + "pc": 2397, "op": "DUP2", - "gas": 2048573, + "gas": 2048585, "gasCost": 3, "depth": 1, "stack": [ @@ -10702,7 +10620,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "0x3e9", @@ -10712,15 +10630,15 @@ "0x3e9", "0x0", "0x0", - "0xbc4", + "0xba2", "0x0", "0x0" ] }, { - "pc": 2432, + "pc": 2398, "op": "SWAP1", - "gas": 2048570, + "gas": 2048582, "gasCost": 3, "depth": 1, "stack": [ @@ -10728,7 +10646,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "0x3e9", @@ -10738,16 +10656,16 @@ "0x3e9", "0x0", "0x0", - "0xbc4", + "0xba2", "0x0", "0x0", "0x0" ] }, { - "pc": 2433, + "pc": 2399, "op": "POP", - "gas": 2048567, + "gas": 2048579, "gasCost": 2, "depth": 1, "stack": [ @@ -10755,7 +10673,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "0x3e9", @@ -10765,16 +10683,16 @@ "0x3e9", "0x0", "0x0", - "0xbc4", + "0xba2", "0x0", "0x0", "0x0" ] }, { - "pc": 2434, + "pc": 2400, "op": "SWAP2", - "gas": 2048565, + "gas": 2048577, "gasCost": 3, "depth": 1, "stack": [ @@ -10782,7 +10700,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "0x3e9", @@ -10792,15 +10710,15 @@ "0x3e9", "0x0", "0x0", - "0xbc4", + "0xba2", "0x0", "0x0" ] }, { - "pc": 2435, + "pc": 2401, "op": "SWAP1", - "gas": 2048562, + "gas": 2048574, "gasCost": 3, "depth": 1, "stack": [ @@ -10808,7 +10726,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "0x3e9", @@ -10820,13 +10738,13 @@ "0x0", "0x0", "0x0", - "0xbc4" + "0xba2" ] }, { - "pc": 2436, + "pc": 2402, "op": "POP", - "gas": 2048559, + "gas": 2048571, "gasCost": 2, "depth": 1, "stack": [ @@ -10834,7 +10752,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "0x3e9", @@ -10845,14 +10763,14 @@ "0x0", "0x0", "0x0", - "0xbc4", + "0xba2", "0x0" ] }, { - "pc": 2437, + "pc": 2403, "op": "JUMP", - "gas": 2048557, + "gas": 2048569, "gasCost": 8, "depth": 1, "stack": [ @@ -10860,7 +10778,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "0x3e9", @@ -10871,13 +10789,13 @@ "0x0", "0x0", "0x0", - "0xbc4" + "0xba2" ] }, { - "pc": 3012, + "pc": 2978, "op": "JUMPDEST", - "gas": 2048549, + "gas": 2048561, "gasCost": 1, "depth": 1, "stack": [ @@ -10885,7 +10803,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "0x3e9", @@ -10899,9 +10817,9 @@ ] }, { - "pc": 3013, + "pc": 2979, "op": "SWAP2", - "gas": 2048548, + "gas": 2048560, "gasCost": 3, "depth": 1, "stack": [ @@ -10909,7 +10827,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "0x3e9", @@ -10923,9 +10841,9 @@ ] }, { - "pc": 3014, + "pc": 2980, "op": "POP", - "gas": 2048545, + "gas": 2048557, "gasCost": 2, "depth": 1, "stack": [ @@ -10933,7 +10851,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "0x3e9", @@ -10947,9 +10865,9 @@ ] }, { - "pc": 3015, + "pc": 2981, "op": "PUSH3", - "gas": 2048543, + "gas": 2048555, "gasCost": 3, "depth": 1, "stack": [ @@ -10957,7 +10875,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "0x3e9", @@ -10970,9 +10888,9 @@ ] }, { - "pc": 3019, + "pc": 2985, "op": "DUP4", - "gas": 2048540, + "gas": 2048552, "gasCost": 3, "depth": 1, "stack": [ @@ -10980,7 +10898,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "0x3e9", @@ -10990,13 +10908,13 @@ "0x3e9", "0x0", "0x0", - "0xbd1" + "0xbaf" ] }, { - "pc": 3020, + "pc": 2986, "op": "PUSH3", - "gas": 2048537, + "gas": 2048549, "gasCost": 3, "depth": 1, "stack": [ @@ -11004,7 +10922,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "0x3e9", @@ -11014,14 +10932,14 @@ "0x3e9", "0x0", "0x0", - "0xbd1", + "0xbaf", "0x3e9" ] }, { - "pc": 3024, + "pc": 2990, "op": "JUMP", - "gas": 2048534, + "gas": 2048546, "gasCost": 8, "depth": 1, "stack": [ @@ -11029,7 +10947,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "0x3e9", @@ -11039,15 +10957,15 @@ "0x3e9", "0x0", "0x0", - "0xbd1", + "0xbaf", "0x3e9", - "0x97c" + "0x95a" ] }, { - "pc": 2428, + "pc": 2394, "op": "JUMPDEST", - "gas": 2048526, + "gas": 2048538, "gasCost": 1, "depth": 1, "stack": [ @@ -11055,7 +10973,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "0x3e9", @@ -11065,14 +10983,14 @@ "0x3e9", "0x0", "0x0", - "0xbd1", + "0xbaf", "0x3e9" ] }, { - "pc": 2429, + "pc": 2395, "op": "PUSH1", - "gas": 2048525, + "gas": 2048537, "gasCost": 3, "depth": 1, "stack": [ @@ -11080,7 +10998,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "0x3e9", @@ -11090,14 +11008,14 @@ "0x3e9", "0x0", "0x0", - "0xbd1", + "0xbaf", "0x3e9" ] }, { - "pc": 2431, + "pc": 2397, "op": "DUP2", - "gas": 2048522, + "gas": 2048534, "gasCost": 3, "depth": 1, "stack": [ @@ -11105,7 +11023,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "0x3e9", @@ -11115,15 +11033,15 @@ "0x3e9", "0x0", "0x0", - "0xbd1", + "0xbaf", "0x3e9", "0x0" ] }, { - "pc": 2432, + "pc": 2398, "op": "SWAP1", - "gas": 2048519, + "gas": 2048531, "gasCost": 3, "depth": 1, "stack": [ @@ -11131,7 +11049,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "0x3e9", @@ -11141,16 +11059,16 @@ "0x3e9", "0x0", "0x0", - "0xbd1", + "0xbaf", "0x3e9", "0x0", "0x3e9" ] }, { - "pc": 2433, + "pc": 2399, "op": "POP", - "gas": 2048516, + "gas": 2048528, "gasCost": 2, "depth": 1, "stack": [ @@ -11158,7 +11076,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "0x3e9", @@ -11168,16 +11086,16 @@ "0x3e9", "0x0", "0x0", - "0xbd1", + "0xbaf", "0x3e9", "0x3e9", "0x0" ] }, { - "pc": 2434, + "pc": 2400, "op": "SWAP2", - "gas": 2048514, + "gas": 2048526, "gasCost": 3, "depth": 1, "stack": [ @@ -11185,7 +11103,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "0x3e9", @@ -11195,15 +11113,15 @@ "0x3e9", "0x0", "0x0", - "0xbd1", + "0xbaf", "0x3e9", "0x3e9" ] }, { - "pc": 2435, + "pc": 2401, "op": "SWAP1", - "gas": 2048511, + "gas": 2048523, "gasCost": 3, "depth": 1, "stack": [ @@ -11211,7 +11129,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "0x3e9", @@ -11223,13 +11141,13 @@ "0x0", "0x3e9", "0x3e9", - "0xbd1" + "0xbaf" ] }, { - "pc": 2436, + "pc": 2402, "op": "POP", - "gas": 2048508, + "gas": 2048520, "gasCost": 2, "depth": 1, "stack": [ @@ -11237,7 +11155,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "0x3e9", @@ -11248,14 +11166,14 @@ "0x0", "0x0", "0x3e9", - "0xbd1", + "0xbaf", "0x3e9" ] }, { - "pc": 2437, + "pc": 2403, "op": "JUMP", - "gas": 2048506, + "gas": 2048518, "gasCost": 8, "depth": 1, "stack": [ @@ -11263,7 +11181,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "0x3e9", @@ -11274,13 +11192,13 @@ "0x0", "0x0", "0x3e9", - "0xbd1" + "0xbaf" ] }, { - "pc": 3025, + "pc": 2991, "op": "JUMPDEST", - "gas": 2048498, + "gas": 2048510, "gasCost": 1, "depth": 1, "stack": [ @@ -11288,7 +11206,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "0x3e9", @@ -11302,9 +11220,9 @@ ] }, { - "pc": 3026, + "pc": 2992, "op": "SWAP3", - "gas": 2048497, + "gas": 2048509, "gasCost": 3, "depth": 1, "stack": [ @@ -11312,7 +11230,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "0x3e9", @@ -11326,9 +11244,9 @@ ] }, { - "pc": 3027, + "pc": 2993, "op": "POP", - "gas": 2048494, + "gas": 2048506, "gasCost": 2, "depth": 1, "stack": [ @@ -11336,7 +11254,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "0x3e9", @@ -11350,9 +11268,9 @@ ] }, { - "pc": 3028, + "pc": 2994, "op": "DUP3", - "gas": 2048492, + "gas": 2048504, "gasCost": 3, "depth": 1, "stack": [ @@ -11360,7 +11278,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "0x3e9", @@ -11373,9 +11291,9 @@ ] }, { - "pc": 3029, - "op": "PUSH32", - "gas": 2048489, + "pc": 2995, + "op": "DUP3", + "gas": 2048501, "gasCost": 3, "depth": 1, "stack": [ @@ -11383,7 +11301,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "0x3e9", @@ -11397,9 +11315,9 @@ ] }, { - "pc": 3062, - "op": "SUB", - "gas": 2048486, + "pc": 2996, + "op": "ADD", + "gas": 2048498, "gasCost": 3, "depth": 1, "stack": [ @@ -11407,7 +11325,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "0x3e9", @@ -11418,13 +11336,13 @@ "0x0", "0x0", "0x3e9", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + "0x0" ] }, { - "pc": 3063, - "op": "DUP3", - "gas": 2048483, + "pc": 2997, + "op": "SWAP1", + "gas": 2048495, "gasCost": 3, "depth": 1, "stack": [ @@ -11432,7 +11350,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "0x3e9", @@ -11442,21 +11360,21 @@ "0x3e9", "0x0", "0x0", - "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc16" + "0x3e9" ] }, { - "pc": 3064, - "op": "GT", - "gas": 2048480, - "gasCost": 3, + "pc": 2998, + "op": "POP", + "gas": 2048492, + "gasCost": 2, "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "0x3e9", @@ -11465,15 +11383,14 @@ "0x2e6", "0x3e9", "0x0", - "0x0", - "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc16", + "0x3e9", "0x0" ] }, { - "pc": 3065, - "op": "ISZERO", - "gas": 2048477, + "pc": 2999, + "op": "DUP1", + "gas": 2048490, "gasCost": 3, "depth": 1, "stack": [ @@ -11481,7 +11398,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "0x3e9", @@ -11490,14 +11407,13 @@ "0x2e6", "0x3e9", "0x0", - "0x0", - "0x0" + "0x3e9" ] }, { - "pc": 3066, - "op": "PUSH3", - "gas": 2048474, + "pc": 3000, + "op": "DUP3", + "gas": 2048487, "gasCost": 3, "depth": 1, "stack": [ @@ -11505,7 +11421,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "0x3e9", @@ -11514,22 +11430,22 @@ "0x2e6", "0x3e9", "0x0", - "0x0", - "0x1" + "0x3e9", + "0x3e9" ] }, { - "pc": 3070, - "op": "JUMPI", - "gas": 2048471, - "gasCost": 10, - "depth": 1, + "pc": 3001, + "op": "GT", + "gas": 2048484, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "0x3e9", @@ -11538,38 +11454,15 @@ "0x2e6", "0x3e9", "0x0", - "0x0", - "0x1", - "0xc09" - ] - }, - { - "pc": 3081, - "op": "JUMPDEST", - "gas": 2048461, - "gasCost": 1, - "depth": 1, - "stack": [ - "0xa0712d68", - "0x1cd", - "0x3e8", - "0x0", - "0x888", - "0x3e9", - "0x0", "0x3e9", - "0x3", - "0x0", - "0x2e6", "0x3e9", - "0x0", "0x0" ] }, { - "pc": 3082, - "op": "DUP3", - "gas": 2048460, + "pc": 3002, + "op": "ISZERO", + "gas": 2048481, "gasCost": 3, "depth": 1, "stack": [ @@ -11577,7 +11470,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "0x3e9", @@ -11586,13 +11479,14 @@ "0x2e6", "0x3e9", "0x0", + "0x3e9", "0x0" ] }, { - "pc": 3083, - "op": "DUP3", - "gas": 2048457, + "pc": 3003, + "op": "PUSH3", + "gas": 2048478, "gasCost": 3, "depth": 1, "stack": [ @@ -11600,7 +11494,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "0x3e9", @@ -11609,22 +11503,22 @@ "0x2e6", "0x3e9", "0x0", - "0x0", - "0x3e9" + "0x3e9", + "0x1" ] }, { - "pc": 3084, - "op": "ADD", - "gas": 2048454, - "gasCost": 3, + "pc": 3007, + "op": "JUMPI", + "gas": 2048475, + "gasCost": 10, "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "0x3e9", @@ -11633,23 +11527,23 @@ "0x2e6", "0x3e9", "0x0", - "0x0", "0x3e9", - "0x0" + "0x1", + "0xbca" ] }, { - "pc": 3085, - "op": "SWAP1", - "gas": 2048451, - "gasCost": 3, + "pc": 3018, + "op": "JUMPDEST", + "gas": 2048465, + "gasCost": 1, "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "0x3e9", @@ -11658,38 +11552,13 @@ "0x2e6", "0x3e9", "0x0", - "0x0", "0x3e9" ] }, { - "pc": 3086, - "op": "POP", - "gas": 2048448, - "gasCost": 2, - "depth": 1, - "stack": [ - "0xa0712d68", - "0x1cd", - "0x3e8", - "0x0", - "0x888", - "0x3e9", - "0x0", - "0x3e9", - "0x3", - "0x0", - "0x2e6", - "0x3e9", - "0x0", - "0x3e9", - "0x0" - ] - }, - { - "pc": 3087, + "pc": 3019, "op": "SWAP3", - "gas": 2048446, + "gas": 2048464, "gasCost": 3, "depth": 1, "stack": [ @@ -11697,7 +11566,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "0x3e9", @@ -11710,9 +11579,9 @@ ] }, { - "pc": 3088, + "pc": 3020, "op": "SWAP2", - "gas": 2048443, + "gas": 2048461, "gasCost": 3, "depth": 1, "stack": [ @@ -11720,7 +11589,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "0x3e9", @@ -11733,9 +11602,9 @@ ] }, { - "pc": 3089, + "pc": 3021, "op": "POP", - "gas": 2048440, + "gas": 2048458, "gasCost": 2, "depth": 1, "stack": [ @@ -11743,7 +11612,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "0x3e9", @@ -11756,9 +11625,9 @@ ] }, { - "pc": 3090, + "pc": 3022, "op": "POP", - "gas": 2048438, + "gas": 2048456, "gasCost": 2, "depth": 1, "stack": [ @@ -11766,7 +11635,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "0x3e9", @@ -11778,9 +11647,9 @@ ] }, { - "pc": 3091, + "pc": 3023, "op": "JUMP", - "gas": 2048436, + "gas": 2048454, "gasCost": 8, "depth": 1, "stack": [ @@ -11788,7 +11657,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "0x3e9", @@ -11801,7 +11670,7 @@ { "pc": 742, "op": "JUMPDEST", - "gas": 2048428, + "gas": 2048446, "gasCost": 1, "depth": 1, "stack": [ @@ -11809,7 +11678,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "0x3e9", @@ -11821,7 +11690,7 @@ { "pc": 743, "op": "SWAP3", - "gas": 2048427, + "gas": 2048445, "gasCost": 3, "depth": 1, "stack": [ @@ -11829,7 +11698,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "0x3e9", @@ -11841,7 +11710,7 @@ { "pc": 744, "op": "POP", - "gas": 2048424, + "gas": 2048442, "gasCost": 2, "depth": 1, "stack": [ @@ -11849,7 +11718,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "0x3e9", @@ -11861,7 +11730,7 @@ { "pc": 745, "op": "POP", - "gas": 2048422, + "gas": 2048440, "gasCost": 2, "depth": 1, "stack": [ @@ -11869,7 +11738,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "0x3e9", @@ -11880,7 +11749,7 @@ { "pc": 746, "op": "DUP2", - "gas": 2048420, + "gas": 2048438, "gasCost": 3, "depth": 1, "stack": [ @@ -11888,7 +11757,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "0x3e9", @@ -11898,7 +11767,7 @@ { "pc": 747, "op": "SWAP1", - "gas": 2048417, + "gas": 2048435, "gasCost": 3, "depth": 1, "stack": [ @@ -11906,7 +11775,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "0x3e9", @@ -11917,7 +11786,7 @@ { "pc": 748, "op": "SSTORE", - "gas": 2048414, + "gas": 2048432, "gasCost": 20000, "depth": 1, "stack": [ @@ -11925,7 +11794,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "0x3e9", @@ -11940,7 +11809,7 @@ { "pc": 749, "op": "POP", - "gas": 2028414, + "gas": 2028432, "gasCost": 2, "depth": 1, "stack": [ @@ -11948,7 +11817,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "0x3e9" @@ -11957,7 +11826,7 @@ { "pc": 750, "op": "PUSH1", - "gas": 2028412, + "gas": 2028430, "gasCost": 3, "depth": 1, "stack": [ @@ -11965,7 +11834,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0" ] @@ -11973,7 +11842,7 @@ { "pc": 752, "op": "SWAP1", - "gas": 2028409, + "gas": 2028427, "gasCost": 3, "depth": 1, "stack": [ @@ -11981,7 +11850,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x0", "0x2" @@ -11990,7 +11859,7 @@ { "pc": 753, "op": "POP", - "gas": 2028406, + "gas": 2028424, "gasCost": 2, "depth": 1, "stack": [ @@ -11998,7 +11867,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x2", "0x0" @@ -12007,7 +11876,7 @@ { "pc": 754, "op": "SWAP2", - "gas": 2028404, + "gas": 2028422, "gasCost": 3, "depth": 1, "stack": [ @@ -12015,7 +11884,7 @@ "0x1cd", "0x3e8", "0x0", - "0x888", + "0x876", "0x3e9", "0x2" ] @@ -12023,7 +11892,7 @@ { "pc": 755, "op": "SWAP1", - "gas": 2028401, + "gas": 2028419, "gasCost": 3, "depth": 1, "stack": [ @@ -12033,13 +11902,13 @@ "0x0", "0x2", "0x3e9", - "0x888" + "0x876" ] }, { "pc": 756, "op": "POP", - "gas": 2028398, + "gas": 2028416, "gasCost": 2, "depth": 1, "stack": [ @@ -12048,14 +11917,14 @@ "0x3e8", "0x0", "0x2", - "0x888", + "0x876", "0x3e9" ] }, { "pc": 757, "op": "JUMP", - "gas": 2028396, + "gas": 2028414, "gasCost": 8, "depth": 1, "stack": [ @@ -12064,13 +11933,13 @@ "0x3e8", "0x0", "0x2", - "0x888" + "0x876" ] }, { - "pc": 2184, + "pc": 2166, "op": "JUMPDEST", - "gas": 2028388, + "gas": 2028406, "gasCost": 1, "depth": 1, "stack": [ @@ -12082,9 +11951,9 @@ ] }, { - "pc": 2185, + "pc": 2167, "op": "POP", - "gas": 2028387, + "gas": 2028405, "gasCost": 2, "depth": 1, "stack": [ @@ -12096,9 +11965,9 @@ ] }, { - "pc": 2186, + "pc": 2168, "op": "PUSH3", - "gas": 2028385, + "gas": 2028403, "gasCost": 3, "depth": 1, "stack": [ @@ -12109,9 +11978,9 @@ ] }, { - "pc": 2190, + "pc": 2172, "op": "PUSH3", - "gas": 2028382, + "gas": 2028400, "gasCost": 3, "depth": 1, "stack": [ @@ -12119,13 +11988,13 @@ "0x1cd", "0x3e8", "0x0", - "0x893" + "0x881" ] }, { - "pc": 2194, + "pc": 2176, "op": "JUMP", - "gas": 2028379, + "gas": 2028397, "gasCost": 8, "depth": 1, "stack": [ @@ -12133,14 +12002,14 @@ "0x1cd", "0x3e8", "0x0", - "0x893", + "0x881", "0x231" ] }, { "pc": 561, "op": "JUMPDEST", - "gas": 2028371, + "gas": 2028389, "gasCost": 1, "depth": 1, "stack": [ @@ -12148,13 +12017,13 @@ "0x1cd", "0x3e8", "0x0", - "0x893" + "0x881" ] }, { "pc": 562, "op": "PUSH1", - "gas": 2028370, + "gas": 2028388, "gasCost": 3, "depth": 1, "stack": [ @@ -12162,13 +12031,13 @@ "0x1cd", "0x3e8", "0x0", - "0x893" + "0x881" ] }, { "pc": 564, "op": "DUP1", - "gas": 2028367, + "gas": 2028385, "gasCost": 3, "depth": 1, "stack": [ @@ -12176,14 +12045,14 @@ "0x1cd", "0x3e8", "0x0", - "0x893", + "0x881", "0x0" ] }, { "pc": 565, "op": "PUSH1", - "gas": 2028364, + "gas": 2028382, "gasCost": 3, "depth": 1, "stack": [ @@ -12191,7 +12060,7 @@ "0x1cd", "0x3e8", "0x0", - "0x893", + "0x881", "0x0", "0x0" ] @@ -12199,7 +12068,7 @@ { "pc": 567, "op": "MLOAD", - "gas": 2028361, + "gas": 2028379, "gasCost": 3, "depth": 1, "stack": [ @@ -12207,7 +12076,7 @@ "0x1cd", "0x3e8", "0x0", - "0x893", + "0x881", "0x0", "0x0", "0x40" @@ -12216,7 +12085,7 @@ { "pc": 568, "op": "DUP1", - "gas": 2028358, + "gas": 2028376, "gasCost": 3, "depth": 1, "stack": [ @@ -12224,7 +12093,7 @@ "0x1cd", "0x3e8", "0x0", - "0x893", + "0x881", "0x0", "0x0", "0x80" @@ -12233,7 +12102,7 @@ { "pc": 569, "op": "PUSH1", - "gas": 2028355, + "gas": 2028373, "gasCost": 3, "depth": 1, "stack": [ @@ -12241,7 +12110,7 @@ "0x1cd", "0x3e8", "0x0", - "0x893", + "0x881", "0x0", "0x0", "0x80", @@ -12251,7 +12120,7 @@ { "pc": 571, "op": "ADD", - "gas": 2028352, + "gas": 2028370, "gasCost": 3, "depth": 1, "stack": [ @@ -12259,7 +12128,7 @@ "0x1cd", "0x3e8", "0x0", - "0x893", + "0x881", "0x0", "0x0", "0x80", @@ -12270,7 +12139,7 @@ { "pc": 572, "op": "PUSH1", - "gas": 2028349, + "gas": 2028367, "gasCost": 3, "depth": 1, "stack": [ @@ -12278,7 +12147,7 @@ "0x1cd", "0x3e8", "0x0", - "0x893", + "0x881", "0x0", "0x0", "0x80", @@ -12288,7 +12157,7 @@ { "pc": 574, "op": "MSTORE", - "gas": 2028346, + "gas": 2028364, "gasCost": 3, "depth": 1, "stack": [ @@ -12296,7 +12165,7 @@ "0x1cd", "0x3e8", "0x0", - "0x893", + "0x881", "0x0", "0x0", "0x80", @@ -12307,7 +12176,7 @@ { "pc": 575, "op": "DUP1", - "gas": 2028343, + "gas": 2028361, "gasCost": 3, "depth": 1, "stack": [ @@ -12315,7 +12184,7 @@ "0x1cd", "0x3e8", "0x0", - "0x893", + "0x881", "0x0", "0x0", "0x80" @@ -12324,7 +12193,7 @@ { "pc": 576, "op": "PUSH1", - "gas": 2028340, + "gas": 2028358, "gasCost": 3, "depth": 1, "stack": [ @@ -12332,7 +12201,7 @@ "0x1cd", "0x3e8", "0x0", - "0x893", + "0x881", "0x0", "0x0", "0x80", @@ -12342,7 +12211,7 @@ { "pc": 578, "op": "DUP2", - "gas": 2028337, + "gas": 2028355, "gasCost": 3, "depth": 1, "stack": [ @@ -12350,7 +12219,7 @@ "0x1cd", "0x3e8", "0x0", - "0x893", + "0x881", "0x0", "0x0", "0x80", @@ -12361,7 +12230,7 @@ { "pc": 579, "op": "MSTORE", - "gas": 2028334, + "gas": 2028352, "gasCost": 3, "depth": 1, "stack": [ @@ -12369,7 +12238,7 @@ "0x1cd", "0x3e8", "0x0", - "0x893", + "0x881", "0x0", "0x0", "0x80", @@ -12381,7 +12250,7 @@ { "pc": 580, "op": "PUSH1", - "gas": 2028331, + "gas": 2028349, "gasCost": 3, "depth": 1, "stack": [ @@ -12389,7 +12258,7 @@ "0x1cd", "0x3e8", "0x0", - "0x893", + "0x881", "0x0", "0x0", "0x80", @@ -12399,7 +12268,7 @@ { "pc": 582, "op": "ADD", - "gas": 2028328, + "gas": 2028346, "gasCost": 3, "depth": 1, "stack": [ @@ -12407,7 +12276,7 @@ "0x1cd", "0x3e8", "0x0", - "0x893", + "0x881", "0x0", "0x0", "0x80", @@ -12418,7 +12287,7 @@ { "pc": 583, "op": "PUSH32", - "gas": 2028325, + "gas": 2028343, "gasCost": 3, "depth": 1, "stack": [ @@ -12426,7 +12295,7 @@ "0x1cd", "0x3e8", "0x0", - "0x893", + "0x881", "0x0", "0x0", "0x80", @@ -12436,7 +12305,7 @@ { "pc": 616, "op": "DUP2", - "gas": 2028322, + "gas": 2028340, "gasCost": 3, "depth": 1, "stack": [ @@ -12444,7 +12313,7 @@ "0x1cd", "0x3e8", "0x0", - "0x893", + "0x881", "0x0", "0x0", "0x80", @@ -12455,7 +12324,7 @@ { "pc": 617, "op": "MSTORE", - "gas": 2028319, + "gas": 2028337, "gasCost": 3, "depth": 1, "stack": [ @@ -12463,7 +12332,7 @@ "0x1cd", "0x3e8", "0x0", - "0x893", + "0x881", "0x0", "0x0", "0x80", @@ -12475,7 +12344,7 @@ { "pc": 618, "op": "POP", - "gas": 2028316, + "gas": 2028334, "gasCost": 2, "depth": 1, "stack": [ @@ -12483,7 +12352,7 @@ "0x1cd", "0x3e8", "0x0", - "0x893", + "0x881", "0x0", "0x0", "0x80", @@ -12493,7 +12362,7 @@ { "pc": 619, "op": "SWAP1", - "gas": 2028314, + "gas": 2028332, "gasCost": 3, "depth": 1, "stack": [ @@ -12501,7 +12370,7 @@ "0x1cd", "0x3e8", "0x0", - "0x893", + "0x881", "0x0", "0x0", "0x80" @@ -12510,7 +12379,7 @@ { "pc": 620, "op": "POP", - "gas": 2028311, + "gas": 2028329, "gasCost": 2, "depth": 1, "stack": [ @@ -12518,7 +12387,7 @@ "0x1cd", "0x3e8", "0x0", - "0x893", + "0x881", "0x0", "0x80", "0x0" @@ -12527,7 +12396,7 @@ { "pc": 621, "op": "PUSH1", - "gas": 2028309, + "gas": 2028327, "gasCost": 3, "depth": 1, "stack": [ @@ -12535,7 +12404,7 @@ "0x1cd", "0x3e8", "0x0", - "0x893", + "0x881", "0x0", "0x80" ] @@ -12543,7 +12412,7 @@ { "pc": 623, "op": "DUP2", - "gas": 2028306, + "gas": 2028324, "gasCost": 3, "depth": 1, "stack": [ @@ -12551,7 +12420,7 @@ "0x1cd", "0x3e8", "0x0", - "0x893", + "0x881", "0x0", "0x80", "0x0" @@ -12560,7 +12429,7 @@ { "pc": 624, "op": "DUP1", - "gas": 2028303, + "gas": 2028321, "gasCost": 3, "depth": 1, "stack": [ @@ -12568,7 +12437,7 @@ "0x1cd", "0x3e8", "0x0", - "0x893", + "0x881", "0x0", "0x80", "0x0", @@ -12578,7 +12447,7 @@ { "pc": 625, "op": "MLOAD", - "gas": 2028300, + "gas": 2028318, "gasCost": 3, "depth": 1, "stack": [ @@ -12586,7 +12455,7 @@ "0x1cd", "0x3e8", "0x0", - "0x893", + "0x881", "0x0", "0x80", "0x0", @@ -12597,7 +12466,7 @@ { "pc": 626, "op": "SWAP1", - "gas": 2028297, + "gas": 2028315, "gasCost": 3, "depth": 1, "stack": [ @@ -12605,7 +12474,7 @@ "0x1cd", "0x3e8", "0x0", - "0x893", + "0x881", "0x0", "0x80", "0x0", @@ -12616,7 +12485,7 @@ { "pc": 627, "op": "PUSH1", - "gas": 2028294, + "gas": 2028312, "gasCost": 3, "depth": 1, "stack": [ @@ -12624,7 +12493,7 @@ "0x1cd", "0x3e8", "0x0", - "0x893", + "0x881", "0x0", "0x80", "0x0", @@ -12635,7 +12504,7 @@ { "pc": 629, "op": "ADD", - "gas": 2028291, + "gas": 2028309, "gasCost": 3, "depth": 1, "stack": [ @@ -12643,7 +12512,7 @@ "0x1cd", "0x3e8", "0x0", - "0x893", + "0x881", "0x0", "0x80", "0x0", @@ -12655,7 +12524,7 @@ { "pc": 630, "op": "KECCAK256", - "gas": 2028288, + "gas": 2028306, "gasCost": 36, "depth": 1, "stack": [ @@ -12663,7 +12532,7 @@ "0x1cd", "0x3e8", "0x0", - "0x893", + "0x881", "0x0", "0x80", "0x0", @@ -12674,7 +12543,7 @@ { "pc": 631, "op": "SWAP1", - "gas": 2028252, + "gas": 2028270, "gasCost": 3, "depth": 1, "stack": [ @@ -12682,7 +12551,7 @@ "0x1cd", "0x3e8", "0x0", - "0x893", + "0x881", "0x0", "0x80", "0x0", @@ -12692,7 +12561,7 @@ { "pc": 632, "op": "POP", - "gas": 2028249, + "gas": 2028267, "gasCost": 2, "depth": 1, "stack": [ @@ -12700,7 +12569,7 @@ "0x1cd", "0x3e8", "0x0", - "0x893", + "0x881", "0x0", "0x80", "0xb6e16d27ac5ab427a7f68900ac5559ce272dc6c37c82b3e052246c82244c50e4", @@ -12710,7 +12579,7 @@ { "pc": 633, "op": "DUP1", - "gas": 2028247, + "gas": 2028265, "gasCost": 3, "depth": 1, "stack": [ @@ -12718,7 +12587,7 @@ "0x1cd", "0x3e8", "0x0", - "0x893", + "0x881", "0x0", "0x80", "0xb6e16d27ac5ab427a7f68900ac5559ce272dc6c37c82b3e052246c82244c50e4" @@ -12727,7 +12596,7 @@ { "pc": 634, "op": "SWAP3", - "gas": 2028244, + "gas": 2028262, "gasCost": 3, "depth": 1, "stack": [ @@ -12735,7 +12604,7 @@ "0x1cd", "0x3e8", "0x0", - "0x893", + "0x881", "0x0", "0x80", "0xb6e16d27ac5ab427a7f68900ac5559ce272dc6c37c82b3e052246c82244c50e4", @@ -12745,7 +12614,7 @@ { "pc": 635, "op": "POP", - "gas": 2028241, + "gas": 2028259, "gasCost": 2, "depth": 1, "stack": [ @@ -12753,7 +12622,7 @@ "0x1cd", "0x3e8", "0x0", - "0x893", + "0x881", "0xb6e16d27ac5ab427a7f68900ac5559ce272dc6c37c82b3e052246c82244c50e4", "0x80", "0xb6e16d27ac5ab427a7f68900ac5559ce272dc6c37c82b3e052246c82244c50e4", @@ -12763,7 +12632,7 @@ { "pc": 636, "op": "POP", - "gas": 2028239, + "gas": 2028257, "gasCost": 2, "depth": 1, "stack": [ @@ -12771,7 +12640,7 @@ "0x1cd", "0x3e8", "0x0", - "0x893", + "0x881", "0xb6e16d27ac5ab427a7f68900ac5559ce272dc6c37c82b3e052246c82244c50e4", "0x80", "0xb6e16d27ac5ab427a7f68900ac5559ce272dc6c37c82b3e052246c82244c50e4" @@ -12780,7 +12649,7 @@ { "pc": 637, "op": "POP", - "gas": 2028237, + "gas": 2028255, "gasCost": 2, "depth": 1, "stack": [ @@ -12788,7 +12657,7 @@ "0x1cd", "0x3e8", "0x0", - "0x893", + "0x881", "0xb6e16d27ac5ab427a7f68900ac5559ce272dc6c37c82b3e052246c82244c50e4", "0x80" ] @@ -12796,7 +12665,7 @@ { "pc": 638, "op": "SWAP1", - "gas": 2028235, + "gas": 2028253, "gasCost": 3, "depth": 1, "stack": [ @@ -12804,14 +12673,14 @@ "0x1cd", "0x3e8", "0x0", - "0x893", + "0x881", "0xb6e16d27ac5ab427a7f68900ac5559ce272dc6c37c82b3e052246c82244c50e4" ] }, { "pc": 639, "op": "JUMP", - "gas": 2028232, + "gas": 2028250, "gasCost": 8, "depth": 1, "stack": [ @@ -12820,13 +12689,13 @@ "0x3e8", "0x0", "0xb6e16d27ac5ab427a7f68900ac5559ce272dc6c37c82b3e052246c82244c50e4", - "0x893" + "0x881" ] }, { - "pc": 2195, + "pc": 2177, "op": "JUMPDEST", - "gas": 2028224, + "gas": 2028242, "gasCost": 1, "depth": 1, "stack": [ @@ -12838,9 +12707,9 @@ ] }, { - "pc": 2196, + "pc": 2178, "op": "POP", - "gas": 2028223, + "gas": 2028241, "gasCost": 2, "depth": 1, "stack": [ @@ -12852,9 +12721,9 @@ ] }, { - "pc": 2197, + "pc": 2179, "op": "PUSH1", - "gas": 2028221, + "gas": 2028239, "gasCost": 3, "depth": 1, "stack": [ @@ -12865,9 +12734,9 @@ ] }, { - "pc": 2199, + "pc": 2181, "op": "DUP1", - "gas": 2028218, + "gas": 2028236, "gasCost": 3, "depth": 1, "stack": [ @@ -12879,9 +12748,9 @@ ] }, { - "pc": 2200, + "pc": 2182, "op": "SLOAD", - "gas": 2028215, + "gas": 2028233, "gasCost": 2100, "depth": 1, "stack": [ @@ -12899,9 +12768,9 @@ } }, { - "pc": 2201, + "pc": 2183, "op": "SWAP1", - "gas": 2026115, + "gas": 2026133, "gasCost": 3, "depth": 1, "stack": [ @@ -12914,9 +12783,9 @@ ] }, { - "pc": 2202, + "pc": 2184, "op": "PUSH2", - "gas": 2026112, + "gas": 2026130, "gasCost": 3, "depth": 1, "stack": [ @@ -12929,9 +12798,9 @@ ] }, { - "pc": 2205, + "pc": 2187, "op": "EXP", - "gas": 2026109, + "gas": 2026127, "gasCost": 10, "depth": 1, "stack": [ @@ -12945,9 +12814,9 @@ ] }, { - "pc": 2206, + "pc": 2188, "op": "SWAP1", - "gas": 2026099, + "gas": 2026117, "gasCost": 3, "depth": 1, "stack": [ @@ -12960,9 +12829,9 @@ ] }, { - "pc": 2207, + "pc": 2189, "op": "DIV", - "gas": 2026096, + "gas": 2026114, "gasCost": 5, "depth": 1, "stack": [ @@ -12975,9 +12844,9 @@ ] }, { - "pc": 2208, + "pc": 2190, "op": "PUSH20", - "gas": 2026091, + "gas": 2026109, "gasCost": 3, "depth": 1, "stack": [ @@ -12989,9 +12858,9 @@ ] }, { - "pc": 2229, + "pc": 2211, "op": "AND", - "gas": 2026088, + "gas": 2026106, "gasCost": 3, "depth": 1, "stack": [ @@ -13004,9 +12873,9 @@ ] }, { - "pc": 2230, + "pc": 2212, "op": "PUSH20", - "gas": 2026085, + "gas": 2026103, "gasCost": 3, "depth": 1, "stack": [ @@ -13018,9 +12887,9 @@ ] }, { - "pc": 2251, + "pc": 2233, "op": "AND", - "gas": 2026082, + "gas": 2026100, "gasCost": 3, "depth": 1, "stack": [ @@ -13033,9 +12902,9 @@ ] }, { - "pc": 2252, + "pc": 2234, "op": "PUSH4", - "gas": 2026079, + "gas": 2026097, "gasCost": 3, "depth": 1, "stack": [ @@ -13047,9 +12916,9 @@ ] }, { - "pc": 2257, + "pc": 2239, "op": "DUP4", - "gas": 2026076, + "gas": 2026094, "gasCost": 3, "depth": 1, "stack": [ @@ -13062,9 +12931,9 @@ ] }, { - "pc": 2258, + "pc": 2240, "op": "PUSH1", - "gas": 2026073, + "gas": 2026091, "gasCost": 3, "depth": 1, "stack": [ @@ -13078,9 +12947,9 @@ ] }, { - "pc": 2260, + "pc": 2242, "op": "MLOAD", - "gas": 2026070, + "gas": 2026088, "gasCost": 3, "depth": 1, "stack": [ @@ -13095,9 +12964,9 @@ ] }, { - "pc": 2261, + "pc": 2243, "op": "DUP3", - "gas": 2026067, + "gas": 2026085, "gasCost": 3, "depth": 1, "stack": [ @@ -13112,9 +12981,9 @@ ] }, { - "pc": 2262, + "pc": 2244, "op": "PUSH4", - "gas": 2026064, + "gas": 2026082, "gasCost": 3, "depth": 1, "stack": [ @@ -13130,9 +12999,9 @@ ] }, { - "pc": 2267, + "pc": 2249, "op": "AND", - "gas": 2026061, + "gas": 2026079, "gasCost": 3, "depth": 1, "stack": [ @@ -13149,9 +13018,9 @@ ] }, { - "pc": 2268, + "pc": 2250, "op": "PUSH1", - "gas": 2026058, + "gas": 2026076, "gasCost": 3, "depth": 1, "stack": [ @@ -13167,9 +13036,9 @@ ] }, { - "pc": 2270, + "pc": 2252, "op": "SHL", - "gas": 2026055, + "gas": 2026073, "gasCost": 3, "depth": 1, "stack": [ @@ -13186,9 +13055,9 @@ ] }, { - "pc": 2271, + "pc": 2253, "op": "DUP2", - "gas": 2026052, + "gas": 2026070, "gasCost": 3, "depth": 1, "stack": [ @@ -13204,9 +13073,9 @@ ] }, { - "pc": 2272, + "pc": 2254, "op": "MSTORE", - "gas": 2026049, + "gas": 2026067, "gasCost": 3, "depth": 1, "stack": [ @@ -13223,9 +13092,9 @@ ] }, { - "pc": 2273, + "pc": 2255, "op": "PUSH1", - "gas": 2026046, + "gas": 2026064, "gasCost": 3, "depth": 1, "stack": [ @@ -13240,9 +13109,9 @@ ] }, { - "pc": 2275, + "pc": 2257, "op": "ADD", - "gas": 2026043, + "gas": 2026061, "gasCost": 3, "depth": 1, "stack": [ @@ -13258,9 +13127,9 @@ ] }, { - "pc": 2276, + "pc": 2258, "op": "PUSH3", - "gas": 2026040, + "gas": 2026058, "gasCost": 3, "depth": 1, "stack": [ @@ -13275,9 +13144,9 @@ ] }, { - "pc": 2280, + "pc": 2262, "op": "SWAP2", - "gas": 2026037, + "gas": 2026055, "gasCost": 3, "depth": 1, "stack": [ @@ -13289,13 +13158,13 @@ "0xa0712d68", "0x3e8", "0xc4", - "0x8ef" + "0x8dd" ] }, { - "pc": 2281, + "pc": 2263, "op": "SWAP1", - "gas": 2026034, + "gas": 2026052, "gasCost": 3, "depth": 1, "stack": [ @@ -13305,15 +13174,15 @@ "0x0", "0x0", "0xa0712d68", - "0x8ef", + "0x8dd", "0xc4", "0x3e8" ] }, { - "pc": 2282, + "pc": 2264, "op": "PUSH3", - "gas": 2026031, + "gas": 2026049, "gasCost": 3, "depth": 1, "stack": [ @@ -13323,15 +13192,15 @@ "0x0", "0x0", "0xa0712d68", - "0x8ef", + "0x8dd", "0x3e8", "0xc4" ] }, { - "pc": 2286, + "pc": 2268, "op": "JUMP", - "gas": 2026028, + "gas": 2026046, "gasCost": 8, "depth": 1, "stack": [ @@ -13341,16 +13210,16 @@ "0x0", "0x0", "0xa0712d68", - "0x8ef", + "0x8dd", "0x3e8", "0xc4", - "0x997" + "0x975" ] }, { - "pc": 2455, + "pc": 2421, "op": "JUMPDEST", - "gas": 2026020, + "gas": 2026038, "gasCost": 1, "depth": 1, "stack": [ @@ -13360,15 +13229,15 @@ "0x0", "0x0", "0xa0712d68", - "0x8ef", + "0x8dd", "0x3e8", "0xc4" ] }, { - "pc": 2456, + "pc": 2422, "op": "PUSH1", - "gas": 2026019, + "gas": 2026037, "gasCost": 3, "depth": 1, "stack": [ @@ -13378,15 +13247,15 @@ "0x0", "0x0", "0xa0712d68", - "0x8ef", + "0x8dd", "0x3e8", "0xc4" ] }, { - "pc": 2458, + "pc": 2424, "op": "PUSH1", - "gas": 2026016, + "gas": 2026034, "gasCost": 3, "depth": 1, "stack": [ @@ -13396,16 +13265,16 @@ "0x0", "0x0", "0xa0712d68", - "0x8ef", + "0x8dd", "0x3e8", "0xc4", "0x0" ] }, { - "pc": 2460, + "pc": 2426, "op": "DUP3", - "gas": 2026013, + "gas": 2026031, "gasCost": 3, "depth": 1, "stack": [ @@ -13415,7 +13284,7 @@ "0x0", "0x0", "0xa0712d68", - "0x8ef", + "0x8dd", "0x3e8", "0xc4", "0x0", @@ -13423,9 +13292,9 @@ ] }, { - "pc": 2461, + "pc": 2427, "op": "ADD", - "gas": 2026010, + "gas": 2026028, "gasCost": 3, "depth": 1, "stack": [ @@ -13435,7 +13304,7 @@ "0x0", "0x0", "0xa0712d68", - "0x8ef", + "0x8dd", "0x3e8", "0xc4", "0x0", @@ -13444,9 +13313,9 @@ ] }, { - "pc": 2462, + "pc": 2428, "op": "SWAP1", - "gas": 2026007, + "gas": 2026025, "gasCost": 3, "depth": 1, "stack": [ @@ -13456,7 +13325,7 @@ "0x0", "0x0", "0xa0712d68", - "0x8ef", + "0x8dd", "0x3e8", "0xc4", "0x0", @@ -13464,9 +13333,9 @@ ] }, { - "pc": 2463, + "pc": 2429, "op": "POP", - "gas": 2026004, + "gas": 2026022, "gasCost": 2, "depth": 1, "stack": [ @@ -13476,7 +13345,7 @@ "0x0", "0x0", "0xa0712d68", - "0x8ef", + "0x8dd", "0x3e8", "0xc4", "0xe4", @@ -13484,9 +13353,9 @@ ] }, { - "pc": 2464, + "pc": 2430, "op": "PUSH3", - "gas": 2026002, + "gas": 2026020, "gasCost": 3, "depth": 1, "stack": [ @@ -13496,16 +13365,16 @@ "0x0", "0x0", "0xa0712d68", - "0x8ef", + "0x8dd", "0x3e8", "0xc4", "0xe4" ] }, { - "pc": 2468, + "pc": 2434, "op": "PUSH1", - "gas": 2025999, + "gas": 2026017, "gasCost": 3, "depth": 1, "stack": [ @@ -13515,17 +13384,17 @@ "0x0", "0x0", "0xa0712d68", - "0x8ef", + "0x8dd", "0x3e8", "0xc4", "0xe4", - "0x9ae" + "0x98c" ] }, { - "pc": 2470, + "pc": 2436, "op": "DUP4", - "gas": 2025996, + "gas": 2026014, "gasCost": 3, "depth": 1, "stack": [ @@ -13535,18 +13404,18 @@ "0x0", "0x0", "0xa0712d68", - "0x8ef", + "0x8dd", "0x3e8", "0xc4", "0xe4", - "0x9ae", + "0x98c", "0x0" ] }, { - "pc": 2471, + "pc": 2437, "op": "ADD", - "gas": 2025993, + "gas": 2026011, "gasCost": 3, "depth": 1, "stack": [ @@ -13556,19 +13425,19 @@ "0x0", "0x0", "0xa0712d68", - "0x8ef", + "0x8dd", "0x3e8", "0xc4", "0xe4", - "0x9ae", + "0x98c", "0x0", "0xc4" ] }, { - "pc": 2472, + "pc": 2438, "op": "DUP5", - "gas": 2025990, + "gas": 2026008, "gasCost": 3, "depth": 1, "stack": [ @@ -13578,18 +13447,18 @@ "0x0", "0x0", "0xa0712d68", - "0x8ef", + "0x8dd", "0x3e8", "0xc4", "0xe4", - "0x9ae", + "0x98c", "0xc4" ] }, { - "pc": 2473, + "pc": 2439, "op": "PUSH3", - "gas": 2025987, + "gas": 2026005, "gasCost": 3, "depth": 1, "stack": [ @@ -13599,19 +13468,19 @@ "0x0", "0x0", "0xa0712d68", - "0x8ef", + "0x8dd", "0x3e8", "0xc4", "0xe4", - "0x9ae", + "0x98c", "0xc4", "0x3e8" ] }, { - "pc": 2477, + "pc": 2443, "op": "JUMP", - "gas": 2025984, + "gas": 2026002, "gasCost": 8, "depth": 1, "stack": [ @@ -13621,20 +13490,20 @@ "0x0", "0x0", "0xa0712d68", - "0x8ef", + "0x8dd", "0x3e8", "0xc4", "0xe4", - "0x9ae", + "0x98c", "0xc4", "0x3e8", - "0x986" + "0x964" ] }, { - "pc": 2438, + "pc": 2404, "op": "JUMPDEST", - "gas": 2025976, + "gas": 2025994, "gasCost": 1, "depth": 1, "stack": [ @@ -13644,19 +13513,19 @@ "0x0", "0x0", "0xa0712d68", - "0x8ef", + "0x8dd", "0x3e8", "0xc4", "0xe4", - "0x9ae", + "0x98c", "0xc4", "0x3e8" ] }, { - "pc": 2439, + "pc": 2405, "op": "PUSH3", - "gas": 2025975, + "gas": 2025993, "gasCost": 3, "depth": 1, "stack": [ @@ -13666,19 +13535,19 @@ "0x0", "0x0", "0xa0712d68", - "0x8ef", + "0x8dd", "0x3e8", "0xc4", "0xe4", - "0x9ae", + "0x98c", "0xc4", "0x3e8" ] }, { - "pc": 2443, + "pc": 2409, "op": "DUP2", - "gas": 2025972, + "gas": 2025990, "gasCost": 3, "depth": 1, "stack": [ @@ -13688,20 +13557,20 @@ "0x0", "0x0", "0xa0712d68", - "0x8ef", + "0x8dd", "0x3e8", "0xc4", "0xe4", - "0x9ae", + "0x98c", "0xc4", "0x3e8", - "0x991" + "0x96f" ] }, { - "pc": 2444, + "pc": 2410, "op": "PUSH3", - "gas": 2025969, + "gas": 2025987, "gasCost": 3, "depth": 1, "stack": [ @@ -13711,21 +13580,21 @@ "0x0", "0x0", "0xa0712d68", - "0x8ef", + "0x8dd", "0x3e8", "0xc4", "0xe4", - "0x9ae", + "0x98c", "0xc4", "0x3e8", - "0x991", + "0x96f", "0x3e8" ] }, { - "pc": 2448, + "pc": 2414, "op": "JUMP", - "gas": 2025966, + "gas": 2025984, "gasCost": 8, "depth": 1, "stack": [ @@ -13735,22 +13604,22 @@ "0x0", "0x0", "0xa0712d68", - "0x8ef", + "0x8dd", "0x3e8", "0xc4", "0xe4", - "0x9ae", + "0x98c", "0xc4", "0x3e8", - "0x991", + "0x96f", "0x3e8", - "0x97c" + "0x95a" ] }, { - "pc": 2428, + "pc": 2394, "op": "JUMPDEST", - "gas": 2025958, + "gas": 2025976, "gasCost": 1, "depth": 1, "stack": [ @@ -13760,21 +13629,21 @@ "0x0", "0x0", "0xa0712d68", - "0x8ef", + "0x8dd", "0x3e8", "0xc4", "0xe4", - "0x9ae", + "0x98c", "0xc4", "0x3e8", - "0x991", + "0x96f", "0x3e8" ] }, { - "pc": 2429, + "pc": 2395, "op": "PUSH1", - "gas": 2025957, + "gas": 2025975, "gasCost": 3, "depth": 1, "stack": [ @@ -13784,21 +13653,21 @@ "0x0", "0x0", "0xa0712d68", - "0x8ef", + "0x8dd", "0x3e8", "0xc4", "0xe4", - "0x9ae", + "0x98c", "0xc4", "0x3e8", - "0x991", + "0x96f", "0x3e8" ] }, { - "pc": 2431, + "pc": 2397, "op": "DUP2", - "gas": 2025954, + "gas": 2025972, "gasCost": 3, "depth": 1, "stack": [ @@ -13808,22 +13677,22 @@ "0x0", "0x0", "0xa0712d68", - "0x8ef", + "0x8dd", "0x3e8", "0xc4", "0xe4", - "0x9ae", + "0x98c", "0xc4", "0x3e8", - "0x991", + "0x96f", "0x3e8", "0x0" ] }, { - "pc": 2432, + "pc": 2398, "op": "SWAP1", - "gas": 2025951, + "gas": 2025969, "gasCost": 3, "depth": 1, "stack": [ @@ -13833,23 +13702,23 @@ "0x0", "0x0", "0xa0712d68", - "0x8ef", + "0x8dd", "0x3e8", "0xc4", "0xe4", - "0x9ae", + "0x98c", "0xc4", "0x3e8", - "0x991", + "0x96f", "0x3e8", "0x0", "0x3e8" ] }, { - "pc": 2433, + "pc": 2399, "op": "POP", - "gas": 2025948, + "gas": 2025966, "gasCost": 2, "depth": 1, "stack": [ @@ -13859,23 +13728,23 @@ "0x0", "0x0", "0xa0712d68", - "0x8ef", + "0x8dd", "0x3e8", "0xc4", "0xe4", - "0x9ae", + "0x98c", "0xc4", "0x3e8", - "0x991", + "0x96f", "0x3e8", "0x3e8", "0x0" ] }, { - "pc": 2434, + "pc": 2400, "op": "SWAP2", - "gas": 2025946, + "gas": 2025964, "gasCost": 3, "depth": 1, "stack": [ @@ -13885,22 +13754,22 @@ "0x0", "0x0", "0xa0712d68", - "0x8ef", + "0x8dd", "0x3e8", "0xc4", "0xe4", - "0x9ae", + "0x98c", "0xc4", "0x3e8", - "0x991", + "0x96f", "0x3e8", "0x3e8" ] }, { - "pc": 2435, + "pc": 2401, "op": "SWAP1", - "gas": 2025943, + "gas": 2025961, "gasCost": 3, "depth": 1, "stack": [ @@ -13910,22 +13779,22 @@ "0x0", "0x0", "0xa0712d68", - "0x8ef", + "0x8dd", "0x3e8", "0xc4", "0xe4", - "0x9ae", + "0x98c", "0xc4", "0x3e8", "0x3e8", "0x3e8", - "0x991" + "0x96f" ] }, { - "pc": 2436, + "pc": 2402, "op": "POP", - "gas": 2025940, + "gas": 2025958, "gasCost": 2, "depth": 1, "stack": [ @@ -13935,22 +13804,22 @@ "0x0", "0x0", "0xa0712d68", - "0x8ef", + "0x8dd", "0x3e8", "0xc4", "0xe4", - "0x9ae", + "0x98c", "0xc4", "0x3e8", "0x3e8", - "0x991", + "0x96f", "0x3e8" ] }, { - "pc": 2437, + "pc": 2403, "op": "JUMP", - "gas": 2025938, + "gas": 2025956, "gasCost": 8, "depth": 1, "stack": [ @@ -13960,21 +13829,21 @@ "0x0", "0x0", "0xa0712d68", - "0x8ef", + "0x8dd", "0x3e8", "0xc4", "0xe4", - "0x9ae", + "0x98c", "0xc4", "0x3e8", "0x3e8", - "0x991" + "0x96f" ] }, { - "pc": 2449, + "pc": 2415, "op": "JUMPDEST", - "gas": 2025930, + "gas": 2025948, "gasCost": 1, "depth": 1, "stack": [ @@ -13984,20 +13853,20 @@ "0x0", "0x0", "0xa0712d68", - "0x8ef", + "0x8dd", "0x3e8", "0xc4", "0xe4", - "0x9ae", + "0x98c", "0xc4", "0x3e8", "0x3e8" ] }, { - "pc": 2450, + "pc": 2416, "op": "DUP3", - "gas": 2025929, + "gas": 2025947, "gasCost": 3, "depth": 1, "stack": [ @@ -14007,20 +13876,20 @@ "0x0", "0x0", "0xa0712d68", - "0x8ef", + "0x8dd", "0x3e8", "0xc4", "0xe4", - "0x9ae", + "0x98c", "0xc4", "0x3e8", "0x3e8" ] }, { - "pc": 2451, + "pc": 2417, "op": "MSTORE", - "gas": 2025926, + "gas": 2025944, "gasCost": 3, "depth": 1, "stack": [ @@ -14030,11 +13899,11 @@ "0x0", "0x0", "0xa0712d68", - "0x8ef", + "0x8dd", "0x3e8", "0xc4", "0xe4", - "0x9ae", + "0x98c", "0xc4", "0x3e8", "0x3e8", @@ -14042,9 +13911,9 @@ ] }, { - "pc": 2452, + "pc": 2418, "op": "POP", - "gas": 2025923, + "gas": 2025941, "gasCost": 2, "depth": 1, "stack": [ @@ -14054,19 +13923,19 @@ "0x0", "0x0", "0xa0712d68", - "0x8ef", + "0x8dd", "0x3e8", "0xc4", "0xe4", - "0x9ae", + "0x98c", "0xc4", "0x3e8" ] }, { - "pc": 2453, + "pc": 2419, "op": "POP", - "gas": 2025921, + "gas": 2025939, "gasCost": 2, "depth": 1, "stack": [ @@ -14076,18 +13945,18 @@ "0x0", "0x0", "0xa0712d68", - "0x8ef", + "0x8dd", "0x3e8", "0xc4", "0xe4", - "0x9ae", + "0x98c", "0xc4" ] }, { - "pc": 2454, + "pc": 2420, "op": "JUMP", - "gas": 2025919, + "gas": 2025937, "gasCost": 8, "depth": 1, "stack": [ @@ -14097,17 +13966,17 @@ "0x0", "0x0", "0xa0712d68", - "0x8ef", + "0x8dd", "0x3e8", "0xc4", "0xe4", - "0x9ae" + "0x98c" ] }, { - "pc": 2478, + "pc": 2444, "op": "JUMPDEST", - "gas": 2025911, + "gas": 2025929, "gasCost": 1, "depth": 1, "stack": [ @@ -14117,16 +13986,16 @@ "0x0", "0x0", "0xa0712d68", - "0x8ef", + "0x8dd", "0x3e8", "0xc4", "0xe4" ] }, { - "pc": 2479, + "pc": 2445, "op": "SWAP3", - "gas": 2025910, + "gas": 2025928, "gasCost": 3, "depth": 1, "stack": [ @@ -14136,16 +14005,16 @@ "0x0", "0x0", "0xa0712d68", - "0x8ef", + "0x8dd", "0x3e8", "0xc4", "0xe4" ] }, { - "pc": 2480, + "pc": 2446, "op": "SWAP2", - "gas": 2025907, + "gas": 2025925, "gasCost": 3, "depth": 1, "stack": [ @@ -14158,13 +14027,13 @@ "0xe4", "0x3e8", "0xc4", - "0x8ef" + "0x8dd" ] }, { - "pc": 2481, + "pc": 2447, "op": "POP", - "gas": 2025904, + "gas": 2025922, "gasCost": 2, "depth": 1, "stack": [ @@ -14175,15 +14044,15 @@ "0x0", "0xa0712d68", "0xe4", - "0x8ef", + "0x8dd", "0xc4", "0x3e8" ] }, { - "pc": 2482, + "pc": 2448, "op": "POP", - "gas": 2025902, + "gas": 2025920, "gasCost": 2, "depth": 1, "stack": [ @@ -14194,14 +14063,14 @@ "0x0", "0xa0712d68", "0xe4", - "0x8ef", + "0x8dd", "0xc4" ] }, { - "pc": 2483, + "pc": 2449, "op": "JUMP", - "gas": 2025900, + "gas": 2025918, "gasCost": 8, "depth": 1, "stack": [ @@ -14212,13 +14081,13 @@ "0x0", "0xa0712d68", "0xe4", - "0x8ef" + "0x8dd" ] }, { - "pc": 2287, + "pc": 2269, "op": "JUMPDEST", - "gas": 2025892, + "gas": 2025910, "gasCost": 1, "depth": 1, "stack": [ @@ -14232,9 +14101,9 @@ ] }, { - "pc": 2288, + "pc": 2270, "op": "PUSH1", - "gas": 2025891, + "gas": 2025909, "gasCost": 3, "depth": 1, "stack": [ @@ -14248,9 +14117,9 @@ ] }, { - "pc": 2290, + "pc": 2272, "op": "PUSH1", - "gas": 2025888, + "gas": 2025906, "gasCost": 3, "depth": 1, "stack": [ @@ -14265,9 +14134,9 @@ ] }, { - "pc": 2292, + "pc": 2274, "op": "MLOAD", - "gas": 2025885, + "gas": 2025903, "gasCost": 3, "depth": 1, "stack": [ @@ -14283,9 +14152,9 @@ ] }, { - "pc": 2293, + "pc": 2275, "op": "DUP1", - "gas": 2025882, + "gas": 2025900, "gasCost": 3, "depth": 1, "stack": [ @@ -14301,9 +14170,9 @@ ] }, { - "pc": 2294, + "pc": 2276, "op": "DUP4", - "gas": 2025879, + "gas": 2025897, "gasCost": 3, "depth": 1, "stack": [ @@ -14320,9 +14189,9 @@ ] }, { - "pc": 2295, + "pc": 2277, "op": "SUB", - "gas": 2025876, + "gas": 2025894, "gasCost": 3, "depth": 1, "stack": [ @@ -14340,9 +14209,9 @@ ] }, { - "pc": 2296, + "pc": 2278, "op": "DUP2", - "gas": 2025873, + "gas": 2025891, "gasCost": 3, "depth": 1, "stack": [ @@ -14359,9 +14228,9 @@ ] }, { - "pc": 2297, + "pc": 2279, "op": "PUSH1", - "gas": 2025870, + "gas": 2025888, "gasCost": 3, "depth": 1, "stack": [ @@ -14379,9 +14248,9 @@ ] }, { - "pc": 2299, + "pc": 2281, "op": "DUP8", - "gas": 2025867, + "gas": 2025885, "gasCost": 3, "depth": 1, "stack": [ @@ -14400,10 +14269,10 @@ ] }, { - "pc": 2300, - "op": "DUP1", - "gas": 2025864, - "gasCost": 3, + "pc": 2282, + "op": "GAS", + "gas": 2025882, + "gasCost": 2, "depth": 1, "stack": [ "0xa0712d68", @@ -14422,10 +14291,10 @@ ] }, { - "pc": 2301, - "op": "EXTCODESIZE", - "gas": 2025861, - "gasCost": 100, + "pc": 2283, + "op": "CALL", + "gas": 2025880, + "gasCost": 1994228, "depth": 1, "stack": [ "0xa0712d68", @@ -14441,13 +14310,13 @@ "0xc0", "0x0", "0x0", - "0x0" + "0x1ee998" ] }, { - "pc": 2302, + "pc": 2284, "op": "ISZERO", - "gas": 2025761, + "gas": 2025780, "gasCost": 3, "depth": 1, "stack": [ @@ -14458,19 +14327,13 @@ "0x0", "0xa0712d68", "0xe4", - "0x20", - "0xc0", - "0x24", - "0xc0", - "0x0", - "0x0", - "0x0" + "0x1" ] }, { - "pc": 2303, + "pc": 2285, "op": "DUP1", - "gas": 2025758, + "gas": 2025777, "gasCost": 3, "depth": 1, "stack": [ @@ -14481,19 +14344,13 @@ "0x0", "0xa0712d68", "0xe4", - "0x20", - "0xc0", - "0x24", - "0xc0", - "0x0", - "0x0", - "0x1" + "0x0" ] }, { - "pc": 2304, + "pc": 2286, "op": "ISZERO", - "gas": 2025755, + "gas": 2025774, "gasCost": 3, "depth": 1, "stack": [ @@ -14504,20 +14361,14 @@ "0x0", "0xa0712d68", "0xe4", - "0x20", - "0xc0", - "0x24", - "0xc0", - "0x0", "0x0", - "0x1", - "0x1" + "0x0" ] }, { - "pc": 2305, + "pc": 2287, "op": "PUSH3", - "gas": 2025752, + "gas": 2025771, "gasCost": 3, "depth": 1, "stack": [ @@ -14528,21 +14379,51 @@ "0x0", "0xa0712d68", "0xe4", - "0x20", - "0xc0", - "0x24", - "0xc0", "0x0", + "0x1" + ] + }, + { + "pc": 2291, + "op": "JUMPI", + "gas": 2025768, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa0712d68", + "0x1cd", + "0x3e8", + "0x0", + "0x0", + "0xa0712d68", + "0xe4", "0x0", "0x1", + "0x8fd" + ] + }, + { + "pc": 2301, + "op": "JUMPDEST", + "gas": 2025758, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa0712d68", + "0x1cd", + "0x3e8", + "0x0", + "0x0", + "0xa0712d68", + "0xe4", "0x0" ] }, { - "pc": 2309, - "op": "JUMPI", - "gas": 2025749, - "gasCost": 10, + "pc": 2302, + "op": "POP", + "gas": 2025757, + "gasCost": 2, "depth": 1, "stack": [ "0xa0712d68", @@ -14552,21 +14433,71 @@ "0x0", "0xa0712d68", "0xe4", - "0x20", - "0xc0", - "0x24", - "0xc0", + "0x0" + ] + }, + { + "pc": 2303, + "op": "POP", + "gas": 2025755, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa0712d68", + "0x1cd", + "0x3e8", "0x0", "0x0", - "0x1", + "0xa0712d68", + "0xe4" + ] + }, + { + "pc": 2304, + "op": "POP", + "gas": 2025753, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa0712d68", + "0x1cd", + "0x3e8", "0x0", - "0x90a" + "0x0", + "0xa0712d68" ] }, { - "pc": 2310, + "pc": 2305, + "op": "POP", + "gas": 2025751, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa0712d68", + "0x1cd", + "0x3e8", + "0x0", + "0x0" + ] + }, + { + "pc": 2306, "op": "PUSH1", - "gas": 2025739, + "gas": 2025749, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0712d68", + "0x1cd", + "0x3e8", + "0x0" + ] + }, + { + "pc": 2308, + "op": "MLOAD", + "gas": 2025746, "gasCost": 3, "depth": 1, "stack": [ @@ -14574,22 +14505,42 @@ "0x1cd", "0x3e8", "0x0", - "0x0", + "0x40" + ] + }, + { + "pc": 2309, + "op": "RETURNDATASIZE", + "gas": 2025743, + "gasCost": 2, + "depth": 1, + "stack": [ "0xa0712d68", - "0xe4", - "0x20", - "0xc0", - "0x24", - "0xc0", + "0x1cd", + "0x3e8", "0x0", + "0xc0" + ] + }, + { + "pc": 2310, + "op": "PUSH1", + "gas": 2025741, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0712d68", + "0x1cd", + "0x3e8", "0x0", - "0x1" + "0xc0", + "0x0" ] }, { "pc": 2312, - "op": "DUP1", - "gas": 2025736, + "op": "NOT", + "gas": 2025738, "gasCost": 3, "depth": 1, "stack": [ @@ -14597,40 +14548,610 @@ "0x1cd", "0x3e8", "0x0", + "0xc0", "0x0", + "0x1f" + ] + }, + { + "pc": 2313, + "op": "PUSH1", + "gas": 2025735, + "gasCost": 3, + "depth": 1, + "stack": [ "0xa0712d68", - "0xe4", - "0x20", + "0x1cd", + "0x3e8", + "0x0", "0xc0", - "0x24", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" + ] + }, + { + "pc": 2315, + "op": "DUP3", + "gas": 2025732, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0712d68", + "0x1cd", + "0x3e8", + "0x0", "0xc0", "0x0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x1f" + ] + }, + { + "pc": 2316, + "op": "ADD", + "gas": 2025729, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0712d68", + "0x1cd", + "0x3e8", + "0x0", + "0xc0", "0x0", - "0x1", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x1f", "0x0" ] }, { - "pc": 2313, - "op": "REVERT", - "gas": 2025733, - "gasCost": 0, + "pc": 2317, + "op": "AND", + "gas": 2025726, + "gasCost": 3, "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", + "0xc0", "0x0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x1f" + ] + }, + { + "pc": 2318, + "op": "DUP3", + "gas": 2025723, + "gasCost": 3, + "depth": 1, + "stack": [ "0xa0712d68", - "0xe4", - "0x20", + "0x1cd", + "0x3e8", + "0x0", "0xc0", - "0x24", + "0x0", + "0x0" + ] + }, + { + "pc": 2319, + "op": "ADD", + "gas": 2025720, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0712d68", + "0x1cd", + "0x3e8", + "0x0", "0xc0", "0x0", "0x0", - "0x1", + "0xc0" + ] + }, + { + "pc": 2320, + "op": "DUP1", + "gas": 2025717, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0712d68", + "0x1cd", + "0x3e8", + "0x0", + "0xc0", + "0x0", + "0xc0" + ] + }, + { + "pc": 2321, + "op": "PUSH1", + "gas": 2025714, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0712d68", + "0x1cd", + "0x3e8", + "0x0", + "0xc0", + "0x0", + "0xc0", + "0xc0" + ] + }, + { + "pc": 2323, + "op": "MSTORE", + "gas": 2025711, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0712d68", + "0x1cd", + "0x3e8", + "0x0", + "0xc0", + "0x0", + "0xc0", + "0xc0", + "0x40" + ] + }, + { + "pc": 2324, + "op": "POP", + "gas": 2025708, + "gasCost": 2, + "depth": 1, + "stack": [ + "0xa0712d68", + "0x1cd", + "0x3e8", + "0x0", + "0xc0", + "0x0", + "0xc0" + ] + }, + { + "pc": 2325, + "op": "DUP2", + "gas": 2025706, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0712d68", + "0x1cd", + "0x3e8", + "0x0", + "0xc0", + "0x0" + ] + }, + { + "pc": 2326, + "op": "ADD", + "gas": 2025703, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0712d68", + "0x1cd", + "0x3e8", + "0x0", + "0xc0", + "0x0", + "0xc0" + ] + }, + { + "pc": 2327, + "op": "SWAP1", + "gas": 2025700, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0712d68", + "0x1cd", + "0x3e8", + "0x0", + "0xc0", + "0xc0" + ] + }, + { + "pc": 2328, + "op": "PUSH3", + "gas": 2025697, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0712d68", + "0x1cd", + "0x3e8", + "0x0", + "0xc0", + "0xc0" + ] + }, + { + "pc": 2332, + "op": "SWAP2", + "gas": 2025694, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0712d68", + "0x1cd", + "0x3e8", + "0x0", + "0xc0", + "0xc0", + "0x923" + ] + }, + { + "pc": 2333, + "op": "SWAP1", + "gas": 2025691, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0712d68", + "0x1cd", + "0x3e8", + "0x0", + "0x923", + "0xc0", + "0xc0" + ] + }, + { + "pc": 2334, + "op": "PUSH3", + "gas": 2025688, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0712d68", + "0x1cd", + "0x3e8", + "0x0", + "0x923", + "0xc0", + "0xc0" + ] + }, + { + "pc": 2338, + "op": "JUMP", + "gas": 2025685, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa0712d68", + "0x1cd", + "0x3e8", + "0x0", + "0x923", + "0xc0", + "0xc0", + "0xc69" + ] + }, + { + "pc": 3177, + "op": "JUMPDEST", + "gas": 2025677, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa0712d68", + "0x1cd", + "0x3e8", + "0x0", + "0x923", + "0xc0", + "0xc0" + ] + }, + { + "pc": 3178, + "op": "PUSH1", + "gas": 2025676, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0712d68", + "0x1cd", + "0x3e8", + "0x0", + "0x923", + "0xc0", + "0xc0" + ] + }, + { + "pc": 3180, + "op": "PUSH1", + "gas": 2025673, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0712d68", + "0x1cd", + "0x3e8", + "0x0", + "0x923", + "0xc0", + "0xc0", + "0x0" + ] + }, + { + "pc": 3182, + "op": "DUP3", + "gas": 2025670, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0712d68", + "0x1cd", + "0x3e8", + "0x0", + "0x923", + "0xc0", + "0xc0", + "0x0", + "0x20" + ] + }, + { + "pc": 3183, + "op": "DUP5", + "gas": 2025667, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0712d68", + "0x1cd", + "0x3e8", + "0x0", + "0x923", + "0xc0", + "0xc0", + "0x0", + "0x20", + "0xc0" + ] + }, + { + "pc": 3184, + "op": "SUB", + "gas": 2025664, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0712d68", + "0x1cd", + "0x3e8", + "0x0", + "0x923", + "0xc0", + "0xc0", + "0x0", + "0x20", + "0xc0", + "0xc0" + ] + }, + { + "pc": 3185, + "op": "SLT", + "gas": 2025661, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0712d68", + "0x1cd", + "0x3e8", + "0x0", + "0x923", + "0xc0", + "0xc0", + "0x0", + "0x20", + "0x0" + ] + }, + { + "pc": 3186, + "op": "ISZERO", + "gas": 2025658, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0712d68", + "0x1cd", + "0x3e8", + "0x0", + "0x923", + "0xc0", + "0xc0", + "0x0", + "0x1" + ] + }, + { + "pc": 3187, + "op": "PUSH3", + "gas": 2025655, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0712d68", + "0x1cd", + "0x3e8", + "0x0", + "0x923", + "0xc0", + "0xc0", + "0x0", + "0x0" + ] + }, + { + "pc": 3191, + "op": "JUMPI", + "gas": 2025652, + "gasCost": 10, + "depth": 1, + "stack": [ + "0xa0712d68", + "0x1cd", + "0x3e8", + "0x0", + "0x923", + "0xc0", + "0xc0", + "0x0", + "0x0", + "0xc82" + ] + }, + { + "pc": 3192, + "op": "PUSH3", + "gas": 2025642, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0712d68", + "0x1cd", + "0x3e8", + "0x0", + "0x923", + "0xc0", + "0xc0", + "0x0" + ] + }, + { + "pc": 3196, + "op": "PUSH3", + "gas": 2025639, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0712d68", + "0x1cd", + "0x3e8", + "0x0", + "0x923", + "0xc0", + "0xc0", + "0x0", + "0xc81" + ] + }, + { + "pc": 3200, + "op": "JUMP", + "gas": 2025636, + "gasCost": 8, + "depth": 1, + "stack": [ + "0xa0712d68", + "0x1cd", + "0x3e8", + "0x0", + "0x923", + "0xc0", + "0xc0", + "0x0", + "0xc81", + "0x9d4" + ] + }, + { + "pc": 2516, + "op": "JUMPDEST", + "gas": 2025628, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa0712d68", + "0x1cd", + "0x3e8", + "0x0", + "0x923", + "0xc0", + "0xc0", + "0x0", + "0xc81" + ] + }, + { + "pc": 2517, + "op": "PUSH1", + "gas": 2025627, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0712d68", + "0x1cd", + "0x3e8", + "0x0", + "0x923", + "0xc0", + "0xc0", + "0x0", + "0xc81" + ] + }, + { + "pc": 2519, + "op": "DUP1", + "gas": 2025624, + "gasCost": 3, + "depth": 1, + "stack": [ + "0xa0712d68", + "0x1cd", + "0x3e8", + "0x0", + "0x923", + "0xc0", + "0xc0", + "0x0", + "0xc81", + "0x0" + ] + }, + { + "pc": 2520, + "op": "REVERT", + "gas": 2025621, + "gasCost": 0, + "depth": 1, + "stack": [ + "0xa0712d68", + "0x1cd", + "0x3e8", + "0x0", + "0x923", + "0xc0", + "0xc0", + "0x0", + "0xc81", "0x0", "0x0" ] diff --git a/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint.prestateDiffTracer.json b/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint.prestateDiffTracer.json index a17694aac..3183d30fb 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint.prestateDiffTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint.prestateDiffTracer.json @@ -1,20 +1,20 @@ { "post": { "0x0000000000000000000000000000000000000000": { - "balance": "0x1b648c9" + "balance": "0x3d69d9" }, "OWNER.address": { - "balance": "0x361049155a32982d79", - "nonce": 81 + "balance": "0x10f08c21e44d69a7a96", + "nonce": 9 } }, "pre": { "0x0000000000000000000000000000000000000000": { - "balance": "0x1b526ae" + "balance": "0x3c474e" }, "OWNER.address": { - "balance": "0x361049155acb1a0715", - "nonce": 80 + "balance": "0x10f08c229bfb4db5c42", + "nonce": 8 } } } \ No newline at end of file diff --git a/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint.prestateTracer.json b/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint.prestateTracer.json index 111da9391..58fc2ebab 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint.prestateTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint.prestateTracer.json @@ -1,19 +1,19 @@ { "0x0000000000000000000000000000000000000000": { - "balance": "0x1b526ae" - }, - "OWNER.address": { - "balance": "0x361049155acb1a0715", - "nonce": 80 + "balance": "0x3c474e" }, "Tracer.address": { "balance": "0x0", - "code": "0x60806040523480156200001157600080fd5b5060043610620000ac5760003560e01c80638bfe44ff116200006f5780638bfe44ff14620001975780639295436214620001a3578063a0712d6814620001af578063b69ef8a814620001e5578063c9353cb5146200020757620000ac565b806312065fe014620000b15780631c71706914620000d35780631c93908c14620000f55780633aa18088146200012b5780637f29c3941462000161575b600080fd5b620000bb62000227565b604051620000ca919062000997565b60405180910390f35b620000dd62000231565b604051620000ec9190620009cf565b60405180910390f35b6200011360048036038101906200010d919062000a2c565b62000280565b60405162000122919062000997565b60405180910390f35b62000149600480360381019062000143919062000a2c565b620002f6565b60405162000158919062000997565b60405180910390f35b6200017f600480360381019062000179919062000a2c565b620004ae565b6040516200018e919062000997565b60405180910390f35b620001a162000783565b005b620001ad620007c5565b005b620001cd6004803603810190620001c7919062000a2c565b62000802565b604051620001dc919062000997565b60405180910390f35b620001ef6200094f565b604051620001fe919062000997565b60405180910390f35b6200022560048036038101906200021f919062000ac3565b62000955565b005b6000600154905090565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620002ca919062000b56565b60405180910390a28160036000828254620002e6919062000bb7565b9250508190555060029050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405162000340919062000c64565b60405180910390a260405162000356906200096e565b604051809103906000f08015801562000373573d6000803e3d6000fd5b506000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508160016000828254620003c7919062000bb7565b92505081905550620003e7600183620003e1919062000bb7565b62000280565b50620003f262000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b81526004016200044e919062000997565b602060405180830381600087803b1580156200046957600080fd5b505af11580156200047e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004a4919062000cad565b5060019050919050565b60003073ffffffffffffffffffffffffffffffffffffffff1663929543626040518163ffffffff1660e01b815260040160006040518083038186803b158015620004f757600080fd5b505afa92505050801562000509575060015b620005f2576200051862000cec565b806308c379a014156200057d57506200053062000d87565b806200053d57506200057f565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a816040516200056e919062000eab565b60405180910390a150620005ec565b505b3d8060008114620005ad576040519150601f19603f3d011682016040523d82523d6000602084013e620005b2565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620005e29062000f45565b60405180910390a1505b620005f3565b5b3073ffffffffffffffffffffffffffffffffffffffff16638bfe44ff6040518163ffffffff1660e01b815260040160006040518083038186803b1580156200063a57600080fd5b505afa9250505080156200064c575060015b62000735576200065b62000cec565b806308c379a01415620006c057506200067362000d87565b80620006805750620006c2565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a81604051620006b1919062000eab565b60405180910390a1506200072f565b505b3d8060008114620006f0576040519150601f19603f3d011682016040523d82523d6000602084013e620006f5565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620007259062000f45565b60405180910390a1505b62000736565b5b60006200077a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007719062000fb7565b60405180910390fd5b60019050919050565b6001806040517fcf479181000000000000000000000000000000000000000000000000000000008152600401620007bc92919062001026565b60405180910390fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007f990620010a3565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200084c919062000c64565b60405180910390a2816001600082825462000868919062000bb7565b925050819055506200088860018362000882919062000bb7565b62000280565b506200089362000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b8152600401620008ef919062000997565b602060405180830381600087803b1580156200090a57600080fd5b505af11580156200091f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000945919062000cad565b5060019050919050565b60015481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b610ae380620010c683390190565b6000819050919050565b62000991816200097c565b82525050565b6000602082019050620009ae600083018462000986565b92915050565b6000819050919050565b620009c981620009b4565b82525050565b6000602082019050620009e66000830184620009be565b92915050565b6000604051905090565b600080fd5b62000a06816200097c565b811462000a1257600080fd5b50565b60008135905062000a2681620009fb565b92915050565b60006020828403121562000a455762000a44620009f6565b5b600062000a558482850162000a15565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000a8b8262000a5e565b9050919050565b62000a9d8162000a7e565b811462000aa957600080fd5b50565b60008135905062000abd8162000a92565b92915050565b60006020828403121562000adc5762000adb620009f6565b5b600062000aec8482850162000aac565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000b3e600e8362000af5565b915062000b4b8262000b06565b602082019050919050565b600060408201905062000b6d600083018462000986565b818103602083015262000b808162000b2f565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000bc4826200097c565b915062000bd1836200097c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000c095762000c0862000b88565b5b828201905092915050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b600062000c4c60058362000af5565b915062000c598262000c14565b602082019050919050565b600060408201905062000c7b600083018462000986565b818103602083015262000c8e8162000c3d565b905092915050565b60008151905062000ca781620009fb565b92915050565b60006020828403121562000cc65762000cc5620009f6565b5b600062000cd68482850162000c96565b91505092915050565b60008160e01c9050919050565b600060033d111562000d0e5760046000803e62000d0b60005162000cdf565b90505b90565b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000d5c8262000d11565b810181811067ffffffffffffffff8211171562000d7e5762000d7d62000d22565b5b80604052505050565b600060443d101562000d995762000e26565b62000da3620009ec565b60043d036004823e80513d602482011167ffffffffffffffff8211171562000dcd57505062000e26565b808201805167ffffffffffffffff81111562000ded575050505062000e26565b80602083010160043d03850181111562000e0c57505050505062000e26565b62000e1d8260200185018662000d51565b82955050505050505b90565b600081519050919050565b60005b8381101562000e5457808201518184015260208101905062000e37565b8381111562000e64576000848401525b50505050565b600062000e778262000e29565b62000e83818562000af5565b935062000e9581856020860162000e34565b62000ea08162000d11565b840191505092915050565b6000602082019050818103600083015262000ec7818462000e6a565b905092915050565b7f45787465726e616c2063616c6c206661696c656420776974686f757420616e2060008201527f6572726f72206d65737361676500000000000000000000000000000000000000602082015250565b600062000f2d602d8362000af5565b915062000f3a8262000ecf565b604082019050919050565b6000602082019050818103600083015262000f608162000f1e565b9050919050565b7f494e53554646494349454e542042414c414e4345000000000000000000000000600082015250565b600062000f9f60148362000af5565b915062000fac8262000f67565b602082019050919050565b6000602082019050818103600083015262000fd28162000f90565b9050919050565b6000819050919050565b6000819050919050565b60006200100e62001008620010028462000fd9565b62000fe3565b6200097c565b9050919050565b620010208162000fed565b82525050565b60006040820190506200103d600083018562001015565b6200104c602083018462001015565b9392505050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b60006200108b60178362000af5565b9150620010988262001053565b602082019050919050565b60006020820190508181036000830152620010be816200107c565b905091905056fe60806040526000600160006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b50600160009054906101000a900460ff161562000080576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200007790620002b5565b60405180910390fd5b60018060006101000a81548160ff021916908315150217905550620000bc701d6329f1c35ca4bfabb9f5610000000000620000c360201b60201c565b5062000482565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200010d919062000342565b60405180910390a281600080828254620001289190620003a3565b925050819055506200014e600183620001429190620003a3565b6200016960201b60201c565b506200015f620001df60201b60201c565b5060019050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620001b3919062000450565b60405180910390a28160026000828254620001cf9190620003a3565b9250508190555060029050919050565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b600082825260208201905092915050565b7f436f6e747261637420696e7374616e63652068617320616c726561647920626560008201527f656e20696e697469616c697a6564000000000000000000000000000000000000602082015250565b60006200029d602e836200022e565b9150620002aa826200023f565b604082019050919050565b60006020820190508181036000830152620002d0816200028e565b9050919050565b6000819050919050565b620002ec81620002d7565b82525050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006200032a6005836200022e565b91506200033782620002f2565b602082019050919050565b6000604082019050620003596000830184620002e1565b81810360208301526200036c816200031b565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620003b082620002d7565b9150620003bd83620002d7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620003f557620003f462000374565b5b828201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000438600e836200022e565b9150620004458262000400565b602082019050919050565b6000604082019050620004676000830184620002e1565b81810360208301526200047a8162000429565b905092915050565b61065180620004926000396000f3fe608060405234801561001057600080fd5b50600436106100625760003560e01c80631c717069146100675780631c93908c1461008557806392954362146100b5578063a0712d68146100bf578063b69ef8a8146100ef578063c9353cb51461010d575b600080fd5b61006f610129565b60405161007c91906102ed565b60405180910390f35b61009f600480360381019061009a9190610343565b610178565b6040516100ac919061037f565b60405180910390f35b6100bd6101ea565b005b6100d960048036038101906100d49190610343565b610225565b6040516100e6919061037f565b60405180910390f35b6100f76102b5565b604051610104919061037f565b60405180910390f35b610127600480360381019061012291906103f8565b6102bb565b005b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516101c09190610482565b60405180910390a281600260008282546101da91906104df565b9250508190555060029050919050565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161021c90610581565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405161026d91906105ed565b60405180910390a28160008082825461028691906104df565b925050819055506102a260018361029d91906104df565b610178565b506102ab610129565b5060019050919050565b60005481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b6000819050919050565b6102e7816102d4565b82525050565b600060208201905061030260008301846102de565b92915050565b600080fd5b6000819050919050565b6103208161030d565b811461032b57600080fd5b50565b60008135905061033d81610317565b92915050565b60006020828403121561035957610358610308565b5b60006103678482850161032e565b91505092915050565b6103798161030d565b82525050565b60006020820190506103946000830184610370565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006103c58261039a565b9050919050565b6103d5816103ba565b81146103e057600080fd5b50565b6000813590506103f2816103cc565b92915050565b60006020828403121561040e5761040d610308565b5b600061041c848285016103e3565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600061046c600e83610425565b915061047782610436565b602082019050919050565b60006040820190506104976000830184610370565b81810360208301526104a88161045f565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006104ea8261030d565b91506104f58361030d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561052a576105296104b0565b5b828201905092915050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b600061056b601783610425565b915061057682610535565b602082019050919050565b6000602082019050818103600083015261059a8161055e565b9050919050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006105d7600583610425565b91506105e2826105a1565b602082019050919050565b60006040820190506106026000830184610370565b8181036020830152610613816105ca565b90509291505056fea26469706673582212208743accab6cfcd1c8ccb3f51b787d679e803a77ce24ec642bd068883132fd5fa64736f6c63430008090033a264697066735822122066241fedca9ebd69f0cd9e4879f75428f5d4bf734eb072e52934a8b3161581f064736f6c63430008090033", + "code": "0x60806040523480156200001157600080fd5b5060043610620000ac5760003560e01c80638bfe44ff116200006f5780638bfe44ff14620001975780639295436214620001a3578063a0712d6814620001af578063b69ef8a814620001e5578063c9353cb5146200020757620000ac565b806312065fe014620000b15780631c71706914620000d35780631c93908c14620000f55780633aa18088146200012b5780637f29c3941462000161575b600080fd5b620000bb62000227565b604051620000ca919062000975565b60405180910390f35b620000dd62000231565b604051620000ec9190620009ad565b60405180910390f35b6200011360048036038101906200010d919062000a0a565b62000280565b60405162000122919062000975565b60405180910390f35b62000149600480360381019062000143919062000a0a565b620002f6565b60405162000158919062000975565b60405180910390f35b6200017f600480360381019062000179919062000a0a565b6200049e565b6040516200018e919062000975565b60405180910390f35b620001a162000771565b005b620001ad620007b3565b005b620001cd6004803603810190620001c7919062000a0a565b620007f0565b604051620001dc919062000975565b60405180910390f35b620001ef6200092d565b604051620001fe919062000975565b60405180910390f35b6200022560048036038101906200021f919062000aa1565b62000933565b005b6000600154905090565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620002ca919062000b34565b60405180910390a28160036000828254620002e6919062000b95565b9250508190555060029050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405162000340919062000c20565b60405180910390a260405162000356906200094c565b604051809103906000f08015801562000373573d6000803e3d6000fd5b506000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508160016000828254620003c7919062000b95565b92505081905550620003e7600183620003e1919062000b95565b62000280565b50620003f262000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b81526004016200044e919062000975565b6020604051808303816000875af11580156200046e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000494919062000c69565b5060019050919050565b60003073ffffffffffffffffffffffffffffffffffffffff1663929543626040518163ffffffff1660e01b815260040160006040518083038186803b158015620004e757600080fd5b505afa925050508015620004f9575060015b620005e1576200050862000ca8565b806308c379a0036200056c57506200051f62000d43565b806200052c57506200056e565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a816040516200055d919062000e56565b60405180910390a150620005db565b505b3d80600081146200059c576040519150601f19603f3d011682016040523d82523d6000602084013e620005a1565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620005d19062000ef0565b60405180910390a1505b620005e2565b5b3073ffffffffffffffffffffffffffffffffffffffff16638bfe44ff6040518163ffffffff1660e01b815260040160006040518083038186803b1580156200062957600080fd5b505afa9250505080156200063b575060015b62000723576200064a62000ca8565b806308c379a003620006ae57506200066162000d43565b806200066e5750620006b0565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a816040516200069f919062000e56565b60405180910390a1506200071d565b505b3d8060008114620006de576040519150601f19603f3d011682016040523d82523d6000602084013e620006e3565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620007139062000ef0565b60405180910390a1505b62000724565b5b600062000768576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200075f9062000f62565b60405180910390fd5b60019050919050565b6001806040517fcf479181000000000000000000000000000000000000000000000000000000008152600401620007aa92919062000fd1565b60405180910390fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007e7906200104e565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200083a919062000c20565b60405180910390a2816001600082825462000856919062000b95565b925050819055506200087660018362000870919062000b95565b62000280565b506200088162000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b8152600401620008dd919062000975565b6020604051808303816000875af1158015620008fd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000923919062000c69565b5060019050919050565b60015481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b610a9f806200107183390190565b6000819050919050565b6200096f816200095a565b82525050565b60006020820190506200098c600083018462000964565b92915050565b6000819050919050565b620009a78162000992565b82525050565b6000602082019050620009c460008301846200099c565b92915050565b6000604051905090565b600080fd5b620009e4816200095a565b8114620009f057600080fd5b50565b60008135905062000a0481620009d9565b92915050565b60006020828403121562000a235762000a22620009d4565b5b600062000a3384828501620009f3565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000a698262000a3c565b9050919050565b62000a7b8162000a5c565b811462000a8757600080fd5b50565b60008135905062000a9b8162000a70565b92915050565b60006020828403121562000aba5762000ab9620009d4565b5b600062000aca8482850162000a8a565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000b1c600e8362000ad3565b915062000b298262000ae4565b602082019050919050565b600060408201905062000b4b600083018462000964565b818103602083015262000b5e8162000b0d565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000ba2826200095a565b915062000baf836200095a565b925082820190508082111562000bca5762000bc962000b66565b5b92915050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b600062000c0860058362000ad3565b915062000c158262000bd0565b602082019050919050565b600060408201905062000c37600083018462000964565b818103602083015262000c4a8162000bf9565b905092915050565b60008151905062000c6381620009d9565b92915050565b60006020828403121562000c825762000c81620009d4565b5b600062000c928482850162000c52565b91505092915050565b60008160e01c9050919050565b600060033d111562000cca5760046000803e62000cc760005162000c9b565b90505b90565b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000d188262000ccd565b810181811067ffffffffffffffff8211171562000d3a5762000d3962000cde565b5b80604052505050565b600060443d1062000ddb5762000d58620009ca565b60043d036004823e80513d602482011167ffffffffffffffff8211171562000d8257505062000ddb565b808201805167ffffffffffffffff81111562000da2575050505062000ddb565b80602083010160043d03850181111562000dc157505050505062000ddb565b62000dd28260200185018662000d0d565b82955050505050505b90565b600081519050919050565b60005b8381101562000e0957808201518184015260208101905062000dec565b60008484015250505050565b600062000e228262000dde565b62000e2e818562000ad3565b935062000e4081856020860162000de9565b62000e4b8162000ccd565b840191505092915050565b6000602082019050818103600083015262000e72818462000e15565b905092915050565b7f45787465726e616c2063616c6c206661696c656420776974686f757420616e2060008201527f6572726f72206d65737361676500000000000000000000000000000000000000602082015250565b600062000ed8602d8362000ad3565b915062000ee58262000e7a565b604082019050919050565b6000602082019050818103600083015262000f0b8162000ec9565b9050919050565b7f494e53554646494349454e542042414c414e4345000000000000000000000000600082015250565b600062000f4a60148362000ad3565b915062000f578262000f12565b602082019050919050565b6000602082019050818103600083015262000f7d8162000f3b565b9050919050565b6000819050919050565b6000819050919050565b600062000fb962000fb362000fad8462000f84565b62000f8e565b6200095a565b9050919050565b62000fcb8162000f98565b82525050565b600060408201905062000fe8600083018562000fc0565b62000ff7602083018462000fc0565b9392505050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b60006200103660178362000ad3565b9150620010438262000ffe565b602082019050919050565b60006020820190508181036000830152620010698162001027565b905091905056fe60806040526000600160006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b50600160009054906101000a900460ff161562000080576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200007790620002b5565b60405180910390fd5b60018060006101000a81548160ff021916908315150217905550620000bc701d6329f1c35ca4bfabb9f5610000000000620000c360201b60201c565b5062000460565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200010d919062000342565b60405180910390a281600080828254620001289190620003a3565b925050819055506200014e600183620001429190620003a3565b6200016960201b60201c565b506200015f620001df60201b60201c565b5060019050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620001b391906200042e565b60405180910390a28160026000828254620001cf9190620003a3565b9250508190555060029050919050565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b600082825260208201905092915050565b7f436f6e747261637420696e7374616e63652068617320616c726561647920626560008201527f656e20696e697469616c697a6564000000000000000000000000000000000000602082015250565b60006200029d602e836200022e565b9150620002aa826200023f565b604082019050919050565b60006020820190508181036000830152620002d0816200028e565b9050919050565b6000819050919050565b620002ec81620002d7565b82525050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006200032a6005836200022e565b91506200033782620002f2565b602082019050919050565b6000604082019050620003596000830184620002e1565b81810360208301526200036c816200031b565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620003b082620002d7565b9150620003bd83620002d7565b9250828201905080821115620003d857620003d762000374565b5b92915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000416600e836200022e565b91506200042382620003de565b602082019050919050565b6000604082019050620004456000830184620002e1565b8181036020830152620004588162000407565b905092915050565b61062f80620004706000396000f3fe608060405234801561001057600080fd5b50600436106100625760003560e01c80631c717069146100675780631c93908c1461008557806392954362146100b5578063a0712d68146100bf578063b69ef8a8146100ef578063c9353cb51461010d575b600080fd5b61006f610129565b60405161007c91906102ed565b60405180910390f35b61009f600480360381019061009a9190610343565b610178565b6040516100ac919061037f565b60405180910390f35b6100bd6101ea565b005b6100d960048036038101906100d49190610343565b610225565b6040516100e6919061037f565b60405180910390f35b6100f76102b5565b604051610104919061037f565b60405180910390f35b610127600480360381019061012291906103f8565b6102bb565b005b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516101c09190610482565b60405180910390a281600260008282546101da91906104df565b9250508190555060029050919050565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161021c9061055f565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405161026d91906105cb565b60405180910390a28160008082825461028691906104df565b925050819055506102a260018361029d91906104df565b610178565b506102ab610129565b5060019050919050565b60005481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b6000819050919050565b6102e7816102d4565b82525050565b600060208201905061030260008301846102de565b92915050565b600080fd5b6000819050919050565b6103208161030d565b811461032b57600080fd5b50565b60008135905061033d81610317565b92915050565b60006020828403121561035957610358610308565b5b60006103678482850161032e565b91505092915050565b6103798161030d565b82525050565b60006020820190506103946000830184610370565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006103c58261039a565b9050919050565b6103d5816103ba565b81146103e057600080fd5b50565b6000813590506103f2816103cc565b92915050565b60006020828403121561040e5761040d610308565b5b600061041c848285016103e3565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600061046c600e83610425565b915061047782610436565b602082019050919050565b60006040820190506104976000830184610370565b81810360208301526104a88161045f565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006104ea8261030d565b91506104f58361030d565b925082820190508082111561050d5761050c6104b0565b5b92915050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b6000610549601783610425565b915061055482610513565b602082019050919050565b600060208201905081810360008301526105788161053c565b9050919050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006105b5600583610425565b91506105c08261057f565b602082019050919050565b60006040820190506105e06000830184610370565b81810360208301526105f1816105a8565b90509291505056fea26469706673582212202a0a0fa5842e91cc0c1e5b645f7286aad7193a83c3b2f8c8e4c1b35008af0d6f64736f6c63430008140033a264697066735822122036f326b9881542090544d5d6e9f2ff18b13ec09bd4994f14891a84e97f4d6db964736f6c63430008140033", "nonce": 1, "storage": { "0x0000000000000000000000000000000000000000000000000000000000000000": "0x0000000000000000000000000000000000000000000000000000000000000000", "0x0000000000000000000000000000000000000000000000000000000000000001": "0x0000000000000000000000000000000000000000000000000000000000000000", "0x0000000000000000000000000000000000000000000000000000000000000003": "0x0000000000000000000000000000000000000000000000000000000000000000" } + }, + "OWNER.address": { + "balance": "0x10f08c229bfb4db5c42", + "nonce": 8 } } \ No newline at end of file diff --git a/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint2.callTracer.json b/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint2.callTracer.json index 308ac8c7c..3dd6c16e4 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint2.callTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint2.callTracer.json @@ -1,26 +1,26 @@ { "from": "OWNER.address", "gas": "0x200b20", - "gasUsed": "0x81bca", + "gasUsed": "0x80064", "to": "Tracer.address", "input": "0x3aa1808800000000000000000000000000000000000000000000000000000000000003e8", "output": "0x0000000000000000000000000000000000000000000000000000000000000001", "calls": [ { "from": "Tracer.address", - "gas": "0x1eafbf", - "gasUsed": "0x60d0a", - "to": "0x61a286b8e87e2d31c475d71c85a0020584c44bae", - "input": "0x60806040526000600160006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b50600160009054906101000a900460ff161562000080576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200007790620002b5565b60405180910390fd5b60018060006101000a81548160ff021916908315150217905550620000bc701d6329f1c35ca4bfabb9f5610000000000620000c360201b60201c565b5062000482565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200010d919062000342565b60405180910390a281600080828254620001289190620003a3565b925050819055506200014e600183620001429190620003a3565b6200016960201b60201c565b506200015f620001df60201b60201c565b5060019050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620001b3919062000450565b60405180910390a28160026000828254620001cf9190620003a3565b9250508190555060029050919050565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b600082825260208201905092915050565b7f436f6e747261637420696e7374616e63652068617320616c726561647920626560008201527f656e20696e697469616c697a6564000000000000000000000000000000000000602082015250565b60006200029d602e836200022e565b9150620002aa826200023f565b604082019050919050565b60006020820190508181036000830152620002d0816200028e565b9050919050565b6000819050919050565b620002ec81620002d7565b82525050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006200032a6005836200022e565b91506200033782620002f2565b602082019050919050565b6000604082019050620003596000830184620002e1565b81810360208301526200036c816200031b565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620003b082620002d7565b9150620003bd83620002d7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620003f557620003f462000374565b5b828201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000438600e836200022e565b9150620004458262000400565b602082019050919050565b6000604082019050620004676000830184620002e1565b81810360208301526200047a8162000429565b905092915050565b61065180620004926000396000f3fe608060405234801561001057600080fd5b50600436106100625760003560e01c80631c717069146100675780631c93908c1461008557806392954362146100b5578063a0712d68146100bf578063b69ef8a8146100ef578063c9353cb51461010d575b600080fd5b61006f610129565b60405161007c91906102ed565b60405180910390f35b61009f600480360381019061009a9190610343565b610178565b6040516100ac919061037f565b60405180910390f35b6100bd6101ea565b005b6100d960048036038101906100d49190610343565b610225565b6040516100e6919061037f565b60405180910390f35b6100f76102b5565b604051610104919061037f565b60405180910390f35b610127600480360381019061012291906103f8565b6102bb565b005b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516101c09190610482565b60405180910390a281600260008282546101da91906104df565b9250508190555060029050919050565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161021c90610581565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405161026d91906105ed565b60405180910390a28160008082825461028691906104df565b925050819055506102a260018361029d91906104df565b610178565b506102ab610129565b5060019050919050565b60005481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b6000819050919050565b6102e7816102d4565b82525050565b600060208201905061030260008301846102de565b92915050565b600080fd5b6000819050919050565b6103208161030d565b811461032b57600080fd5b50565b60008135905061033d81610317565b92915050565b60006020828403121561035957610358610308565b5b60006103678482850161032e565b91505092915050565b6103798161030d565b82525050565b60006020820190506103946000830184610370565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006103c58261039a565b9050919050565b6103d5816103ba565b81146103e057600080fd5b50565b6000813590506103f2816103cc565b92915050565b60006020828403121561040e5761040d610308565b5b600061041c848285016103e3565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600061046c600e83610425565b915061047782610436565b602082019050919050565b60006040820190506104976000830184610370565b81810360208301526104a88161045f565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006104ea8261030d565b91506104f58361030d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561052a576105296104b0565b5b828201905092915050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b600061056b601783610425565b915061057682610535565b602082019050919050565b6000602082019050818103600083015261059a8161055e565b9050919050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006105d7600583610425565b91506105e2826105a1565b602082019050919050565b60006040820190506106026000830184610370565b8181036020830152610613816105ca565b90509291505056fea26469706673582212208743accab6cfcd1c8ccb3f51b787d679e803a77ce24ec642bd068883132fd5fa64736f6c63430008090033", - "output": "0x608060405234801561001057600080fd5b50600436106100625760003560e01c80631c717069146100675780631c93908c1461008557806392954362146100b5578063a0712d68146100bf578063b69ef8a8146100ef578063c9353cb51461010d575b600080fd5b61006f610129565b60405161007c91906102ed565b60405180910390f35b61009f600480360381019061009a9190610343565b610178565b6040516100ac919061037f565b60405180910390f35b6100bd6101ea565b005b6100d960048036038101906100d49190610343565b610225565b6040516100e6919061037f565b60405180910390f35b6100f76102b5565b604051610104919061037f565b60405180910390f35b610127600480360381019061012291906103f8565b6102bb565b005b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516101c09190610482565b60405180910390a281600260008282546101da91906104df565b9250508190555060029050919050565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161021c90610581565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405161026d91906105ed565b60405180910390a28160008082825461028691906104df565b925050819055506102a260018361029d91906104df565b610178565b506102ab610129565b5060019050919050565b60005481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b6000819050919050565b6102e7816102d4565b82525050565b600060208201905061030260008301846102de565b92915050565b600080fd5b6000819050919050565b6103208161030d565b811461032b57600080fd5b50565b60008135905061033d81610317565b92915050565b60006020828403121561035957610358610308565b5b60006103678482850161032e565b91505092915050565b6103798161030d565b82525050565b60006020820190506103946000830184610370565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006103c58261039a565b9050919050565b6103d5816103ba565b81146103e057600080fd5b50565b6000813590506103f2816103cc565b92915050565b60006020828403121561040e5761040d610308565b5b600061041c848285016103e3565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600061046c600e83610425565b915061047782610436565b602082019050919050565b60006040820190506104976000830184610370565b81810360208301526104a88161045f565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006104ea8261030d565b91506104f58361030d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561052a576105296104b0565b5b828201905092915050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b600061056b601783610425565b915061057682610535565b602082019050919050565b6000602082019050818103600083015261059a8161055e565b9050919050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006105d7600583610425565b91506105e2826105a1565b602082019050919050565b60006040820190506106026000830184610370565b8181036020830152610613816105ca565b90509291505056fea26469706673582212208743accab6cfcd1c8ccb3f51b787d679e803a77ce24ec642bd068883132fd5fa64736f6c63430008090033", + "gas": "0x1eafd7", + "gasUsed": "0x5f261", + "to": "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "input": "0x60806040526000600160006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b50600160009054906101000a900460ff161562000080576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200007790620002b5565b60405180910390fd5b60018060006101000a81548160ff021916908315150217905550620000bc701d6329f1c35ca4bfabb9f5610000000000620000c360201b60201c565b5062000460565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200010d919062000342565b60405180910390a281600080828254620001289190620003a3565b925050819055506200014e600183620001429190620003a3565b6200016960201b60201c565b506200015f620001df60201b60201c565b5060019050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620001b391906200042e565b60405180910390a28160026000828254620001cf9190620003a3565b9250508190555060029050919050565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b600082825260208201905092915050565b7f436f6e747261637420696e7374616e63652068617320616c726561647920626560008201527f656e20696e697469616c697a6564000000000000000000000000000000000000602082015250565b60006200029d602e836200022e565b9150620002aa826200023f565b604082019050919050565b60006020820190508181036000830152620002d0816200028e565b9050919050565b6000819050919050565b620002ec81620002d7565b82525050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006200032a6005836200022e565b91506200033782620002f2565b602082019050919050565b6000604082019050620003596000830184620002e1565b81810360208301526200036c816200031b565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620003b082620002d7565b9150620003bd83620002d7565b9250828201905080821115620003d857620003d762000374565b5b92915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000416600e836200022e565b91506200042382620003de565b602082019050919050565b6000604082019050620004456000830184620002e1565b8181036020830152620004588162000407565b905092915050565b61062f80620004706000396000f3fe608060405234801561001057600080fd5b50600436106100625760003560e01c80631c717069146100675780631c93908c1461008557806392954362146100b5578063a0712d68146100bf578063b69ef8a8146100ef578063c9353cb51461010d575b600080fd5b61006f610129565b60405161007c91906102ed565b60405180910390f35b61009f600480360381019061009a9190610343565b610178565b6040516100ac919061037f565b60405180910390f35b6100bd6101ea565b005b6100d960048036038101906100d49190610343565b610225565b6040516100e6919061037f565b60405180910390f35b6100f76102b5565b604051610104919061037f565b60405180910390f35b610127600480360381019061012291906103f8565b6102bb565b005b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516101c09190610482565b60405180910390a281600260008282546101da91906104df565b9250508190555060029050919050565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161021c9061055f565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405161026d91906105cb565b60405180910390a28160008082825461028691906104df565b925050819055506102a260018361029d91906104df565b610178565b506102ab610129565b5060019050919050565b60005481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b6000819050919050565b6102e7816102d4565b82525050565b600060208201905061030260008301846102de565b92915050565b600080fd5b6000819050919050565b6103208161030d565b811461032b57600080fd5b50565b60008135905061033d81610317565b92915050565b60006020828403121561035957610358610308565b5b60006103678482850161032e565b91505092915050565b6103798161030d565b82525050565b60006020820190506103946000830184610370565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006103c58261039a565b9050919050565b6103d5816103ba565b81146103e057600080fd5b50565b6000813590506103f2816103cc565b92915050565b60006020828403121561040e5761040d610308565b5b600061041c848285016103e3565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600061046c600e83610425565b915061047782610436565b602082019050919050565b60006040820190506104976000830184610370565b81810360208301526104a88161045f565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006104ea8261030d565b91506104f58361030d565b925082820190508082111561050d5761050c6104b0565b5b92915050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b6000610549601783610425565b915061055482610513565b602082019050919050565b600060208201905081810360008301526105788161053c565b9050919050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006105b5600583610425565b91506105c08261057f565b602082019050919050565b60006040820190506105e06000830184610370565b81810360208301526105f1816105a8565b90509291505056fea26469706673582212202a0a0fa5842e91cc0c1e5b645f7286aad7193a83c3b2f8c8e4c1b35008af0d6f64736f6c63430008140033", + "output": "0x608060405234801561001057600080fd5b50600436106100625760003560e01c80631c717069146100675780631c93908c1461008557806392954362146100b5578063a0712d68146100bf578063b69ef8a8146100ef578063c9353cb51461010d575b600080fd5b61006f610129565b60405161007c91906102ed565b60405180910390f35b61009f600480360381019061009a9190610343565b610178565b6040516100ac919061037f565b60405180910390f35b6100bd6101ea565b005b6100d960048036038101906100d49190610343565b610225565b6040516100e6919061037f565b60405180910390f35b6100f76102b5565b604051610104919061037f565b60405180910390f35b610127600480360381019061012291906103f8565b6102bb565b005b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516101c09190610482565b60405180910390a281600260008282546101da91906104df565b9250508190555060029050919050565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161021c9061055f565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405161026d91906105cb565b60405180910390a28160008082825461028691906104df565b925050819055506102a260018361029d91906104df565b610178565b506102ab610129565b5060019050919050565b60005481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b6000819050919050565b6102e7816102d4565b82525050565b600060208201905061030260008301846102de565b92915050565b600080fd5b6000819050919050565b6103208161030d565b811461032b57600080fd5b50565b60008135905061033d81610317565b92915050565b60006020828403121561035957610358610308565b5b60006103678482850161032e565b91505092915050565b6103798161030d565b82525050565b60006020820190506103946000830184610370565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006103c58261039a565b9050919050565b6103d5816103ba565b81146103e057600080fd5b50565b6000813590506103f2816103cc565b92915050565b60006020828403121561040e5761040d610308565b5b600061041c848285016103e3565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600061046c600e83610425565b915061047782610436565b602082019050919050565b60006040820190506104976000830184610370565b81810360208301526104a88161045f565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006104ea8261030d565b91506104f58361030d565b925082820190508082111561050d5761050c6104b0565b5b92915050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b6000610549601783610425565b915061055482610513565b602082019050919050565b600060208201905081810360008301526105788161053c565b9050919050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006105b5600583610425565b91506105c08261057f565b602082019050919050565b60006040820190506105e06000830184610370565b81810360208301526105f1816105a8565b90509291505056fea26469706673582212202a0a0fa5842e91cc0c1e5b645f7286aad7193a83c3b2f8c8e4c1b35008af0d6f64736f6c63430008140033", "value": "0x0", "type": "CREATE" }, { "from": "Tracer.address", - "gas": "0x17ac60", - "gasUsed": "0x1b31", - "to": "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "gas": "0x17c747", + "gasUsed": "0x1b1f", + "to": "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "input": "0xa0712d6800000000000000000000000000000000000000000000000000000000000003e8", "output": "0x0000000000000000000000000000000000000000000000000000000000000001", "value": "0x0", diff --git a/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint2.defaultTracer.json b/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint2.defaultTracer.json index 7b0e6791c..57c88d4c5 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint2.defaultTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint2.defaultTracer.json @@ -1,5 +1,5 @@ { - "gas": 531402, + "gas": 524388, "failed": false, "returnValue": "0000000000000000000000000000000000000000000000000000000000000001", "structLogs": [ @@ -660,11 +660,11 @@ "0x143", "0x24", "0x4", - "0xa2c" + "0xa0a" ] }, { - "pc": 2604, + "pc": 2570, "op": "JUMPDEST", "gas": 2078554, "gasCost": 1, @@ -678,7 +678,7 @@ ] }, { - "pc": 2605, + "pc": 2571, "op": "PUSH1", "gas": 2078553, "gasCost": 3, @@ -692,7 +692,7 @@ ] }, { - "pc": 2607, + "pc": 2573, "op": "PUSH1", "gas": 2078550, "gasCost": 3, @@ -707,7 +707,7 @@ ] }, { - "pc": 2609, + "pc": 2575, "op": "DUP3", "gas": 2078547, "gasCost": 3, @@ -723,7 +723,7 @@ ] }, { - "pc": 2610, + "pc": 2576, "op": "DUP5", "gas": 2078544, "gasCost": 3, @@ -740,7 +740,7 @@ ] }, { - "pc": 2611, + "pc": 2577, "op": "SUB", "gas": 2078541, "gasCost": 3, @@ -758,7 +758,7 @@ ] }, { - "pc": 2612, + "pc": 2578, "op": "SLT", "gas": 2078538, "gasCost": 3, @@ -775,7 +775,7 @@ ] }, { - "pc": 2613, + "pc": 2579, "op": "ISZERO", "gas": 2078535, "gasCost": 3, @@ -791,7 +791,7 @@ ] }, { - "pc": 2614, + "pc": 2580, "op": "PUSH3", "gas": 2078532, "gasCost": 3, @@ -807,7 +807,7 @@ ] }, { - "pc": 2618, + "pc": 2584, "op": "JUMPI", "gas": 2078529, "gasCost": 10, @@ -820,11 +820,11 @@ "0x4", "0x0", "0x1", - "0xa45" + "0xa23" ] }, { - "pc": 2629, + "pc": 2595, "op": "JUMPDEST", "gas": 2078519, "gasCost": 1, @@ -839,7 +839,7 @@ ] }, { - "pc": 2630, + "pc": 2596, "op": "PUSH1", "gas": 2078518, "gasCost": 3, @@ -854,7 +854,7 @@ ] }, { - "pc": 2632, + "pc": 2598, "op": "PUSH3", "gas": 2078515, "gasCost": 3, @@ -870,7 +870,7 @@ ] }, { - "pc": 2636, + "pc": 2602, "op": "DUP5", "gas": 2078512, "gasCost": 3, @@ -883,11 +883,11 @@ "0x4", "0x0", "0x0", - "0xa55" + "0xa33" ] }, { - "pc": 2637, + "pc": 2603, "op": "DUP3", "gas": 2078509, "gasCost": 3, @@ -900,12 +900,12 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24" ] }, { - "pc": 2638, + "pc": 2604, "op": "DUP6", "gas": 2078506, "gasCost": 3, @@ -918,13 +918,13 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x0" ] }, { - "pc": 2639, + "pc": 2605, "op": "ADD", "gas": 2078503, "gasCost": 3, @@ -937,14 +937,14 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x0", "0x4" ] }, { - "pc": 2640, + "pc": 2606, "op": "PUSH3", "gas": 2078500, "gasCost": 3, @@ -957,13 +957,13 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4" ] }, { - "pc": 2644, + "pc": 2610, "op": "JUMP", "gas": 2078497, "gasCost": 8, @@ -976,14 +976,14 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", - "0xa15" + "0x9f3" ] }, { - "pc": 2581, + "pc": 2547, "op": "JUMPDEST", "gas": 2078489, "gasCost": 1, @@ -996,13 +996,13 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4" ] }, { - "pc": 2582, + "pc": 2548, "op": "PUSH1", "gas": 2078488, "gasCost": 3, @@ -1015,13 +1015,13 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4" ] }, { - "pc": 2584, + "pc": 2550, "op": "DUP2", "gas": 2078485, "gasCost": 3, @@ -1034,14 +1034,14 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x0" ] }, { - "pc": 2585, + "pc": 2551, "op": "CALLDATALOAD", "gas": 2078482, "gasCost": 3, @@ -1054,7 +1054,7 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x0", @@ -1062,7 +1062,7 @@ ] }, { - "pc": 2586, + "pc": 2552, "op": "SWAP1", "gas": 2078479, "gasCost": 3, @@ -1075,7 +1075,7 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x0", @@ -1083,7 +1083,7 @@ ] }, { - "pc": 2587, + "pc": 2553, "op": "POP", "gas": 2078476, "gasCost": 2, @@ -1096,7 +1096,7 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8", @@ -1104,7 +1104,7 @@ ] }, { - "pc": 2588, + "pc": 2554, "op": "PUSH3", "gas": 2078474, "gasCost": 3, @@ -1117,14 +1117,14 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8" ] }, { - "pc": 2592, + "pc": 2558, "op": "DUP2", "gas": 2078471, "gasCost": 3, @@ -1137,15 +1137,15 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8", - "0xa26" + "0xa04" ] }, { - "pc": 2593, + "pc": 2559, "op": "PUSH3", "gas": 2078468, "gasCost": 3, @@ -1158,16 +1158,16 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8", - "0xa26", + "0xa04", "0x3e8" ] }, { - "pc": 2597, + "pc": 2563, "op": "JUMP", "gas": 2078465, "gasCost": 8, @@ -1180,17 +1180,17 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8", - "0xa26", + "0xa04", "0x3e8", - "0x9fb" + "0x9d9" ] }, { - "pc": 2555, + "pc": 2521, "op": "JUMPDEST", "gas": 2078457, "gasCost": 1, @@ -1203,16 +1203,16 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8", - "0xa26", + "0xa04", "0x3e8" ] }, { - "pc": 2556, + "pc": 2522, "op": "PUSH3", "gas": 2078456, "gasCost": 3, @@ -1225,16 +1225,16 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8", - "0xa26", + "0xa04", "0x3e8" ] }, { - "pc": 2560, + "pc": 2526, "op": "DUP2", "gas": 2078453, "gasCost": 3, @@ -1247,17 +1247,17 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8", - "0xa26", + "0xa04", "0x3e8", - "0xa06" + "0x9e4" ] }, { - "pc": 2561, + "pc": 2527, "op": "PUSH3", "gas": 2078450, "gasCost": 3, @@ -1270,18 +1270,18 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8", - "0xa26", + "0xa04", "0x3e8", - "0xa06", + "0x9e4", "0x3e8" ] }, { - "pc": 2565, + "pc": 2531, "op": "JUMP", "gas": 2078447, "gasCost": 8, @@ -1294,19 +1294,19 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8", - "0xa26", + "0xa04", "0x3e8", - "0xa06", + "0x9e4", "0x3e8", - "0x97c" + "0x95a" ] }, { - "pc": 2428, + "pc": 2394, "op": "JUMPDEST", "gas": 2078439, "gasCost": 1, @@ -1319,18 +1319,18 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8", - "0xa26", + "0xa04", "0x3e8", - "0xa06", + "0x9e4", "0x3e8" ] }, { - "pc": 2429, + "pc": 2395, "op": "PUSH1", "gas": 2078438, "gasCost": 3, @@ -1343,18 +1343,18 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8", - "0xa26", + "0xa04", "0x3e8", - "0xa06", + "0x9e4", "0x3e8" ] }, { - "pc": 2431, + "pc": 2397, "op": "DUP2", "gas": 2078435, "gasCost": 3, @@ -1367,19 +1367,19 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8", - "0xa26", + "0xa04", "0x3e8", - "0xa06", + "0x9e4", "0x3e8", "0x0" ] }, { - "pc": 2432, + "pc": 2398, "op": "SWAP1", "gas": 2078432, "gasCost": 3, @@ -1392,20 +1392,20 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8", - "0xa26", + "0xa04", "0x3e8", - "0xa06", + "0x9e4", "0x3e8", "0x0", "0x3e8" ] }, { - "pc": 2433, + "pc": 2399, "op": "POP", "gas": 2078429, "gasCost": 2, @@ -1418,20 +1418,20 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8", - "0xa26", + "0xa04", "0x3e8", - "0xa06", + "0x9e4", "0x3e8", "0x3e8", "0x0" ] }, { - "pc": 2434, + "pc": 2400, "op": "SWAP2", "gas": 2078427, "gasCost": 3, @@ -1444,19 +1444,19 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8", - "0xa26", + "0xa04", "0x3e8", - "0xa06", + "0x9e4", "0x3e8", "0x3e8" ] }, { - "pc": 2435, + "pc": 2401, "op": "SWAP1", "gas": 2078424, "gasCost": 3, @@ -1469,19 +1469,19 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8", - "0xa26", + "0xa04", "0x3e8", "0x3e8", "0x3e8", - "0xa06" + "0x9e4" ] }, { - "pc": 2436, + "pc": 2402, "op": "POP", "gas": 2078421, "gasCost": 2, @@ -1494,19 +1494,19 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8", - "0xa26", + "0xa04", "0x3e8", "0x3e8", - "0xa06", + "0x9e4", "0x3e8" ] }, { - "pc": 2437, + "pc": 2403, "op": "JUMP", "gas": 2078419, "gasCost": 8, @@ -1519,18 +1519,18 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8", - "0xa26", + "0xa04", "0x3e8", "0x3e8", - "0xa06" + "0x9e4" ] }, { - "pc": 2566, + "pc": 2532, "op": "JUMPDEST", "gas": 2078411, "gasCost": 1, @@ -1543,17 +1543,17 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8", - "0xa26", + "0xa04", "0x3e8", "0x3e8" ] }, { - "pc": 2567, + "pc": 2533, "op": "DUP2", "gas": 2078410, "gasCost": 3, @@ -1566,17 +1566,17 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8", - "0xa26", + "0xa04", "0x3e8", "0x3e8" ] }, { - "pc": 2568, + "pc": 2534, "op": "EQ", "gas": 2078407, "gasCost": 3, @@ -1589,18 +1589,18 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8", - "0xa26", + "0xa04", "0x3e8", "0x3e8", "0x3e8" ] }, { - "pc": 2569, + "pc": 2535, "op": "PUSH3", "gas": 2078404, "gasCost": 3, @@ -1613,17 +1613,17 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8", - "0xa26", + "0xa04", "0x3e8", "0x1" ] }, { - "pc": 2573, + "pc": 2539, "op": "JUMPI", "gas": 2078401, "gasCost": 10, @@ -1636,18 +1636,18 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8", - "0xa26", + "0xa04", "0x3e8", "0x1", - "0xa12" + "0x9f0" ] }, { - "pc": 2578, + "pc": 2544, "op": "JUMPDEST", "gas": 2078391, "gasCost": 1, @@ -1660,16 +1660,16 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8", - "0xa26", + "0xa04", "0x3e8" ] }, { - "pc": 2579, + "pc": 2545, "op": "POP", "gas": 2078390, "gasCost": 2, @@ -1682,16 +1682,16 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8", - "0xa26", + "0xa04", "0x3e8" ] }, { - "pc": 2580, + "pc": 2546, "op": "JUMP", "gas": 2078388, "gasCost": 8, @@ -1704,15 +1704,15 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8", - "0xa26" + "0xa04" ] }, { - "pc": 2598, + "pc": 2564, "op": "JUMPDEST", "gas": 2078380, "gasCost": 1, @@ -1725,14 +1725,14 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8" ] }, { - "pc": 2599, + "pc": 2565, "op": "SWAP3", "gas": 2078379, "gasCost": 3, @@ -1745,14 +1745,14 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8" ] }, { - "pc": 2600, + "pc": 2566, "op": "SWAP2", "gas": 2078376, "gasCost": 3, @@ -1768,11 +1768,11 @@ "0x3e8", "0x24", "0x4", - "0xa55" + "0xa33" ] }, { - "pc": 2601, + "pc": 2567, "op": "POP", "gas": 2078373, "gasCost": 2, @@ -1786,13 +1786,13 @@ "0x0", "0x0", "0x3e8", - "0xa55", + "0xa33", "0x4", "0x24" ] }, { - "pc": 2602, + "pc": 2568, "op": "POP", "gas": 2078371, "gasCost": 2, @@ -1806,12 +1806,12 @@ "0x0", "0x0", "0x3e8", - "0xa55", + "0xa33", "0x4" ] }, { - "pc": 2603, + "pc": 2569, "op": "JUMP", "gas": 2078369, "gasCost": 8, @@ -1825,11 +1825,11 @@ "0x0", "0x0", "0x3e8", - "0xa55" + "0xa33" ] }, { - "pc": 2645, + "pc": 2611, "op": "JUMPDEST", "gas": 2078361, "gasCost": 1, @@ -1846,7 +1846,7 @@ ] }, { - "pc": 2646, + "pc": 2612, "op": "SWAP2", "gas": 2078360, "gasCost": 3, @@ -1863,7 +1863,7 @@ ] }, { - "pc": 2647, + "pc": 2613, "op": "POP", "gas": 2078357, "gasCost": 2, @@ -1880,7 +1880,7 @@ ] }, { - "pc": 2648, + "pc": 2614, "op": "POP", "gas": 2078355, "gasCost": 2, @@ -1896,7 +1896,7 @@ ] }, { - "pc": 2649, + "pc": 2615, "op": "SWAP3", "gas": 2078353, "gasCost": 3, @@ -1911,7 +1911,7 @@ ] }, { - "pc": 2650, + "pc": 2616, "op": "SWAP2", "gas": 2078350, "gasCost": 3, @@ -1926,7 +1926,7 @@ ] }, { - "pc": 2651, + "pc": 2617, "op": "POP", "gas": 2078347, "gasCost": 2, @@ -1941,7 +1941,7 @@ ] }, { - "pc": 2652, + "pc": 2618, "op": "POP", "gas": 2078345, "gasCost": 2, @@ -1955,7 +1955,7 @@ ] }, { - "pc": 2653, + "pc": 2619, "op": "JUMP", "gas": 2078343, "gasCost": 8, @@ -2219,11 +2219,11 @@ "0x340", "0x3e8", "0x80", - "0xc64" + "0xc20" ] }, { - "pc": 3172, + "pc": 3104, "op": "JUMPDEST", "gas": 2078279, "gasCost": 1, @@ -2241,7 +2241,7 @@ ] }, { - "pc": 3173, + "pc": 3105, "op": "PUSH1", "gas": 2078278, "gasCost": 3, @@ -2259,7 +2259,7 @@ ] }, { - "pc": 3175, + "pc": 3107, "op": "PUSH1", "gas": 2078275, "gasCost": 3, @@ -2278,7 +2278,7 @@ ] }, { - "pc": 3177, + "pc": 3109, "op": "DUP3", "gas": 2078272, "gasCost": 3, @@ -2298,7 +2298,7 @@ ] }, { - "pc": 3178, + "pc": 3110, "op": "ADD", "gas": 2078269, "gasCost": 3, @@ -2319,7 +2319,7 @@ ] }, { - "pc": 3179, + "pc": 3111, "op": "SWAP1", "gas": 2078266, "gasCost": 3, @@ -2339,7 +2339,7 @@ ] }, { - "pc": 3180, + "pc": 3112, "op": "POP", "gas": 2078263, "gasCost": 2, @@ -2359,7 +2359,7 @@ ] }, { - "pc": 3181, + "pc": 3113, "op": "PUSH3", "gas": 2078261, "gasCost": 3, @@ -2378,7 +2378,7 @@ ] }, { - "pc": 3185, + "pc": 3117, "op": "PUSH1", "gas": 2078258, "gasCost": 3, @@ -2394,11 +2394,11 @@ "0x3e8", "0x80", "0xc0", - "0xc7b" + "0xc37" ] }, { - "pc": 3187, + "pc": 3119, "op": "DUP4", "gas": 2078255, "gasCost": 3, @@ -2414,12 +2414,12 @@ "0x3e8", "0x80", "0xc0", - "0xc7b", + "0xc37", "0x0" ] }, { - "pc": 3188, + "pc": 3120, "op": "ADD", "gas": 2078252, "gasCost": 3, @@ -2435,13 +2435,13 @@ "0x3e8", "0x80", "0xc0", - "0xc7b", + "0xc37", "0x0", "0x80" ] }, { - "pc": 3189, + "pc": 3121, "op": "DUP5", "gas": 2078249, "gasCost": 3, @@ -2457,12 +2457,12 @@ "0x3e8", "0x80", "0xc0", - "0xc7b", + "0xc37", "0x80" ] }, { - "pc": 3190, + "pc": 3122, "op": "PUSH3", "gas": 2078246, "gasCost": 3, @@ -2478,13 +2478,13 @@ "0x3e8", "0x80", "0xc0", - "0xc7b", + "0xc37", "0x80", "0x3e8" ] }, { - "pc": 3194, + "pc": 3126, "op": "JUMP", "gas": 2078243, "gasCost": 8, @@ -2500,14 +2500,14 @@ "0x3e8", "0x80", "0xc0", - "0xc7b", + "0xc37", "0x80", "0x3e8", - "0x986" + "0x964" ] }, { - "pc": 2438, + "pc": 2404, "op": "JUMPDEST", "gas": 2078235, "gasCost": 1, @@ -2523,13 +2523,13 @@ "0x3e8", "0x80", "0xc0", - "0xc7b", + "0xc37", "0x80", "0x3e8" ] }, { - "pc": 2439, + "pc": 2405, "op": "PUSH3", "gas": 2078234, "gasCost": 3, @@ -2545,13 +2545,13 @@ "0x3e8", "0x80", "0xc0", - "0xc7b", + "0xc37", "0x80", "0x3e8" ] }, { - "pc": 2443, + "pc": 2409, "op": "DUP2", "gas": 2078231, "gasCost": 3, @@ -2567,14 +2567,14 @@ "0x3e8", "0x80", "0xc0", - "0xc7b", + "0xc37", "0x80", "0x3e8", - "0x991" + "0x96f" ] }, { - "pc": 2444, + "pc": 2410, "op": "PUSH3", "gas": 2078228, "gasCost": 3, @@ -2590,15 +2590,15 @@ "0x3e8", "0x80", "0xc0", - "0xc7b", + "0xc37", "0x80", "0x3e8", - "0x991", + "0x96f", "0x3e8" ] }, { - "pc": 2448, + "pc": 2414, "op": "JUMP", "gas": 2078225, "gasCost": 8, @@ -2614,16 +2614,16 @@ "0x3e8", "0x80", "0xc0", - "0xc7b", + "0xc37", "0x80", "0x3e8", - "0x991", + "0x96f", "0x3e8", - "0x97c" + "0x95a" ] }, { - "pc": 2428, + "pc": 2394, "op": "JUMPDEST", "gas": 2078217, "gasCost": 1, @@ -2639,15 +2639,15 @@ "0x3e8", "0x80", "0xc0", - "0xc7b", + "0xc37", "0x80", "0x3e8", - "0x991", + "0x96f", "0x3e8" ] }, { - "pc": 2429, + "pc": 2395, "op": "PUSH1", "gas": 2078216, "gasCost": 3, @@ -2663,15 +2663,15 @@ "0x3e8", "0x80", "0xc0", - "0xc7b", + "0xc37", "0x80", "0x3e8", - "0x991", + "0x96f", "0x3e8" ] }, { - "pc": 2431, + "pc": 2397, "op": "DUP2", "gas": 2078213, "gasCost": 3, @@ -2687,16 +2687,16 @@ "0x3e8", "0x80", "0xc0", - "0xc7b", + "0xc37", "0x80", "0x3e8", - "0x991", + "0x96f", "0x3e8", "0x0" ] }, { - "pc": 2432, + "pc": 2398, "op": "SWAP1", "gas": 2078210, "gasCost": 3, @@ -2712,17 +2712,17 @@ "0x3e8", "0x80", "0xc0", - "0xc7b", + "0xc37", "0x80", "0x3e8", - "0x991", + "0x96f", "0x3e8", "0x0", "0x3e8" ] }, { - "pc": 2433, + "pc": 2399, "op": "POP", "gas": 2078207, "gasCost": 2, @@ -2738,17 +2738,17 @@ "0x3e8", "0x80", "0xc0", - "0xc7b", + "0xc37", "0x80", "0x3e8", - "0x991", + "0x96f", "0x3e8", "0x3e8", "0x0" ] }, { - "pc": 2434, + "pc": 2400, "op": "SWAP2", "gas": 2078205, "gasCost": 3, @@ -2764,16 +2764,16 @@ "0x3e8", "0x80", "0xc0", - "0xc7b", + "0xc37", "0x80", "0x3e8", - "0x991", + "0x96f", "0x3e8", "0x3e8" ] }, { - "pc": 2435, + "pc": 2401, "op": "SWAP1", "gas": 2078202, "gasCost": 3, @@ -2789,16 +2789,16 @@ "0x3e8", "0x80", "0xc0", - "0xc7b", + "0xc37", "0x80", "0x3e8", "0x3e8", "0x3e8", - "0x991" + "0x96f" ] }, { - "pc": 2436, + "pc": 2402, "op": "POP", "gas": 2078199, "gasCost": 2, @@ -2814,16 +2814,16 @@ "0x3e8", "0x80", "0xc0", - "0xc7b", + "0xc37", "0x80", "0x3e8", "0x3e8", - "0x991", + "0x96f", "0x3e8" ] }, { - "pc": 2437, + "pc": 2403, "op": "JUMP", "gas": 2078197, "gasCost": 8, @@ -2839,15 +2839,15 @@ "0x3e8", "0x80", "0xc0", - "0xc7b", + "0xc37", "0x80", "0x3e8", "0x3e8", - "0x991" + "0x96f" ] }, { - "pc": 2449, + "pc": 2415, "op": "JUMPDEST", "gas": 2078189, "gasCost": 1, @@ -2863,14 +2863,14 @@ "0x3e8", "0x80", "0xc0", - "0xc7b", + "0xc37", "0x80", "0x3e8", "0x3e8" ] }, { - "pc": 2450, + "pc": 2416, "op": "DUP3", "gas": 2078188, "gasCost": 3, @@ -2886,14 +2886,14 @@ "0x3e8", "0x80", "0xc0", - "0xc7b", + "0xc37", "0x80", "0x3e8", "0x3e8" ] }, { - "pc": 2451, + "pc": 2417, "op": "MSTORE", "gas": 2078185, "gasCost": 9, @@ -2909,7 +2909,7 @@ "0x3e8", "0x80", "0xc0", - "0xc7b", + "0xc37", "0x80", "0x3e8", "0x3e8", @@ -2917,7 +2917,7 @@ ] }, { - "pc": 2452, + "pc": 2418, "op": "POP", "gas": 2078176, "gasCost": 2, @@ -2933,13 +2933,13 @@ "0x3e8", "0x80", "0xc0", - "0xc7b", + "0xc37", "0x80", "0x3e8" ] }, { - "pc": 2453, + "pc": 2419, "op": "POP", "gas": 2078174, "gasCost": 2, @@ -2955,12 +2955,12 @@ "0x3e8", "0x80", "0xc0", - "0xc7b", + "0xc37", "0x80" ] }, { - "pc": 2454, + "pc": 2420, "op": "JUMP", "gas": 2078172, "gasCost": 8, @@ -2976,11 +2976,11 @@ "0x3e8", "0x80", "0xc0", - "0xc7b" + "0xc37" ] }, { - "pc": 3195, + "pc": 3127, "op": "JUMPDEST", "gas": 2078164, "gasCost": 1, @@ -2999,7 +2999,7 @@ ] }, { - "pc": 3196, + "pc": 3128, "op": "DUP2", "gas": 2078163, "gasCost": 3, @@ -3018,7 +3018,7 @@ ] }, { - "pc": 3197, + "pc": 3129, "op": "DUP2", "gas": 2078160, "gasCost": 3, @@ -3038,7 +3038,7 @@ ] }, { - "pc": 3198, + "pc": 3130, "op": "SUB", "gas": 2078157, "gasCost": 3, @@ -3059,7 +3059,7 @@ ] }, { - "pc": 3199, + "pc": 3131, "op": "PUSH1", "gas": 2078154, "gasCost": 3, @@ -3079,7 +3079,7 @@ ] }, { - "pc": 3201, + "pc": 3133, "op": "DUP4", "gas": 2078151, "gasCost": 3, @@ -3100,7 +3100,7 @@ ] }, { - "pc": 3202, + "pc": 3134, "op": "ADD", "gas": 2078148, "gasCost": 3, @@ -3122,7 +3122,7 @@ ] }, { - "pc": 3203, + "pc": 3135, "op": "MSTORE", "gas": 2078145, "gasCost": 6, @@ -3143,7 +3143,7 @@ ] }, { - "pc": 3204, + "pc": 3136, "op": "PUSH3", "gas": 2078139, "gasCost": 3, @@ -3162,7 +3162,7 @@ ] }, { - "pc": 3208, + "pc": 3140, "op": "DUP2", "gas": 2078136, "gasCost": 3, @@ -3178,11 +3178,11 @@ "0x3e8", "0x80", "0xc0", - "0xc8e" + "0xc4a" ] }, { - "pc": 3209, + "pc": 3141, "op": "PUSH3", "gas": 2078133, "gasCost": 3, @@ -3198,12 +3198,12 @@ "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xc0" ] }, { - "pc": 3213, + "pc": 3145, "op": "JUMP", "gas": 2078130, "gasCost": 8, @@ -3219,13 +3219,13 @@ "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xc0", - "0xc3d" + "0xbf9" ] }, { - "pc": 3133, + "pc": 3065, "op": "JUMPDEST", "gas": 2078122, "gasCost": 1, @@ -3241,12 +3241,12 @@ "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xc0" ] }, { - "pc": 3134, + "pc": 3066, "op": "PUSH1", "gas": 2078121, "gasCost": 3, @@ -3262,12 +3262,12 @@ "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xc0" ] }, { - "pc": 3136, + "pc": 3068, "op": "PUSH3", "gas": 2078118, "gasCost": 3, @@ -3283,13 +3283,13 @@ "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xc0", "0x0" ] }, { - "pc": 3140, + "pc": 3072, "op": "PUSH1", "gas": 2078115, "gasCost": 3, @@ -3305,14 +3305,14 @@ "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xc0", "0x0", - "0xc4c" + "0xc08" ] }, { - "pc": 3142, + "pc": 3074, "op": "DUP4", "gas": 2078112, "gasCost": 3, @@ -3328,15 +3328,15 @@ "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xc0", "0x0", - "0xc4c", + "0xc08", "0x5" ] }, { - "pc": 3143, + "pc": 3075, "op": "PUSH3", "gas": 2078109, "gasCost": 3, @@ -3352,16 +3352,16 @@ "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xc0", "0x0", - "0xc4c", + "0xc08", "0x5", "0xc0" ] }, { - "pc": 3147, + "pc": 3079, "op": "JUMP", "gas": 2078106, "gasCost": 8, @@ -3377,17 +3377,17 @@ "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xc0", "0x0", - "0xc4c", + "0xc08", "0x5", "0xc0", - "0xaf5" + "0xad3" ] }, { - "pc": 2805, + "pc": 2771, "op": "JUMPDEST", "gas": 2078098, "gasCost": 1, @@ -3403,16 +3403,16 @@ "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xc0", "0x0", - "0xc4c", + "0xc08", "0x5", "0xc0" ] }, { - "pc": 2806, + "pc": 2772, "op": "PUSH1", "gas": 2078097, "gasCost": 3, @@ -3428,16 +3428,16 @@ "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xc0", "0x0", - "0xc4c", + "0xc08", "0x5", "0xc0" ] }, { - "pc": 2808, + "pc": 2774, "op": "DUP3", "gas": 2078094, "gasCost": 3, @@ -3453,17 +3453,17 @@ "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xc0", "0x0", - "0xc4c", + "0xc08", "0x5", "0xc0", "0x0" ] }, { - "pc": 2809, + "pc": 2775, "op": "DUP3", "gas": 2078091, "gasCost": 3, @@ -3479,10 +3479,10 @@ "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xc0", "0x0", - "0xc4c", + "0xc08", "0x5", "0xc0", "0x0", @@ -3490,7 +3490,7 @@ ] }, { - "pc": 2810, + "pc": 2776, "op": "MSTORE", "gas": 2078088, "gasCost": 6, @@ -3506,10 +3506,10 @@ "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xc0", "0x0", - "0xc4c", + "0xc08", "0x5", "0xc0", "0x0", @@ -3518,7 +3518,7 @@ ] }, { - "pc": 2811, + "pc": 2777, "op": "PUSH1", "gas": 2078082, "gasCost": 3, @@ -3534,17 +3534,17 @@ "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xc0", "0x0", - "0xc4c", + "0xc08", "0x5", "0xc0", "0x0" ] }, { - "pc": 2813, + "pc": 2779, "op": "DUP3", "gas": 2078079, "gasCost": 3, @@ -3560,10 +3560,10 @@ "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xc0", "0x0", - "0xc4c", + "0xc08", "0x5", "0xc0", "0x0", @@ -3571,7 +3571,7 @@ ] }, { - "pc": 2814, + "pc": 2780, "op": "ADD", "gas": 2078076, "gasCost": 3, @@ -3587,10 +3587,10 @@ "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xc0", "0x0", - "0xc4c", + "0xc08", "0x5", "0xc0", "0x0", @@ -3599,7 +3599,7 @@ ] }, { - "pc": 2815, + "pc": 2781, "op": "SWAP1", "gas": 2078073, "gasCost": 3, @@ -3615,10 +3615,10 @@ "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xc0", "0x0", - "0xc4c", + "0xc08", "0x5", "0xc0", "0x0", @@ -3626,7 +3626,7 @@ ] }, { - "pc": 2816, + "pc": 2782, "op": "POP", "gas": 2078070, "gasCost": 2, @@ -3642,10 +3642,10 @@ "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xc0", "0x0", - "0xc4c", + "0xc08", "0x5", "0xc0", "0xe0", @@ -3653,7 +3653,7 @@ ] }, { - "pc": 2817, + "pc": 2783, "op": "SWAP3", "gas": 2078068, "gasCost": 3, @@ -3669,17 +3669,17 @@ "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xc0", "0x0", - "0xc4c", + "0xc08", "0x5", "0xc0", "0xe0" ] }, { - "pc": 2818, + "pc": 2784, "op": "SWAP2", "gas": 2078065, "gasCost": 3, @@ -3695,17 +3695,17 @@ "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xc0", "0x0", "0xe0", "0x5", "0xc0", - "0xc4c" + "0xc08" ] }, { - "pc": 2819, + "pc": 2785, "op": "POP", "gas": 2078062, "gasCost": 2, @@ -3721,17 +3721,17 @@ "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xc0", "0x0", "0xe0", - "0xc4c", + "0xc08", "0xc0", "0x5" ] }, { - "pc": 2820, + "pc": 2786, "op": "POP", "gas": 2078060, "gasCost": 2, @@ -3747,16 +3747,16 @@ "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xc0", "0x0", "0xe0", - "0xc4c", + "0xc08", "0xc0" ] }, { - "pc": 2821, + "pc": 2787, "op": "JUMP", "gas": 2078058, "gasCost": 8, @@ -3772,15 +3772,15 @@ "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xc0", "0x0", "0xe0", - "0xc4c" + "0xc08" ] }, { - "pc": 3148, + "pc": 3080, "op": "JUMPDEST", "gas": 2078050, "gasCost": 1, @@ -3796,14 +3796,14 @@ "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xc0", "0x0", "0xe0" ] }, { - "pc": 3149, + "pc": 3081, "op": "SWAP2", "gas": 2078049, "gasCost": 3, @@ -3819,14 +3819,14 @@ "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xc0", "0x0", "0xe0" ] }, { - "pc": 3150, + "pc": 3082, "op": "POP", "gas": 2078046, "gasCost": 2, @@ -3842,14 +3842,14 @@ "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xe0", "0x0", "0xc0" ] }, { - "pc": 3151, + "pc": 3083, "op": "PUSH3", "gas": 2078044, "gasCost": 3, @@ -3865,13 +3865,13 @@ "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xe0", "0x0" ] }, { - "pc": 3155, + "pc": 3087, "op": "DUP3", "gas": 2078041, "gasCost": 3, @@ -3887,14 +3887,14 @@ "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xe0", "0x0", - "0xc59" + "0xc15" ] }, { - "pc": 3156, + "pc": 3088, "op": "PUSH3", "gas": 2078038, "gasCost": 3, @@ -3910,15 +3910,15 @@ "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xe0", "0x0", - "0xc59", + "0xc15", "0xe0" ] }, { - "pc": 3160, + "pc": 3092, "op": "JUMP", "gas": 2078035, "gasCost": 8, @@ -3934,16 +3934,16 @@ "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xe0", "0x0", - "0xc59", + "0xc15", "0xe0", - "0xc14" + "0xbd0" ] }, { - "pc": 3092, + "pc": 3024, "op": "JUMPDEST", "gas": 2078027, "gasCost": 1, @@ -3959,15 +3959,15 @@ "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xe0", "0x0", - "0xc59", + "0xc15", "0xe0" ] }, { - "pc": 3093, + "pc": 3025, "op": "PUSH32", "gas": 2078026, "gasCost": 3, @@ -3983,15 +3983,15 @@ "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xe0", "0x0", - "0xc59", + "0xc15", "0xe0" ] }, { - "pc": 3126, + "pc": 3058, "op": "PUSH1", "gas": 2078023, "gasCost": 3, @@ -4007,16 +4007,16 @@ "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xe0", "0x0", - "0xc59", + "0xc15", "0xe0", "0x746f706963000000000000000000000000000000000000000000000000000000" ] }, { - "pc": 3128, + "pc": 3060, "op": "DUP3", "gas": 2078020, "gasCost": 3, @@ -4032,17 +4032,17 @@ "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xe0", "0x0", - "0xc59", + "0xc15", "0xe0", "0x746f706963000000000000000000000000000000000000000000000000000000", "0x0" ] }, { - "pc": 3129, + "pc": 3061, "op": "ADD", "gas": 2078017, "gasCost": 3, @@ -4058,10 +4058,10 @@ "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xe0", "0x0", - "0xc59", + "0xc15", "0xe0", "0x746f706963000000000000000000000000000000000000000000000000000000", "0x0", @@ -4069,7 +4069,7 @@ ] }, { - "pc": 3130, + "pc": 3062, "op": "MSTORE", "gas": 2078014, "gasCost": 6, @@ -4085,17 +4085,17 @@ "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xe0", "0x0", - "0xc59", + "0xc15", "0xe0", "0x746f706963000000000000000000000000000000000000000000000000000000", "0xe0" ] }, { - "pc": 3131, + "pc": 3063, "op": "POP", "gas": 2078008, "gasCost": 2, @@ -4111,15 +4111,15 @@ "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xe0", "0x0", - "0xc59", + "0xc15", "0xe0" ] }, { - "pc": 3132, + "pc": 3064, "op": "JUMP", "gas": 2078006, "gasCost": 8, @@ -4135,14 +4135,14 @@ "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xe0", "0x0", - "0xc59" + "0xc15" ] }, { - "pc": 3161, + "pc": 3093, "op": "JUMPDEST", "gas": 2077998, "gasCost": 1, @@ -4158,13 +4158,13 @@ "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xe0", "0x0" ] }, { - "pc": 3162, + "pc": 3094, "op": "PUSH1", "gas": 2077997, "gasCost": 3, @@ -4180,13 +4180,13 @@ "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xe0", "0x0" ] }, { - "pc": 3164, + "pc": 3096, "op": "DUP3", "gas": 2077994, "gasCost": 3, @@ -4202,14 +4202,14 @@ "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xe0", "0x0", "0x20" ] }, { - "pc": 3165, + "pc": 3097, "op": "ADD", "gas": 2077991, "gasCost": 3, @@ -4225,7 +4225,7 @@ "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xe0", "0x0", "0x20", @@ -4233,7 +4233,7 @@ ] }, { - "pc": 3166, + "pc": 3098, "op": "SWAP1", "gas": 2077988, "gasCost": 3, @@ -4249,14 +4249,14 @@ "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xe0", "0x0", "0x100" ] }, { - "pc": 3167, + "pc": 3099, "op": "POP", "gas": 2077985, "gasCost": 2, @@ -4272,14 +4272,14 @@ "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xe0", "0x100", "0x0" ] }, { - "pc": 3168, + "pc": 3100, "op": "SWAP2", "gas": 2077983, "gasCost": 3, @@ -4295,13 +4295,13 @@ "0x3e8", "0x80", "0xc0", - "0xc8e", + "0xc4a", "0xe0", "0x100" ] }, { - "pc": 3169, + "pc": 3101, "op": "SWAP1", "gas": 2077980, "gasCost": 3, @@ -4319,11 +4319,11 @@ "0xc0", "0x100", "0xe0", - "0xc8e" + "0xc4a" ] }, { - "pc": 3170, + "pc": 3102, "op": "POP", "gas": 2077977, "gasCost": 2, @@ -4340,12 +4340,12 @@ "0x80", "0xc0", "0x100", - "0xc8e", + "0xc4a", "0xe0" ] }, { - "pc": 3171, + "pc": 3103, "op": "JUMP", "gas": 2077975, "gasCost": 8, @@ -4362,11 +4362,11 @@ "0x80", "0xc0", "0x100", - "0xc8e" + "0xc4a" ] }, { - "pc": 3214, + "pc": 3146, "op": "JUMPDEST", "gas": 2077967, "gasCost": 1, @@ -4386,7 +4386,7 @@ ] }, { - "pc": 3215, + "pc": 3147, "op": "SWAP1", "gas": 2077966, "gasCost": 3, @@ -4406,7 +4406,7 @@ ] }, { - "pc": 3216, + "pc": 3148, "op": "POP", "gas": 2077963, "gasCost": 2, @@ -4426,7 +4426,7 @@ ] }, { - "pc": 3217, + "pc": 3149, "op": "SWAP3", "gas": 2077961, "gasCost": 3, @@ -4445,7 +4445,7 @@ ] }, { - "pc": 3218, + "pc": 3150, "op": "SWAP2", "gas": 2077958, "gasCost": 3, @@ -4464,7 +4464,7 @@ ] }, { - "pc": 3219, + "pc": 3151, "op": "POP", "gas": 2077955, "gasCost": 2, @@ -4483,7 +4483,7 @@ ] }, { - "pc": 3220, + "pc": 3152, "op": "POP", "gas": 2077953, "gasCost": 2, @@ -4501,7 +4501,7 @@ ] }, { - "pc": 3221, + "pc": 3153, "op": "JUMP", "gas": 2077951, "gasCost": 8, @@ -4737,11 +4737,11 @@ "0x0", "0x356", "0x80", - "0x96e" + "0x94c" ] }, { - "pc": 2414, + "pc": 2380, "op": "JUMPDEST", "gas": 2075752, "gasCost": 1, @@ -4756,7 +4756,7 @@ ] }, { - "pc": 2415, + "pc": 2381, "op": "PUSH2", "gas": 2075751, "gasCost": 3, @@ -4771,7 +4771,7 @@ ] }, { - "pc": 2418, + "pc": 2384, "op": "DUP1", "gas": 2075748, "gasCost": 3, @@ -4783,11 +4783,11 @@ "0x0", "0x356", "0x80", - "0xae3" + "0xa9f" ] }, { - "pc": 2419, + "pc": 2385, "op": "PUSH3", "gas": 2075745, "gasCost": 3, @@ -4799,12 +4799,12 @@ "0x0", "0x356", "0x80", - "0xae3", - "0xae3" + "0xa9f", + "0xa9f" ] }, { - "pc": 2423, + "pc": 2389, "op": "DUP4", "gas": 2075742, "gasCost": 3, @@ -4816,16 +4816,16 @@ "0x0", "0x356", "0x80", - "0xae3", - "0xae3", - "0x10c6" + "0xa9f", + "0xa9f", + "0x1071" ] }, { - "pc": 2424, + "pc": 2390, "op": "CODECOPY", "gas": 2075739, - "gasCost": 535, + "gasCost": 516, "depth": 1, "stack": [ "0x3aa18088", @@ -4834,16 +4834,16 @@ "0x0", "0x356", "0x80", - "0xae3", - "0xae3", - "0x10c6", + "0xa9f", + "0xa9f", + "0x1071", "0x80" ] }, { - "pc": 2425, + "pc": 2391, "op": "ADD", - "gas": 2075204, + "gas": 2075223, "gasCost": 3, "depth": 1, "stack": [ @@ -4853,13 +4853,13 @@ "0x0", "0x356", "0x80", - "0xae3" + "0xa9f" ] }, { - "pc": 2426, + "pc": 2392, "op": "SWAP1", - "gas": 2075201, + "gas": 2075220, "gasCost": 3, "depth": 1, "stack": [ @@ -4868,13 +4868,13 @@ "0x3e8", "0x0", "0x356", - "0xb63" + "0xb1f" ] }, { - "pc": 2427, + "pc": 2393, "op": "JUMP", - "gas": 2075198, + "gas": 2075217, "gasCost": 8, "depth": 1, "stack": [ @@ -4882,14 +4882,14 @@ "0x149", "0x3e8", "0x0", - "0xb63", + "0xb1f", "0x356" ] }, { "pc": 854, "op": "JUMPDEST", - "gas": 2075190, + "gas": 2075209, "gasCost": 1, "depth": 1, "stack": [ @@ -4897,13 +4897,13 @@ "0x149", "0x3e8", "0x0", - "0xb63" + "0xb1f" ] }, { "pc": 855, "op": "PUSH1", - "gas": 2075189, + "gas": 2075208, "gasCost": 3, "depth": 1, "stack": [ @@ -4911,13 +4911,13 @@ "0x149", "0x3e8", "0x0", - "0xb63" + "0xb1f" ] }, { "pc": 857, "op": "MLOAD", - "gas": 2075186, + "gas": 2075205, "gasCost": 3, "depth": 1, "stack": [ @@ -4925,14 +4925,14 @@ "0x149", "0x3e8", "0x0", - "0xb63", + "0xb1f", "0x40" ] }, { "pc": 858, "op": "DUP1", - "gas": 2075183, + "gas": 2075202, "gasCost": 3, "depth": 1, "stack": [ @@ -4940,14 +4940,14 @@ "0x149", "0x3e8", "0x0", - "0xb63", + "0xb1f", "0x80" ] }, { "pc": 859, "op": "SWAP2", - "gas": 2075180, + "gas": 2075199, "gasCost": 3, "depth": 1, "stack": [ @@ -4955,7 +4955,7 @@ "0x149", "0x3e8", "0x0", - "0xb63", + "0xb1f", "0x80", "0x80" ] @@ -4963,7 +4963,7 @@ { "pc": 860, "op": "SUB", - "gas": 2075177, + "gas": 2075196, "gasCost": 3, "depth": 1, "stack": [ @@ -4973,13 +4973,13 @@ "0x0", "0x80", "0x80", - "0xb63" + "0xb1f" ] }, { "pc": 861, "op": "SWAP1", - "gas": 2075174, + "gas": 2075193, "gasCost": 3, "depth": 1, "stack": [ @@ -4988,13 +4988,13 @@ "0x3e8", "0x0", "0x80", - "0xae3" + "0xa9f" ] }, { "pc": 862, "op": "PUSH1", - "gas": 2075171, + "gas": 2075190, "gasCost": 3, "depth": 1, "stack": [ @@ -5002,22 +5002,22 @@ "0x149", "0x3e8", "0x0", - "0xae3", + "0xa9f", "0x80" ] }, { "pc": 864, "op": "CREATE", - "gas": 2075168, - "gasCost": 32176, + "gas": 2075187, + "gasCost": 32170, "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xae3", + "0xa9f", "0x80", "0x0" ] @@ -5025,7 +5025,7 @@ { "pc": 0, "op": "PUSH1", - "gas": 2011071, + "gas": 2011095, "gasCost": 3, "depth": 2, "stack": [] @@ -5033,7 +5033,7 @@ { "pc": 2, "op": "PUSH1", - "gas": 2011068, + "gas": 2011092, "gasCost": 3, "depth": 2, "stack": [ @@ -5043,7 +5043,7 @@ { "pc": 4, "op": "MSTORE", - "gas": 2011065, + "gas": 2011089, "gasCost": 12, "depth": 2, "stack": [ @@ -5054,7 +5054,7 @@ { "pc": 5, "op": "PUSH1", - "gas": 2011053, + "gas": 2011077, "gasCost": 3, "depth": 2, "stack": [] @@ -5062,7 +5062,7 @@ { "pc": 7, "op": "PUSH1", - "gas": 2011050, + "gas": 2011074, "gasCost": 3, "depth": 2, "stack": [ @@ -5072,7 +5072,7 @@ { "pc": 9, "op": "PUSH1", - "gas": 2011047, + "gas": 2011071, "gasCost": 3, "depth": 2, "stack": [ @@ -5083,7 +5083,7 @@ { "pc": 11, "op": "PUSH2", - "gas": 2011044, + "gas": 2011068, "gasCost": 3, "depth": 2, "stack": [ @@ -5095,7 +5095,7 @@ { "pc": 14, "op": "EXP", - "gas": 2011041, + "gas": 2011065, "gasCost": 10, "depth": 2, "stack": [ @@ -5108,7 +5108,7 @@ { "pc": 15, "op": "DUP2", - "gas": 2011031, + "gas": 2011055, "gasCost": 3, "depth": 2, "stack": [ @@ -5120,7 +5120,7 @@ { "pc": 16, "op": "SLOAD", - "gas": 2011028, + "gas": 2011052, "gasCost": 2100, "depth": 2, "stack": [ @@ -5136,7 +5136,7 @@ { "pc": 17, "op": "DUP2", - "gas": 2008928, + "gas": 2008952, "gasCost": 3, "depth": 2, "stack": [ @@ -5149,7 +5149,7 @@ { "pc": 18, "op": "PUSH1", - "gas": 2008925, + "gas": 2008949, "gasCost": 3, "depth": 2, "stack": [ @@ -5163,7 +5163,7 @@ { "pc": 20, "op": "MUL", - "gas": 2008922, + "gas": 2008946, "gasCost": 5, "depth": 2, "stack": [ @@ -5178,7 +5178,7 @@ { "pc": 21, "op": "NOT", - "gas": 2008917, + "gas": 2008941, "gasCost": 3, "depth": 2, "stack": [ @@ -5192,7 +5192,7 @@ { "pc": 22, "op": "AND", - "gas": 2008914, + "gas": 2008938, "gasCost": 3, "depth": 2, "stack": [ @@ -5206,7 +5206,7 @@ { "pc": 23, "op": "SWAP1", - "gas": 2008911, + "gas": 2008935, "gasCost": 3, "depth": 2, "stack": [ @@ -5219,7 +5219,7 @@ { "pc": 24, "op": "DUP4", - "gas": 2008908, + "gas": 2008932, "gasCost": 3, "depth": 2, "stack": [ @@ -5232,7 +5232,7 @@ { "pc": 25, "op": "ISZERO", - "gas": 2008905, + "gas": 2008929, "gasCost": 3, "depth": 2, "stack": [ @@ -5246,7 +5246,7 @@ { "pc": 26, "op": "ISZERO", - "gas": 2008902, + "gas": 2008926, "gasCost": 3, "depth": 2, "stack": [ @@ -5260,7 +5260,7 @@ { "pc": 27, "op": "MUL", - "gas": 2008899, + "gas": 2008923, "gasCost": 5, "depth": 2, "stack": [ @@ -5274,7 +5274,7 @@ { "pc": 28, "op": "OR", - "gas": 2008894, + "gas": 2008918, "gasCost": 3, "depth": 2, "stack": [ @@ -5287,7 +5287,7 @@ { "pc": 29, "op": "SWAP1", - "gas": 2008891, + "gas": 2008915, "gasCost": 3, "depth": 2, "stack": [ @@ -5299,7 +5299,7 @@ { "pc": 30, "op": "SSTORE", - "gas": 2008888, + "gas": 2008912, "gasCost": 100, "depth": 2, "stack": [ @@ -5314,7 +5314,7 @@ { "pc": 31, "op": "POP", - "gas": 2008788, + "gas": 2008812, "gasCost": 2, "depth": 2, "stack": [ @@ -5324,7 +5324,7 @@ { "pc": 32, "op": "CALLVALUE", - "gas": 2008786, + "gas": 2008810, "gasCost": 2, "depth": 2, "stack": [] @@ -5332,7 +5332,7 @@ { "pc": 33, "op": "DUP1", - "gas": 2008784, + "gas": 2008808, "gasCost": 3, "depth": 2, "stack": [ @@ -5342,7 +5342,7 @@ { "pc": 34, "op": "ISZERO", - "gas": 2008781, + "gas": 2008805, "gasCost": 3, "depth": 2, "stack": [ @@ -5353,7 +5353,7 @@ { "pc": 35, "op": "PUSH3", - "gas": 2008778, + "gas": 2008802, "gasCost": 3, "depth": 2, "stack": [ @@ -5364,7 +5364,7 @@ { "pc": 39, "op": "JUMPI", - "gas": 2008775, + "gas": 2008799, "gasCost": 10, "depth": 2, "stack": [ @@ -5376,7 +5376,7 @@ { "pc": 44, "op": "JUMPDEST", - "gas": 2008765, + "gas": 2008789, "gasCost": 1, "depth": 2, "stack": [ @@ -5386,7 +5386,7 @@ { "pc": 45, "op": "POP", - "gas": 2008764, + "gas": 2008788, "gasCost": 2, "depth": 2, "stack": [ @@ -5396,7 +5396,7 @@ { "pc": 46, "op": "PUSH1", - "gas": 2008762, + "gas": 2008786, "gasCost": 3, "depth": 2, "stack": [] @@ -5404,7 +5404,7 @@ { "pc": 48, "op": "PUSH1", - "gas": 2008759, + "gas": 2008783, "gasCost": 3, "depth": 2, "stack": [ @@ -5414,7 +5414,7 @@ { "pc": 50, "op": "SWAP1", - "gas": 2008756, + "gas": 2008780, "gasCost": 3, "depth": 2, "stack": [ @@ -5425,7 +5425,7 @@ { "pc": 51, "op": "SLOAD", - "gas": 2008753, + "gas": 2008777, "gasCost": 100, "depth": 2, "stack": [ @@ -5439,7 +5439,7 @@ { "pc": 52, "op": "SWAP1", - "gas": 2008653, + "gas": 2008677, "gasCost": 3, "depth": 2, "stack": [ @@ -5450,7 +5450,7 @@ { "pc": 53, "op": "PUSH2", - "gas": 2008650, + "gas": 2008674, "gasCost": 3, "depth": 2, "stack": [ @@ -5461,7 +5461,7 @@ { "pc": 56, "op": "EXP", - "gas": 2008647, + "gas": 2008671, "gasCost": 10, "depth": 2, "stack": [ @@ -5473,7 +5473,7 @@ { "pc": 57, "op": "SWAP1", - "gas": 2008637, + "gas": 2008661, "gasCost": 3, "depth": 2, "stack": [ @@ -5484,7 +5484,7 @@ { "pc": 58, "op": "DIV", - "gas": 2008634, + "gas": 2008658, "gasCost": 5, "depth": 2, "stack": [ @@ -5495,7 +5495,7 @@ { "pc": 59, "op": "PUSH1", - "gas": 2008629, + "gas": 2008653, "gasCost": 3, "depth": 2, "stack": [ @@ -5505,7 +5505,7 @@ { "pc": 61, "op": "AND", - "gas": 2008626, + "gas": 2008650, "gasCost": 3, "depth": 2, "stack": [ @@ -5516,7 +5516,7 @@ { "pc": 62, "op": "ISZERO", - "gas": 2008623, + "gas": 2008647, "gasCost": 3, "depth": 2, "stack": [ @@ -5526,7 +5526,7 @@ { "pc": 63, "op": "PUSH3", - "gas": 2008620, + "gas": 2008644, "gasCost": 3, "depth": 2, "stack": [ @@ -5536,7 +5536,7 @@ { "pc": 67, "op": "JUMPI", - "gas": 2008617, + "gas": 2008641, "gasCost": 10, "depth": 2, "stack": [ @@ -5547,7 +5547,7 @@ { "pc": 128, "op": "JUMPDEST", - "gas": 2008607, + "gas": 2008631, "gasCost": 1, "depth": 2, "stack": [] @@ -5555,7 +5555,7 @@ { "pc": 129, "op": "PUSH1", - "gas": 2008606, + "gas": 2008630, "gasCost": 3, "depth": 2, "stack": [] @@ -5563,7 +5563,7 @@ { "pc": 131, "op": "DUP1", - "gas": 2008603, + "gas": 2008627, "gasCost": 3, "depth": 2, "stack": [ @@ -5573,7 +5573,7 @@ { "pc": 132, "op": "PUSH1", - "gas": 2008600, + "gas": 2008624, "gasCost": 3, "depth": 2, "stack": [ @@ -5584,7 +5584,7 @@ { "pc": 134, "op": "PUSH2", - "gas": 2008597, + "gas": 2008621, "gasCost": 3, "depth": 2, "stack": [ @@ -5596,7 +5596,7 @@ { "pc": 137, "op": "EXP", - "gas": 2008594, + "gas": 2008618, "gasCost": 10, "depth": 2, "stack": [ @@ -5609,7 +5609,7 @@ { "pc": 138, "op": "DUP2", - "gas": 2008584, + "gas": 2008608, "gasCost": 3, "depth": 2, "stack": [ @@ -5621,7 +5621,7 @@ { "pc": 139, "op": "SLOAD", - "gas": 2008581, + "gas": 2008605, "gasCost": 100, "depth": 2, "stack": [ @@ -5637,7 +5637,7 @@ { "pc": 140, "op": "DUP2", - "gas": 2008481, + "gas": 2008505, "gasCost": 3, "depth": 2, "stack": [ @@ -5650,7 +5650,7 @@ { "pc": 141, "op": "PUSH1", - "gas": 2008478, + "gas": 2008502, "gasCost": 3, "depth": 2, "stack": [ @@ -5664,7 +5664,7 @@ { "pc": 143, "op": "MUL", - "gas": 2008475, + "gas": 2008499, "gasCost": 5, "depth": 2, "stack": [ @@ -5679,7 +5679,7 @@ { "pc": 144, "op": "NOT", - "gas": 2008470, + "gas": 2008494, "gasCost": 3, "depth": 2, "stack": [ @@ -5693,7 +5693,7 @@ { "pc": 145, "op": "AND", - "gas": 2008467, + "gas": 2008491, "gasCost": 3, "depth": 2, "stack": [ @@ -5707,7 +5707,7 @@ { "pc": 146, "op": "SWAP1", - "gas": 2008464, + "gas": 2008488, "gasCost": 3, "depth": 2, "stack": [ @@ -5720,7 +5720,7 @@ { "pc": 147, "op": "DUP4", - "gas": 2008461, + "gas": 2008485, "gasCost": 3, "depth": 2, "stack": [ @@ -5733,7 +5733,7 @@ { "pc": 148, "op": "ISZERO", - "gas": 2008458, + "gas": 2008482, "gasCost": 3, "depth": 2, "stack": [ @@ -5747,7 +5747,7 @@ { "pc": 149, "op": "ISZERO", - "gas": 2008455, + "gas": 2008479, "gasCost": 3, "depth": 2, "stack": [ @@ -5761,7 +5761,7 @@ { "pc": 150, "op": "MUL", - "gas": 2008452, + "gas": 2008476, "gasCost": 5, "depth": 2, "stack": [ @@ -5775,7 +5775,7 @@ { "pc": 151, "op": "OR", - "gas": 2008447, + "gas": 2008471, "gasCost": 3, "depth": 2, "stack": [ @@ -5788,7 +5788,7 @@ { "pc": 152, "op": "SWAP1", - "gas": 2008444, + "gas": 2008468, "gasCost": 3, "depth": 2, "stack": [ @@ -5800,7 +5800,7 @@ { "pc": 153, "op": "SSTORE", - "gas": 2008441, + "gas": 2008465, "gasCost": 20000, "depth": 2, "stack": [ @@ -5815,7 +5815,7 @@ { "pc": 154, "op": "POP", - "gas": 1988441, + "gas": 1988465, "gasCost": 2, "depth": 2, "stack": [ @@ -5825,7 +5825,7 @@ { "pc": 155, "op": "PUSH3", - "gas": 1988439, + "gas": 1988463, "gasCost": 3, "depth": 2, "stack": [] @@ -5833,7 +5833,7 @@ { "pc": 159, "op": "PUSH17", - "gas": 1988436, + "gas": 1988460, "gasCost": 3, "depth": 2, "stack": [ @@ -5843,7 +5843,7 @@ { "pc": 177, "op": "PUSH3", - "gas": 1988433, + "gas": 1988457, "gasCost": 3, "depth": 2, "stack": [ @@ -5854,7 +5854,7 @@ { "pc": 181, "op": "PUSH1", - "gas": 1988430, + "gas": 1988454, "gasCost": 3, "depth": 2, "stack": [ @@ -5866,7 +5866,7 @@ { "pc": 183, "op": "SHL", - "gas": 1988427, + "gas": 1988451, "gasCost": 3, "depth": 2, "stack": [ @@ -5879,7 +5879,7 @@ { "pc": 184, "op": "PUSH1", - "gas": 1988424, + "gas": 1988448, "gasCost": 3, "depth": 2, "stack": [ @@ -5891,7 +5891,7 @@ { "pc": 186, "op": "SHR", - "gas": 1988421, + "gas": 1988445, "gasCost": 3, "depth": 2, "stack": [ @@ -5904,7 +5904,7 @@ { "pc": 187, "op": "JUMP", - "gas": 1988418, + "gas": 1988442, "gasCost": 8, "depth": 2, "stack": [ @@ -5916,7 +5916,7 @@ { "pc": 195, "op": "JUMPDEST", - "gas": 1988410, + "gas": 1988434, "gasCost": 1, "depth": 2, "stack": [ @@ -5927,7 +5927,7 @@ { "pc": 196, "op": "PUSH1", - "gas": 1988409, + "gas": 1988433, "gasCost": 3, "depth": 2, "stack": [ @@ -5938,7 +5938,7 @@ { "pc": 198, "op": "CALLER", - "gas": 1988406, + "gas": 1988430, "gasCost": 2, "depth": 2, "stack": [ @@ -5950,7 +5950,7 @@ { "pc": 199, "op": "PUSH20", - "gas": 1988404, + "gas": 1988428, "gasCost": 3, "depth": 2, "stack": [ @@ -5963,7 +5963,7 @@ { "pc": 220, "op": "AND", - "gas": 1988401, + "gas": 1988425, "gasCost": 3, "depth": 2, "stack": [ @@ -5977,7 +5977,7 @@ { "pc": 221, "op": "PUSH32", - "gas": 1988398, + "gas": 1988422, "gasCost": 3, "depth": 2, "stack": [ @@ -5990,7 +5990,7 @@ { "pc": 254, "op": "DUP4", - "gas": 1988395, + "gas": 1988419, "gasCost": 3, "depth": 2, "stack": [ @@ -6004,7 +6004,7 @@ { "pc": 255, "op": "PUSH1", - "gas": 1988392, + "gas": 1988416, "gasCost": 3, "depth": 2, "stack": [ @@ -6019,7 +6019,7 @@ { "pc": 257, "op": "MLOAD", - "gas": 1988389, + "gas": 1988413, "gasCost": 3, "depth": 2, "stack": [ @@ -6035,7 +6035,7 @@ { "pc": 258, "op": "PUSH3", - "gas": 1988386, + "gas": 1988410, "gasCost": 3, "depth": 2, "stack": [ @@ -6051,7 +6051,7 @@ { "pc": 262, "op": "SWAP2", - "gas": 1988383, + "gas": 1988407, "gasCost": 3, "depth": 2, "stack": [ @@ -6068,7 +6068,7 @@ { "pc": 263, "op": "SWAP1", - "gas": 1988380, + "gas": 1988404, "gasCost": 3, "depth": 2, "stack": [ @@ -6085,7 +6085,7 @@ { "pc": 264, "op": "PUSH3", - "gas": 1988377, + "gas": 1988401, "gasCost": 3, "depth": 2, "stack": [ @@ -6102,7 +6102,7 @@ { "pc": 268, "op": "JUMP", - "gas": 1988374, + "gas": 1988398, "gasCost": 8, "depth": 2, "stack": [ @@ -6120,7 +6120,7 @@ { "pc": 834, "op": "JUMPDEST", - "gas": 1988366, + "gas": 1988390, "gasCost": 1, "depth": 2, "stack": [ @@ -6137,7 +6137,7 @@ { "pc": 835, "op": "PUSH1", - "gas": 1988365, + "gas": 1988389, "gasCost": 3, "depth": 2, "stack": [ @@ -6154,7 +6154,7 @@ { "pc": 837, "op": "PUSH1", - "gas": 1988362, + "gas": 1988386, "gasCost": 3, "depth": 2, "stack": [ @@ -6172,7 +6172,7 @@ { "pc": 839, "op": "DUP3", - "gas": 1988359, + "gas": 1988383, "gasCost": 3, "depth": 2, "stack": [ @@ -6191,7 +6191,7 @@ { "pc": 840, "op": "ADD", - "gas": 1988356, + "gas": 1988380, "gasCost": 3, "depth": 2, "stack": [ @@ -6211,7 +6211,7 @@ { "pc": 841, "op": "SWAP1", - "gas": 1988353, + "gas": 1988377, "gasCost": 3, "depth": 2, "stack": [ @@ -6230,7 +6230,7 @@ { "pc": 842, "op": "POP", - "gas": 1988350, + "gas": 1988374, "gasCost": 2, "depth": 2, "stack": [ @@ -6249,7 +6249,7 @@ { "pc": 843, "op": "PUSH3", - "gas": 1988348, + "gas": 1988372, "gasCost": 3, "depth": 2, "stack": [ @@ -6267,7 +6267,7 @@ { "pc": 847, "op": "PUSH1", - "gas": 1988345, + "gas": 1988369, "gasCost": 3, "depth": 2, "stack": [ @@ -6286,7 +6286,7 @@ { "pc": 849, "op": "DUP4", - "gas": 1988342, + "gas": 1988366, "gasCost": 3, "depth": 2, "stack": [ @@ -6306,7 +6306,7 @@ { "pc": 850, "op": "ADD", - "gas": 1988339, + "gas": 1988363, "gasCost": 3, "depth": 2, "stack": [ @@ -6327,7 +6327,7 @@ { "pc": 851, "op": "DUP5", - "gas": 1988336, + "gas": 1988360, "gasCost": 3, "depth": 2, "stack": [ @@ -6347,7 +6347,7 @@ { "pc": 852, "op": "PUSH3", - "gas": 1988333, + "gas": 1988357, "gasCost": 3, "depth": 2, "stack": [ @@ -6368,7 +6368,7 @@ { "pc": 856, "op": "JUMP", - "gas": 1988330, + "gas": 1988354, "gasCost": 8, "depth": 2, "stack": [ @@ -6390,7 +6390,7 @@ { "pc": 737, "op": "JUMPDEST", - "gas": 1988322, + "gas": 1988346, "gasCost": 1, "depth": 2, "stack": [ @@ -6411,7 +6411,7 @@ { "pc": 738, "op": "PUSH3", - "gas": 1988321, + "gas": 1988345, "gasCost": 3, "depth": 2, "stack": [ @@ -6432,7 +6432,7 @@ { "pc": 742, "op": "DUP2", - "gas": 1988318, + "gas": 1988342, "gasCost": 3, "depth": 2, "stack": [ @@ -6454,7 +6454,7 @@ { "pc": 743, "op": "PUSH3", - "gas": 1988315, + "gas": 1988339, "gasCost": 3, "depth": 2, "stack": [ @@ -6477,7 +6477,7 @@ { "pc": 747, "op": "JUMP", - "gas": 1988312, + "gas": 1988336, "gasCost": 8, "depth": 2, "stack": [ @@ -6501,7 +6501,7 @@ { "pc": 727, "op": "JUMPDEST", - "gas": 1988304, + "gas": 1988328, "gasCost": 1, "depth": 2, "stack": [ @@ -6524,7 +6524,7 @@ { "pc": 728, "op": "PUSH1", - "gas": 1988303, + "gas": 1988327, "gasCost": 3, "depth": 2, "stack": [ @@ -6547,7 +6547,7 @@ { "pc": 730, "op": "DUP2", - "gas": 1988300, + "gas": 1988324, "gasCost": 3, "depth": 2, "stack": [ @@ -6571,7 +6571,7 @@ { "pc": 731, "op": "SWAP1", - "gas": 1988297, + "gas": 1988321, "gasCost": 3, "depth": 2, "stack": [ @@ -6596,7 +6596,7 @@ { "pc": 732, "op": "POP", - "gas": 1988294, + "gas": 1988318, "gasCost": 2, "depth": 2, "stack": [ @@ -6621,7 +6621,7 @@ { "pc": 733, "op": "SWAP2", - "gas": 1988292, + "gas": 1988316, "gasCost": 3, "depth": 2, "stack": [ @@ -6645,7 +6645,7 @@ { "pc": 734, "op": "SWAP1", - "gas": 1988289, + "gas": 1988313, "gasCost": 3, "depth": 2, "stack": [ @@ -6669,7 +6669,7 @@ { "pc": 735, "op": "POP", - "gas": 1988286, + "gas": 1988310, "gasCost": 2, "depth": 2, "stack": [ @@ -6693,7 +6693,7 @@ { "pc": 736, "op": "JUMP", - "gas": 1988284, + "gas": 1988308, "gasCost": 8, "depth": 2, "stack": [ @@ -6716,7 +6716,7 @@ { "pc": 748, "op": "JUMPDEST", - "gas": 1988276, + "gas": 1988300, "gasCost": 1, "depth": 2, "stack": [ @@ -6738,7 +6738,7 @@ { "pc": 749, "op": "DUP3", - "gas": 1988275, + "gas": 1988299, "gasCost": 3, "depth": 2, "stack": [ @@ -6760,7 +6760,7 @@ { "pc": 750, "op": "MSTORE", - "gas": 1988272, + "gas": 1988296, "gasCost": 9, "depth": 2, "stack": [ @@ -6783,7 +6783,7 @@ { "pc": 751, "op": "POP", - "gas": 1988263, + "gas": 1988287, "gasCost": 2, "depth": 2, "stack": [ @@ -6804,7 +6804,7 @@ { "pc": 752, "op": "POP", - "gas": 1988261, + "gas": 1988285, "gasCost": 2, "depth": 2, "stack": [ @@ -6824,7 +6824,7 @@ { "pc": 753, "op": "JUMP", - "gas": 1988259, + "gas": 1988283, "gasCost": 8, "depth": 2, "stack": [ @@ -6843,7 +6843,7 @@ { "pc": 857, "op": "JUMPDEST", - "gas": 1988251, + "gas": 1988275, "gasCost": 1, "depth": 2, "stack": [ @@ -6861,7 +6861,7 @@ { "pc": 858, "op": "DUP2", - "gas": 1988250, + "gas": 1988274, "gasCost": 3, "depth": 2, "stack": [ @@ -6879,7 +6879,7 @@ { "pc": 859, "op": "DUP2", - "gas": 1988247, + "gas": 1988271, "gasCost": 3, "depth": 2, "stack": [ @@ -6898,7 +6898,7 @@ { "pc": 860, "op": "SUB", - "gas": 1988244, + "gas": 1988268, "gasCost": 3, "depth": 2, "stack": [ @@ -6918,7 +6918,7 @@ { "pc": 861, "op": "PUSH1", - "gas": 1988241, + "gas": 1988265, "gasCost": 3, "depth": 2, "stack": [ @@ -6937,7 +6937,7 @@ { "pc": 863, "op": "DUP4", - "gas": 1988238, + "gas": 1988262, "gasCost": 3, "depth": 2, "stack": [ @@ -6957,7 +6957,7 @@ { "pc": 864, "op": "ADD", - "gas": 1988235, + "gas": 1988259, "gasCost": 3, "depth": 2, "stack": [ @@ -6978,7 +6978,7 @@ { "pc": 865, "op": "MSTORE", - "gas": 1988232, + "gas": 1988256, "gasCost": 6, "depth": 2, "stack": [ @@ -6998,7 +6998,7 @@ { "pc": 866, "op": "PUSH3", - "gas": 1988226, + "gas": 1988250, "gasCost": 3, "depth": 2, "stack": [ @@ -7016,7 +7016,7 @@ { "pc": 870, "op": "DUP2", - "gas": 1988223, + "gas": 1988247, "gasCost": 3, "depth": 2, "stack": [ @@ -7035,7 +7035,7 @@ { "pc": 871, "op": "PUSH3", - "gas": 1988220, + "gas": 1988244, "gasCost": 3, "depth": 2, "stack": [ @@ -7055,7 +7055,7 @@ { "pc": 875, "op": "JUMP", - "gas": 1988217, + "gas": 1988241, "gasCost": 8, "depth": 2, "stack": [ @@ -7076,7 +7076,7 @@ { "pc": 795, "op": "JUMPDEST", - "gas": 1988209, + "gas": 1988233, "gasCost": 1, "depth": 2, "stack": [ @@ -7096,7 +7096,7 @@ { "pc": 796, "op": "PUSH1", - "gas": 1988208, + "gas": 1988232, "gasCost": 3, "depth": 2, "stack": [ @@ -7116,7 +7116,7 @@ { "pc": 798, "op": "PUSH3", - "gas": 1988205, + "gas": 1988229, "gasCost": 3, "depth": 2, "stack": [ @@ -7137,7 +7137,7 @@ { "pc": 802, "op": "PUSH1", - "gas": 1988202, + "gas": 1988226, "gasCost": 3, "depth": 2, "stack": [ @@ -7159,7 +7159,7 @@ { "pc": 804, "op": "DUP4", - "gas": 1988199, + "gas": 1988223, "gasCost": 3, "depth": 2, "stack": [ @@ -7182,7 +7182,7 @@ { "pc": 805, "op": "PUSH3", - "gas": 1988196, + "gas": 1988220, "gasCost": 3, "depth": 2, "stack": [ @@ -7206,7 +7206,7 @@ { "pc": 809, "op": "JUMP", - "gas": 1988193, + "gas": 1988217, "gasCost": 8, "depth": 2, "stack": [ @@ -7231,7 +7231,7 @@ { "pc": 558, "op": "JUMPDEST", - "gas": 1988185, + "gas": 1988209, "gasCost": 1, "depth": 2, "stack": [ @@ -7255,7 +7255,7 @@ { "pc": 559, "op": "PUSH1", - "gas": 1988184, + "gas": 1988208, "gasCost": 3, "depth": 2, "stack": [ @@ -7279,7 +7279,7 @@ { "pc": 561, "op": "DUP3", - "gas": 1988181, + "gas": 1988205, "gasCost": 3, "depth": 2, "stack": [ @@ -7304,7 +7304,7 @@ { "pc": 562, "op": "DUP3", - "gas": 1988178, + "gas": 1988202, "gasCost": 3, "depth": 2, "stack": [ @@ -7330,7 +7330,7 @@ { "pc": 563, "op": "MSTORE", - "gas": 1988175, + "gas": 1988199, "gasCost": 6, "depth": 2, "stack": [ @@ -7357,7 +7357,7 @@ { "pc": 564, "op": "PUSH1", - "gas": 1988169, + "gas": 1988193, "gasCost": 3, "depth": 2, "stack": [ @@ -7382,7 +7382,7 @@ { "pc": 566, "op": "DUP3", - "gas": 1988166, + "gas": 1988190, "gasCost": 3, "depth": 2, "stack": [ @@ -7408,7 +7408,7 @@ { "pc": 567, "op": "ADD", - "gas": 1988163, + "gas": 1988187, "gasCost": 3, "depth": 2, "stack": [ @@ -7435,7 +7435,7 @@ { "pc": 568, "op": "SWAP1", - "gas": 1988160, + "gas": 1988184, "gasCost": 3, "depth": 2, "stack": [ @@ -7461,7 +7461,7 @@ { "pc": 569, "op": "POP", - "gas": 1988157, + "gas": 1988181, "gasCost": 2, "depth": 2, "stack": [ @@ -7487,7 +7487,7 @@ { "pc": 570, "op": "SWAP3", - "gas": 1988155, + "gas": 1988179, "gasCost": 3, "depth": 2, "stack": [ @@ -7512,7 +7512,7 @@ { "pc": 571, "op": "SWAP2", - "gas": 1988152, + "gas": 1988176, "gasCost": 3, "depth": 2, "stack": [ @@ -7537,7 +7537,7 @@ { "pc": 572, "op": "POP", - "gas": 1988149, + "gas": 1988173, "gasCost": 2, "depth": 2, "stack": [ @@ -7562,7 +7562,7 @@ { "pc": 573, "op": "POP", - "gas": 1988147, + "gas": 1988171, "gasCost": 2, "depth": 2, "stack": [ @@ -7586,7 +7586,7 @@ { "pc": 574, "op": "JUMP", - "gas": 1988145, + "gas": 1988169, "gasCost": 8, "depth": 2, "stack": [ @@ -7609,7 +7609,7 @@ { "pc": 810, "op": "JUMPDEST", - "gas": 1988137, + "gas": 1988161, "gasCost": 1, "depth": 2, "stack": [ @@ -7631,7 +7631,7 @@ { "pc": 811, "op": "SWAP2", - "gas": 1988136, + "gas": 1988160, "gasCost": 3, "depth": 2, "stack": [ @@ -7653,7 +7653,7 @@ { "pc": 812, "op": "POP", - "gas": 1988133, + "gas": 1988157, "gasCost": 2, "depth": 2, "stack": [ @@ -7675,7 +7675,7 @@ { "pc": 813, "op": "PUSH3", - "gas": 1988131, + "gas": 1988155, "gasCost": 3, "depth": 2, "stack": [ @@ -7696,7 +7696,7 @@ { "pc": 817, "op": "DUP3", - "gas": 1988128, + "gas": 1988152, "gasCost": 3, "depth": 2, "stack": [ @@ -7718,7 +7718,7 @@ { "pc": 818, "op": "PUSH3", - "gas": 1988125, + "gas": 1988149, "gasCost": 3, "depth": 2, "stack": [ @@ -7741,7 +7741,7 @@ { "pc": 822, "op": "JUMP", - "gas": 1988122, + "gas": 1988146, "gasCost": 8, "depth": 2, "stack": [ @@ -7765,7 +7765,7 @@ { "pc": 754, "op": "JUMPDEST", - "gas": 1988114, + "gas": 1988138, "gasCost": 1, "depth": 2, "stack": [ @@ -7788,7 +7788,7 @@ { "pc": 755, "op": "PUSH32", - "gas": 1988113, + "gas": 1988137, "gasCost": 3, "depth": 2, "stack": [ @@ -7811,7 +7811,7 @@ { "pc": 788, "op": "PUSH1", - "gas": 1988110, + "gas": 1988134, "gasCost": 3, "depth": 2, "stack": [ @@ -7835,7 +7835,7 @@ { "pc": 790, "op": "DUP3", - "gas": 1988107, + "gas": 1988131, "gasCost": 3, "depth": 2, "stack": [ @@ -7860,7 +7860,7 @@ { "pc": 791, "op": "ADD", - "gas": 1988104, + "gas": 1988128, "gasCost": 3, "depth": 2, "stack": [ @@ -7886,7 +7886,7 @@ { "pc": 792, "op": "MSTORE", - "gas": 1988101, + "gas": 1988125, "gasCost": 6, "depth": 2, "stack": [ @@ -7911,7 +7911,7 @@ { "pc": 793, "op": "POP", - "gas": 1988095, + "gas": 1988119, "gasCost": 2, "depth": 2, "stack": [ @@ -7934,7 +7934,7 @@ { "pc": 794, "op": "JUMP", - "gas": 1988093, + "gas": 1988117, "gasCost": 8, "depth": 2, "stack": [ @@ -7956,7 +7956,7 @@ { "pc": 823, "op": "JUMPDEST", - "gas": 1988085, + "gas": 1988109, "gasCost": 1, "depth": 2, "stack": [ @@ -7977,7 +7977,7 @@ { "pc": 824, "op": "PUSH1", - "gas": 1988084, + "gas": 1988108, "gasCost": 3, "depth": 2, "stack": [ @@ -7998,7 +7998,7 @@ { "pc": 826, "op": "DUP3", - "gas": 1988081, + "gas": 1988105, "gasCost": 3, "depth": 2, "stack": [ @@ -8020,7 +8020,7 @@ { "pc": 827, "op": "ADD", - "gas": 1988078, + "gas": 1988102, "gasCost": 3, "depth": 2, "stack": [ @@ -8043,7 +8043,7 @@ { "pc": 828, "op": "SWAP1", - "gas": 1988075, + "gas": 1988099, "gasCost": 3, "depth": 2, "stack": [ @@ -8065,7 +8065,7 @@ { "pc": 829, "op": "POP", - "gas": 1988072, + "gas": 1988096, "gasCost": 2, "depth": 2, "stack": [ @@ -8087,7 +8087,7 @@ { "pc": 830, "op": "SWAP2", - "gas": 1988070, + "gas": 1988094, "gasCost": 3, "depth": 2, "stack": [ @@ -8108,7 +8108,7 @@ { "pc": 831, "op": "SWAP1", - "gas": 1988067, + "gas": 1988091, "gasCost": 3, "depth": 2, "stack": [ @@ -8129,7 +8129,7 @@ { "pc": 832, "op": "POP", - "gas": 1988064, + "gas": 1988088, "gasCost": 2, "depth": 2, "stack": [ @@ -8150,7 +8150,7 @@ { "pc": 833, "op": "JUMP", - "gas": 1988062, + "gas": 1988086, "gasCost": 8, "depth": 2, "stack": [ @@ -8170,7 +8170,7 @@ { "pc": 876, "op": "JUMPDEST", - "gas": 1988054, + "gas": 1988078, "gasCost": 1, "depth": 2, "stack": [ @@ -8189,7 +8189,7 @@ { "pc": 877, "op": "SWAP1", - "gas": 1988053, + "gas": 1988077, "gasCost": 3, "depth": 2, "stack": [ @@ -8208,7 +8208,7 @@ { "pc": 878, "op": "POP", - "gas": 1988050, + "gas": 1988074, "gasCost": 2, "depth": 2, "stack": [ @@ -8227,7 +8227,7 @@ { "pc": 879, "op": "SWAP3", - "gas": 1988048, + "gas": 1988072, "gasCost": 3, "depth": 2, "stack": [ @@ -8245,7 +8245,7 @@ { "pc": 880, "op": "SWAP2", - "gas": 1988045, + "gas": 1988069, "gasCost": 3, "depth": 2, "stack": [ @@ -8263,7 +8263,7 @@ { "pc": 881, "op": "POP", - "gas": 1988042, + "gas": 1988066, "gasCost": 2, "depth": 2, "stack": [ @@ -8281,7 +8281,7 @@ { "pc": 882, "op": "POP", - "gas": 1988040, + "gas": 1988064, "gasCost": 2, "depth": 2, "stack": [ @@ -8298,7 +8298,7 @@ { "pc": 883, "op": "JUMP", - "gas": 1988038, + "gas": 1988062, "gasCost": 8, "depth": 2, "stack": [ @@ -8314,7 +8314,7 @@ { "pc": 269, "op": "JUMPDEST", - "gas": 1988030, + "gas": 1988054, "gasCost": 1, "depth": 2, "stack": [ @@ -8329,7 +8329,7 @@ { "pc": 270, "op": "PUSH1", - "gas": 1988029, + "gas": 1988053, "gasCost": 3, "depth": 2, "stack": [ @@ -8344,7 +8344,7 @@ { "pc": 272, "op": "MLOAD", - "gas": 1988026, + "gas": 1988050, "gasCost": 3, "depth": 2, "stack": [ @@ -8360,7 +8360,7 @@ { "pc": 273, "op": "DUP1", - "gas": 1988023, + "gas": 1988047, "gasCost": 3, "depth": 2, "stack": [ @@ -8376,7 +8376,7 @@ { "pc": 274, "op": "SWAP2", - "gas": 1988020, + "gas": 1988044, "gasCost": 3, "depth": 2, "stack": [ @@ -8393,7 +8393,7 @@ { "pc": 275, "op": "SUB", - "gas": 1988017, + "gas": 1988041, "gasCost": 3, "depth": 2, "stack": [ @@ -8410,7 +8410,7 @@ { "pc": 276, "op": "SWAP1", - "gas": 1988014, + "gas": 1988038, "gasCost": 3, "depth": 2, "stack": [ @@ -8426,7 +8426,7 @@ { "pc": 277, "op": "LOG2", - "gas": 1988011, + "gas": 1988035, "gasCost": 2149, "depth": 2, "stack": [ @@ -8442,7 +8442,7 @@ { "pc": 278, "op": "DUP2", - "gas": 1985862, + "gas": 1985886, "gasCost": 3, "depth": 2, "stack": [ @@ -8454,7 +8454,7 @@ { "pc": 279, "op": "PUSH1", - "gas": 1985859, + "gas": 1985883, "gasCost": 3, "depth": 2, "stack": [ @@ -8467,7 +8467,7 @@ { "pc": 281, "op": "DUP1", - "gas": 1985856, + "gas": 1985880, "gasCost": 3, "depth": 2, "stack": [ @@ -8481,7 +8481,7 @@ { "pc": 282, "op": "DUP3", - "gas": 1985853, + "gas": 1985877, "gasCost": 3, "depth": 2, "stack": [ @@ -8496,7 +8496,7 @@ { "pc": 283, "op": "DUP3", - "gas": 1985850, + "gas": 1985874, "gasCost": 3, "depth": 2, "stack": [ @@ -8512,7 +8512,7 @@ { "pc": 284, "op": "SLOAD", - "gas": 1985847, + "gas": 1985871, "gasCost": 2100, "depth": 2, "stack": [ @@ -8533,7 +8533,7 @@ { "pc": 285, "op": "PUSH3", - "gas": 1983747, + "gas": 1983771, "gasCost": 3, "depth": 2, "stack": [ @@ -8550,7 +8550,7 @@ { "pc": 289, "op": "SWAP2", - "gas": 1983744, + "gas": 1983768, "gasCost": 3, "depth": 2, "stack": [ @@ -8568,7 +8568,7 @@ { "pc": 290, "op": "SWAP1", - "gas": 1983741, + "gas": 1983765, "gasCost": 3, "depth": 2, "stack": [ @@ -8586,7 +8586,7 @@ { "pc": 291, "op": "PUSH3", - "gas": 1983738, + "gas": 1983762, "gasCost": 3, "depth": 2, "stack": [ @@ -8604,7 +8604,7 @@ { "pc": 295, "op": "JUMP", - "gas": 1983735, + "gas": 1983759, "gasCost": 8, "depth": 2, "stack": [ @@ -8623,7 +8623,7 @@ { "pc": 931, "op": "JUMPDEST", - "gas": 1983727, + "gas": 1983751, "gasCost": 1, "depth": 2, "stack": [ @@ -8641,7 +8641,7 @@ { "pc": 932, "op": "PUSH1", - "gas": 1983726, + "gas": 1983750, "gasCost": 3, "depth": 2, "stack": [ @@ -8659,7 +8659,7 @@ { "pc": 934, "op": "PUSH3", - "gas": 1983723, + "gas": 1983747, "gasCost": 3, "depth": 2, "stack": [ @@ -8678,7 +8678,7 @@ { "pc": 938, "op": "DUP3", - "gas": 1983720, + "gas": 1983744, "gasCost": 3, "depth": 2, "stack": [ @@ -8698,7 +8698,7 @@ { "pc": 939, "op": "PUSH3", - "gas": 1983717, + "gas": 1983741, "gasCost": 3, "depth": 2, "stack": [ @@ -8719,7 +8719,7 @@ { "pc": 943, "op": "JUMP", - "gas": 1983714, + "gas": 1983738, "gasCost": 8, "depth": 2, "stack": [ @@ -8741,7 +8741,7 @@ { "pc": 727, "op": "JUMPDEST", - "gas": 1983706, + "gas": 1983730, "gasCost": 1, "depth": 2, "stack": [ @@ -8762,7 +8762,7 @@ { "pc": 728, "op": "PUSH1", - "gas": 1983705, + "gas": 1983729, "gasCost": 3, "depth": 2, "stack": [ @@ -8783,7 +8783,7 @@ { "pc": 730, "op": "DUP2", - "gas": 1983702, + "gas": 1983726, "gasCost": 3, "depth": 2, "stack": [ @@ -8805,7 +8805,7 @@ { "pc": 731, "op": "SWAP1", - "gas": 1983699, + "gas": 1983723, "gasCost": 3, "depth": 2, "stack": [ @@ -8828,7 +8828,7 @@ { "pc": 732, "op": "POP", - "gas": 1983696, + "gas": 1983720, "gasCost": 2, "depth": 2, "stack": [ @@ -8851,7 +8851,7 @@ { "pc": 733, "op": "SWAP2", - "gas": 1983694, + "gas": 1983718, "gasCost": 3, "depth": 2, "stack": [ @@ -8873,7 +8873,7 @@ { "pc": 734, "op": "SWAP1", - "gas": 1983691, + "gas": 1983715, "gasCost": 3, "depth": 2, "stack": [ @@ -8895,7 +8895,7 @@ { "pc": 735, "op": "POP", - "gas": 1983688, + "gas": 1983712, "gasCost": 2, "depth": 2, "stack": [ @@ -8917,7 +8917,7 @@ { "pc": 736, "op": "JUMP", - "gas": 1983686, + "gas": 1983710, "gasCost": 8, "depth": 2, "stack": [ @@ -8938,7 +8938,7 @@ { "pc": 944, "op": "JUMPDEST", - "gas": 1983678, + "gas": 1983702, "gasCost": 1, "depth": 2, "stack": [ @@ -8958,7 +8958,7 @@ { "pc": 945, "op": "SWAP2", - "gas": 1983677, + "gas": 1983701, "gasCost": 3, "depth": 2, "stack": [ @@ -8978,7 +8978,7 @@ { "pc": 946, "op": "POP", - "gas": 1983674, + "gas": 1983698, "gasCost": 2, "depth": 2, "stack": [ @@ -8998,7 +8998,7 @@ { "pc": 947, "op": "PUSH3", - "gas": 1983672, + "gas": 1983696, "gasCost": 3, "depth": 2, "stack": [ @@ -9017,7 +9017,7 @@ { "pc": 951, "op": "DUP4", - "gas": 1983669, + "gas": 1983693, "gasCost": 3, "depth": 2, "stack": [ @@ -9037,7 +9037,7 @@ { "pc": 952, "op": "PUSH3", - "gas": 1983666, + "gas": 1983690, "gasCost": 3, "depth": 2, "stack": [ @@ -9058,7 +9058,7 @@ { "pc": 956, "op": "JUMP", - "gas": 1983663, + "gas": 1983687, "gasCost": 8, "depth": 2, "stack": [ @@ -9080,7 +9080,7 @@ { "pc": 727, "op": "JUMPDEST", - "gas": 1983655, + "gas": 1983679, "gasCost": 1, "depth": 2, "stack": [ @@ -9101,7 +9101,7 @@ { "pc": 728, "op": "PUSH1", - "gas": 1983654, + "gas": 1983678, "gasCost": 3, "depth": 2, "stack": [ @@ -9122,7 +9122,7 @@ { "pc": 730, "op": "DUP2", - "gas": 1983651, + "gas": 1983675, "gasCost": 3, "depth": 2, "stack": [ @@ -9144,7 +9144,7 @@ { "pc": 731, "op": "SWAP1", - "gas": 1983648, + "gas": 1983672, "gasCost": 3, "depth": 2, "stack": [ @@ -9167,7 +9167,7 @@ { "pc": 732, "op": "POP", - "gas": 1983645, + "gas": 1983669, "gasCost": 2, "depth": 2, "stack": [ @@ -9190,7 +9190,7 @@ { "pc": 733, "op": "SWAP2", - "gas": 1983643, + "gas": 1983667, "gasCost": 3, "depth": 2, "stack": [ @@ -9212,7 +9212,7 @@ { "pc": 734, "op": "SWAP1", - "gas": 1983640, + "gas": 1983664, "gasCost": 3, "depth": 2, "stack": [ @@ -9234,7 +9234,7 @@ { "pc": 735, "op": "POP", - "gas": 1983637, + "gas": 1983661, "gasCost": 2, "depth": 2, "stack": [ @@ -9256,7 +9256,7 @@ { "pc": 736, "op": "JUMP", - "gas": 1983635, + "gas": 1983659, "gasCost": 8, "depth": 2, "stack": [ @@ -9277,7 +9277,7 @@ { "pc": 957, "op": "JUMPDEST", - "gas": 1983627, + "gas": 1983651, "gasCost": 1, "depth": 2, "stack": [ @@ -9297,7 +9297,7 @@ { "pc": 958, "op": "SWAP3", - "gas": 1983626, + "gas": 1983650, "gasCost": 3, "depth": 2, "stack": [ @@ -9317,7 +9317,7 @@ { "pc": 959, "op": "POP", - "gas": 1983623, + "gas": 1983647, "gasCost": 2, "depth": 2, "stack": [ @@ -9337,7 +9337,7 @@ { "pc": 960, "op": "DUP3", - "gas": 1983621, + "gas": 1983645, "gasCost": 3, "depth": 2, "stack": [ @@ -9355,8 +9355,8 @@ }, { "pc": 961, - "op": "PUSH32", - "gas": 1983618, + "op": "DUP3", + "gas": 1983642, "gasCost": 3, "depth": 2, "stack": [ @@ -9374,9 +9374,9 @@ ] }, { - "pc": 994, - "op": "SUB", - "gas": 1983615, + "pc": 962, + "op": "ADD", + "gas": 1983639, "gasCost": 3, "depth": 2, "stack": [ @@ -9391,13 +9391,13 @@ "0x0", "0x0", "0x1d6329f1c35ca4bfabb9f5610000000000", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + "0x0" ] }, { - "pc": 995, - "op": "DUP3", - "gas": 1983612, + "pc": 963, + "op": "SWAP1", + "gas": 1983636, "gasCost": 3, "depth": 2, "stack": [ @@ -9411,14 +9411,14 @@ "0x1d6329f1c35ca4bfabb9f5610000000000", "0x0", "0x0", - "0xffffffffffffffffffffffffffffffe29cd60e3ca35b4054460a9effffffffff" + "0x1d6329f1c35ca4bfabb9f5610000000000" ] }, { - "pc": 996, - "op": "GT", - "gas": 1983609, - "gasCost": 3, + "pc": 964, + "op": "POP", + "gas": 1983633, + "gasCost": 2, "depth": 2, "stack": [ "0xbc", @@ -9430,15 +9430,14 @@ "0x128", "0x1d6329f1c35ca4bfabb9f5610000000000", "0x0", - "0x0", - "0xffffffffffffffffffffffffffffffe29cd60e3ca35b4054460a9effffffffff", + "0x1d6329f1c35ca4bfabb9f5610000000000", "0x0" ] }, { - "pc": 997, - "op": "ISZERO", - "gas": 1983606, + "pc": 965, + "op": "DUP1", + "gas": 1983631, "gasCost": 3, "depth": 2, "stack": [ @@ -9451,14 +9450,13 @@ "0x128", "0x1d6329f1c35ca4bfabb9f5610000000000", "0x0", - "0x0", - "0x0" + "0x1d6329f1c35ca4bfabb9f5610000000000" ] }, { - "pc": 998, - "op": "PUSH3", - "gas": 1983603, + "pc": 966, + "op": "DUP3", + "gas": 1983628, "gasCost": 3, "depth": 2, "stack": [ @@ -9471,15 +9469,15 @@ "0x128", "0x1d6329f1c35ca4bfabb9f5610000000000", "0x0", - "0x0", - "0x1" + "0x1d6329f1c35ca4bfabb9f5610000000000", + "0x1d6329f1c35ca4bfabb9f5610000000000" ] }, { - "pc": 1002, - "op": "JUMPI", - "gas": 1983600, - "gasCost": 10, + "pc": 967, + "op": "GT", + "gas": 1983625, + "gasCost": 3, "depth": 2, "stack": [ "0xbc", @@ -9491,34 +9489,15 @@ "0x128", "0x1d6329f1c35ca4bfabb9f5610000000000", "0x0", - "0x0", - "0x1", - "0x3f5" - ] - }, - { - "pc": 1013, - "op": "JUMPDEST", - "gas": 1983590, - "gasCost": 1, - "depth": 2, - "stack": [ - "0xbc", - "0x1d6329f1c35ca4bfabb9f5610000000000", - "0x0", "0x1d6329f1c35ca4bfabb9f5610000000000", - "0x0", - "0x0", - "0x128", "0x1d6329f1c35ca4bfabb9f5610000000000", - "0x0", "0x0" ] }, { - "pc": 1014, - "op": "DUP3", - "gas": 1983589, + "pc": 968, + "op": "ISZERO", + "gas": 1983622, "gasCost": 3, "depth": 2, "stack": [ @@ -9531,13 +9510,14 @@ "0x128", "0x1d6329f1c35ca4bfabb9f5610000000000", "0x0", + "0x1d6329f1c35ca4bfabb9f5610000000000", "0x0" ] }, { - "pc": 1015, - "op": "DUP3", - "gas": 1983586, + "pc": 969, + "op": "PUSH3", + "gas": 1983619, "gasCost": 3, "depth": 2, "stack": [ @@ -9550,15 +9530,15 @@ "0x128", "0x1d6329f1c35ca4bfabb9f5610000000000", "0x0", - "0x0", - "0x1d6329f1c35ca4bfabb9f5610000000000" + "0x1d6329f1c35ca4bfabb9f5610000000000", + "0x1" ] }, { - "pc": 1016, - "op": "ADD", - "gas": 1983583, - "gasCost": 3, + "pc": 973, + "op": "JUMPI", + "gas": 1983616, + "gasCost": 10, "depth": 2, "stack": [ "0xbc", @@ -9570,16 +9550,16 @@ "0x128", "0x1d6329f1c35ca4bfabb9f5610000000000", "0x0", - "0x0", "0x1d6329f1c35ca4bfabb9f5610000000000", - "0x0" + "0x1", + "0x3d8" ] }, { - "pc": 1017, - "op": "SWAP1", - "gas": 1983580, - "gasCost": 3, + "pc": 984, + "op": "JUMPDEST", + "gas": 1983606, + "gasCost": 1, "depth": 2, "stack": [ "0xbc", @@ -9591,34 +9571,13 @@ "0x128", "0x1d6329f1c35ca4bfabb9f5610000000000", "0x0", - "0x0", "0x1d6329f1c35ca4bfabb9f5610000000000" ] }, { - "pc": 1018, - "op": "POP", - "gas": 1983577, - "gasCost": 2, - "depth": 2, - "stack": [ - "0xbc", - "0x1d6329f1c35ca4bfabb9f5610000000000", - "0x0", - "0x1d6329f1c35ca4bfabb9f5610000000000", - "0x0", - "0x0", - "0x128", - "0x1d6329f1c35ca4bfabb9f5610000000000", - "0x0", - "0x1d6329f1c35ca4bfabb9f5610000000000", - "0x0" - ] - }, - { - "pc": 1019, + "pc": 985, "op": "SWAP3", - "gas": 1983575, + "gas": 1983605, "gasCost": 3, "depth": 2, "stack": [ @@ -9635,9 +9594,9 @@ ] }, { - "pc": 1020, + "pc": 986, "op": "SWAP2", - "gas": 1983572, + "gas": 1983602, "gasCost": 3, "depth": 2, "stack": [ @@ -9654,9 +9613,9 @@ ] }, { - "pc": 1021, + "pc": 987, "op": "POP", - "gas": 1983569, + "gas": 1983599, "gasCost": 2, "depth": 2, "stack": [ @@ -9673,9 +9632,9 @@ ] }, { - "pc": 1022, + "pc": 988, "op": "POP", - "gas": 1983567, + "gas": 1983597, "gasCost": 2, "depth": 2, "stack": [ @@ -9691,9 +9650,9 @@ ] }, { - "pc": 1023, + "pc": 989, "op": "JUMP", - "gas": 1983565, + "gas": 1983595, "gasCost": 8, "depth": 2, "stack": [ @@ -9710,7 +9669,7 @@ { "pc": 296, "op": "JUMPDEST", - "gas": 1983557, + "gas": 1983587, "gasCost": 1, "depth": 2, "stack": [ @@ -9726,7 +9685,7 @@ { "pc": 297, "op": "SWAP3", - "gas": 1983556, + "gas": 1983586, "gasCost": 3, "depth": 2, "stack": [ @@ -9742,7 +9701,7 @@ { "pc": 298, "op": "POP", - "gas": 1983553, + "gas": 1983583, "gasCost": 2, "depth": 2, "stack": [ @@ -9758,7 +9717,7 @@ { "pc": 299, "op": "POP", - "gas": 1983551, + "gas": 1983581, "gasCost": 2, "depth": 2, "stack": [ @@ -9773,7 +9732,7 @@ { "pc": 300, "op": "DUP2", - "gas": 1983549, + "gas": 1983579, "gasCost": 3, "depth": 2, "stack": [ @@ -9787,7 +9746,7 @@ { "pc": 301, "op": "SWAP1", - "gas": 1983546, + "gas": 1983576, "gasCost": 3, "depth": 2, "stack": [ @@ -9802,7 +9761,7 @@ { "pc": 302, "op": "SSTORE", - "gas": 1983543, + "gas": 1983573, "gasCost": 20000, "depth": 2, "stack": [ @@ -9821,7 +9780,7 @@ { "pc": 303, "op": "POP", - "gas": 1963543, + "gas": 1963573, "gasCost": 2, "depth": 2, "stack": [ @@ -9834,7 +9793,7 @@ { "pc": 304, "op": "PUSH3", - "gas": 1963541, + "gas": 1963571, "gasCost": 3, "depth": 2, "stack": [ @@ -9846,7 +9805,7 @@ { "pc": 308, "op": "PUSH1", - "gas": 1963538, + "gas": 1963568, "gasCost": 3, "depth": 2, "stack": [ @@ -9859,7 +9818,7 @@ { "pc": 310, "op": "DUP4", - "gas": 1963535, + "gas": 1963565, "gasCost": 3, "depth": 2, "stack": [ @@ -9873,7 +9832,7 @@ { "pc": 311, "op": "PUSH3", - "gas": 1963532, + "gas": 1963562, "gasCost": 3, "depth": 2, "stack": [ @@ -9888,7 +9847,7 @@ { "pc": 315, "op": "SWAP2", - "gas": 1963529, + "gas": 1963559, "gasCost": 3, "depth": 2, "stack": [ @@ -9904,7 +9863,7 @@ { "pc": 316, "op": "SWAP1", - "gas": 1963526, + "gas": 1963556, "gasCost": 3, "depth": 2, "stack": [ @@ -9920,7 +9879,7 @@ { "pc": 317, "op": "PUSH3", - "gas": 1963523, + "gas": 1963553, "gasCost": 3, "depth": 2, "stack": [ @@ -9936,7 +9895,7 @@ { "pc": 321, "op": "JUMP", - "gas": 1963520, + "gas": 1963550, "gasCost": 8, "depth": 2, "stack": [ @@ -9953,7 +9912,7 @@ { "pc": 931, "op": "JUMPDEST", - "gas": 1963512, + "gas": 1963542, "gasCost": 1, "depth": 2, "stack": [ @@ -9969,7 +9928,7 @@ { "pc": 932, "op": "PUSH1", - "gas": 1963511, + "gas": 1963541, "gasCost": 3, "depth": 2, "stack": [ @@ -9985,7 +9944,7 @@ { "pc": 934, "op": "PUSH3", - "gas": 1963508, + "gas": 1963538, "gasCost": 3, "depth": 2, "stack": [ @@ -10002,7 +9961,7 @@ { "pc": 938, "op": "DUP3", - "gas": 1963505, + "gas": 1963535, "gasCost": 3, "depth": 2, "stack": [ @@ -10020,7 +9979,7 @@ { "pc": 939, "op": "PUSH3", - "gas": 1963502, + "gas": 1963532, "gasCost": 3, "depth": 2, "stack": [ @@ -10039,7 +9998,7 @@ { "pc": 943, "op": "JUMP", - "gas": 1963499, + "gas": 1963529, "gasCost": 8, "depth": 2, "stack": [ @@ -10059,7 +10018,7 @@ { "pc": 727, "op": "JUMPDEST", - "gas": 1963491, + "gas": 1963521, "gasCost": 1, "depth": 2, "stack": [ @@ -10078,7 +10037,7 @@ { "pc": 728, "op": "PUSH1", - "gas": 1963490, + "gas": 1963520, "gasCost": 3, "depth": 2, "stack": [ @@ -10097,7 +10056,7 @@ { "pc": 730, "op": "DUP2", - "gas": 1963487, + "gas": 1963517, "gasCost": 3, "depth": 2, "stack": [ @@ -10117,7 +10076,7 @@ { "pc": 731, "op": "SWAP1", - "gas": 1963484, + "gas": 1963514, "gasCost": 3, "depth": 2, "stack": [ @@ -10138,7 +10097,7 @@ { "pc": 732, "op": "POP", - "gas": 1963481, + "gas": 1963511, "gasCost": 2, "depth": 2, "stack": [ @@ -10159,7 +10118,7 @@ { "pc": 733, "op": "SWAP2", - "gas": 1963479, + "gas": 1963509, "gasCost": 3, "depth": 2, "stack": [ @@ -10179,7 +10138,7 @@ { "pc": 734, "op": "SWAP1", - "gas": 1963476, + "gas": 1963506, "gasCost": 3, "depth": 2, "stack": [ @@ -10199,7 +10158,7 @@ { "pc": 735, "op": "POP", - "gas": 1963473, + "gas": 1963503, "gasCost": 2, "depth": 2, "stack": [ @@ -10219,7 +10178,7 @@ { "pc": 736, "op": "JUMP", - "gas": 1963471, + "gas": 1963501, "gasCost": 8, "depth": 2, "stack": [ @@ -10238,7 +10197,7 @@ { "pc": 944, "op": "JUMPDEST", - "gas": 1963463, + "gas": 1963493, "gasCost": 1, "depth": 2, "stack": [ @@ -10256,7 +10215,7 @@ { "pc": 945, "op": "SWAP2", - "gas": 1963462, + "gas": 1963492, "gasCost": 3, "depth": 2, "stack": [ @@ -10274,7 +10233,7 @@ { "pc": 946, "op": "POP", - "gas": 1963459, + "gas": 1963489, "gasCost": 2, "depth": 2, "stack": [ @@ -10292,7 +10251,7 @@ { "pc": 947, "op": "PUSH3", - "gas": 1963457, + "gas": 1963487, "gasCost": 3, "depth": 2, "stack": [ @@ -10309,7 +10268,7 @@ { "pc": 951, "op": "DUP4", - "gas": 1963454, + "gas": 1963484, "gasCost": 3, "depth": 2, "stack": [ @@ -10327,7 +10286,7 @@ { "pc": 952, "op": "PUSH3", - "gas": 1963451, + "gas": 1963481, "gasCost": 3, "depth": 2, "stack": [ @@ -10346,7 +10305,7 @@ { "pc": 956, "op": "JUMP", - "gas": 1963448, + "gas": 1963478, "gasCost": 8, "depth": 2, "stack": [ @@ -10366,7 +10325,7 @@ { "pc": 727, "op": "JUMPDEST", - "gas": 1963440, + "gas": 1963470, "gasCost": 1, "depth": 2, "stack": [ @@ -10385,7 +10344,7 @@ { "pc": 728, "op": "PUSH1", - "gas": 1963439, + "gas": 1963469, "gasCost": 3, "depth": 2, "stack": [ @@ -10404,7 +10363,7 @@ { "pc": 730, "op": "DUP2", - "gas": 1963436, + "gas": 1963466, "gasCost": 3, "depth": 2, "stack": [ @@ -10424,7 +10383,7 @@ { "pc": 731, "op": "SWAP1", - "gas": 1963433, + "gas": 1963463, "gasCost": 3, "depth": 2, "stack": [ @@ -10445,7 +10404,7 @@ { "pc": 732, "op": "POP", - "gas": 1963430, + "gas": 1963460, "gasCost": 2, "depth": 2, "stack": [ @@ -10466,7 +10425,7 @@ { "pc": 733, "op": "SWAP2", - "gas": 1963428, + "gas": 1963458, "gasCost": 3, "depth": 2, "stack": [ @@ -10486,7 +10445,7 @@ { "pc": 734, "op": "SWAP1", - "gas": 1963425, + "gas": 1963455, "gasCost": 3, "depth": 2, "stack": [ @@ -10506,7 +10465,7 @@ { "pc": 735, "op": "POP", - "gas": 1963422, + "gas": 1963452, "gasCost": 2, "depth": 2, "stack": [ @@ -10526,7 +10485,7 @@ { "pc": 736, "op": "JUMP", - "gas": 1963420, + "gas": 1963450, "gasCost": 8, "depth": 2, "stack": [ @@ -10545,7 +10504,7 @@ { "pc": 957, "op": "JUMPDEST", - "gas": 1963412, + "gas": 1963442, "gasCost": 1, "depth": 2, "stack": [ @@ -10563,7 +10522,7 @@ { "pc": 958, "op": "SWAP3", - "gas": 1963411, + "gas": 1963441, "gasCost": 3, "depth": 2, "stack": [ @@ -10581,7 +10540,7 @@ { "pc": 959, "op": "POP", - "gas": 1963408, + "gas": 1963438, "gasCost": 2, "depth": 2, "stack": [ @@ -10599,7 +10558,7 @@ { "pc": 960, "op": "DUP3", - "gas": 1963406, + "gas": 1963436, "gasCost": 3, "depth": 2, "stack": [ @@ -10615,8 +10574,8 @@ }, { "pc": 961, - "op": "PUSH32", - "gas": 1963403, + "op": "DUP3", + "gas": 1963433, "gasCost": 3, "depth": 2, "stack": [ @@ -10632,9 +10591,9 @@ ] }, { - "pc": 994, - "op": "SUB", - "gas": 1963400, + "pc": 962, + "op": "ADD", + "gas": 1963430, "gasCost": 3, "depth": 2, "stack": [ @@ -10647,31 +10606,13 @@ "0x1d6329f1c35ca4bfabb9f5610000000000", "0x0", "0x1", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" - ] - }, - { - "pc": 995, - "op": "DUP3", - "gas": 1963397, - "gasCost": 3, - "depth": 2, - "stack": [ - "0xbc", - "0x1d6329f1c35ca4bfabb9f5610000000000", - "0x0", - "0x14e", - "0x142", - "0x1", - "0x1d6329f1c35ca4bfabb9f5610000000000", - "0x0", - "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe" + "0x1d6329f1c35ca4bfabb9f5610000000000" ] }, { - "pc": 996, - "op": "GT", - "gas": 1963394, + "pc": 963, + "op": "SWAP1", + "gas": 1963427, "gasCost": 3, "depth": 2, "stack": [ @@ -10683,15 +10624,14 @@ "0x1", "0x1d6329f1c35ca4bfabb9f5610000000000", "0x0", - "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe", - "0x1d6329f1c35ca4bfabb9f5610000000000" + "0x1d6329f1c35ca4bfabb9f5610000000001" ] }, { - "pc": 997, - "op": "ISZERO", - "gas": 1963391, - "gasCost": 3, + "pc": 964, + "op": "POP", + "gas": 1963424, + "gasCost": 2, "depth": 2, "stack": [ "0xbc", @@ -10701,14 +10641,14 @@ "0x142", "0x1", "0x1d6329f1c35ca4bfabb9f5610000000000", - "0x0", + "0x1d6329f1c35ca4bfabb9f5610000000001", "0x0" ] }, { - "pc": 998, - "op": "PUSH3", - "gas": 1963388, + "pc": 965, + "op": "DUP1", + "gas": 1963422, "gasCost": 3, "depth": 2, "stack": [ @@ -10719,15 +10659,14 @@ "0x142", "0x1", "0x1d6329f1c35ca4bfabb9f5610000000000", - "0x0", - "0x1" + "0x1d6329f1c35ca4bfabb9f5610000000001" ] }, { - "pc": 1002, - "op": "JUMPI", - "gas": 1963385, - "gasCost": 10, + "pc": 966, + "op": "DUP3", + "gas": 1963419, + "gasCost": 3, "depth": 2, "stack": [ "0xbc", @@ -10737,16 +10676,15 @@ "0x142", "0x1", "0x1d6329f1c35ca4bfabb9f5610000000000", - "0x0", - "0x1", - "0x3f5" + "0x1d6329f1c35ca4bfabb9f5610000000001", + "0x1d6329f1c35ca4bfabb9f5610000000001" ] }, { - "pc": 1013, - "op": "JUMPDEST", - "gas": 1963375, - "gasCost": 1, + "pc": 967, + "op": "GT", + "gas": 1963416, + "gasCost": 3, "depth": 2, "stack": [ "0xbc", @@ -10756,13 +10694,15 @@ "0x142", "0x1", "0x1d6329f1c35ca4bfabb9f5610000000000", - "0x0" + "0x1d6329f1c35ca4bfabb9f5610000000001", + "0x1d6329f1c35ca4bfabb9f5610000000001", + "0x1d6329f1c35ca4bfabb9f5610000000000" ] }, { - "pc": 1014, - "op": "DUP3", - "gas": 1963374, + "pc": 968, + "op": "ISZERO", + "gas": 1963413, "gasCost": 3, "depth": 2, "stack": [ @@ -10773,13 +10713,14 @@ "0x142", "0x1", "0x1d6329f1c35ca4bfabb9f5610000000000", + "0x1d6329f1c35ca4bfabb9f5610000000001", "0x0" ] }, { - "pc": 1015, - "op": "DUP3", - "gas": 1963371, + "pc": 969, + "op": "PUSH3", + "gas": 1963410, "gasCost": 3, "depth": 2, "stack": [ @@ -10790,15 +10731,15 @@ "0x142", "0x1", "0x1d6329f1c35ca4bfabb9f5610000000000", - "0x0", + "0x1d6329f1c35ca4bfabb9f5610000000001", "0x1" ] }, { - "pc": 1016, - "op": "ADD", - "gas": 1963368, - "gasCost": 3, + "pc": 973, + "op": "JUMPI", + "gas": 1963407, + "gasCost": 10, "depth": 2, "stack": [ "0xbc", @@ -10808,16 +10749,16 @@ "0x142", "0x1", "0x1d6329f1c35ca4bfabb9f5610000000000", - "0x0", + "0x1d6329f1c35ca4bfabb9f5610000000001", "0x1", - "0x1d6329f1c35ca4bfabb9f5610000000000" + "0x3d8" ] }, { - "pc": 1017, - "op": "SWAP1", - "gas": 1963365, - "gasCost": 3, + "pc": 984, + "op": "JUMPDEST", + "gas": 1963397, + "gasCost": 1, "depth": 2, "stack": [ "0xbc", @@ -10827,32 +10768,13 @@ "0x142", "0x1", "0x1d6329f1c35ca4bfabb9f5610000000000", - "0x0", "0x1d6329f1c35ca4bfabb9f5610000000001" ] }, { - "pc": 1018, - "op": "POP", - "gas": 1963362, - "gasCost": 2, - "depth": 2, - "stack": [ - "0xbc", - "0x1d6329f1c35ca4bfabb9f5610000000000", - "0x0", - "0x14e", - "0x142", - "0x1", - "0x1d6329f1c35ca4bfabb9f5610000000000", - "0x1d6329f1c35ca4bfabb9f5610000000001", - "0x0" - ] - }, - { - "pc": 1019, + "pc": 985, "op": "SWAP3", - "gas": 1963360, + "gas": 1963396, "gasCost": 3, "depth": 2, "stack": [ @@ -10867,9 +10789,9 @@ ] }, { - "pc": 1020, + "pc": 986, "op": "SWAP2", - "gas": 1963357, + "gas": 1963393, "gasCost": 3, "depth": 2, "stack": [ @@ -10884,9 +10806,9 @@ ] }, { - "pc": 1021, + "pc": 987, "op": "POP", - "gas": 1963354, + "gas": 1963390, "gasCost": 2, "depth": 2, "stack": [ @@ -10901,9 +10823,9 @@ ] }, { - "pc": 1022, + "pc": 988, "op": "POP", - "gas": 1963352, + "gas": 1963388, "gasCost": 2, "depth": 2, "stack": [ @@ -10917,9 +10839,9 @@ ] }, { - "pc": 1023, + "pc": 989, "op": "JUMP", - "gas": 1963350, + "gas": 1963386, "gasCost": 8, "depth": 2, "stack": [ @@ -10934,7 +10856,7 @@ { "pc": 322, "op": "JUMPDEST", - "gas": 1963342, + "gas": 1963378, "gasCost": 1, "depth": 2, "stack": [ @@ -10948,7 +10870,7 @@ { "pc": 323, "op": "PUSH3", - "gas": 1963341, + "gas": 1963377, "gasCost": 3, "depth": 2, "stack": [ @@ -10962,7 +10884,7 @@ { "pc": 327, "op": "PUSH1", - "gas": 1963338, + "gas": 1963374, "gasCost": 3, "depth": 2, "stack": [ @@ -10977,7 +10899,7 @@ { "pc": 329, "op": "SHL", - "gas": 1963335, + "gas": 1963371, "gasCost": 3, "depth": 2, "stack": [ @@ -10993,7 +10915,7 @@ { "pc": 330, "op": "PUSH1", - "gas": 1963332, + "gas": 1963368, "gasCost": 3, "depth": 2, "stack": [ @@ -11008,7 +10930,7 @@ { "pc": 332, "op": "SHR", - "gas": 1963329, + "gas": 1963365, "gasCost": 3, "depth": 2, "stack": [ @@ -11024,7 +10946,7 @@ { "pc": 333, "op": "JUMP", - "gas": 1963326, + "gas": 1963362, "gasCost": 8, "depth": 2, "stack": [ @@ -11039,7 +10961,7 @@ { "pc": 361, "op": "JUMPDEST", - "gas": 1963318, + "gas": 1963354, "gasCost": 1, "depth": 2, "stack": [ @@ -11053,7 +10975,7 @@ { "pc": 362, "op": "PUSH1", - "gas": 1963317, + "gas": 1963353, "gasCost": 3, "depth": 2, "stack": [ @@ -11067,7 +10989,7 @@ { "pc": 364, "op": "CALLER", - "gas": 1963314, + "gas": 1963350, "gasCost": 2, "depth": 2, "stack": [ @@ -11082,7 +11004,7 @@ { "pc": 365, "op": "PUSH20", - "gas": 1963312, + "gas": 1963348, "gasCost": 3, "depth": 2, "stack": [ @@ -11098,7 +11020,7 @@ { "pc": 386, "op": "AND", - "gas": 1963309, + "gas": 1963345, "gasCost": 3, "depth": 2, "stack": [ @@ -11115,7 +11037,7 @@ { "pc": 387, "op": "PUSH32", - "gas": 1963306, + "gas": 1963342, "gasCost": 3, "depth": 2, "stack": [ @@ -11131,7 +11053,7 @@ { "pc": 420, "op": "DUP4", - "gas": 1963303, + "gas": 1963339, "gasCost": 3, "depth": 2, "stack": [ @@ -11148,7 +11070,7 @@ { "pc": 421, "op": "PUSH1", - "gas": 1963300, + "gas": 1963336, "gasCost": 3, "depth": 2, "stack": [ @@ -11166,7 +11088,7 @@ { "pc": 423, "op": "MLOAD", - "gas": 1963297, + "gas": 1963333, "gasCost": 3, "depth": 2, "stack": [ @@ -11185,7 +11107,7 @@ { "pc": 424, "op": "PUSH3", - "gas": 1963294, + "gas": 1963330, "gasCost": 3, "depth": 2, "stack": [ @@ -11204,7 +11126,7 @@ { "pc": 428, "op": "SWAP2", - "gas": 1963291, + "gas": 1963327, "gasCost": 3, "depth": 2, "stack": [ @@ -11224,7 +11146,7 @@ { "pc": 429, "op": "SWAP1", - "gas": 1963288, + "gas": 1963324, "gasCost": 3, "depth": 2, "stack": [ @@ -11244,7 +11166,7 @@ { "pc": 430, "op": "PUSH3", - "gas": 1963285, + "gas": 1963321, "gasCost": 3, "depth": 2, "stack": [ @@ -11264,7 +11186,7 @@ { "pc": 434, "op": "JUMP", - "gas": 1963282, + "gas": 1963318, "gasCost": 8, "depth": 2, "stack": [ @@ -11279,13 +11201,13 @@ "0x1b3", "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", - "0x450" + "0x42e" ] }, { - "pc": 1104, + "pc": 1070, "op": "JUMPDEST", - "gas": 1963274, + "gas": 1963310, "gasCost": 1, "depth": 2, "stack": [ @@ -11303,9 +11225,9 @@ ] }, { - "pc": 1105, + "pc": 1071, "op": "PUSH1", - "gas": 1963273, + "gas": 1963309, "gasCost": 3, "depth": 2, "stack": [ @@ -11323,9 +11245,9 @@ ] }, { - "pc": 1107, + "pc": 1073, "op": "PUSH1", - "gas": 1963270, + "gas": 1963306, "gasCost": 3, "depth": 2, "stack": [ @@ -11344,9 +11266,9 @@ ] }, { - "pc": 1109, + "pc": 1075, "op": "DUP3", - "gas": 1963267, + "gas": 1963303, "gasCost": 3, "depth": 2, "stack": [ @@ -11366,9 +11288,9 @@ ] }, { - "pc": 1110, + "pc": 1076, "op": "ADD", - "gas": 1963264, + "gas": 1963300, "gasCost": 3, "depth": 2, "stack": [ @@ -11389,9 +11311,9 @@ ] }, { - "pc": 1111, + "pc": 1077, "op": "SWAP1", - "gas": 1963261, + "gas": 1963297, "gasCost": 3, "depth": 2, "stack": [ @@ -11411,9 +11333,9 @@ ] }, { - "pc": 1112, + "pc": 1078, "op": "POP", - "gas": 1963258, + "gas": 1963294, "gasCost": 2, "depth": 2, "stack": [ @@ -11433,9 +11355,9 @@ ] }, { - "pc": 1113, + "pc": 1079, "op": "PUSH3", - "gas": 1963256, + "gas": 1963292, "gasCost": 3, "depth": 2, "stack": [ @@ -11454,9 +11376,9 @@ ] }, { - "pc": 1117, + "pc": 1083, "op": "PUSH1", - "gas": 1963253, + "gas": 1963289, "gasCost": 3, "depth": 2, "stack": [ @@ -11472,13 +11394,13 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x467" + "0x445" ] }, { - "pc": 1119, + "pc": 1085, "op": "DUP4", - "gas": 1963250, + "gas": 1963286, "gasCost": 3, "depth": 2, "stack": [ @@ -11494,14 +11416,14 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x467", + "0x445", "0x0" ] }, { - "pc": 1120, + "pc": 1086, "op": "ADD", - "gas": 1963247, + "gas": 1963283, "gasCost": 3, "depth": 2, "stack": [ @@ -11517,15 +11439,15 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x467", + "0x445", "0x0", "0x80" ] }, { - "pc": 1121, + "pc": 1087, "op": "DUP5", - "gas": 1963244, + "gas": 1963280, "gasCost": 3, "depth": 2, "stack": [ @@ -11541,14 +11463,14 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x467", + "0x445", "0x80" ] }, { - "pc": 1122, + "pc": 1088, "op": "PUSH3", - "gas": 1963241, + "gas": 1963277, "gasCost": 3, "depth": 2, "stack": [ @@ -11564,15 +11486,15 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x467", + "0x445", "0x80", "0x1d6329f1c35ca4bfabb9f5610000000001" ] }, { - "pc": 1126, + "pc": 1092, "op": "JUMP", - "gas": 1963238, + "gas": 1963274, "gasCost": 8, "depth": 2, "stack": [ @@ -11588,7 +11510,7 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x467", + "0x445", "0x80", "0x1d6329f1c35ca4bfabb9f5610000000001", "0x2e1" @@ -11597,7 +11519,7 @@ { "pc": 737, "op": "JUMPDEST", - "gas": 1963230, + "gas": 1963266, "gasCost": 1, "depth": 2, "stack": [ @@ -11613,7 +11535,7 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x467", + "0x445", "0x80", "0x1d6329f1c35ca4bfabb9f5610000000001" ] @@ -11621,7 +11543,7 @@ { "pc": 738, "op": "PUSH3", - "gas": 1963229, + "gas": 1963265, "gasCost": 3, "depth": 2, "stack": [ @@ -11637,7 +11559,7 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x467", + "0x445", "0x80", "0x1d6329f1c35ca4bfabb9f5610000000001" ] @@ -11645,7 +11567,7 @@ { "pc": 742, "op": "DUP2", - "gas": 1963226, + "gas": 1963262, "gasCost": 3, "depth": 2, "stack": [ @@ -11661,7 +11583,7 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x467", + "0x445", "0x80", "0x1d6329f1c35ca4bfabb9f5610000000001", "0x2ec" @@ -11670,7 +11592,7 @@ { "pc": 743, "op": "PUSH3", - "gas": 1963223, + "gas": 1963259, "gasCost": 3, "depth": 2, "stack": [ @@ -11686,7 +11608,7 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x467", + "0x445", "0x80", "0x1d6329f1c35ca4bfabb9f5610000000001", "0x2ec", @@ -11696,7 +11618,7 @@ { "pc": 747, "op": "JUMP", - "gas": 1963220, + "gas": 1963256, "gasCost": 8, "depth": 2, "stack": [ @@ -11712,7 +11634,7 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x467", + "0x445", "0x80", "0x1d6329f1c35ca4bfabb9f5610000000001", "0x2ec", @@ -11723,7 +11645,7 @@ { "pc": 727, "op": "JUMPDEST", - "gas": 1963212, + "gas": 1963248, "gasCost": 1, "depth": 2, "stack": [ @@ -11739,7 +11661,7 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x467", + "0x445", "0x80", "0x1d6329f1c35ca4bfabb9f5610000000001", "0x2ec", @@ -11749,7 +11671,7 @@ { "pc": 728, "op": "PUSH1", - "gas": 1963211, + "gas": 1963247, "gasCost": 3, "depth": 2, "stack": [ @@ -11765,7 +11687,7 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x467", + "0x445", "0x80", "0x1d6329f1c35ca4bfabb9f5610000000001", "0x2ec", @@ -11775,7 +11697,7 @@ { "pc": 730, "op": "DUP2", - "gas": 1963208, + "gas": 1963244, "gasCost": 3, "depth": 2, "stack": [ @@ -11791,7 +11713,7 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x467", + "0x445", "0x80", "0x1d6329f1c35ca4bfabb9f5610000000001", "0x2ec", @@ -11802,7 +11724,7 @@ { "pc": 731, "op": "SWAP1", - "gas": 1963205, + "gas": 1963241, "gasCost": 3, "depth": 2, "stack": [ @@ -11818,7 +11740,7 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x467", + "0x445", "0x80", "0x1d6329f1c35ca4bfabb9f5610000000001", "0x2ec", @@ -11830,7 +11752,7 @@ { "pc": 732, "op": "POP", - "gas": 1963202, + "gas": 1963238, "gasCost": 2, "depth": 2, "stack": [ @@ -11846,7 +11768,7 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x467", + "0x445", "0x80", "0x1d6329f1c35ca4bfabb9f5610000000001", "0x2ec", @@ -11858,7 +11780,7 @@ { "pc": 733, "op": "SWAP2", - "gas": 1963200, + "gas": 1963236, "gasCost": 3, "depth": 2, "stack": [ @@ -11874,7 +11796,7 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x467", + "0x445", "0x80", "0x1d6329f1c35ca4bfabb9f5610000000001", "0x2ec", @@ -11885,7 +11807,7 @@ { "pc": 734, "op": "SWAP1", - "gas": 1963197, + "gas": 1963233, "gasCost": 3, "depth": 2, "stack": [ @@ -11901,7 +11823,7 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x467", + "0x445", "0x80", "0x1d6329f1c35ca4bfabb9f5610000000001", "0x1d6329f1c35ca4bfabb9f5610000000001", @@ -11912,7 +11834,7 @@ { "pc": 735, "op": "POP", - "gas": 1963194, + "gas": 1963230, "gasCost": 2, "depth": 2, "stack": [ @@ -11928,7 +11850,7 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x467", + "0x445", "0x80", "0x1d6329f1c35ca4bfabb9f5610000000001", "0x1d6329f1c35ca4bfabb9f5610000000001", @@ -11939,7 +11861,7 @@ { "pc": 736, "op": "JUMP", - "gas": 1963192, + "gas": 1963228, "gasCost": 8, "depth": 2, "stack": [ @@ -11955,7 +11877,7 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x467", + "0x445", "0x80", "0x1d6329f1c35ca4bfabb9f5610000000001", "0x1d6329f1c35ca4bfabb9f5610000000001", @@ -11965,7 +11887,7 @@ { "pc": 748, "op": "JUMPDEST", - "gas": 1963184, + "gas": 1963220, "gasCost": 1, "depth": 2, "stack": [ @@ -11981,7 +11903,7 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x467", + "0x445", "0x80", "0x1d6329f1c35ca4bfabb9f5610000000001", "0x1d6329f1c35ca4bfabb9f5610000000001" @@ -11990,7 +11912,7 @@ { "pc": 749, "op": "DUP3", - "gas": 1963183, + "gas": 1963219, "gasCost": 3, "depth": 2, "stack": [ @@ -12006,7 +11928,7 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x467", + "0x445", "0x80", "0x1d6329f1c35ca4bfabb9f5610000000001", "0x1d6329f1c35ca4bfabb9f5610000000001" @@ -12015,7 +11937,7 @@ { "pc": 750, "op": "MSTORE", - "gas": 1963180, + "gas": 1963216, "gasCost": 3, "depth": 2, "stack": [ @@ -12031,7 +11953,7 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x467", + "0x445", "0x80", "0x1d6329f1c35ca4bfabb9f5610000000001", "0x1d6329f1c35ca4bfabb9f5610000000001", @@ -12041,7 +11963,7 @@ { "pc": 751, "op": "POP", - "gas": 1963177, + "gas": 1963213, "gasCost": 2, "depth": 2, "stack": [ @@ -12057,7 +11979,7 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x467", + "0x445", "0x80", "0x1d6329f1c35ca4bfabb9f5610000000001" ] @@ -12065,7 +11987,7 @@ { "pc": 752, "op": "POP", - "gas": 1963175, + "gas": 1963211, "gasCost": 2, "depth": 2, "stack": [ @@ -12081,14 +12003,14 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x467", + "0x445", "0x80" ] }, { "pc": 753, "op": "JUMP", - "gas": 1963173, + "gas": 1963209, "gasCost": 8, "depth": 2, "stack": [ @@ -12104,13 +12026,13 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x467" + "0x445" ] }, { - "pc": 1127, + "pc": 1093, "op": "JUMPDEST", - "gas": 1963165, + "gas": 1963201, "gasCost": 1, "depth": 2, "stack": [ @@ -12129,9 +12051,9 @@ ] }, { - "pc": 1128, + "pc": 1094, "op": "DUP2", - "gas": 1963164, + "gas": 1963200, "gasCost": 3, "depth": 2, "stack": [ @@ -12150,9 +12072,9 @@ ] }, { - "pc": 1129, + "pc": 1095, "op": "DUP2", - "gas": 1963161, + "gas": 1963197, "gasCost": 3, "depth": 2, "stack": [ @@ -12172,9 +12094,9 @@ ] }, { - "pc": 1130, + "pc": 1096, "op": "SUB", - "gas": 1963158, + "gas": 1963194, "gasCost": 3, "depth": 2, "stack": [ @@ -12195,9 +12117,9 @@ ] }, { - "pc": 1131, + "pc": 1097, "op": "PUSH1", - "gas": 1963155, + "gas": 1963191, "gasCost": 3, "depth": 2, "stack": [ @@ -12217,9 +12139,9 @@ ] }, { - "pc": 1133, + "pc": 1099, "op": "DUP4", - "gas": 1963152, + "gas": 1963188, "gasCost": 3, "depth": 2, "stack": [ @@ -12240,9 +12162,9 @@ ] }, { - "pc": 1134, + "pc": 1100, "op": "ADD", - "gas": 1963149, + "gas": 1963185, "gasCost": 3, "depth": 2, "stack": [ @@ -12264,9 +12186,9 @@ ] }, { - "pc": 1135, + "pc": 1101, "op": "MSTORE", - "gas": 1963146, + "gas": 1963182, "gasCost": 3, "depth": 2, "stack": [ @@ -12287,9 +12209,9 @@ ] }, { - "pc": 1136, + "pc": 1102, "op": "PUSH3", - "gas": 1963143, + "gas": 1963179, "gasCost": 3, "depth": 2, "stack": [ @@ -12308,9 +12230,9 @@ ] }, { - "pc": 1140, + "pc": 1106, "op": "DUP2", - "gas": 1963140, + "gas": 1963176, "gasCost": 3, "depth": 2, "stack": [ @@ -12326,13 +12248,13 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x47a" + "0x458" ] }, { - "pc": 1141, + "pc": 1107, "op": "PUSH3", - "gas": 1963137, + "gas": 1963173, "gasCost": 3, "depth": 2, "stack": [ @@ -12348,14 +12270,14 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x47a", + "0x458", "0xc0" ] }, { - "pc": 1145, + "pc": 1111, "op": "JUMP", - "gas": 1963134, + "gas": 1963170, "gasCost": 8, "depth": 2, "stack": [ @@ -12371,15 +12293,15 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x47a", + "0x458", "0xc0", - "0x429" + "0x407" ] }, { - "pc": 1065, + "pc": 1031, "op": "JUMPDEST", - "gas": 1963126, + "gas": 1963162, "gasCost": 1, "depth": 2, "stack": [ @@ -12395,14 +12317,14 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x47a", + "0x458", "0xc0" ] }, { - "pc": 1066, + "pc": 1032, "op": "PUSH1", - "gas": 1963125, + "gas": 1963161, "gasCost": 3, "depth": 2, "stack": [ @@ -12418,14 +12340,14 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x47a", + "0x458", "0xc0" ] }, { - "pc": 1068, + "pc": 1034, "op": "PUSH3", - "gas": 1963122, + "gas": 1963158, "gasCost": 3, "depth": 2, "stack": [ @@ -12441,15 +12363,15 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x47a", + "0x458", "0xc0", "0x0" ] }, { - "pc": 1072, + "pc": 1038, "op": "PUSH1", - "gas": 1963119, + "gas": 1963155, "gasCost": 3, "depth": 2, "stack": [ @@ -12465,16 +12387,16 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x47a", + "0x458", "0xc0", "0x0", - "0x438" + "0x416" ] }, { - "pc": 1074, + "pc": 1040, "op": "DUP4", - "gas": 1963116, + "gas": 1963152, "gasCost": 3, "depth": 2, "stack": [ @@ -12490,17 +12412,17 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x47a", + "0x458", "0xc0", "0x0", - "0x438", + "0x416", "0xe" ] }, { - "pc": 1075, + "pc": 1041, "op": "PUSH3", - "gas": 1963113, + "gas": 1963149, "gasCost": 3, "depth": 2, "stack": [ @@ -12516,18 +12438,18 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x47a", + "0x458", "0xc0", "0x0", - "0x438", + "0x416", "0xe", "0xc0" ] }, { - "pc": 1079, + "pc": 1045, "op": "JUMP", - "gas": 1963110, + "gas": 1963146, "gasCost": 8, "depth": 2, "stack": [ @@ -12543,10 +12465,10 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x47a", + "0x458", "0xc0", "0x0", - "0x438", + "0x416", "0xe", "0xc0", "0x22e" @@ -12555,7 +12477,7 @@ { "pc": 558, "op": "JUMPDEST", - "gas": 1963102, + "gas": 1963138, "gasCost": 1, "depth": 2, "stack": [ @@ -12571,10 +12493,10 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x47a", + "0x458", "0xc0", "0x0", - "0x438", + "0x416", "0xe", "0xc0" ] @@ -12582,7 +12504,7 @@ { "pc": 559, "op": "PUSH1", - "gas": 1963101, + "gas": 1963137, "gasCost": 3, "depth": 2, "stack": [ @@ -12598,10 +12520,10 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x47a", + "0x458", "0xc0", "0x0", - "0x438", + "0x416", "0xe", "0xc0" ] @@ -12609,7 +12531,7 @@ { "pc": 561, "op": "DUP3", - "gas": 1963098, + "gas": 1963134, "gasCost": 3, "depth": 2, "stack": [ @@ -12625,10 +12547,10 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x47a", + "0x458", "0xc0", "0x0", - "0x438", + "0x416", "0xe", "0xc0", "0x0" @@ -12637,7 +12559,7 @@ { "pc": 562, "op": "DUP3", - "gas": 1963095, + "gas": 1963131, "gasCost": 3, "depth": 2, "stack": [ @@ -12653,10 +12575,10 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x47a", + "0x458", "0xc0", "0x0", - "0x438", + "0x416", "0xe", "0xc0", "0x0", @@ -12666,7 +12588,7 @@ { "pc": 563, "op": "MSTORE", - "gas": 1963092, + "gas": 1963128, "gasCost": 3, "depth": 2, "stack": [ @@ -12682,10 +12604,10 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x47a", + "0x458", "0xc0", "0x0", - "0x438", + "0x416", "0xe", "0xc0", "0x0", @@ -12696,7 +12618,7 @@ { "pc": 564, "op": "PUSH1", - "gas": 1963089, + "gas": 1963125, "gasCost": 3, "depth": 2, "stack": [ @@ -12712,10 +12634,10 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x47a", + "0x458", "0xc0", "0x0", - "0x438", + "0x416", "0xe", "0xc0", "0x0" @@ -12724,7 +12646,7 @@ { "pc": 566, "op": "DUP3", - "gas": 1963086, + "gas": 1963122, "gasCost": 3, "depth": 2, "stack": [ @@ -12740,10 +12662,10 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x47a", + "0x458", "0xc0", "0x0", - "0x438", + "0x416", "0xe", "0xc0", "0x0", @@ -12753,7 +12675,7 @@ { "pc": 567, "op": "ADD", - "gas": 1963083, + "gas": 1963119, "gasCost": 3, "depth": 2, "stack": [ @@ -12769,10 +12691,10 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x47a", + "0x458", "0xc0", "0x0", - "0x438", + "0x416", "0xe", "0xc0", "0x0", @@ -12783,7 +12705,7 @@ { "pc": 568, "op": "SWAP1", - "gas": 1963080, + "gas": 1963116, "gasCost": 3, "depth": 2, "stack": [ @@ -12799,10 +12721,10 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x47a", + "0x458", "0xc0", "0x0", - "0x438", + "0x416", "0xe", "0xc0", "0x0", @@ -12812,7 +12734,7 @@ { "pc": 569, "op": "POP", - "gas": 1963077, + "gas": 1963113, "gasCost": 2, "depth": 2, "stack": [ @@ -12828,10 +12750,10 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x47a", + "0x458", "0xc0", "0x0", - "0x438", + "0x416", "0xe", "0xc0", "0xe0", @@ -12841,7 +12763,7 @@ { "pc": 570, "op": "SWAP3", - "gas": 1963075, + "gas": 1963111, "gasCost": 3, "depth": 2, "stack": [ @@ -12857,10 +12779,10 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x47a", + "0x458", "0xc0", "0x0", - "0x438", + "0x416", "0xe", "0xc0", "0xe0" @@ -12869,7 +12791,7 @@ { "pc": 571, "op": "SWAP2", - "gas": 1963072, + "gas": 1963108, "gasCost": 3, "depth": 2, "stack": [ @@ -12885,19 +12807,19 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x47a", + "0x458", "0xc0", "0x0", "0xe0", "0xe", "0xc0", - "0x438" + "0x416" ] }, { "pc": 572, "op": "POP", - "gas": 1963069, + "gas": 1963105, "gasCost": 2, "depth": 2, "stack": [ @@ -12913,11 +12835,11 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x47a", + "0x458", "0xc0", "0x0", "0xe0", - "0x438", + "0x416", "0xc0", "0xe" ] @@ -12925,7 +12847,7 @@ { "pc": 573, "op": "POP", - "gas": 1963067, + "gas": 1963103, "gasCost": 2, "depth": 2, "stack": [ @@ -12941,18 +12863,18 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x47a", + "0x458", "0xc0", "0x0", "0xe0", - "0x438", + "0x416", "0xc0" ] }, { "pc": 574, "op": "JUMP", - "gas": 1963065, + "gas": 1963101, "gasCost": 8, "depth": 2, "stack": [ @@ -12968,17 +12890,17 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x47a", + "0x458", "0xc0", "0x0", "0xe0", - "0x438" + "0x416" ] }, { - "pc": 1080, + "pc": 1046, "op": "JUMPDEST", - "gas": 1963057, + "gas": 1963093, "gasCost": 1, "depth": 2, "stack": [ @@ -12994,16 +12916,16 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x47a", + "0x458", "0xc0", "0x0", "0xe0" ] }, { - "pc": 1081, + "pc": 1047, "op": "SWAP2", - "gas": 1963056, + "gas": 1963092, "gasCost": 3, "depth": 2, "stack": [ @@ -13019,16 +12941,16 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x47a", + "0x458", "0xc0", "0x0", "0xe0" ] }, { - "pc": 1082, + "pc": 1048, "op": "POP", - "gas": 1963053, + "gas": 1963089, "gasCost": 2, "depth": 2, "stack": [ @@ -13044,16 +12966,16 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x47a", + "0x458", "0xe0", "0x0", "0xc0" ] }, { - "pc": 1083, + "pc": 1049, "op": "PUSH3", - "gas": 1963051, + "gas": 1963087, "gasCost": 3, "depth": 2, "stack": [ @@ -13069,15 +12991,15 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x47a", + "0x458", "0xe0", "0x0" ] }, { - "pc": 1087, + "pc": 1053, "op": "DUP3", - "gas": 1963048, + "gas": 1963084, "gasCost": 3, "depth": 2, "stack": [ @@ -13093,16 +13015,16 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x47a", + "0x458", "0xe0", "0x0", - "0x445" + "0x423" ] }, { - "pc": 1088, + "pc": 1054, "op": "PUSH3", - "gas": 1963045, + "gas": 1963081, "gasCost": 3, "depth": 2, "stack": [ @@ -13118,17 +13040,17 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x47a", + "0x458", "0xe0", "0x0", - "0x445", + "0x423", "0xe0" ] }, { - "pc": 1092, + "pc": 1058, "op": "JUMP", - "gas": 1963042, + "gas": 1963078, "gasCost": 8, "depth": 2, "stack": [ @@ -13144,18 +13066,18 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x47a", + "0x458", "0xe0", "0x0", - "0x445", + "0x423", "0xe0", - "0x400" + "0x3de" ] }, { - "pc": 1024, + "pc": 990, "op": "JUMPDEST", - "gas": 1963034, + "gas": 1963070, "gasCost": 1, "depth": 2, "stack": [ @@ -13171,17 +13093,17 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x47a", + "0x458", "0xe0", "0x0", - "0x445", + "0x423", "0xe0" ] }, { - "pc": 1025, + "pc": 991, "op": "PUSH32", - "gas": 1963033, + "gas": 1963069, "gasCost": 3, "depth": 2, "stack": [ @@ -13197,17 +13119,17 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x47a", + "0x458", "0xe0", "0x0", - "0x445", + "0x423", "0xe0" ] }, { - "pc": 1058, + "pc": 1024, "op": "PUSH1", - "gas": 1963030, + "gas": 1963066, "gasCost": 3, "depth": 2, "stack": [ @@ -13223,18 +13145,18 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x47a", + "0x458", "0xe0", "0x0", - "0x445", + "0x423", "0xe0", "0x696e7465726e616c20746f706963000000000000000000000000000000000000" ] }, { - "pc": 1060, + "pc": 1026, "op": "DUP3", - "gas": 1963027, + "gas": 1963063, "gasCost": 3, "depth": 2, "stack": [ @@ -13250,19 +13172,19 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x47a", + "0x458", "0xe0", "0x0", - "0x445", + "0x423", "0xe0", "0x696e7465726e616c20746f706963000000000000000000000000000000000000", "0x0" ] }, { - "pc": 1061, + "pc": 1027, "op": "ADD", - "gas": 1963024, + "gas": 1963060, "gasCost": 3, "depth": 2, "stack": [ @@ -13278,10 +13200,10 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x47a", + "0x458", "0xe0", "0x0", - "0x445", + "0x423", "0xe0", "0x696e7465726e616c20746f706963000000000000000000000000000000000000", "0x0", @@ -13289,9 +13211,9 @@ ] }, { - "pc": 1062, + "pc": 1028, "op": "MSTORE", - "gas": 1963021, + "gas": 1963057, "gasCost": 3, "depth": 2, "stack": [ @@ -13307,19 +13229,19 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x47a", + "0x458", "0xe0", "0x0", - "0x445", + "0x423", "0xe0", "0x696e7465726e616c20746f706963000000000000000000000000000000000000", "0xe0" ] }, { - "pc": 1063, + "pc": 1029, "op": "POP", - "gas": 1963018, + "gas": 1963054, "gasCost": 2, "depth": 2, "stack": [ @@ -13335,17 +13257,17 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x47a", + "0x458", "0xe0", "0x0", - "0x445", + "0x423", "0xe0" ] }, { - "pc": 1064, + "pc": 1030, "op": "JUMP", - "gas": 1963016, + "gas": 1963052, "gasCost": 8, "depth": 2, "stack": [ @@ -13361,16 +13283,16 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x47a", + "0x458", "0xe0", "0x0", - "0x445" + "0x423" ] }, { - "pc": 1093, + "pc": 1059, "op": "JUMPDEST", - "gas": 1963008, + "gas": 1963044, "gasCost": 1, "depth": 2, "stack": [ @@ -13386,15 +13308,15 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x47a", + "0x458", "0xe0", "0x0" ] }, { - "pc": 1094, + "pc": 1060, "op": "PUSH1", - "gas": 1963007, + "gas": 1963043, "gasCost": 3, "depth": 2, "stack": [ @@ -13410,15 +13332,15 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x47a", + "0x458", "0xe0", "0x0" ] }, { - "pc": 1096, + "pc": 1062, "op": "DUP3", - "gas": 1963004, + "gas": 1963040, "gasCost": 3, "depth": 2, "stack": [ @@ -13434,16 +13356,16 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x47a", + "0x458", "0xe0", "0x0", "0x20" ] }, { - "pc": 1097, + "pc": 1063, "op": "ADD", - "gas": 1963001, + "gas": 1963037, "gasCost": 3, "depth": 2, "stack": [ @@ -13459,7 +13381,7 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x47a", + "0x458", "0xe0", "0x0", "0x20", @@ -13467,9 +13389,9 @@ ] }, { - "pc": 1098, + "pc": 1064, "op": "SWAP1", - "gas": 1962998, + "gas": 1963034, "gasCost": 3, "depth": 2, "stack": [ @@ -13485,16 +13407,16 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x47a", + "0x458", "0xe0", "0x0", "0x100" ] }, { - "pc": 1099, + "pc": 1065, "op": "POP", - "gas": 1962995, + "gas": 1963031, "gasCost": 2, "depth": 2, "stack": [ @@ -13510,16 +13432,16 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x47a", + "0x458", "0xe0", "0x100", "0x0" ] }, { - "pc": 1100, + "pc": 1066, "op": "SWAP2", - "gas": 1962993, + "gas": 1963029, "gasCost": 3, "depth": 2, "stack": [ @@ -13535,15 +13457,15 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x47a", + "0x458", "0xe0", "0x100" ] }, { - "pc": 1101, + "pc": 1067, "op": "SWAP1", - "gas": 1962990, + "gas": 1963026, "gasCost": 3, "depth": 2, "stack": [ @@ -13561,13 +13483,13 @@ "0xc0", "0x100", "0xe0", - "0x47a" + "0x458" ] }, { - "pc": 1102, + "pc": 1068, "op": "POP", - "gas": 1962987, + "gas": 1963023, "gasCost": 2, "depth": 2, "stack": [ @@ -13584,14 +13506,14 @@ "0x80", "0xc0", "0x100", - "0x47a", + "0x458", "0xe0" ] }, { - "pc": 1103, + "pc": 1069, "op": "JUMP", - "gas": 1962985, + "gas": 1963021, "gasCost": 8, "depth": 2, "stack": [ @@ -13608,13 +13530,13 @@ "0x80", "0xc0", "0x100", - "0x47a" + "0x458" ] }, { - "pc": 1146, + "pc": 1112, "op": "JUMPDEST", - "gas": 1962977, + "gas": 1963013, "gasCost": 1, "depth": 2, "stack": [ @@ -13634,9 +13556,9 @@ ] }, { - "pc": 1147, + "pc": 1113, "op": "SWAP1", - "gas": 1962976, + "gas": 1963012, "gasCost": 3, "depth": 2, "stack": [ @@ -13656,9 +13578,9 @@ ] }, { - "pc": 1148, + "pc": 1114, "op": "POP", - "gas": 1962973, + "gas": 1963009, "gasCost": 2, "depth": 2, "stack": [ @@ -13678,9 +13600,9 @@ ] }, { - "pc": 1149, + "pc": 1115, "op": "SWAP3", - "gas": 1962971, + "gas": 1963007, "gasCost": 3, "depth": 2, "stack": [ @@ -13699,9 +13621,9 @@ ] }, { - "pc": 1150, + "pc": 1116, "op": "SWAP2", - "gas": 1962968, + "gas": 1963004, "gasCost": 3, "depth": 2, "stack": [ @@ -13720,9 +13642,9 @@ ] }, { - "pc": 1151, + "pc": 1117, "op": "POP", - "gas": 1962965, + "gas": 1963001, "gasCost": 2, "depth": 2, "stack": [ @@ -13741,9 +13663,9 @@ ] }, { - "pc": 1152, + "pc": 1118, "op": "POP", - "gas": 1962963, + "gas": 1962999, "gasCost": 2, "depth": 2, "stack": [ @@ -13761,9 +13683,9 @@ ] }, { - "pc": 1153, + "pc": 1119, "op": "JUMP", - "gas": 1962961, + "gas": 1962997, "gasCost": 8, "depth": 2, "stack": [ @@ -13782,7 +13704,7 @@ { "pc": 435, "op": "JUMPDEST", - "gas": 1962953, + "gas": 1962989, "gasCost": 1, "depth": 2, "stack": [ @@ -13800,7 +13722,7 @@ { "pc": 436, "op": "PUSH1", - "gas": 1962952, + "gas": 1962988, "gasCost": 3, "depth": 2, "stack": [ @@ -13818,7 +13740,7 @@ { "pc": 438, "op": "MLOAD", - "gas": 1962949, + "gas": 1962985, "gasCost": 3, "depth": 2, "stack": [ @@ -13837,7 +13759,7 @@ { "pc": 439, "op": "DUP1", - "gas": 1962946, + "gas": 1962982, "gasCost": 3, "depth": 2, "stack": [ @@ -13856,7 +13778,7 @@ { "pc": 440, "op": "SWAP2", - "gas": 1962943, + "gas": 1962979, "gasCost": 3, "depth": 2, "stack": [ @@ -13876,7 +13798,7 @@ { "pc": 441, "op": "SUB", - "gas": 1962940, + "gas": 1962976, "gasCost": 3, "depth": 2, "stack": [ @@ -13896,7 +13818,7 @@ { "pc": 442, "op": "SWAP1", - "gas": 1962937, + "gas": 1962973, "gasCost": 3, "depth": 2, "stack": [ @@ -13915,7 +13837,7 @@ { "pc": 443, "op": "LOG2", - "gas": 1962934, + "gas": 1962970, "gasCost": 2149, "depth": 2, "stack": [ @@ -13934,7 +13856,7 @@ { "pc": 444, "op": "DUP2", - "gas": 1960785, + "gas": 1960821, "gasCost": 3, "depth": 2, "stack": [ @@ -13949,7 +13871,7 @@ { "pc": 445, "op": "PUSH1", - "gas": 1960782, + "gas": 1960818, "gasCost": 3, "depth": 2, "stack": [ @@ -13965,7 +13887,7 @@ { "pc": 447, "op": "PUSH1", - "gas": 1960779, + "gas": 1960815, "gasCost": 3, "depth": 2, "stack": [ @@ -13982,7 +13904,7 @@ { "pc": 449, "op": "DUP3", - "gas": 1960776, + "gas": 1960812, "gasCost": 3, "depth": 2, "stack": [ @@ -14000,7 +13922,7 @@ { "pc": 450, "op": "DUP3", - "gas": 1960773, + "gas": 1960809, "gasCost": 3, "depth": 2, "stack": [ @@ -14019,7 +13941,7 @@ { "pc": 451, "op": "SLOAD", - "gas": 1960770, + "gas": 1960806, "gasCost": 2100, "depth": 2, "stack": [ @@ -14044,7 +13966,7 @@ { "pc": 452, "op": "PUSH3", - "gas": 1958670, + "gas": 1958706, "gasCost": 3, "depth": 2, "stack": [ @@ -14064,7 +13986,7 @@ { "pc": 456, "op": "SWAP2", - "gas": 1958667, + "gas": 1958703, "gasCost": 3, "depth": 2, "stack": [ @@ -14085,7 +14007,7 @@ { "pc": 457, "op": "SWAP1", - "gas": 1958664, + "gas": 1958700, "gasCost": 3, "depth": 2, "stack": [ @@ -14106,7 +14028,7 @@ { "pc": 458, "op": "PUSH3", - "gas": 1958661, + "gas": 1958697, "gasCost": 3, "depth": 2, "stack": [ @@ -14127,7 +14049,7 @@ { "pc": 462, "op": "JUMP", - "gas": 1958658, + "gas": 1958694, "gasCost": 8, "depth": 2, "stack": [ @@ -14149,7 +14071,7 @@ { "pc": 931, "op": "JUMPDEST", - "gas": 1958650, + "gas": 1958686, "gasCost": 1, "depth": 2, "stack": [ @@ -14170,7 +14092,7 @@ { "pc": 932, "op": "PUSH1", - "gas": 1958649, + "gas": 1958685, "gasCost": 3, "depth": 2, "stack": [ @@ -14191,7 +14113,7 @@ { "pc": 934, "op": "PUSH3", - "gas": 1958646, + "gas": 1958682, "gasCost": 3, "depth": 2, "stack": [ @@ -14213,7 +14135,7 @@ { "pc": 938, "op": "DUP3", - "gas": 1958643, + "gas": 1958679, "gasCost": 3, "depth": 2, "stack": [ @@ -14236,7 +14158,7 @@ { "pc": 939, "op": "PUSH3", - "gas": 1958640, + "gas": 1958676, "gasCost": 3, "depth": 2, "stack": [ @@ -14260,7 +14182,7 @@ { "pc": 943, "op": "JUMP", - "gas": 1958637, + "gas": 1958673, "gasCost": 8, "depth": 2, "stack": [ @@ -14285,7 +14207,7 @@ { "pc": 727, "op": "JUMPDEST", - "gas": 1958629, + "gas": 1958665, "gasCost": 1, "depth": 2, "stack": [ @@ -14309,7 +14231,7 @@ { "pc": 728, "op": "PUSH1", - "gas": 1958628, + "gas": 1958664, "gasCost": 3, "depth": 2, "stack": [ @@ -14333,7 +14255,7 @@ { "pc": 730, "op": "DUP2", - "gas": 1958625, + "gas": 1958661, "gasCost": 3, "depth": 2, "stack": [ @@ -14358,7 +14280,7 @@ { "pc": 731, "op": "SWAP1", - "gas": 1958622, + "gas": 1958658, "gasCost": 3, "depth": 2, "stack": [ @@ -14384,7 +14306,7 @@ { "pc": 732, "op": "POP", - "gas": 1958619, + "gas": 1958655, "gasCost": 2, "depth": 2, "stack": [ @@ -14410,7 +14332,7 @@ { "pc": 733, "op": "SWAP2", - "gas": 1958617, + "gas": 1958653, "gasCost": 3, "depth": 2, "stack": [ @@ -14435,7 +14357,7 @@ { "pc": 734, "op": "SWAP1", - "gas": 1958614, + "gas": 1958650, "gasCost": 3, "depth": 2, "stack": [ @@ -14460,7 +14382,7 @@ { "pc": 735, "op": "POP", - "gas": 1958611, + "gas": 1958647, "gasCost": 2, "depth": 2, "stack": [ @@ -14485,7 +14407,7 @@ { "pc": 736, "op": "JUMP", - "gas": 1958609, + "gas": 1958645, "gasCost": 8, "depth": 2, "stack": [ @@ -14509,7 +14431,7 @@ { "pc": 944, "op": "JUMPDEST", - "gas": 1958601, + "gas": 1958637, "gasCost": 1, "depth": 2, "stack": [ @@ -14532,7 +14454,7 @@ { "pc": 945, "op": "SWAP2", - "gas": 1958600, + "gas": 1958636, "gasCost": 3, "depth": 2, "stack": [ @@ -14555,7 +14477,7 @@ { "pc": 946, "op": "POP", - "gas": 1958597, + "gas": 1958633, "gasCost": 2, "depth": 2, "stack": [ @@ -14578,7 +14500,7 @@ { "pc": 947, "op": "PUSH3", - "gas": 1958595, + "gas": 1958631, "gasCost": 3, "depth": 2, "stack": [ @@ -14600,7 +14522,7 @@ { "pc": 951, "op": "DUP4", - "gas": 1958592, + "gas": 1958628, "gasCost": 3, "depth": 2, "stack": [ @@ -14623,7 +14545,7 @@ { "pc": 952, "op": "PUSH3", - "gas": 1958589, + "gas": 1958625, "gasCost": 3, "depth": 2, "stack": [ @@ -14647,7 +14569,7 @@ { "pc": 956, "op": "JUMP", - "gas": 1958586, + "gas": 1958622, "gasCost": 8, "depth": 2, "stack": [ @@ -14672,7 +14594,7 @@ { "pc": 727, "op": "JUMPDEST", - "gas": 1958578, + "gas": 1958614, "gasCost": 1, "depth": 2, "stack": [ @@ -14696,7 +14618,7 @@ { "pc": 728, "op": "PUSH1", - "gas": 1958577, + "gas": 1958613, "gasCost": 3, "depth": 2, "stack": [ @@ -14720,7 +14642,7 @@ { "pc": 730, "op": "DUP2", - "gas": 1958574, + "gas": 1958610, "gasCost": 3, "depth": 2, "stack": [ @@ -14745,7 +14667,7 @@ { "pc": 731, "op": "SWAP1", - "gas": 1958571, + "gas": 1958607, "gasCost": 3, "depth": 2, "stack": [ @@ -14771,7 +14693,7 @@ { "pc": 732, "op": "POP", - "gas": 1958568, + "gas": 1958604, "gasCost": 2, "depth": 2, "stack": [ @@ -14797,7 +14719,7 @@ { "pc": 733, "op": "SWAP2", - "gas": 1958566, + "gas": 1958602, "gasCost": 3, "depth": 2, "stack": [ @@ -14822,7 +14744,7 @@ { "pc": 734, "op": "SWAP1", - "gas": 1958563, + "gas": 1958599, "gasCost": 3, "depth": 2, "stack": [ @@ -14847,7 +14769,7 @@ { "pc": 735, "op": "POP", - "gas": 1958560, + "gas": 1958596, "gasCost": 2, "depth": 2, "stack": [ @@ -14872,7 +14794,7 @@ { "pc": 736, "op": "JUMP", - "gas": 1958558, + "gas": 1958594, "gasCost": 8, "depth": 2, "stack": [ @@ -14896,7 +14818,7 @@ { "pc": 957, "op": "JUMPDEST", - "gas": 1958550, + "gas": 1958586, "gasCost": 1, "depth": 2, "stack": [ @@ -14919,7 +14841,7 @@ { "pc": 958, "op": "SWAP3", - "gas": 1958549, + "gas": 1958585, "gasCost": 3, "depth": 2, "stack": [ @@ -14942,7 +14864,7 @@ { "pc": 959, "op": "POP", - "gas": 1958546, + "gas": 1958582, "gasCost": 2, "depth": 2, "stack": [ @@ -14965,7 +14887,7 @@ { "pc": 960, "op": "DUP3", - "gas": 1958544, + "gas": 1958580, "gasCost": 3, "depth": 2, "stack": [ @@ -14986,8 +14908,8 @@ }, { "pc": 961, - "op": "PUSH32", - "gas": 1958541, + "op": "DUP3", + "gas": 1958577, "gasCost": 3, "depth": 2, "stack": [ @@ -15008,9 +14930,9 @@ ] }, { - "pc": 994, - "op": "SUB", - "gas": 1958538, + "pc": 962, + "op": "ADD", + "gas": 1958574, "gasCost": 3, "depth": 2, "stack": [ @@ -15028,13 +14950,13 @@ "0x0", "0x0", "0x1d6329f1c35ca4bfabb9f5610000000001", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + "0x0" ] }, { - "pc": 995, - "op": "DUP3", - "gas": 1958535, + "pc": 963, + "op": "SWAP1", + "gas": 1958571, "gasCost": 3, "depth": 2, "stack": [ @@ -15051,14 +14973,14 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x0", "0x0", - "0xffffffffffffffffffffffffffffffe29cd60e3ca35b4054460a9efffffffffe" + "0x1d6329f1c35ca4bfabb9f5610000000001" ] }, { - "pc": 996, - "op": "GT", - "gas": 1958532, - "gasCost": 3, + "pc": 964, + "op": "POP", + "gas": 1958568, + "gasCost": 2, "depth": 2, "stack": [ "0xbc", @@ -15073,15 +14995,14 @@ "0x1cf", "0x1d6329f1c35ca4bfabb9f5610000000001", "0x0", - "0x0", - "0xffffffffffffffffffffffffffffffe29cd60e3ca35b4054460a9efffffffffe", + "0x1d6329f1c35ca4bfabb9f5610000000001", "0x0" ] }, { - "pc": 997, - "op": "ISZERO", - "gas": 1958529, + "pc": 965, + "op": "DUP1", + "gas": 1958566, "gasCost": 3, "depth": 2, "stack": [ @@ -15097,14 +15018,13 @@ "0x1cf", "0x1d6329f1c35ca4bfabb9f5610000000001", "0x0", - "0x0", - "0x0" + "0x1d6329f1c35ca4bfabb9f5610000000001" ] }, { - "pc": 998, - "op": "PUSH3", - "gas": 1958526, + "pc": 966, + "op": "DUP3", + "gas": 1958563, "gasCost": 3, "depth": 2, "stack": [ @@ -15120,15 +15040,15 @@ "0x1cf", "0x1d6329f1c35ca4bfabb9f5610000000001", "0x0", - "0x0", - "0x1" + "0x1d6329f1c35ca4bfabb9f5610000000001", + "0x1d6329f1c35ca4bfabb9f5610000000001" ] }, { - "pc": 1002, - "op": "JUMPI", - "gas": 1958523, - "gasCost": 10, + "pc": 967, + "op": "GT", + "gas": 1958560, + "gasCost": 3, "depth": 2, "stack": [ "0xbc", @@ -15143,37 +15063,15 @@ "0x1cf", "0x1d6329f1c35ca4bfabb9f5610000000001", "0x0", - "0x0", - "0x1", - "0x3f5" - ] - }, - { - "pc": 1013, - "op": "JUMPDEST", - "gas": 1958513, - "gasCost": 1, - "depth": 2, - "stack": [ - "0xbc", - "0x1d6329f1c35ca4bfabb9f5610000000000", - "0x0", - "0x14e", - "0x1d6329f1c35ca4bfabb9f5610000000001", - "0x0", "0x1d6329f1c35ca4bfabb9f5610000000001", - "0x2", - "0x0", - "0x1cf", "0x1d6329f1c35ca4bfabb9f5610000000001", - "0x0", "0x0" ] }, { - "pc": 1014, - "op": "DUP3", - "gas": 1958512, + "pc": 968, + "op": "ISZERO", + "gas": 1958557, "gasCost": 3, "depth": 2, "stack": [ @@ -15189,13 +15087,14 @@ "0x1cf", "0x1d6329f1c35ca4bfabb9f5610000000001", "0x0", + "0x1d6329f1c35ca4bfabb9f5610000000001", "0x0" ] }, { - "pc": 1015, - "op": "DUP3", - "gas": 1958509, + "pc": 969, + "op": "PUSH3", + "gas": 1958554, "gasCost": 3, "depth": 2, "stack": [ @@ -15211,15 +15110,15 @@ "0x1cf", "0x1d6329f1c35ca4bfabb9f5610000000001", "0x0", - "0x0", - "0x1d6329f1c35ca4bfabb9f5610000000001" + "0x1d6329f1c35ca4bfabb9f5610000000001", + "0x1" ] }, { - "pc": 1016, - "op": "ADD", - "gas": 1958506, - "gasCost": 3, + "pc": 973, + "op": "JUMPI", + "gas": 1958551, + "gasCost": 10, "depth": 2, "stack": [ "0xbc", @@ -15234,16 +15133,16 @@ "0x1cf", "0x1d6329f1c35ca4bfabb9f5610000000001", "0x0", - "0x0", "0x1d6329f1c35ca4bfabb9f5610000000001", - "0x0" + "0x1", + "0x3d8" ] }, { - "pc": 1017, - "op": "SWAP1", - "gas": 1958503, - "gasCost": 3, + "pc": 984, + "op": "JUMPDEST", + "gas": 1958541, + "gasCost": 1, "depth": 2, "stack": [ "0xbc", @@ -15258,37 +15157,13 @@ "0x1cf", "0x1d6329f1c35ca4bfabb9f5610000000001", "0x0", - "0x0", "0x1d6329f1c35ca4bfabb9f5610000000001" ] }, { - "pc": 1018, - "op": "POP", - "gas": 1958500, - "gasCost": 2, - "depth": 2, - "stack": [ - "0xbc", - "0x1d6329f1c35ca4bfabb9f5610000000000", - "0x0", - "0x14e", - "0x1d6329f1c35ca4bfabb9f5610000000001", - "0x0", - "0x1d6329f1c35ca4bfabb9f5610000000001", - "0x2", - "0x0", - "0x1cf", - "0x1d6329f1c35ca4bfabb9f5610000000001", - "0x0", - "0x1d6329f1c35ca4bfabb9f5610000000001", - "0x0" - ] - }, - { - "pc": 1019, + "pc": 985, "op": "SWAP3", - "gas": 1958498, + "gas": 1958540, "gasCost": 3, "depth": 2, "stack": [ @@ -15308,9 +15183,9 @@ ] }, { - "pc": 1020, + "pc": 986, "op": "SWAP2", - "gas": 1958495, + "gas": 1958537, "gasCost": 3, "depth": 2, "stack": [ @@ -15330,9 +15205,9 @@ ] }, { - "pc": 1021, + "pc": 987, "op": "POP", - "gas": 1958492, + "gas": 1958534, "gasCost": 2, "depth": 2, "stack": [ @@ -15352,9 +15227,9 @@ ] }, { - "pc": 1022, + "pc": 988, "op": "POP", - "gas": 1958490, + "gas": 1958532, "gasCost": 2, "depth": 2, "stack": [ @@ -15373,9 +15248,9 @@ ] }, { - "pc": 1023, + "pc": 989, "op": "JUMP", - "gas": 1958488, + "gas": 1958530, "gasCost": 8, "depth": 2, "stack": [ @@ -15395,7 +15270,7 @@ { "pc": 463, "op": "JUMPDEST", - "gas": 1958480, + "gas": 1958522, "gasCost": 1, "depth": 2, "stack": [ @@ -15414,7 +15289,7 @@ { "pc": 464, "op": "SWAP3", - "gas": 1958479, + "gas": 1958521, "gasCost": 3, "depth": 2, "stack": [ @@ -15433,7 +15308,7 @@ { "pc": 465, "op": "POP", - "gas": 1958476, + "gas": 1958518, "gasCost": 2, "depth": 2, "stack": [ @@ -15452,7 +15327,7 @@ { "pc": 466, "op": "POP", - "gas": 1958474, + "gas": 1958516, "gasCost": 2, "depth": 2, "stack": [ @@ -15470,7 +15345,7 @@ { "pc": 467, "op": "DUP2", - "gas": 1958472, + "gas": 1958514, "gasCost": 3, "depth": 2, "stack": [ @@ -15487,7 +15362,7 @@ { "pc": 468, "op": "SWAP1", - "gas": 1958469, + "gas": 1958511, "gasCost": 3, "depth": 2, "stack": [ @@ -15505,7 +15380,7 @@ { "pc": 469, "op": "SSTORE", - "gas": 1958466, + "gas": 1958508, "gasCost": 20000, "depth": 2, "stack": [ @@ -15528,7 +15403,7 @@ { "pc": 470, "op": "POP", - "gas": 1938466, + "gas": 1938508, "gasCost": 2, "depth": 2, "stack": [ @@ -15544,7 +15419,7 @@ { "pc": 471, "op": "PUSH1", - "gas": 1938464, + "gas": 1938506, "gasCost": 3, "depth": 2, "stack": [ @@ -15559,7 +15434,7 @@ { "pc": 473, "op": "SWAP1", - "gas": 1938461, + "gas": 1938503, "gasCost": 3, "depth": 2, "stack": [ @@ -15575,7 +15450,7 @@ { "pc": 474, "op": "POP", - "gas": 1938458, + "gas": 1938500, "gasCost": 2, "depth": 2, "stack": [ @@ -15591,7 +15466,7 @@ { "pc": 475, "op": "SWAP2", - "gas": 1938456, + "gas": 1938498, "gasCost": 3, "depth": 2, "stack": [ @@ -15606,7 +15481,7 @@ { "pc": 476, "op": "SWAP1", - "gas": 1938453, + "gas": 1938495, "gasCost": 3, "depth": 2, "stack": [ @@ -15621,7 +15496,7 @@ { "pc": 477, "op": "POP", - "gas": 1938450, + "gas": 1938492, "gasCost": 2, "depth": 2, "stack": [ @@ -15636,7 +15511,7 @@ { "pc": 478, "op": "JUMP", - "gas": 1938448, + "gas": 1938490, "gasCost": 8, "depth": 2, "stack": [ @@ -15650,7 +15525,7 @@ { "pc": 334, "op": "JUMPDEST", - "gas": 1938440, + "gas": 1938482, "gasCost": 1, "depth": 2, "stack": [ @@ -15663,7 +15538,7 @@ { "pc": 335, "op": "POP", - "gas": 1938439, + "gas": 1938481, "gasCost": 2, "depth": 2, "stack": [ @@ -15676,7 +15551,7 @@ { "pc": 336, "op": "PUSH3", - "gas": 1938437, + "gas": 1938479, "gasCost": 3, "depth": 2, "stack": [ @@ -15688,7 +15563,7 @@ { "pc": 340, "op": "PUSH3", - "gas": 1938434, + "gas": 1938476, "gasCost": 3, "depth": 2, "stack": [ @@ -15701,7 +15576,7 @@ { "pc": 344, "op": "PUSH1", - "gas": 1938431, + "gas": 1938473, "gasCost": 3, "depth": 2, "stack": [ @@ -15715,7 +15590,7 @@ { "pc": 346, "op": "SHL", - "gas": 1938428, + "gas": 1938470, "gasCost": 3, "depth": 2, "stack": [ @@ -15730,7 +15605,7 @@ { "pc": 347, "op": "PUSH1", - "gas": 1938425, + "gas": 1938467, "gasCost": 3, "depth": 2, "stack": [ @@ -15744,7 +15619,7 @@ { "pc": 349, "op": "SHR", - "gas": 1938422, + "gas": 1938464, "gasCost": 3, "depth": 2, "stack": [ @@ -15759,7 +15634,7 @@ { "pc": 350, "op": "JUMP", - "gas": 1938419, + "gas": 1938461, "gasCost": 8, "depth": 2, "stack": [ @@ -15773,7 +15648,7 @@ { "pc": 479, "op": "JUMPDEST", - "gas": 1938411, + "gas": 1938453, "gasCost": 1, "depth": 2, "stack": [ @@ -15786,7 +15661,7 @@ { "pc": 480, "op": "PUSH1", - "gas": 1938410, + "gas": 1938452, "gasCost": 3, "depth": 2, "stack": [ @@ -15799,7 +15674,7 @@ { "pc": 482, "op": "DUP1", - "gas": 1938407, + "gas": 1938449, "gasCost": 3, "depth": 2, "stack": [ @@ -15813,7 +15688,7 @@ { "pc": 483, "op": "PUSH1", - "gas": 1938404, + "gas": 1938446, "gasCost": 3, "depth": 2, "stack": [ @@ -15828,7 +15703,7 @@ { "pc": 485, "op": "MLOAD", - "gas": 1938401, + "gas": 1938443, "gasCost": 3, "depth": 2, "stack": [ @@ -15844,7 +15719,7 @@ { "pc": 486, "op": "DUP1", - "gas": 1938398, + "gas": 1938440, "gasCost": 3, "depth": 2, "stack": [ @@ -15860,7 +15735,7 @@ { "pc": 487, "op": "PUSH1", - "gas": 1938395, + "gas": 1938437, "gasCost": 3, "depth": 2, "stack": [ @@ -15877,7 +15752,7 @@ { "pc": 489, "op": "ADD", - "gas": 1938392, + "gas": 1938434, "gasCost": 3, "depth": 2, "stack": [ @@ -15895,7 +15770,7 @@ { "pc": 490, "op": "PUSH1", - "gas": 1938389, + "gas": 1938431, "gasCost": 3, "depth": 2, "stack": [ @@ -15912,7 +15787,7 @@ { "pc": 492, "op": "MSTORE", - "gas": 1938386, + "gas": 1938428, "gasCost": 3, "depth": 2, "stack": [ @@ -15930,7 +15805,7 @@ { "pc": 493, "op": "DUP1", - "gas": 1938383, + "gas": 1938425, "gasCost": 3, "depth": 2, "stack": [ @@ -15946,7 +15821,7 @@ { "pc": 494, "op": "PUSH1", - "gas": 1938380, + "gas": 1938422, "gasCost": 3, "depth": 2, "stack": [ @@ -15963,7 +15838,7 @@ { "pc": 496, "op": "DUP2", - "gas": 1938377, + "gas": 1938419, "gasCost": 3, "depth": 2, "stack": [ @@ -15981,7 +15856,7 @@ { "pc": 497, "op": "MSTORE", - "gas": 1938374, + "gas": 1938416, "gasCost": 3, "depth": 2, "stack": [ @@ -16000,7 +15875,7 @@ { "pc": 498, "op": "PUSH1", - "gas": 1938371, + "gas": 1938413, "gasCost": 3, "depth": 2, "stack": [ @@ -16017,7 +15892,7 @@ { "pc": 500, "op": "ADD", - "gas": 1938368, + "gas": 1938410, "gasCost": 3, "depth": 2, "stack": [ @@ -16035,7 +15910,7 @@ { "pc": 501, "op": "PUSH32", - "gas": 1938365, + "gas": 1938407, "gasCost": 3, "depth": 2, "stack": [ @@ -16052,7 +15927,7 @@ { "pc": 534, "op": "DUP2", - "gas": 1938362, + "gas": 1938404, "gasCost": 3, "depth": 2, "stack": [ @@ -16070,7 +15945,7 @@ { "pc": 535, "op": "MSTORE", - "gas": 1938359, + "gas": 1938401, "gasCost": 3, "depth": 2, "stack": [ @@ -16089,7 +15964,7 @@ { "pc": 536, "op": "POP", - "gas": 1938356, + "gas": 1938398, "gasCost": 2, "depth": 2, "stack": [ @@ -16106,7 +15981,7 @@ { "pc": 537, "op": "SWAP1", - "gas": 1938354, + "gas": 1938396, "gasCost": 3, "depth": 2, "stack": [ @@ -16122,7 +15997,7 @@ { "pc": 538, "op": "POP", - "gas": 1938351, + "gas": 1938393, "gasCost": 2, "depth": 2, "stack": [ @@ -16138,7 +16013,7 @@ { "pc": 539, "op": "PUSH1", - "gas": 1938349, + "gas": 1938391, "gasCost": 3, "depth": 2, "stack": [ @@ -16153,7 +16028,7 @@ { "pc": 541, "op": "DUP2", - "gas": 1938346, + "gas": 1938388, "gasCost": 3, "depth": 2, "stack": [ @@ -16169,7 +16044,7 @@ { "pc": 542, "op": "DUP1", - "gas": 1938343, + "gas": 1938385, "gasCost": 3, "depth": 2, "stack": [ @@ -16186,7 +16061,7 @@ { "pc": 543, "op": "MLOAD", - "gas": 1938340, + "gas": 1938382, "gasCost": 3, "depth": 2, "stack": [ @@ -16204,7 +16079,7 @@ { "pc": 544, "op": "SWAP1", - "gas": 1938337, + "gas": 1938379, "gasCost": 3, "depth": 2, "stack": [ @@ -16222,7 +16097,7 @@ { "pc": 545, "op": "PUSH1", - "gas": 1938334, + "gas": 1938376, "gasCost": 3, "depth": 2, "stack": [ @@ -16240,7 +16115,7 @@ { "pc": 547, "op": "ADD", - "gas": 1938331, + "gas": 1938373, "gasCost": 3, "depth": 2, "stack": [ @@ -16259,7 +16134,7 @@ { "pc": 548, "op": "KECCAK256", - "gas": 1938328, + "gas": 1938370, "gasCost": 36, "depth": 2, "stack": [ @@ -16277,7 +16152,7 @@ { "pc": 549, "op": "SWAP1", - "gas": 1938292, + "gas": 1938334, "gasCost": 3, "depth": 2, "stack": [ @@ -16294,7 +16169,7 @@ { "pc": 550, "op": "POP", - "gas": 1938289, + "gas": 1938331, "gasCost": 2, "depth": 2, "stack": [ @@ -16311,7 +16186,7 @@ { "pc": 551, "op": "DUP1", - "gas": 1938287, + "gas": 1938329, "gasCost": 3, "depth": 2, "stack": [ @@ -16327,7 +16202,7 @@ { "pc": 552, "op": "SWAP3", - "gas": 1938284, + "gas": 1938326, "gasCost": 3, "depth": 2, "stack": [ @@ -16344,7 +16219,7 @@ { "pc": 553, "op": "POP", - "gas": 1938281, + "gas": 1938323, "gasCost": 2, "depth": 2, "stack": [ @@ -16361,7 +16236,7 @@ { "pc": 554, "op": "POP", - "gas": 1938279, + "gas": 1938321, "gasCost": 2, "depth": 2, "stack": [ @@ -16377,7 +16252,7 @@ { "pc": 555, "op": "POP", - "gas": 1938277, + "gas": 1938319, "gasCost": 2, "depth": 2, "stack": [ @@ -16392,7 +16267,7 @@ { "pc": 556, "op": "SWAP1", - "gas": 1938275, + "gas": 1938317, "gasCost": 3, "depth": 2, "stack": [ @@ -16406,7 +16281,7 @@ { "pc": 557, "op": "JUMP", - "gas": 1938272, + "gas": 1938314, "gasCost": 8, "depth": 2, "stack": [ @@ -16420,7 +16295,7 @@ { "pc": 351, "op": "JUMPDEST", - "gas": 1938264, + "gas": 1938306, "gasCost": 1, "depth": 2, "stack": [ @@ -16433,7 +16308,7 @@ { "pc": 352, "op": "POP", - "gas": 1938263, + "gas": 1938305, "gasCost": 2, "depth": 2, "stack": [ @@ -16446,7 +16321,7 @@ { "pc": 353, "op": "PUSH1", - "gas": 1938261, + "gas": 1938303, "gasCost": 3, "depth": 2, "stack": [ @@ -16458,7 +16333,7 @@ { "pc": 355, "op": "SWAP1", - "gas": 1938258, + "gas": 1938300, "gasCost": 3, "depth": 2, "stack": [ @@ -16471,7 +16346,7 @@ { "pc": 356, "op": "POP", - "gas": 1938255, + "gas": 1938297, "gasCost": 2, "depth": 2, "stack": [ @@ -16484,7 +16359,7 @@ { "pc": 357, "op": "SWAP2", - "gas": 1938253, + "gas": 1938295, "gasCost": 3, "depth": 2, "stack": [ @@ -16496,7 +16371,7 @@ { "pc": 358, "op": "SWAP1", - "gas": 1938250, + "gas": 1938292, "gasCost": 3, "depth": 2, "stack": [ @@ -16508,7 +16383,7 @@ { "pc": 359, "op": "POP", - "gas": 1938247, + "gas": 1938289, "gasCost": 2, "depth": 2, "stack": [ @@ -16520,7 +16395,7 @@ { "pc": 360, "op": "JUMP", - "gas": 1938245, + "gas": 1938287, "gasCost": 8, "depth": 2, "stack": [ @@ -16531,7 +16406,7 @@ { "pc": 188, "op": "JUMPDEST", - "gas": 1938237, + "gas": 1938279, "gasCost": 1, "depth": 2, "stack": [ @@ -16541,7 +16416,7 @@ { "pc": 189, "op": "POP", - "gas": 1938236, + "gas": 1938278, "gasCost": 2, "depth": 2, "stack": [ @@ -16551,7 +16426,7 @@ { "pc": 190, "op": "PUSH3", - "gas": 1938234, + "gas": 1938276, "gasCost": 3, "depth": 2, "stack": [] @@ -16559,100 +16434,100 @@ { "pc": 194, "op": "JUMP", - "gas": 1938231, + "gas": 1938273, "gasCost": 8, "depth": 2, "stack": [ - "0x482" + "0x460" ] }, { - "pc": 1154, + "pc": 1120, "op": "JUMPDEST", - "gas": 1938223, + "gas": 1938265, "gasCost": 1, "depth": 2, "stack": [] }, { - "pc": 1155, + "pc": 1121, "op": "PUSH2", - "gas": 1938222, + "gas": 1938264, "gasCost": 3, "depth": 2, "stack": [] }, { - "pc": 1158, + "pc": 1124, "op": "DUP1", - "gas": 1938219, + "gas": 1938261, "gasCost": 3, "depth": 2, "stack": [ - "0x651" + "0x62f" ] }, { - "pc": 1159, + "pc": 1125, "op": "PUSH3", - "gas": 1938216, + "gas": 1938258, "gasCost": 3, "depth": 2, "stack": [ - "0x651", - "0x651" + "0x62f", + "0x62f" ] }, { - "pc": 1163, + "pc": 1129, "op": "PUSH1", - "gas": 1938213, + "gas": 1938255, "gasCost": 3, "depth": 2, "stack": [ - "0x651", - "0x651", - "0x492" + "0x62f", + "0x62f", + "0x470" ] }, { - "pc": 1165, + "pc": 1131, "op": "CODECOPY", - "gas": 1938210, - "gasCost": 290, + "gas": 1938252, + "gasCost": 283, "depth": 2, "stack": [ - "0x651", - "0x651", - "0x492", + "0x62f", + "0x62f", + "0x470", "0x0" ] }, { - "pc": 1166, + "pc": 1132, "op": "PUSH1", - "gas": 1937920, + "gas": 1937969, "gasCost": 3, "depth": 2, "stack": [ - "0x651" + "0x62f" ] }, { - "pc": 1168, + "pc": 1134, "op": "RETURN", - "gas": 1937917, + "gas": 1937966, "gasCost": 0, "depth": 2, "stack": [ - "0x651", + "0x62f", "0x0" ] }, { "pc": 865, "op": "DUP1", - "gas": 1646438, + "gas": 1653288, "gasCost": 3, "depth": 1, "stack": [ @@ -16660,13 +16535,13 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae" + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585" ] }, { "pc": 866, "op": "ISZERO", - "gas": 1646435, + "gas": 1653285, "gasCost": 3, "depth": 1, "stack": [ @@ -16674,14 +16549,14 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae" + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585" ] }, { "pc": 867, "op": "DUP1", - "gas": 1646432, + "gas": 1653282, "gasCost": 3, "depth": 1, "stack": [ @@ -16689,14 +16564,14 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0x0" ] }, { "pc": 868, "op": "ISZERO", - "gas": 1646429, + "gas": 1653279, "gasCost": 3, "depth": 1, "stack": [ @@ -16704,7 +16579,7 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0x0", "0x0" ] @@ -16712,7 +16587,7 @@ { "pc": 869, "op": "PUSH3", - "gas": 1646426, + "gas": 1653276, "gasCost": 3, "depth": 1, "stack": [ @@ -16720,7 +16595,7 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0x0", "0x1" ] @@ -16728,7 +16603,7 @@ { "pc": 873, "op": "JUMPI", - "gas": 1646423, + "gas": 1653273, "gasCost": 10, "depth": 1, "stack": [ @@ -16736,7 +16611,7 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0x0", "0x1", "0x373" @@ -16745,7 +16620,7 @@ { "pc": 883, "op": "JUMPDEST", - "gas": 1646413, + "gas": 1653263, "gasCost": 1, "depth": 1, "stack": [ @@ -16753,14 +16628,14 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0x0" ] }, { "pc": 884, "op": "POP", - "gas": 1646412, + "gas": 1653262, "gasCost": 2, "depth": 1, "stack": [ @@ -16768,14 +16643,14 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0x0" ] }, { "pc": 885, "op": "PUSH1", - "gas": 1646410, + "gas": 1653260, "gasCost": 3, "depth": 1, "stack": [ @@ -16783,13 +16658,13 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae" + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585" ] }, { "pc": 887, "op": "DUP1", - "gas": 1646407, + "gas": 1653257, "gasCost": 3, "depth": 1, "stack": [ @@ -16797,14 +16672,14 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0x0" ] }, { "pc": 888, "op": "PUSH2", - "gas": 1646404, + "gas": 1653254, "gasCost": 3, "depth": 1, "stack": [ @@ -16812,7 +16687,7 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0x0", "0x0" ] @@ -16820,7 +16695,7 @@ { "pc": 891, "op": "EXP", - "gas": 1646401, + "gas": 1653251, "gasCost": 10, "depth": 1, "stack": [ @@ -16828,7 +16703,7 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0x0", "0x0", "0x100" @@ -16837,7 +16712,7 @@ { "pc": 892, "op": "DUP2", - "gas": 1646391, + "gas": 1653241, "gasCost": 3, "depth": 1, "stack": [ @@ -16845,7 +16720,7 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0x0", "0x1" ] @@ -16853,7 +16728,7 @@ { "pc": 893, "op": "SLOAD", - "gas": 1646388, + "gas": 1653238, "gasCost": 2100, "depth": 1, "stack": [ @@ -16861,7 +16736,7 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0x0", "0x1", "0x0" @@ -16873,7 +16748,7 @@ { "pc": 894, "op": "DUP2", - "gas": 1644288, + "gas": 1651138, "gasCost": 3, "depth": 1, "stack": [ @@ -16881,7 +16756,7 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0x0", "0x1", "0x0" @@ -16890,7 +16765,7 @@ { "pc": 895, "op": "PUSH20", - "gas": 1644285, + "gas": 1651135, "gasCost": 3, "depth": 1, "stack": [ @@ -16898,7 +16773,7 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0x0", "0x1", "0x0", @@ -16908,7 +16783,7 @@ { "pc": 916, "op": "MUL", - "gas": 1644282, + "gas": 1651132, "gasCost": 5, "depth": 1, "stack": [ @@ -16916,7 +16791,7 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0x0", "0x1", "0x0", @@ -16927,7 +16802,7 @@ { "pc": 917, "op": "NOT", - "gas": 1644277, + "gas": 1651127, "gasCost": 3, "depth": 1, "stack": [ @@ -16935,7 +16810,7 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0x0", "0x1", "0x0", @@ -16945,7 +16820,7 @@ { "pc": 918, "op": "AND", - "gas": 1644274, + "gas": 1651124, "gasCost": 3, "depth": 1, "stack": [ @@ -16953,7 +16828,7 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0x0", "0x1", "0x0", @@ -16963,7 +16838,7 @@ { "pc": 919, "op": "SWAP1", - "gas": 1644271, + "gas": 1651121, "gasCost": 3, "depth": 1, "stack": [ @@ -16971,7 +16846,7 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0x0", "0x1", "0x0" @@ -16980,7 +16855,7 @@ { "pc": 920, "op": "DUP4", - "gas": 1644268, + "gas": 1651118, "gasCost": 3, "depth": 1, "stack": [ @@ -16988,7 +16863,7 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0x0", "0x0", "0x1" @@ -16997,7 +16872,7 @@ { "pc": 921, "op": "PUSH20", - "gas": 1644265, + "gas": 1651115, "gasCost": 3, "depth": 1, "stack": [ @@ -17005,17 +16880,17 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0x0", "0x0", "0x1", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae" + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585" ] }, { "pc": 942, "op": "AND", - "gas": 1644262, + "gas": 1651112, "gasCost": 3, "depth": 1, "stack": [ @@ -17023,18 +16898,18 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0x0", "0x0", "0x1", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xffffffffffffffffffffffffffffffffffffffff" ] }, { "pc": 943, "op": "MUL", - "gas": 1644259, + "gas": 1651109, "gasCost": 5, "depth": 1, "stack": [ @@ -17042,17 +16917,17 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0x0", "0x0", "0x1", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae" + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585" ] }, { "pc": 944, "op": "OR", - "gas": 1644254, + "gas": 1651104, "gasCost": 3, "depth": 1, "stack": [ @@ -17060,16 +16935,16 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0x0", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae" + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585" ] }, { "pc": 945, "op": "SWAP1", - "gas": 1644251, + "gas": 1651101, "gasCost": 3, "depth": 1, "stack": [ @@ -17077,15 +16952,15 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae" + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585" ] }, { "pc": 946, "op": "SSTORE", - "gas": 1644248, + "gas": 1651098, "gasCost": 20000, "depth": 1, "stack": [ @@ -17093,18 +16968,18 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0x0" ], "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "00000000000000000000000061a286b8e87e2d31c475d71c85a0020584c44bae" + "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000ccbd01c355155c2b4e79d1bdbb43dfe43194a585" } }, { "pc": 947, "op": "POP", - "gas": 1624248, + "gas": 1631098, "gasCost": 2, "depth": 1, "stack": [ @@ -17112,13 +16987,13 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae" + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585" ] }, { "pc": 948, "op": "DUP2", - "gas": 1624246, + "gas": 1631096, "gasCost": 3, "depth": 1, "stack": [ @@ -17131,7 +17006,7 @@ { "pc": 949, "op": "PUSH1", - "gas": 1624243, + "gas": 1631093, "gasCost": 3, "depth": 1, "stack": [ @@ -17145,7 +17020,7 @@ { "pc": 951, "op": "PUSH1", - "gas": 1624240, + "gas": 1631090, "gasCost": 3, "depth": 1, "stack": [ @@ -17160,7 +17035,7 @@ { "pc": 953, "op": "DUP3", - "gas": 1624237, + "gas": 1631087, "gasCost": 3, "depth": 1, "stack": [ @@ -17176,7 +17051,7 @@ { "pc": 954, "op": "DUP3", - "gas": 1624234, + "gas": 1631084, "gasCost": 3, "depth": 1, "stack": [ @@ -17193,7 +17068,7 @@ { "pc": 955, "op": "SLOAD", - "gas": 1624231, + "gas": 1631081, "gasCost": 2100, "depth": 1, "stack": [ @@ -17208,14 +17083,14 @@ "0x1" ], "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "00000000000000000000000061a286b8e87e2d31c475d71c85a0020584c44bae", + "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000ccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0000000000000000000000000000000000000000000000000000000000000001": "0000000000000000000000000000000000000000000000000000000000000000" } }, { "pc": 956, "op": "PUSH3", - "gas": 1622131, + "gas": 1628981, "gasCost": 3, "depth": 1, "stack": [ @@ -17233,7 +17108,7 @@ { "pc": 960, "op": "SWAP2", - "gas": 1622128, + "gas": 1628978, "gasCost": 3, "depth": 1, "stack": [ @@ -17252,7 +17127,7 @@ { "pc": 961, "op": "SWAP1", - "gas": 1622125, + "gas": 1628975, "gasCost": 3, "depth": 1, "stack": [ @@ -17271,7 +17146,7 @@ { "pc": 962, "op": "PUSH3", - "gas": 1622122, + "gas": 1628972, "gasCost": 3, "depth": 1, "stack": [ @@ -17290,7 +17165,7 @@ { "pc": 966, "op": "JUMP", - "gas": 1622119, + "gas": 1628969, "gasCost": 8, "depth": 1, "stack": [ @@ -17304,13 +17179,13 @@ "0x3c7", "0x3e8", "0x0", - "0xbb7" + "0xb95" ] }, { - "pc": 2999, + "pc": 2965, "op": "JUMPDEST", - "gas": 1622111, + "gas": 1628961, "gasCost": 1, "depth": 1, "stack": [ @@ -17327,9 +17202,9 @@ ] }, { - "pc": 3000, + "pc": 2966, "op": "PUSH1", - "gas": 1622110, + "gas": 1628960, "gasCost": 3, "depth": 1, "stack": [ @@ -17346,9 +17221,9 @@ ] }, { - "pc": 3002, + "pc": 2968, "op": "PUSH3", - "gas": 1622107, + "gas": 1628957, "gasCost": 3, "depth": 1, "stack": [ @@ -17366,9 +17241,9 @@ ] }, { - "pc": 3006, + "pc": 2972, "op": "DUP3", - "gas": 1622104, + "gas": 1628954, "gasCost": 3, "depth": 1, "stack": [ @@ -17383,13 +17258,13 @@ "0x3e8", "0x0", "0x0", - "0xbc4" + "0xba2" ] }, { - "pc": 3007, + "pc": 2973, "op": "PUSH3", - "gas": 1622101, + "gas": 1628951, "gasCost": 3, "depth": 1, "stack": [ @@ -17404,14 +17279,14 @@ "0x3e8", "0x0", "0x0", - "0xbc4", + "0xba2", "0x0" ] }, { - "pc": 3011, + "pc": 2977, "op": "JUMP", - "gas": 1622098, + "gas": 1628948, "gasCost": 8, "depth": 1, "stack": [ @@ -17426,15 +17301,15 @@ "0x3e8", "0x0", "0x0", - "0xbc4", + "0xba2", "0x0", - "0x97c" + "0x95a" ] }, { - "pc": 2428, + "pc": 2394, "op": "JUMPDEST", - "gas": 1622090, + "gas": 1628940, "gasCost": 1, "depth": 1, "stack": [ @@ -17449,14 +17324,14 @@ "0x3e8", "0x0", "0x0", - "0xbc4", + "0xba2", "0x0" ] }, { - "pc": 2429, + "pc": 2395, "op": "PUSH1", - "gas": 1622089, + "gas": 1628939, "gasCost": 3, "depth": 1, "stack": [ @@ -17471,14 +17346,14 @@ "0x3e8", "0x0", "0x0", - "0xbc4", + "0xba2", "0x0" ] }, { - "pc": 2431, + "pc": 2397, "op": "DUP2", - "gas": 1622086, + "gas": 1628936, "gasCost": 3, "depth": 1, "stack": [ @@ -17493,15 +17368,15 @@ "0x3e8", "0x0", "0x0", - "0xbc4", + "0xba2", "0x0", "0x0" ] }, { - "pc": 2432, + "pc": 2398, "op": "SWAP1", - "gas": 1622083, + "gas": 1628933, "gasCost": 3, "depth": 1, "stack": [ @@ -17516,16 +17391,16 @@ "0x3e8", "0x0", "0x0", - "0xbc4", + "0xba2", "0x0", "0x0", "0x0" ] }, { - "pc": 2433, + "pc": 2399, "op": "POP", - "gas": 1622080, + "gas": 1628930, "gasCost": 2, "depth": 1, "stack": [ @@ -17540,16 +17415,16 @@ "0x3e8", "0x0", "0x0", - "0xbc4", + "0xba2", "0x0", "0x0", "0x0" ] }, { - "pc": 2434, + "pc": 2400, "op": "SWAP2", - "gas": 1622078, + "gas": 1628928, "gasCost": 3, "depth": 1, "stack": [ @@ -17564,15 +17439,15 @@ "0x3e8", "0x0", "0x0", - "0xbc4", + "0xba2", "0x0", "0x0" ] }, { - "pc": 2435, + "pc": 2401, "op": "SWAP1", - "gas": 1622075, + "gas": 1628925, "gasCost": 3, "depth": 1, "stack": [ @@ -17589,13 +17464,13 @@ "0x0", "0x0", "0x0", - "0xbc4" + "0xba2" ] }, { - "pc": 2436, + "pc": 2402, "op": "POP", - "gas": 1622072, + "gas": 1628922, "gasCost": 2, "depth": 1, "stack": [ @@ -17611,14 +17486,14 @@ "0x0", "0x0", "0x0", - "0xbc4", + "0xba2", "0x0" ] }, { - "pc": 2437, + "pc": 2403, "op": "JUMP", - "gas": 1622070, + "gas": 1628920, "gasCost": 8, "depth": 1, "stack": [ @@ -17634,13 +17509,13 @@ "0x0", "0x0", "0x0", - "0xbc4" + "0xba2" ] }, { - "pc": 3012, + "pc": 2978, "op": "JUMPDEST", - "gas": 1622062, + "gas": 1628912, "gasCost": 1, "depth": 1, "stack": [ @@ -17659,9 +17534,9 @@ ] }, { - "pc": 3013, + "pc": 2979, "op": "SWAP2", - "gas": 1622061, + "gas": 1628911, "gasCost": 3, "depth": 1, "stack": [ @@ -17680,9 +17555,9 @@ ] }, { - "pc": 3014, + "pc": 2980, "op": "POP", - "gas": 1622058, + "gas": 1628908, "gasCost": 2, "depth": 1, "stack": [ @@ -17701,9 +17576,9 @@ ] }, { - "pc": 3015, + "pc": 2981, "op": "PUSH3", - "gas": 1622056, + "gas": 1628906, "gasCost": 3, "depth": 1, "stack": [ @@ -17721,9 +17596,9 @@ ] }, { - "pc": 3019, + "pc": 2985, "op": "DUP4", - "gas": 1622053, + "gas": 1628903, "gasCost": 3, "depth": 1, "stack": [ @@ -17738,13 +17613,13 @@ "0x3e8", "0x0", "0x0", - "0xbd1" + "0xbaf" ] }, { - "pc": 3020, + "pc": 2986, "op": "PUSH3", - "gas": 1622050, + "gas": 1628900, "gasCost": 3, "depth": 1, "stack": [ @@ -17759,14 +17634,14 @@ "0x3e8", "0x0", "0x0", - "0xbd1", + "0xbaf", "0x3e8" ] }, { - "pc": 3024, + "pc": 2990, "op": "JUMP", - "gas": 1622047, + "gas": 1628897, "gasCost": 8, "depth": 1, "stack": [ @@ -17781,15 +17656,15 @@ "0x3e8", "0x0", "0x0", - "0xbd1", + "0xbaf", "0x3e8", - "0x97c" + "0x95a" ] }, { - "pc": 2428, + "pc": 2394, "op": "JUMPDEST", - "gas": 1622039, + "gas": 1628889, "gasCost": 1, "depth": 1, "stack": [ @@ -17804,14 +17679,14 @@ "0x3e8", "0x0", "0x0", - "0xbd1", + "0xbaf", "0x3e8" ] }, { - "pc": 2429, + "pc": 2395, "op": "PUSH1", - "gas": 1622038, + "gas": 1628888, "gasCost": 3, "depth": 1, "stack": [ @@ -17826,14 +17701,14 @@ "0x3e8", "0x0", "0x0", - "0xbd1", + "0xbaf", "0x3e8" ] }, { - "pc": 2431, + "pc": 2397, "op": "DUP2", - "gas": 1622035, + "gas": 1628885, "gasCost": 3, "depth": 1, "stack": [ @@ -17848,15 +17723,15 @@ "0x3e8", "0x0", "0x0", - "0xbd1", + "0xbaf", "0x3e8", "0x0" ] }, { - "pc": 2432, + "pc": 2398, "op": "SWAP1", - "gas": 1622032, + "gas": 1628882, "gasCost": 3, "depth": 1, "stack": [ @@ -17871,16 +17746,16 @@ "0x3e8", "0x0", "0x0", - "0xbd1", + "0xbaf", "0x3e8", "0x0", "0x3e8" ] }, { - "pc": 2433, + "pc": 2399, "op": "POP", - "gas": 1622029, + "gas": 1628879, "gasCost": 2, "depth": 1, "stack": [ @@ -17895,16 +17770,16 @@ "0x3e8", "0x0", "0x0", - "0xbd1", + "0xbaf", "0x3e8", "0x3e8", "0x0" ] }, { - "pc": 2434, + "pc": 2400, "op": "SWAP2", - "gas": 1622027, + "gas": 1628877, "gasCost": 3, "depth": 1, "stack": [ @@ -17919,15 +17794,15 @@ "0x3e8", "0x0", "0x0", - "0xbd1", + "0xbaf", "0x3e8", "0x3e8" ] }, { - "pc": 2435, + "pc": 2401, "op": "SWAP1", - "gas": 1622024, + "gas": 1628874, "gasCost": 3, "depth": 1, "stack": [ @@ -17944,13 +17819,13 @@ "0x0", "0x3e8", "0x3e8", - "0xbd1" + "0xbaf" ] }, { - "pc": 2436, + "pc": 2402, "op": "POP", - "gas": 1622021, + "gas": 1628871, "gasCost": 2, "depth": 1, "stack": [ @@ -17966,14 +17841,14 @@ "0x0", "0x0", "0x3e8", - "0xbd1", + "0xbaf", "0x3e8" ] }, { - "pc": 2437, + "pc": 2403, "op": "JUMP", - "gas": 1622019, + "gas": 1628869, "gasCost": 8, "depth": 1, "stack": [ @@ -17989,13 +17864,13 @@ "0x0", "0x0", "0x3e8", - "0xbd1" + "0xbaf" ] }, { - "pc": 3025, + "pc": 2991, "op": "JUMPDEST", - "gas": 1622011, + "gas": 1628861, "gasCost": 1, "depth": 1, "stack": [ @@ -18014,9 +17889,9 @@ ] }, { - "pc": 3026, + "pc": 2992, "op": "SWAP3", - "gas": 1622010, + "gas": 1628860, "gasCost": 3, "depth": 1, "stack": [ @@ -18035,9 +17910,9 @@ ] }, { - "pc": 3027, + "pc": 2993, "op": "POP", - "gas": 1622007, + "gas": 1628857, "gasCost": 2, "depth": 1, "stack": [ @@ -18056,9 +17931,9 @@ ] }, { - "pc": 3028, + "pc": 2994, "op": "DUP3", - "gas": 1622005, + "gas": 1628855, "gasCost": 3, "depth": 1, "stack": [ @@ -18076,9 +17951,9 @@ ] }, { - "pc": 3029, - "op": "PUSH32", - "gas": 1622002, + "pc": 2995, + "op": "DUP3", + "gas": 1628852, "gasCost": 3, "depth": 1, "stack": [ @@ -18097,9 +17972,9 @@ ] }, { - "pc": 3062, - "op": "SUB", - "gas": 1621999, + "pc": 2996, + "op": "ADD", + "gas": 1628849, "gasCost": 3, "depth": 1, "stack": [ @@ -18115,13 +17990,13 @@ "0x0", "0x0", "0x3e8", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + "0x0" ] }, { - "pc": 3063, - "op": "DUP3", - "gas": 1621996, + "pc": 2997, + "op": "SWAP1", + "gas": 1628846, "gasCost": 3, "depth": 1, "stack": [ @@ -18136,14 +18011,14 @@ "0x3e8", "0x0", "0x0", - "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc17" + "0x3e8" ] }, { - "pc": 3064, - "op": "GT", - "gas": 1621993, - "gasCost": 3, + "pc": 2998, + "op": "POP", + "gas": 1628843, + "gasCost": 2, "depth": 1, "stack": [ "0x3aa18088", @@ -18156,15 +18031,14 @@ "0x3c7", "0x3e8", "0x0", - "0x0", - "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc17", + "0x3e8", "0x0" ] }, { - "pc": 3065, - "op": "ISZERO", - "gas": 1621990, + "pc": 2999, + "op": "DUP1", + "gas": 1628841, "gasCost": 3, "depth": 1, "stack": [ @@ -18178,14 +18052,13 @@ "0x3c7", "0x3e8", "0x0", - "0x0", - "0x0" + "0x3e8" ] }, { - "pc": 3066, - "op": "PUSH3", - "gas": 1621987, + "pc": 3000, + "op": "DUP3", + "gas": 1628838, "gasCost": 3, "depth": 1, "stack": [ @@ -18199,15 +18072,15 @@ "0x3c7", "0x3e8", "0x0", - "0x0", - "0x1" + "0x3e8", + "0x3e8" ] }, { - "pc": 3070, - "op": "JUMPI", - "gas": 1621984, - "gasCost": 10, + "pc": 3001, + "op": "GT", + "gas": 1628835, + "gasCost": 3, "depth": 1, "stack": [ "0x3aa18088", @@ -18220,35 +18093,15 @@ "0x3c7", "0x3e8", "0x0", - "0x0", - "0x1", - "0xc09" - ] - }, - { - "pc": 3081, - "op": "JUMPDEST", - "gas": 1621974, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x3aa18088", - "0x149", - "0x3e8", - "0x0", "0x3e8", - "0x1", - "0x0", - "0x3c7", "0x3e8", - "0x0", "0x0" ] }, { - "pc": 3082, - "op": "DUP3", - "gas": 1621973, + "pc": 3002, + "op": "ISZERO", + "gas": 1628832, "gasCost": 3, "depth": 1, "stack": [ @@ -18262,13 +18115,14 @@ "0x3c7", "0x3e8", "0x0", + "0x3e8", "0x0" ] }, { - "pc": 3083, - "op": "DUP3", - "gas": 1621970, + "pc": 3003, + "op": "PUSH3", + "gas": 1628829, "gasCost": 3, "depth": 1, "stack": [ @@ -18282,15 +18136,15 @@ "0x3c7", "0x3e8", "0x0", - "0x0", - "0x3e8" + "0x3e8", + "0x1" ] }, { - "pc": 3084, - "op": "ADD", - "gas": 1621967, - "gasCost": 3, + "pc": 3007, + "op": "JUMPI", + "gas": 1628826, + "gasCost": 10, "depth": 1, "stack": [ "0x3aa18088", @@ -18303,37 +18157,16 @@ "0x3c7", "0x3e8", "0x0", - "0x0", - "0x3e8", - "0x0" - ] - }, - { - "pc": 3085, - "op": "SWAP1", - "gas": 1621964, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x3aa18088", - "0x149", - "0x3e8", - "0x0", "0x3e8", "0x1", - "0x0", - "0x3c7", - "0x3e8", - "0x0", - "0x0", - "0x3e8" + "0xbca" ] }, { - "pc": 3086, - "op": "POP", - "gas": 1621961, - "gasCost": 2, + "pc": 3018, + "op": "JUMPDEST", + "gas": 1628816, + "gasCost": 1, "depth": 1, "stack": [ "0x3aa18088", @@ -18346,14 +18179,13 @@ "0x3c7", "0x3e8", "0x0", - "0x3e8", - "0x0" + "0x3e8" ] }, { - "pc": 3087, + "pc": 3019, "op": "SWAP3", - "gas": 1621959, + "gas": 1628815, "gasCost": 3, "depth": 1, "stack": [ @@ -18371,9 +18203,9 @@ ] }, { - "pc": 3088, + "pc": 3020, "op": "SWAP2", - "gas": 1621956, + "gas": 1628812, "gasCost": 3, "depth": 1, "stack": [ @@ -18391,9 +18223,9 @@ ] }, { - "pc": 3089, + "pc": 3021, "op": "POP", - "gas": 1621953, + "gas": 1628809, "gasCost": 2, "depth": 1, "stack": [ @@ -18411,9 +18243,9 @@ ] }, { - "pc": 3090, + "pc": 3022, "op": "POP", - "gas": 1621951, + "gas": 1628807, "gasCost": 2, "depth": 1, "stack": [ @@ -18430,9 +18262,9 @@ ] }, { - "pc": 3091, + "pc": 3023, "op": "JUMP", - "gas": 1621949, + "gas": 1628805, "gasCost": 8, "depth": 1, "stack": [ @@ -18450,7 +18282,7 @@ { "pc": 967, "op": "JUMPDEST", - "gas": 1621941, + "gas": 1628797, "gasCost": 1, "depth": 1, "stack": [ @@ -18467,7 +18299,7 @@ { "pc": 968, "op": "SWAP3", - "gas": 1621940, + "gas": 1628796, "gasCost": 3, "depth": 1, "stack": [ @@ -18484,7 +18316,7 @@ { "pc": 969, "op": "POP", - "gas": 1621937, + "gas": 1628793, "gasCost": 2, "depth": 1, "stack": [ @@ -18501,7 +18333,7 @@ { "pc": 970, "op": "POP", - "gas": 1621935, + "gas": 1628791, "gasCost": 2, "depth": 1, "stack": [ @@ -18517,7 +18349,7 @@ { "pc": 971, "op": "DUP2", - "gas": 1621933, + "gas": 1628789, "gasCost": 3, "depth": 1, "stack": [ @@ -18532,7 +18364,7 @@ { "pc": 972, "op": "SWAP1", - "gas": 1621930, + "gas": 1628786, "gasCost": 3, "depth": 1, "stack": [ @@ -18548,7 +18380,7 @@ { "pc": 973, "op": "SSTORE", - "gas": 1621927, + "gas": 1628783, "gasCost": 20000, "depth": 1, "stack": [ @@ -18561,14 +18393,14 @@ "0x1" ], "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "00000000000000000000000061a286b8e87e2d31c475d71c85a0020584c44bae", + "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000ccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0000000000000000000000000000000000000000000000000000000000000001": "00000000000000000000000000000000000000000000000000000000000003e8" } }, { "pc": 974, "op": "POP", - "gas": 1601927, + "gas": 1608783, "gasCost": 2, "depth": 1, "stack": [ @@ -18582,7 +18414,7 @@ { "pc": 975, "op": "PUSH3", - "gas": 1601925, + "gas": 1608781, "gasCost": 3, "depth": 1, "stack": [ @@ -18595,7 +18427,7 @@ { "pc": 979, "op": "PUSH1", - "gas": 1601922, + "gas": 1608778, "gasCost": 3, "depth": 1, "stack": [ @@ -18609,7 +18441,7 @@ { "pc": 981, "op": "DUP4", - "gas": 1601919, + "gas": 1608775, "gasCost": 3, "depth": 1, "stack": [ @@ -18624,7 +18456,7 @@ { "pc": 982, "op": "PUSH3", - "gas": 1601916, + "gas": 1608772, "gasCost": 3, "depth": 1, "stack": [ @@ -18640,7 +18472,7 @@ { "pc": 986, "op": "SWAP2", - "gas": 1601913, + "gas": 1608769, "gasCost": 3, "depth": 1, "stack": [ @@ -18657,7 +18489,7 @@ { "pc": 987, "op": "SWAP1", - "gas": 1601910, + "gas": 1608766, "gasCost": 3, "depth": 1, "stack": [ @@ -18674,7 +18506,7 @@ { "pc": 988, "op": "PUSH3", - "gas": 1601907, + "gas": 1608763, "gasCost": 3, "depth": 1, "stack": [ @@ -18691,7 +18523,7 @@ { "pc": 992, "op": "JUMP", - "gas": 1601904, + "gas": 1608760, "gasCost": 8, "depth": 1, "stack": [ @@ -18703,13 +18535,13 @@ "0x3e1", "0x1", "0x3e8", - "0xbb7" + "0xb95" ] }, { - "pc": 2999, + "pc": 2965, "op": "JUMPDEST", - "gas": 1601896, + "gas": 1608752, "gasCost": 1, "depth": 1, "stack": [ @@ -18724,9 +18556,9 @@ ] }, { - "pc": 3000, + "pc": 2966, "op": "PUSH1", - "gas": 1601895, + "gas": 1608751, "gasCost": 3, "depth": 1, "stack": [ @@ -18741,9 +18573,9 @@ ] }, { - "pc": 3002, + "pc": 2968, "op": "PUSH3", - "gas": 1601892, + "gas": 1608748, "gasCost": 3, "depth": 1, "stack": [ @@ -18759,9 +18591,9 @@ ] }, { - "pc": 3006, + "pc": 2972, "op": "DUP3", - "gas": 1601889, + "gas": 1608745, "gasCost": 3, "depth": 1, "stack": [ @@ -18774,13 +18606,13 @@ "0x1", "0x3e8", "0x0", - "0xbc4" + "0xba2" ] }, { - "pc": 3007, + "pc": 2973, "op": "PUSH3", - "gas": 1601886, + "gas": 1608742, "gasCost": 3, "depth": 1, "stack": [ @@ -18793,14 +18625,14 @@ "0x1", "0x3e8", "0x0", - "0xbc4", + "0xba2", "0x3e8" ] }, { - "pc": 3011, + "pc": 2977, "op": "JUMP", - "gas": 1601883, + "gas": 1608739, "gasCost": 8, "depth": 1, "stack": [ @@ -18813,15 +18645,15 @@ "0x1", "0x3e8", "0x0", - "0xbc4", + "0xba2", "0x3e8", - "0x97c" + "0x95a" ] }, { - "pc": 2428, + "pc": 2394, "op": "JUMPDEST", - "gas": 1601875, + "gas": 1608731, "gasCost": 1, "depth": 1, "stack": [ @@ -18834,14 +18666,14 @@ "0x1", "0x3e8", "0x0", - "0xbc4", + "0xba2", "0x3e8" ] }, { - "pc": 2429, + "pc": 2395, "op": "PUSH1", - "gas": 1601874, + "gas": 1608730, "gasCost": 3, "depth": 1, "stack": [ @@ -18854,14 +18686,14 @@ "0x1", "0x3e8", "0x0", - "0xbc4", + "0xba2", "0x3e8" ] }, { - "pc": 2431, + "pc": 2397, "op": "DUP2", - "gas": 1601871, + "gas": 1608727, "gasCost": 3, "depth": 1, "stack": [ @@ -18874,15 +18706,15 @@ "0x1", "0x3e8", "0x0", - "0xbc4", + "0xba2", "0x3e8", "0x0" ] }, { - "pc": 2432, + "pc": 2398, "op": "SWAP1", - "gas": 1601868, + "gas": 1608724, "gasCost": 3, "depth": 1, "stack": [ @@ -18895,16 +18727,16 @@ "0x1", "0x3e8", "0x0", - "0xbc4", + "0xba2", "0x3e8", "0x0", "0x3e8" ] }, { - "pc": 2433, + "pc": 2399, "op": "POP", - "gas": 1601865, + "gas": 1608721, "gasCost": 2, "depth": 1, "stack": [ @@ -18917,16 +18749,16 @@ "0x1", "0x3e8", "0x0", - "0xbc4", + "0xba2", "0x3e8", "0x3e8", "0x0" ] }, { - "pc": 2434, + "pc": 2400, "op": "SWAP2", - "gas": 1601863, + "gas": 1608719, "gasCost": 3, "depth": 1, "stack": [ @@ -18939,15 +18771,15 @@ "0x1", "0x3e8", "0x0", - "0xbc4", + "0xba2", "0x3e8", "0x3e8" ] }, { - "pc": 2435, + "pc": 2401, "op": "SWAP1", - "gas": 1601860, + "gas": 1608716, "gasCost": 3, "depth": 1, "stack": [ @@ -18962,13 +18794,13 @@ "0x0", "0x3e8", "0x3e8", - "0xbc4" + "0xba2" ] }, { - "pc": 2436, + "pc": 2402, "op": "POP", - "gas": 1601857, + "gas": 1608713, "gasCost": 2, "depth": 1, "stack": [ @@ -18982,14 +18814,14 @@ "0x3e8", "0x0", "0x3e8", - "0xbc4", + "0xba2", "0x3e8" ] }, { - "pc": 2437, + "pc": 2403, "op": "JUMP", - "gas": 1601855, + "gas": 1608711, "gasCost": 8, "depth": 1, "stack": [ @@ -19003,13 +18835,13 @@ "0x3e8", "0x0", "0x3e8", - "0xbc4" + "0xba2" ] }, { - "pc": 3012, + "pc": 2978, "op": "JUMPDEST", - "gas": 1601847, + "gas": 1608703, "gasCost": 1, "depth": 1, "stack": [ @@ -19026,9 +18858,9 @@ ] }, { - "pc": 3013, + "pc": 2979, "op": "SWAP2", - "gas": 1601846, + "gas": 1608702, "gasCost": 3, "depth": 1, "stack": [ @@ -19045,9 +18877,9 @@ ] }, { - "pc": 3014, + "pc": 2980, "op": "POP", - "gas": 1601843, + "gas": 1608699, "gasCost": 2, "depth": 1, "stack": [ @@ -19064,9 +18896,9 @@ ] }, { - "pc": 3015, + "pc": 2981, "op": "PUSH3", - "gas": 1601841, + "gas": 1608697, "gasCost": 3, "depth": 1, "stack": [ @@ -19082,9 +18914,9 @@ ] }, { - "pc": 3019, + "pc": 2985, "op": "DUP4", - "gas": 1601838, + "gas": 1608694, "gasCost": 3, "depth": 1, "stack": [ @@ -19097,13 +18929,13 @@ "0x1", "0x3e8", "0x0", - "0xbd1" + "0xbaf" ] }, { - "pc": 3020, + "pc": 2986, "op": "PUSH3", - "gas": 1601835, + "gas": 1608691, "gasCost": 3, "depth": 1, "stack": [ @@ -19116,14 +18948,14 @@ "0x1", "0x3e8", "0x0", - "0xbd1", + "0xbaf", "0x1" ] }, { - "pc": 3024, + "pc": 2990, "op": "JUMP", - "gas": 1601832, + "gas": 1608688, "gasCost": 8, "depth": 1, "stack": [ @@ -19136,15 +18968,15 @@ "0x1", "0x3e8", "0x0", - "0xbd1", + "0xbaf", "0x1", - "0x97c" + "0x95a" ] }, { - "pc": 2428, + "pc": 2394, "op": "JUMPDEST", - "gas": 1601824, + "gas": 1608680, "gasCost": 1, "depth": 1, "stack": [ @@ -19157,14 +18989,14 @@ "0x1", "0x3e8", "0x0", - "0xbd1", + "0xbaf", "0x1" ] }, { - "pc": 2429, + "pc": 2395, "op": "PUSH1", - "gas": 1601823, + "gas": 1608679, "gasCost": 3, "depth": 1, "stack": [ @@ -19177,14 +19009,14 @@ "0x1", "0x3e8", "0x0", - "0xbd1", + "0xbaf", "0x1" ] }, { - "pc": 2431, + "pc": 2397, "op": "DUP2", - "gas": 1601820, + "gas": 1608676, "gasCost": 3, "depth": 1, "stack": [ @@ -19197,15 +19029,15 @@ "0x1", "0x3e8", "0x0", - "0xbd1", + "0xbaf", "0x1", "0x0" ] }, { - "pc": 2432, + "pc": 2398, "op": "SWAP1", - "gas": 1601817, + "gas": 1608673, "gasCost": 3, "depth": 1, "stack": [ @@ -19218,16 +19050,16 @@ "0x1", "0x3e8", "0x0", - "0xbd1", + "0xbaf", "0x1", "0x0", "0x1" ] }, { - "pc": 2433, + "pc": 2399, "op": "POP", - "gas": 1601814, + "gas": 1608670, "gasCost": 2, "depth": 1, "stack": [ @@ -19240,16 +19072,16 @@ "0x1", "0x3e8", "0x0", - "0xbd1", + "0xbaf", "0x1", "0x1", "0x0" ] }, { - "pc": 2434, + "pc": 2400, "op": "SWAP2", - "gas": 1601812, + "gas": 1608668, "gasCost": 3, "depth": 1, "stack": [ @@ -19262,15 +19094,15 @@ "0x1", "0x3e8", "0x0", - "0xbd1", + "0xbaf", "0x1", "0x1" ] }, { - "pc": 2435, + "pc": 2401, "op": "SWAP1", - "gas": 1601809, + "gas": 1608665, "gasCost": 3, "depth": 1, "stack": [ @@ -19285,13 +19117,13 @@ "0x0", "0x1", "0x1", - "0xbd1" + "0xbaf" ] }, { - "pc": 2436, + "pc": 2402, "op": "POP", - "gas": 1601806, + "gas": 1608662, "gasCost": 2, "depth": 1, "stack": [ @@ -19305,14 +19137,14 @@ "0x3e8", "0x0", "0x1", - "0xbd1", + "0xbaf", "0x1" ] }, { - "pc": 2437, + "pc": 2403, "op": "JUMP", - "gas": 1601804, + "gas": 1608660, "gasCost": 8, "depth": 1, "stack": [ @@ -19326,13 +19158,13 @@ "0x3e8", "0x0", "0x1", - "0xbd1" + "0xbaf" ] }, { - "pc": 3025, + "pc": 2991, "op": "JUMPDEST", - "gas": 1601796, + "gas": 1608652, "gasCost": 1, "depth": 1, "stack": [ @@ -19349,9 +19181,9 @@ ] }, { - "pc": 3026, + "pc": 2992, "op": "SWAP3", - "gas": 1601795, + "gas": 1608651, "gasCost": 3, "depth": 1, "stack": [ @@ -19368,9 +19200,9 @@ ] }, { - "pc": 3027, + "pc": 2993, "op": "POP", - "gas": 1601792, + "gas": 1608648, "gasCost": 2, "depth": 1, "stack": [ @@ -19387,9 +19219,9 @@ ] }, { - "pc": 3028, + "pc": 2994, "op": "DUP3", - "gas": 1601790, + "gas": 1608646, "gasCost": 3, "depth": 1, "stack": [ @@ -19405,9 +19237,9 @@ ] }, { - "pc": 3029, - "op": "PUSH32", - "gas": 1601787, + "pc": 2995, + "op": "DUP3", + "gas": 1608643, "gasCost": 3, "depth": 1, "stack": [ @@ -19424,9 +19256,9 @@ ] }, { - "pc": 3062, - "op": "SUB", - "gas": 1601784, + "pc": 2996, + "op": "ADD", + "gas": 1608640, "gasCost": 3, "depth": 1, "stack": [ @@ -19440,32 +19272,13 @@ "0x3e8", "0x0", "0x1", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" - ] - }, - { - "pc": 3063, - "op": "DUP3", - "gas": 1601781, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x3aa18088", - "0x149", - "0x3e8", - "0x0", - "0x3e7", - "0x3e1", - "0x1", - "0x3e8", - "0x0", - "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe" + "0x3e8" ] }, { - "pc": 3064, - "op": "GT", - "gas": 1601778, + "pc": 2997, + "op": "SWAP1", + "gas": 1608637, "gasCost": 3, "depth": 1, "stack": [ @@ -19478,15 +19291,14 @@ "0x1", "0x3e8", "0x0", - "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe", - "0x3e8" + "0x3e9" ] }, { - "pc": 3065, - "op": "ISZERO", - "gas": 1601775, - "gasCost": 3, + "pc": 2998, + "op": "POP", + "gas": 1608634, + "gasCost": 2, "depth": 1, "stack": [ "0x3aa18088", @@ -19497,14 +19309,14 @@ "0x3e1", "0x1", "0x3e8", - "0x0", + "0x3e9", "0x0" ] }, { - "pc": 3066, - "op": "PUSH3", - "gas": 1601772, + "pc": 2999, + "op": "DUP1", + "gas": 1608632, "gasCost": 3, "depth": 1, "stack": [ @@ -19516,15 +19328,14 @@ "0x3e1", "0x1", "0x3e8", - "0x0", - "0x1" + "0x3e9" ] }, { - "pc": 3070, - "op": "JUMPI", - "gas": 1601769, - "gasCost": 10, + "pc": 3000, + "op": "DUP3", + "gas": 1608629, + "gasCost": 3, "depth": 1, "stack": [ "0x3aa18088", @@ -19535,16 +19346,15 @@ "0x3e1", "0x1", "0x3e8", - "0x0", - "0x1", - "0xc09" + "0x3e9", + "0x3e9" ] }, { - "pc": 3081, - "op": "JUMPDEST", - "gas": 1601759, - "gasCost": 1, + "pc": 3001, + "op": "GT", + "gas": 1608626, + "gasCost": 3, "depth": 1, "stack": [ "0x3aa18088", @@ -19555,13 +19365,15 @@ "0x3e1", "0x1", "0x3e8", - "0x0" + "0x3e9", + "0x3e9", + "0x3e8" ] }, { - "pc": 3082, - "op": "DUP3", - "gas": 1601758, + "pc": 3002, + "op": "ISZERO", + "gas": 1608623, "gasCost": 3, "depth": 1, "stack": [ @@ -19573,13 +19385,14 @@ "0x3e1", "0x1", "0x3e8", + "0x3e9", "0x0" ] }, { - "pc": 3083, - "op": "DUP3", - "gas": 1601755, + "pc": 3003, + "op": "PUSH3", + "gas": 1608620, "gasCost": 3, "depth": 1, "stack": [ @@ -19591,15 +19404,15 @@ "0x3e1", "0x1", "0x3e8", - "0x0", + "0x3e9", "0x1" ] }, { - "pc": 3084, - "op": "ADD", - "gas": 1601752, - "gasCost": 3, + "pc": 3007, + "op": "JUMPI", + "gas": 1608617, + "gasCost": 10, "depth": 1, "stack": [ "0x3aa18088", @@ -19610,16 +19423,16 @@ "0x3e1", "0x1", "0x3e8", - "0x0", + "0x3e9", "0x1", - "0x3e8" + "0xbca" ] }, { - "pc": 3085, - "op": "SWAP1", - "gas": 1601749, - "gasCost": 3, + "pc": 3018, + "op": "JUMPDEST", + "gas": 1608607, + "gasCost": 1, "depth": 1, "stack": [ "0x3aa18088", @@ -19630,33 +19443,13 @@ "0x3e1", "0x1", "0x3e8", - "0x0", "0x3e9" ] }, { - "pc": 3086, - "op": "POP", - "gas": 1601746, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x3aa18088", - "0x149", - "0x3e8", - "0x0", - "0x3e7", - "0x3e1", - "0x1", - "0x3e8", - "0x3e9", - "0x0" - ] - }, - { - "pc": 3087, + "pc": 3019, "op": "SWAP3", - "gas": 1601744, + "gas": 1608606, "gasCost": 3, "depth": 1, "stack": [ @@ -19672,9 +19465,9 @@ ] }, { - "pc": 3088, + "pc": 3020, "op": "SWAP2", - "gas": 1601741, + "gas": 1608603, "gasCost": 3, "depth": 1, "stack": [ @@ -19690,9 +19483,9 @@ ] }, { - "pc": 3089, + "pc": 3021, "op": "POP", - "gas": 1601738, + "gas": 1608600, "gasCost": 2, "depth": 1, "stack": [ @@ -19708,9 +19501,9 @@ ] }, { - "pc": 3090, + "pc": 3022, "op": "POP", - "gas": 1601736, + "gas": 1608598, "gasCost": 2, "depth": 1, "stack": [ @@ -19725,9 +19518,9 @@ ] }, { - "pc": 3091, + "pc": 3023, "op": "JUMP", - "gas": 1601734, + "gas": 1608596, "gasCost": 8, "depth": 1, "stack": [ @@ -19743,7 +19536,7 @@ { "pc": 993, "op": "JUMPDEST", - "gas": 1601726, + "gas": 1608588, "gasCost": 1, "depth": 1, "stack": [ @@ -19758,7 +19551,7 @@ { "pc": 994, "op": "PUSH3", - "gas": 1601725, + "gas": 1608587, "gasCost": 3, "depth": 1, "stack": [ @@ -19773,7 +19566,7 @@ { "pc": 998, "op": "JUMP", - "gas": 1601722, + "gas": 1608584, "gasCost": 8, "depth": 1, "stack": [ @@ -19789,7 +19582,7 @@ { "pc": 640, "op": "JUMPDEST", - "gas": 1601714, + "gas": 1608576, "gasCost": 1, "depth": 1, "stack": [ @@ -19804,7 +19597,7 @@ { "pc": 641, "op": "PUSH1", - "gas": 1601713, + "gas": 1608575, "gasCost": 3, "depth": 1, "stack": [ @@ -19819,7 +19612,7 @@ { "pc": 643, "op": "CALLER", - "gas": 1601710, + "gas": 1608572, "gasCost": 2, "depth": 1, "stack": [ @@ -19835,7 +19628,7 @@ { "pc": 644, "op": "PUSH20", - "gas": 1601708, + "gas": 1608570, "gasCost": 3, "depth": 1, "stack": [ @@ -19852,7 +19645,7 @@ { "pc": 665, "op": "AND", - "gas": 1601705, + "gas": 1608567, "gasCost": 3, "depth": 1, "stack": [ @@ -19870,7 +19663,7 @@ { "pc": 666, "op": "PUSH32", - "gas": 1601702, + "gas": 1608564, "gasCost": 3, "depth": 1, "stack": [ @@ -19887,7 +19680,7 @@ { "pc": 699, "op": "DUP4", - "gas": 1601699, + "gas": 1608561, "gasCost": 3, "depth": 1, "stack": [ @@ -19905,7 +19698,7 @@ { "pc": 700, "op": "PUSH1", - "gas": 1601696, + "gas": 1608558, "gasCost": 3, "depth": 1, "stack": [ @@ -19924,7 +19717,7 @@ { "pc": 702, "op": "MLOAD", - "gas": 1601693, + "gas": 1608555, "gasCost": 3, "depth": 1, "stack": [ @@ -19944,7 +19737,7 @@ { "pc": 703, "op": "PUSH3", - "gas": 1601690, + "gas": 1608552, "gasCost": 3, "depth": 1, "stack": [ @@ -19964,7 +19757,7 @@ { "pc": 707, "op": "SWAP2", - "gas": 1601687, + "gas": 1608549, "gasCost": 3, "depth": 1, "stack": [ @@ -19985,7 +19778,7 @@ { "pc": 708, "op": "SWAP1", - "gas": 1601684, + "gas": 1608546, "gasCost": 3, "depth": 1, "stack": [ @@ -20006,7 +19799,7 @@ { "pc": 709, "op": "PUSH3", - "gas": 1601681, + "gas": 1608543, "gasCost": 3, "depth": 1, "stack": [ @@ -20027,7 +19820,7 @@ { "pc": 713, "op": "JUMP", - "gas": 1601678, + "gas": 1608540, "gasCost": 8, "depth": 1, "stack": [ @@ -20043,13 +19836,13 @@ "0x2ca", "0x3e9", "0x80", - "0xb56" + "0xb34" ] }, { - "pc": 2902, + "pc": 2868, "op": "JUMPDEST", - "gas": 1601670, + "gas": 1608532, "gasCost": 1, "depth": 1, "stack": [ @@ -20068,9 +19861,9 @@ ] }, { - "pc": 2903, + "pc": 2869, "op": "PUSH1", - "gas": 1601669, + "gas": 1608531, "gasCost": 3, "depth": 1, "stack": [ @@ -20089,9 +19882,9 @@ ] }, { - "pc": 2905, + "pc": 2871, "op": "PUSH1", - "gas": 1601666, + "gas": 1608528, "gasCost": 3, "depth": 1, "stack": [ @@ -20111,9 +19904,9 @@ ] }, { - "pc": 2907, + "pc": 2873, "op": "DUP3", - "gas": 1601663, + "gas": 1608525, "gasCost": 3, "depth": 1, "stack": [ @@ -20134,9 +19927,9 @@ ] }, { - "pc": 2908, + "pc": 2874, "op": "ADD", - "gas": 1601660, + "gas": 1608522, "gasCost": 3, "depth": 1, "stack": [ @@ -20158,9 +19951,9 @@ ] }, { - "pc": 2909, + "pc": 2875, "op": "SWAP1", - "gas": 1601657, + "gas": 1608519, "gasCost": 3, "depth": 1, "stack": [ @@ -20181,9 +19974,9 @@ ] }, { - "pc": 2910, + "pc": 2876, "op": "POP", - "gas": 1601654, + "gas": 1608516, "gasCost": 2, "depth": 1, "stack": [ @@ -20204,9 +19997,9 @@ ] }, { - "pc": 2911, + "pc": 2877, "op": "PUSH3", - "gas": 1601652, + "gas": 1608514, "gasCost": 3, "depth": 1, "stack": [ @@ -20226,9 +20019,9 @@ ] }, { - "pc": 2915, + "pc": 2881, "op": "PUSH1", - "gas": 1601649, + "gas": 1608511, "gasCost": 3, "depth": 1, "stack": [ @@ -20245,13 +20038,13 @@ "0x3e9", "0x80", "0xc0", - "0xb6d" + "0xb4b" ] }, { - "pc": 2917, + "pc": 2883, "op": "DUP4", - "gas": 1601646, + "gas": 1608508, "gasCost": 3, "depth": 1, "stack": [ @@ -20268,14 +20061,14 @@ "0x3e9", "0x80", "0xc0", - "0xb6d", + "0xb4b", "0x0" ] }, { - "pc": 2918, + "pc": 2884, "op": "ADD", - "gas": 1601643, + "gas": 1608505, "gasCost": 3, "depth": 1, "stack": [ @@ -20292,15 +20085,15 @@ "0x3e9", "0x80", "0xc0", - "0xb6d", + "0xb4b", "0x0", "0x80" ] }, { - "pc": 2919, + "pc": 2885, "op": "DUP5", - "gas": 1601640, + "gas": 1608502, "gasCost": 3, "depth": 1, "stack": [ @@ -20317,14 +20110,14 @@ "0x3e9", "0x80", "0xc0", - "0xb6d", + "0xb4b", "0x80" ] }, { - "pc": 2920, + "pc": 2886, "op": "PUSH3", - "gas": 1601637, + "gas": 1608499, "gasCost": 3, "depth": 1, "stack": [ @@ -20341,15 +20134,15 @@ "0x3e9", "0x80", "0xc0", - "0xb6d", + "0xb4b", "0x80", "0x3e9" ] }, { - "pc": 2924, + "pc": 2890, "op": "JUMP", - "gas": 1601634, + "gas": 1608496, "gasCost": 8, "depth": 1, "stack": [ @@ -20366,16 +20159,16 @@ "0x3e9", "0x80", "0xc0", - "0xb6d", + "0xb4b", "0x80", "0x3e9", - "0x986" + "0x964" ] }, { - "pc": 2438, + "pc": 2404, "op": "JUMPDEST", - "gas": 1601626, + "gas": 1608488, "gasCost": 1, "depth": 1, "stack": [ @@ -20392,15 +20185,15 @@ "0x3e9", "0x80", "0xc0", - "0xb6d", + "0xb4b", "0x80", "0x3e9" ] }, { - "pc": 2439, + "pc": 2405, "op": "PUSH3", - "gas": 1601625, + "gas": 1608487, "gasCost": 3, "depth": 1, "stack": [ @@ -20417,15 +20210,15 @@ "0x3e9", "0x80", "0xc0", - "0xb6d", + "0xb4b", "0x80", "0x3e9" ] }, { - "pc": 2443, + "pc": 2409, "op": "DUP2", - "gas": 1601622, + "gas": 1608484, "gasCost": 3, "depth": 1, "stack": [ @@ -20442,16 +20235,16 @@ "0x3e9", "0x80", "0xc0", - "0xb6d", + "0xb4b", "0x80", "0x3e9", - "0x991" + "0x96f" ] }, { - "pc": 2444, + "pc": 2410, "op": "PUSH3", - "gas": 1601619, + "gas": 1608481, "gasCost": 3, "depth": 1, "stack": [ @@ -20468,17 +20261,17 @@ "0x3e9", "0x80", "0xc0", - "0xb6d", + "0xb4b", "0x80", "0x3e9", - "0x991", + "0x96f", "0x3e9" ] }, { - "pc": 2448, + "pc": 2414, "op": "JUMP", - "gas": 1601616, + "gas": 1608478, "gasCost": 8, "depth": 1, "stack": [ @@ -20495,18 +20288,18 @@ "0x3e9", "0x80", "0xc0", - "0xb6d", + "0xb4b", "0x80", "0x3e9", - "0x991", + "0x96f", "0x3e9", - "0x97c" + "0x95a" ] }, { - "pc": 2428, + "pc": 2394, "op": "JUMPDEST", - "gas": 1601608, + "gas": 1608470, "gasCost": 1, "depth": 1, "stack": [ @@ -20523,17 +20316,17 @@ "0x3e9", "0x80", "0xc0", - "0xb6d", + "0xb4b", "0x80", "0x3e9", - "0x991", + "0x96f", "0x3e9" ] }, { - "pc": 2429, + "pc": 2395, "op": "PUSH1", - "gas": 1601607, + "gas": 1608469, "gasCost": 3, "depth": 1, "stack": [ @@ -20550,17 +20343,17 @@ "0x3e9", "0x80", "0xc0", - "0xb6d", + "0xb4b", "0x80", "0x3e9", - "0x991", + "0x96f", "0x3e9" ] }, { - "pc": 2431, + "pc": 2397, "op": "DUP2", - "gas": 1601604, + "gas": 1608466, "gasCost": 3, "depth": 1, "stack": [ @@ -20577,18 +20370,18 @@ "0x3e9", "0x80", "0xc0", - "0xb6d", + "0xb4b", "0x80", "0x3e9", - "0x991", + "0x96f", "0x3e9", "0x0" ] }, { - "pc": 2432, + "pc": 2398, "op": "SWAP1", - "gas": 1601601, + "gas": 1608463, "gasCost": 3, "depth": 1, "stack": [ @@ -20605,19 +20398,19 @@ "0x3e9", "0x80", "0xc0", - "0xb6d", + "0xb4b", "0x80", "0x3e9", - "0x991", + "0x96f", "0x3e9", "0x0", "0x3e9" ] }, { - "pc": 2433, + "pc": 2399, "op": "POP", - "gas": 1601598, + "gas": 1608460, "gasCost": 2, "depth": 1, "stack": [ @@ -20634,19 +20427,19 @@ "0x3e9", "0x80", "0xc0", - "0xb6d", + "0xb4b", "0x80", "0x3e9", - "0x991", + "0x96f", "0x3e9", "0x3e9", "0x0" ] }, { - "pc": 2434, + "pc": 2400, "op": "SWAP2", - "gas": 1601596, + "gas": 1608458, "gasCost": 3, "depth": 1, "stack": [ @@ -20663,18 +20456,18 @@ "0x3e9", "0x80", "0xc0", - "0xb6d", + "0xb4b", "0x80", "0x3e9", - "0x991", + "0x96f", "0x3e9", "0x3e9" ] }, { - "pc": 2435, + "pc": 2401, "op": "SWAP1", - "gas": 1601593, + "gas": 1608455, "gasCost": 3, "depth": 1, "stack": [ @@ -20691,18 +20484,18 @@ "0x3e9", "0x80", "0xc0", - "0xb6d", + "0xb4b", "0x80", "0x3e9", "0x3e9", "0x3e9", - "0x991" + "0x96f" ] }, { - "pc": 2436, + "pc": 2402, "op": "POP", - "gas": 1601590, + "gas": 1608452, "gasCost": 2, "depth": 1, "stack": [ @@ -20719,18 +20512,18 @@ "0x3e9", "0x80", "0xc0", - "0xb6d", + "0xb4b", "0x80", "0x3e9", "0x3e9", - "0x991", + "0x96f", "0x3e9" ] }, { - "pc": 2437, + "pc": 2403, "op": "JUMP", - "gas": 1601588, + "gas": 1608450, "gasCost": 8, "depth": 1, "stack": [ @@ -20747,17 +20540,17 @@ "0x3e9", "0x80", "0xc0", - "0xb6d", + "0xb4b", "0x80", "0x3e9", "0x3e9", - "0x991" + "0x96f" ] }, { - "pc": 2449, + "pc": 2415, "op": "JUMPDEST", - "gas": 1601580, + "gas": 1608442, "gasCost": 1, "depth": 1, "stack": [ @@ -20774,16 +20567,16 @@ "0x3e9", "0x80", "0xc0", - "0xb6d", + "0xb4b", "0x80", "0x3e9", "0x3e9" ] }, { - "pc": 2450, + "pc": 2416, "op": "DUP3", - "gas": 1601579, + "gas": 1608441, "gasCost": 3, "depth": 1, "stack": [ @@ -20800,16 +20593,16 @@ "0x3e9", "0x80", "0xc0", - "0xb6d", + "0xb4b", "0x80", "0x3e9", "0x3e9" ] }, { - "pc": 2451, + "pc": 2417, "op": "MSTORE", - "gas": 1601576, + "gas": 1608438, "gasCost": 3, "depth": 1, "stack": [ @@ -20826,7 +20619,7 @@ "0x3e9", "0x80", "0xc0", - "0xb6d", + "0xb4b", "0x80", "0x3e9", "0x3e9", @@ -20834,9 +20627,9 @@ ] }, { - "pc": 2452, + "pc": 2418, "op": "POP", - "gas": 1601573, + "gas": 1608435, "gasCost": 2, "depth": 1, "stack": [ @@ -20853,15 +20646,15 @@ "0x3e9", "0x80", "0xc0", - "0xb6d", + "0xb4b", "0x80", "0x3e9" ] }, { - "pc": 2453, + "pc": 2419, "op": "POP", - "gas": 1601571, + "gas": 1608433, "gasCost": 2, "depth": 1, "stack": [ @@ -20878,14 +20671,14 @@ "0x3e9", "0x80", "0xc0", - "0xb6d", + "0xb4b", "0x80" ] }, { - "pc": 2454, + "pc": 2420, "op": "JUMP", - "gas": 1601569, + "gas": 1608431, "gasCost": 8, "depth": 1, "stack": [ @@ -20902,13 +20695,13 @@ "0x3e9", "0x80", "0xc0", - "0xb6d" + "0xb4b" ] }, { - "pc": 2925, + "pc": 2891, "op": "JUMPDEST", - "gas": 1601561, + "gas": 1608423, "gasCost": 1, "depth": 1, "stack": [ @@ -20928,9 +20721,9 @@ ] }, { - "pc": 2926, + "pc": 2892, "op": "DUP2", - "gas": 1601560, + "gas": 1608422, "gasCost": 3, "depth": 1, "stack": [ @@ -20950,9 +20743,9 @@ ] }, { - "pc": 2927, + "pc": 2893, "op": "DUP2", - "gas": 1601557, + "gas": 1608419, "gasCost": 3, "depth": 1, "stack": [ @@ -20973,9 +20766,9 @@ ] }, { - "pc": 2928, + "pc": 2894, "op": "SUB", - "gas": 1601554, + "gas": 1608416, "gasCost": 3, "depth": 1, "stack": [ @@ -20997,9 +20790,9 @@ ] }, { - "pc": 2929, + "pc": 2895, "op": "PUSH1", - "gas": 1601551, + "gas": 1608413, "gasCost": 3, "depth": 1, "stack": [ @@ -21020,9 +20813,9 @@ ] }, { - "pc": 2931, + "pc": 2897, "op": "DUP4", - "gas": 1601548, + "gas": 1608410, "gasCost": 3, "depth": 1, "stack": [ @@ -21044,9 +20837,9 @@ ] }, { - "pc": 2932, + "pc": 2898, "op": "ADD", - "gas": 1601545, + "gas": 1608407, "gasCost": 3, "depth": 1, "stack": [ @@ -21069,9 +20862,9 @@ ] }, { - "pc": 2933, + "pc": 2899, "op": "MSTORE", - "gas": 1601542, + "gas": 1608404, "gasCost": 3, "depth": 1, "stack": [ @@ -21093,9 +20886,9 @@ ] }, { - "pc": 2934, + "pc": 2900, "op": "PUSH3", - "gas": 1601539, + "gas": 1608401, "gasCost": 3, "depth": 1, "stack": [ @@ -21115,9 +20908,9 @@ ] }, { - "pc": 2938, + "pc": 2904, "op": "DUP2", - "gas": 1601536, + "gas": 1608398, "gasCost": 3, "depth": 1, "stack": [ @@ -21134,13 +20927,13 @@ "0x3e9", "0x80", "0xc0", - "0xb80" + "0xb5e" ] }, { - "pc": 2939, + "pc": 2905, "op": "PUSH3", - "gas": 1601533, + "gas": 1608395, "gasCost": 3, "depth": 1, "stack": [ @@ -21157,14 +20950,14 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xc0" ] }, { - "pc": 2943, + "pc": 2909, "op": "JUMP", - "gas": 1601530, + "gas": 1608392, "gasCost": 8, "depth": 1, "stack": [ @@ -21181,15 +20974,15 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xc0", - "0xb2f" + "0xb0d" ] }, { - "pc": 2863, + "pc": 2829, "op": "JUMPDEST", - "gas": 1601522, + "gas": 1608384, "gasCost": 1, "depth": 1, "stack": [ @@ -21206,14 +20999,14 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xc0" ] }, { - "pc": 2864, + "pc": 2830, "op": "PUSH1", - "gas": 1601521, + "gas": 1608383, "gasCost": 3, "depth": 1, "stack": [ @@ -21230,14 +21023,14 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xc0" ] }, { - "pc": 2866, + "pc": 2832, "op": "PUSH3", - "gas": 1601518, + "gas": 1608380, "gasCost": 3, "depth": 1, "stack": [ @@ -21254,15 +21047,15 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xc0", "0x0" ] }, { - "pc": 2870, + "pc": 2836, "op": "PUSH1", - "gas": 1601515, + "gas": 1608377, "gasCost": 3, "depth": 1, "stack": [ @@ -21279,16 +21072,16 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xc0", "0x0", - "0xb3e" + "0xb1c" ] }, { - "pc": 2872, + "pc": 2838, "op": "DUP4", - "gas": 1601512, + "gas": 1608374, "gasCost": 3, "depth": 1, "stack": [ @@ -21305,17 +21098,17 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xc0", "0x0", - "0xb3e", + "0xb1c", "0xe" ] }, { - "pc": 2873, + "pc": 2839, "op": "PUSH3", - "gas": 1601509, + "gas": 1608371, "gasCost": 3, "depth": 1, "stack": [ @@ -21332,18 +21125,18 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xc0", "0x0", - "0xb3e", + "0xb1c", "0xe", "0xc0" ] }, { - "pc": 2877, + "pc": 2843, "op": "JUMP", - "gas": 1601506, + "gas": 1608368, "gasCost": 8, "depth": 1, "stack": [ @@ -21360,19 +21153,19 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xc0", "0x0", - "0xb3e", + "0xb1c", "0xe", "0xc0", - "0xaf5" + "0xad3" ] }, { - "pc": 2805, + "pc": 2771, "op": "JUMPDEST", - "gas": 1601498, + "gas": 1608360, "gasCost": 1, "depth": 1, "stack": [ @@ -21389,18 +21182,18 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xc0", "0x0", - "0xb3e", + "0xb1c", "0xe", "0xc0" ] }, { - "pc": 2806, + "pc": 2772, "op": "PUSH1", - "gas": 1601497, + "gas": 1608359, "gasCost": 3, "depth": 1, "stack": [ @@ -21417,18 +21210,18 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xc0", "0x0", - "0xb3e", + "0xb1c", "0xe", "0xc0" ] }, { - "pc": 2808, + "pc": 2774, "op": "DUP3", - "gas": 1601494, + "gas": 1608356, "gasCost": 3, "depth": 1, "stack": [ @@ -21445,19 +21238,19 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xc0", "0x0", - "0xb3e", + "0xb1c", "0xe", "0xc0", "0x0" ] }, { - "pc": 2809, + "pc": 2775, "op": "DUP3", - "gas": 1601491, + "gas": 1608353, "gasCost": 3, "depth": 1, "stack": [ @@ -21474,10 +21267,10 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xc0", "0x0", - "0xb3e", + "0xb1c", "0xe", "0xc0", "0x0", @@ -21485,9 +21278,9 @@ ] }, { - "pc": 2810, + "pc": 2776, "op": "MSTORE", - "gas": 1601488, + "gas": 1608350, "gasCost": 3, "depth": 1, "stack": [ @@ -21504,10 +21297,10 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xc0", "0x0", - "0xb3e", + "0xb1c", "0xe", "0xc0", "0x0", @@ -21516,9 +21309,9 @@ ] }, { - "pc": 2811, + "pc": 2777, "op": "PUSH1", - "gas": 1601485, + "gas": 1608347, "gasCost": 3, "depth": 1, "stack": [ @@ -21535,19 +21328,19 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xc0", "0x0", - "0xb3e", + "0xb1c", "0xe", "0xc0", "0x0" ] }, { - "pc": 2813, + "pc": 2779, "op": "DUP3", - "gas": 1601482, + "gas": 1608344, "gasCost": 3, "depth": 1, "stack": [ @@ -21564,10 +21357,10 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xc0", "0x0", - "0xb3e", + "0xb1c", "0xe", "0xc0", "0x0", @@ -21575,9 +21368,9 @@ ] }, { - "pc": 2814, + "pc": 2780, "op": "ADD", - "gas": 1601479, + "gas": 1608341, "gasCost": 3, "depth": 1, "stack": [ @@ -21594,10 +21387,10 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xc0", "0x0", - "0xb3e", + "0xb1c", "0xe", "0xc0", "0x0", @@ -21606,9 +21399,9 @@ ] }, { - "pc": 2815, + "pc": 2781, "op": "SWAP1", - "gas": 1601476, + "gas": 1608338, "gasCost": 3, "depth": 1, "stack": [ @@ -21625,10 +21418,10 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xc0", "0x0", - "0xb3e", + "0xb1c", "0xe", "0xc0", "0x0", @@ -21636,9 +21429,9 @@ ] }, { - "pc": 2816, + "pc": 2782, "op": "POP", - "gas": 1601473, + "gas": 1608335, "gasCost": 2, "depth": 1, "stack": [ @@ -21655,10 +21448,10 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xc0", "0x0", - "0xb3e", + "0xb1c", "0xe", "0xc0", "0xe0", @@ -21666,9 +21459,9 @@ ] }, { - "pc": 2817, + "pc": 2783, "op": "SWAP3", - "gas": 1601471, + "gas": 1608333, "gasCost": 3, "depth": 1, "stack": [ @@ -21685,19 +21478,19 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xc0", "0x0", - "0xb3e", + "0xb1c", "0xe", "0xc0", "0xe0" ] }, { - "pc": 2818, + "pc": 2784, "op": "SWAP2", - "gas": 1601468, + "gas": 1608330, "gasCost": 3, "depth": 1, "stack": [ @@ -21714,19 +21507,19 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xc0", "0x0", "0xe0", "0xe", "0xc0", - "0xb3e" + "0xb1c" ] }, { - "pc": 2819, + "pc": 2785, "op": "POP", - "gas": 1601465, + "gas": 1608327, "gasCost": 2, "depth": 1, "stack": [ @@ -21743,19 +21536,19 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xc0", "0x0", "0xe0", - "0xb3e", + "0xb1c", "0xc0", "0xe" ] }, { - "pc": 2820, + "pc": 2786, "op": "POP", - "gas": 1601463, + "gas": 1608325, "gasCost": 2, "depth": 1, "stack": [ @@ -21772,18 +21565,18 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xc0", "0x0", "0xe0", - "0xb3e", + "0xb1c", "0xc0" ] }, { - "pc": 2821, + "pc": 2787, "op": "JUMP", - "gas": 1601461, + "gas": 1608323, "gasCost": 8, "depth": 1, "stack": [ @@ -21800,17 +21593,17 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xc0", "0x0", "0xe0", - "0xb3e" + "0xb1c" ] }, { - "pc": 2878, + "pc": 2844, "op": "JUMPDEST", - "gas": 1601453, + "gas": 1608315, "gasCost": 1, "depth": 1, "stack": [ @@ -21827,16 +21620,16 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xc0", "0x0", "0xe0" ] }, { - "pc": 2879, + "pc": 2845, "op": "SWAP2", - "gas": 1601452, + "gas": 1608314, "gasCost": 3, "depth": 1, "stack": [ @@ -21853,16 +21646,16 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xc0", "0x0", "0xe0" ] }, { - "pc": 2880, + "pc": 2846, "op": "POP", - "gas": 1601449, + "gas": 1608311, "gasCost": 2, "depth": 1, "stack": [ @@ -21879,16 +21672,16 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xe0", "0x0", "0xc0" ] }, { - "pc": 2881, + "pc": 2847, "op": "PUSH3", - "gas": 1601447, + "gas": 1608309, "gasCost": 3, "depth": 1, "stack": [ @@ -21905,15 +21698,15 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xe0", "0x0" ] }, { - "pc": 2885, + "pc": 2851, "op": "DUP3", - "gas": 1601444, + "gas": 1608306, "gasCost": 3, "depth": 1, "stack": [ @@ -21930,16 +21723,16 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xe0", "0x0", - "0xb4b" + "0xb29" ] }, { - "pc": 2886, + "pc": 2852, "op": "PUSH3", - "gas": 1601441, + "gas": 1608303, "gasCost": 3, "depth": 1, "stack": [ @@ -21956,17 +21749,17 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xe0", "0x0", - "0xb4b", + "0xb29", "0xe0" ] }, { - "pc": 2890, + "pc": 2856, "op": "JUMP", - "gas": 1601438, + "gas": 1608300, "gasCost": 8, "depth": 1, "stack": [ @@ -21983,18 +21776,18 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xe0", "0x0", - "0xb4b", + "0xb29", "0xe0", - "0xb06" + "0xae4" ] }, { - "pc": 2822, + "pc": 2788, "op": "JUMPDEST", - "gas": 1601430, + "gas": 1608292, "gasCost": 1, "depth": 1, "stack": [ @@ -22011,17 +21804,17 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xe0", "0x0", - "0xb4b", + "0xb29", "0xe0" ] }, { - "pc": 2823, + "pc": 2789, "op": "PUSH32", - "gas": 1601429, + "gas": 1608291, "gasCost": 3, "depth": 1, "stack": [ @@ -22038,17 +21831,17 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xe0", "0x0", - "0xb4b", + "0xb29", "0xe0" ] }, { - "pc": 2856, + "pc": 2822, "op": "PUSH1", - "gas": 1601426, + "gas": 1608288, "gasCost": 3, "depth": 1, "stack": [ @@ -22065,18 +21858,18 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xe0", "0x0", - "0xb4b", + "0xb29", "0xe0", "0x696e7465726e616c20746f706963000000000000000000000000000000000000" ] }, { - "pc": 2858, + "pc": 2824, "op": "DUP3", - "gas": 1601423, + "gas": 1608285, "gasCost": 3, "depth": 1, "stack": [ @@ -22093,19 +21886,19 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xe0", "0x0", - "0xb4b", + "0xb29", "0xe0", "0x696e7465726e616c20746f706963000000000000000000000000000000000000", "0x0" ] }, { - "pc": 2859, + "pc": 2825, "op": "ADD", - "gas": 1601420, + "gas": 1608282, "gasCost": 3, "depth": 1, "stack": [ @@ -22122,10 +21915,10 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xe0", "0x0", - "0xb4b", + "0xb29", "0xe0", "0x696e7465726e616c20746f706963000000000000000000000000000000000000", "0x0", @@ -22133,9 +21926,9 @@ ] }, { - "pc": 2860, + "pc": 2826, "op": "MSTORE", - "gas": 1601417, + "gas": 1608279, "gasCost": 3, "depth": 1, "stack": [ @@ -22152,19 +21945,19 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xe0", "0x0", - "0xb4b", + "0xb29", "0xe0", "0x696e7465726e616c20746f706963000000000000000000000000000000000000", "0xe0" ] }, { - "pc": 2861, + "pc": 2827, "op": "POP", - "gas": 1601414, + "gas": 1608276, "gasCost": 2, "depth": 1, "stack": [ @@ -22181,17 +21974,17 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xe0", "0x0", - "0xb4b", + "0xb29", "0xe0" ] }, { - "pc": 2862, + "pc": 2828, "op": "JUMP", - "gas": 1601412, + "gas": 1608274, "gasCost": 8, "depth": 1, "stack": [ @@ -22208,16 +22001,16 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xe0", "0x0", - "0xb4b" + "0xb29" ] }, { - "pc": 2891, + "pc": 2857, "op": "JUMPDEST", - "gas": 1601404, + "gas": 1608266, "gasCost": 1, "depth": 1, "stack": [ @@ -22234,15 +22027,15 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xe0", "0x0" ] }, { - "pc": 2892, + "pc": 2858, "op": "PUSH1", - "gas": 1601403, + "gas": 1608265, "gasCost": 3, "depth": 1, "stack": [ @@ -22259,15 +22052,15 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xe0", "0x0" ] }, { - "pc": 2894, + "pc": 2860, "op": "DUP3", - "gas": 1601400, + "gas": 1608262, "gasCost": 3, "depth": 1, "stack": [ @@ -22284,16 +22077,16 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xe0", "0x0", "0x20" ] }, { - "pc": 2895, + "pc": 2861, "op": "ADD", - "gas": 1601397, + "gas": 1608259, "gasCost": 3, "depth": 1, "stack": [ @@ -22310,7 +22103,7 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xe0", "0x0", "0x20", @@ -22318,9 +22111,9 @@ ] }, { - "pc": 2896, + "pc": 2862, "op": "SWAP1", - "gas": 1601394, + "gas": 1608256, "gasCost": 3, "depth": 1, "stack": [ @@ -22337,16 +22130,16 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xe0", "0x0", "0x100" ] }, { - "pc": 2897, + "pc": 2863, "op": "POP", - "gas": 1601391, + "gas": 1608253, "gasCost": 2, "depth": 1, "stack": [ @@ -22363,16 +22156,16 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xe0", "0x100", "0x0" ] }, { - "pc": 2898, + "pc": 2864, "op": "SWAP2", - "gas": 1601389, + "gas": 1608251, "gasCost": 3, "depth": 1, "stack": [ @@ -22389,15 +22182,15 @@ "0x3e9", "0x80", "0xc0", - "0xb80", + "0xb5e", "0xe0", "0x100" ] }, { - "pc": 2899, + "pc": 2865, "op": "SWAP1", - "gas": 1601386, + "gas": 1608248, "gasCost": 3, "depth": 1, "stack": [ @@ -22416,13 +22209,13 @@ "0xc0", "0x100", "0xe0", - "0xb80" + "0xb5e" ] }, { - "pc": 2900, + "pc": 2866, "op": "POP", - "gas": 1601383, + "gas": 1608245, "gasCost": 2, "depth": 1, "stack": [ @@ -22440,14 +22233,14 @@ "0x80", "0xc0", "0x100", - "0xb80", + "0xb5e", "0xe0" ] }, { - "pc": 2901, + "pc": 2867, "op": "JUMP", - "gas": 1601381, + "gas": 1608243, "gasCost": 8, "depth": 1, "stack": [ @@ -22465,13 +22258,13 @@ "0x80", "0xc0", "0x100", - "0xb80" + "0xb5e" ] }, { - "pc": 2944, + "pc": 2910, "op": "JUMPDEST", - "gas": 1601373, + "gas": 1608235, "gasCost": 1, "depth": 1, "stack": [ @@ -22492,9 +22285,9 @@ ] }, { - "pc": 2945, + "pc": 2911, "op": "SWAP1", - "gas": 1601372, + "gas": 1608234, "gasCost": 3, "depth": 1, "stack": [ @@ -22515,9 +22308,9 @@ ] }, { - "pc": 2946, + "pc": 2912, "op": "POP", - "gas": 1601369, + "gas": 1608231, "gasCost": 2, "depth": 1, "stack": [ @@ -22538,9 +22331,9 @@ ] }, { - "pc": 2947, + "pc": 2913, "op": "SWAP3", - "gas": 1601367, + "gas": 1608229, "gasCost": 3, "depth": 1, "stack": [ @@ -22560,9 +22353,9 @@ ] }, { - "pc": 2948, + "pc": 2914, "op": "SWAP2", - "gas": 1601364, + "gas": 1608226, "gasCost": 3, "depth": 1, "stack": [ @@ -22582,9 +22375,9 @@ ] }, { - "pc": 2949, + "pc": 2915, "op": "POP", - "gas": 1601361, + "gas": 1608223, "gasCost": 2, "depth": 1, "stack": [ @@ -22604,9 +22397,9 @@ ] }, { - "pc": 2950, + "pc": 2916, "op": "POP", - "gas": 1601359, + "gas": 1608221, "gasCost": 2, "depth": 1, "stack": [ @@ -22625,9 +22418,9 @@ ] }, { - "pc": 2951, + "pc": 2917, "op": "JUMP", - "gas": 1601357, + "gas": 1608219, "gasCost": 8, "depth": 1, "stack": [ @@ -22647,7 +22440,7 @@ { "pc": 714, "op": "JUMPDEST", - "gas": 1601349, + "gas": 1608211, "gasCost": 1, "depth": 1, "stack": [ @@ -22666,7 +22459,7 @@ { "pc": 715, "op": "PUSH1", - "gas": 1601348, + "gas": 1608210, "gasCost": 3, "depth": 1, "stack": [ @@ -22685,7 +22478,7 @@ { "pc": 717, "op": "MLOAD", - "gas": 1601345, + "gas": 1608207, "gasCost": 3, "depth": 1, "stack": [ @@ -22705,7 +22498,7 @@ { "pc": 718, "op": "DUP1", - "gas": 1601342, + "gas": 1608204, "gasCost": 3, "depth": 1, "stack": [ @@ -22725,7 +22518,7 @@ { "pc": 719, "op": "SWAP2", - "gas": 1601339, + "gas": 1608201, "gasCost": 3, "depth": 1, "stack": [ @@ -22746,7 +22539,7 @@ { "pc": 720, "op": "SUB", - "gas": 1601336, + "gas": 1608198, "gasCost": 3, "depth": 1, "stack": [ @@ -22767,7 +22560,7 @@ { "pc": 721, "op": "SWAP1", - "gas": 1601333, + "gas": 1608195, "gasCost": 3, "depth": 1, "stack": [ @@ -22787,7 +22580,7 @@ { "pc": 722, "op": "LOG2", - "gas": 1601330, + "gas": 1608192, "gasCost": 2149, "depth": 1, "stack": [ @@ -22807,7 +22600,7 @@ { "pc": 723, "op": "DUP2", - "gas": 1599181, + "gas": 1606043, "gasCost": 3, "depth": 1, "stack": [ @@ -22823,7 +22616,7 @@ { "pc": 724, "op": "PUSH1", - "gas": 1599178, + "gas": 1606040, "gasCost": 3, "depth": 1, "stack": [ @@ -22840,7 +22633,7 @@ { "pc": 726, "op": "PUSH1", - "gas": 1599175, + "gas": 1606037, "gasCost": 3, "depth": 1, "stack": [ @@ -22858,7 +22651,7 @@ { "pc": 728, "op": "DUP3", - "gas": 1599172, + "gas": 1606034, "gasCost": 3, "depth": 1, "stack": [ @@ -22877,7 +22670,7 @@ { "pc": 729, "op": "DUP3", - "gas": 1599169, + "gas": 1606031, "gasCost": 3, "depth": 1, "stack": [ @@ -22897,7 +22690,7 @@ { "pc": 730, "op": "SLOAD", - "gas": 1599166, + "gas": 1606028, "gasCost": 2100, "depth": 1, "stack": [ @@ -22915,7 +22708,7 @@ "0x3" ], "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "00000000000000000000000061a286b8e87e2d31c475d71c85a0020584c44bae", + "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000ccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0000000000000000000000000000000000000000000000000000000000000001": "00000000000000000000000000000000000000000000000000000000000003e8", "0000000000000000000000000000000000000000000000000000000000000003": "0000000000000000000000000000000000000000000000000000000000000000" } @@ -22923,7 +22716,7 @@ { "pc": 731, "op": "PUSH3", - "gas": 1597066, + "gas": 1603928, "gasCost": 3, "depth": 1, "stack": [ @@ -22944,7 +22737,7 @@ { "pc": 735, "op": "SWAP2", - "gas": 1597063, + "gas": 1603925, "gasCost": 3, "depth": 1, "stack": [ @@ -22966,7 +22759,7 @@ { "pc": 736, "op": "SWAP1", - "gas": 1597060, + "gas": 1603922, "gasCost": 3, "depth": 1, "stack": [ @@ -22988,7 +22781,7 @@ { "pc": 737, "op": "PUSH3", - "gas": 1597057, + "gas": 1603919, "gasCost": 3, "depth": 1, "stack": [ @@ -23010,7 +22803,7 @@ { "pc": 741, "op": "JUMP", - "gas": 1597054, + "gas": 1603916, "gasCost": 8, "depth": 1, "stack": [ @@ -23027,13 +22820,13 @@ "0x2e6", "0x3e9", "0x0", - "0xbb7" + "0xb95" ] }, { - "pc": 2999, + "pc": 2965, "op": "JUMPDEST", - "gas": 1597046, + "gas": 1603908, "gasCost": 1, "depth": 1, "stack": [ @@ -23053,9 +22846,9 @@ ] }, { - "pc": 3000, + "pc": 2966, "op": "PUSH1", - "gas": 1597045, + "gas": 1603907, "gasCost": 3, "depth": 1, "stack": [ @@ -23075,9 +22868,9 @@ ] }, { - "pc": 3002, + "pc": 2968, "op": "PUSH3", - "gas": 1597042, + "gas": 1603904, "gasCost": 3, "depth": 1, "stack": [ @@ -23098,9 +22891,9 @@ ] }, { - "pc": 3006, + "pc": 2972, "op": "DUP3", - "gas": 1597039, + "gas": 1603901, "gasCost": 3, "depth": 1, "stack": [ @@ -23118,13 +22911,13 @@ "0x3e9", "0x0", "0x0", - "0xbc4" + "0xba2" ] }, { - "pc": 3007, + "pc": 2973, "op": "PUSH3", - "gas": 1597036, + "gas": 1603898, "gasCost": 3, "depth": 1, "stack": [ @@ -23142,14 +22935,14 @@ "0x3e9", "0x0", "0x0", - "0xbc4", + "0xba2", "0x0" ] }, { - "pc": 3011, + "pc": 2977, "op": "JUMP", - "gas": 1597033, + "gas": 1603895, "gasCost": 8, "depth": 1, "stack": [ @@ -23167,15 +22960,15 @@ "0x3e9", "0x0", "0x0", - "0xbc4", + "0xba2", "0x0", - "0x97c" + "0x95a" ] }, { - "pc": 2428, + "pc": 2394, "op": "JUMPDEST", - "gas": 1597025, + "gas": 1603887, "gasCost": 1, "depth": 1, "stack": [ @@ -23193,14 +22986,14 @@ "0x3e9", "0x0", "0x0", - "0xbc4", + "0xba2", "0x0" ] }, { - "pc": 2429, + "pc": 2395, "op": "PUSH1", - "gas": 1597024, + "gas": 1603886, "gasCost": 3, "depth": 1, "stack": [ @@ -23218,14 +23011,14 @@ "0x3e9", "0x0", "0x0", - "0xbc4", + "0xba2", "0x0" ] }, { - "pc": 2431, + "pc": 2397, "op": "DUP2", - "gas": 1597021, + "gas": 1603883, "gasCost": 3, "depth": 1, "stack": [ @@ -23243,15 +23036,15 @@ "0x3e9", "0x0", "0x0", - "0xbc4", + "0xba2", "0x0", "0x0" ] }, { - "pc": 2432, + "pc": 2398, "op": "SWAP1", - "gas": 1597018, + "gas": 1603880, "gasCost": 3, "depth": 1, "stack": [ @@ -23269,16 +23062,16 @@ "0x3e9", "0x0", "0x0", - "0xbc4", + "0xba2", "0x0", "0x0", "0x0" ] }, { - "pc": 2433, + "pc": 2399, "op": "POP", - "gas": 1597015, + "gas": 1603877, "gasCost": 2, "depth": 1, "stack": [ @@ -23296,16 +23089,16 @@ "0x3e9", "0x0", "0x0", - "0xbc4", + "0xba2", "0x0", "0x0", "0x0" ] }, { - "pc": 2434, + "pc": 2400, "op": "SWAP2", - "gas": 1597013, + "gas": 1603875, "gasCost": 3, "depth": 1, "stack": [ @@ -23323,15 +23116,15 @@ "0x3e9", "0x0", "0x0", - "0xbc4", + "0xba2", "0x0", "0x0" ] }, { - "pc": 2435, + "pc": 2401, "op": "SWAP1", - "gas": 1597010, + "gas": 1603872, "gasCost": 3, "depth": 1, "stack": [ @@ -23351,13 +23144,13 @@ "0x0", "0x0", "0x0", - "0xbc4" + "0xba2" ] }, { - "pc": 2436, + "pc": 2402, "op": "POP", - "gas": 1597007, + "gas": 1603869, "gasCost": 2, "depth": 1, "stack": [ @@ -23376,14 +23169,14 @@ "0x0", "0x0", "0x0", - "0xbc4", + "0xba2", "0x0" ] }, { - "pc": 2437, + "pc": 2403, "op": "JUMP", - "gas": 1597005, + "gas": 1603867, "gasCost": 8, "depth": 1, "stack": [ @@ -23402,13 +23195,13 @@ "0x0", "0x0", "0x0", - "0xbc4" + "0xba2" ] }, { - "pc": 3012, + "pc": 2978, "op": "JUMPDEST", - "gas": 1596997, + "gas": 1603859, "gasCost": 1, "depth": 1, "stack": [ @@ -23430,9 +23223,9 @@ ] }, { - "pc": 3013, + "pc": 2979, "op": "SWAP2", - "gas": 1596996, + "gas": 1603858, "gasCost": 3, "depth": 1, "stack": [ @@ -23454,9 +23247,9 @@ ] }, { - "pc": 3014, + "pc": 2980, "op": "POP", - "gas": 1596993, + "gas": 1603855, "gasCost": 2, "depth": 1, "stack": [ @@ -23478,9 +23271,9 @@ ] }, { - "pc": 3015, + "pc": 2981, "op": "PUSH3", - "gas": 1596991, + "gas": 1603853, "gasCost": 3, "depth": 1, "stack": [ @@ -23501,9 +23294,9 @@ ] }, { - "pc": 3019, + "pc": 2985, "op": "DUP4", - "gas": 1596988, + "gas": 1603850, "gasCost": 3, "depth": 1, "stack": [ @@ -23521,13 +23314,13 @@ "0x3e9", "0x0", "0x0", - "0xbd1" + "0xbaf" ] }, { - "pc": 3020, + "pc": 2986, "op": "PUSH3", - "gas": 1596985, + "gas": 1603847, "gasCost": 3, "depth": 1, "stack": [ @@ -23545,14 +23338,14 @@ "0x3e9", "0x0", "0x0", - "0xbd1", + "0xbaf", "0x3e9" ] }, { - "pc": 3024, + "pc": 2990, "op": "JUMP", - "gas": 1596982, + "gas": 1603844, "gasCost": 8, "depth": 1, "stack": [ @@ -23570,15 +23363,15 @@ "0x3e9", "0x0", "0x0", - "0xbd1", + "0xbaf", "0x3e9", - "0x97c" + "0x95a" ] }, { - "pc": 2428, + "pc": 2394, "op": "JUMPDEST", - "gas": 1596974, + "gas": 1603836, "gasCost": 1, "depth": 1, "stack": [ @@ -23596,14 +23389,14 @@ "0x3e9", "0x0", "0x0", - "0xbd1", + "0xbaf", "0x3e9" ] }, { - "pc": 2429, + "pc": 2395, "op": "PUSH1", - "gas": 1596973, + "gas": 1603835, "gasCost": 3, "depth": 1, "stack": [ @@ -23621,14 +23414,14 @@ "0x3e9", "0x0", "0x0", - "0xbd1", + "0xbaf", "0x3e9" ] }, { - "pc": 2431, + "pc": 2397, "op": "DUP2", - "gas": 1596970, + "gas": 1603832, "gasCost": 3, "depth": 1, "stack": [ @@ -23646,15 +23439,15 @@ "0x3e9", "0x0", "0x0", - "0xbd1", + "0xbaf", "0x3e9", "0x0" ] }, { - "pc": 2432, + "pc": 2398, "op": "SWAP1", - "gas": 1596967, + "gas": 1603829, "gasCost": 3, "depth": 1, "stack": [ @@ -23672,16 +23465,16 @@ "0x3e9", "0x0", "0x0", - "0xbd1", + "0xbaf", "0x3e9", "0x0", "0x3e9" ] }, { - "pc": 2433, + "pc": 2399, "op": "POP", - "gas": 1596964, + "gas": 1603826, "gasCost": 2, "depth": 1, "stack": [ @@ -23699,16 +23492,16 @@ "0x3e9", "0x0", "0x0", - "0xbd1", + "0xbaf", "0x3e9", "0x3e9", "0x0" ] }, { - "pc": 2434, + "pc": 2400, "op": "SWAP2", - "gas": 1596962, + "gas": 1603824, "gasCost": 3, "depth": 1, "stack": [ @@ -23726,15 +23519,15 @@ "0x3e9", "0x0", "0x0", - "0xbd1", + "0xbaf", "0x3e9", "0x3e9" ] }, { - "pc": 2435, + "pc": 2401, "op": "SWAP1", - "gas": 1596959, + "gas": 1603821, "gasCost": 3, "depth": 1, "stack": [ @@ -23754,13 +23547,13 @@ "0x0", "0x3e9", "0x3e9", - "0xbd1" + "0xbaf" ] }, { - "pc": 2436, + "pc": 2402, "op": "POP", - "gas": 1596956, + "gas": 1603818, "gasCost": 2, "depth": 1, "stack": [ @@ -23779,14 +23572,14 @@ "0x0", "0x0", "0x3e9", - "0xbd1", + "0xbaf", "0x3e9" ] }, { - "pc": 2437, + "pc": 2403, "op": "JUMP", - "gas": 1596954, + "gas": 1603816, "gasCost": 8, "depth": 1, "stack": [ @@ -23805,13 +23598,13 @@ "0x0", "0x0", "0x3e9", - "0xbd1" + "0xbaf" ] }, { - "pc": 3025, + "pc": 2991, "op": "JUMPDEST", - "gas": 1596946, + "gas": 1603808, "gasCost": 1, "depth": 1, "stack": [ @@ -23833,9 +23626,9 @@ ] }, { - "pc": 3026, + "pc": 2992, "op": "SWAP3", - "gas": 1596945, + "gas": 1603807, "gasCost": 3, "depth": 1, "stack": [ @@ -23857,9 +23650,9 @@ ] }, { - "pc": 3027, + "pc": 2993, "op": "POP", - "gas": 1596942, + "gas": 1603804, "gasCost": 2, "depth": 1, "stack": [ @@ -23881,9 +23674,9 @@ ] }, { - "pc": 3028, + "pc": 2994, "op": "DUP3", - "gas": 1596940, + "gas": 1603802, "gasCost": 3, "depth": 1, "stack": [ @@ -23904,9 +23697,9 @@ ] }, { - "pc": 3029, - "op": "PUSH32", - "gas": 1596937, + "pc": 2995, + "op": "DUP3", + "gas": 1603799, "gasCost": 3, "depth": 1, "stack": [ @@ -23928,9 +23721,9 @@ ] }, { - "pc": 3062, - "op": "SUB", - "gas": 1596934, + "pc": 2996, + "op": "ADD", + "gas": 1603796, "gasCost": 3, "depth": 1, "stack": [ @@ -23949,13 +23742,13 @@ "0x0", "0x0", "0x3e9", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + "0x0" ] }, { - "pc": 3063, - "op": "DUP3", - "gas": 1596931, + "pc": 2997, + "op": "SWAP1", + "gas": 1603793, "gasCost": 3, "depth": 1, "stack": [ @@ -23973,14 +23766,14 @@ "0x3e9", "0x0", "0x0", - "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc16" + "0x3e9" ] }, { - "pc": 3064, - "op": "GT", - "gas": 1596928, - "gasCost": 3, + "pc": 2998, + "op": "POP", + "gas": 1603790, + "gasCost": 2, "depth": 1, "stack": [ "0x3aa18088", @@ -23996,15 +23789,14 @@ "0x2e6", "0x3e9", "0x0", - "0x0", - "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc16", + "0x3e9", "0x0" ] }, { - "pc": 3065, - "op": "ISZERO", - "gas": 1596925, + "pc": 2999, + "op": "DUP1", + "gas": 1603788, "gasCost": 3, "depth": 1, "stack": [ @@ -24021,14 +23813,13 @@ "0x2e6", "0x3e9", "0x0", - "0x0", - "0x0" + "0x3e9" ] }, { - "pc": 3066, - "op": "PUSH3", - "gas": 1596922, + "pc": 3000, + "op": "DUP3", + "gas": 1603785, "gasCost": 3, "depth": 1, "stack": [ @@ -24045,15 +23836,15 @@ "0x2e6", "0x3e9", "0x0", - "0x0", - "0x1" + "0x3e9", + "0x3e9" ] }, { - "pc": 3070, - "op": "JUMPI", - "gas": 1596919, - "gasCost": 10, + "pc": 3001, + "op": "GT", + "gas": 1603782, + "gasCost": 3, "depth": 1, "stack": [ "0x3aa18088", @@ -24069,38 +23860,15 @@ "0x2e6", "0x3e9", "0x0", - "0x0", - "0x1", - "0xc09" - ] - }, - { - "pc": 3081, - "op": "JUMPDEST", - "gas": 1596909, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x3aa18088", - "0x149", - "0x3e8", - "0x0", - "0x3e7", "0x3e9", - "0x0", - "0x3e9", - "0x3", - "0x0", - "0x2e6", "0x3e9", - "0x0", "0x0" ] }, { - "pc": 3082, - "op": "DUP3", - "gas": 1596908, + "pc": 3002, + "op": "ISZERO", + "gas": 1603779, "gasCost": 3, "depth": 1, "stack": [ @@ -24117,13 +23885,14 @@ "0x2e6", "0x3e9", "0x0", + "0x3e9", "0x0" ] }, { - "pc": 3083, - "op": "DUP3", - "gas": 1596905, + "pc": 3003, + "op": "PUSH3", + "gas": 1603776, "gasCost": 3, "depth": 1, "stack": [ @@ -24140,15 +23909,15 @@ "0x2e6", "0x3e9", "0x0", - "0x0", - "0x3e9" + "0x3e9", + "0x1" ] }, { - "pc": 3084, - "op": "ADD", - "gas": 1596902, - "gasCost": 3, + "pc": 3007, + "op": "JUMPI", + "gas": 1603773, + "gasCost": 10, "depth": 1, "stack": [ "0x3aa18088", @@ -24164,16 +23933,16 @@ "0x2e6", "0x3e9", "0x0", - "0x0", "0x3e9", - "0x0" + "0x1", + "0xbca" ] }, { - "pc": 3085, - "op": "SWAP1", - "gas": 1596899, - "gasCost": 3, + "pc": 3018, + "op": "JUMPDEST", + "gas": 1603763, + "gasCost": 1, "depth": 1, "stack": [ "0x3aa18088", @@ -24189,38 +23958,13 @@ "0x2e6", "0x3e9", "0x0", - "0x0", "0x3e9" ] }, { - "pc": 3086, - "op": "POP", - "gas": 1596896, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x3aa18088", - "0x149", - "0x3e8", - "0x0", - "0x3e7", - "0x3e9", - "0x0", - "0x3e9", - "0x3", - "0x0", - "0x2e6", - "0x3e9", - "0x0", - "0x3e9", - "0x0" - ] - }, - { - "pc": 3087, + "pc": 3019, "op": "SWAP3", - "gas": 1596894, + "gas": 1603762, "gasCost": 3, "depth": 1, "stack": [ @@ -24241,9 +23985,9 @@ ] }, { - "pc": 3088, + "pc": 3020, "op": "SWAP2", - "gas": 1596891, + "gas": 1603759, "gasCost": 3, "depth": 1, "stack": [ @@ -24264,9 +24008,9 @@ ] }, { - "pc": 3089, + "pc": 3021, "op": "POP", - "gas": 1596888, + "gas": 1603756, "gasCost": 2, "depth": 1, "stack": [ @@ -24287,9 +24031,9 @@ ] }, { - "pc": 3090, + "pc": 3022, "op": "POP", - "gas": 1596886, + "gas": 1603754, "gasCost": 2, "depth": 1, "stack": [ @@ -24309,9 +24053,9 @@ ] }, { - "pc": 3091, + "pc": 3023, "op": "JUMP", - "gas": 1596884, + "gas": 1603752, "gasCost": 8, "depth": 1, "stack": [ @@ -24332,7 +24076,7 @@ { "pc": 742, "op": "JUMPDEST", - "gas": 1596876, + "gas": 1603744, "gasCost": 1, "depth": 1, "stack": [ @@ -24352,7 +24096,7 @@ { "pc": 743, "op": "SWAP3", - "gas": 1596875, + "gas": 1603743, "gasCost": 3, "depth": 1, "stack": [ @@ -24372,7 +24116,7 @@ { "pc": 744, "op": "POP", - "gas": 1596872, + "gas": 1603740, "gasCost": 2, "depth": 1, "stack": [ @@ -24392,7 +24136,7 @@ { "pc": 745, "op": "POP", - "gas": 1596870, + "gas": 1603738, "gasCost": 2, "depth": 1, "stack": [ @@ -24411,7 +24155,7 @@ { "pc": 746, "op": "DUP2", - "gas": 1596868, + "gas": 1603736, "gasCost": 3, "depth": 1, "stack": [ @@ -24429,7 +24173,7 @@ { "pc": 747, "op": "SWAP1", - "gas": 1596865, + "gas": 1603733, "gasCost": 3, "depth": 1, "stack": [ @@ -24448,7 +24192,7 @@ { "pc": 748, "op": "SSTORE", - "gas": 1596862, + "gas": 1603730, "gasCost": 20000, "depth": 1, "stack": [ @@ -24464,7 +24208,7 @@ "0x3" ], "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "00000000000000000000000061a286b8e87e2d31c475d71c85a0020584c44bae", + "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000ccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0000000000000000000000000000000000000000000000000000000000000001": "00000000000000000000000000000000000000000000000000000000000003e8", "0000000000000000000000000000000000000000000000000000000000000003": "00000000000000000000000000000000000000000000000000000000000003e9" } @@ -24472,7 +24216,7 @@ { "pc": 749, "op": "POP", - "gas": 1576862, + "gas": 1583730, "gasCost": 2, "depth": 1, "stack": [ @@ -24489,7 +24233,7 @@ { "pc": 750, "op": "PUSH1", - "gas": 1576860, + "gas": 1583728, "gasCost": 3, "depth": 1, "stack": [ @@ -24505,7 +24249,7 @@ { "pc": 752, "op": "SWAP1", - "gas": 1576857, + "gas": 1583725, "gasCost": 3, "depth": 1, "stack": [ @@ -24522,7 +24266,7 @@ { "pc": 753, "op": "POP", - "gas": 1576854, + "gas": 1583722, "gasCost": 2, "depth": 1, "stack": [ @@ -24539,7 +24283,7 @@ { "pc": 754, "op": "SWAP2", - "gas": 1576852, + "gas": 1583720, "gasCost": 3, "depth": 1, "stack": [ @@ -24555,7 +24299,7 @@ { "pc": 755, "op": "SWAP1", - "gas": 1576849, + "gas": 1583717, "gasCost": 3, "depth": 1, "stack": [ @@ -24571,7 +24315,7 @@ { "pc": 756, "op": "POP", - "gas": 1576846, + "gas": 1583714, "gasCost": 2, "depth": 1, "stack": [ @@ -24587,7 +24331,7 @@ { "pc": 757, "op": "JUMP", - "gas": 1576844, + "gas": 1583712, "gasCost": 8, "depth": 1, "stack": [ @@ -24602,7 +24346,7 @@ { "pc": 999, "op": "JUMPDEST", - "gas": 1576836, + "gas": 1583704, "gasCost": 1, "depth": 1, "stack": [ @@ -24616,7 +24360,7 @@ { "pc": 1000, "op": "POP", - "gas": 1576835, + "gas": 1583703, "gasCost": 2, "depth": 1, "stack": [ @@ -24630,7 +24374,7 @@ { "pc": 1001, "op": "PUSH3", - "gas": 1576833, + "gas": 1583701, "gasCost": 3, "depth": 1, "stack": [ @@ -24643,7 +24387,7 @@ { "pc": 1005, "op": "PUSH3", - "gas": 1576830, + "gas": 1583698, "gasCost": 3, "depth": 1, "stack": [ @@ -24657,7 +24401,7 @@ { "pc": 1009, "op": "JUMP", - "gas": 1576827, + "gas": 1583695, "gasCost": 8, "depth": 1, "stack": [ @@ -24672,7 +24416,7 @@ { "pc": 561, "op": "JUMPDEST", - "gas": 1576819, + "gas": 1583687, "gasCost": 1, "depth": 1, "stack": [ @@ -24686,7 +24430,7 @@ { "pc": 562, "op": "PUSH1", - "gas": 1576818, + "gas": 1583686, "gasCost": 3, "depth": 1, "stack": [ @@ -24700,7 +24444,7 @@ { "pc": 564, "op": "DUP1", - "gas": 1576815, + "gas": 1583683, "gasCost": 3, "depth": 1, "stack": [ @@ -24715,7 +24459,7 @@ { "pc": 565, "op": "PUSH1", - "gas": 1576812, + "gas": 1583680, "gasCost": 3, "depth": 1, "stack": [ @@ -24731,7 +24475,7 @@ { "pc": 567, "op": "MLOAD", - "gas": 1576809, + "gas": 1583677, "gasCost": 3, "depth": 1, "stack": [ @@ -24748,7 +24492,7 @@ { "pc": 568, "op": "DUP1", - "gas": 1576806, + "gas": 1583674, "gasCost": 3, "depth": 1, "stack": [ @@ -24765,7 +24509,7 @@ { "pc": 569, "op": "PUSH1", - "gas": 1576803, + "gas": 1583671, "gasCost": 3, "depth": 1, "stack": [ @@ -24783,7 +24527,7 @@ { "pc": 571, "op": "ADD", - "gas": 1576800, + "gas": 1583668, "gasCost": 3, "depth": 1, "stack": [ @@ -24802,7 +24546,7 @@ { "pc": 572, "op": "PUSH1", - "gas": 1576797, + "gas": 1583665, "gasCost": 3, "depth": 1, "stack": [ @@ -24820,7 +24564,7 @@ { "pc": 574, "op": "MSTORE", - "gas": 1576794, + "gas": 1583662, "gasCost": 3, "depth": 1, "stack": [ @@ -24839,7 +24583,7 @@ { "pc": 575, "op": "DUP1", - "gas": 1576791, + "gas": 1583659, "gasCost": 3, "depth": 1, "stack": [ @@ -24856,7 +24600,7 @@ { "pc": 576, "op": "PUSH1", - "gas": 1576788, + "gas": 1583656, "gasCost": 3, "depth": 1, "stack": [ @@ -24874,7 +24618,7 @@ { "pc": 578, "op": "DUP2", - "gas": 1576785, + "gas": 1583653, "gasCost": 3, "depth": 1, "stack": [ @@ -24893,7 +24637,7 @@ { "pc": 579, "op": "MSTORE", - "gas": 1576782, + "gas": 1583650, "gasCost": 3, "depth": 1, "stack": [ @@ -24913,7 +24657,7 @@ { "pc": 580, "op": "PUSH1", - "gas": 1576779, + "gas": 1583647, "gasCost": 3, "depth": 1, "stack": [ @@ -24931,7 +24675,7 @@ { "pc": 582, "op": "ADD", - "gas": 1576776, + "gas": 1583644, "gasCost": 3, "depth": 1, "stack": [ @@ -24950,7 +24694,7 @@ { "pc": 583, "op": "PUSH32", - "gas": 1576773, + "gas": 1583641, "gasCost": 3, "depth": 1, "stack": [ @@ -24968,7 +24712,7 @@ { "pc": 616, "op": "DUP2", - "gas": 1576770, + "gas": 1583638, "gasCost": 3, "depth": 1, "stack": [ @@ -24987,7 +24731,7 @@ { "pc": 617, "op": "MSTORE", - "gas": 1576767, + "gas": 1583635, "gasCost": 3, "depth": 1, "stack": [ @@ -25007,7 +24751,7 @@ { "pc": 618, "op": "POP", - "gas": 1576764, + "gas": 1583632, "gasCost": 2, "depth": 1, "stack": [ @@ -25025,7 +24769,7 @@ { "pc": 619, "op": "SWAP1", - "gas": 1576762, + "gas": 1583630, "gasCost": 3, "depth": 1, "stack": [ @@ -25042,7 +24786,7 @@ { "pc": 620, "op": "POP", - "gas": 1576759, + "gas": 1583627, "gasCost": 2, "depth": 1, "stack": [ @@ -25059,7 +24803,7 @@ { "pc": 621, "op": "PUSH1", - "gas": 1576757, + "gas": 1583625, "gasCost": 3, "depth": 1, "stack": [ @@ -25075,7 +24819,7 @@ { "pc": 623, "op": "DUP2", - "gas": 1576754, + "gas": 1583622, "gasCost": 3, "depth": 1, "stack": [ @@ -25092,7 +24836,7 @@ { "pc": 624, "op": "DUP1", - "gas": 1576751, + "gas": 1583619, "gasCost": 3, "depth": 1, "stack": [ @@ -25110,7 +24854,7 @@ { "pc": 625, "op": "MLOAD", - "gas": 1576748, + "gas": 1583616, "gasCost": 3, "depth": 1, "stack": [ @@ -25129,7 +24873,7 @@ { "pc": 626, "op": "SWAP1", - "gas": 1576745, + "gas": 1583613, "gasCost": 3, "depth": 1, "stack": [ @@ -25148,7 +24892,7 @@ { "pc": 627, "op": "PUSH1", - "gas": 1576742, + "gas": 1583610, "gasCost": 3, "depth": 1, "stack": [ @@ -25167,7 +24911,7 @@ { "pc": 629, "op": "ADD", - "gas": 1576739, + "gas": 1583607, "gasCost": 3, "depth": 1, "stack": [ @@ -25187,7 +24931,7 @@ { "pc": 630, "op": "KECCAK256", - "gas": 1576736, + "gas": 1583604, "gasCost": 36, "depth": 1, "stack": [ @@ -25206,7 +24950,7 @@ { "pc": 631, "op": "SWAP1", - "gas": 1576700, + "gas": 1583568, "gasCost": 3, "depth": 1, "stack": [ @@ -25224,7 +24968,7 @@ { "pc": 632, "op": "POP", - "gas": 1576697, + "gas": 1583565, "gasCost": 2, "depth": 1, "stack": [ @@ -25242,7 +24986,7 @@ { "pc": 633, "op": "DUP1", - "gas": 1576695, + "gas": 1583563, "gasCost": 3, "depth": 1, "stack": [ @@ -25259,7 +25003,7 @@ { "pc": 634, "op": "SWAP3", - "gas": 1576692, + "gas": 1583560, "gasCost": 3, "depth": 1, "stack": [ @@ -25277,7 +25021,7 @@ { "pc": 635, "op": "POP", - "gas": 1576689, + "gas": 1583557, "gasCost": 2, "depth": 1, "stack": [ @@ -25295,7 +25039,7 @@ { "pc": 636, "op": "POP", - "gas": 1576687, + "gas": 1583555, "gasCost": 2, "depth": 1, "stack": [ @@ -25312,7 +25056,7 @@ { "pc": 637, "op": "POP", - "gas": 1576685, + "gas": 1583553, "gasCost": 2, "depth": 1, "stack": [ @@ -25328,7 +25072,7 @@ { "pc": 638, "op": "SWAP1", - "gas": 1576683, + "gas": 1583551, "gasCost": 3, "depth": 1, "stack": [ @@ -25343,7 +25087,7 @@ { "pc": 639, "op": "JUMP", - "gas": 1576680, + "gas": 1583548, "gasCost": 8, "depth": 1, "stack": [ @@ -25358,7 +25102,7 @@ { "pc": 1010, "op": "JUMPDEST", - "gas": 1576672, + "gas": 1583540, "gasCost": 1, "depth": 1, "stack": [ @@ -25372,7 +25116,7 @@ { "pc": 1011, "op": "POP", - "gas": 1576671, + "gas": 1583539, "gasCost": 2, "depth": 1, "stack": [ @@ -25386,7 +25130,7 @@ { "pc": 1012, "op": "PUSH1", - "gas": 1576669, + "gas": 1583537, "gasCost": 3, "depth": 1, "stack": [ @@ -25399,7 +25143,7 @@ { "pc": 1014, "op": "DUP1", - "gas": 1576666, + "gas": 1583534, "gasCost": 3, "depth": 1, "stack": [ @@ -25413,7 +25157,7 @@ { "pc": 1015, "op": "SLOAD", - "gas": 1576663, + "gas": 1583531, "gasCost": 100, "depth": 1, "stack": [ @@ -25425,7 +25169,7 @@ "0x0" ], "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "00000000000000000000000061a286b8e87e2d31c475d71c85a0020584c44bae", + "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000ccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0000000000000000000000000000000000000000000000000000000000000001": "00000000000000000000000000000000000000000000000000000000000003e8", "0000000000000000000000000000000000000000000000000000000000000003": "00000000000000000000000000000000000000000000000000000000000003e9" } @@ -25433,7 +25177,7 @@ { "pc": 1016, "op": "SWAP1", - "gas": 1576563, + "gas": 1583431, "gasCost": 3, "depth": 1, "stack": [ @@ -25442,13 +25186,13 @@ "0x3e8", "0x0", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae" + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585" ] }, { "pc": 1017, "op": "PUSH2", - "gas": 1576560, + "gas": 1583428, "gasCost": 3, "depth": 1, "stack": [ @@ -25456,14 +25200,14 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0x0" ] }, { "pc": 1020, "op": "EXP", - "gas": 1576557, + "gas": 1583425, "gasCost": 10, "depth": 1, "stack": [ @@ -25471,7 +25215,7 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0x0", "0x100" ] @@ -25479,7 +25223,7 @@ { "pc": 1021, "op": "SWAP1", - "gas": 1576547, + "gas": 1583415, "gasCost": 3, "depth": 1, "stack": [ @@ -25487,14 +25231,14 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0x1" ] }, { "pc": 1022, "op": "DIV", - "gas": 1576544, + "gas": 1583412, "gasCost": 5, "depth": 1, "stack": [ @@ -25503,13 +25247,13 @@ "0x3e8", "0x0", "0x1", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae" + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585" ] }, { "pc": 1023, "op": "PUSH20", - "gas": 1576539, + "gas": 1583407, "gasCost": 3, "depth": 1, "stack": [ @@ -25517,13 +25261,13 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae" + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585" ] }, { "pc": 1044, "op": "AND", - "gas": 1576536, + "gas": 1583404, "gasCost": 3, "depth": 1, "stack": [ @@ -25531,14 +25275,14 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xffffffffffffffffffffffffffffffffffffffff" ] }, { "pc": 1045, "op": "PUSH20", - "gas": 1576533, + "gas": 1583401, "gasCost": 3, "depth": 1, "stack": [ @@ -25546,13 +25290,13 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae" + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585" ] }, { "pc": 1066, "op": "AND", - "gas": 1576530, + "gas": 1583398, "gasCost": 3, "depth": 1, "stack": [ @@ -25560,14 +25304,14 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xffffffffffffffffffffffffffffffffffffffff" ] }, { "pc": 1067, "op": "PUSH4", - "gas": 1576527, + "gas": 1583395, "gasCost": 3, "depth": 1, "stack": [ @@ -25575,13 +25319,13 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae" + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585" ] }, { "pc": 1072, "op": "DUP4", - "gas": 1576524, + "gas": 1583392, "gasCost": 3, "depth": 1, "stack": [ @@ -25589,14 +25333,14 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xa0712d68" ] }, { "pc": 1073, "op": "PUSH1", - "gas": 1576521, + "gas": 1583389, "gasCost": 3, "depth": 1, "stack": [ @@ -25604,7 +25348,7 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xa0712d68", "0x3e8" ] @@ -25612,7 +25356,7 @@ { "pc": 1075, "op": "MLOAD", - "gas": 1576518, + "gas": 1583386, "gasCost": 3, "depth": 1, "stack": [ @@ -25620,7 +25364,7 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xa0712d68", "0x3e8", "0x40" @@ -25629,7 +25373,7 @@ { "pc": 1076, "op": "DUP3", - "gas": 1576515, + "gas": 1583383, "gasCost": 3, "depth": 1, "stack": [ @@ -25637,7 +25381,7 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xa0712d68", "0x3e8", "0xc0" @@ -25646,7 +25390,7 @@ { "pc": 1077, "op": "PUSH4", - "gas": 1576512, + "gas": 1583380, "gasCost": 3, "depth": 1, "stack": [ @@ -25654,7 +25398,7 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xa0712d68", "0x3e8", "0xc0", @@ -25664,7 +25408,7 @@ { "pc": 1082, "op": "AND", - "gas": 1576509, + "gas": 1583377, "gasCost": 3, "depth": 1, "stack": [ @@ -25672,7 +25416,7 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xa0712d68", "0x3e8", "0xc0", @@ -25683,7 +25427,7 @@ { "pc": 1083, "op": "PUSH1", - "gas": 1576506, + "gas": 1583374, "gasCost": 3, "depth": 1, "stack": [ @@ -25691,7 +25435,7 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xa0712d68", "0x3e8", "0xc0", @@ -25701,7 +25445,7 @@ { "pc": 1085, "op": "SHL", - "gas": 1576503, + "gas": 1583371, "gasCost": 3, "depth": 1, "stack": [ @@ -25709,7 +25453,7 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xa0712d68", "0x3e8", "0xc0", @@ -25720,7 +25464,7 @@ { "pc": 1086, "op": "DUP2", - "gas": 1576500, + "gas": 1583368, "gasCost": 3, "depth": 1, "stack": [ @@ -25728,7 +25472,7 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xa0712d68", "0x3e8", "0xc0", @@ -25738,7 +25482,7 @@ { "pc": 1087, "op": "MSTORE", - "gas": 1576497, + "gas": 1583365, "gasCost": 3, "depth": 1, "stack": [ @@ -25746,7 +25490,7 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xa0712d68", "0x3e8", "0xc0", @@ -25757,7 +25501,7 @@ { "pc": 1088, "op": "PUSH1", - "gas": 1576494, + "gas": 1583362, "gasCost": 3, "depth": 1, "stack": [ @@ -25765,7 +25509,7 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xa0712d68", "0x3e8", "0xc0" @@ -25774,7 +25518,7 @@ { "pc": 1090, "op": "ADD", - "gas": 1576491, + "gas": 1583359, "gasCost": 3, "depth": 1, "stack": [ @@ -25782,7 +25526,7 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xa0712d68", "0x3e8", "0xc0", @@ -25792,7 +25536,7 @@ { "pc": 1091, "op": "PUSH3", - "gas": 1576488, + "gas": 1583356, "gasCost": 3, "depth": 1, "stack": [ @@ -25800,7 +25544,7 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xa0712d68", "0x3e8", "0xc4" @@ -25809,7 +25553,7 @@ { "pc": 1095, "op": "SWAP2", - "gas": 1576485, + "gas": 1583353, "gasCost": 3, "depth": 1, "stack": [ @@ -25817,7 +25561,7 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xa0712d68", "0x3e8", "0xc4", @@ -25827,7 +25571,7 @@ { "pc": 1096, "op": "SWAP1", - "gas": 1576482, + "gas": 1583350, "gasCost": 3, "depth": 1, "stack": [ @@ -25835,7 +25579,7 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xa0712d68", "0x44e", "0xc4", @@ -25845,7 +25589,7 @@ { "pc": 1097, "op": "PUSH3", - "gas": 1576479, + "gas": 1583347, "gasCost": 3, "depth": 1, "stack": [ @@ -25853,7 +25597,7 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xa0712d68", "0x44e", "0x3e8", @@ -25863,7 +25607,7 @@ { "pc": 1101, "op": "JUMP", - "gas": 1576476, + "gas": 1583344, "gasCost": 8, "depth": 1, "stack": [ @@ -25871,18 +25615,18 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xa0712d68", "0x44e", "0x3e8", "0xc4", - "0x997" + "0x975" ] }, { - "pc": 2455, + "pc": 2421, "op": "JUMPDEST", - "gas": 1576468, + "gas": 1583336, "gasCost": 1, "depth": 1, "stack": [ @@ -25890,7 +25634,7 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xa0712d68", "0x44e", "0x3e8", @@ -25898,9 +25642,9 @@ ] }, { - "pc": 2456, + "pc": 2422, "op": "PUSH1", - "gas": 1576467, + "gas": 1583335, "gasCost": 3, "depth": 1, "stack": [ @@ -25908,7 +25652,7 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xa0712d68", "0x44e", "0x3e8", @@ -25916,9 +25660,9 @@ ] }, { - "pc": 2458, + "pc": 2424, "op": "PUSH1", - "gas": 1576464, + "gas": 1583332, "gasCost": 3, "depth": 1, "stack": [ @@ -25926,7 +25670,7 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xa0712d68", "0x44e", "0x3e8", @@ -25935,9 +25679,9 @@ ] }, { - "pc": 2460, + "pc": 2426, "op": "DUP3", - "gas": 1576461, + "gas": 1583329, "gasCost": 3, "depth": 1, "stack": [ @@ -25945,7 +25689,7 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xa0712d68", "0x44e", "0x3e8", @@ -25955,9 +25699,9 @@ ] }, { - "pc": 2461, + "pc": 2427, "op": "ADD", - "gas": 1576458, + "gas": 1583326, "gasCost": 3, "depth": 1, "stack": [ @@ -25965,7 +25709,7 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xa0712d68", "0x44e", "0x3e8", @@ -25976,9 +25720,9 @@ ] }, { - "pc": 2462, + "pc": 2428, "op": "SWAP1", - "gas": 1576455, + "gas": 1583323, "gasCost": 3, "depth": 1, "stack": [ @@ -25986,7 +25730,7 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xa0712d68", "0x44e", "0x3e8", @@ -25996,9 +25740,9 @@ ] }, { - "pc": 2463, + "pc": 2429, "op": "POP", - "gas": 1576452, + "gas": 1583320, "gasCost": 2, "depth": 1, "stack": [ @@ -26006,7 +25750,7 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xa0712d68", "0x44e", "0x3e8", @@ -26016,9 +25760,9 @@ ] }, { - "pc": 2464, + "pc": 2430, "op": "PUSH3", - "gas": 1576450, + "gas": 1583318, "gasCost": 3, "depth": 1, "stack": [ @@ -26026,7 +25770,7 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xa0712d68", "0x44e", "0x3e8", @@ -26035,9 +25779,9 @@ ] }, { - "pc": 2468, + "pc": 2434, "op": "PUSH1", - "gas": 1576447, + "gas": 1583315, "gasCost": 3, "depth": 1, "stack": [ @@ -26045,19 +25789,19 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xa0712d68", "0x44e", "0x3e8", "0xc4", "0xe4", - "0x9ae" + "0x98c" ] }, { - "pc": 2470, + "pc": 2436, "op": "DUP4", - "gas": 1576444, + "gas": 1583312, "gasCost": 3, "depth": 1, "stack": [ @@ -26065,20 +25809,20 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xa0712d68", "0x44e", "0x3e8", "0xc4", "0xe4", - "0x9ae", + "0x98c", "0x0" ] }, { - "pc": 2471, + "pc": 2437, "op": "ADD", - "gas": 1576441, + "gas": 1583309, "gasCost": 3, "depth": 1, "stack": [ @@ -26086,21 +25830,21 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xa0712d68", "0x44e", "0x3e8", "0xc4", "0xe4", - "0x9ae", + "0x98c", "0x0", "0xc4" ] }, { - "pc": 2472, + "pc": 2438, "op": "DUP5", - "gas": 1576438, + "gas": 1583306, "gasCost": 3, "depth": 1, "stack": [ @@ -26108,20 +25852,20 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xa0712d68", "0x44e", "0x3e8", "0xc4", "0xe4", - "0x9ae", + "0x98c", "0xc4" ] }, { - "pc": 2473, + "pc": 2439, "op": "PUSH3", - "gas": 1576435, + "gas": 1583303, "gasCost": 3, "depth": 1, "stack": [ @@ -26129,21 +25873,21 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xa0712d68", "0x44e", "0x3e8", "0xc4", "0xe4", - "0x9ae", + "0x98c", "0xc4", "0x3e8" ] }, { - "pc": 2477, + "pc": 2443, "op": "JUMP", - "gas": 1576432, + "gas": 1583300, "gasCost": 8, "depth": 1, "stack": [ @@ -26151,22 +25895,22 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xa0712d68", "0x44e", "0x3e8", "0xc4", "0xe4", - "0x9ae", + "0x98c", "0xc4", "0x3e8", - "0x986" + "0x964" ] }, { - "pc": 2438, + "pc": 2404, "op": "JUMPDEST", - "gas": 1576424, + "gas": 1583292, "gasCost": 1, "depth": 1, "stack": [ @@ -26174,21 +25918,21 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xa0712d68", "0x44e", "0x3e8", "0xc4", "0xe4", - "0x9ae", + "0x98c", "0xc4", "0x3e8" ] }, { - "pc": 2439, + "pc": 2405, "op": "PUSH3", - "gas": 1576423, + "gas": 1583291, "gasCost": 3, "depth": 1, "stack": [ @@ -26196,21 +25940,21 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xa0712d68", "0x44e", "0x3e8", "0xc4", "0xe4", - "0x9ae", + "0x98c", "0xc4", "0x3e8" ] }, { - "pc": 2443, + "pc": 2409, "op": "DUP2", - "gas": 1576420, + "gas": 1583288, "gasCost": 3, "depth": 1, "stack": [ @@ -26218,22 +25962,22 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xa0712d68", "0x44e", "0x3e8", "0xc4", "0xe4", - "0x9ae", + "0x98c", "0xc4", "0x3e8", - "0x991" + "0x96f" ] }, { - "pc": 2444, + "pc": 2410, "op": "PUSH3", - "gas": 1576417, + "gas": 1583285, "gasCost": 3, "depth": 1, "stack": [ @@ -26241,23 +25985,23 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xa0712d68", "0x44e", "0x3e8", "0xc4", "0xe4", - "0x9ae", + "0x98c", "0xc4", "0x3e8", - "0x991", + "0x96f", "0x3e8" ] }, { - "pc": 2448, + "pc": 2414, "op": "JUMP", - "gas": 1576414, + "gas": 1583282, "gasCost": 8, "depth": 1, "stack": [ @@ -26265,24 +26009,24 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xa0712d68", "0x44e", "0x3e8", "0xc4", "0xe4", - "0x9ae", + "0x98c", "0xc4", "0x3e8", - "0x991", + "0x96f", "0x3e8", - "0x97c" + "0x95a" ] }, { - "pc": 2428, + "pc": 2394, "op": "JUMPDEST", - "gas": 1576406, + "gas": 1583274, "gasCost": 1, "depth": 1, "stack": [ @@ -26290,23 +26034,23 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xa0712d68", "0x44e", "0x3e8", "0xc4", "0xe4", - "0x9ae", + "0x98c", "0xc4", "0x3e8", - "0x991", + "0x96f", "0x3e8" ] }, { - "pc": 2429, + "pc": 2395, "op": "PUSH1", - "gas": 1576405, + "gas": 1583273, "gasCost": 3, "depth": 1, "stack": [ @@ -26314,23 +26058,23 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xa0712d68", "0x44e", "0x3e8", "0xc4", "0xe4", - "0x9ae", + "0x98c", "0xc4", "0x3e8", - "0x991", + "0x96f", "0x3e8" ] }, { - "pc": 2431, + "pc": 2397, "op": "DUP2", - "gas": 1576402, + "gas": 1583270, "gasCost": 3, "depth": 1, "stack": [ @@ -26338,24 +26082,24 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xa0712d68", "0x44e", "0x3e8", "0xc4", "0xe4", - "0x9ae", + "0x98c", "0xc4", "0x3e8", - "0x991", + "0x96f", "0x3e8", "0x0" ] }, { - "pc": 2432, + "pc": 2398, "op": "SWAP1", - "gas": 1576399, + "gas": 1583267, "gasCost": 3, "depth": 1, "stack": [ @@ -26363,25 +26107,25 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xa0712d68", "0x44e", "0x3e8", "0xc4", "0xe4", - "0x9ae", + "0x98c", "0xc4", "0x3e8", - "0x991", + "0x96f", "0x3e8", "0x0", "0x3e8" ] }, { - "pc": 2433, + "pc": 2399, "op": "POP", - "gas": 1576396, + "gas": 1583264, "gasCost": 2, "depth": 1, "stack": [ @@ -26389,25 +26133,25 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xa0712d68", "0x44e", "0x3e8", "0xc4", "0xe4", - "0x9ae", + "0x98c", "0xc4", "0x3e8", - "0x991", + "0x96f", "0x3e8", "0x3e8", "0x0" ] }, { - "pc": 2434, + "pc": 2400, "op": "SWAP2", - "gas": 1576394, + "gas": 1583262, "gasCost": 3, "depth": 1, "stack": [ @@ -26415,24 +26159,24 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xa0712d68", "0x44e", "0x3e8", "0xc4", "0xe4", - "0x9ae", + "0x98c", "0xc4", "0x3e8", - "0x991", + "0x96f", "0x3e8", "0x3e8" ] }, { - "pc": 2435, + "pc": 2401, "op": "SWAP1", - "gas": 1576391, + "gas": 1583259, "gasCost": 3, "depth": 1, "stack": [ @@ -26440,24 +26184,24 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xa0712d68", "0x44e", "0x3e8", "0xc4", "0xe4", - "0x9ae", + "0x98c", "0xc4", "0x3e8", "0x3e8", "0x3e8", - "0x991" + "0x96f" ] }, { - "pc": 2436, + "pc": 2402, "op": "POP", - "gas": 1576388, + "gas": 1583256, "gasCost": 2, "depth": 1, "stack": [ @@ -26465,24 +26209,24 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xa0712d68", "0x44e", "0x3e8", "0xc4", "0xe4", - "0x9ae", + "0x98c", "0xc4", "0x3e8", "0x3e8", - "0x991", + "0x96f", "0x3e8" ] }, { - "pc": 2437, + "pc": 2403, "op": "JUMP", - "gas": 1576386, + "gas": 1583254, "gasCost": 8, "depth": 1, "stack": [ @@ -26490,23 +26234,23 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xa0712d68", "0x44e", "0x3e8", "0xc4", "0xe4", - "0x9ae", + "0x98c", "0xc4", "0x3e8", "0x3e8", - "0x991" + "0x96f" ] }, { - "pc": 2449, + "pc": 2415, "op": "JUMPDEST", - "gas": 1576378, + "gas": 1583246, "gasCost": 1, "depth": 1, "stack": [ @@ -26514,22 +26258,22 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xa0712d68", "0x44e", "0x3e8", "0xc4", "0xe4", - "0x9ae", + "0x98c", "0xc4", "0x3e8", "0x3e8" ] }, { - "pc": 2450, + "pc": 2416, "op": "DUP3", - "gas": 1576377, + "gas": 1583245, "gasCost": 3, "depth": 1, "stack": [ @@ -26537,22 +26281,22 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xa0712d68", "0x44e", "0x3e8", "0xc4", "0xe4", - "0x9ae", + "0x98c", "0xc4", "0x3e8", "0x3e8" ] }, { - "pc": 2451, + "pc": 2417, "op": "MSTORE", - "gas": 1576374, + "gas": 1583242, "gasCost": 3, "depth": 1, "stack": [ @@ -26560,13 +26304,13 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xa0712d68", "0x44e", "0x3e8", "0xc4", "0xe4", - "0x9ae", + "0x98c", "0xc4", "0x3e8", "0x3e8", @@ -26574,9 +26318,9 @@ ] }, { - "pc": 2452, + "pc": 2418, "op": "POP", - "gas": 1576371, + "gas": 1583239, "gasCost": 2, "depth": 1, "stack": [ @@ -26584,21 +26328,21 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xa0712d68", "0x44e", "0x3e8", "0xc4", "0xe4", - "0x9ae", + "0x98c", "0xc4", "0x3e8" ] }, { - "pc": 2453, + "pc": 2419, "op": "POP", - "gas": 1576369, + "gas": 1583237, "gasCost": 2, "depth": 1, "stack": [ @@ -26606,20 +26350,20 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xa0712d68", "0x44e", "0x3e8", "0xc4", "0xe4", - "0x9ae", + "0x98c", "0xc4" ] }, { - "pc": 2454, + "pc": 2420, "op": "JUMP", - "gas": 1576367, + "gas": 1583235, "gasCost": 8, "depth": 1, "stack": [ @@ -26627,19 +26371,19 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xa0712d68", "0x44e", "0x3e8", "0xc4", "0xe4", - "0x9ae" + "0x98c" ] }, { - "pc": 2478, + "pc": 2444, "op": "JUMPDEST", - "gas": 1576359, + "gas": 1583227, "gasCost": 1, "depth": 1, "stack": [ @@ -26647,7 +26391,7 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xa0712d68", "0x44e", "0x3e8", @@ -26656,9 +26400,9 @@ ] }, { - "pc": 2479, + "pc": 2445, "op": "SWAP3", - "gas": 1576358, + "gas": 1583226, "gasCost": 3, "depth": 1, "stack": [ @@ -26666,7 +26410,7 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xa0712d68", "0x44e", "0x3e8", @@ -26675,9 +26419,9 @@ ] }, { - "pc": 2480, + "pc": 2446, "op": "SWAP2", - "gas": 1576355, + "gas": 1583223, "gasCost": 3, "depth": 1, "stack": [ @@ -26685,7 +26429,7 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xa0712d68", "0xe4", "0x3e8", @@ -26694,9 +26438,9 @@ ] }, { - "pc": 2481, + "pc": 2447, "op": "POP", - "gas": 1576352, + "gas": 1583220, "gasCost": 2, "depth": 1, "stack": [ @@ -26704,7 +26448,7 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xa0712d68", "0xe4", "0x44e", @@ -26713,9 +26457,9 @@ ] }, { - "pc": 2482, + "pc": 2448, "op": "POP", - "gas": 1576350, + "gas": 1583218, "gasCost": 2, "depth": 1, "stack": [ @@ -26723,7 +26467,7 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xa0712d68", "0xe4", "0x44e", @@ -26731,9 +26475,9 @@ ] }, { - "pc": 2483, + "pc": 2449, "op": "JUMP", - "gas": 1576348, + "gas": 1583216, "gasCost": 8, "depth": 1, "stack": [ @@ -26741,7 +26485,7 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xa0712d68", "0xe4", "0x44e" @@ -26750,7 +26494,7 @@ { "pc": 1102, "op": "JUMPDEST", - "gas": 1576340, + "gas": 1583208, "gasCost": 1, "depth": 1, "stack": [ @@ -26758,7 +26502,7 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xa0712d68", "0xe4" ] @@ -26766,7 +26510,7 @@ { "pc": 1103, "op": "PUSH1", - "gas": 1576339, + "gas": 1583207, "gasCost": 3, "depth": 1, "stack": [ @@ -26774,7 +26518,7 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xa0712d68", "0xe4" ] @@ -26782,7 +26526,7 @@ { "pc": 1105, "op": "PUSH1", - "gas": 1576336, + "gas": 1583204, "gasCost": 3, "depth": 1, "stack": [ @@ -26790,7 +26534,7 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xa0712d68", "0xe4", "0x20" @@ -26799,7 +26543,7 @@ { "pc": 1107, "op": "MLOAD", - "gas": 1576333, + "gas": 1583201, "gasCost": 3, "depth": 1, "stack": [ @@ -26807,7 +26551,7 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xa0712d68", "0xe4", "0x20", @@ -26817,7 +26561,7 @@ { "pc": 1108, "op": "DUP1", - "gas": 1576330, + "gas": 1583198, "gasCost": 3, "depth": 1, "stack": [ @@ -26825,7 +26569,7 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xa0712d68", "0xe4", "0x20", @@ -26835,7 +26579,7 @@ { "pc": 1109, "op": "DUP4", - "gas": 1576327, + "gas": 1583195, "gasCost": 3, "depth": 1, "stack": [ @@ -26843,7 +26587,7 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xa0712d68", "0xe4", "0x20", @@ -26854,7 +26598,7 @@ { "pc": 1110, "op": "SUB", - "gas": 1576324, + "gas": 1583192, "gasCost": 3, "depth": 1, "stack": [ @@ -26862,7 +26606,7 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xa0712d68", "0xe4", "0x20", @@ -26874,7 +26618,7 @@ { "pc": 1111, "op": "DUP2", - "gas": 1576321, + "gas": 1583189, "gasCost": 3, "depth": 1, "stack": [ @@ -26882,7 +26626,7 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xa0712d68", "0xe4", "0x20", @@ -26893,7 +26637,7 @@ { "pc": 1112, "op": "PUSH1", - "gas": 1576318, + "gas": 1583186, "gasCost": 3, "depth": 1, "stack": [ @@ -26901,7 +26645,7 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xa0712d68", "0xe4", "0x20", @@ -26913,7 +26657,7 @@ { "pc": 1114, "op": "DUP8", - "gas": 1576315, + "gas": 1583183, "gasCost": 3, "depth": 1, "stack": [ @@ -26921,7 +26665,7 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xa0712d68", "0xe4", "0x20", @@ -26933,218 +26677,8 @@ }, { "pc": 1115, - "op": "DUP1", - "gas": 1576312, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x3aa18088", - "0x149", - "0x3e8", - "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", - "0xa0712d68", - "0xe4", - "0x20", - "0xc0", - "0x24", - "0xc0", - "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae" - ] - }, - { - "pc": 1116, - "op": "EXTCODESIZE", - "gas": 1576309, - "gasCost": 100, - "depth": 1, - "stack": [ - "0x3aa18088", - "0x149", - "0x3e8", - "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", - "0xa0712d68", - "0xe4", - "0x20", - "0xc0", - "0x24", - "0xc0", - "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae" - ] - }, - { - "pc": 1117, - "op": "ISZERO", - "gas": 1576209, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x3aa18088", - "0x149", - "0x3e8", - "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", - "0xa0712d68", - "0xe4", - "0x20", - "0xc0", - "0x24", - "0xc0", - "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", - "0x651" - ] - }, - { - "pc": 1118, - "op": "DUP1", - "gas": 1576206, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x3aa18088", - "0x149", - "0x3e8", - "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", - "0xa0712d68", - "0xe4", - "0x20", - "0xc0", - "0x24", - "0xc0", - "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", - "0x0" - ] - }, - { - "pc": 1119, - "op": "ISZERO", - "gas": 1576203, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x3aa18088", - "0x149", - "0x3e8", - "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", - "0xa0712d68", - "0xe4", - "0x20", - "0xc0", - "0x24", - "0xc0", - "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", - "0x0", - "0x0" - ] - }, - { - "pc": 1120, - "op": "PUSH3", - "gas": 1576200, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x3aa18088", - "0x149", - "0x3e8", - "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", - "0xa0712d68", - "0xe4", - "0x20", - "0xc0", - "0x24", - "0xc0", - "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", - "0x0", - "0x1" - ] - }, - { - "pc": 1124, - "op": "JUMPI", - "gas": 1576197, - "gasCost": 10, - "depth": 1, - "stack": [ - "0x3aa18088", - "0x149", - "0x3e8", - "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", - "0xa0712d68", - "0xe4", - "0x20", - "0xc0", - "0x24", - "0xc0", - "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", - "0x0", - "0x1", - "0x469" - ] - }, - { - "pc": 1129, - "op": "JUMPDEST", - "gas": 1576187, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x3aa18088", - "0x149", - "0x3e8", - "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", - "0xa0712d68", - "0xe4", - "0x20", - "0xc0", - "0x24", - "0xc0", - "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", - "0x0" - ] - }, - { - "pc": 1130, - "op": "POP", - "gas": 1576186, - "gasCost": 2, - "depth": 1, - "stack": [ - "0x3aa18088", - "0x149", - "0x3e8", - "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", - "0xa0712d68", - "0xe4", - "0x20", - "0xc0", - "0x24", - "0xc0", - "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", - "0x0" - ] - }, - { - "pc": 1131, "op": "GAS", - "gas": 1576184, + "gas": 1583180, "gasCost": 2, "depth": 1, "stack": [ @@ -27152,7 +26686,7 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xa0712d68", "0xe4", "0x20", @@ -27160,21 +26694,21 @@ "0x24", "0xc0", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae" + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585" ] }, { - "pc": 1132, + "pc": 1116, "op": "CALL", - "gas": 1576182, - "gasCost": 1551556, + "gas": 1583178, + "gasCost": 1558443, "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xa0712d68", "0xe4", "0x20", @@ -27182,14 +26716,14 @@ "0x24", "0xc0", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", - "0x180cf6" + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x18284a" ] }, { "pc": 0, "op": "PUSH1", - "gas": 1551456, + "gas": 1558343, "gasCost": 3, "depth": 2, "stack": [] @@ -27197,7 +26731,7 @@ { "pc": 2, "op": "PUSH1", - "gas": 1551453, + "gas": 1558340, "gasCost": 3, "depth": 2, "stack": [ @@ -27207,7 +26741,7 @@ { "pc": 4, "op": "MSTORE", - "gas": 1551450, + "gas": 1558337, "gasCost": 12, "depth": 2, "stack": [ @@ -27218,7 +26752,7 @@ { "pc": 5, "op": "CALLVALUE", - "gas": 1551438, + "gas": 1558325, "gasCost": 2, "depth": 2, "stack": [] @@ -27226,7 +26760,7 @@ { "pc": 6, "op": "DUP1", - "gas": 1551436, + "gas": 1558323, "gasCost": 3, "depth": 2, "stack": [ @@ -27236,7 +26770,7 @@ { "pc": 7, "op": "ISZERO", - "gas": 1551433, + "gas": 1558320, "gasCost": 3, "depth": 2, "stack": [ @@ -27247,7 +26781,7 @@ { "pc": 8, "op": "PUSH2", - "gas": 1551430, + "gas": 1558317, "gasCost": 3, "depth": 2, "stack": [ @@ -27258,7 +26792,7 @@ { "pc": 11, "op": "JUMPI", - "gas": 1551427, + "gas": 1558314, "gasCost": 10, "depth": 2, "stack": [ @@ -27270,7 +26804,7 @@ { "pc": 16, "op": "JUMPDEST", - "gas": 1551417, + "gas": 1558304, "gasCost": 1, "depth": 2, "stack": [ @@ -27280,7 +26814,7 @@ { "pc": 17, "op": "POP", - "gas": 1551416, + "gas": 1558303, "gasCost": 2, "depth": 2, "stack": [ @@ -27290,7 +26824,7 @@ { "pc": 18, "op": "PUSH1", - "gas": 1551414, + "gas": 1558301, "gasCost": 3, "depth": 2, "stack": [] @@ -27298,7 +26832,7 @@ { "pc": 20, "op": "CALLDATASIZE", - "gas": 1551411, + "gas": 1558298, "gasCost": 2, "depth": 2, "stack": [ @@ -27308,7 +26842,7 @@ { "pc": 21, "op": "LT", - "gas": 1551409, + "gas": 1558296, "gasCost": 3, "depth": 2, "stack": [ @@ -27319,7 +26853,7 @@ { "pc": 22, "op": "PUSH2", - "gas": 1551406, + "gas": 1558293, "gasCost": 3, "depth": 2, "stack": [ @@ -27329,7 +26863,7 @@ { "pc": 25, "op": "JUMPI", - "gas": 1551403, + "gas": 1558290, "gasCost": 10, "depth": 2, "stack": [ @@ -27340,7 +26874,7 @@ { "pc": 26, "op": "PUSH1", - "gas": 1551393, + "gas": 1558280, "gasCost": 3, "depth": 2, "stack": [] @@ -27348,7 +26882,7 @@ { "pc": 28, "op": "CALLDATALOAD", - "gas": 1551390, + "gas": 1558277, "gasCost": 3, "depth": 2, "stack": [ @@ -27358,7 +26892,7 @@ { "pc": 29, "op": "PUSH1", - "gas": 1551387, + "gas": 1558274, "gasCost": 3, "depth": 2, "stack": [ @@ -27368,7 +26902,7 @@ { "pc": 31, "op": "SHR", - "gas": 1551384, + "gas": 1558271, "gasCost": 3, "depth": 2, "stack": [ @@ -27379,7 +26913,7 @@ { "pc": 32, "op": "DUP1", - "gas": 1551381, + "gas": 1558268, "gasCost": 3, "depth": 2, "stack": [ @@ -27389,7 +26923,7 @@ { "pc": 33, "op": "PUSH4", - "gas": 1551378, + "gas": 1558265, "gasCost": 3, "depth": 2, "stack": [ @@ -27400,7 +26934,7 @@ { "pc": 38, "op": "EQ", - "gas": 1551375, + "gas": 1558262, "gasCost": 3, "depth": 2, "stack": [ @@ -27412,7 +26946,7 @@ { "pc": 39, "op": "PUSH2", - "gas": 1551372, + "gas": 1558259, "gasCost": 3, "depth": 2, "stack": [ @@ -27423,7 +26957,7 @@ { "pc": 42, "op": "JUMPI", - "gas": 1551369, + "gas": 1558256, "gasCost": 10, "depth": 2, "stack": [ @@ -27435,7 +26969,7 @@ { "pc": 43, "op": "DUP1", - "gas": 1551359, + "gas": 1558246, "gasCost": 3, "depth": 2, "stack": [ @@ -27445,7 +26979,7 @@ { "pc": 44, "op": "PUSH4", - "gas": 1551356, + "gas": 1558243, "gasCost": 3, "depth": 2, "stack": [ @@ -27456,7 +26990,7 @@ { "pc": 49, "op": "EQ", - "gas": 1551353, + "gas": 1558240, "gasCost": 3, "depth": 2, "stack": [ @@ -27468,7 +27002,7 @@ { "pc": 50, "op": "PUSH2", - "gas": 1551350, + "gas": 1558237, "gasCost": 3, "depth": 2, "stack": [ @@ -27479,7 +27013,7 @@ { "pc": 53, "op": "JUMPI", - "gas": 1551347, + "gas": 1558234, "gasCost": 10, "depth": 2, "stack": [ @@ -27491,7 +27025,7 @@ { "pc": 54, "op": "DUP1", - "gas": 1551337, + "gas": 1558224, "gasCost": 3, "depth": 2, "stack": [ @@ -27501,7 +27035,7 @@ { "pc": 55, "op": "PUSH4", - "gas": 1551334, + "gas": 1558221, "gasCost": 3, "depth": 2, "stack": [ @@ -27512,7 +27046,7 @@ { "pc": 60, "op": "EQ", - "gas": 1551331, + "gas": 1558218, "gasCost": 3, "depth": 2, "stack": [ @@ -27524,7 +27058,7 @@ { "pc": 61, "op": "PUSH2", - "gas": 1551328, + "gas": 1558215, "gasCost": 3, "depth": 2, "stack": [ @@ -27535,7 +27069,7 @@ { "pc": 64, "op": "JUMPI", - "gas": 1551325, + "gas": 1558212, "gasCost": 10, "depth": 2, "stack": [ @@ -27547,7 +27081,7 @@ { "pc": 65, "op": "DUP1", - "gas": 1551315, + "gas": 1558202, "gasCost": 3, "depth": 2, "stack": [ @@ -27557,7 +27091,7 @@ { "pc": 66, "op": "PUSH4", - "gas": 1551312, + "gas": 1558199, "gasCost": 3, "depth": 2, "stack": [ @@ -27568,7 +27102,7 @@ { "pc": 71, "op": "EQ", - "gas": 1551309, + "gas": 1558196, "gasCost": 3, "depth": 2, "stack": [ @@ -27580,7 +27114,7 @@ { "pc": 72, "op": "PUSH2", - "gas": 1551306, + "gas": 1558193, "gasCost": 3, "depth": 2, "stack": [ @@ -27591,7 +27125,7 @@ { "pc": 75, "op": "JUMPI", - "gas": 1551303, + "gas": 1558190, "gasCost": 10, "depth": 2, "stack": [ @@ -27603,7 +27137,7 @@ { "pc": 191, "op": "JUMPDEST", - "gas": 1551293, + "gas": 1558180, "gasCost": 1, "depth": 2, "stack": [ @@ -27613,7 +27147,7 @@ { "pc": 192, "op": "PUSH2", - "gas": 1551292, + "gas": 1558179, "gasCost": 3, "depth": 2, "stack": [ @@ -27623,7 +27157,7 @@ { "pc": 195, "op": "PUSH1", - "gas": 1551289, + "gas": 1558176, "gasCost": 3, "depth": 2, "stack": [ @@ -27634,7 +27168,7 @@ { "pc": 197, "op": "DUP1", - "gas": 1551286, + "gas": 1558173, "gasCost": 3, "depth": 2, "stack": [ @@ -27646,7 +27180,7 @@ { "pc": 198, "op": "CALLDATASIZE", - "gas": 1551283, + "gas": 1558170, "gasCost": 2, "depth": 2, "stack": [ @@ -27659,7 +27193,7 @@ { "pc": 199, "op": "SUB", - "gas": 1551281, + "gas": 1558168, "gasCost": 3, "depth": 2, "stack": [ @@ -27673,7 +27207,7 @@ { "pc": 200, "op": "DUP2", - "gas": 1551278, + "gas": 1558165, "gasCost": 3, "depth": 2, "stack": [ @@ -27686,7 +27220,7 @@ { "pc": 201, "op": "ADD", - "gas": 1551275, + "gas": 1558162, "gasCost": 3, "depth": 2, "stack": [ @@ -27700,7 +27234,7 @@ { "pc": 202, "op": "SWAP1", - "gas": 1551272, + "gas": 1558159, "gasCost": 3, "depth": 2, "stack": [ @@ -27713,7 +27247,7 @@ { "pc": 203, "op": "PUSH2", - "gas": 1551269, + "gas": 1558156, "gasCost": 3, "depth": 2, "stack": [ @@ -27726,7 +27260,7 @@ { "pc": 206, "op": "SWAP2", - "gas": 1551266, + "gas": 1558153, "gasCost": 3, "depth": 2, "stack": [ @@ -27740,7 +27274,7 @@ { "pc": 207, "op": "SWAP1", - "gas": 1551263, + "gas": 1558150, "gasCost": 3, "depth": 2, "stack": [ @@ -27754,7 +27288,7 @@ { "pc": 208, "op": "PUSH2", - "gas": 1551260, + "gas": 1558147, "gasCost": 3, "depth": 2, "stack": [ @@ -27768,7 +27302,7 @@ { "pc": 211, "op": "JUMP", - "gas": 1551257, + "gas": 1558144, "gasCost": 8, "depth": 2, "stack": [ @@ -27783,7 +27317,7 @@ { "pc": 835, "op": "JUMPDEST", - "gas": 1551249, + "gas": 1558136, "gasCost": 1, "depth": 2, "stack": [ @@ -27797,7 +27331,7 @@ { "pc": 836, "op": "PUSH1", - "gas": 1551248, + "gas": 1558135, "gasCost": 3, "depth": 2, "stack": [ @@ -27811,7 +27345,7 @@ { "pc": 838, "op": "PUSH1", - "gas": 1551245, + "gas": 1558132, "gasCost": 3, "depth": 2, "stack": [ @@ -27826,7 +27360,7 @@ { "pc": 840, "op": "DUP3", - "gas": 1551242, + "gas": 1558129, "gasCost": 3, "depth": 2, "stack": [ @@ -27842,7 +27376,7 @@ { "pc": 841, "op": "DUP5", - "gas": 1551239, + "gas": 1558126, "gasCost": 3, "depth": 2, "stack": [ @@ -27859,7 +27393,7 @@ { "pc": 842, "op": "SUB", - "gas": 1551236, + "gas": 1558123, "gasCost": 3, "depth": 2, "stack": [ @@ -27877,7 +27411,7 @@ { "pc": 843, "op": "SLT", - "gas": 1551233, + "gas": 1558120, "gasCost": 3, "depth": 2, "stack": [ @@ -27894,7 +27428,7 @@ { "pc": 844, "op": "ISZERO", - "gas": 1551230, + "gas": 1558117, "gasCost": 3, "depth": 2, "stack": [ @@ -27910,7 +27444,7 @@ { "pc": 845, "op": "PUSH2", - "gas": 1551227, + "gas": 1558114, "gasCost": 3, "depth": 2, "stack": [ @@ -27926,7 +27460,7 @@ { "pc": 848, "op": "JUMPI", - "gas": 1551224, + "gas": 1558111, "gasCost": 10, "depth": 2, "stack": [ @@ -27943,7 +27477,7 @@ { "pc": 857, "op": "JUMPDEST", - "gas": 1551214, + "gas": 1558101, "gasCost": 1, "depth": 2, "stack": [ @@ -27958,7 +27492,7 @@ { "pc": 858, "op": "PUSH1", - "gas": 1551213, + "gas": 1558100, "gasCost": 3, "depth": 2, "stack": [ @@ -27973,7 +27507,7 @@ { "pc": 860, "op": "PUSH2", - "gas": 1551210, + "gas": 1558097, "gasCost": 3, "depth": 2, "stack": [ @@ -27989,7 +27523,7 @@ { "pc": 863, "op": "DUP5", - "gas": 1551207, + "gas": 1558094, "gasCost": 3, "depth": 2, "stack": [ @@ -28006,7 +27540,7 @@ { "pc": 864, "op": "DUP3", - "gas": 1551204, + "gas": 1558091, "gasCost": 3, "depth": 2, "stack": [ @@ -28024,7 +27558,7 @@ { "pc": 865, "op": "DUP6", - "gas": 1551201, + "gas": 1558088, "gasCost": 3, "depth": 2, "stack": [ @@ -28043,7 +27577,7 @@ { "pc": 866, "op": "ADD", - "gas": 1551198, + "gas": 1558085, "gasCost": 3, "depth": 2, "stack": [ @@ -28063,7 +27597,7 @@ { "pc": 867, "op": "PUSH2", - "gas": 1551195, + "gas": 1558082, "gasCost": 3, "depth": 2, "stack": [ @@ -28082,7 +27616,7 @@ { "pc": 870, "op": "JUMP", - "gas": 1551192, + "gas": 1558079, "gasCost": 8, "depth": 2, "stack": [ @@ -28102,7 +27636,7 @@ { "pc": 814, "op": "JUMPDEST", - "gas": 1551184, + "gas": 1558071, "gasCost": 1, "depth": 2, "stack": [ @@ -28121,7 +27655,7 @@ { "pc": 815, "op": "PUSH1", - "gas": 1551183, + "gas": 1558070, "gasCost": 3, "depth": 2, "stack": [ @@ -28140,7 +27674,7 @@ { "pc": 817, "op": "DUP2", - "gas": 1551180, + "gas": 1558067, "gasCost": 3, "depth": 2, "stack": [ @@ -28160,7 +27694,7 @@ { "pc": 818, "op": "CALLDATALOAD", - "gas": 1551177, + "gas": 1558064, "gasCost": 3, "depth": 2, "stack": [ @@ -28181,7 +27715,7 @@ { "pc": 819, "op": "SWAP1", - "gas": 1551174, + "gas": 1558061, "gasCost": 3, "depth": 2, "stack": [ @@ -28202,7 +27736,7 @@ { "pc": 820, "op": "POP", - "gas": 1551171, + "gas": 1558058, "gasCost": 2, "depth": 2, "stack": [ @@ -28223,7 +27757,7 @@ { "pc": 821, "op": "PUSH2", - "gas": 1551169, + "gas": 1558056, "gasCost": 3, "depth": 2, "stack": [ @@ -28243,7 +27777,7 @@ { "pc": 824, "op": "DUP2", - "gas": 1551166, + "gas": 1558053, "gasCost": 3, "depth": 2, "stack": [ @@ -28264,7 +27798,7 @@ { "pc": 825, "op": "PUSH2", - "gas": 1551163, + "gas": 1558050, "gasCost": 3, "depth": 2, "stack": [ @@ -28286,7 +27820,7 @@ { "pc": 828, "op": "JUMP", - "gas": 1551160, + "gas": 1558047, "gasCost": 8, "depth": 2, "stack": [ @@ -28309,7 +27843,7 @@ { "pc": 791, "op": "JUMPDEST", - "gas": 1551152, + "gas": 1558039, "gasCost": 1, "depth": 2, "stack": [ @@ -28331,7 +27865,7 @@ { "pc": 792, "op": "PUSH2", - "gas": 1551151, + "gas": 1558038, "gasCost": 3, "depth": 2, "stack": [ @@ -28353,7 +27887,7 @@ { "pc": 795, "op": "DUP2", - "gas": 1551148, + "gas": 1558035, "gasCost": 3, "depth": 2, "stack": [ @@ -28376,7 +27910,7 @@ { "pc": 796, "op": "PUSH2", - "gas": 1551145, + "gas": 1558032, "gasCost": 3, "depth": 2, "stack": [ @@ -28400,7 +27934,7 @@ { "pc": 799, "op": "JUMP", - "gas": 1551142, + "gas": 1558029, "gasCost": 8, "depth": 2, "stack": [ @@ -28425,7 +27959,7 @@ { "pc": 781, "op": "JUMPDEST", - "gas": 1551134, + "gas": 1558021, "gasCost": 1, "depth": 2, "stack": [ @@ -28449,7 +27983,7 @@ { "pc": 782, "op": "PUSH1", - "gas": 1551133, + "gas": 1558020, "gasCost": 3, "depth": 2, "stack": [ @@ -28473,7 +28007,7 @@ { "pc": 784, "op": "DUP2", - "gas": 1551130, + "gas": 1558017, "gasCost": 3, "depth": 2, "stack": [ @@ -28498,7 +28032,7 @@ { "pc": 785, "op": "SWAP1", - "gas": 1551127, + "gas": 1558014, "gasCost": 3, "depth": 2, "stack": [ @@ -28524,7 +28058,7 @@ { "pc": 786, "op": "POP", - "gas": 1551124, + "gas": 1558011, "gasCost": 2, "depth": 2, "stack": [ @@ -28550,7 +28084,7 @@ { "pc": 787, "op": "SWAP2", - "gas": 1551122, + "gas": 1558009, "gasCost": 3, "depth": 2, "stack": [ @@ -28575,7 +28109,7 @@ { "pc": 788, "op": "SWAP1", - "gas": 1551119, + "gas": 1558006, "gasCost": 3, "depth": 2, "stack": [ @@ -28600,7 +28134,7 @@ { "pc": 789, "op": "POP", - "gas": 1551116, + "gas": 1558003, "gasCost": 2, "depth": 2, "stack": [ @@ -28625,7 +28159,7 @@ { "pc": 790, "op": "JUMP", - "gas": 1551114, + "gas": 1558001, "gasCost": 8, "depth": 2, "stack": [ @@ -28649,7 +28183,7 @@ { "pc": 800, "op": "JUMPDEST", - "gas": 1551106, + "gas": 1557993, "gasCost": 1, "depth": 2, "stack": [ @@ -28672,7 +28206,7 @@ { "pc": 801, "op": "DUP2", - "gas": 1551105, + "gas": 1557992, "gasCost": 3, "depth": 2, "stack": [ @@ -28695,7 +28229,7 @@ { "pc": 802, "op": "EQ", - "gas": 1551102, + "gas": 1557989, "gasCost": 3, "depth": 2, "stack": [ @@ -28719,7 +28253,7 @@ { "pc": 803, "op": "PUSH2", - "gas": 1551099, + "gas": 1557986, "gasCost": 3, "depth": 2, "stack": [ @@ -28742,7 +28276,7 @@ { "pc": 806, "op": "JUMPI", - "gas": 1551096, + "gas": 1557983, "gasCost": 10, "depth": 2, "stack": [ @@ -28766,7 +28300,7 @@ { "pc": 811, "op": "JUMPDEST", - "gas": 1551086, + "gas": 1557973, "gasCost": 1, "depth": 2, "stack": [ @@ -28788,7 +28322,7 @@ { "pc": 812, "op": "POP", - "gas": 1551085, + "gas": 1557972, "gasCost": 2, "depth": 2, "stack": [ @@ -28810,7 +28344,7 @@ { "pc": 813, "op": "JUMP", - "gas": 1551083, + "gas": 1557970, "gasCost": 8, "depth": 2, "stack": [ @@ -28831,7 +28365,7 @@ { "pc": 829, "op": "JUMPDEST", - "gas": 1551075, + "gas": 1557962, "gasCost": 1, "depth": 2, "stack": [ @@ -28851,7 +28385,7 @@ { "pc": 830, "op": "SWAP3", - "gas": 1551074, + "gas": 1557961, "gasCost": 3, "depth": 2, "stack": [ @@ -28871,7 +28405,7 @@ { "pc": 831, "op": "SWAP2", - "gas": 1551071, + "gas": 1557958, "gasCost": 3, "depth": 2, "stack": [ @@ -28891,7 +28425,7 @@ { "pc": 832, "op": "POP", - "gas": 1551068, + "gas": 1557955, "gasCost": 2, "depth": 2, "stack": [ @@ -28911,7 +28445,7 @@ { "pc": 833, "op": "POP", - "gas": 1551066, + "gas": 1557953, "gasCost": 2, "depth": 2, "stack": [ @@ -28930,7 +28464,7 @@ { "pc": 834, "op": "JUMP", - "gas": 1551064, + "gas": 1557951, "gasCost": 8, "depth": 2, "stack": [ @@ -28948,7 +28482,7 @@ { "pc": 871, "op": "JUMPDEST", - "gas": 1551056, + "gas": 1557943, "gasCost": 1, "depth": 2, "stack": [ @@ -28965,7 +28499,7 @@ { "pc": 872, "op": "SWAP2", - "gas": 1551055, + "gas": 1557942, "gasCost": 3, "depth": 2, "stack": [ @@ -28982,7 +28516,7 @@ { "pc": 873, "op": "POP", - "gas": 1551052, + "gas": 1557939, "gasCost": 2, "depth": 2, "stack": [ @@ -28999,7 +28533,7 @@ { "pc": 874, "op": "POP", - "gas": 1551050, + "gas": 1557937, "gasCost": 2, "depth": 2, "stack": [ @@ -29015,7 +28549,7 @@ { "pc": 875, "op": "SWAP3", - "gas": 1551048, + "gas": 1557935, "gasCost": 3, "depth": 2, "stack": [ @@ -29030,7 +28564,7 @@ { "pc": 876, "op": "SWAP2", - "gas": 1551045, + "gas": 1557932, "gasCost": 3, "depth": 2, "stack": [ @@ -29045,7 +28579,7 @@ { "pc": 877, "op": "POP", - "gas": 1551042, + "gas": 1557929, "gasCost": 2, "depth": 2, "stack": [ @@ -29060,7 +28594,7 @@ { "pc": 878, "op": "POP", - "gas": 1551040, + "gas": 1557927, "gasCost": 2, "depth": 2, "stack": [ @@ -29074,7 +28608,7 @@ { "pc": 879, "op": "JUMP", - "gas": 1551038, + "gas": 1557925, "gasCost": 8, "depth": 2, "stack": [ @@ -29087,7 +28621,7 @@ { "pc": 212, "op": "JUMPDEST", - "gas": 1551030, + "gas": 1557917, "gasCost": 1, "depth": 2, "stack": [ @@ -29099,7 +28633,7 @@ { "pc": 213, "op": "PUSH2", - "gas": 1551029, + "gas": 1557916, "gasCost": 3, "depth": 2, "stack": [ @@ -29111,7 +28645,7 @@ { "pc": 216, "op": "JUMP", - "gas": 1551026, + "gas": 1557913, "gasCost": 8, "depth": 2, "stack": [ @@ -29124,7 +28658,7 @@ { "pc": 549, "op": "JUMPDEST", - "gas": 1551018, + "gas": 1557905, "gasCost": 1, "depth": 2, "stack": [ @@ -29136,7 +28670,7 @@ { "pc": 550, "op": "PUSH1", - "gas": 1551017, + "gas": 1557904, "gasCost": 3, "depth": 2, "stack": [ @@ -29148,7 +28682,7 @@ { "pc": 552, "op": "CALLER", - "gas": 1551014, + "gas": 1557901, "gasCost": 2, "depth": 2, "stack": [ @@ -29161,7 +28695,7 @@ { "pc": 553, "op": "PUSH20", - "gas": 1551012, + "gas": 1557899, "gasCost": 3, "depth": 2, "stack": [ @@ -29175,7 +28709,7 @@ { "pc": 574, "op": "AND", - "gas": 1551009, + "gas": 1557896, "gasCost": 3, "depth": 2, "stack": [ @@ -29190,7 +28724,7 @@ { "pc": 575, "op": "PUSH32", - "gas": 1551006, + "gas": 1557893, "gasCost": 3, "depth": 2, "stack": [ @@ -29204,7 +28738,7 @@ { "pc": 608, "op": "DUP4", - "gas": 1551003, + "gas": 1557890, "gasCost": 3, "depth": 2, "stack": [ @@ -29219,7 +28753,7 @@ { "pc": 609, "op": "PUSH1", - "gas": 1551000, + "gas": 1557887, "gasCost": 3, "depth": 2, "stack": [ @@ -29235,7 +28769,7 @@ { "pc": 611, "op": "MLOAD", - "gas": 1550997, + "gas": 1557884, "gasCost": 3, "depth": 2, "stack": [ @@ -29252,7 +28786,7 @@ { "pc": 612, "op": "PUSH2", - "gas": 1550994, + "gas": 1557881, "gasCost": 3, "depth": 2, "stack": [ @@ -29269,7 +28803,7 @@ { "pc": 615, "op": "SWAP2", - "gas": 1550991, + "gas": 1557878, "gasCost": 3, "depth": 2, "stack": [ @@ -29287,7 +28821,7 @@ { "pc": 616, "op": "SWAP1", - "gas": 1550988, + "gas": 1557875, "gasCost": 3, "depth": 2, "stack": [ @@ -29305,7 +28839,7 @@ { "pc": 617, "op": "PUSH2", - "gas": 1550985, + "gas": 1557872, "gasCost": 3, "depth": 2, "stack": [ @@ -29323,7 +28857,7 @@ { "pc": 620, "op": "JUMP", - "gas": 1550982, + "gas": 1557869, "gasCost": 8, "depth": 2, "stack": [ @@ -29336,13 +28870,13 @@ "0x26d", "0x3e8", "0x80", - "0x5ed" + "0x5cb" ] }, { - "pc": 1517, + "pc": 1483, "op": "JUMPDEST", - "gas": 1550974, + "gas": 1557861, "gasCost": 1, "depth": 2, "stack": [ @@ -29358,9 +28892,9 @@ ] }, { - "pc": 1518, + "pc": 1484, "op": "PUSH1", - "gas": 1550973, + "gas": 1557860, "gasCost": 3, "depth": 2, "stack": [ @@ -29376,9 +28910,9 @@ ] }, { - "pc": 1520, + "pc": 1486, "op": "PUSH1", - "gas": 1550970, + "gas": 1557857, "gasCost": 3, "depth": 2, "stack": [ @@ -29395,9 +28929,9 @@ ] }, { - "pc": 1522, + "pc": 1488, "op": "DUP3", - "gas": 1550967, + "gas": 1557854, "gasCost": 3, "depth": 2, "stack": [ @@ -29415,9 +28949,9 @@ ] }, { - "pc": 1523, + "pc": 1489, "op": "ADD", - "gas": 1550964, + "gas": 1557851, "gasCost": 3, "depth": 2, "stack": [ @@ -29436,9 +28970,9 @@ ] }, { - "pc": 1524, + "pc": 1490, "op": "SWAP1", - "gas": 1550961, + "gas": 1557848, "gasCost": 3, "depth": 2, "stack": [ @@ -29456,9 +28990,9 @@ ] }, { - "pc": 1525, + "pc": 1491, "op": "POP", - "gas": 1550958, + "gas": 1557845, "gasCost": 2, "depth": 2, "stack": [ @@ -29476,9 +29010,9 @@ ] }, { - "pc": 1526, + "pc": 1492, "op": "PUSH2", - "gas": 1550956, + "gas": 1557843, "gasCost": 3, "depth": 2, "stack": [ @@ -29495,9 +29029,9 @@ ] }, { - "pc": 1529, + "pc": 1495, "op": "PUSH1", - "gas": 1550953, + "gas": 1557840, "gasCost": 3, "depth": 2, "stack": [ @@ -29511,13 +29045,13 @@ "0x3e8", "0x80", "0xc0", - "0x602" + "0x5e0" ] }, { - "pc": 1531, + "pc": 1497, "op": "DUP4", - "gas": 1550950, + "gas": 1557837, "gasCost": 3, "depth": 2, "stack": [ @@ -29531,14 +29065,14 @@ "0x3e8", "0x80", "0xc0", - "0x602", + "0x5e0", "0x0" ] }, { - "pc": 1532, + "pc": 1498, "op": "ADD", - "gas": 1550947, + "gas": 1557834, "gasCost": 3, "depth": 2, "stack": [ @@ -29552,15 +29086,15 @@ "0x3e8", "0x80", "0xc0", - "0x602", + "0x5e0", "0x0", "0x80" ] }, { - "pc": 1533, + "pc": 1499, "op": "DUP5", - "gas": 1550944, + "gas": 1557831, "gasCost": 3, "depth": 2, "stack": [ @@ -29574,14 +29108,14 @@ "0x3e8", "0x80", "0xc0", - "0x602", + "0x5e0", "0x80" ] }, { - "pc": 1534, + "pc": 1500, "op": "PUSH2", - "gas": 1550941, + "gas": 1557828, "gasCost": 3, "depth": 2, "stack": [ @@ -29595,15 +29129,15 @@ "0x3e8", "0x80", "0xc0", - "0x602", + "0x5e0", "0x80", "0x3e8" ] }, { - "pc": 1537, + "pc": 1503, "op": "JUMP", - "gas": 1550938, + "gas": 1557825, "gasCost": 8, "depth": 2, "stack": [ @@ -29617,7 +29151,7 @@ "0x3e8", "0x80", "0xc0", - "0x602", + "0x5e0", "0x80", "0x3e8", "0x370" @@ -29626,7 +29160,7 @@ { "pc": 880, "op": "JUMPDEST", - "gas": 1550930, + "gas": 1557817, "gasCost": 1, "depth": 2, "stack": [ @@ -29640,7 +29174,7 @@ "0x3e8", "0x80", "0xc0", - "0x602", + "0x5e0", "0x80", "0x3e8" ] @@ -29648,7 +29182,7 @@ { "pc": 881, "op": "PUSH2", - "gas": 1550929, + "gas": 1557816, "gasCost": 3, "depth": 2, "stack": [ @@ -29662,7 +29196,7 @@ "0x3e8", "0x80", "0xc0", - "0x602", + "0x5e0", "0x80", "0x3e8" ] @@ -29670,7 +29204,7 @@ { "pc": 884, "op": "DUP2", - "gas": 1550926, + "gas": 1557813, "gasCost": 3, "depth": 2, "stack": [ @@ -29684,7 +29218,7 @@ "0x3e8", "0x80", "0xc0", - "0x602", + "0x5e0", "0x80", "0x3e8", "0x379" @@ -29693,7 +29227,7 @@ { "pc": 885, "op": "PUSH2", - "gas": 1550923, + "gas": 1557810, "gasCost": 3, "depth": 2, "stack": [ @@ -29707,7 +29241,7 @@ "0x3e8", "0x80", "0xc0", - "0x602", + "0x5e0", "0x80", "0x3e8", "0x379", @@ -29717,7 +29251,7 @@ { "pc": 888, "op": "JUMP", - "gas": 1550920, + "gas": 1557807, "gasCost": 8, "depth": 2, "stack": [ @@ -29731,7 +29265,7 @@ "0x3e8", "0x80", "0xc0", - "0x602", + "0x5e0", "0x80", "0x3e8", "0x379", @@ -29742,7 +29276,7 @@ { "pc": 781, "op": "JUMPDEST", - "gas": 1550912, + "gas": 1557799, "gasCost": 1, "depth": 2, "stack": [ @@ -29756,7 +29290,7 @@ "0x3e8", "0x80", "0xc0", - "0x602", + "0x5e0", "0x80", "0x3e8", "0x379", @@ -29766,7 +29300,7 @@ { "pc": 782, "op": "PUSH1", - "gas": 1550911, + "gas": 1557798, "gasCost": 3, "depth": 2, "stack": [ @@ -29780,7 +29314,7 @@ "0x3e8", "0x80", "0xc0", - "0x602", + "0x5e0", "0x80", "0x3e8", "0x379", @@ -29790,7 +29324,7 @@ { "pc": 784, "op": "DUP2", - "gas": 1550908, + "gas": 1557795, "gasCost": 3, "depth": 2, "stack": [ @@ -29804,7 +29338,7 @@ "0x3e8", "0x80", "0xc0", - "0x602", + "0x5e0", "0x80", "0x3e8", "0x379", @@ -29815,7 +29349,7 @@ { "pc": 785, "op": "SWAP1", - "gas": 1550905, + "gas": 1557792, "gasCost": 3, "depth": 2, "stack": [ @@ -29829,7 +29363,7 @@ "0x3e8", "0x80", "0xc0", - "0x602", + "0x5e0", "0x80", "0x3e8", "0x379", @@ -29841,7 +29375,7 @@ { "pc": 786, "op": "POP", - "gas": 1550902, + "gas": 1557789, "gasCost": 2, "depth": 2, "stack": [ @@ -29855,7 +29389,7 @@ "0x3e8", "0x80", "0xc0", - "0x602", + "0x5e0", "0x80", "0x3e8", "0x379", @@ -29867,7 +29401,7 @@ { "pc": 787, "op": "SWAP2", - "gas": 1550900, + "gas": 1557787, "gasCost": 3, "depth": 2, "stack": [ @@ -29881,7 +29415,7 @@ "0x3e8", "0x80", "0xc0", - "0x602", + "0x5e0", "0x80", "0x3e8", "0x379", @@ -29892,7 +29426,7 @@ { "pc": 788, "op": "SWAP1", - "gas": 1550897, + "gas": 1557784, "gasCost": 3, "depth": 2, "stack": [ @@ -29906,7 +29440,7 @@ "0x3e8", "0x80", "0xc0", - "0x602", + "0x5e0", "0x80", "0x3e8", "0x3e8", @@ -29917,7 +29451,7 @@ { "pc": 789, "op": "POP", - "gas": 1550894, + "gas": 1557781, "gasCost": 2, "depth": 2, "stack": [ @@ -29931,7 +29465,7 @@ "0x3e8", "0x80", "0xc0", - "0x602", + "0x5e0", "0x80", "0x3e8", "0x3e8", @@ -29942,7 +29476,7 @@ { "pc": 790, "op": "JUMP", - "gas": 1550892, + "gas": 1557779, "gasCost": 8, "depth": 2, "stack": [ @@ -29956,7 +29490,7 @@ "0x3e8", "0x80", "0xc0", - "0x602", + "0x5e0", "0x80", "0x3e8", "0x3e8", @@ -29966,7 +29500,7 @@ { "pc": 889, "op": "JUMPDEST", - "gas": 1550884, + "gas": 1557771, "gasCost": 1, "depth": 2, "stack": [ @@ -29980,7 +29514,7 @@ "0x3e8", "0x80", "0xc0", - "0x602", + "0x5e0", "0x80", "0x3e8", "0x3e8" @@ -29989,7 +29523,7 @@ { "pc": 890, "op": "DUP3", - "gas": 1550883, + "gas": 1557770, "gasCost": 3, "depth": 2, "stack": [ @@ -30003,7 +29537,7 @@ "0x3e8", "0x80", "0xc0", - "0x602", + "0x5e0", "0x80", "0x3e8", "0x3e8" @@ -30012,7 +29546,7 @@ { "pc": 891, "op": "MSTORE", - "gas": 1550880, + "gas": 1557767, "gasCost": 9, "depth": 2, "stack": [ @@ -30026,7 +29560,7 @@ "0x3e8", "0x80", "0xc0", - "0x602", + "0x5e0", "0x80", "0x3e8", "0x3e8", @@ -30036,7 +29570,7 @@ { "pc": 892, "op": "POP", - "gas": 1550871, + "gas": 1557758, "gasCost": 2, "depth": 2, "stack": [ @@ -30050,7 +29584,7 @@ "0x3e8", "0x80", "0xc0", - "0x602", + "0x5e0", "0x80", "0x3e8" ] @@ -30058,7 +29592,7 @@ { "pc": 893, "op": "POP", - "gas": 1550869, + "gas": 1557756, "gasCost": 2, "depth": 2, "stack": [ @@ -30072,14 +29606,14 @@ "0x3e8", "0x80", "0xc0", - "0x602", + "0x5e0", "0x80" ] }, { "pc": 894, "op": "JUMP", - "gas": 1550867, + "gas": 1557754, "gasCost": 8, "depth": 2, "stack": [ @@ -30093,13 +29627,13 @@ "0x3e8", "0x80", "0xc0", - "0x602" + "0x5e0" ] }, { - "pc": 1538, + "pc": 1504, "op": "JUMPDEST", - "gas": 1550859, + "gas": 1557746, "gasCost": 1, "depth": 2, "stack": [ @@ -30116,9 +29650,9 @@ ] }, { - "pc": 1539, + "pc": 1505, "op": "DUP2", - "gas": 1550858, + "gas": 1557745, "gasCost": 3, "depth": 2, "stack": [ @@ -30135,9 +29669,9 @@ ] }, { - "pc": 1540, + "pc": 1506, "op": "DUP2", - "gas": 1550855, + "gas": 1557742, "gasCost": 3, "depth": 2, "stack": [ @@ -30155,9 +29689,9 @@ ] }, { - "pc": 1541, + "pc": 1507, "op": "SUB", - "gas": 1550852, + "gas": 1557739, "gasCost": 3, "depth": 2, "stack": [ @@ -30176,9 +29710,9 @@ ] }, { - "pc": 1542, + "pc": 1508, "op": "PUSH1", - "gas": 1550849, + "gas": 1557736, "gasCost": 3, "depth": 2, "stack": [ @@ -30196,9 +29730,9 @@ ] }, { - "pc": 1544, + "pc": 1510, "op": "DUP4", - "gas": 1550846, + "gas": 1557733, "gasCost": 3, "depth": 2, "stack": [ @@ -30217,9 +29751,9 @@ ] }, { - "pc": 1545, + "pc": 1511, "op": "ADD", - "gas": 1550843, + "gas": 1557730, "gasCost": 3, "depth": 2, "stack": [ @@ -30239,9 +29773,9 @@ ] }, { - "pc": 1546, + "pc": 1512, "op": "MSTORE", - "gas": 1550840, + "gas": 1557727, "gasCost": 6, "depth": 2, "stack": [ @@ -30260,9 +29794,9 @@ ] }, { - "pc": 1547, + "pc": 1513, "op": "PUSH2", - "gas": 1550834, + "gas": 1557721, "gasCost": 3, "depth": 2, "stack": [ @@ -30279,9 +29813,9 @@ ] }, { - "pc": 1550, + "pc": 1516, "op": "DUP2", - "gas": 1550831, + "gas": 1557718, "gasCost": 3, "depth": 2, "stack": [ @@ -30295,13 +29829,13 @@ "0x3e8", "0x80", "0xc0", - "0x613" + "0x5f1" ] }, { - "pc": 1551, + "pc": 1517, "op": "PUSH2", - "gas": 1550828, + "gas": 1557715, "gasCost": 3, "depth": 2, "stack": [ @@ -30315,14 +29849,14 @@ "0x3e8", "0x80", "0xc0", - "0x613", + "0x5f1", "0xc0" ] }, { - "pc": 1554, + "pc": 1520, "op": "JUMP", - "gas": 1550825, + "gas": 1557712, "gasCost": 8, "depth": 2, "stack": [ @@ -30336,15 +29870,15 @@ "0x3e8", "0x80", "0xc0", - "0x613", + "0x5f1", "0xc0", - "0x5ca" + "0x5a8" ] }, { - "pc": 1482, + "pc": 1448, "op": "JUMPDEST", - "gas": 1550817, + "gas": 1557704, "gasCost": 1, "depth": 2, "stack": [ @@ -30358,14 +29892,14 @@ "0x3e8", "0x80", "0xc0", - "0x613", + "0x5f1", "0xc0" ] }, { - "pc": 1483, + "pc": 1449, "op": "PUSH1", - "gas": 1550816, + "gas": 1557703, "gasCost": 3, "depth": 2, "stack": [ @@ -30379,14 +29913,14 @@ "0x3e8", "0x80", "0xc0", - "0x613", + "0x5f1", "0xc0" ] }, { - "pc": 1485, + "pc": 1451, "op": "PUSH2", - "gas": 1550813, + "gas": 1557700, "gasCost": 3, "depth": 2, "stack": [ @@ -30400,15 +29934,15 @@ "0x3e8", "0x80", "0xc0", - "0x613", + "0x5f1", "0xc0", "0x0" ] }, { - "pc": 1488, + "pc": 1454, "op": "PUSH1", - "gas": 1550810, + "gas": 1557697, "gasCost": 3, "depth": 2, "stack": [ @@ -30422,16 +29956,16 @@ "0x3e8", "0x80", "0xc0", - "0x613", + "0x5f1", "0xc0", "0x0", - "0x5d7" + "0x5b5" ] }, { - "pc": 1490, + "pc": 1456, "op": "DUP4", - "gas": 1550807, + "gas": 1557694, "gasCost": 3, "depth": 2, "stack": [ @@ -30445,17 +29979,17 @@ "0x3e8", "0x80", "0xc0", - "0x613", + "0x5f1", "0xc0", "0x0", - "0x5d7", + "0x5b5", "0x5" ] }, { - "pc": 1491, + "pc": 1457, "op": "PUSH2", - "gas": 1550804, + "gas": 1557691, "gasCost": 3, "depth": 2, "stack": [ @@ -30469,18 +30003,18 @@ "0x3e8", "0x80", "0xc0", - "0x613", + "0x5f1", "0xc0", "0x0", - "0x5d7", + "0x5b5", "0x5", "0xc0" ] }, { - "pc": 1494, + "pc": 1460, "op": "JUMP", - "gas": 1550801, + "gas": 1557688, "gasCost": 8, "depth": 2, "stack": [ @@ -30494,10 +30028,10 @@ "0x3e8", "0x80", "0xc0", - "0x613", + "0x5f1", "0xc0", "0x0", - "0x5d7", + "0x5b5", "0x5", "0xc0", "0x425" @@ -30506,7 +30040,7 @@ { "pc": 1061, "op": "JUMPDEST", - "gas": 1550793, + "gas": 1557680, "gasCost": 1, "depth": 2, "stack": [ @@ -30520,10 +30054,10 @@ "0x3e8", "0x80", "0xc0", - "0x613", + "0x5f1", "0xc0", "0x0", - "0x5d7", + "0x5b5", "0x5", "0xc0" ] @@ -30531,7 +30065,7 @@ { "pc": 1062, "op": "PUSH1", - "gas": 1550792, + "gas": 1557679, "gasCost": 3, "depth": 2, "stack": [ @@ -30545,10 +30079,10 @@ "0x3e8", "0x80", "0xc0", - "0x613", + "0x5f1", "0xc0", "0x0", - "0x5d7", + "0x5b5", "0x5", "0xc0" ] @@ -30556,7 +30090,7 @@ { "pc": 1064, "op": "DUP3", - "gas": 1550789, + "gas": 1557676, "gasCost": 3, "depth": 2, "stack": [ @@ -30570,10 +30104,10 @@ "0x3e8", "0x80", "0xc0", - "0x613", + "0x5f1", "0xc0", "0x0", - "0x5d7", + "0x5b5", "0x5", "0xc0", "0x0" @@ -30582,7 +30116,7 @@ { "pc": 1065, "op": "DUP3", - "gas": 1550786, + "gas": 1557673, "gasCost": 3, "depth": 2, "stack": [ @@ -30596,10 +30130,10 @@ "0x3e8", "0x80", "0xc0", - "0x613", + "0x5f1", "0xc0", "0x0", - "0x5d7", + "0x5b5", "0x5", "0xc0", "0x0", @@ -30609,7 +30143,7 @@ { "pc": 1066, "op": "MSTORE", - "gas": 1550783, + "gas": 1557670, "gasCost": 6, "depth": 2, "stack": [ @@ -30623,10 +30157,10 @@ "0x3e8", "0x80", "0xc0", - "0x613", + "0x5f1", "0xc0", "0x0", - "0x5d7", + "0x5b5", "0x5", "0xc0", "0x0", @@ -30637,7 +30171,7 @@ { "pc": 1067, "op": "PUSH1", - "gas": 1550777, + "gas": 1557664, "gasCost": 3, "depth": 2, "stack": [ @@ -30651,10 +30185,10 @@ "0x3e8", "0x80", "0xc0", - "0x613", + "0x5f1", "0xc0", "0x0", - "0x5d7", + "0x5b5", "0x5", "0xc0", "0x0" @@ -30663,7 +30197,7 @@ { "pc": 1069, "op": "DUP3", - "gas": 1550774, + "gas": 1557661, "gasCost": 3, "depth": 2, "stack": [ @@ -30677,10 +30211,10 @@ "0x3e8", "0x80", "0xc0", - "0x613", + "0x5f1", "0xc0", "0x0", - "0x5d7", + "0x5b5", "0x5", "0xc0", "0x0", @@ -30690,7 +30224,7 @@ { "pc": 1070, "op": "ADD", - "gas": 1550771, + "gas": 1557658, "gasCost": 3, "depth": 2, "stack": [ @@ -30704,10 +30238,10 @@ "0x3e8", "0x80", "0xc0", - "0x613", + "0x5f1", "0xc0", "0x0", - "0x5d7", + "0x5b5", "0x5", "0xc0", "0x0", @@ -30718,7 +30252,7 @@ { "pc": 1071, "op": "SWAP1", - "gas": 1550768, + "gas": 1557655, "gasCost": 3, "depth": 2, "stack": [ @@ -30732,10 +30266,10 @@ "0x3e8", "0x80", "0xc0", - "0x613", + "0x5f1", "0xc0", "0x0", - "0x5d7", + "0x5b5", "0x5", "0xc0", "0x0", @@ -30745,7 +30279,7 @@ { "pc": 1072, "op": "POP", - "gas": 1550765, + "gas": 1557652, "gasCost": 2, "depth": 2, "stack": [ @@ -30759,10 +30293,10 @@ "0x3e8", "0x80", "0xc0", - "0x613", + "0x5f1", "0xc0", "0x0", - "0x5d7", + "0x5b5", "0x5", "0xc0", "0xe0", @@ -30772,7 +30306,7 @@ { "pc": 1073, "op": "SWAP3", - "gas": 1550763, + "gas": 1557650, "gasCost": 3, "depth": 2, "stack": [ @@ -30786,10 +30320,10 @@ "0x3e8", "0x80", "0xc0", - "0x613", + "0x5f1", "0xc0", "0x0", - "0x5d7", + "0x5b5", "0x5", "0xc0", "0xe0" @@ -30798,7 +30332,7 @@ { "pc": 1074, "op": "SWAP2", - "gas": 1550760, + "gas": 1557647, "gasCost": 3, "depth": 2, "stack": [ @@ -30812,19 +30346,19 @@ "0x3e8", "0x80", "0xc0", - "0x613", + "0x5f1", "0xc0", "0x0", "0xe0", "0x5", "0xc0", - "0x5d7" + "0x5b5" ] }, { "pc": 1075, "op": "POP", - "gas": 1550757, + "gas": 1557644, "gasCost": 2, "depth": 2, "stack": [ @@ -30838,11 +30372,11 @@ "0x3e8", "0x80", "0xc0", - "0x613", + "0x5f1", "0xc0", "0x0", "0xe0", - "0x5d7", + "0x5b5", "0xc0", "0x5" ] @@ -30850,7 +30384,7 @@ { "pc": 1076, "op": "POP", - "gas": 1550755, + "gas": 1557642, "gasCost": 2, "depth": 2, "stack": [ @@ -30864,18 +30398,18 @@ "0x3e8", "0x80", "0xc0", - "0x613", + "0x5f1", "0xc0", "0x0", "0xe0", - "0x5d7", + "0x5b5", "0xc0" ] }, { "pc": 1077, "op": "JUMP", - "gas": 1550753, + "gas": 1557640, "gasCost": 8, "depth": 2, "stack": [ @@ -30889,17 +30423,17 @@ "0x3e8", "0x80", "0xc0", - "0x613", + "0x5f1", "0xc0", "0x0", "0xe0", - "0x5d7" + "0x5b5" ] }, { - "pc": 1495, + "pc": 1461, "op": "JUMPDEST", - "gas": 1550745, + "gas": 1557632, "gasCost": 1, "depth": 2, "stack": [ @@ -30913,16 +30447,16 @@ "0x3e8", "0x80", "0xc0", - "0x613", + "0x5f1", "0xc0", "0x0", "0xe0" ] }, { - "pc": 1496, + "pc": 1462, "op": "SWAP2", - "gas": 1550744, + "gas": 1557631, "gasCost": 3, "depth": 2, "stack": [ @@ -30936,16 +30470,16 @@ "0x3e8", "0x80", "0xc0", - "0x613", + "0x5f1", "0xc0", "0x0", "0xe0" ] }, { - "pc": 1497, + "pc": 1463, "op": "POP", - "gas": 1550741, + "gas": 1557628, "gasCost": 2, "depth": 2, "stack": [ @@ -30959,16 +30493,16 @@ "0x3e8", "0x80", "0xc0", - "0x613", + "0x5f1", "0xe0", "0x0", "0xc0" ] }, { - "pc": 1498, + "pc": 1464, "op": "PUSH2", - "gas": 1550739, + "gas": 1557626, "gasCost": 3, "depth": 2, "stack": [ @@ -30982,15 +30516,15 @@ "0x3e8", "0x80", "0xc0", - "0x613", + "0x5f1", "0xe0", "0x0" ] }, { - "pc": 1501, + "pc": 1467, "op": "DUP3", - "gas": 1550736, + "gas": 1557623, "gasCost": 3, "depth": 2, "stack": [ @@ -31004,16 +30538,16 @@ "0x3e8", "0x80", "0xc0", - "0x613", + "0x5f1", "0xe0", "0x0", - "0x5e2" + "0x5c0" ] }, { - "pc": 1502, + "pc": 1468, "op": "PUSH2", - "gas": 1550733, + "gas": 1557620, "gasCost": 3, "depth": 2, "stack": [ @@ -31027,17 +30561,17 @@ "0x3e8", "0x80", "0xc0", - "0x613", + "0x5f1", "0xe0", "0x0", - "0x5e2", + "0x5c0", "0xe0" ] }, { - "pc": 1505, + "pc": 1471, "op": "JUMP", - "gas": 1550730, + "gas": 1557617, "gasCost": 8, "depth": 2, "stack": [ @@ -31051,18 +30585,18 @@ "0x3e8", "0x80", "0xc0", - "0x613", + "0x5f1", "0xe0", "0x0", - "0x5e2", + "0x5c0", "0xe0", - "0x5a1" + "0x57f" ] }, { - "pc": 1441, + "pc": 1407, "op": "JUMPDEST", - "gas": 1550722, + "gas": 1557609, "gasCost": 1, "depth": 2, "stack": [ @@ -31076,17 +30610,17 @@ "0x3e8", "0x80", "0xc0", - "0x613", + "0x5f1", "0xe0", "0x0", - "0x5e2", + "0x5c0", "0xe0" ] }, { - "pc": 1442, + "pc": 1408, "op": "PUSH32", - "gas": 1550721, + "gas": 1557608, "gasCost": 3, "depth": 2, "stack": [ @@ -31100,17 +30634,17 @@ "0x3e8", "0x80", "0xc0", - "0x613", + "0x5f1", "0xe0", "0x0", - "0x5e2", + "0x5c0", "0xe0" ] }, { - "pc": 1475, + "pc": 1441, "op": "PUSH1", - "gas": 1550718, + "gas": 1557605, "gasCost": 3, "depth": 2, "stack": [ @@ -31124,18 +30658,18 @@ "0x3e8", "0x80", "0xc0", - "0x613", + "0x5f1", "0xe0", "0x0", - "0x5e2", + "0x5c0", "0xe0", "0x746f706963000000000000000000000000000000000000000000000000000000" ] }, { - "pc": 1477, + "pc": 1443, "op": "DUP3", - "gas": 1550715, + "gas": 1557602, "gasCost": 3, "depth": 2, "stack": [ @@ -31149,19 +30683,19 @@ "0x3e8", "0x80", "0xc0", - "0x613", + "0x5f1", "0xe0", "0x0", - "0x5e2", + "0x5c0", "0xe0", "0x746f706963000000000000000000000000000000000000000000000000000000", "0x0" ] }, { - "pc": 1478, + "pc": 1444, "op": "ADD", - "gas": 1550712, + "gas": 1557599, "gasCost": 3, "depth": 2, "stack": [ @@ -31175,10 +30709,10 @@ "0x3e8", "0x80", "0xc0", - "0x613", + "0x5f1", "0xe0", "0x0", - "0x5e2", + "0x5c0", "0xe0", "0x746f706963000000000000000000000000000000000000000000000000000000", "0x0", @@ -31186,9 +30720,9 @@ ] }, { - "pc": 1479, + "pc": 1445, "op": "MSTORE", - "gas": 1550709, + "gas": 1557596, "gasCost": 6, "depth": 2, "stack": [ @@ -31202,19 +30736,19 @@ "0x3e8", "0x80", "0xc0", - "0x613", + "0x5f1", "0xe0", "0x0", - "0x5e2", + "0x5c0", "0xe0", "0x746f706963000000000000000000000000000000000000000000000000000000", "0xe0" ] }, { - "pc": 1480, + "pc": 1446, "op": "POP", - "gas": 1550703, + "gas": 1557590, "gasCost": 2, "depth": 2, "stack": [ @@ -31228,17 +30762,17 @@ "0x3e8", "0x80", "0xc0", - "0x613", + "0x5f1", "0xe0", "0x0", - "0x5e2", + "0x5c0", "0xe0" ] }, { - "pc": 1481, + "pc": 1447, "op": "JUMP", - "gas": 1550701, + "gas": 1557588, "gasCost": 8, "depth": 2, "stack": [ @@ -31252,16 +30786,16 @@ "0x3e8", "0x80", "0xc0", - "0x613", + "0x5f1", "0xe0", "0x0", - "0x5e2" + "0x5c0" ] }, { - "pc": 1506, + "pc": 1472, "op": "JUMPDEST", - "gas": 1550693, + "gas": 1557580, "gasCost": 1, "depth": 2, "stack": [ @@ -31275,15 +30809,15 @@ "0x3e8", "0x80", "0xc0", - "0x613", + "0x5f1", "0xe0", "0x0" ] }, { - "pc": 1507, + "pc": 1473, "op": "PUSH1", - "gas": 1550692, + "gas": 1557579, "gasCost": 3, "depth": 2, "stack": [ @@ -31297,15 +30831,15 @@ "0x3e8", "0x80", "0xc0", - "0x613", + "0x5f1", "0xe0", "0x0" ] }, { - "pc": 1509, + "pc": 1475, "op": "DUP3", - "gas": 1550689, + "gas": 1557576, "gasCost": 3, "depth": 2, "stack": [ @@ -31319,16 +30853,16 @@ "0x3e8", "0x80", "0xc0", - "0x613", + "0x5f1", "0xe0", "0x0", "0x20" ] }, { - "pc": 1510, + "pc": 1476, "op": "ADD", - "gas": 1550686, + "gas": 1557573, "gasCost": 3, "depth": 2, "stack": [ @@ -31342,7 +30876,7 @@ "0x3e8", "0x80", "0xc0", - "0x613", + "0x5f1", "0xe0", "0x0", "0x20", @@ -31350,9 +30884,9 @@ ] }, { - "pc": 1511, + "pc": 1477, "op": "SWAP1", - "gas": 1550683, + "gas": 1557570, "gasCost": 3, "depth": 2, "stack": [ @@ -31366,16 +30900,16 @@ "0x3e8", "0x80", "0xc0", - "0x613", + "0x5f1", "0xe0", "0x0", "0x100" ] }, { - "pc": 1512, + "pc": 1478, "op": "POP", - "gas": 1550680, + "gas": 1557567, "gasCost": 2, "depth": 2, "stack": [ @@ -31389,16 +30923,16 @@ "0x3e8", "0x80", "0xc0", - "0x613", + "0x5f1", "0xe0", "0x100", "0x0" ] }, { - "pc": 1513, + "pc": 1479, "op": "SWAP2", - "gas": 1550678, + "gas": 1557565, "gasCost": 3, "depth": 2, "stack": [ @@ -31412,15 +30946,15 @@ "0x3e8", "0x80", "0xc0", - "0x613", + "0x5f1", "0xe0", "0x100" ] }, { - "pc": 1514, + "pc": 1480, "op": "SWAP1", - "gas": 1550675, + "gas": 1557562, "gasCost": 3, "depth": 2, "stack": [ @@ -31436,13 +30970,13 @@ "0xc0", "0x100", "0xe0", - "0x613" + "0x5f1" ] }, { - "pc": 1515, + "pc": 1481, "op": "POP", - "gas": 1550672, + "gas": 1557559, "gasCost": 2, "depth": 2, "stack": [ @@ -31457,14 +30991,14 @@ "0x80", "0xc0", "0x100", - "0x613", + "0x5f1", "0xe0" ] }, { - "pc": 1516, + "pc": 1482, "op": "JUMP", - "gas": 1550670, + "gas": 1557557, "gasCost": 8, "depth": 2, "stack": [ @@ -31479,13 +31013,13 @@ "0x80", "0xc0", "0x100", - "0x613" + "0x5f1" ] }, { - "pc": 1555, + "pc": 1521, "op": "JUMPDEST", - "gas": 1550662, + "gas": 1557549, "gasCost": 1, "depth": 2, "stack": [ @@ -31503,9 +31037,9 @@ ] }, { - "pc": 1556, + "pc": 1522, "op": "SWAP1", - "gas": 1550661, + "gas": 1557548, "gasCost": 3, "depth": 2, "stack": [ @@ -31523,9 +31057,9 @@ ] }, { - "pc": 1557, + "pc": 1523, "op": "POP", - "gas": 1550658, + "gas": 1557545, "gasCost": 2, "depth": 2, "stack": [ @@ -31543,9 +31077,9 @@ ] }, { - "pc": 1558, + "pc": 1524, "op": "SWAP3", - "gas": 1550656, + "gas": 1557543, "gasCost": 3, "depth": 2, "stack": [ @@ -31562,9 +31096,9 @@ ] }, { - "pc": 1559, + "pc": 1525, "op": "SWAP2", - "gas": 1550653, + "gas": 1557540, "gasCost": 3, "depth": 2, "stack": [ @@ -31581,9 +31115,9 @@ ] }, { - "pc": 1560, + "pc": 1526, "op": "POP", - "gas": 1550650, + "gas": 1557537, "gasCost": 2, "depth": 2, "stack": [ @@ -31600,9 +31134,9 @@ ] }, { - "pc": 1561, + "pc": 1527, "op": "POP", - "gas": 1550648, + "gas": 1557535, "gasCost": 2, "depth": 2, "stack": [ @@ -31618,9 +31152,9 @@ ] }, { - "pc": 1562, + "pc": 1528, "op": "JUMP", - "gas": 1550646, + "gas": 1557533, "gasCost": 8, "depth": 2, "stack": [ @@ -31637,7 +31171,7 @@ { "pc": 621, "op": "JUMPDEST", - "gas": 1550638, + "gas": 1557525, "gasCost": 1, "depth": 2, "stack": [ @@ -31653,7 +31187,7 @@ { "pc": 622, "op": "PUSH1", - "gas": 1550637, + "gas": 1557524, "gasCost": 3, "depth": 2, "stack": [ @@ -31669,7 +31203,7 @@ { "pc": 624, "op": "MLOAD", - "gas": 1550634, + "gas": 1557521, "gasCost": 3, "depth": 2, "stack": [ @@ -31686,7 +31220,7 @@ { "pc": 625, "op": "DUP1", - "gas": 1550631, + "gas": 1557518, "gasCost": 3, "depth": 2, "stack": [ @@ -31703,7 +31237,7 @@ { "pc": 626, "op": "SWAP2", - "gas": 1550628, + "gas": 1557515, "gasCost": 3, "depth": 2, "stack": [ @@ -31721,7 +31255,7 @@ { "pc": 627, "op": "SUB", - "gas": 1550625, + "gas": 1557512, "gasCost": 3, "depth": 2, "stack": [ @@ -31739,7 +31273,7 @@ { "pc": 628, "op": "SWAP1", - "gas": 1550622, + "gas": 1557509, "gasCost": 3, "depth": 2, "stack": [ @@ -31756,7 +31290,7 @@ { "pc": 629, "op": "LOG2", - "gas": 1550619, + "gas": 1557506, "gasCost": 2149, "depth": 2, "stack": [ @@ -31773,7 +31307,7 @@ { "pc": 630, "op": "DUP2", - "gas": 1548470, + "gas": 1555357, "gasCost": 3, "depth": 2, "stack": [ @@ -31786,7 +31320,7 @@ { "pc": 631, "op": "PUSH1", - "gas": 1548467, + "gas": 1555354, "gasCost": 3, "depth": 2, "stack": [ @@ -31800,7 +31334,7 @@ { "pc": 633, "op": "DUP1", - "gas": 1548464, + "gas": 1555351, "gasCost": 3, "depth": 2, "stack": [ @@ -31815,7 +31349,7 @@ { "pc": 634, "op": "DUP3", - "gas": 1548461, + "gas": 1555348, "gasCost": 3, "depth": 2, "stack": [ @@ -31831,7 +31365,7 @@ { "pc": 635, "op": "DUP3", - "gas": 1548458, + "gas": 1555345, "gasCost": 3, "depth": 2, "stack": [ @@ -31848,7 +31382,7 @@ { "pc": 636, "op": "SLOAD", - "gas": 1548455, + "gas": 1555342, "gasCost": 100, "depth": 2, "stack": [ @@ -31871,7 +31405,7 @@ { "pc": 637, "op": "PUSH2", - "gas": 1548355, + "gas": 1555242, "gasCost": 3, "depth": 2, "stack": [ @@ -31889,7 +31423,7 @@ { "pc": 640, "op": "SWAP2", - "gas": 1548352, + "gas": 1555239, "gasCost": 3, "depth": 2, "stack": [ @@ -31908,7 +31442,7 @@ { "pc": 641, "op": "SWAP1", - "gas": 1548349, + "gas": 1555236, "gasCost": 3, "depth": 2, "stack": [ @@ -31927,7 +31461,7 @@ { "pc": 642, "op": "PUSH2", - "gas": 1548346, + "gas": 1555233, "gasCost": 3, "depth": 2, "stack": [ @@ -31946,7 +31480,7 @@ { "pc": 645, "op": "JUMP", - "gas": 1548343, + "gas": 1555230, "gasCost": 8, "depth": 2, "stack": [ @@ -31966,7 +31500,7 @@ { "pc": 1247, "op": "JUMPDEST", - "gas": 1548335, + "gas": 1555222, "gasCost": 1, "depth": 2, "stack": [ @@ -31985,7 +31519,7 @@ { "pc": 1248, "op": "PUSH1", - "gas": 1548334, + "gas": 1555221, "gasCost": 3, "depth": 2, "stack": [ @@ -32004,7 +31538,7 @@ { "pc": 1250, "op": "PUSH2", - "gas": 1548331, + "gas": 1555218, "gasCost": 3, "depth": 2, "stack": [ @@ -32024,7 +31558,7 @@ { "pc": 1253, "op": "DUP3", - "gas": 1548328, + "gas": 1555215, "gasCost": 3, "depth": 2, "stack": [ @@ -32045,7 +31579,7 @@ { "pc": 1254, "op": "PUSH2", - "gas": 1548325, + "gas": 1555212, "gasCost": 3, "depth": 2, "stack": [ @@ -32067,7 +31601,7 @@ { "pc": 1257, "op": "JUMP", - "gas": 1548322, + "gas": 1555209, "gasCost": 8, "depth": 2, "stack": [ @@ -32090,7 +31624,7 @@ { "pc": 781, "op": "JUMPDEST", - "gas": 1548314, + "gas": 1555201, "gasCost": 1, "depth": 2, "stack": [ @@ -32112,7 +31646,7 @@ { "pc": 782, "op": "PUSH1", - "gas": 1548313, + "gas": 1555200, "gasCost": 3, "depth": 2, "stack": [ @@ -32134,7 +31668,7 @@ { "pc": 784, "op": "DUP2", - "gas": 1548310, + "gas": 1555197, "gasCost": 3, "depth": 2, "stack": [ @@ -32157,7 +31691,7 @@ { "pc": 785, "op": "SWAP1", - "gas": 1548307, + "gas": 1555194, "gasCost": 3, "depth": 2, "stack": [ @@ -32181,7 +31715,7 @@ { "pc": 786, "op": "POP", - "gas": 1548304, + "gas": 1555191, "gasCost": 2, "depth": 2, "stack": [ @@ -32205,7 +31739,7 @@ { "pc": 787, "op": "SWAP2", - "gas": 1548302, + "gas": 1555189, "gasCost": 3, "depth": 2, "stack": [ @@ -32228,7 +31762,7 @@ { "pc": 788, "op": "SWAP1", - "gas": 1548299, + "gas": 1555186, "gasCost": 3, "depth": 2, "stack": [ @@ -32251,7 +31785,7 @@ { "pc": 789, "op": "POP", - "gas": 1548296, + "gas": 1555183, "gasCost": 2, "depth": 2, "stack": [ @@ -32274,7 +31808,7 @@ { "pc": 790, "op": "JUMP", - "gas": 1548294, + "gas": 1555181, "gasCost": 8, "depth": 2, "stack": [ @@ -32296,7 +31830,7 @@ { "pc": 1258, "op": "JUMPDEST", - "gas": 1548286, + "gas": 1555173, "gasCost": 1, "depth": 2, "stack": [ @@ -32317,7 +31851,7 @@ { "pc": 1259, "op": "SWAP2", - "gas": 1548285, + "gas": 1555172, "gasCost": 3, "depth": 2, "stack": [ @@ -32338,7 +31872,7 @@ { "pc": 1260, "op": "POP", - "gas": 1548282, + "gas": 1555169, "gasCost": 2, "depth": 2, "stack": [ @@ -32359,7 +31893,7 @@ { "pc": 1261, "op": "PUSH2", - "gas": 1548280, + "gas": 1555167, "gasCost": 3, "depth": 2, "stack": [ @@ -32379,7 +31913,7 @@ { "pc": 1264, "op": "DUP4", - "gas": 1548277, + "gas": 1555164, "gasCost": 3, "depth": 2, "stack": [ @@ -32400,7 +31934,7 @@ { "pc": 1265, "op": "PUSH2", - "gas": 1548274, + "gas": 1555161, "gasCost": 3, "depth": 2, "stack": [ @@ -32422,7 +31956,7 @@ { "pc": 1268, "op": "JUMP", - "gas": 1548271, + "gas": 1555158, "gasCost": 8, "depth": 2, "stack": [ @@ -32445,7 +31979,7 @@ { "pc": 781, "op": "JUMPDEST", - "gas": 1548263, + "gas": 1555150, "gasCost": 1, "depth": 2, "stack": [ @@ -32467,7 +32001,7 @@ { "pc": 782, "op": "PUSH1", - "gas": 1548262, + "gas": 1555149, "gasCost": 3, "depth": 2, "stack": [ @@ -32489,7 +32023,7 @@ { "pc": 784, "op": "DUP2", - "gas": 1548259, + "gas": 1555146, "gasCost": 3, "depth": 2, "stack": [ @@ -32512,7 +32046,7 @@ { "pc": 785, "op": "SWAP1", - "gas": 1548256, + "gas": 1555143, "gasCost": 3, "depth": 2, "stack": [ @@ -32536,7 +32070,7 @@ { "pc": 786, "op": "POP", - "gas": 1548253, + "gas": 1555140, "gasCost": 2, "depth": 2, "stack": [ @@ -32560,7 +32094,7 @@ { "pc": 787, "op": "SWAP2", - "gas": 1548251, + "gas": 1555138, "gasCost": 3, "depth": 2, "stack": [ @@ -32583,7 +32117,7 @@ { "pc": 788, "op": "SWAP1", - "gas": 1548248, + "gas": 1555135, "gasCost": 3, "depth": 2, "stack": [ @@ -32606,7 +32140,7 @@ { "pc": 789, "op": "POP", - "gas": 1548245, + "gas": 1555132, "gasCost": 2, "depth": 2, "stack": [ @@ -32629,7 +32163,7 @@ { "pc": 790, "op": "JUMP", - "gas": 1548243, + "gas": 1555130, "gasCost": 8, "depth": 2, "stack": [ @@ -32651,7 +32185,7 @@ { "pc": 1269, "op": "JUMPDEST", - "gas": 1548235, + "gas": 1555122, "gasCost": 1, "depth": 2, "stack": [ @@ -32672,7 +32206,7 @@ { "pc": 1270, "op": "SWAP3", - "gas": 1548234, + "gas": 1555121, "gasCost": 3, "depth": 2, "stack": [ @@ -32693,7 +32227,7 @@ { "pc": 1271, "op": "POP", - "gas": 1548231, + "gas": 1555118, "gasCost": 2, "depth": 2, "stack": [ @@ -32714,7 +32248,7 @@ { "pc": 1272, "op": "DUP3", - "gas": 1548229, + "gas": 1555116, "gasCost": 3, "depth": 2, "stack": [ @@ -32733,8 +32267,8 @@ }, { "pc": 1273, - "op": "PUSH32", - "gas": 1548226, + "op": "DUP3", + "gas": 1555113, "gasCost": 3, "depth": 2, "stack": [ @@ -32753,9 +32287,9 @@ ] }, { - "pc": 1306, - "op": "SUB", - "gas": 1548223, + "pc": 1274, + "op": "ADD", + "gas": 1555110, "gasCost": 3, "depth": 2, "stack": [ @@ -32771,34 +32305,13 @@ "0x1d6329f1c35ca4bfabb9f5610000000000", "0x0", "0x3e8", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" - ] - }, - { - "pc": 1307, - "op": "DUP3", - "gas": 1548220, - "gasCost": 3, - "depth": 2, - "stack": [ - "0xa0712d68", - "0xd9", - "0x3e8", - "0x0", - "0x3e8", - "0x0", - "0x0", - "0x286", - "0x3e8", - "0x1d6329f1c35ca4bfabb9f5610000000000", - "0x0", - "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc17" + "0x1d6329f1c35ca4bfabb9f5610000000000" ] }, { - "pc": 1308, - "op": "GT", - "gas": 1548217, + "pc": 1275, + "op": "SWAP1", + "gas": 1555107, "gasCost": 3, "depth": 2, "stack": [ @@ -32813,15 +32326,14 @@ "0x3e8", "0x1d6329f1c35ca4bfabb9f5610000000000", "0x0", - "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc17", - "0x1d6329f1c35ca4bfabb9f5610000000000" + "0x1d6329f1c35ca4bfabb9f56100000003e8" ] }, { - "pc": 1309, - "op": "ISZERO", - "gas": 1548214, - "gasCost": 3, + "pc": 1276, + "op": "POP", + "gas": 1555104, + "gasCost": 2, "depth": 2, "stack": [ "0xa0712d68", @@ -32834,14 +32346,14 @@ "0x286", "0x3e8", "0x1d6329f1c35ca4bfabb9f5610000000000", - "0x0", + "0x1d6329f1c35ca4bfabb9f56100000003e8", "0x0" ] }, { - "pc": 1310, - "op": "PUSH2", - "gas": 1548211, + "pc": 1277, + "op": "DUP1", + "gas": 1555102, "gasCost": 3, "depth": 2, "stack": [ @@ -32855,15 +32367,14 @@ "0x286", "0x3e8", "0x1d6329f1c35ca4bfabb9f5610000000000", - "0x0", - "0x1" + "0x1d6329f1c35ca4bfabb9f56100000003e8" ] }, { - "pc": 1313, - "op": "JUMPI", - "gas": 1548208, - "gasCost": 10, + "pc": 1278, + "op": "DUP3", + "gas": 1555099, + "gasCost": 3, "depth": 2, "stack": [ "0xa0712d68", @@ -32876,16 +32387,15 @@ "0x286", "0x3e8", "0x1d6329f1c35ca4bfabb9f5610000000000", - "0x0", - "0x1", - "0x52a" + "0x1d6329f1c35ca4bfabb9f56100000003e8", + "0x1d6329f1c35ca4bfabb9f56100000003e8" ] }, { - "pc": 1322, - "op": "JUMPDEST", - "gas": 1548198, - "gasCost": 1, + "pc": 1279, + "op": "GT", + "gas": 1555096, + "gasCost": 3, "depth": 2, "stack": [ "0xa0712d68", @@ -32898,13 +32408,15 @@ "0x286", "0x3e8", "0x1d6329f1c35ca4bfabb9f5610000000000", - "0x0" + "0x1d6329f1c35ca4bfabb9f56100000003e8", + "0x1d6329f1c35ca4bfabb9f56100000003e8", + "0x1d6329f1c35ca4bfabb9f5610000000000" ] }, { - "pc": 1323, - "op": "DUP3", - "gas": 1548197, + "pc": 1280, + "op": "ISZERO", + "gas": 1555093, "gasCost": 3, "depth": 2, "stack": [ @@ -32918,13 +32430,14 @@ "0x286", "0x3e8", "0x1d6329f1c35ca4bfabb9f5610000000000", + "0x1d6329f1c35ca4bfabb9f56100000003e8", "0x0" ] }, { - "pc": 1324, - "op": "DUP3", - "gas": 1548194, + "pc": 1281, + "op": "PUSH2", + "gas": 1555090, "gasCost": 3, "depth": 2, "stack": [ @@ -32938,15 +32451,15 @@ "0x286", "0x3e8", "0x1d6329f1c35ca4bfabb9f5610000000000", - "0x0", - "0x3e8" + "0x1d6329f1c35ca4bfabb9f56100000003e8", + "0x1" ] }, { - "pc": 1325, - "op": "ADD", - "gas": 1548191, - "gasCost": 3, + "pc": 1284, + "op": "JUMPI", + "gas": 1555087, + "gasCost": 10, "depth": 2, "stack": [ "0xa0712d68", @@ -32959,16 +32472,16 @@ "0x286", "0x3e8", "0x1d6329f1c35ca4bfabb9f5610000000000", - "0x0", - "0x3e8", - "0x1d6329f1c35ca4bfabb9f5610000000000" + "0x1d6329f1c35ca4bfabb9f56100000003e8", + "0x1", + "0x50d" ] }, { - "pc": 1326, - "op": "SWAP1", - "gas": 1548188, - "gasCost": 3, + "pc": 1293, + "op": "JUMPDEST", + "gas": 1555077, + "gasCost": 1, "depth": 2, "stack": [ "0xa0712d68", @@ -32981,35 +32494,13 @@ "0x286", "0x3e8", "0x1d6329f1c35ca4bfabb9f5610000000000", - "0x0", "0x1d6329f1c35ca4bfabb9f56100000003e8" ] }, { - "pc": 1327, - "op": "POP", - "gas": 1548185, - "gasCost": 2, - "depth": 2, - "stack": [ - "0xa0712d68", - "0xd9", - "0x3e8", - "0x0", - "0x3e8", - "0x0", - "0x0", - "0x286", - "0x3e8", - "0x1d6329f1c35ca4bfabb9f5610000000000", - "0x1d6329f1c35ca4bfabb9f56100000003e8", - "0x0" - ] - }, - { - "pc": 1328, + "pc": 1294, "op": "SWAP3", - "gas": 1548183, + "gas": 1555076, "gasCost": 3, "depth": 2, "stack": [ @@ -33027,9 +32518,9 @@ ] }, { - "pc": 1329, + "pc": 1295, "op": "SWAP2", - "gas": 1548180, + "gas": 1555073, "gasCost": 3, "depth": 2, "stack": [ @@ -33047,9 +32538,9 @@ ] }, { - "pc": 1330, + "pc": 1296, "op": "POP", - "gas": 1548177, + "gas": 1555070, "gasCost": 2, "depth": 2, "stack": [ @@ -33067,9 +32558,9 @@ ] }, { - "pc": 1331, + "pc": 1297, "op": "POP", - "gas": 1548175, + "gas": 1555068, "gasCost": 2, "depth": 2, "stack": [ @@ -33086,9 +32577,9 @@ ] }, { - "pc": 1332, + "pc": 1298, "op": "JUMP", - "gas": 1548173, + "gas": 1555066, "gasCost": 8, "depth": 2, "stack": [ @@ -33106,7 +32597,7 @@ { "pc": 646, "op": "JUMPDEST", - "gas": 1548165, + "gas": 1555058, "gasCost": 1, "depth": 2, "stack": [ @@ -33123,7 +32614,7 @@ { "pc": 647, "op": "SWAP3", - "gas": 1548164, + "gas": 1555057, "gasCost": 3, "depth": 2, "stack": [ @@ -33140,7 +32631,7 @@ { "pc": 648, "op": "POP", - "gas": 1548161, + "gas": 1555054, "gasCost": 2, "depth": 2, "stack": [ @@ -33157,7 +32648,7 @@ { "pc": 649, "op": "POP", - "gas": 1548159, + "gas": 1555052, "gasCost": 2, "depth": 2, "stack": [ @@ -33173,7 +32664,7 @@ { "pc": 650, "op": "DUP2", - "gas": 1548157, + "gas": 1555050, "gasCost": 3, "depth": 2, "stack": [ @@ -33188,7 +32679,7 @@ { "pc": 651, "op": "SWAP1", - "gas": 1548154, + "gas": 1555047, "gasCost": 3, "depth": 2, "stack": [ @@ -33204,7 +32695,7 @@ { "pc": 652, "op": "SSTORE", - "gas": 1548151, + "gas": 1555044, "gasCost": 100, "depth": 2, "stack": [ @@ -33225,7 +32716,7 @@ { "pc": 653, "op": "POP", - "gas": 1548051, + "gas": 1554944, "gasCost": 2, "depth": 2, "stack": [ @@ -33239,7 +32730,7 @@ { "pc": 654, "op": "PUSH2", - "gas": 1548049, + "gas": 1554942, "gasCost": 3, "depth": 2, "stack": [ @@ -33252,7 +32743,7 @@ { "pc": 657, "op": "PUSH1", - "gas": 1548046, + "gas": 1554939, "gasCost": 3, "depth": 2, "stack": [ @@ -33266,7 +32757,7 @@ { "pc": 659, "op": "DUP4", - "gas": 1548043, + "gas": 1554936, "gasCost": 3, "depth": 2, "stack": [ @@ -33281,7 +32772,7 @@ { "pc": 660, "op": "PUSH2", - "gas": 1548040, + "gas": 1554933, "gasCost": 3, "depth": 2, "stack": [ @@ -33297,7 +32788,7 @@ { "pc": 663, "op": "SWAP2", - "gas": 1548037, + "gas": 1554930, "gasCost": 3, "depth": 2, "stack": [ @@ -33314,7 +32805,7 @@ { "pc": 664, "op": "SWAP1", - "gas": 1548034, + "gas": 1554927, "gasCost": 3, "depth": 2, "stack": [ @@ -33331,7 +32822,7 @@ { "pc": 665, "op": "PUSH2", - "gas": 1548031, + "gas": 1554924, "gasCost": 3, "depth": 2, "stack": [ @@ -33348,7 +32839,7 @@ { "pc": 668, "op": "JUMP", - "gas": 1548028, + "gas": 1554921, "gasCost": 8, "depth": 2, "stack": [ @@ -33366,7 +32857,7 @@ { "pc": 1247, "op": "JUMPDEST", - "gas": 1548020, + "gas": 1554913, "gasCost": 1, "depth": 2, "stack": [ @@ -33383,7 +32874,7 @@ { "pc": 1248, "op": "PUSH1", - "gas": 1548019, + "gas": 1554912, "gasCost": 3, "depth": 2, "stack": [ @@ -33400,7 +32891,7 @@ { "pc": 1250, "op": "PUSH2", - "gas": 1548016, + "gas": 1554909, "gasCost": 3, "depth": 2, "stack": [ @@ -33418,7 +32909,7 @@ { "pc": 1253, "op": "DUP3", - "gas": 1548013, + "gas": 1554906, "gasCost": 3, "depth": 2, "stack": [ @@ -33437,7 +32928,7 @@ { "pc": 1254, "op": "PUSH2", - "gas": 1548010, + "gas": 1554903, "gasCost": 3, "depth": 2, "stack": [ @@ -33457,7 +32948,7 @@ { "pc": 1257, "op": "JUMP", - "gas": 1548007, + "gas": 1554900, "gasCost": 8, "depth": 2, "stack": [ @@ -33478,7 +32969,7 @@ { "pc": 781, "op": "JUMPDEST", - "gas": 1547999, + "gas": 1554892, "gasCost": 1, "depth": 2, "stack": [ @@ -33498,7 +32989,7 @@ { "pc": 782, "op": "PUSH1", - "gas": 1547998, + "gas": 1554891, "gasCost": 3, "depth": 2, "stack": [ @@ -33518,7 +33009,7 @@ { "pc": 784, "op": "DUP2", - "gas": 1547995, + "gas": 1554888, "gasCost": 3, "depth": 2, "stack": [ @@ -33539,7 +33030,7 @@ { "pc": 785, "op": "SWAP1", - "gas": 1547992, + "gas": 1554885, "gasCost": 3, "depth": 2, "stack": [ @@ -33561,7 +33052,7 @@ { "pc": 786, "op": "POP", - "gas": 1547989, + "gas": 1554882, "gasCost": 2, "depth": 2, "stack": [ @@ -33583,7 +33074,7 @@ { "pc": 787, "op": "SWAP2", - "gas": 1547987, + "gas": 1554880, "gasCost": 3, "depth": 2, "stack": [ @@ -33604,7 +33095,7 @@ { "pc": 788, "op": "SWAP1", - "gas": 1547984, + "gas": 1554877, "gasCost": 3, "depth": 2, "stack": [ @@ -33625,7 +33116,7 @@ { "pc": 789, "op": "POP", - "gas": 1547981, + "gas": 1554874, "gasCost": 2, "depth": 2, "stack": [ @@ -33646,7 +33137,7 @@ { "pc": 790, "op": "JUMP", - "gas": 1547979, + "gas": 1554872, "gasCost": 8, "depth": 2, "stack": [ @@ -33666,7 +33157,7 @@ { "pc": 1258, "op": "JUMPDEST", - "gas": 1547971, + "gas": 1554864, "gasCost": 1, "depth": 2, "stack": [ @@ -33685,7 +33176,7 @@ { "pc": 1259, "op": "SWAP2", - "gas": 1547970, + "gas": 1554863, "gasCost": 3, "depth": 2, "stack": [ @@ -33704,7 +33195,7 @@ { "pc": 1260, "op": "POP", - "gas": 1547967, + "gas": 1554860, "gasCost": 2, "depth": 2, "stack": [ @@ -33723,7 +33214,7 @@ { "pc": 1261, "op": "PUSH2", - "gas": 1547965, + "gas": 1554858, "gasCost": 3, "depth": 2, "stack": [ @@ -33741,7 +33232,7 @@ { "pc": 1264, "op": "DUP4", - "gas": 1547962, + "gas": 1554855, "gasCost": 3, "depth": 2, "stack": [ @@ -33760,7 +33251,7 @@ { "pc": 1265, "op": "PUSH2", - "gas": 1547959, + "gas": 1554852, "gasCost": 3, "depth": 2, "stack": [ @@ -33780,7 +33271,7 @@ { "pc": 1268, "op": "JUMP", - "gas": 1547956, + "gas": 1554849, "gasCost": 8, "depth": 2, "stack": [ @@ -33801,7 +33292,7 @@ { "pc": 781, "op": "JUMPDEST", - "gas": 1547948, + "gas": 1554841, "gasCost": 1, "depth": 2, "stack": [ @@ -33821,7 +33312,7 @@ { "pc": 782, "op": "PUSH1", - "gas": 1547947, + "gas": 1554840, "gasCost": 3, "depth": 2, "stack": [ @@ -33841,7 +33332,7 @@ { "pc": 784, "op": "DUP2", - "gas": 1547944, + "gas": 1554837, "gasCost": 3, "depth": 2, "stack": [ @@ -33862,7 +33353,7 @@ { "pc": 785, "op": "SWAP1", - "gas": 1547941, + "gas": 1554834, "gasCost": 3, "depth": 2, "stack": [ @@ -33884,7 +33375,7 @@ { "pc": 786, "op": "POP", - "gas": 1547938, + "gas": 1554831, "gasCost": 2, "depth": 2, "stack": [ @@ -33906,7 +33397,7 @@ { "pc": 787, "op": "SWAP2", - "gas": 1547936, + "gas": 1554829, "gasCost": 3, "depth": 2, "stack": [ @@ -33927,7 +33418,7 @@ { "pc": 788, "op": "SWAP1", - "gas": 1547933, + "gas": 1554826, "gasCost": 3, "depth": 2, "stack": [ @@ -33948,7 +33439,7 @@ { "pc": 789, "op": "POP", - "gas": 1547930, + "gas": 1554823, "gasCost": 2, "depth": 2, "stack": [ @@ -33969,7 +33460,7 @@ { "pc": 790, "op": "JUMP", - "gas": 1547928, + "gas": 1554821, "gasCost": 8, "depth": 2, "stack": [ @@ -33989,7 +33480,7 @@ { "pc": 1269, "op": "JUMPDEST", - "gas": 1547920, + "gas": 1554813, "gasCost": 1, "depth": 2, "stack": [ @@ -34008,7 +33499,7 @@ { "pc": 1270, "op": "SWAP3", - "gas": 1547919, + "gas": 1554812, "gasCost": 3, "depth": 2, "stack": [ @@ -34027,7 +33518,7 @@ { "pc": 1271, "op": "POP", - "gas": 1547916, + "gas": 1554809, "gasCost": 2, "depth": 2, "stack": [ @@ -34046,7 +33537,7 @@ { "pc": 1272, "op": "DUP3", - "gas": 1547914, + "gas": 1554807, "gasCost": 3, "depth": 2, "stack": [ @@ -34063,8 +33554,8 @@ }, { "pc": 1273, - "op": "PUSH32", - "gas": 1547911, + "op": "DUP3", + "gas": 1554804, "gasCost": 3, "depth": 2, "stack": [ @@ -34081,9 +33572,9 @@ ] }, { - "pc": 1306, - "op": "SUB", - "gas": 1547908, + "pc": 1274, + "op": "ADD", + "gas": 1554801, "gasCost": 3, "depth": 2, "stack": [ @@ -34097,32 +33588,13 @@ "0x3e8", "0x0", "0x1", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" - ] - }, - { - "pc": 1307, - "op": "DUP3", - "gas": 1547905, - "gasCost": 3, - "depth": 2, - "stack": [ - "0xa0712d68", - "0xd9", - "0x3e8", - "0x0", - "0x2a2", - "0x29d", - "0x1", - "0x3e8", - "0x0", - "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe" + "0x3e8" ] }, { - "pc": 1308, - "op": "GT", - "gas": 1547902, + "pc": 1275, + "op": "SWAP1", + "gas": 1554798, "gasCost": 3, "depth": 2, "stack": [ @@ -34135,15 +33607,14 @@ "0x1", "0x3e8", "0x0", - "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe", - "0x3e8" + "0x3e9" ] }, { - "pc": 1309, - "op": "ISZERO", - "gas": 1547899, - "gasCost": 3, + "pc": 1276, + "op": "POP", + "gas": 1554795, + "gasCost": 2, "depth": 2, "stack": [ "0xa0712d68", @@ -34154,14 +33625,14 @@ "0x29d", "0x1", "0x3e8", - "0x0", + "0x3e9", "0x0" ] }, { - "pc": 1310, - "op": "PUSH2", - "gas": 1547896, + "pc": 1277, + "op": "DUP1", + "gas": 1554793, "gasCost": 3, "depth": 2, "stack": [ @@ -34173,15 +33644,14 @@ "0x29d", "0x1", "0x3e8", - "0x0", - "0x1" + "0x3e9" ] }, { - "pc": 1313, - "op": "JUMPI", - "gas": 1547893, - "gasCost": 10, + "pc": 1278, + "op": "DUP3", + "gas": 1554790, + "gasCost": 3, "depth": 2, "stack": [ "0xa0712d68", @@ -34192,16 +33662,15 @@ "0x29d", "0x1", "0x3e8", - "0x0", - "0x1", - "0x52a" + "0x3e9", + "0x3e9" ] }, { - "pc": 1322, - "op": "JUMPDEST", - "gas": 1547883, - "gasCost": 1, + "pc": 1279, + "op": "GT", + "gas": 1554787, + "gasCost": 3, "depth": 2, "stack": [ "0xa0712d68", @@ -34212,13 +33681,15 @@ "0x29d", "0x1", "0x3e8", - "0x0" + "0x3e9", + "0x3e9", + "0x3e8" ] }, { - "pc": 1323, - "op": "DUP3", - "gas": 1547882, + "pc": 1280, + "op": "ISZERO", + "gas": 1554784, "gasCost": 3, "depth": 2, "stack": [ @@ -34230,13 +33701,14 @@ "0x29d", "0x1", "0x3e8", + "0x3e9", "0x0" ] }, { - "pc": 1324, - "op": "DUP3", - "gas": 1547879, + "pc": 1281, + "op": "PUSH2", + "gas": 1554781, "gasCost": 3, "depth": 2, "stack": [ @@ -34248,15 +33720,15 @@ "0x29d", "0x1", "0x3e8", - "0x0", + "0x3e9", "0x1" ] }, { - "pc": 1325, - "op": "ADD", - "gas": 1547876, - "gasCost": 3, + "pc": 1284, + "op": "JUMPI", + "gas": 1554778, + "gasCost": 10, "depth": 2, "stack": [ "0xa0712d68", @@ -34267,16 +33739,16 @@ "0x29d", "0x1", "0x3e8", - "0x0", + "0x3e9", "0x1", - "0x3e8" + "0x50d" ] }, { - "pc": 1326, - "op": "SWAP1", - "gas": 1547873, - "gasCost": 3, + "pc": 1293, + "op": "JUMPDEST", + "gas": 1554768, + "gasCost": 1, "depth": 2, "stack": [ "0xa0712d68", @@ -34287,33 +33759,13 @@ "0x29d", "0x1", "0x3e8", - "0x0", "0x3e9" ] }, { - "pc": 1327, - "op": "POP", - "gas": 1547870, - "gasCost": 2, - "depth": 2, - "stack": [ - "0xa0712d68", - "0xd9", - "0x3e8", - "0x0", - "0x2a2", - "0x29d", - "0x1", - "0x3e8", - "0x3e9", - "0x0" - ] - }, - { - "pc": 1328, + "pc": 1294, "op": "SWAP3", - "gas": 1547868, + "gas": 1554767, "gasCost": 3, "depth": 2, "stack": [ @@ -34329,9 +33781,9 @@ ] }, { - "pc": 1329, + "pc": 1295, "op": "SWAP2", - "gas": 1547865, + "gas": 1554764, "gasCost": 3, "depth": 2, "stack": [ @@ -34347,9 +33799,9 @@ ] }, { - "pc": 1330, + "pc": 1296, "op": "POP", - "gas": 1547862, + "gas": 1554761, "gasCost": 2, "depth": 2, "stack": [ @@ -34365,9 +33817,9 @@ ] }, { - "pc": 1331, + "pc": 1297, "op": "POP", - "gas": 1547860, + "gas": 1554759, "gasCost": 2, "depth": 2, "stack": [ @@ -34382,9 +33834,9 @@ ] }, { - "pc": 1332, + "pc": 1298, "op": "JUMP", - "gas": 1547858, + "gas": 1554757, "gasCost": 8, "depth": 2, "stack": [ @@ -34400,7 +33852,7 @@ { "pc": 669, "op": "JUMPDEST", - "gas": 1547850, + "gas": 1554749, "gasCost": 1, "depth": 2, "stack": [ @@ -34415,7 +33867,7 @@ { "pc": 670, "op": "PUSH2", - "gas": 1547849, + "gas": 1554748, "gasCost": 3, "depth": 2, "stack": [ @@ -34430,7 +33882,7 @@ { "pc": 673, "op": "JUMP", - "gas": 1547846, + "gas": 1554745, "gasCost": 8, "depth": 2, "stack": [ @@ -34446,7 +33898,7 @@ { "pc": 376, "op": "JUMPDEST", - "gas": 1547838, + "gas": 1554737, "gasCost": 1, "depth": 2, "stack": [ @@ -34461,7 +33913,7 @@ { "pc": 377, "op": "PUSH1", - "gas": 1547837, + "gas": 1554736, "gasCost": 3, "depth": 2, "stack": [ @@ -34476,7 +33928,7 @@ { "pc": 379, "op": "CALLER", - "gas": 1547834, + "gas": 1554733, "gasCost": 2, "depth": 2, "stack": [ @@ -34492,7 +33944,7 @@ { "pc": 380, "op": "PUSH20", - "gas": 1547832, + "gas": 1554731, "gasCost": 3, "depth": 2, "stack": [ @@ -34509,7 +33961,7 @@ { "pc": 401, "op": "AND", - "gas": 1547829, + "gas": 1554728, "gasCost": 3, "depth": 2, "stack": [ @@ -34527,7 +33979,7 @@ { "pc": 402, "op": "PUSH32", - "gas": 1547826, + "gas": 1554725, "gasCost": 3, "depth": 2, "stack": [ @@ -34544,7 +33996,7 @@ { "pc": 435, "op": "DUP4", - "gas": 1547823, + "gas": 1554722, "gasCost": 3, "depth": 2, "stack": [ @@ -34562,7 +34014,7 @@ { "pc": 436, "op": "PUSH1", - "gas": 1547820, + "gas": 1554719, "gasCost": 3, "depth": 2, "stack": [ @@ -34581,7 +34033,7 @@ { "pc": 438, "op": "MLOAD", - "gas": 1547817, + "gas": 1554716, "gasCost": 3, "depth": 2, "stack": [ @@ -34601,7 +34053,7 @@ { "pc": 439, "op": "PUSH2", - "gas": 1547814, + "gas": 1554713, "gasCost": 3, "depth": 2, "stack": [ @@ -34621,7 +34073,7 @@ { "pc": 442, "op": "SWAP2", - "gas": 1547811, + "gas": 1554710, "gasCost": 3, "depth": 2, "stack": [ @@ -34642,7 +34094,7 @@ { "pc": 443, "op": "SWAP1", - "gas": 1547808, + "gas": 1554707, "gasCost": 3, "depth": 2, "stack": [ @@ -34663,7 +34115,7 @@ { "pc": 444, "op": "PUSH2", - "gas": 1547805, + "gas": 1554704, "gasCost": 3, "depth": 2, "stack": [ @@ -34684,7 +34136,7 @@ { "pc": 447, "op": "JUMP", - "gas": 1547802, + "gas": 1554701, "gasCost": 8, "depth": 2, "stack": [ @@ -34706,7 +34158,7 @@ { "pc": 1154, "op": "JUMPDEST", - "gas": 1547794, + "gas": 1554693, "gasCost": 1, "depth": 2, "stack": [ @@ -34727,7 +34179,7 @@ { "pc": 1155, "op": "PUSH1", - "gas": 1547793, + "gas": 1554692, "gasCost": 3, "depth": 2, "stack": [ @@ -34748,7 +34200,7 @@ { "pc": 1157, "op": "PUSH1", - "gas": 1547790, + "gas": 1554689, "gasCost": 3, "depth": 2, "stack": [ @@ -34770,7 +34222,7 @@ { "pc": 1159, "op": "DUP3", - "gas": 1547787, + "gas": 1554686, "gasCost": 3, "depth": 2, "stack": [ @@ -34793,7 +34245,7 @@ { "pc": 1160, "op": "ADD", - "gas": 1547784, + "gas": 1554683, "gasCost": 3, "depth": 2, "stack": [ @@ -34817,7 +34269,7 @@ { "pc": 1161, "op": "SWAP1", - "gas": 1547781, + "gas": 1554680, "gasCost": 3, "depth": 2, "stack": [ @@ -34840,7 +34292,7 @@ { "pc": 1162, "op": "POP", - "gas": 1547778, + "gas": 1554677, "gasCost": 2, "depth": 2, "stack": [ @@ -34863,7 +34315,7 @@ { "pc": 1163, "op": "PUSH2", - "gas": 1547776, + "gas": 1554675, "gasCost": 3, "depth": 2, "stack": [ @@ -34885,7 +34337,7 @@ { "pc": 1166, "op": "PUSH1", - "gas": 1547773, + "gas": 1554672, "gasCost": 3, "depth": 2, "stack": [ @@ -34908,7 +34360,7 @@ { "pc": 1168, "op": "DUP4", - "gas": 1547770, + "gas": 1554669, "gasCost": 3, "depth": 2, "stack": [ @@ -34932,7 +34384,7 @@ { "pc": 1169, "op": "ADD", - "gas": 1547767, + "gas": 1554666, "gasCost": 3, "depth": 2, "stack": [ @@ -34957,7 +34409,7 @@ { "pc": 1170, "op": "DUP5", - "gas": 1547764, + "gas": 1554663, "gasCost": 3, "depth": 2, "stack": [ @@ -34981,7 +34433,7 @@ { "pc": 1171, "op": "PUSH2", - "gas": 1547761, + "gas": 1554660, "gasCost": 3, "depth": 2, "stack": [ @@ -35006,7 +34458,7 @@ { "pc": 1174, "op": "JUMP", - "gas": 1547758, + "gas": 1554657, "gasCost": 8, "depth": 2, "stack": [ @@ -35032,7 +34484,7 @@ { "pc": 880, "op": "JUMPDEST", - "gas": 1547750, + "gas": 1554649, "gasCost": 1, "depth": 2, "stack": [ @@ -35057,7 +34509,7 @@ { "pc": 881, "op": "PUSH2", - "gas": 1547749, + "gas": 1554648, "gasCost": 3, "depth": 2, "stack": [ @@ -35082,7 +34534,7 @@ { "pc": 884, "op": "DUP2", - "gas": 1547746, + "gas": 1554645, "gasCost": 3, "depth": 2, "stack": [ @@ -35108,7 +34560,7 @@ { "pc": 885, "op": "PUSH2", - "gas": 1547743, + "gas": 1554642, "gasCost": 3, "depth": 2, "stack": [ @@ -35135,7 +34587,7 @@ { "pc": 888, "op": "JUMP", - "gas": 1547740, + "gas": 1554639, "gasCost": 8, "depth": 2, "stack": [ @@ -35163,7 +34615,7 @@ { "pc": 781, "op": "JUMPDEST", - "gas": 1547732, + "gas": 1554631, "gasCost": 1, "depth": 2, "stack": [ @@ -35190,7 +34642,7 @@ { "pc": 782, "op": "PUSH1", - "gas": 1547731, + "gas": 1554630, "gasCost": 3, "depth": 2, "stack": [ @@ -35217,7 +34669,7 @@ { "pc": 784, "op": "DUP2", - "gas": 1547728, + "gas": 1554627, "gasCost": 3, "depth": 2, "stack": [ @@ -35245,7 +34697,7 @@ { "pc": 785, "op": "SWAP1", - "gas": 1547725, + "gas": 1554624, "gasCost": 3, "depth": 2, "stack": [ @@ -35274,7 +34726,7 @@ { "pc": 786, "op": "POP", - "gas": 1547722, + "gas": 1554621, "gasCost": 2, "depth": 2, "stack": [ @@ -35303,7 +34755,7 @@ { "pc": 787, "op": "SWAP2", - "gas": 1547720, + "gas": 1554619, "gasCost": 3, "depth": 2, "stack": [ @@ -35331,7 +34783,7 @@ { "pc": 788, "op": "SWAP1", - "gas": 1547717, + "gas": 1554616, "gasCost": 3, "depth": 2, "stack": [ @@ -35359,7 +34811,7 @@ { "pc": 789, "op": "POP", - "gas": 1547714, + "gas": 1554613, "gasCost": 2, "depth": 2, "stack": [ @@ -35387,7 +34839,7 @@ { "pc": 790, "op": "JUMP", - "gas": 1547712, + "gas": 1554611, "gasCost": 8, "depth": 2, "stack": [ @@ -35414,7 +34866,7 @@ { "pc": 889, "op": "JUMPDEST", - "gas": 1547704, + "gas": 1554603, "gasCost": 1, "depth": 2, "stack": [ @@ -35440,7 +34892,7 @@ { "pc": 890, "op": "DUP3", - "gas": 1547703, + "gas": 1554602, "gasCost": 3, "depth": 2, "stack": [ @@ -35466,7 +34918,7 @@ { "pc": 891, "op": "MSTORE", - "gas": 1547700, + "gas": 1554599, "gasCost": 3, "depth": 2, "stack": [ @@ -35493,7 +34945,7 @@ { "pc": 892, "op": "POP", - "gas": 1547697, + "gas": 1554596, "gasCost": 2, "depth": 2, "stack": [ @@ -35518,7 +34970,7 @@ { "pc": 893, "op": "POP", - "gas": 1547695, + "gas": 1554594, "gasCost": 2, "depth": 2, "stack": [ @@ -35542,7 +34994,7 @@ { "pc": 894, "op": "JUMP", - "gas": 1547693, + "gas": 1554592, "gasCost": 8, "depth": 2, "stack": [ @@ -35565,7 +35017,7 @@ { "pc": 1175, "op": "JUMPDEST", - "gas": 1547685, + "gas": 1554584, "gasCost": 1, "depth": 2, "stack": [ @@ -35587,7 +35039,7 @@ { "pc": 1176, "op": "DUP2", - "gas": 1547684, + "gas": 1554583, "gasCost": 3, "depth": 2, "stack": [ @@ -35609,7 +35061,7 @@ { "pc": 1177, "op": "DUP2", - "gas": 1547681, + "gas": 1554580, "gasCost": 3, "depth": 2, "stack": [ @@ -35632,7 +35084,7 @@ { "pc": 1178, "op": "SUB", - "gas": 1547678, + "gas": 1554577, "gasCost": 3, "depth": 2, "stack": [ @@ -35656,7 +35108,7 @@ { "pc": 1179, "op": "PUSH1", - "gas": 1547675, + "gas": 1554574, "gasCost": 3, "depth": 2, "stack": [ @@ -35679,7 +35131,7 @@ { "pc": 1181, "op": "DUP4", - "gas": 1547672, + "gas": 1554571, "gasCost": 3, "depth": 2, "stack": [ @@ -35703,7 +35155,7 @@ { "pc": 1182, "op": "ADD", - "gas": 1547669, + "gas": 1554568, "gasCost": 3, "depth": 2, "stack": [ @@ -35728,7 +35180,7 @@ { "pc": 1183, "op": "MSTORE", - "gas": 1547666, + "gas": 1554565, "gasCost": 3, "depth": 2, "stack": [ @@ -35752,7 +35204,7 @@ { "pc": 1184, "op": "PUSH2", - "gas": 1547663, + "gas": 1554562, "gasCost": 3, "depth": 2, "stack": [ @@ -35774,7 +35226,7 @@ { "pc": 1187, "op": "DUP2", - "gas": 1547660, + "gas": 1554559, "gasCost": 3, "depth": 2, "stack": [ @@ -35797,7 +35249,7 @@ { "pc": 1188, "op": "PUSH2", - "gas": 1547657, + "gas": 1554556, "gasCost": 3, "depth": 2, "stack": [ @@ -35821,7 +35273,7 @@ { "pc": 1191, "op": "JUMP", - "gas": 1547654, + "gas": 1554553, "gasCost": 8, "depth": 2, "stack": [ @@ -35846,7 +35298,7 @@ { "pc": 1119, "op": "JUMPDEST", - "gas": 1547646, + "gas": 1554545, "gasCost": 1, "depth": 2, "stack": [ @@ -35870,7 +35322,7 @@ { "pc": 1120, "op": "PUSH1", - "gas": 1547645, + "gas": 1554544, "gasCost": 3, "depth": 2, "stack": [ @@ -35894,7 +35346,7 @@ { "pc": 1122, "op": "PUSH2", - "gas": 1547642, + "gas": 1554541, "gasCost": 3, "depth": 2, "stack": [ @@ -35919,7 +35371,7 @@ { "pc": 1125, "op": "PUSH1", - "gas": 1547639, + "gas": 1554538, "gasCost": 3, "depth": 2, "stack": [ @@ -35945,7 +35397,7 @@ { "pc": 1127, "op": "DUP4", - "gas": 1547636, + "gas": 1554535, "gasCost": 3, "depth": 2, "stack": [ @@ -35972,7 +35424,7 @@ { "pc": 1128, "op": "PUSH2", - "gas": 1547633, + "gas": 1554532, "gasCost": 3, "depth": 2, "stack": [ @@ -36000,7 +35452,7 @@ { "pc": 1131, "op": "JUMP", - "gas": 1547630, + "gas": 1554529, "gasCost": 8, "depth": 2, "stack": [ @@ -36029,7 +35481,7 @@ { "pc": 1061, "op": "JUMPDEST", - "gas": 1547622, + "gas": 1554521, "gasCost": 1, "depth": 2, "stack": [ @@ -36057,7 +35509,7 @@ { "pc": 1062, "op": "PUSH1", - "gas": 1547621, + "gas": 1554520, "gasCost": 3, "depth": 2, "stack": [ @@ -36085,7 +35537,7 @@ { "pc": 1064, "op": "DUP3", - "gas": 1547618, + "gas": 1554517, "gasCost": 3, "depth": 2, "stack": [ @@ -36114,7 +35566,7 @@ { "pc": 1065, "op": "DUP3", - "gas": 1547615, + "gas": 1554514, "gasCost": 3, "depth": 2, "stack": [ @@ -36144,7 +35596,7 @@ { "pc": 1066, "op": "MSTORE", - "gas": 1547612, + "gas": 1554511, "gasCost": 3, "depth": 2, "stack": [ @@ -36175,7 +35627,7 @@ { "pc": 1067, "op": "PUSH1", - "gas": 1547609, + "gas": 1554508, "gasCost": 3, "depth": 2, "stack": [ @@ -36204,7 +35656,7 @@ { "pc": 1069, "op": "DUP3", - "gas": 1547606, + "gas": 1554505, "gasCost": 3, "depth": 2, "stack": [ @@ -36234,7 +35686,7 @@ { "pc": 1070, "op": "ADD", - "gas": 1547603, + "gas": 1554502, "gasCost": 3, "depth": 2, "stack": [ @@ -36265,7 +35717,7 @@ { "pc": 1071, "op": "SWAP1", - "gas": 1547600, + "gas": 1554499, "gasCost": 3, "depth": 2, "stack": [ @@ -36295,7 +35747,7 @@ { "pc": 1072, "op": "POP", - "gas": 1547597, + "gas": 1554496, "gasCost": 2, "depth": 2, "stack": [ @@ -36325,7 +35777,7 @@ { "pc": 1073, "op": "SWAP3", - "gas": 1547595, + "gas": 1554494, "gasCost": 3, "depth": 2, "stack": [ @@ -36354,7 +35806,7 @@ { "pc": 1074, "op": "SWAP2", - "gas": 1547592, + "gas": 1554491, "gasCost": 3, "depth": 2, "stack": [ @@ -36383,7 +35835,7 @@ { "pc": 1075, "op": "POP", - "gas": 1547589, + "gas": 1554488, "gasCost": 2, "depth": 2, "stack": [ @@ -36412,7 +35864,7 @@ { "pc": 1076, "op": "POP", - "gas": 1547587, + "gas": 1554486, "gasCost": 2, "depth": 2, "stack": [ @@ -36440,7 +35892,7 @@ { "pc": 1077, "op": "JUMP", - "gas": 1547585, + "gas": 1554484, "gasCost": 8, "depth": 2, "stack": [ @@ -36467,7 +35919,7 @@ { "pc": 1132, "op": "JUMPDEST", - "gas": 1547577, + "gas": 1554476, "gasCost": 1, "depth": 2, "stack": [ @@ -36493,7 +35945,7 @@ { "pc": 1133, "op": "SWAP2", - "gas": 1547576, + "gas": 1554475, "gasCost": 3, "depth": 2, "stack": [ @@ -36519,7 +35971,7 @@ { "pc": 1134, "op": "POP", - "gas": 1547573, + "gas": 1554472, "gasCost": 2, "depth": 2, "stack": [ @@ -36545,7 +35997,7 @@ { "pc": 1135, "op": "PUSH2", - "gas": 1547571, + "gas": 1554470, "gasCost": 3, "depth": 2, "stack": [ @@ -36570,7 +36022,7 @@ { "pc": 1138, "op": "DUP3", - "gas": 1547568, + "gas": 1554467, "gasCost": 3, "depth": 2, "stack": [ @@ -36596,7 +36048,7 @@ { "pc": 1139, "op": "PUSH2", - "gas": 1547565, + "gas": 1554464, "gasCost": 3, "depth": 2, "stack": [ @@ -36623,7 +36075,7 @@ { "pc": 1142, "op": "JUMP", - "gas": 1547562, + "gas": 1554461, "gasCost": 8, "depth": 2, "stack": [ @@ -36651,7 +36103,7 @@ { "pc": 1078, "op": "JUMPDEST", - "gas": 1547554, + "gas": 1554453, "gasCost": 1, "depth": 2, "stack": [ @@ -36678,7 +36130,7 @@ { "pc": 1079, "op": "PUSH32", - "gas": 1547553, + "gas": 1554452, "gasCost": 3, "depth": 2, "stack": [ @@ -36705,7 +36157,7 @@ { "pc": 1112, "op": "PUSH1", - "gas": 1547550, + "gas": 1554449, "gasCost": 3, "depth": 2, "stack": [ @@ -36733,7 +36185,7 @@ { "pc": 1114, "op": "DUP3", - "gas": 1547547, + "gas": 1554446, "gasCost": 3, "depth": 2, "stack": [ @@ -36762,7 +36214,7 @@ { "pc": 1115, "op": "ADD", - "gas": 1547544, + "gas": 1554443, "gasCost": 3, "depth": 2, "stack": [ @@ -36792,7 +36244,7 @@ { "pc": 1116, "op": "MSTORE", - "gas": 1547541, + "gas": 1554440, "gasCost": 3, "depth": 2, "stack": [ @@ -36821,7 +36273,7 @@ { "pc": 1117, "op": "POP", - "gas": 1547538, + "gas": 1554437, "gasCost": 2, "depth": 2, "stack": [ @@ -36848,7 +36300,7 @@ { "pc": 1118, "op": "JUMP", - "gas": 1547536, + "gas": 1554435, "gasCost": 8, "depth": 2, "stack": [ @@ -36874,7 +36326,7 @@ { "pc": 1143, "op": "JUMPDEST", - "gas": 1547528, + "gas": 1554427, "gasCost": 1, "depth": 2, "stack": [ @@ -36899,7 +36351,7 @@ { "pc": 1144, "op": "PUSH1", - "gas": 1547527, + "gas": 1554426, "gasCost": 3, "depth": 2, "stack": [ @@ -36924,7 +36376,7 @@ { "pc": 1146, "op": "DUP3", - "gas": 1547524, + "gas": 1554423, "gasCost": 3, "depth": 2, "stack": [ @@ -36950,7 +36402,7 @@ { "pc": 1147, "op": "ADD", - "gas": 1547521, + "gas": 1554420, "gasCost": 3, "depth": 2, "stack": [ @@ -36977,7 +36429,7 @@ { "pc": 1148, "op": "SWAP1", - "gas": 1547518, + "gas": 1554417, "gasCost": 3, "depth": 2, "stack": [ @@ -37003,7 +36455,7 @@ { "pc": 1149, "op": "POP", - "gas": 1547515, + "gas": 1554414, "gasCost": 2, "depth": 2, "stack": [ @@ -37029,7 +36481,7 @@ { "pc": 1150, "op": "SWAP2", - "gas": 1547513, + "gas": 1554412, "gasCost": 3, "depth": 2, "stack": [ @@ -37054,7 +36506,7 @@ { "pc": 1151, "op": "SWAP1", - "gas": 1547510, + "gas": 1554409, "gasCost": 3, "depth": 2, "stack": [ @@ -37079,7 +36531,7 @@ { "pc": 1152, "op": "POP", - "gas": 1547507, + "gas": 1554406, "gasCost": 2, "depth": 2, "stack": [ @@ -37104,7 +36556,7 @@ { "pc": 1153, "op": "JUMP", - "gas": 1547505, + "gas": 1554404, "gasCost": 8, "depth": 2, "stack": [ @@ -37128,7 +36580,7 @@ { "pc": 1192, "op": "JUMPDEST", - "gas": 1547497, + "gas": 1554396, "gasCost": 1, "depth": 2, "stack": [ @@ -37151,7 +36603,7 @@ { "pc": 1193, "op": "SWAP1", - "gas": 1547496, + "gas": 1554395, "gasCost": 3, "depth": 2, "stack": [ @@ -37174,7 +36626,7 @@ { "pc": 1194, "op": "POP", - "gas": 1547493, + "gas": 1554392, "gasCost": 2, "depth": 2, "stack": [ @@ -37197,7 +36649,7 @@ { "pc": 1195, "op": "SWAP3", - "gas": 1547491, + "gas": 1554390, "gasCost": 3, "depth": 2, "stack": [ @@ -37219,7 +36671,7 @@ { "pc": 1196, "op": "SWAP2", - "gas": 1547488, + "gas": 1554387, "gasCost": 3, "depth": 2, "stack": [ @@ -37241,7 +36693,7 @@ { "pc": 1197, "op": "POP", - "gas": 1547485, + "gas": 1554384, "gasCost": 2, "depth": 2, "stack": [ @@ -37263,7 +36715,7 @@ { "pc": 1198, "op": "POP", - "gas": 1547483, + "gas": 1554382, "gasCost": 2, "depth": 2, "stack": [ @@ -37284,7 +36736,7 @@ { "pc": 1199, "op": "JUMP", - "gas": 1547481, + "gas": 1554380, "gasCost": 8, "depth": 2, "stack": [ @@ -37304,7 +36756,7 @@ { "pc": 448, "op": "JUMPDEST", - "gas": 1547473, + "gas": 1554372, "gasCost": 1, "depth": 2, "stack": [ @@ -37323,7 +36775,7 @@ { "pc": 449, "op": "PUSH1", - "gas": 1547472, + "gas": 1554371, "gasCost": 3, "depth": 2, "stack": [ @@ -37342,7 +36794,7 @@ { "pc": 451, "op": "MLOAD", - "gas": 1547469, + "gas": 1554368, "gasCost": 3, "depth": 2, "stack": [ @@ -37362,7 +36814,7 @@ { "pc": 452, "op": "DUP1", - "gas": 1547466, + "gas": 1554365, "gasCost": 3, "depth": 2, "stack": [ @@ -37382,7 +36834,7 @@ { "pc": 453, "op": "SWAP2", - "gas": 1547463, + "gas": 1554362, "gasCost": 3, "depth": 2, "stack": [ @@ -37403,7 +36855,7 @@ { "pc": 454, "op": "SUB", - "gas": 1547460, + "gas": 1554359, "gasCost": 3, "depth": 2, "stack": [ @@ -37424,7 +36876,7 @@ { "pc": 455, "op": "SWAP1", - "gas": 1547457, + "gas": 1554356, "gasCost": 3, "depth": 2, "stack": [ @@ -37444,7 +36896,7 @@ { "pc": 456, "op": "LOG2", - "gas": 1547454, + "gas": 1554353, "gasCost": 2149, "depth": 2, "stack": [ @@ -37464,7 +36916,7 @@ { "pc": 457, "op": "DUP2", - "gas": 1545305, + "gas": 1552204, "gasCost": 3, "depth": 2, "stack": [ @@ -37480,7 +36932,7 @@ { "pc": 458, "op": "PUSH1", - "gas": 1545302, + "gas": 1552201, "gasCost": 3, "depth": 2, "stack": [ @@ -37497,7 +36949,7 @@ { "pc": 460, "op": "PUSH1", - "gas": 1545299, + "gas": 1552198, "gasCost": 3, "depth": 2, "stack": [ @@ -37515,7 +36967,7 @@ { "pc": 462, "op": "DUP3", - "gas": 1545296, + "gas": 1552195, "gasCost": 3, "depth": 2, "stack": [ @@ -37534,7 +36986,7 @@ { "pc": 463, "op": "DUP3", - "gas": 1545293, + "gas": 1552192, "gasCost": 3, "depth": 2, "stack": [ @@ -37554,7 +37006,7 @@ { "pc": 464, "op": "SLOAD", - "gas": 1545290, + "gas": 1552189, "gasCost": 100, "depth": 2, "stack": [ @@ -37580,7 +37032,7 @@ { "pc": 465, "op": "PUSH2", - "gas": 1545190, + "gas": 1552089, "gasCost": 3, "depth": 2, "stack": [ @@ -37601,7 +37053,7 @@ { "pc": 468, "op": "SWAP2", - "gas": 1545187, + "gas": 1552086, "gasCost": 3, "depth": 2, "stack": [ @@ -37623,7 +37075,7 @@ { "pc": 469, "op": "SWAP1", - "gas": 1545184, + "gas": 1552083, "gasCost": 3, "depth": 2, "stack": [ @@ -37645,7 +37097,7 @@ { "pc": 470, "op": "PUSH2", - "gas": 1545181, + "gas": 1552080, "gasCost": 3, "depth": 2, "stack": [ @@ -37667,7 +37119,7 @@ { "pc": 473, "op": "JUMP", - "gas": 1545178, + "gas": 1552077, "gasCost": 8, "depth": 2, "stack": [ @@ -37690,7 +37142,7 @@ { "pc": 1247, "op": "JUMPDEST", - "gas": 1545170, + "gas": 1552069, "gasCost": 1, "depth": 2, "stack": [ @@ -37712,7 +37164,7 @@ { "pc": 1248, "op": "PUSH1", - "gas": 1545169, + "gas": 1552068, "gasCost": 3, "depth": 2, "stack": [ @@ -37734,7 +37186,7 @@ { "pc": 1250, "op": "PUSH2", - "gas": 1545166, + "gas": 1552065, "gasCost": 3, "depth": 2, "stack": [ @@ -37757,7 +37209,7 @@ { "pc": 1253, "op": "DUP3", - "gas": 1545163, + "gas": 1552062, "gasCost": 3, "depth": 2, "stack": [ @@ -37781,7 +37233,7 @@ { "pc": 1254, "op": "PUSH2", - "gas": 1545160, + "gas": 1552059, "gasCost": 3, "depth": 2, "stack": [ @@ -37806,7 +37258,7 @@ { "pc": 1257, "op": "JUMP", - "gas": 1545157, + "gas": 1552056, "gasCost": 8, "depth": 2, "stack": [ @@ -37832,7 +37284,7 @@ { "pc": 781, "op": "JUMPDEST", - "gas": 1545149, + "gas": 1552048, "gasCost": 1, "depth": 2, "stack": [ @@ -37857,7 +37309,7 @@ { "pc": 782, "op": "PUSH1", - "gas": 1545148, + "gas": 1552047, "gasCost": 3, "depth": 2, "stack": [ @@ -37882,7 +37334,7 @@ { "pc": 784, "op": "DUP2", - "gas": 1545145, + "gas": 1552044, "gasCost": 3, "depth": 2, "stack": [ @@ -37908,7 +37360,7 @@ { "pc": 785, "op": "SWAP1", - "gas": 1545142, + "gas": 1552041, "gasCost": 3, "depth": 2, "stack": [ @@ -37935,7 +37387,7 @@ { "pc": 786, "op": "POP", - "gas": 1545139, + "gas": 1552038, "gasCost": 2, "depth": 2, "stack": [ @@ -37962,7 +37414,7 @@ { "pc": 787, "op": "SWAP2", - "gas": 1545137, + "gas": 1552036, "gasCost": 3, "depth": 2, "stack": [ @@ -37988,7 +37440,7 @@ { "pc": 788, "op": "SWAP1", - "gas": 1545134, + "gas": 1552033, "gasCost": 3, "depth": 2, "stack": [ @@ -38014,7 +37466,7 @@ { "pc": 789, "op": "POP", - "gas": 1545131, + "gas": 1552030, "gasCost": 2, "depth": 2, "stack": [ @@ -38040,7 +37492,7 @@ { "pc": 790, "op": "JUMP", - "gas": 1545129, + "gas": 1552028, "gasCost": 8, "depth": 2, "stack": [ @@ -38065,7 +37517,7 @@ { "pc": 1258, "op": "JUMPDEST", - "gas": 1545121, + "gas": 1552020, "gasCost": 1, "depth": 2, "stack": [ @@ -38089,7 +37541,7 @@ { "pc": 1259, "op": "SWAP2", - "gas": 1545120, + "gas": 1552019, "gasCost": 3, "depth": 2, "stack": [ @@ -38113,7 +37565,7 @@ { "pc": 1260, "op": "POP", - "gas": 1545117, + "gas": 1552016, "gasCost": 2, "depth": 2, "stack": [ @@ -38137,7 +37589,7 @@ { "pc": 1261, "op": "PUSH2", - "gas": 1545115, + "gas": 1552014, "gasCost": 3, "depth": 2, "stack": [ @@ -38160,7 +37612,7 @@ { "pc": 1264, "op": "DUP4", - "gas": 1545112, + "gas": 1552011, "gasCost": 3, "depth": 2, "stack": [ @@ -38184,7 +37636,7 @@ { "pc": 1265, "op": "PUSH2", - "gas": 1545109, + "gas": 1552008, "gasCost": 3, "depth": 2, "stack": [ @@ -38209,7 +37661,7 @@ { "pc": 1268, "op": "JUMP", - "gas": 1545106, + "gas": 1552005, "gasCost": 8, "depth": 2, "stack": [ @@ -38235,7 +37687,7 @@ { "pc": 781, "op": "JUMPDEST", - "gas": 1545098, + "gas": 1551997, "gasCost": 1, "depth": 2, "stack": [ @@ -38260,7 +37712,7 @@ { "pc": 782, "op": "PUSH1", - "gas": 1545097, + "gas": 1551996, "gasCost": 3, "depth": 2, "stack": [ @@ -38285,7 +37737,7 @@ { "pc": 784, "op": "DUP2", - "gas": 1545094, + "gas": 1551993, "gasCost": 3, "depth": 2, "stack": [ @@ -38311,7 +37763,7 @@ { "pc": 785, "op": "SWAP1", - "gas": 1545091, + "gas": 1551990, "gasCost": 3, "depth": 2, "stack": [ @@ -38338,7 +37790,7 @@ { "pc": 786, "op": "POP", - "gas": 1545088, + "gas": 1551987, "gasCost": 2, "depth": 2, "stack": [ @@ -38365,7 +37817,7 @@ { "pc": 787, "op": "SWAP2", - "gas": 1545086, + "gas": 1551985, "gasCost": 3, "depth": 2, "stack": [ @@ -38391,7 +37843,7 @@ { "pc": 788, "op": "SWAP1", - "gas": 1545083, + "gas": 1551982, "gasCost": 3, "depth": 2, "stack": [ @@ -38417,7 +37869,7 @@ { "pc": 789, "op": "POP", - "gas": 1545080, + "gas": 1551979, "gasCost": 2, "depth": 2, "stack": [ @@ -38443,7 +37895,7 @@ { "pc": 790, "op": "JUMP", - "gas": 1545078, + "gas": 1551977, "gasCost": 8, "depth": 2, "stack": [ @@ -38468,7 +37920,7 @@ { "pc": 1269, "op": "JUMPDEST", - "gas": 1545070, + "gas": 1551969, "gasCost": 1, "depth": 2, "stack": [ @@ -38492,7 +37944,7 @@ { "pc": 1270, "op": "SWAP3", - "gas": 1545069, + "gas": 1551968, "gasCost": 3, "depth": 2, "stack": [ @@ -38516,7 +37968,7 @@ { "pc": 1271, "op": "POP", - "gas": 1545066, + "gas": 1551965, "gasCost": 2, "depth": 2, "stack": [ @@ -38540,7 +37992,7 @@ { "pc": 1272, "op": "DUP3", - "gas": 1545064, + "gas": 1551963, "gasCost": 3, "depth": 2, "stack": [ @@ -38562,8 +38014,8 @@ }, { "pc": 1273, - "op": "PUSH32", - "gas": 1545061, + "op": "DUP3", + "gas": 1551960, "gasCost": 3, "depth": 2, "stack": [ @@ -38585,9 +38037,9 @@ ] }, { - "pc": 1306, - "op": "SUB", - "gas": 1545058, + "pc": 1274, + "op": "ADD", + "gas": 1551957, "gasCost": 3, "depth": 2, "stack": [ @@ -38606,37 +38058,13 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x0", "0x3e9", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" - ] - }, - { - "pc": 1307, - "op": "DUP3", - "gas": 1545055, - "gasCost": 3, - "depth": 2, - "stack": [ - "0xa0712d68", - "0xd9", - "0x3e8", - "0x0", - "0x2a2", - "0x3e9", - "0x0", - "0x3e9", - "0x2", - "0x0", - "0x1da", - "0x3e9", - "0x1d6329f1c35ca4bfabb9f5610000000001", - "0x0", - "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc16" + "0x1d6329f1c35ca4bfabb9f5610000000001" ] }, { - "pc": 1308, - "op": "GT", - "gas": 1545052, + "pc": 1275, + "op": "SWAP1", + "gas": 1551954, "gasCost": 3, "depth": 2, "stack": [ @@ -38654,15 +38082,14 @@ "0x3e9", "0x1d6329f1c35ca4bfabb9f5610000000001", "0x0", - "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc16", - "0x1d6329f1c35ca4bfabb9f5610000000001" + "0x1d6329f1c35ca4bfabb9f56100000003ea" ] }, { - "pc": 1309, - "op": "ISZERO", - "gas": 1545049, - "gasCost": 3, + "pc": 1276, + "op": "POP", + "gas": 1551951, + "gasCost": 2, "depth": 2, "stack": [ "0xa0712d68", @@ -38678,14 +38105,14 @@ "0x1da", "0x3e9", "0x1d6329f1c35ca4bfabb9f5610000000001", - "0x0", + "0x1d6329f1c35ca4bfabb9f56100000003ea", "0x0" ] }, { - "pc": 1310, - "op": "PUSH2", - "gas": 1545046, + "pc": 1277, + "op": "DUP1", + "gas": 1551949, "gasCost": 3, "depth": 2, "stack": [ @@ -38702,15 +38129,14 @@ "0x1da", "0x3e9", "0x1d6329f1c35ca4bfabb9f5610000000001", - "0x0", - "0x1" + "0x1d6329f1c35ca4bfabb9f56100000003ea" ] }, { - "pc": 1313, - "op": "JUMPI", - "gas": 1545043, - "gasCost": 10, + "pc": 1278, + "op": "DUP3", + "gas": 1551946, + "gasCost": 3, "depth": 2, "stack": [ "0xa0712d68", @@ -38726,16 +38152,15 @@ "0x1da", "0x3e9", "0x1d6329f1c35ca4bfabb9f5610000000001", - "0x0", - "0x1", - "0x52a" + "0x1d6329f1c35ca4bfabb9f56100000003ea", + "0x1d6329f1c35ca4bfabb9f56100000003ea" ] }, { - "pc": 1322, - "op": "JUMPDEST", - "gas": 1545033, - "gasCost": 1, + "pc": 1279, + "op": "GT", + "gas": 1551943, + "gasCost": 3, "depth": 2, "stack": [ "0xa0712d68", @@ -38751,13 +38176,15 @@ "0x1da", "0x3e9", "0x1d6329f1c35ca4bfabb9f5610000000001", - "0x0" + "0x1d6329f1c35ca4bfabb9f56100000003ea", + "0x1d6329f1c35ca4bfabb9f56100000003ea", + "0x1d6329f1c35ca4bfabb9f5610000000001" ] }, { - "pc": 1323, - "op": "DUP3", - "gas": 1545032, + "pc": 1280, + "op": "ISZERO", + "gas": 1551940, "gasCost": 3, "depth": 2, "stack": [ @@ -38774,13 +38201,14 @@ "0x1da", "0x3e9", "0x1d6329f1c35ca4bfabb9f5610000000001", + "0x1d6329f1c35ca4bfabb9f56100000003ea", "0x0" ] }, { - "pc": 1324, - "op": "DUP3", - "gas": 1545029, + "pc": 1281, + "op": "PUSH2", + "gas": 1551937, "gasCost": 3, "depth": 2, "stack": [ @@ -38797,15 +38225,15 @@ "0x1da", "0x3e9", "0x1d6329f1c35ca4bfabb9f5610000000001", - "0x0", - "0x3e9" + "0x1d6329f1c35ca4bfabb9f56100000003ea", + "0x1" ] }, { - "pc": 1325, - "op": "ADD", - "gas": 1545026, - "gasCost": 3, + "pc": 1284, + "op": "JUMPI", + "gas": 1551934, + "gasCost": 10, "depth": 2, "stack": [ "0xa0712d68", @@ -38821,16 +38249,16 @@ "0x1da", "0x3e9", "0x1d6329f1c35ca4bfabb9f5610000000001", - "0x0", - "0x3e9", - "0x1d6329f1c35ca4bfabb9f5610000000001" + "0x1d6329f1c35ca4bfabb9f56100000003ea", + "0x1", + "0x50d" ] }, { - "pc": 1326, - "op": "SWAP1", - "gas": 1545023, - "gasCost": 3, + "pc": 1293, + "op": "JUMPDEST", + "gas": 1551924, + "gasCost": 1, "depth": 2, "stack": [ "0xa0712d68", @@ -38846,38 +38274,13 @@ "0x1da", "0x3e9", "0x1d6329f1c35ca4bfabb9f5610000000001", - "0x0", "0x1d6329f1c35ca4bfabb9f56100000003ea" ] }, { - "pc": 1327, - "op": "POP", - "gas": 1545020, - "gasCost": 2, - "depth": 2, - "stack": [ - "0xa0712d68", - "0xd9", - "0x3e8", - "0x0", - "0x2a2", - "0x3e9", - "0x0", - "0x3e9", - "0x2", - "0x0", - "0x1da", - "0x3e9", - "0x1d6329f1c35ca4bfabb9f5610000000001", - "0x1d6329f1c35ca4bfabb9f56100000003ea", - "0x0" - ] - }, - { - "pc": 1328, + "pc": 1294, "op": "SWAP3", - "gas": 1545018, + "gas": 1551923, "gasCost": 3, "depth": 2, "stack": [ @@ -38898,9 +38301,9 @@ ] }, { - "pc": 1329, + "pc": 1295, "op": "SWAP2", - "gas": 1545015, + "gas": 1551920, "gasCost": 3, "depth": 2, "stack": [ @@ -38921,9 +38324,9 @@ ] }, { - "pc": 1330, + "pc": 1296, "op": "POP", - "gas": 1545012, + "gas": 1551917, "gasCost": 2, "depth": 2, "stack": [ @@ -38944,9 +38347,9 @@ ] }, { - "pc": 1331, + "pc": 1297, "op": "POP", - "gas": 1545010, + "gas": 1551915, "gasCost": 2, "depth": 2, "stack": [ @@ -38966,9 +38369,9 @@ ] }, { - "pc": 1332, + "pc": 1298, "op": "JUMP", - "gas": 1545008, + "gas": 1551913, "gasCost": 8, "depth": 2, "stack": [ @@ -38989,7 +38392,7 @@ { "pc": 474, "op": "JUMPDEST", - "gas": 1545000, + "gas": 1551905, "gasCost": 1, "depth": 2, "stack": [ @@ -39009,7 +38412,7 @@ { "pc": 475, "op": "SWAP3", - "gas": 1544999, + "gas": 1551904, "gasCost": 3, "depth": 2, "stack": [ @@ -39029,7 +38432,7 @@ { "pc": 476, "op": "POP", - "gas": 1544996, + "gas": 1551901, "gasCost": 2, "depth": 2, "stack": [ @@ -39049,7 +38452,7 @@ { "pc": 477, "op": "POP", - "gas": 1544994, + "gas": 1551899, "gasCost": 2, "depth": 2, "stack": [ @@ -39068,7 +38471,7 @@ { "pc": 478, "op": "DUP2", - "gas": 1544992, + "gas": 1551897, "gasCost": 3, "depth": 2, "stack": [ @@ -39086,7 +38489,7 @@ { "pc": 479, "op": "SWAP1", - "gas": 1544989, + "gas": 1551894, "gasCost": 3, "depth": 2, "stack": [ @@ -39105,7 +38508,7 @@ { "pc": 480, "op": "SSTORE", - "gas": 1544986, + "gas": 1551891, "gasCost": 100, "depth": 2, "stack": [ @@ -39129,7 +38532,7 @@ { "pc": 481, "op": "POP", - "gas": 1544886, + "gas": 1551791, "gasCost": 2, "depth": 2, "stack": [ @@ -39146,7 +38549,7 @@ { "pc": 482, "op": "PUSH1", - "gas": 1544884, + "gas": 1551789, "gasCost": 3, "depth": 2, "stack": [ @@ -39162,7 +38565,7 @@ { "pc": 484, "op": "SWAP1", - "gas": 1544881, + "gas": 1551786, "gasCost": 3, "depth": 2, "stack": [ @@ -39179,7 +38582,7 @@ { "pc": 485, "op": "POP", - "gas": 1544878, + "gas": 1551783, "gasCost": 2, "depth": 2, "stack": [ @@ -39196,7 +38599,7 @@ { "pc": 486, "op": "SWAP2", - "gas": 1544876, + "gas": 1551781, "gasCost": 3, "depth": 2, "stack": [ @@ -39212,7 +38615,7 @@ { "pc": 487, "op": "SWAP1", - "gas": 1544873, + "gas": 1551778, "gasCost": 3, "depth": 2, "stack": [ @@ -39228,7 +38631,7 @@ { "pc": 488, "op": "POP", - "gas": 1544870, + "gas": 1551775, "gasCost": 2, "depth": 2, "stack": [ @@ -39244,7 +38647,7 @@ { "pc": 489, "op": "JUMP", - "gas": 1544868, + "gas": 1551773, "gasCost": 8, "depth": 2, "stack": [ @@ -39259,7 +38662,7 @@ { "pc": 674, "op": "JUMPDEST", - "gas": 1544860, + "gas": 1551765, "gasCost": 1, "depth": 2, "stack": [ @@ -39273,7 +38676,7 @@ { "pc": 675, "op": "POP", - "gas": 1544859, + "gas": 1551764, "gasCost": 2, "depth": 2, "stack": [ @@ -39287,7 +38690,7 @@ { "pc": 676, "op": "PUSH2", - "gas": 1544857, + "gas": 1551762, "gasCost": 3, "depth": 2, "stack": [ @@ -39300,7 +38703,7 @@ { "pc": 679, "op": "PUSH2", - "gas": 1544854, + "gas": 1551759, "gasCost": 3, "depth": 2, "stack": [ @@ -39314,7 +38717,7 @@ { "pc": 682, "op": "JUMP", - "gas": 1544851, + "gas": 1551756, "gasCost": 8, "depth": 2, "stack": [ @@ -39329,7 +38732,7 @@ { "pc": 297, "op": "JUMPDEST", - "gas": 1544843, + "gas": 1551748, "gasCost": 1, "depth": 2, "stack": [ @@ -39343,7 +38746,7 @@ { "pc": 298, "op": "PUSH1", - "gas": 1544842, + "gas": 1551747, "gasCost": 3, "depth": 2, "stack": [ @@ -39357,7 +38760,7 @@ { "pc": 300, "op": "DUP1", - "gas": 1544839, + "gas": 1551744, "gasCost": 3, "depth": 2, "stack": [ @@ -39372,7 +38775,7 @@ { "pc": 301, "op": "PUSH1", - "gas": 1544836, + "gas": 1551741, "gasCost": 3, "depth": 2, "stack": [ @@ -39388,7 +38791,7 @@ { "pc": 303, "op": "MLOAD", - "gas": 1544833, + "gas": 1551738, "gasCost": 3, "depth": 2, "stack": [ @@ -39405,7 +38808,7 @@ { "pc": 304, "op": "DUP1", - "gas": 1544830, + "gas": 1551735, "gasCost": 3, "depth": 2, "stack": [ @@ -39422,7 +38825,7 @@ { "pc": 305, "op": "PUSH1", - "gas": 1544827, + "gas": 1551732, "gasCost": 3, "depth": 2, "stack": [ @@ -39440,7 +38843,7 @@ { "pc": 307, "op": "ADD", - "gas": 1544824, + "gas": 1551729, "gasCost": 3, "depth": 2, "stack": [ @@ -39459,7 +38862,7 @@ { "pc": 308, "op": "PUSH1", - "gas": 1544821, + "gas": 1551726, "gasCost": 3, "depth": 2, "stack": [ @@ -39477,7 +38880,7 @@ { "pc": 310, "op": "MSTORE", - "gas": 1544818, + "gas": 1551723, "gasCost": 3, "depth": 2, "stack": [ @@ -39496,7 +38899,7 @@ { "pc": 311, "op": "DUP1", - "gas": 1544815, + "gas": 1551720, "gasCost": 3, "depth": 2, "stack": [ @@ -39513,7 +38916,7 @@ { "pc": 312, "op": "PUSH1", - "gas": 1544812, + "gas": 1551717, "gasCost": 3, "depth": 2, "stack": [ @@ -39531,7 +38934,7 @@ { "pc": 314, "op": "DUP2", - "gas": 1544809, + "gas": 1551714, "gasCost": 3, "depth": 2, "stack": [ @@ -39550,7 +38953,7 @@ { "pc": 315, "op": "MSTORE", - "gas": 1544806, + "gas": 1551711, "gasCost": 3, "depth": 2, "stack": [ @@ -39570,7 +38973,7 @@ { "pc": 316, "op": "PUSH1", - "gas": 1544803, + "gas": 1551708, "gasCost": 3, "depth": 2, "stack": [ @@ -39588,7 +38991,7 @@ { "pc": 318, "op": "ADD", - "gas": 1544800, + "gas": 1551705, "gasCost": 3, "depth": 2, "stack": [ @@ -39607,7 +39010,7 @@ { "pc": 319, "op": "PUSH32", - "gas": 1544797, + "gas": 1551702, "gasCost": 3, "depth": 2, "stack": [ @@ -39625,7 +39028,7 @@ { "pc": 352, "op": "DUP2", - "gas": 1544794, + "gas": 1551699, "gasCost": 3, "depth": 2, "stack": [ @@ -39644,7 +39047,7 @@ { "pc": 353, "op": "MSTORE", - "gas": 1544791, + "gas": 1551696, "gasCost": 3, "depth": 2, "stack": [ @@ -39664,7 +39067,7 @@ { "pc": 354, "op": "POP", - "gas": 1544788, + "gas": 1551693, "gasCost": 2, "depth": 2, "stack": [ @@ -39682,7 +39085,7 @@ { "pc": 355, "op": "SWAP1", - "gas": 1544786, + "gas": 1551691, "gasCost": 3, "depth": 2, "stack": [ @@ -39699,7 +39102,7 @@ { "pc": 356, "op": "POP", - "gas": 1544783, + "gas": 1551688, "gasCost": 2, "depth": 2, "stack": [ @@ -39716,7 +39119,7 @@ { "pc": 357, "op": "PUSH1", - "gas": 1544781, + "gas": 1551686, "gasCost": 3, "depth": 2, "stack": [ @@ -39732,7 +39135,7 @@ { "pc": 359, "op": "DUP2", - "gas": 1544778, + "gas": 1551683, "gasCost": 3, "depth": 2, "stack": [ @@ -39749,7 +39152,7 @@ { "pc": 360, "op": "DUP1", - "gas": 1544775, + "gas": 1551680, "gasCost": 3, "depth": 2, "stack": [ @@ -39767,7 +39170,7 @@ { "pc": 361, "op": "MLOAD", - "gas": 1544772, + "gas": 1551677, "gasCost": 3, "depth": 2, "stack": [ @@ -39786,7 +39189,7 @@ { "pc": 362, "op": "SWAP1", - "gas": 1544769, + "gas": 1551674, "gasCost": 3, "depth": 2, "stack": [ @@ -39805,7 +39208,7 @@ { "pc": 363, "op": "PUSH1", - "gas": 1544766, + "gas": 1551671, "gasCost": 3, "depth": 2, "stack": [ @@ -39824,7 +39227,7 @@ { "pc": 365, "op": "ADD", - "gas": 1544763, + "gas": 1551668, "gasCost": 3, "depth": 2, "stack": [ @@ -39844,7 +39247,7 @@ { "pc": 366, "op": "KECCAK256", - "gas": 1544760, + "gas": 1551665, "gasCost": 36, "depth": 2, "stack": [ @@ -39863,7 +39266,7 @@ { "pc": 367, "op": "SWAP1", - "gas": 1544724, + "gas": 1551629, "gasCost": 3, "depth": 2, "stack": [ @@ -39881,7 +39284,7 @@ { "pc": 368, "op": "POP", - "gas": 1544721, + "gas": 1551626, "gasCost": 2, "depth": 2, "stack": [ @@ -39899,7 +39302,7 @@ { "pc": 369, "op": "DUP1", - "gas": 1544719, + "gas": 1551624, "gasCost": 3, "depth": 2, "stack": [ @@ -39916,7 +39319,7 @@ { "pc": 370, "op": "SWAP3", - "gas": 1544716, + "gas": 1551621, "gasCost": 3, "depth": 2, "stack": [ @@ -39934,7 +39337,7 @@ { "pc": 371, "op": "POP", - "gas": 1544713, + "gas": 1551618, "gasCost": 2, "depth": 2, "stack": [ @@ -39952,7 +39355,7 @@ { "pc": 372, "op": "POP", - "gas": 1544711, + "gas": 1551616, "gasCost": 2, "depth": 2, "stack": [ @@ -39969,7 +39372,7 @@ { "pc": 373, "op": "POP", - "gas": 1544709, + "gas": 1551614, "gasCost": 2, "depth": 2, "stack": [ @@ -39985,7 +39388,7 @@ { "pc": 374, "op": "SWAP1", - "gas": 1544707, + "gas": 1551612, "gasCost": 3, "depth": 2, "stack": [ @@ -40000,7 +39403,7 @@ { "pc": 375, "op": "JUMP", - "gas": 1544704, + "gas": 1551609, "gasCost": 8, "depth": 2, "stack": [ @@ -40015,7 +39418,7 @@ { "pc": 683, "op": "JUMPDEST", - "gas": 1544696, + "gas": 1551601, "gasCost": 1, "depth": 2, "stack": [ @@ -40029,7 +39432,7 @@ { "pc": 684, "op": "POP", - "gas": 1544695, + "gas": 1551600, "gasCost": 2, "depth": 2, "stack": [ @@ -40043,7 +39446,7 @@ { "pc": 685, "op": "PUSH1", - "gas": 1544693, + "gas": 1551598, "gasCost": 3, "depth": 2, "stack": [ @@ -40056,7 +39459,7 @@ { "pc": 687, "op": "SWAP1", - "gas": 1544690, + "gas": 1551595, "gasCost": 3, "depth": 2, "stack": [ @@ -40070,7 +39473,7 @@ { "pc": 688, "op": "POP", - "gas": 1544687, + "gas": 1551592, "gasCost": 2, "depth": 2, "stack": [ @@ -40084,7 +39487,7 @@ { "pc": 689, "op": "SWAP2", - "gas": 1544685, + "gas": 1551590, "gasCost": 3, "depth": 2, "stack": [ @@ -40097,7 +39500,7 @@ { "pc": 690, "op": "SWAP1", - "gas": 1544682, + "gas": 1551587, "gasCost": 3, "depth": 2, "stack": [ @@ -40110,7 +39513,7 @@ { "pc": 691, "op": "POP", - "gas": 1544679, + "gas": 1551584, "gasCost": 2, "depth": 2, "stack": [ @@ -40123,7 +39526,7 @@ { "pc": 692, "op": "JUMP", - "gas": 1544677, + "gas": 1551582, "gasCost": 8, "depth": 2, "stack": [ @@ -40135,7 +39538,7 @@ { "pc": 217, "op": "JUMPDEST", - "gas": 1544669, + "gas": 1551574, "gasCost": 1, "depth": 2, "stack": [ @@ -40146,7 +39549,7 @@ { "pc": 218, "op": "PUSH1", - "gas": 1544668, + "gas": 1551573, "gasCost": 3, "depth": 2, "stack": [ @@ -40157,7 +39560,7 @@ { "pc": 220, "op": "MLOAD", - "gas": 1544665, + "gas": 1551570, "gasCost": 3, "depth": 2, "stack": [ @@ -40169,7 +39572,7 @@ { "pc": 221, "op": "PUSH2", - "gas": 1544662, + "gas": 1551567, "gasCost": 3, "depth": 2, "stack": [ @@ -40181,7 +39584,7 @@ { "pc": 224, "op": "SWAP2", - "gas": 1544659, + "gas": 1551564, "gasCost": 3, "depth": 2, "stack": [ @@ -40194,7 +39597,7 @@ { "pc": 225, "op": "SWAP1", - "gas": 1544656, + "gas": 1551561, "gasCost": 3, "depth": 2, "stack": [ @@ -40207,7 +39610,7 @@ { "pc": 226, "op": "PUSH2", - "gas": 1544653, + "gas": 1551558, "gasCost": 3, "depth": 2, "stack": [ @@ -40220,7 +39623,7 @@ { "pc": 229, "op": "JUMP", - "gas": 1544650, + "gas": 1551555, "gasCost": 8, "depth": 2, "stack": [ @@ -40234,7 +39637,7 @@ { "pc": 895, "op": "JUMPDEST", - "gas": 1544642, + "gas": 1551547, "gasCost": 1, "depth": 2, "stack": [ @@ -40247,7 +39650,7 @@ { "pc": 896, "op": "PUSH1", - "gas": 1544641, + "gas": 1551546, "gasCost": 3, "depth": 2, "stack": [ @@ -40260,7 +39663,7 @@ { "pc": 898, "op": "PUSH1", - "gas": 1544638, + "gas": 1551543, "gasCost": 3, "depth": 2, "stack": [ @@ -40274,7 +39677,7 @@ { "pc": 900, "op": "DUP3", - "gas": 1544635, + "gas": 1551540, "gasCost": 3, "depth": 2, "stack": [ @@ -40289,7 +39692,7 @@ { "pc": 901, "op": "ADD", - "gas": 1544632, + "gas": 1551537, "gasCost": 3, "depth": 2, "stack": [ @@ -40305,7 +39708,7 @@ { "pc": 902, "op": "SWAP1", - "gas": 1544629, + "gas": 1551534, "gasCost": 3, "depth": 2, "stack": [ @@ -40320,7 +39723,7 @@ { "pc": 903, "op": "POP", - "gas": 1544626, + "gas": 1551531, "gasCost": 2, "depth": 2, "stack": [ @@ -40335,7 +39738,7 @@ { "pc": 904, "op": "PUSH2", - "gas": 1544624, + "gas": 1551529, "gasCost": 3, "depth": 2, "stack": [ @@ -40349,7 +39752,7 @@ { "pc": 907, "op": "PUSH1", - "gas": 1544621, + "gas": 1551526, "gasCost": 3, "depth": 2, "stack": [ @@ -40364,7 +39767,7 @@ { "pc": 909, "op": "DUP4", - "gas": 1544618, + "gas": 1551523, "gasCost": 3, "depth": 2, "stack": [ @@ -40380,7 +39783,7 @@ { "pc": 910, "op": "ADD", - "gas": 1544615, + "gas": 1551520, "gasCost": 3, "depth": 2, "stack": [ @@ -40397,7 +39800,7 @@ { "pc": 911, "op": "DUP5", - "gas": 1544612, + "gas": 1551517, "gasCost": 3, "depth": 2, "stack": [ @@ -40413,7 +39816,7 @@ { "pc": 912, "op": "PUSH2", - "gas": 1544609, + "gas": 1551514, "gasCost": 3, "depth": 2, "stack": [ @@ -40430,7 +39833,7 @@ { "pc": 915, "op": "JUMP", - "gas": 1544606, + "gas": 1551511, "gasCost": 8, "depth": 2, "stack": [ @@ -40448,7 +39851,7 @@ { "pc": 880, "op": "JUMPDEST", - "gas": 1544598, + "gas": 1551503, "gasCost": 1, "depth": 2, "stack": [ @@ -40465,7 +39868,7 @@ { "pc": 881, "op": "PUSH2", - "gas": 1544597, + "gas": 1551502, "gasCost": 3, "depth": 2, "stack": [ @@ -40482,7 +39885,7 @@ { "pc": 884, "op": "DUP2", - "gas": 1544594, + "gas": 1551499, "gasCost": 3, "depth": 2, "stack": [ @@ -40500,7 +39903,7 @@ { "pc": 885, "op": "PUSH2", - "gas": 1544591, + "gas": 1551496, "gasCost": 3, "depth": 2, "stack": [ @@ -40519,7 +39922,7 @@ { "pc": 888, "op": "JUMP", - "gas": 1544588, + "gas": 1551493, "gasCost": 8, "depth": 2, "stack": [ @@ -40539,7 +39942,7 @@ { "pc": 781, "op": "JUMPDEST", - "gas": 1544580, + "gas": 1551485, "gasCost": 1, "depth": 2, "stack": [ @@ -40558,7 +39961,7 @@ { "pc": 782, "op": "PUSH1", - "gas": 1544579, + "gas": 1551484, "gasCost": 3, "depth": 2, "stack": [ @@ -40577,7 +39980,7 @@ { "pc": 784, "op": "DUP2", - "gas": 1544576, + "gas": 1551481, "gasCost": 3, "depth": 2, "stack": [ @@ -40597,7 +40000,7 @@ { "pc": 785, "op": "SWAP1", - "gas": 1544573, + "gas": 1551478, "gasCost": 3, "depth": 2, "stack": [ @@ -40618,7 +40021,7 @@ { "pc": 786, "op": "POP", - "gas": 1544570, + "gas": 1551475, "gasCost": 2, "depth": 2, "stack": [ @@ -40639,7 +40042,7 @@ { "pc": 787, "op": "SWAP2", - "gas": 1544568, + "gas": 1551473, "gasCost": 3, "depth": 2, "stack": [ @@ -40659,7 +40062,7 @@ { "pc": 788, "op": "SWAP1", - "gas": 1544565, + "gas": 1551470, "gasCost": 3, "depth": 2, "stack": [ @@ -40679,7 +40082,7 @@ { "pc": 789, "op": "POP", - "gas": 1544562, + "gas": 1551467, "gasCost": 2, "depth": 2, "stack": [ @@ -40699,7 +40102,7 @@ { "pc": 790, "op": "JUMP", - "gas": 1544560, + "gas": 1551465, "gasCost": 8, "depth": 2, "stack": [ @@ -40718,7 +40121,7 @@ { "pc": 889, "op": "JUMPDEST", - "gas": 1544552, + "gas": 1551457, "gasCost": 1, "depth": 2, "stack": [ @@ -40736,7 +40139,7 @@ { "pc": 890, "op": "DUP3", - "gas": 1544551, + "gas": 1551456, "gasCost": 3, "depth": 2, "stack": [ @@ -40754,7 +40157,7 @@ { "pc": 891, "op": "MSTORE", - "gas": 1544548, + "gas": 1551453, "gasCost": 3, "depth": 2, "stack": [ @@ -40773,7 +40176,7 @@ { "pc": 892, "op": "POP", - "gas": 1544545, + "gas": 1551450, "gasCost": 2, "depth": 2, "stack": [ @@ -40790,7 +40193,7 @@ { "pc": 893, "op": "POP", - "gas": 1544543, + "gas": 1551448, "gasCost": 2, "depth": 2, "stack": [ @@ -40806,7 +40209,7 @@ { "pc": 894, "op": "JUMP", - "gas": 1544541, + "gas": 1551446, "gasCost": 8, "depth": 2, "stack": [ @@ -40821,7 +40224,7 @@ { "pc": 916, "op": "JUMPDEST", - "gas": 1544533, + "gas": 1551438, "gasCost": 1, "depth": 2, "stack": [ @@ -40835,7 +40238,7 @@ { "pc": 917, "op": "SWAP3", - "gas": 1544532, + "gas": 1551437, "gasCost": 3, "depth": 2, "stack": [ @@ -40849,7 +40252,7 @@ { "pc": 918, "op": "SWAP2", - "gas": 1544529, + "gas": 1551434, "gasCost": 3, "depth": 2, "stack": [ @@ -40863,7 +40266,7 @@ { "pc": 919, "op": "POP", - "gas": 1544526, + "gas": 1551431, "gasCost": 2, "depth": 2, "stack": [ @@ -40877,7 +40280,7 @@ { "pc": 920, "op": "POP", - "gas": 1544524, + "gas": 1551429, "gasCost": 2, "depth": 2, "stack": [ @@ -40890,7 +40293,7 @@ { "pc": 921, "op": "JUMP", - "gas": 1544522, + "gas": 1551427, "gasCost": 8, "depth": 2, "stack": [ @@ -40902,7 +40305,7 @@ { "pc": 230, "op": "JUMPDEST", - "gas": 1544514, + "gas": 1551419, "gasCost": 1, "depth": 2, "stack": [ @@ -40913,7 +40316,7 @@ { "pc": 231, "op": "PUSH1", - "gas": 1544513, + "gas": 1551418, "gasCost": 3, "depth": 2, "stack": [ @@ -40924,7 +40327,7 @@ { "pc": 233, "op": "MLOAD", - "gas": 1544510, + "gas": 1551415, "gasCost": 3, "depth": 2, "stack": [ @@ -40936,7 +40339,7 @@ { "pc": 234, "op": "DUP1", - "gas": 1544507, + "gas": 1551412, "gasCost": 3, "depth": 2, "stack": [ @@ -40948,7 +40351,7 @@ { "pc": 235, "op": "SWAP2", - "gas": 1544504, + "gas": 1551409, "gasCost": 3, "depth": 2, "stack": [ @@ -40961,7 +40364,7 @@ { "pc": 236, "op": "SUB", - "gas": 1544501, + "gas": 1551406, "gasCost": 3, "depth": 2, "stack": [ @@ -40974,7 +40377,7 @@ { "pc": 237, "op": "SWAP1", - "gas": 1544498, + "gas": 1551403, "gasCost": 3, "depth": 2, "stack": [ @@ -40986,7 +40389,7 @@ { "pc": 238, "op": "RETURN", - "gas": 1544495, + "gas": 1551400, "gasCost": 0, "depth": 2, "stack": [ @@ -40996,9 +40399,9 @@ ] }, { - "pc": 1133, + "pc": 1117, "op": "ISZERO", - "gas": 1569121, + "gas": 1576135, "gasCost": 3, "depth": 1, "stack": [ @@ -41006,16 +40409,16 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xa0712d68", "0xe4", "0x1" ] }, { - "pc": 1134, + "pc": 1118, "op": "DUP1", - "gas": 1569118, + "gas": 1576132, "gasCost": 3, "depth": 1, "stack": [ @@ -41023,16 +40426,16 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xa0712d68", "0xe4", "0x0" ] }, { - "pc": 1135, + "pc": 1119, "op": "ISZERO", - "gas": 1569115, + "gas": 1576129, "gasCost": 3, "depth": 1, "stack": [ @@ -41040,7 +40443,7 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xa0712d68", "0xe4", "0x0", @@ -41048,9 +40451,9 @@ ] }, { - "pc": 1136, + "pc": 1120, "op": "PUSH3", - "gas": 1569112, + "gas": 1576126, "gasCost": 3, "depth": 1, "stack": [ @@ -41058,7 +40461,7 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xa0712d68", "0xe4", "0x0", @@ -41066,9 +40469,9 @@ ] }, { - "pc": 1140, + "pc": 1124, "op": "JUMPI", - "gas": 1569109, + "gas": 1576123, "gasCost": 10, "depth": 1, "stack": [ @@ -41076,18 +40479,18 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xa0712d68", "0xe4", "0x0", "0x1", - "0x47e" + "0x46e" ] }, { - "pc": 1150, + "pc": 1134, "op": "JUMPDEST", - "gas": 1569099, + "gas": 1576113, "gasCost": 1, "depth": 1, "stack": [ @@ -41095,16 +40498,16 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xa0712d68", "0xe4", "0x0" ] }, { - "pc": 1151, + "pc": 1135, "op": "POP", - "gas": 1569098, + "gas": 1576112, "gasCost": 2, "depth": 1, "stack": [ @@ -41112,16 +40515,16 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xa0712d68", "0xe4", "0x0" ] }, { - "pc": 1152, + "pc": 1136, "op": "POP", - "gas": 1569096, + "gas": 1576110, "gasCost": 2, "depth": 1, "stack": [ @@ -41129,15 +40532,15 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xa0712d68", "0xe4" ] }, { - "pc": 1153, + "pc": 1137, "op": "POP", - "gas": 1569094, + "gas": 1576108, "gasCost": 2, "depth": 1, "stack": [ @@ -41145,14 +40548,14 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", "0xa0712d68" ] }, { - "pc": 1154, + "pc": 1138, "op": "POP", - "gas": 1569092, + "gas": 1576106, "gasCost": 2, "depth": 1, "stack": [ @@ -41160,13 +40563,13 @@ "0x149", "0x3e8", "0x0", - "0x61a286b8e87e2d31c475d71c85a0020584c44bae" + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585" ] }, { - "pc": 1155, + "pc": 1139, "op": "PUSH1", - "gas": 1569090, + "gas": 1576104, "gasCost": 3, "depth": 1, "stack": [ @@ -41177,9 +40580,9 @@ ] }, { - "pc": 1157, + "pc": 1141, "op": "MLOAD", - "gas": 1569087, + "gas": 1576101, "gasCost": 3, "depth": 1, "stack": [ @@ -41191,9 +40594,9 @@ ] }, { - "pc": 1158, + "pc": 1142, "op": "RETURNDATASIZE", - "gas": 1569084, + "gas": 1576098, "gasCost": 2, "depth": 1, "stack": [ @@ -41205,9 +40608,9 @@ ] }, { - "pc": 1159, + "pc": 1143, "op": "PUSH1", - "gas": 1569082, + "gas": 1576096, "gasCost": 3, "depth": 1, "stack": [ @@ -41220,9 +40623,9 @@ ] }, { - "pc": 1161, + "pc": 1145, "op": "NOT", - "gas": 1569079, + "gas": 1576093, "gasCost": 3, "depth": 1, "stack": [ @@ -41236,9 +40639,9 @@ ] }, { - "pc": 1162, + "pc": 1146, "op": "PUSH1", - "gas": 1569076, + "gas": 1576090, "gasCost": 3, "depth": 1, "stack": [ @@ -41252,9 +40655,9 @@ ] }, { - "pc": 1164, + "pc": 1148, "op": "DUP3", - "gas": 1569073, + "gas": 1576087, "gasCost": 3, "depth": 1, "stack": [ @@ -41269,9 +40672,9 @@ ] }, { - "pc": 1165, + "pc": 1149, "op": "ADD", - "gas": 1569070, + "gas": 1576084, "gasCost": 3, "depth": 1, "stack": [ @@ -41287,9 +40690,9 @@ ] }, { - "pc": 1166, + "pc": 1150, "op": "AND", - "gas": 1569067, + "gas": 1576081, "gasCost": 3, "depth": 1, "stack": [ @@ -41304,9 +40707,9 @@ ] }, { - "pc": 1167, + "pc": 1151, "op": "DUP3", - "gas": 1569064, + "gas": 1576078, "gasCost": 3, "depth": 1, "stack": [ @@ -41320,9 +40723,9 @@ ] }, { - "pc": 1168, + "pc": 1152, "op": "ADD", - "gas": 1569061, + "gas": 1576075, "gasCost": 3, "depth": 1, "stack": [ @@ -41337,9 +40740,9 @@ ] }, { - "pc": 1169, + "pc": 1153, "op": "DUP1", - "gas": 1569058, + "gas": 1576072, "gasCost": 3, "depth": 1, "stack": [ @@ -41353,9 +40756,9 @@ ] }, { - "pc": 1170, + "pc": 1154, "op": "PUSH1", - "gas": 1569055, + "gas": 1576069, "gasCost": 3, "depth": 1, "stack": [ @@ -41370,9 +40773,9 @@ ] }, { - "pc": 1172, + "pc": 1156, "op": "MSTORE", - "gas": 1569052, + "gas": 1576066, "gasCost": 3, "depth": 1, "stack": [ @@ -41388,9 +40791,9 @@ ] }, { - "pc": 1173, + "pc": 1157, "op": "POP", - "gas": 1569049, + "gas": 1576063, "gasCost": 2, "depth": 1, "stack": [ @@ -41404,9 +40807,9 @@ ] }, { - "pc": 1174, + "pc": 1158, "op": "DUP2", - "gas": 1569047, + "gas": 1576061, "gasCost": 3, "depth": 1, "stack": [ @@ -41419,9 +40822,9 @@ ] }, { - "pc": 1175, + "pc": 1159, "op": "ADD", - "gas": 1569044, + "gas": 1576058, "gasCost": 3, "depth": 1, "stack": [ @@ -41435,9 +40838,9 @@ ] }, { - "pc": 1176, + "pc": 1160, "op": "SWAP1", - "gas": 1569041, + "gas": 1576055, "gasCost": 3, "depth": 1, "stack": [ @@ -41450,9 +40853,9 @@ ] }, { - "pc": 1177, + "pc": 1161, "op": "PUSH3", - "gas": 1569038, + "gas": 1576052, "gasCost": 3, "depth": 1, "stack": [ @@ -41465,9 +40868,9 @@ ] }, { - "pc": 1181, + "pc": 1165, "op": "SWAP2", - "gas": 1569035, + "gas": 1576049, "gasCost": 3, "depth": 1, "stack": [ @@ -41477,13 +40880,13 @@ "0x0", "0xe0", "0xc0", - "0x4a4" + "0x494" ] }, { - "pc": 1182, + "pc": 1166, "op": "SWAP1", - "gas": 1569032, + "gas": 1576046, "gasCost": 3, "depth": 1, "stack": [ @@ -41491,15 +40894,15 @@ "0x149", "0x3e8", "0x0", - "0x4a4", + "0x494", "0xc0", "0xe0" ] }, { - "pc": 1183, + "pc": 1167, "op": "PUSH3", - "gas": 1569029, + "gas": 1576043, "gasCost": 3, "depth": 1, "stack": [ @@ -41507,15 +40910,15 @@ "0x149", "0x3e8", "0x0", - "0x4a4", + "0x494", "0xe0", "0xc0" ] }, { - "pc": 1187, + "pc": 1171, "op": "JUMP", - "gas": 1569026, + "gas": 1576040, "gasCost": 8, "depth": 1, "stack": [ @@ -41523,16 +40926,16 @@ "0x149", "0x3e8", "0x0", - "0x4a4", + "0x494", "0xe0", "0xc0", - "0xcad" + "0xc69" ] }, { - "pc": 3245, + "pc": 3177, "op": "JUMPDEST", - "gas": 1569018, + "gas": 1576032, "gasCost": 1, "depth": 1, "stack": [ @@ -41540,15 +40943,15 @@ "0x149", "0x3e8", "0x0", - "0x4a4", + "0x494", "0xe0", "0xc0" ] }, { - "pc": 3246, + "pc": 3178, "op": "PUSH1", - "gas": 1569017, + "gas": 1576031, "gasCost": 3, "depth": 1, "stack": [ @@ -41556,15 +40959,15 @@ "0x149", "0x3e8", "0x0", - "0x4a4", + "0x494", "0xe0", "0xc0" ] }, { - "pc": 3248, + "pc": 3180, "op": "PUSH1", - "gas": 1569014, + "gas": 1576028, "gasCost": 3, "depth": 1, "stack": [ @@ -41572,16 +40975,16 @@ "0x149", "0x3e8", "0x0", - "0x4a4", + "0x494", "0xe0", "0xc0", "0x0" ] }, { - "pc": 3250, + "pc": 3182, "op": "DUP3", - "gas": 1569011, + "gas": 1576025, "gasCost": 3, "depth": 1, "stack": [ @@ -41589,7 +40992,7 @@ "0x149", "0x3e8", "0x0", - "0x4a4", + "0x494", "0xe0", "0xc0", "0x0", @@ -41597,9 +41000,9 @@ ] }, { - "pc": 3251, + "pc": 3183, "op": "DUP5", - "gas": 1569008, + "gas": 1576022, "gasCost": 3, "depth": 1, "stack": [ @@ -41607,7 +41010,7 @@ "0x149", "0x3e8", "0x0", - "0x4a4", + "0x494", "0xe0", "0xc0", "0x0", @@ -41616,9 +41019,9 @@ ] }, { - "pc": 3252, + "pc": 3184, "op": "SUB", - "gas": 1569005, + "gas": 1576019, "gasCost": 3, "depth": 1, "stack": [ @@ -41626,7 +41029,7 @@ "0x149", "0x3e8", "0x0", - "0x4a4", + "0x494", "0xe0", "0xc0", "0x0", @@ -41636,9 +41039,9 @@ ] }, { - "pc": 3253, + "pc": 3185, "op": "SLT", - "gas": 1569002, + "gas": 1576016, "gasCost": 3, "depth": 1, "stack": [ @@ -41646,7 +41049,7 @@ "0x149", "0x3e8", "0x0", - "0x4a4", + "0x494", "0xe0", "0xc0", "0x0", @@ -41655,9 +41058,9 @@ ] }, { - "pc": 3254, + "pc": 3186, "op": "ISZERO", - "gas": 1568999, + "gas": 1576013, "gasCost": 3, "depth": 1, "stack": [ @@ -41665,7 +41068,7 @@ "0x149", "0x3e8", "0x0", - "0x4a4", + "0x494", "0xe0", "0xc0", "0x0", @@ -41673,9 +41076,9 @@ ] }, { - "pc": 3255, + "pc": 3187, "op": "PUSH3", - "gas": 1568996, + "gas": 1576010, "gasCost": 3, "depth": 1, "stack": [ @@ -41683,7 +41086,7 @@ "0x149", "0x3e8", "0x0", - "0x4a4", + "0x494", "0xe0", "0xc0", "0x0", @@ -41691,9 +41094,9 @@ ] }, { - "pc": 3259, + "pc": 3191, "op": "JUMPI", - "gas": 1568993, + "gas": 1576007, "gasCost": 10, "depth": 1, "stack": [ @@ -41701,18 +41104,18 @@ "0x149", "0x3e8", "0x0", - "0x4a4", + "0x494", "0xe0", "0xc0", "0x0", "0x1", - "0xcc6" + "0xc82" ] }, { - "pc": 3270, + "pc": 3202, "op": "JUMPDEST", - "gas": 1568983, + "gas": 1575997, "gasCost": 1, "depth": 1, "stack": [ @@ -41720,16 +41123,16 @@ "0x149", "0x3e8", "0x0", - "0x4a4", + "0x494", "0xe0", "0xc0", "0x0" ] }, { - "pc": 3271, + "pc": 3203, "op": "PUSH1", - "gas": 1568982, + "gas": 1575996, "gasCost": 3, "depth": 1, "stack": [ @@ -41737,16 +41140,16 @@ "0x149", "0x3e8", "0x0", - "0x4a4", + "0x494", "0xe0", "0xc0", "0x0" ] }, { - "pc": 3273, + "pc": 3205, "op": "PUSH3", - "gas": 1568979, + "gas": 1575993, "gasCost": 3, "depth": 1, "stack": [ @@ -41754,7 +41157,7 @@ "0x149", "0x3e8", "0x0", - "0x4a4", + "0x494", "0xe0", "0xc0", "0x0", @@ -41762,9 +41165,9 @@ ] }, { - "pc": 3277, + "pc": 3209, "op": "DUP5", - "gas": 1568976, + "gas": 1575990, "gasCost": 3, "depth": 1, "stack": [ @@ -41772,18 +41175,18 @@ "0x149", "0x3e8", "0x0", - "0x4a4", + "0x494", "0xe0", "0xc0", "0x0", "0x0", - "0xcd6" + "0xc92" ] }, { - "pc": 3278, + "pc": 3210, "op": "DUP3", - "gas": 1568973, + "gas": 1575987, "gasCost": 3, "depth": 1, "stack": [ @@ -41791,19 +41194,19 @@ "0x149", "0x3e8", "0x0", - "0x4a4", + "0x494", "0xe0", "0xc0", "0x0", "0x0", - "0xcd6", + "0xc92", "0xe0" ] }, { - "pc": 3279, + "pc": 3211, "op": "DUP6", - "gas": 1568970, + "gas": 1575984, "gasCost": 3, "depth": 1, "stack": [ @@ -41811,20 +41214,20 @@ "0x149", "0x3e8", "0x0", - "0x4a4", + "0x494", "0xe0", "0xc0", "0x0", "0x0", - "0xcd6", + "0xc92", "0xe0", "0x0" ] }, { - "pc": 3280, + "pc": 3212, "op": "ADD", - "gas": 1568967, + "gas": 1575981, "gasCost": 3, "depth": 1, "stack": [ @@ -41832,21 +41235,21 @@ "0x149", "0x3e8", "0x0", - "0x4a4", + "0x494", "0xe0", "0xc0", "0x0", "0x0", - "0xcd6", + "0xc92", "0xe0", "0x0", "0xc0" ] }, { - "pc": 3281, + "pc": 3213, "op": "PUSH3", - "gas": 1568964, + "gas": 1575978, "gasCost": 3, "depth": 1, "stack": [ @@ -41854,20 +41257,20 @@ "0x149", "0x3e8", "0x0", - "0x4a4", + "0x494", "0xe0", "0xc0", "0x0", "0x0", - "0xcd6", + "0xc92", "0xe0", "0xc0" ] }, { - "pc": 3285, + "pc": 3217, "op": "JUMP", - "gas": 1568961, + "gas": 1575975, "gasCost": 8, "depth": 1, "stack": [ @@ -41875,21 +41278,21 @@ "0x149", "0x3e8", "0x0", - "0x4a4", + "0x494", "0xe0", "0xc0", "0x0", "0x0", - "0xcd6", + "0xc92", "0xe0", "0xc0", - "0xc96" + "0xc52" ] }, { - "pc": 3222, + "pc": 3154, "op": "JUMPDEST", - "gas": 1568953, + "gas": 1575967, "gasCost": 1, "depth": 1, "stack": [ @@ -41897,20 +41300,20 @@ "0x149", "0x3e8", "0x0", - "0x4a4", + "0x494", "0xe0", "0xc0", "0x0", "0x0", - "0xcd6", + "0xc92", "0xe0", "0xc0" ] }, { - "pc": 3223, + "pc": 3155, "op": "PUSH1", - "gas": 1568952, + "gas": 1575966, "gasCost": 3, "depth": 1, "stack": [ @@ -41918,20 +41321,20 @@ "0x149", "0x3e8", "0x0", - "0x4a4", + "0x494", "0xe0", "0xc0", "0x0", "0x0", - "0xcd6", + "0xc92", "0xe0", "0xc0" ] }, { - "pc": 3225, + "pc": 3157, "op": "DUP2", - "gas": 1568949, + "gas": 1575963, "gasCost": 3, "depth": 1, "stack": [ @@ -41939,21 +41342,21 @@ "0x149", "0x3e8", "0x0", - "0x4a4", + "0x494", "0xe0", "0xc0", "0x0", "0x0", - "0xcd6", + "0xc92", "0xe0", "0xc0", "0x0" ] }, { - "pc": 3226, + "pc": 3158, "op": "MLOAD", - "gas": 1568946, + "gas": 1575960, "gasCost": 3, "depth": 1, "stack": [ @@ -41961,12 +41364,12 @@ "0x149", "0x3e8", "0x0", - "0x4a4", + "0x494", "0xe0", "0xc0", "0x0", "0x0", - "0xcd6", + "0xc92", "0xe0", "0xc0", "0x0", @@ -41974,9 +41377,9 @@ ] }, { - "pc": 3227, + "pc": 3159, "op": "SWAP1", - "gas": 1568943, + "gas": 1575957, "gasCost": 3, "depth": 1, "stack": [ @@ -41984,12 +41387,12 @@ "0x149", "0x3e8", "0x0", - "0x4a4", + "0x494", "0xe0", "0xc0", "0x0", "0x0", - "0xcd6", + "0xc92", "0xe0", "0xc0", "0x0", @@ -41997,9 +41400,9 @@ ] }, { - "pc": 3228, + "pc": 3160, "op": "POP", - "gas": 1568940, + "gas": 1575954, "gasCost": 2, "depth": 1, "stack": [ @@ -42007,12 +41410,12 @@ "0x149", "0x3e8", "0x0", - "0x4a4", + "0x494", "0xe0", "0xc0", "0x0", "0x0", - "0xcd6", + "0xc92", "0xe0", "0xc0", "0x1", @@ -42020,9 +41423,9 @@ ] }, { - "pc": 3229, + "pc": 3161, "op": "PUSH3", - "gas": 1568938, + "gas": 1575952, "gasCost": 3, "depth": 1, "stack": [ @@ -42030,21 +41433,21 @@ "0x149", "0x3e8", "0x0", - "0x4a4", + "0x494", "0xe0", "0xc0", "0x0", "0x0", - "0xcd6", + "0xc92", "0xe0", "0xc0", "0x1" ] }, { - "pc": 3233, + "pc": 3165, "op": "DUP2", - "gas": 1568935, + "gas": 1575949, "gasCost": 3, "depth": 1, "stack": [ @@ -42052,22 +41455,22 @@ "0x149", "0x3e8", "0x0", - "0x4a4", + "0x494", "0xe0", "0xc0", "0x0", "0x0", - "0xcd6", + "0xc92", "0xe0", "0xc0", "0x1", - "0xca7" + "0xc63" ] }, { - "pc": 3234, + "pc": 3166, "op": "PUSH3", - "gas": 1568932, + "gas": 1575946, "gasCost": 3, "depth": 1, "stack": [ @@ -42075,23 +41478,23 @@ "0x149", "0x3e8", "0x0", - "0x4a4", + "0x494", "0xe0", "0xc0", "0x0", "0x0", - "0xcd6", + "0xc92", "0xe0", "0xc0", "0x1", - "0xca7", + "0xc63", "0x1" ] }, { - "pc": 3238, + "pc": 3170, "op": "JUMP", - "gas": 1568929, + "gas": 1575943, "gasCost": 8, "depth": 1, "stack": [ @@ -42099,24 +41502,24 @@ "0x149", "0x3e8", "0x0", - "0x4a4", + "0x494", "0xe0", "0xc0", "0x0", "0x0", - "0xcd6", + "0xc92", "0xe0", "0xc0", "0x1", - "0xca7", + "0xc63", "0x1", - "0x9fb" + "0x9d9" ] }, { - "pc": 2555, + "pc": 2521, "op": "JUMPDEST", - "gas": 1568921, + "gas": 1575935, "gasCost": 1, "depth": 1, "stack": [ @@ -42124,23 +41527,23 @@ "0x149", "0x3e8", "0x0", - "0x4a4", + "0x494", "0xe0", "0xc0", "0x0", "0x0", - "0xcd6", + "0xc92", "0xe0", "0xc0", "0x1", - "0xca7", + "0xc63", "0x1" ] }, { - "pc": 2556, + "pc": 2522, "op": "PUSH3", - "gas": 1568920, + "gas": 1575934, "gasCost": 3, "depth": 1, "stack": [ @@ -42148,23 +41551,23 @@ "0x149", "0x3e8", "0x0", - "0x4a4", + "0x494", "0xe0", "0xc0", "0x0", "0x0", - "0xcd6", + "0xc92", "0xe0", "0xc0", "0x1", - "0xca7", + "0xc63", "0x1" ] }, { - "pc": 2560, + "pc": 2526, "op": "DUP2", - "gas": 1568917, + "gas": 1575931, "gasCost": 3, "depth": 1, "stack": [ @@ -42172,24 +41575,24 @@ "0x149", "0x3e8", "0x0", - "0x4a4", + "0x494", "0xe0", "0xc0", "0x0", "0x0", - "0xcd6", + "0xc92", "0xe0", "0xc0", "0x1", - "0xca7", + "0xc63", "0x1", - "0xa06" + "0x9e4" ] }, { - "pc": 2561, + "pc": 2527, "op": "PUSH3", - "gas": 1568914, + "gas": 1575928, "gasCost": 3, "depth": 1, "stack": [ @@ -42197,25 +41600,25 @@ "0x149", "0x3e8", "0x0", - "0x4a4", + "0x494", "0xe0", "0xc0", "0x0", "0x0", - "0xcd6", + "0xc92", "0xe0", "0xc0", "0x1", - "0xca7", + "0xc63", "0x1", - "0xa06", + "0x9e4", "0x1" ] }, { - "pc": 2565, + "pc": 2531, "op": "JUMP", - "gas": 1568911, + "gas": 1575925, "gasCost": 8, "depth": 1, "stack": [ @@ -42223,26 +41626,26 @@ "0x149", "0x3e8", "0x0", - "0x4a4", + "0x494", "0xe0", "0xc0", "0x0", "0x0", - "0xcd6", + "0xc92", "0xe0", "0xc0", "0x1", - "0xca7", + "0xc63", "0x1", - "0xa06", + "0x9e4", "0x1", - "0x97c" + "0x95a" ] }, { - "pc": 2428, + "pc": 2394, "op": "JUMPDEST", - "gas": 1568903, + "gas": 1575917, "gasCost": 1, "depth": 1, "stack": [ @@ -42250,25 +41653,25 @@ "0x149", "0x3e8", "0x0", - "0x4a4", + "0x494", "0xe0", "0xc0", "0x0", "0x0", - "0xcd6", + "0xc92", "0xe0", "0xc0", "0x1", - "0xca7", + "0xc63", "0x1", - "0xa06", + "0x9e4", "0x1" ] }, { - "pc": 2429, + "pc": 2395, "op": "PUSH1", - "gas": 1568902, + "gas": 1575916, "gasCost": 3, "depth": 1, "stack": [ @@ -42276,25 +41679,25 @@ "0x149", "0x3e8", "0x0", - "0x4a4", + "0x494", "0xe0", "0xc0", "0x0", "0x0", - "0xcd6", + "0xc92", "0xe0", "0xc0", "0x1", - "0xca7", + "0xc63", "0x1", - "0xa06", + "0x9e4", "0x1" ] }, { - "pc": 2431, + "pc": 2397, "op": "DUP2", - "gas": 1568899, + "gas": 1575913, "gasCost": 3, "depth": 1, "stack": [ @@ -42302,26 +41705,26 @@ "0x149", "0x3e8", "0x0", - "0x4a4", + "0x494", "0xe0", "0xc0", "0x0", "0x0", - "0xcd6", + "0xc92", "0xe0", "0xc0", "0x1", - "0xca7", + "0xc63", "0x1", - "0xa06", + "0x9e4", "0x1", "0x0" ] }, { - "pc": 2432, + "pc": 2398, "op": "SWAP1", - "gas": 1568896, + "gas": 1575910, "gasCost": 3, "depth": 1, "stack": [ @@ -42329,27 +41732,27 @@ "0x149", "0x3e8", "0x0", - "0x4a4", + "0x494", "0xe0", "0xc0", "0x0", "0x0", - "0xcd6", + "0xc92", "0xe0", "0xc0", "0x1", - "0xca7", + "0xc63", "0x1", - "0xa06", + "0x9e4", "0x1", "0x0", "0x1" ] }, { - "pc": 2433, + "pc": 2399, "op": "POP", - "gas": 1568893, + "gas": 1575907, "gasCost": 2, "depth": 1, "stack": [ @@ -42357,27 +41760,27 @@ "0x149", "0x3e8", "0x0", - "0x4a4", + "0x494", "0xe0", "0xc0", "0x0", "0x0", - "0xcd6", + "0xc92", "0xe0", "0xc0", "0x1", - "0xca7", + "0xc63", "0x1", - "0xa06", + "0x9e4", "0x1", "0x1", "0x0" ] }, { - "pc": 2434, + "pc": 2400, "op": "SWAP2", - "gas": 1568891, + "gas": 1575905, "gasCost": 3, "depth": 1, "stack": [ @@ -42385,26 +41788,26 @@ "0x149", "0x3e8", "0x0", - "0x4a4", + "0x494", "0xe0", "0xc0", "0x0", "0x0", - "0xcd6", + "0xc92", "0xe0", "0xc0", "0x1", - "0xca7", + "0xc63", "0x1", - "0xa06", + "0x9e4", "0x1", "0x1" ] }, { - "pc": 2435, + "pc": 2401, "op": "SWAP1", - "gas": 1568888, + "gas": 1575902, "gasCost": 3, "depth": 1, "stack": [ @@ -42412,26 +41815,26 @@ "0x149", "0x3e8", "0x0", - "0x4a4", + "0x494", "0xe0", "0xc0", "0x0", "0x0", - "0xcd6", + "0xc92", "0xe0", "0xc0", "0x1", - "0xca7", + "0xc63", "0x1", "0x1", "0x1", - "0xa06" + "0x9e4" ] }, { - "pc": 2436, + "pc": 2402, "op": "POP", - "gas": 1568885, + "gas": 1575899, "gasCost": 2, "depth": 1, "stack": [ @@ -42439,26 +41842,26 @@ "0x149", "0x3e8", "0x0", - "0x4a4", + "0x494", "0xe0", "0xc0", "0x0", "0x0", - "0xcd6", + "0xc92", "0xe0", "0xc0", "0x1", - "0xca7", + "0xc63", "0x1", "0x1", - "0xa06", + "0x9e4", "0x1" ] }, { - "pc": 2437, + "pc": 2403, "op": "JUMP", - "gas": 1568883, + "gas": 1575897, "gasCost": 8, "depth": 1, "stack": [ @@ -42466,25 +41869,25 @@ "0x149", "0x3e8", "0x0", - "0x4a4", + "0x494", "0xe0", "0xc0", "0x0", "0x0", - "0xcd6", + "0xc92", "0xe0", "0xc0", "0x1", - "0xca7", + "0xc63", "0x1", "0x1", - "0xa06" + "0x9e4" ] }, { - "pc": 2566, + "pc": 2532, "op": "JUMPDEST", - "gas": 1568875, + "gas": 1575889, "gasCost": 1, "depth": 1, "stack": [ @@ -42492,24 +41895,24 @@ "0x149", "0x3e8", "0x0", - "0x4a4", + "0x494", "0xe0", "0xc0", "0x0", "0x0", - "0xcd6", + "0xc92", "0xe0", "0xc0", "0x1", - "0xca7", + "0xc63", "0x1", "0x1" ] }, { - "pc": 2567, + "pc": 2533, "op": "DUP2", - "gas": 1568874, + "gas": 1575888, "gasCost": 3, "depth": 1, "stack": [ @@ -42517,24 +41920,24 @@ "0x149", "0x3e8", "0x0", - "0x4a4", + "0x494", "0xe0", "0xc0", "0x0", "0x0", - "0xcd6", + "0xc92", "0xe0", "0xc0", "0x1", - "0xca7", + "0xc63", "0x1", "0x1" ] }, { - "pc": 2568, + "pc": 2534, "op": "EQ", - "gas": 1568871, + "gas": 1575885, "gasCost": 3, "depth": 1, "stack": [ @@ -42542,25 +41945,25 @@ "0x149", "0x3e8", "0x0", - "0x4a4", + "0x494", "0xe0", "0xc0", "0x0", "0x0", - "0xcd6", + "0xc92", "0xe0", "0xc0", "0x1", - "0xca7", + "0xc63", "0x1", "0x1", "0x1" ] }, { - "pc": 2569, + "pc": 2535, "op": "PUSH3", - "gas": 1568868, + "gas": 1575882, "gasCost": 3, "depth": 1, "stack": [ @@ -42568,24 +41971,24 @@ "0x149", "0x3e8", "0x0", - "0x4a4", + "0x494", "0xe0", "0xc0", "0x0", "0x0", - "0xcd6", + "0xc92", "0xe0", "0xc0", "0x1", - "0xca7", + "0xc63", "0x1", "0x1" ] }, { - "pc": 2573, + "pc": 2539, "op": "JUMPI", - "gas": 1568865, + "gas": 1575879, "gasCost": 10, "depth": 1, "stack": [ @@ -42593,25 +41996,25 @@ "0x149", "0x3e8", "0x0", - "0x4a4", + "0x494", "0xe0", "0xc0", "0x0", "0x0", - "0xcd6", + "0xc92", "0xe0", "0xc0", "0x1", - "0xca7", + "0xc63", "0x1", "0x1", - "0xa12" + "0x9f0" ] }, { - "pc": 2578, + "pc": 2544, "op": "JUMPDEST", - "gas": 1568855, + "gas": 1575869, "gasCost": 1, "depth": 1, "stack": [ @@ -42619,23 +42022,23 @@ "0x149", "0x3e8", "0x0", - "0x4a4", + "0x494", "0xe0", "0xc0", "0x0", "0x0", - "0xcd6", + "0xc92", "0xe0", "0xc0", "0x1", - "0xca7", + "0xc63", "0x1" ] }, { - "pc": 2579, + "pc": 2545, "op": "POP", - "gas": 1568854, + "gas": 1575868, "gasCost": 2, "depth": 1, "stack": [ @@ -42643,23 +42046,23 @@ "0x149", "0x3e8", "0x0", - "0x4a4", + "0x494", "0xe0", "0xc0", "0x0", "0x0", - "0xcd6", + "0xc92", "0xe0", "0xc0", "0x1", - "0xca7", + "0xc63", "0x1" ] }, { - "pc": 2580, + "pc": 2546, "op": "JUMP", - "gas": 1568852, + "gas": 1575866, "gasCost": 8, "depth": 1, "stack": [ @@ -42667,22 +42070,22 @@ "0x149", "0x3e8", "0x0", - "0x4a4", + "0x494", "0xe0", "0xc0", "0x0", "0x0", - "0xcd6", + "0xc92", "0xe0", "0xc0", "0x1", - "0xca7" + "0xc63" ] }, { - "pc": 3239, + "pc": 3171, "op": "JUMPDEST", - "gas": 1568844, + "gas": 1575858, "gasCost": 1, "depth": 1, "stack": [ @@ -42690,21 +42093,21 @@ "0x149", "0x3e8", "0x0", - "0x4a4", + "0x494", "0xe0", "0xc0", "0x0", "0x0", - "0xcd6", + "0xc92", "0xe0", "0xc0", "0x1" ] }, { - "pc": 3240, + "pc": 3172, "op": "SWAP3", - "gas": 1568843, + "gas": 1575857, "gasCost": 3, "depth": 1, "stack": [ @@ -42712,21 +42115,21 @@ "0x149", "0x3e8", "0x0", - "0x4a4", + "0x494", "0xe0", "0xc0", "0x0", "0x0", - "0xcd6", + "0xc92", "0xe0", "0xc0", "0x1" ] }, { - "pc": 3241, + "pc": 3173, "op": "SWAP2", - "gas": 1568840, + "gas": 1575854, "gasCost": 3, "depth": 1, "stack": [ @@ -42734,7 +42137,7 @@ "0x149", "0x3e8", "0x0", - "0x4a4", + "0x494", "0xe0", "0xc0", "0x0", @@ -42742,13 +42145,13 @@ "0x1", "0xe0", "0xc0", - "0xcd6" + "0xc92" ] }, { - "pc": 3242, + "pc": 3174, "op": "POP", - "gas": 1568837, + "gas": 1575851, "gasCost": 2, "depth": 1, "stack": [ @@ -42756,21 +42159,21 @@ "0x149", "0x3e8", "0x0", - "0x4a4", + "0x494", "0xe0", "0xc0", "0x0", "0x0", "0x1", - "0xcd6", + "0xc92", "0xc0", "0xe0" ] }, { - "pc": 3243, + "pc": 3175, "op": "POP", - "gas": 1568835, + "gas": 1575849, "gasCost": 2, "depth": 1, "stack": [ @@ -42778,20 +42181,20 @@ "0x149", "0x3e8", "0x0", - "0x4a4", + "0x494", "0xe0", "0xc0", "0x0", "0x0", "0x1", - "0xcd6", + "0xc92", "0xc0" ] }, { - "pc": 3244, + "pc": 3176, "op": "JUMP", - "gas": 1568833, + "gas": 1575847, "gasCost": 8, "depth": 1, "stack": [ @@ -42799,19 +42202,19 @@ "0x149", "0x3e8", "0x0", - "0x4a4", + "0x494", "0xe0", "0xc0", "0x0", "0x0", "0x1", - "0xcd6" + "0xc92" ] }, { - "pc": 3286, + "pc": 3218, "op": "JUMPDEST", - "gas": 1568825, + "gas": 1575839, "gasCost": 1, "depth": 1, "stack": [ @@ -42819,7 +42222,7 @@ "0x149", "0x3e8", "0x0", - "0x4a4", + "0x494", "0xe0", "0xc0", "0x0", @@ -42828,9 +42231,9 @@ ] }, { - "pc": 3287, + "pc": 3219, "op": "SWAP2", - "gas": 1568824, + "gas": 1575838, "gasCost": 3, "depth": 1, "stack": [ @@ -42838,7 +42241,7 @@ "0x149", "0x3e8", "0x0", - "0x4a4", + "0x494", "0xe0", "0xc0", "0x0", @@ -42847,9 +42250,9 @@ ] }, { - "pc": 3288, + "pc": 3220, "op": "POP", - "gas": 1568821, + "gas": 1575835, "gasCost": 2, "depth": 1, "stack": [ @@ -42857,7 +42260,7 @@ "0x149", "0x3e8", "0x0", - "0x4a4", + "0x494", "0xe0", "0xc0", "0x1", @@ -42866,9 +42269,9 @@ ] }, { - "pc": 3289, + "pc": 3221, "op": "POP", - "gas": 1568819, + "gas": 1575833, "gasCost": 2, "depth": 1, "stack": [ @@ -42876,7 +42279,7 @@ "0x149", "0x3e8", "0x0", - "0x4a4", + "0x494", "0xe0", "0xc0", "0x1", @@ -42884,9 +42287,9 @@ ] }, { - "pc": 3290, + "pc": 3222, "op": "SWAP3", - "gas": 1568817, + "gas": 1575831, "gasCost": 3, "depth": 1, "stack": [ @@ -42894,16 +42297,16 @@ "0x149", "0x3e8", "0x0", - "0x4a4", + "0x494", "0xe0", "0xc0", "0x1" ] }, { - "pc": 3291, + "pc": 3223, "op": "SWAP2", - "gas": 1568814, + "gas": 1575828, "gasCost": 3, "depth": 1, "stack": [ @@ -42914,13 +42317,13 @@ "0x1", "0xe0", "0xc0", - "0x4a4" + "0x494" ] }, { - "pc": 3292, + "pc": 3224, "op": "POP", - "gas": 1568811, + "gas": 1575825, "gasCost": 2, "depth": 1, "stack": [ @@ -42929,15 +42332,15 @@ "0x3e8", "0x0", "0x1", - "0x4a4", + "0x494", "0xc0", "0xe0" ] }, { - "pc": 3293, + "pc": 3225, "op": "POP", - "gas": 1568809, + "gas": 1575823, "gasCost": 2, "depth": 1, "stack": [ @@ -42946,14 +42349,14 @@ "0x3e8", "0x0", "0x1", - "0x4a4", + "0x494", "0xc0" ] }, { - "pc": 3294, + "pc": 3226, "op": "JUMP", - "gas": 1568807, + "gas": 1575821, "gasCost": 8, "depth": 1, "stack": [ @@ -42962,13 +42365,13 @@ "0x3e8", "0x0", "0x1", - "0x4a4" + "0x494" ] }, { - "pc": 1188, + "pc": 1172, "op": "JUMPDEST", - "gas": 1568799, + "gas": 1575813, "gasCost": 1, "depth": 1, "stack": [ @@ -42980,9 +42383,9 @@ ] }, { - "pc": 1189, + "pc": 1173, "op": "POP", - "gas": 1568798, + "gas": 1575812, "gasCost": 2, "depth": 1, "stack": [ @@ -42994,9 +42397,9 @@ ] }, { - "pc": 1190, + "pc": 1174, "op": "PUSH1", - "gas": 1568796, + "gas": 1575810, "gasCost": 3, "depth": 1, "stack": [ @@ -43007,9 +42410,9 @@ ] }, { - "pc": 1192, + "pc": 1176, "op": "SWAP1", - "gas": 1568793, + "gas": 1575807, "gasCost": 3, "depth": 1, "stack": [ @@ -43021,9 +42424,9 @@ ] }, { - "pc": 1193, + "pc": 1177, "op": "POP", - "gas": 1568790, + "gas": 1575804, "gasCost": 2, "depth": 1, "stack": [ @@ -43035,9 +42438,9 @@ ] }, { - "pc": 1194, + "pc": 1178, "op": "SWAP2", - "gas": 1568788, + "gas": 1575802, "gasCost": 3, "depth": 1, "stack": [ @@ -43048,9 +42451,9 @@ ] }, { - "pc": 1195, + "pc": 1179, "op": "SWAP1", - "gas": 1568785, + "gas": 1575799, "gasCost": 3, "depth": 1, "stack": [ @@ -43061,9 +42464,9 @@ ] }, { - "pc": 1196, + "pc": 1180, "op": "POP", - "gas": 1568782, + "gas": 1575796, "gasCost": 2, "depth": 1, "stack": [ @@ -43074,9 +42477,9 @@ ] }, { - "pc": 1197, + "pc": 1181, "op": "JUMP", - "gas": 1568780, + "gas": 1575794, "gasCost": 8, "depth": 1, "stack": [ @@ -43088,7 +42491,7 @@ { "pc": 329, "op": "JUMPDEST", - "gas": 1568772, + "gas": 1575786, "gasCost": 1, "depth": 1, "stack": [ @@ -43099,7 +42502,7 @@ { "pc": 330, "op": "PUSH1", - "gas": 1568771, + "gas": 1575785, "gasCost": 3, "depth": 1, "stack": [ @@ -43110,7 +42513,7 @@ { "pc": 332, "op": "MLOAD", - "gas": 1568768, + "gas": 1575782, "gasCost": 3, "depth": 1, "stack": [ @@ -43122,7 +42525,7 @@ { "pc": 333, "op": "PUSH3", - "gas": 1568765, + "gas": 1575779, "gasCost": 3, "depth": 1, "stack": [ @@ -43134,7 +42537,7 @@ { "pc": 337, "op": "SWAP2", - "gas": 1568762, + "gas": 1575776, "gasCost": 3, "depth": 1, "stack": [ @@ -43147,7 +42550,7 @@ { "pc": 338, "op": "SWAP1", - "gas": 1568759, + "gas": 1575773, "gasCost": 3, "depth": 1, "stack": [ @@ -43160,7 +42563,7 @@ { "pc": 339, "op": "PUSH3", - "gas": 1568756, + "gas": 1575770, "gasCost": 3, "depth": 1, "stack": [ @@ -43173,7 +42576,7 @@ { "pc": 343, "op": "JUMP", - "gas": 1568753, + "gas": 1575767, "gasCost": 8, "depth": 1, "stack": [ @@ -43181,13 +42584,13 @@ "0x158", "0x1", "0xe0", - "0x997" + "0x975" ] }, { - "pc": 2455, + "pc": 2421, "op": "JUMPDEST", - "gas": 1568745, + "gas": 1575759, "gasCost": 1, "depth": 1, "stack": [ @@ -43198,9 +42601,9 @@ ] }, { - "pc": 2456, + "pc": 2422, "op": "PUSH1", - "gas": 1568744, + "gas": 1575758, "gasCost": 3, "depth": 1, "stack": [ @@ -43211,9 +42614,9 @@ ] }, { - "pc": 2458, + "pc": 2424, "op": "PUSH1", - "gas": 1568741, + "gas": 1575755, "gasCost": 3, "depth": 1, "stack": [ @@ -43225,9 +42628,9 @@ ] }, { - "pc": 2460, + "pc": 2426, "op": "DUP3", - "gas": 1568738, + "gas": 1575752, "gasCost": 3, "depth": 1, "stack": [ @@ -43240,9 +42643,9 @@ ] }, { - "pc": 2461, + "pc": 2427, "op": "ADD", - "gas": 1568735, + "gas": 1575749, "gasCost": 3, "depth": 1, "stack": [ @@ -43256,9 +42659,9 @@ ] }, { - "pc": 2462, + "pc": 2428, "op": "SWAP1", - "gas": 1568732, + "gas": 1575746, "gasCost": 3, "depth": 1, "stack": [ @@ -43271,9 +42674,9 @@ ] }, { - "pc": 2463, + "pc": 2429, "op": "POP", - "gas": 1568729, + "gas": 1575743, "gasCost": 2, "depth": 1, "stack": [ @@ -43286,9 +42689,9 @@ ] }, { - "pc": 2464, + "pc": 2430, "op": "PUSH3", - "gas": 1568727, + "gas": 1575741, "gasCost": 3, "depth": 1, "stack": [ @@ -43300,9 +42703,9 @@ ] }, { - "pc": 2468, + "pc": 2434, "op": "PUSH1", - "gas": 1568724, + "gas": 1575738, "gasCost": 3, "depth": 1, "stack": [ @@ -43311,13 +42714,13 @@ "0x1", "0xe0", "0x100", - "0x9ae" + "0x98c" ] }, { - "pc": 2470, + "pc": 2436, "op": "DUP4", - "gas": 1568721, + "gas": 1575735, "gasCost": 3, "depth": 1, "stack": [ @@ -43326,14 +42729,14 @@ "0x1", "0xe0", "0x100", - "0x9ae", + "0x98c", "0x0" ] }, { - "pc": 2471, + "pc": 2437, "op": "ADD", - "gas": 1568718, + "gas": 1575732, "gasCost": 3, "depth": 1, "stack": [ @@ -43342,15 +42745,15 @@ "0x1", "0xe0", "0x100", - "0x9ae", + "0x98c", "0x0", "0xe0" ] }, { - "pc": 2472, + "pc": 2438, "op": "DUP5", - "gas": 1568715, + "gas": 1575729, "gasCost": 3, "depth": 1, "stack": [ @@ -43359,14 +42762,14 @@ "0x1", "0xe0", "0x100", - "0x9ae", + "0x98c", "0xe0" ] }, { - "pc": 2473, + "pc": 2439, "op": "PUSH3", - "gas": 1568712, + "gas": 1575726, "gasCost": 3, "depth": 1, "stack": [ @@ -43375,15 +42778,15 @@ "0x1", "0xe0", "0x100", - "0x9ae", + "0x98c", "0xe0", "0x1" ] }, { - "pc": 2477, + "pc": 2443, "op": "JUMP", - "gas": 1568709, + "gas": 1575723, "gasCost": 8, "depth": 1, "stack": [ @@ -43392,16 +42795,16 @@ "0x1", "0xe0", "0x100", - "0x9ae", + "0x98c", "0xe0", "0x1", - "0x986" + "0x964" ] }, { - "pc": 2438, + "pc": 2404, "op": "JUMPDEST", - "gas": 1568701, + "gas": 1575715, "gasCost": 1, "depth": 1, "stack": [ @@ -43410,15 +42813,15 @@ "0x1", "0xe0", "0x100", - "0x9ae", + "0x98c", "0xe0", "0x1" ] }, { - "pc": 2439, + "pc": 2405, "op": "PUSH3", - "gas": 1568700, + "gas": 1575714, "gasCost": 3, "depth": 1, "stack": [ @@ -43427,15 +42830,15 @@ "0x1", "0xe0", "0x100", - "0x9ae", + "0x98c", "0xe0", "0x1" ] }, { - "pc": 2443, + "pc": 2409, "op": "DUP2", - "gas": 1568697, + "gas": 1575711, "gasCost": 3, "depth": 1, "stack": [ @@ -43444,16 +42847,16 @@ "0x1", "0xe0", "0x100", - "0x9ae", + "0x98c", "0xe0", "0x1", - "0x991" + "0x96f" ] }, { - "pc": 2444, + "pc": 2410, "op": "PUSH3", - "gas": 1568694, + "gas": 1575708, "gasCost": 3, "depth": 1, "stack": [ @@ -43462,17 +42865,17 @@ "0x1", "0xe0", "0x100", - "0x9ae", + "0x98c", "0xe0", "0x1", - "0x991", + "0x96f", "0x1" ] }, { - "pc": 2448, + "pc": 2414, "op": "JUMP", - "gas": 1568691, + "gas": 1575705, "gasCost": 8, "depth": 1, "stack": [ @@ -43481,18 +42884,18 @@ "0x1", "0xe0", "0x100", - "0x9ae", + "0x98c", "0xe0", "0x1", - "0x991", + "0x96f", "0x1", - "0x97c" + "0x95a" ] }, { - "pc": 2428, + "pc": 2394, "op": "JUMPDEST", - "gas": 1568683, + "gas": 1575697, "gasCost": 1, "depth": 1, "stack": [ @@ -43501,17 +42904,17 @@ "0x1", "0xe0", "0x100", - "0x9ae", + "0x98c", "0xe0", "0x1", - "0x991", + "0x96f", "0x1" ] }, { - "pc": 2429, + "pc": 2395, "op": "PUSH1", - "gas": 1568682, + "gas": 1575696, "gasCost": 3, "depth": 1, "stack": [ @@ -43520,17 +42923,17 @@ "0x1", "0xe0", "0x100", - "0x9ae", + "0x98c", "0xe0", "0x1", - "0x991", + "0x96f", "0x1" ] }, { - "pc": 2431, + "pc": 2397, "op": "DUP2", - "gas": 1568679, + "gas": 1575693, "gasCost": 3, "depth": 1, "stack": [ @@ -43539,18 +42942,18 @@ "0x1", "0xe0", "0x100", - "0x9ae", + "0x98c", "0xe0", "0x1", - "0x991", + "0x96f", "0x1", "0x0" ] }, { - "pc": 2432, + "pc": 2398, "op": "SWAP1", - "gas": 1568676, + "gas": 1575690, "gasCost": 3, "depth": 1, "stack": [ @@ -43559,19 +42962,19 @@ "0x1", "0xe0", "0x100", - "0x9ae", + "0x98c", "0xe0", "0x1", - "0x991", + "0x96f", "0x1", "0x0", "0x1" ] }, { - "pc": 2433, + "pc": 2399, "op": "POP", - "gas": 1568673, + "gas": 1575687, "gasCost": 2, "depth": 1, "stack": [ @@ -43580,19 +42983,19 @@ "0x1", "0xe0", "0x100", - "0x9ae", + "0x98c", "0xe0", "0x1", - "0x991", + "0x96f", "0x1", "0x1", "0x0" ] }, { - "pc": 2434, + "pc": 2400, "op": "SWAP2", - "gas": 1568671, + "gas": 1575685, "gasCost": 3, "depth": 1, "stack": [ @@ -43601,18 +43004,18 @@ "0x1", "0xe0", "0x100", - "0x9ae", + "0x98c", "0xe0", "0x1", - "0x991", + "0x96f", "0x1", "0x1" ] }, { - "pc": 2435, + "pc": 2401, "op": "SWAP1", - "gas": 1568668, + "gas": 1575682, "gasCost": 3, "depth": 1, "stack": [ @@ -43621,18 +43024,18 @@ "0x1", "0xe0", "0x100", - "0x9ae", + "0x98c", "0xe0", "0x1", "0x1", "0x1", - "0x991" + "0x96f" ] }, { - "pc": 2436, + "pc": 2402, "op": "POP", - "gas": 1568665, + "gas": 1575679, "gasCost": 2, "depth": 1, "stack": [ @@ -43641,18 +43044,18 @@ "0x1", "0xe0", "0x100", - "0x9ae", + "0x98c", "0xe0", "0x1", "0x1", - "0x991", + "0x96f", "0x1" ] }, { - "pc": 2437, + "pc": 2403, "op": "JUMP", - "gas": 1568663, + "gas": 1575677, "gasCost": 8, "depth": 1, "stack": [ @@ -43661,17 +43064,17 @@ "0x1", "0xe0", "0x100", - "0x9ae", + "0x98c", "0xe0", "0x1", "0x1", - "0x991" + "0x96f" ] }, { - "pc": 2449, + "pc": 2415, "op": "JUMPDEST", - "gas": 1568655, + "gas": 1575669, "gasCost": 1, "depth": 1, "stack": [ @@ -43680,16 +43083,16 @@ "0x1", "0xe0", "0x100", - "0x9ae", + "0x98c", "0xe0", "0x1", "0x1" ] }, { - "pc": 2450, + "pc": 2416, "op": "DUP3", - "gas": 1568654, + "gas": 1575668, "gasCost": 3, "depth": 1, "stack": [ @@ -43698,16 +43101,16 @@ "0x1", "0xe0", "0x100", - "0x9ae", + "0x98c", "0xe0", "0x1", "0x1" ] }, { - "pc": 2451, + "pc": 2417, "op": "MSTORE", - "gas": 1568651, + "gas": 1575665, "gasCost": 3, "depth": 1, "stack": [ @@ -43716,7 +43119,7 @@ "0x1", "0xe0", "0x100", - "0x9ae", + "0x98c", "0xe0", "0x1", "0x1", @@ -43724,9 +43127,9 @@ ] }, { - "pc": 2452, + "pc": 2418, "op": "POP", - "gas": 1568648, + "gas": 1575662, "gasCost": 2, "depth": 1, "stack": [ @@ -43735,15 +43138,15 @@ "0x1", "0xe0", "0x100", - "0x9ae", + "0x98c", "0xe0", "0x1" ] }, { - "pc": 2453, + "pc": 2419, "op": "POP", - "gas": 1568646, + "gas": 1575660, "gasCost": 2, "depth": 1, "stack": [ @@ -43752,14 +43155,14 @@ "0x1", "0xe0", "0x100", - "0x9ae", + "0x98c", "0xe0" ] }, { - "pc": 2454, + "pc": 2420, "op": "JUMP", - "gas": 1568644, + "gas": 1575658, "gasCost": 8, "depth": 1, "stack": [ @@ -43768,13 +43171,13 @@ "0x1", "0xe0", "0x100", - "0x9ae" + "0x98c" ] }, { - "pc": 2478, + "pc": 2444, "op": "JUMPDEST", - "gas": 1568636, + "gas": 1575650, "gasCost": 1, "depth": 1, "stack": [ @@ -43786,9 +43189,9 @@ ] }, { - "pc": 2479, + "pc": 2445, "op": "SWAP3", - "gas": 1568635, + "gas": 1575649, "gasCost": 3, "depth": 1, "stack": [ @@ -43800,9 +43203,9 @@ ] }, { - "pc": 2480, + "pc": 2446, "op": "SWAP2", - "gas": 1568632, + "gas": 1575646, "gasCost": 3, "depth": 1, "stack": [ @@ -43814,9 +43217,9 @@ ] }, { - "pc": 2481, + "pc": 2447, "op": "POP", - "gas": 1568629, + "gas": 1575643, "gasCost": 2, "depth": 1, "stack": [ @@ -43828,9 +43231,9 @@ ] }, { - "pc": 2482, + "pc": 2448, "op": "POP", - "gas": 1568627, + "gas": 1575641, "gasCost": 2, "depth": 1, "stack": [ @@ -43841,9 +43244,9 @@ ] }, { - "pc": 2483, + "pc": 2449, "op": "JUMP", - "gas": 1568625, + "gas": 1575639, "gasCost": 8, "depth": 1, "stack": [ @@ -43855,7 +43258,7 @@ { "pc": 344, "op": "JUMPDEST", - "gas": 1568617, + "gas": 1575631, "gasCost": 1, "depth": 1, "stack": [ @@ -43866,7 +43269,7 @@ { "pc": 345, "op": "PUSH1", - "gas": 1568616, + "gas": 1575630, "gasCost": 3, "depth": 1, "stack": [ @@ -43877,7 +43280,7 @@ { "pc": 347, "op": "MLOAD", - "gas": 1568613, + "gas": 1575627, "gasCost": 3, "depth": 1, "stack": [ @@ -43889,7 +43292,7 @@ { "pc": 348, "op": "DUP1", - "gas": 1568610, + "gas": 1575624, "gasCost": 3, "depth": 1, "stack": [ @@ -43901,7 +43304,7 @@ { "pc": 349, "op": "SWAP2", - "gas": 1568607, + "gas": 1575621, "gasCost": 3, "depth": 1, "stack": [ @@ -43914,7 +43317,7 @@ { "pc": 350, "op": "SUB", - "gas": 1568604, + "gas": 1575618, "gasCost": 3, "depth": 1, "stack": [ @@ -43927,7 +43330,7 @@ { "pc": 351, "op": "SWAP1", - "gas": 1568601, + "gas": 1575615, "gasCost": 3, "depth": 1, "stack": [ @@ -43939,7 +43342,7 @@ { "pc": 352, "op": "RETURN", - "gas": 1568598, + "gas": 1575612, "gasCost": 0, "depth": 1, "stack": [ diff --git a/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint2.prestateDiffTracer.json b/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint2.prestateDiffTracer.json index 289c3dbdf..a1fb7f606 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint2.prestateDiffTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint2.prestateDiffTracer.json @@ -1,42 +1,42 @@ { "post": { "0x0000000000000000000000000000000000000000": { - "balance": "0x1beb69b" + "balance": "0x45bc45" }, - "0x61a286b8e87e2d31c475d71c85a0020584c44bae": { - "code": "0x608060405234801561001057600080fd5b50600436106100625760003560e01c80631c717069146100675780631c93908c1461008557806392954362146100b5578063a0712d68146100bf578063b69ef8a8146100ef578063c9353cb51461010d575b600080fd5b61006f610129565b60405161007c91906102ed565b60405180910390f35b61009f600480360381019061009a9190610343565b610178565b6040516100ac919061037f565b60405180910390f35b6100bd6101ea565b005b6100d960048036038101906100d49190610343565b610225565b6040516100e6919061037f565b60405180910390f35b6100f76102b5565b604051610104919061037f565b60405180910390f35b610127600480360381019061012291906103f8565b6102bb565b005b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516101c09190610482565b60405180910390a281600260008282546101da91906104df565b9250508190555060029050919050565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161021c90610581565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405161026d91906105ed565b60405180910390a28160008082825461028691906104df565b925050819055506102a260018361029d91906104df565b610178565b506102ab610129565b5060019050919050565b60005481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b6000819050919050565b6102e7816102d4565b82525050565b600060208201905061030260008301846102de565b92915050565b600080fd5b6000819050919050565b6103208161030d565b811461032b57600080fd5b50565b60008135905061033d81610317565b92915050565b60006020828403121561035957610358610308565b5b60006103678482850161032e565b91505092915050565b6103798161030d565b82525050565b60006020820190506103946000830184610370565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006103c58261039a565b9050919050565b6103d5816103ba565b81146103e057600080fd5b50565b6000813590506103f2816103cc565b92915050565b60006020828403121561040e5761040d610308565b5b600061041c848285016103e3565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600061046c600e83610425565b915061047782610436565b602082019050919050565b60006040820190506104976000830184610370565b81810360208301526104a88161045f565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006104ea8261030d565b91506104f58361030d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561052a576105296104b0565b5b828201905092915050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b600061056b601783610425565b915061057682610535565b602082019050919050565b6000602082019050818103600083015261059a8161055e565b9050919050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006105d7600583610425565b91506105e2826105a1565b602082019050919050565b60006040820190506106026000830184610370565b8181036020830152610613816105ca565b90509291505056fea26469706673582212208743accab6cfcd1c8ccb3f51b787d679e803a77ce24ec642bd068883132fd5fa64736f6c63430008090033", - "nonce": 1, + "Tracer.address": { + "nonce": 2, "storage": { - "0x0000000000000000000000000000000000000000000000000000000000000000": "0x0000000000000000000000000000001d6329f1c35ca4bfabb9f56100000003e8", - "0x0000000000000000000000000000000000000000000000000000000000000001": "0x0000000000000000000000000000000000000000000000000000000000000001", - "0x0000000000000000000000000000000000000000000000000000000000000002": "0x0000000000000000000000000000001d6329f1c35ca4bfabb9f56100000003ea" + "0x0000000000000000000000000000000000000000000000000000000000000000": "0x000000000000000000000000ccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x0000000000000000000000000000000000000000000000000000000000000001": "0x00000000000000000000000000000000000000000000000000000000000003e8", + "0x0000000000000000000000000000000000000000000000000000000000000003": "0x00000000000000000000000000000000000000000000000000000000000003e9" } }, "OWNER.address": { - "balance": "0x360ee5cfde69ec5c29", - "nonce": 83 + "balance": "0x10f075e97d88a9daf8e", + "nonce": 11 }, - "Tracer.address": { - "nonce": 2, + "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585": { + "code": "0x608060405234801561001057600080fd5b50600436106100625760003560e01c80631c717069146100675780631c93908c1461008557806392954362146100b5578063a0712d68146100bf578063b69ef8a8146100ef578063c9353cb51461010d575b600080fd5b61006f610129565b60405161007c91906102ed565b60405180910390f35b61009f600480360381019061009a9190610343565b610178565b6040516100ac919061037f565b60405180910390f35b6100bd6101ea565b005b6100d960048036038101906100d49190610343565b610225565b6040516100e6919061037f565b60405180910390f35b6100f76102b5565b604051610104919061037f565b60405180910390f35b610127600480360381019061012291906103f8565b6102bb565b005b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516101c09190610482565b60405180910390a281600260008282546101da91906104df565b9250508190555060029050919050565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161021c9061055f565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405161026d91906105cb565b60405180910390a28160008082825461028691906104df565b925050819055506102a260018361029d91906104df565b610178565b506102ab610129565b5060019050919050565b60005481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b6000819050919050565b6102e7816102d4565b82525050565b600060208201905061030260008301846102de565b92915050565b600080fd5b6000819050919050565b6103208161030d565b811461032b57600080fd5b50565b60008135905061033d81610317565b92915050565b60006020828403121561035957610358610308565b5b60006103678482850161032e565b91505092915050565b6103798161030d565b82525050565b60006020820190506103946000830184610370565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006103c58261039a565b9050919050565b6103d5816103ba565b81146103e057600080fd5b50565b6000813590506103f2816103cc565b92915050565b60006020828403121561040e5761040d610308565b5b600061041c848285016103e3565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600061046c600e83610425565b915061047782610436565b602082019050919050565b60006040820190506104976000830184610370565b81810360208301526104a88161045f565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006104ea8261030d565b91506104f58361030d565b925082820190508082111561050d5761050c6104b0565b5b92915050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b6000610549601783610425565b915061055482610513565b602082019050919050565b600060208201905081810360008301526105788161053c565b9050919050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006105b5600583610425565b91506105c08261057f565b602082019050919050565b60006040820190506105e06000830184610370565b81810360208301526105f1816105a8565b90509291505056fea26469706673582212202a0a0fa5842e91cc0c1e5b645f7286aad7193a83c3b2f8c8e4c1b35008af0d6f64736f6c63430008140033", + "nonce": 1, "storage": { - "0x0000000000000000000000000000000000000000000000000000000000000000": "0x00000000000000000000000061a286b8e87e2d31c475d71c85a0020584c44bae", - "0x0000000000000000000000000000000000000000000000000000000000000001": "0x00000000000000000000000000000000000000000000000000000000000003e8", - "0x0000000000000000000000000000000000000000000000000000000000000003": "0x00000000000000000000000000000000000000000000000000000000000003e9" + "0x0000000000000000000000000000000000000000000000000000000000000000": "0x0000000000000000000000000000001d6329f1c35ca4bfabb9f56100000003e8", + "0x0000000000000000000000000000000000000000000000000000000000000001": "0x0000000000000000000000000000000000000000000000000000000000000001", + "0x0000000000000000000000000000000000000000000000000000000000000002": "0x0000000000000000000000000000001d6329f1c35ca4bfabb9f56100000003ea" } } }, "pre": { "0x0000000000000000000000000000000000000000": { - "balance": "0x1b69ad1" - }, - "OWNER.address": { - "balance": "0x360ee5cfe1af4203d1", - "nonce": 82 + "balance": "0x3dbbe1" }, "Tracer.address": { "balance": "0x0", - "code": "0x60806040523480156200001157600080fd5b5060043610620000ac5760003560e01c80638bfe44ff116200006f5780638bfe44ff14620001975780639295436214620001a3578063a0712d6814620001af578063b69ef8a814620001e5578063c9353cb5146200020757620000ac565b806312065fe014620000b15780631c71706914620000d35780631c93908c14620000f55780633aa18088146200012b5780637f29c3941462000161575b600080fd5b620000bb62000227565b604051620000ca919062000997565b60405180910390f35b620000dd62000231565b604051620000ec9190620009cf565b60405180910390f35b6200011360048036038101906200010d919062000a2c565b62000280565b60405162000122919062000997565b60405180910390f35b62000149600480360381019062000143919062000a2c565b620002f6565b60405162000158919062000997565b60405180910390f35b6200017f600480360381019062000179919062000a2c565b620004ae565b6040516200018e919062000997565b60405180910390f35b620001a162000783565b005b620001ad620007c5565b005b620001cd6004803603810190620001c7919062000a2c565b62000802565b604051620001dc919062000997565b60405180910390f35b620001ef6200094f565b604051620001fe919062000997565b60405180910390f35b6200022560048036038101906200021f919062000ac3565b62000955565b005b6000600154905090565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620002ca919062000b56565b60405180910390a28160036000828254620002e6919062000bb7565b9250508190555060029050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405162000340919062000c64565b60405180910390a260405162000356906200096e565b604051809103906000f08015801562000373573d6000803e3d6000fd5b506000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508160016000828254620003c7919062000bb7565b92505081905550620003e7600183620003e1919062000bb7565b62000280565b50620003f262000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b81526004016200044e919062000997565b602060405180830381600087803b1580156200046957600080fd5b505af11580156200047e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004a4919062000cad565b5060019050919050565b60003073ffffffffffffffffffffffffffffffffffffffff1663929543626040518163ffffffff1660e01b815260040160006040518083038186803b158015620004f757600080fd5b505afa92505050801562000509575060015b620005f2576200051862000cec565b806308c379a014156200057d57506200053062000d87565b806200053d57506200057f565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a816040516200056e919062000eab565b60405180910390a150620005ec565b505b3d8060008114620005ad576040519150601f19603f3d011682016040523d82523d6000602084013e620005b2565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620005e29062000f45565b60405180910390a1505b620005f3565b5b3073ffffffffffffffffffffffffffffffffffffffff16638bfe44ff6040518163ffffffff1660e01b815260040160006040518083038186803b1580156200063a57600080fd5b505afa9250505080156200064c575060015b62000735576200065b62000cec565b806308c379a01415620006c057506200067362000d87565b80620006805750620006c2565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a81604051620006b1919062000eab565b60405180910390a1506200072f565b505b3d8060008114620006f0576040519150601f19603f3d011682016040523d82523d6000602084013e620006f5565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620007259062000f45565b60405180910390a1505b62000736565b5b60006200077a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007719062000fb7565b60405180910390fd5b60019050919050565b6001806040517fcf479181000000000000000000000000000000000000000000000000000000008152600401620007bc92919062001026565b60405180910390fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007f990620010a3565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200084c919062000c64565b60405180910390a2816001600082825462000868919062000bb7565b925050819055506200088860018362000882919062000bb7565b62000280565b506200089362000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b8152600401620008ef919062000997565b602060405180830381600087803b1580156200090a57600080fd5b505af11580156200091f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000945919062000cad565b5060019050919050565b60015481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b610ae380620010c683390190565b6000819050919050565b62000991816200097c565b82525050565b6000602082019050620009ae600083018462000986565b92915050565b6000819050919050565b620009c981620009b4565b82525050565b6000602082019050620009e66000830184620009be565b92915050565b6000604051905090565b600080fd5b62000a06816200097c565b811462000a1257600080fd5b50565b60008135905062000a2681620009fb565b92915050565b60006020828403121562000a455762000a44620009f6565b5b600062000a558482850162000a15565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000a8b8262000a5e565b9050919050565b62000a9d8162000a7e565b811462000aa957600080fd5b50565b60008135905062000abd8162000a92565b92915050565b60006020828403121562000adc5762000adb620009f6565b5b600062000aec8482850162000aac565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000b3e600e8362000af5565b915062000b4b8262000b06565b602082019050919050565b600060408201905062000b6d600083018462000986565b818103602083015262000b808162000b2f565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000bc4826200097c565b915062000bd1836200097c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000c095762000c0862000b88565b5b828201905092915050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b600062000c4c60058362000af5565b915062000c598262000c14565b602082019050919050565b600060408201905062000c7b600083018462000986565b818103602083015262000c8e8162000c3d565b905092915050565b60008151905062000ca781620009fb565b92915050565b60006020828403121562000cc65762000cc5620009f6565b5b600062000cd68482850162000c96565b91505092915050565b60008160e01c9050919050565b600060033d111562000d0e5760046000803e62000d0b60005162000cdf565b90505b90565b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000d5c8262000d11565b810181811067ffffffffffffffff8211171562000d7e5762000d7d62000d22565b5b80604052505050565b600060443d101562000d995762000e26565b62000da3620009ec565b60043d036004823e80513d602482011167ffffffffffffffff8211171562000dcd57505062000e26565b808201805167ffffffffffffffff81111562000ded575050505062000e26565b80602083010160043d03850181111562000e0c57505050505062000e26565b62000e1d8260200185018662000d51565b82955050505050505b90565b600081519050919050565b60005b8381101562000e5457808201518184015260208101905062000e37565b8381111562000e64576000848401525b50505050565b600062000e778262000e29565b62000e83818562000af5565b935062000e9581856020860162000e34565b62000ea08162000d11565b840191505092915050565b6000602082019050818103600083015262000ec7818462000e6a565b905092915050565b7f45787465726e616c2063616c6c206661696c656420776974686f757420616e2060008201527f6572726f72206d65737361676500000000000000000000000000000000000000602082015250565b600062000f2d602d8362000af5565b915062000f3a8262000ecf565b604082019050919050565b6000602082019050818103600083015262000f608162000f1e565b9050919050565b7f494e53554646494349454e542042414c414e4345000000000000000000000000600082015250565b600062000f9f60148362000af5565b915062000fac8262000f67565b602082019050919050565b6000602082019050818103600083015262000fd28162000f90565b9050919050565b6000819050919050565b6000819050919050565b60006200100e62001008620010028462000fd9565b62000fe3565b6200097c565b9050919050565b620010208162000fed565b82525050565b60006040820190506200103d600083018562001015565b6200104c602083018462001015565b9392505050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b60006200108b60178362000af5565b9150620010988262001053565b602082019050919050565b60006020820190508181036000830152620010be816200107c565b905091905056fe60806040526000600160006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b50600160009054906101000a900460ff161562000080576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200007790620002b5565b60405180910390fd5b60018060006101000a81548160ff021916908315150217905550620000bc701d6329f1c35ca4bfabb9f5610000000000620000c360201b60201c565b5062000482565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200010d919062000342565b60405180910390a281600080828254620001289190620003a3565b925050819055506200014e600183620001429190620003a3565b6200016960201b60201c565b506200015f620001df60201b60201c565b5060019050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620001b3919062000450565b60405180910390a28160026000828254620001cf9190620003a3565b9250508190555060029050919050565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b600082825260208201905092915050565b7f436f6e747261637420696e7374616e63652068617320616c726561647920626560008201527f656e20696e697469616c697a6564000000000000000000000000000000000000602082015250565b60006200029d602e836200022e565b9150620002aa826200023f565b604082019050919050565b60006020820190508181036000830152620002d0816200028e565b9050919050565b6000819050919050565b620002ec81620002d7565b82525050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006200032a6005836200022e565b91506200033782620002f2565b602082019050919050565b6000604082019050620003596000830184620002e1565b81810360208301526200036c816200031b565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620003b082620002d7565b9150620003bd83620002d7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620003f557620003f462000374565b5b828201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000438600e836200022e565b9150620004458262000400565b602082019050919050565b6000604082019050620004676000830184620002e1565b81810360208301526200047a8162000429565b905092915050565b61065180620004926000396000f3fe608060405234801561001057600080fd5b50600436106100625760003560e01c80631c717069146100675780631c93908c1461008557806392954362146100b5578063a0712d68146100bf578063b69ef8a8146100ef578063c9353cb51461010d575b600080fd5b61006f610129565b60405161007c91906102ed565b60405180910390f35b61009f600480360381019061009a9190610343565b610178565b6040516100ac919061037f565b60405180910390f35b6100bd6101ea565b005b6100d960048036038101906100d49190610343565b610225565b6040516100e6919061037f565b60405180910390f35b6100f76102b5565b604051610104919061037f565b60405180910390f35b610127600480360381019061012291906103f8565b6102bb565b005b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516101c09190610482565b60405180910390a281600260008282546101da91906104df565b9250508190555060029050919050565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161021c90610581565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405161026d91906105ed565b60405180910390a28160008082825461028691906104df565b925050819055506102a260018361029d91906104df565b610178565b506102ab610129565b5060019050919050565b60005481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b6000819050919050565b6102e7816102d4565b82525050565b600060208201905061030260008301846102de565b92915050565b600080fd5b6000819050919050565b6103208161030d565b811461032b57600080fd5b50565b60008135905061033d81610317565b92915050565b60006020828403121561035957610358610308565b5b60006103678482850161032e565b91505092915050565b6103798161030d565b82525050565b60006020820190506103946000830184610370565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006103c58261039a565b9050919050565b6103d5816103ba565b81146103e057600080fd5b50565b6000813590506103f2816103cc565b92915050565b60006020828403121561040e5761040d610308565b5b600061041c848285016103e3565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600061046c600e83610425565b915061047782610436565b602082019050919050565b60006040820190506104976000830184610370565b81810360208301526104a88161045f565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006104ea8261030d565b91506104f58361030d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561052a576105296104b0565b5b828201905092915050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b600061056b601783610425565b915061057682610535565b602082019050919050565b6000602082019050818103600083015261059a8161055e565b9050919050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006105d7600583610425565b91506105e2826105a1565b602082019050919050565b60006040820190506106026000830184610370565b8181036020830152610613816105ca565b90509291505056fea26469706673582212208743accab6cfcd1c8ccb3f51b787d679e803a77ce24ec642bd068883132fd5fa64736f6c63430008090033a264697066735822122066241fedca9ebd69f0cd9e4879f75428f5d4bf734eb072e52934a8b3161581f064736f6c63430008090033", + "code": "0x60806040523480156200001157600080fd5b5060043610620000ac5760003560e01c80638bfe44ff116200006f5780638bfe44ff14620001975780639295436214620001a3578063a0712d6814620001af578063b69ef8a814620001e5578063c9353cb5146200020757620000ac565b806312065fe014620000b15780631c71706914620000d35780631c93908c14620000f55780633aa18088146200012b5780637f29c3941462000161575b600080fd5b620000bb62000227565b604051620000ca919062000975565b60405180910390f35b620000dd62000231565b604051620000ec9190620009ad565b60405180910390f35b6200011360048036038101906200010d919062000a0a565b62000280565b60405162000122919062000975565b60405180910390f35b62000149600480360381019062000143919062000a0a565b620002f6565b60405162000158919062000975565b60405180910390f35b6200017f600480360381019062000179919062000a0a565b6200049e565b6040516200018e919062000975565b60405180910390f35b620001a162000771565b005b620001ad620007b3565b005b620001cd6004803603810190620001c7919062000a0a565b620007f0565b604051620001dc919062000975565b60405180910390f35b620001ef6200092d565b604051620001fe919062000975565b60405180910390f35b6200022560048036038101906200021f919062000aa1565b62000933565b005b6000600154905090565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620002ca919062000b34565b60405180910390a28160036000828254620002e6919062000b95565b9250508190555060029050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405162000340919062000c20565b60405180910390a260405162000356906200094c565b604051809103906000f08015801562000373573d6000803e3d6000fd5b506000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508160016000828254620003c7919062000b95565b92505081905550620003e7600183620003e1919062000b95565b62000280565b50620003f262000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b81526004016200044e919062000975565b6020604051808303816000875af11580156200046e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000494919062000c69565b5060019050919050565b60003073ffffffffffffffffffffffffffffffffffffffff1663929543626040518163ffffffff1660e01b815260040160006040518083038186803b158015620004e757600080fd5b505afa925050508015620004f9575060015b620005e1576200050862000ca8565b806308c379a0036200056c57506200051f62000d43565b806200052c57506200056e565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a816040516200055d919062000e56565b60405180910390a150620005db565b505b3d80600081146200059c576040519150601f19603f3d011682016040523d82523d6000602084013e620005a1565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620005d19062000ef0565b60405180910390a1505b620005e2565b5b3073ffffffffffffffffffffffffffffffffffffffff16638bfe44ff6040518163ffffffff1660e01b815260040160006040518083038186803b1580156200062957600080fd5b505afa9250505080156200063b575060015b62000723576200064a62000ca8565b806308c379a003620006ae57506200066162000d43565b806200066e5750620006b0565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a816040516200069f919062000e56565b60405180910390a1506200071d565b505b3d8060008114620006de576040519150601f19603f3d011682016040523d82523d6000602084013e620006e3565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620007139062000ef0565b60405180910390a1505b62000724565b5b600062000768576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200075f9062000f62565b60405180910390fd5b60019050919050565b6001806040517fcf479181000000000000000000000000000000000000000000000000000000008152600401620007aa92919062000fd1565b60405180910390fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007e7906200104e565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200083a919062000c20565b60405180910390a2816001600082825462000856919062000b95565b925050819055506200087660018362000870919062000b95565b62000280565b506200088162000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b8152600401620008dd919062000975565b6020604051808303816000875af1158015620008fd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000923919062000c69565b5060019050919050565b60015481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b610a9f806200107183390190565b6000819050919050565b6200096f816200095a565b82525050565b60006020820190506200098c600083018462000964565b92915050565b6000819050919050565b620009a78162000992565b82525050565b6000602082019050620009c460008301846200099c565b92915050565b6000604051905090565b600080fd5b620009e4816200095a565b8114620009f057600080fd5b50565b60008135905062000a0481620009d9565b92915050565b60006020828403121562000a235762000a22620009d4565b5b600062000a3384828501620009f3565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000a698262000a3c565b9050919050565b62000a7b8162000a5c565b811462000a8757600080fd5b50565b60008135905062000a9b8162000a70565b92915050565b60006020828403121562000aba5762000ab9620009d4565b5b600062000aca8482850162000a8a565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000b1c600e8362000ad3565b915062000b298262000ae4565b602082019050919050565b600060408201905062000b4b600083018462000964565b818103602083015262000b5e8162000b0d565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000ba2826200095a565b915062000baf836200095a565b925082820190508082111562000bca5762000bc962000b66565b5b92915050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b600062000c0860058362000ad3565b915062000c158262000bd0565b602082019050919050565b600060408201905062000c37600083018462000964565b818103602083015262000c4a8162000bf9565b905092915050565b60008151905062000c6381620009d9565b92915050565b60006020828403121562000c825762000c81620009d4565b5b600062000c928482850162000c52565b91505092915050565b60008160e01c9050919050565b600060033d111562000cca5760046000803e62000cc760005162000c9b565b90505b90565b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000d188262000ccd565b810181811067ffffffffffffffff8211171562000d3a5762000d3962000cde565b5b80604052505050565b600060443d1062000ddb5762000d58620009ca565b60043d036004823e80513d602482011167ffffffffffffffff8211171562000d8257505062000ddb565b808201805167ffffffffffffffff81111562000da2575050505062000ddb565b80602083010160043d03850181111562000dc157505050505062000ddb565b62000dd28260200185018662000d0d565b82955050505050505b90565b600081519050919050565b60005b8381101562000e0957808201518184015260208101905062000dec565b60008484015250505050565b600062000e228262000dde565b62000e2e818562000ad3565b935062000e4081856020860162000de9565b62000e4b8162000ccd565b840191505092915050565b6000602082019050818103600083015262000e72818462000e15565b905092915050565b7f45787465726e616c2063616c6c206661696c656420776974686f757420616e2060008201527f6572726f72206d65737361676500000000000000000000000000000000000000602082015250565b600062000ed8602d8362000ad3565b915062000ee58262000e7a565b604082019050919050565b6000602082019050818103600083015262000f0b8162000ec9565b9050919050565b7f494e53554646494349454e542042414c414e4345000000000000000000000000600082015250565b600062000f4a60148362000ad3565b915062000f578262000f12565b602082019050919050565b6000602082019050818103600083015262000f7d8162000f3b565b9050919050565b6000819050919050565b6000819050919050565b600062000fb962000fb362000fad8462000f84565b62000f8e565b6200095a565b9050919050565b62000fcb8162000f98565b82525050565b600060408201905062000fe8600083018562000fc0565b62000ff7602083018462000fc0565b9392505050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b60006200103660178362000ad3565b9150620010438262000ffe565b602082019050919050565b60006020820190508181036000830152620010698162001027565b905091905056fe60806040526000600160006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b50600160009054906101000a900460ff161562000080576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200007790620002b5565b60405180910390fd5b60018060006101000a81548160ff021916908315150217905550620000bc701d6329f1c35ca4bfabb9f5610000000000620000c360201b60201c565b5062000460565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200010d919062000342565b60405180910390a281600080828254620001289190620003a3565b925050819055506200014e600183620001429190620003a3565b6200016960201b60201c565b506200015f620001df60201b60201c565b5060019050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620001b391906200042e565b60405180910390a28160026000828254620001cf9190620003a3565b9250508190555060029050919050565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b600082825260208201905092915050565b7f436f6e747261637420696e7374616e63652068617320616c726561647920626560008201527f656e20696e697469616c697a6564000000000000000000000000000000000000602082015250565b60006200029d602e836200022e565b9150620002aa826200023f565b604082019050919050565b60006020820190508181036000830152620002d0816200028e565b9050919050565b6000819050919050565b620002ec81620002d7565b82525050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006200032a6005836200022e565b91506200033782620002f2565b602082019050919050565b6000604082019050620003596000830184620002e1565b81810360208301526200036c816200031b565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620003b082620002d7565b9150620003bd83620002d7565b9250828201905080821115620003d857620003d762000374565b5b92915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000416600e836200022e565b91506200042382620003de565b602082019050919050565b6000604082019050620004456000830184620002e1565b8181036020830152620004588162000407565b905092915050565b61062f80620004706000396000f3fe608060405234801561001057600080fd5b50600436106100625760003560e01c80631c717069146100675780631c93908c1461008557806392954362146100b5578063a0712d68146100bf578063b69ef8a8146100ef578063c9353cb51461010d575b600080fd5b61006f610129565b60405161007c91906102ed565b60405180910390f35b61009f600480360381019061009a9190610343565b610178565b6040516100ac919061037f565b60405180910390f35b6100bd6101ea565b005b6100d960048036038101906100d49190610343565b610225565b6040516100e6919061037f565b60405180910390f35b6100f76102b5565b604051610104919061037f565b60405180910390f35b610127600480360381019061012291906103f8565b6102bb565b005b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516101c09190610482565b60405180910390a281600260008282546101da91906104df565b9250508190555060029050919050565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161021c9061055f565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405161026d91906105cb565b60405180910390a28160008082825461028691906104df565b925050819055506102a260018361029d91906104df565b610178565b506102ab610129565b5060019050919050565b60005481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b6000819050919050565b6102e7816102d4565b82525050565b600060208201905061030260008301846102de565b92915050565b600080fd5b6000819050919050565b6103208161030d565b811461032b57600080fd5b50565b60008135905061033d81610317565b92915050565b60006020828403121561035957610358610308565b5b60006103678482850161032e565b91505092915050565b6103798161030d565b82525050565b60006020820190506103946000830184610370565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006103c58261039a565b9050919050565b6103d5816103ba565b81146103e057600080fd5b50565b6000813590506103f2816103cc565b92915050565b60006020828403121561040e5761040d610308565b5b600061041c848285016103e3565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600061046c600e83610425565b915061047782610436565b602082019050919050565b60006040820190506104976000830184610370565b81810360208301526104a88161045f565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006104ea8261030d565b91506104f58361030d565b925082820190508082111561050d5761050c6104b0565b5b92915050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b6000610549601783610425565b915061055482610513565b602082019050919050565b600060208201905081810360008301526105788161053c565b9050919050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006105b5600583610425565b91506105c08261057f565b602082019050919050565b60006040820190506105e06000830184610370565b81810360208301526105f1816105a8565b90509291505056fea26469706673582212202a0a0fa5842e91cc0c1e5b645f7286aad7193a83c3b2f8c8e4c1b35008af0d6f64736f6c63430008140033a264697066735822122036f326b9881542090544d5d6e9f2ff18b13ec09bd4994f14891a84e97f4d6db964736f6c63430008140033", "nonce": 1 + }, + "OWNER.address": { + "balance": "0x10f075ed5f51d7cf45e", + "nonce": 10 } } } \ No newline at end of file diff --git a/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint2.prestateTracer.json b/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint2.prestateTracer.json index e498b7623..a35cf9ae8 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint2.prestateTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint2.prestateTracer.json @@ -1,27 +1,19 @@ { "0x0000000000000000000000000000000000000000": { - "balance": "0x1b69ad1" - }, - "0x61a286b8e87e2d31c475d71c85a0020584c44bae": { - "balance": "0x0", - "storage": { - "0x0000000000000000000000000000000000000000000000000000000000000000": "0x0000000000000000000000000000000000000000000000000000000000000000", - "0x0000000000000000000000000000000000000000000000000000000000000001": "0x0000000000000000000000000000000000000000000000000000000000000000", - "0x0000000000000000000000000000000000000000000000000000000000000002": "0x0000000000000000000000000000000000000000000000000000000000000000" - } - }, - "OWNER.address": { - "balance": "0x360ee5cfe1af4203d1", - "nonce": 82 + "balance": "0x3dbbe1" }, "Tracer.address": { "balance": "0x0", - "code": "0x60806040523480156200001157600080fd5b5060043610620000ac5760003560e01c80638bfe44ff116200006f5780638bfe44ff14620001975780639295436214620001a3578063a0712d6814620001af578063b69ef8a814620001e5578063c9353cb5146200020757620000ac565b806312065fe014620000b15780631c71706914620000d35780631c93908c14620000f55780633aa18088146200012b5780637f29c3941462000161575b600080fd5b620000bb62000227565b604051620000ca919062000997565b60405180910390f35b620000dd62000231565b604051620000ec9190620009cf565b60405180910390f35b6200011360048036038101906200010d919062000a2c565b62000280565b60405162000122919062000997565b60405180910390f35b62000149600480360381019062000143919062000a2c565b620002f6565b60405162000158919062000997565b60405180910390f35b6200017f600480360381019062000179919062000a2c565b620004ae565b6040516200018e919062000997565b60405180910390f35b620001a162000783565b005b620001ad620007c5565b005b620001cd6004803603810190620001c7919062000a2c565b62000802565b604051620001dc919062000997565b60405180910390f35b620001ef6200094f565b604051620001fe919062000997565b60405180910390f35b6200022560048036038101906200021f919062000ac3565b62000955565b005b6000600154905090565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620002ca919062000b56565b60405180910390a28160036000828254620002e6919062000bb7565b9250508190555060029050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405162000340919062000c64565b60405180910390a260405162000356906200096e565b604051809103906000f08015801562000373573d6000803e3d6000fd5b506000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508160016000828254620003c7919062000bb7565b92505081905550620003e7600183620003e1919062000bb7565b62000280565b50620003f262000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b81526004016200044e919062000997565b602060405180830381600087803b1580156200046957600080fd5b505af11580156200047e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004a4919062000cad565b5060019050919050565b60003073ffffffffffffffffffffffffffffffffffffffff1663929543626040518163ffffffff1660e01b815260040160006040518083038186803b158015620004f757600080fd5b505afa92505050801562000509575060015b620005f2576200051862000cec565b806308c379a014156200057d57506200053062000d87565b806200053d57506200057f565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a816040516200056e919062000eab565b60405180910390a150620005ec565b505b3d8060008114620005ad576040519150601f19603f3d011682016040523d82523d6000602084013e620005b2565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620005e29062000f45565b60405180910390a1505b620005f3565b5b3073ffffffffffffffffffffffffffffffffffffffff16638bfe44ff6040518163ffffffff1660e01b815260040160006040518083038186803b1580156200063a57600080fd5b505afa9250505080156200064c575060015b62000735576200065b62000cec565b806308c379a01415620006c057506200067362000d87565b80620006805750620006c2565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a81604051620006b1919062000eab565b60405180910390a1506200072f565b505b3d8060008114620006f0576040519150601f19603f3d011682016040523d82523d6000602084013e620006f5565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620007259062000f45565b60405180910390a1505b62000736565b5b60006200077a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007719062000fb7565b60405180910390fd5b60019050919050565b6001806040517fcf479181000000000000000000000000000000000000000000000000000000008152600401620007bc92919062001026565b60405180910390fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007f990620010a3565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200084c919062000c64565b60405180910390a2816001600082825462000868919062000bb7565b925050819055506200088860018362000882919062000bb7565b62000280565b506200089362000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b8152600401620008ef919062000997565b602060405180830381600087803b1580156200090a57600080fd5b505af11580156200091f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000945919062000cad565b5060019050919050565b60015481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b610ae380620010c683390190565b6000819050919050565b62000991816200097c565b82525050565b6000602082019050620009ae600083018462000986565b92915050565b6000819050919050565b620009c981620009b4565b82525050565b6000602082019050620009e66000830184620009be565b92915050565b6000604051905090565b600080fd5b62000a06816200097c565b811462000a1257600080fd5b50565b60008135905062000a2681620009fb565b92915050565b60006020828403121562000a455762000a44620009f6565b5b600062000a558482850162000a15565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000a8b8262000a5e565b9050919050565b62000a9d8162000a7e565b811462000aa957600080fd5b50565b60008135905062000abd8162000a92565b92915050565b60006020828403121562000adc5762000adb620009f6565b5b600062000aec8482850162000aac565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000b3e600e8362000af5565b915062000b4b8262000b06565b602082019050919050565b600060408201905062000b6d600083018462000986565b818103602083015262000b808162000b2f565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000bc4826200097c565b915062000bd1836200097c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000c095762000c0862000b88565b5b828201905092915050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b600062000c4c60058362000af5565b915062000c598262000c14565b602082019050919050565b600060408201905062000c7b600083018462000986565b818103602083015262000c8e8162000c3d565b905092915050565b60008151905062000ca781620009fb565b92915050565b60006020828403121562000cc65762000cc5620009f6565b5b600062000cd68482850162000c96565b91505092915050565b60008160e01c9050919050565b600060033d111562000d0e5760046000803e62000d0b60005162000cdf565b90505b90565b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000d5c8262000d11565b810181811067ffffffffffffffff8211171562000d7e5762000d7d62000d22565b5b80604052505050565b600060443d101562000d995762000e26565b62000da3620009ec565b60043d036004823e80513d602482011167ffffffffffffffff8211171562000dcd57505062000e26565b808201805167ffffffffffffffff81111562000ded575050505062000e26565b80602083010160043d03850181111562000e0c57505050505062000e26565b62000e1d8260200185018662000d51565b82955050505050505b90565b600081519050919050565b60005b8381101562000e5457808201518184015260208101905062000e37565b8381111562000e64576000848401525b50505050565b600062000e778262000e29565b62000e83818562000af5565b935062000e9581856020860162000e34565b62000ea08162000d11565b840191505092915050565b6000602082019050818103600083015262000ec7818462000e6a565b905092915050565b7f45787465726e616c2063616c6c206661696c656420776974686f757420616e2060008201527f6572726f72206d65737361676500000000000000000000000000000000000000602082015250565b600062000f2d602d8362000af5565b915062000f3a8262000ecf565b604082019050919050565b6000602082019050818103600083015262000f608162000f1e565b9050919050565b7f494e53554646494349454e542042414c414e4345000000000000000000000000600082015250565b600062000f9f60148362000af5565b915062000fac8262000f67565b602082019050919050565b6000602082019050818103600083015262000fd28162000f90565b9050919050565b6000819050919050565b6000819050919050565b60006200100e62001008620010028462000fd9565b62000fe3565b6200097c565b9050919050565b620010208162000fed565b82525050565b60006040820190506200103d600083018562001015565b6200104c602083018462001015565b9392505050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b60006200108b60178362000af5565b9150620010988262001053565b602082019050919050565b60006020820190508181036000830152620010be816200107c565b905091905056fe60806040526000600160006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b50600160009054906101000a900460ff161562000080576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200007790620002b5565b60405180910390fd5b60018060006101000a81548160ff021916908315150217905550620000bc701d6329f1c35ca4bfabb9f5610000000000620000c360201b60201c565b5062000482565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200010d919062000342565b60405180910390a281600080828254620001289190620003a3565b925050819055506200014e600183620001429190620003a3565b6200016960201b60201c565b506200015f620001df60201b60201c565b5060019050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620001b3919062000450565b60405180910390a28160026000828254620001cf9190620003a3565b9250508190555060029050919050565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b600082825260208201905092915050565b7f436f6e747261637420696e7374616e63652068617320616c726561647920626560008201527f656e20696e697469616c697a6564000000000000000000000000000000000000602082015250565b60006200029d602e836200022e565b9150620002aa826200023f565b604082019050919050565b60006020820190508181036000830152620002d0816200028e565b9050919050565b6000819050919050565b620002ec81620002d7565b82525050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006200032a6005836200022e565b91506200033782620002f2565b602082019050919050565b6000604082019050620003596000830184620002e1565b81810360208301526200036c816200031b565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620003b082620002d7565b9150620003bd83620002d7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620003f557620003f462000374565b5b828201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000438600e836200022e565b9150620004458262000400565b602082019050919050565b6000604082019050620004676000830184620002e1565b81810360208301526200047a8162000429565b905092915050565b61065180620004926000396000f3fe608060405234801561001057600080fd5b50600436106100625760003560e01c80631c717069146100675780631c93908c1461008557806392954362146100b5578063a0712d68146100bf578063b69ef8a8146100ef578063c9353cb51461010d575b600080fd5b61006f610129565b60405161007c91906102ed565b60405180910390f35b61009f600480360381019061009a9190610343565b610178565b6040516100ac919061037f565b60405180910390f35b6100bd6101ea565b005b6100d960048036038101906100d49190610343565b610225565b6040516100e6919061037f565b60405180910390f35b6100f76102b5565b604051610104919061037f565b60405180910390f35b610127600480360381019061012291906103f8565b6102bb565b005b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516101c09190610482565b60405180910390a281600260008282546101da91906104df565b9250508190555060029050919050565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161021c90610581565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405161026d91906105ed565b60405180910390a28160008082825461028691906104df565b925050819055506102a260018361029d91906104df565b610178565b506102ab610129565b5060019050919050565b60005481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b6000819050919050565b6102e7816102d4565b82525050565b600060208201905061030260008301846102de565b92915050565b600080fd5b6000819050919050565b6103208161030d565b811461032b57600080fd5b50565b60008135905061033d81610317565b92915050565b60006020828403121561035957610358610308565b5b60006103678482850161032e565b91505092915050565b6103798161030d565b82525050565b60006020820190506103946000830184610370565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006103c58261039a565b9050919050565b6103d5816103ba565b81146103e057600080fd5b50565b6000813590506103f2816103cc565b92915050565b60006020828403121561040e5761040d610308565b5b600061041c848285016103e3565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600061046c600e83610425565b915061047782610436565b602082019050919050565b60006040820190506104976000830184610370565b81810360208301526104a88161045f565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006104ea8261030d565b91506104f58361030d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561052a576105296104b0565b5b828201905092915050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b600061056b601783610425565b915061057682610535565b602082019050919050565b6000602082019050818103600083015261059a8161055e565b9050919050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006105d7600583610425565b91506105e2826105a1565b602082019050919050565b60006040820190506106026000830184610370565b8181036020830152610613816105ca565b90509291505056fea26469706673582212208743accab6cfcd1c8ccb3f51b787d679e803a77ce24ec642bd068883132fd5fa64736f6c63430008090033a264697066735822122066241fedca9ebd69f0cd9e4879f75428f5d4bf734eb072e52934a8b3161581f064736f6c63430008090033", + "code": "0x60806040523480156200001157600080fd5b5060043610620000ac5760003560e01c80638bfe44ff116200006f5780638bfe44ff14620001975780639295436214620001a3578063a0712d6814620001af578063b69ef8a814620001e5578063c9353cb5146200020757620000ac565b806312065fe014620000b15780631c71706914620000d35780631c93908c14620000f55780633aa18088146200012b5780637f29c3941462000161575b600080fd5b620000bb62000227565b604051620000ca919062000975565b60405180910390f35b620000dd62000231565b604051620000ec9190620009ad565b60405180910390f35b6200011360048036038101906200010d919062000a0a565b62000280565b60405162000122919062000975565b60405180910390f35b62000149600480360381019062000143919062000a0a565b620002f6565b60405162000158919062000975565b60405180910390f35b6200017f600480360381019062000179919062000a0a565b6200049e565b6040516200018e919062000975565b60405180910390f35b620001a162000771565b005b620001ad620007b3565b005b620001cd6004803603810190620001c7919062000a0a565b620007f0565b604051620001dc919062000975565b60405180910390f35b620001ef6200092d565b604051620001fe919062000975565b60405180910390f35b6200022560048036038101906200021f919062000aa1565b62000933565b005b6000600154905090565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620002ca919062000b34565b60405180910390a28160036000828254620002e6919062000b95565b9250508190555060029050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405162000340919062000c20565b60405180910390a260405162000356906200094c565b604051809103906000f08015801562000373573d6000803e3d6000fd5b506000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508160016000828254620003c7919062000b95565b92505081905550620003e7600183620003e1919062000b95565b62000280565b50620003f262000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b81526004016200044e919062000975565b6020604051808303816000875af11580156200046e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000494919062000c69565b5060019050919050565b60003073ffffffffffffffffffffffffffffffffffffffff1663929543626040518163ffffffff1660e01b815260040160006040518083038186803b158015620004e757600080fd5b505afa925050508015620004f9575060015b620005e1576200050862000ca8565b806308c379a0036200056c57506200051f62000d43565b806200052c57506200056e565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a816040516200055d919062000e56565b60405180910390a150620005db565b505b3d80600081146200059c576040519150601f19603f3d011682016040523d82523d6000602084013e620005a1565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620005d19062000ef0565b60405180910390a1505b620005e2565b5b3073ffffffffffffffffffffffffffffffffffffffff16638bfe44ff6040518163ffffffff1660e01b815260040160006040518083038186803b1580156200062957600080fd5b505afa9250505080156200063b575060015b62000723576200064a62000ca8565b806308c379a003620006ae57506200066162000d43565b806200066e5750620006b0565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a816040516200069f919062000e56565b60405180910390a1506200071d565b505b3d8060008114620006de576040519150601f19603f3d011682016040523d82523d6000602084013e620006e3565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620007139062000ef0565b60405180910390a1505b62000724565b5b600062000768576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200075f9062000f62565b60405180910390fd5b60019050919050565b6001806040517fcf479181000000000000000000000000000000000000000000000000000000008152600401620007aa92919062000fd1565b60405180910390fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007e7906200104e565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200083a919062000c20565b60405180910390a2816001600082825462000856919062000b95565b925050819055506200087660018362000870919062000b95565b62000280565b506200088162000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b8152600401620008dd919062000975565b6020604051808303816000875af1158015620008fd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000923919062000c69565b5060019050919050565b60015481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b610a9f806200107183390190565b6000819050919050565b6200096f816200095a565b82525050565b60006020820190506200098c600083018462000964565b92915050565b6000819050919050565b620009a78162000992565b82525050565b6000602082019050620009c460008301846200099c565b92915050565b6000604051905090565b600080fd5b620009e4816200095a565b8114620009f057600080fd5b50565b60008135905062000a0481620009d9565b92915050565b60006020828403121562000a235762000a22620009d4565b5b600062000a3384828501620009f3565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000a698262000a3c565b9050919050565b62000a7b8162000a5c565b811462000a8757600080fd5b50565b60008135905062000a9b8162000a70565b92915050565b60006020828403121562000aba5762000ab9620009d4565b5b600062000aca8482850162000a8a565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000b1c600e8362000ad3565b915062000b298262000ae4565b602082019050919050565b600060408201905062000b4b600083018462000964565b818103602083015262000b5e8162000b0d565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000ba2826200095a565b915062000baf836200095a565b925082820190508082111562000bca5762000bc962000b66565b5b92915050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b600062000c0860058362000ad3565b915062000c158262000bd0565b602082019050919050565b600060408201905062000c37600083018462000964565b818103602083015262000c4a8162000bf9565b905092915050565b60008151905062000c6381620009d9565b92915050565b60006020828403121562000c825762000c81620009d4565b5b600062000c928482850162000c52565b91505092915050565b60008160e01c9050919050565b600060033d111562000cca5760046000803e62000cc760005162000c9b565b90505b90565b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000d188262000ccd565b810181811067ffffffffffffffff8211171562000d3a5762000d3962000cde565b5b80604052505050565b600060443d1062000ddb5762000d58620009ca565b60043d036004823e80513d602482011167ffffffffffffffff8211171562000d8257505062000ddb565b808201805167ffffffffffffffff81111562000da2575050505062000ddb565b80602083010160043d03850181111562000dc157505050505062000ddb565b62000dd28260200185018662000d0d565b82955050505050505b90565b600081519050919050565b60005b8381101562000e0957808201518184015260208101905062000dec565b60008484015250505050565b600062000e228262000dde565b62000e2e818562000ad3565b935062000e4081856020860162000de9565b62000e4b8162000ccd565b840191505092915050565b6000602082019050818103600083015262000e72818462000e15565b905092915050565b7f45787465726e616c2063616c6c206661696c656420776974686f757420616e2060008201527f6572726f72206d65737361676500000000000000000000000000000000000000602082015250565b600062000ed8602d8362000ad3565b915062000ee58262000e7a565b604082019050919050565b6000602082019050818103600083015262000f0b8162000ec9565b9050919050565b7f494e53554646494349454e542042414c414e4345000000000000000000000000600082015250565b600062000f4a60148362000ad3565b915062000f578262000f12565b602082019050919050565b6000602082019050818103600083015262000f7d8162000f3b565b9050919050565b6000819050919050565b6000819050919050565b600062000fb962000fb362000fad8462000f84565b62000f8e565b6200095a565b9050919050565b62000fcb8162000f98565b82525050565b600060408201905062000fe8600083018562000fc0565b62000ff7602083018462000fc0565b9392505050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b60006200103660178362000ad3565b9150620010438262000ffe565b602082019050919050565b60006020820190508181036000830152620010698162001027565b905091905056fe60806040526000600160006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b50600160009054906101000a900460ff161562000080576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200007790620002b5565b60405180910390fd5b60018060006101000a81548160ff021916908315150217905550620000bc701d6329f1c35ca4bfabb9f5610000000000620000c360201b60201c565b5062000460565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200010d919062000342565b60405180910390a281600080828254620001289190620003a3565b925050819055506200014e600183620001429190620003a3565b6200016960201b60201c565b506200015f620001df60201b60201c565b5060019050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620001b391906200042e565b60405180910390a28160026000828254620001cf9190620003a3565b9250508190555060029050919050565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b600082825260208201905092915050565b7f436f6e747261637420696e7374616e63652068617320616c726561647920626560008201527f656e20696e697469616c697a6564000000000000000000000000000000000000602082015250565b60006200029d602e836200022e565b9150620002aa826200023f565b604082019050919050565b60006020820190508181036000830152620002d0816200028e565b9050919050565b6000819050919050565b620002ec81620002d7565b82525050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006200032a6005836200022e565b91506200033782620002f2565b602082019050919050565b6000604082019050620003596000830184620002e1565b81810360208301526200036c816200031b565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620003b082620002d7565b9150620003bd83620002d7565b9250828201905080821115620003d857620003d762000374565b5b92915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000416600e836200022e565b91506200042382620003de565b602082019050919050565b6000604082019050620004456000830184620002e1565b8181036020830152620004588162000407565b905092915050565b61062f80620004706000396000f3fe608060405234801561001057600080fd5b50600436106100625760003560e01c80631c717069146100675780631c93908c1461008557806392954362146100b5578063a0712d68146100bf578063b69ef8a8146100ef578063c9353cb51461010d575b600080fd5b61006f610129565b60405161007c91906102ed565b60405180910390f35b61009f600480360381019061009a9190610343565b610178565b6040516100ac919061037f565b60405180910390f35b6100bd6101ea565b005b6100d960048036038101906100d49190610343565b610225565b6040516100e6919061037f565b60405180910390f35b6100f76102b5565b604051610104919061037f565b60405180910390f35b610127600480360381019061012291906103f8565b6102bb565b005b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516101c09190610482565b60405180910390a281600260008282546101da91906104df565b9250508190555060029050919050565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161021c9061055f565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405161026d91906105cb565b60405180910390a28160008082825461028691906104df565b925050819055506102a260018361029d91906104df565b610178565b506102ab610129565b5060019050919050565b60005481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b6000819050919050565b6102e7816102d4565b82525050565b600060208201905061030260008301846102de565b92915050565b600080fd5b6000819050919050565b6103208161030d565b811461032b57600080fd5b50565b60008135905061033d81610317565b92915050565b60006020828403121561035957610358610308565b5b60006103678482850161032e565b91505092915050565b6103798161030d565b82525050565b60006020820190506103946000830184610370565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006103c58261039a565b9050919050565b6103d5816103ba565b81146103e057600080fd5b50565b6000813590506103f2816103cc565b92915050565b60006020828403121561040e5761040d610308565b5b600061041c848285016103e3565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600061046c600e83610425565b915061047782610436565b602082019050919050565b60006040820190506104976000830184610370565b81810360208301526104a88161045f565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006104ea8261030d565b91506104f58361030d565b925082820190508082111561050d5761050c6104b0565b5b92915050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b6000610549601783610425565b915061055482610513565b602082019050919050565b600060208201905081810360008301526105788161053c565b9050919050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006105b5600583610425565b91506105c08261057f565b602082019050919050565b60006040820190506105e06000830184610370565b81810360208301526105f1816105a8565b90509291505056fea26469706673582212202a0a0fa5842e91cc0c1e5b645f7286aad7193a83c3b2f8c8e4c1b35008af0d6f64736f6c63430008140033a264697066735822122036f326b9881542090544d5d6e9f2ff18b13ec09bd4994f14891a84e97f4d6db964736f6c63430008140033", "nonce": 1, "storage": { "0x0000000000000000000000000000000000000000000000000000000000000000": "0x0000000000000000000000000000000000000000000000000000000000000000", "0x0000000000000000000000000000000000000000000000000000000000000001": "0x0000000000000000000000000000000000000000000000000000000000000000", "0x0000000000000000000000000000000000000000000000000000000000000003": "0x0000000000000000000000000000000000000000000000000000000000000000" } + }, + "OWNER.address": { + "balance": "0x10f075ed5f51d7cf45e", + "nonce": 10 } } \ No newline at end of file diff --git a/test/historicstate/hardhat/scripts/geth_traces/Tracer.readableRevert.callTracer.json b/test/historicstate/hardhat/scripts/geth_traces/Tracer.readableRevert.callTracer.json index e8896f379..ee002e2a8 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/Tracer.readableRevert.callTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/Tracer.readableRevert.callTracer.json @@ -1,7 +1,7 @@ { "from": "OWNER.address", "gas": "0x200b20", - "gasUsed": "0x70ff", + "gasUsed": "0x70db", "to": "Tracer.address", "input": "0x7f29c39400000000000000000000000000000000000000000000000000000000000003e8", "output": "0x08c379a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000014494e53554646494349454e542042414c414e4345000000000000000000000000", @@ -21,7 +21,7 @@ }, { "from": "Tracer.address", - "gas": "0x1f28cc", + "gas": "0x1f28ec", "gasUsed": "0x2b8", "to": "Tracer.address", "input": "0x8bfe44ff", diff --git a/test/historicstate/hardhat/scripts/geth_traces/Tracer.readableRevert.defaultTracer.json b/test/historicstate/hardhat/scripts/geth_traces/Tracer.readableRevert.defaultTracer.json index df6d34099..4f306a68d 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/Tracer.readableRevert.defaultTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/Tracer.readableRevert.defaultTracer.json @@ -1,7 +1,7 @@ { - "gas": 28927, + "gas": 28891, "failed": true, - "returnValue": "08c379a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000014494e53554646494349454e542042414c414e4345000000000000000000000000", + "returnValue": "", "structLogs": [ { "pc": 0, @@ -716,11 +716,11 @@ "0x179", "0x24", "0x4", - "0xa2c" + "0xa0a" ] }, { - "pc": 2604, + "pc": 2570, "op": "JUMPDEST", "gas": 2078532, "gasCost": 1, @@ -734,7 +734,7 @@ ] }, { - "pc": 2605, + "pc": 2571, "op": "PUSH1", "gas": 2078531, "gasCost": 3, @@ -748,7 +748,7 @@ ] }, { - "pc": 2607, + "pc": 2573, "op": "PUSH1", "gas": 2078528, "gasCost": 3, @@ -763,7 +763,7 @@ ] }, { - "pc": 2609, + "pc": 2575, "op": "DUP3", "gas": 2078525, "gasCost": 3, @@ -779,7 +779,7 @@ ] }, { - "pc": 2610, + "pc": 2576, "op": "DUP5", "gas": 2078522, "gasCost": 3, @@ -796,7 +796,7 @@ ] }, { - "pc": 2611, + "pc": 2577, "op": "SUB", "gas": 2078519, "gasCost": 3, @@ -814,7 +814,7 @@ ] }, { - "pc": 2612, + "pc": 2578, "op": "SLT", "gas": 2078516, "gasCost": 3, @@ -831,7 +831,7 @@ ] }, { - "pc": 2613, + "pc": 2579, "op": "ISZERO", "gas": 2078513, "gasCost": 3, @@ -847,7 +847,7 @@ ] }, { - "pc": 2614, + "pc": 2580, "op": "PUSH3", "gas": 2078510, "gasCost": 3, @@ -863,7 +863,7 @@ ] }, { - "pc": 2618, + "pc": 2584, "op": "JUMPI", "gas": 2078507, "gasCost": 10, @@ -876,11 +876,11 @@ "0x4", "0x0", "0x1", - "0xa45" + "0xa23" ] }, { - "pc": 2629, + "pc": 2595, "op": "JUMPDEST", "gas": 2078497, "gasCost": 1, @@ -895,7 +895,7 @@ ] }, { - "pc": 2630, + "pc": 2596, "op": "PUSH1", "gas": 2078496, "gasCost": 3, @@ -910,7 +910,7 @@ ] }, { - "pc": 2632, + "pc": 2598, "op": "PUSH3", "gas": 2078493, "gasCost": 3, @@ -926,7 +926,7 @@ ] }, { - "pc": 2636, + "pc": 2602, "op": "DUP5", "gas": 2078490, "gasCost": 3, @@ -939,11 +939,11 @@ "0x4", "0x0", "0x0", - "0xa55" + "0xa33" ] }, { - "pc": 2637, + "pc": 2603, "op": "DUP3", "gas": 2078487, "gasCost": 3, @@ -956,12 +956,12 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24" ] }, { - "pc": 2638, + "pc": 2604, "op": "DUP6", "gas": 2078484, "gasCost": 3, @@ -974,13 +974,13 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x0" ] }, { - "pc": 2639, + "pc": 2605, "op": "ADD", "gas": 2078481, "gasCost": 3, @@ -993,14 +993,14 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x0", "0x4" ] }, { - "pc": 2640, + "pc": 2606, "op": "PUSH3", "gas": 2078478, "gasCost": 3, @@ -1013,13 +1013,13 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4" ] }, { - "pc": 2644, + "pc": 2610, "op": "JUMP", "gas": 2078475, "gasCost": 8, @@ -1032,14 +1032,14 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", - "0xa15" + "0x9f3" ] }, { - "pc": 2581, + "pc": 2547, "op": "JUMPDEST", "gas": 2078467, "gasCost": 1, @@ -1052,13 +1052,13 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4" ] }, { - "pc": 2582, + "pc": 2548, "op": "PUSH1", "gas": 2078466, "gasCost": 3, @@ -1071,13 +1071,13 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4" ] }, { - "pc": 2584, + "pc": 2550, "op": "DUP2", "gas": 2078463, "gasCost": 3, @@ -1090,14 +1090,14 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x0" ] }, { - "pc": 2585, + "pc": 2551, "op": "CALLDATALOAD", "gas": 2078460, "gasCost": 3, @@ -1110,7 +1110,7 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x0", @@ -1118,7 +1118,7 @@ ] }, { - "pc": 2586, + "pc": 2552, "op": "SWAP1", "gas": 2078457, "gasCost": 3, @@ -1131,7 +1131,7 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x0", @@ -1139,7 +1139,7 @@ ] }, { - "pc": 2587, + "pc": 2553, "op": "POP", "gas": 2078454, "gasCost": 2, @@ -1152,7 +1152,7 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8", @@ -1160,7 +1160,7 @@ ] }, { - "pc": 2588, + "pc": 2554, "op": "PUSH3", "gas": 2078452, "gasCost": 3, @@ -1173,14 +1173,14 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8" ] }, { - "pc": 2592, + "pc": 2558, "op": "DUP2", "gas": 2078449, "gasCost": 3, @@ -1193,15 +1193,15 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8", - "0xa26" + "0xa04" ] }, { - "pc": 2593, + "pc": 2559, "op": "PUSH3", "gas": 2078446, "gasCost": 3, @@ -1214,16 +1214,16 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8", - "0xa26", + "0xa04", "0x3e8" ] }, { - "pc": 2597, + "pc": 2563, "op": "JUMP", "gas": 2078443, "gasCost": 8, @@ -1236,17 +1236,17 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8", - "0xa26", + "0xa04", "0x3e8", - "0x9fb" + "0x9d9" ] }, { - "pc": 2555, + "pc": 2521, "op": "JUMPDEST", "gas": 2078435, "gasCost": 1, @@ -1259,16 +1259,16 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8", - "0xa26", + "0xa04", "0x3e8" ] }, { - "pc": 2556, + "pc": 2522, "op": "PUSH3", "gas": 2078434, "gasCost": 3, @@ -1281,16 +1281,16 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8", - "0xa26", + "0xa04", "0x3e8" ] }, { - "pc": 2560, + "pc": 2526, "op": "DUP2", "gas": 2078431, "gasCost": 3, @@ -1303,17 +1303,17 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8", - "0xa26", + "0xa04", "0x3e8", - "0xa06" + "0x9e4" ] }, { - "pc": 2561, + "pc": 2527, "op": "PUSH3", "gas": 2078428, "gasCost": 3, @@ -1326,18 +1326,18 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8", - "0xa26", + "0xa04", "0x3e8", - "0xa06", + "0x9e4", "0x3e8" ] }, { - "pc": 2565, + "pc": 2531, "op": "JUMP", "gas": 2078425, "gasCost": 8, @@ -1350,19 +1350,19 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8", - "0xa26", + "0xa04", "0x3e8", - "0xa06", + "0x9e4", "0x3e8", - "0x97c" + "0x95a" ] }, { - "pc": 2428, + "pc": 2394, "op": "JUMPDEST", "gas": 2078417, "gasCost": 1, @@ -1375,18 +1375,18 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8", - "0xa26", + "0xa04", "0x3e8", - "0xa06", + "0x9e4", "0x3e8" ] }, { - "pc": 2429, + "pc": 2395, "op": "PUSH1", "gas": 2078416, "gasCost": 3, @@ -1399,18 +1399,18 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8", - "0xa26", + "0xa04", "0x3e8", - "0xa06", + "0x9e4", "0x3e8" ] }, { - "pc": 2431, + "pc": 2397, "op": "DUP2", "gas": 2078413, "gasCost": 3, @@ -1423,19 +1423,19 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8", - "0xa26", + "0xa04", "0x3e8", - "0xa06", + "0x9e4", "0x3e8", "0x0" ] }, { - "pc": 2432, + "pc": 2398, "op": "SWAP1", "gas": 2078410, "gasCost": 3, @@ -1448,20 +1448,20 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8", - "0xa26", + "0xa04", "0x3e8", - "0xa06", + "0x9e4", "0x3e8", "0x0", "0x3e8" ] }, { - "pc": 2433, + "pc": 2399, "op": "POP", "gas": 2078407, "gasCost": 2, @@ -1474,20 +1474,20 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8", - "0xa26", + "0xa04", "0x3e8", - "0xa06", + "0x9e4", "0x3e8", "0x3e8", "0x0" ] }, { - "pc": 2434, + "pc": 2400, "op": "SWAP2", "gas": 2078405, "gasCost": 3, @@ -1500,19 +1500,19 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8", - "0xa26", + "0xa04", "0x3e8", - "0xa06", + "0x9e4", "0x3e8", "0x3e8" ] }, { - "pc": 2435, + "pc": 2401, "op": "SWAP1", "gas": 2078402, "gasCost": 3, @@ -1525,19 +1525,19 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8", - "0xa26", + "0xa04", "0x3e8", "0x3e8", "0x3e8", - "0xa06" + "0x9e4" ] }, { - "pc": 2436, + "pc": 2402, "op": "POP", "gas": 2078399, "gasCost": 2, @@ -1550,19 +1550,19 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8", - "0xa26", + "0xa04", "0x3e8", "0x3e8", - "0xa06", + "0x9e4", "0x3e8" ] }, { - "pc": 2437, + "pc": 2403, "op": "JUMP", "gas": 2078397, "gasCost": 8, @@ -1575,18 +1575,18 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8", - "0xa26", + "0xa04", "0x3e8", "0x3e8", - "0xa06" + "0x9e4" ] }, { - "pc": 2566, + "pc": 2532, "op": "JUMPDEST", "gas": 2078389, "gasCost": 1, @@ -1599,17 +1599,17 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8", - "0xa26", + "0xa04", "0x3e8", "0x3e8" ] }, { - "pc": 2567, + "pc": 2533, "op": "DUP2", "gas": 2078388, "gasCost": 3, @@ -1622,17 +1622,17 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8", - "0xa26", + "0xa04", "0x3e8", "0x3e8" ] }, { - "pc": 2568, + "pc": 2534, "op": "EQ", "gas": 2078385, "gasCost": 3, @@ -1645,18 +1645,18 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8", - "0xa26", + "0xa04", "0x3e8", "0x3e8", "0x3e8" ] }, { - "pc": 2569, + "pc": 2535, "op": "PUSH3", "gas": 2078382, "gasCost": 3, @@ -1669,17 +1669,17 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8", - "0xa26", + "0xa04", "0x3e8", "0x1" ] }, { - "pc": 2573, + "pc": 2539, "op": "JUMPI", "gas": 2078379, "gasCost": 10, @@ -1692,18 +1692,18 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8", - "0xa26", + "0xa04", "0x3e8", "0x1", - "0xa12" + "0x9f0" ] }, { - "pc": 2578, + "pc": 2544, "op": "JUMPDEST", "gas": 2078369, "gasCost": 1, @@ -1716,16 +1716,16 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8", - "0xa26", + "0xa04", "0x3e8" ] }, { - "pc": 2579, + "pc": 2545, "op": "POP", "gas": 2078368, "gasCost": 2, @@ -1738,16 +1738,16 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8", - "0xa26", + "0xa04", "0x3e8" ] }, { - "pc": 2580, + "pc": 2546, "op": "JUMP", "gas": 2078366, "gasCost": 8, @@ -1760,15 +1760,15 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8", - "0xa26" + "0xa04" ] }, { - "pc": 2598, + "pc": 2564, "op": "JUMPDEST", "gas": 2078358, "gasCost": 1, @@ -1781,14 +1781,14 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8" ] }, { - "pc": 2599, + "pc": 2565, "op": "SWAP3", "gas": 2078357, "gasCost": 3, @@ -1801,14 +1801,14 @@ "0x4", "0x0", "0x0", - "0xa55", + "0xa33", "0x24", "0x4", "0x3e8" ] }, { - "pc": 2600, + "pc": 2566, "op": "SWAP2", "gas": 2078354, "gasCost": 3, @@ -1824,11 +1824,11 @@ "0x3e8", "0x24", "0x4", - "0xa55" + "0xa33" ] }, { - "pc": 2601, + "pc": 2567, "op": "POP", "gas": 2078351, "gasCost": 2, @@ -1842,13 +1842,13 @@ "0x0", "0x0", "0x3e8", - "0xa55", + "0xa33", "0x4", "0x24" ] }, { - "pc": 2602, + "pc": 2568, "op": "POP", "gas": 2078349, "gasCost": 2, @@ -1862,12 +1862,12 @@ "0x0", "0x0", "0x3e8", - "0xa55", + "0xa33", "0x4" ] }, { - "pc": 2603, + "pc": 2569, "op": "JUMP", "gas": 2078347, "gasCost": 8, @@ -1881,11 +1881,11 @@ "0x0", "0x0", "0x3e8", - "0xa55" + "0xa33" ] }, { - "pc": 2645, + "pc": 2611, "op": "JUMPDEST", "gas": 2078339, "gasCost": 1, @@ -1902,7 +1902,7 @@ ] }, { - "pc": 2646, + "pc": 2612, "op": "SWAP2", "gas": 2078338, "gasCost": 3, @@ -1919,7 +1919,7 @@ ] }, { - "pc": 2647, + "pc": 2613, "op": "POP", "gas": 2078335, "gasCost": 2, @@ -1936,7 +1936,7 @@ ] }, { - "pc": 2648, + "pc": 2614, "op": "POP", "gas": 2078333, "gasCost": 2, @@ -1952,7 +1952,7 @@ ] }, { - "pc": 2649, + "pc": 2615, "op": "SWAP3", "gas": 2078331, "gasCost": 3, @@ -1967,7 +1967,7 @@ ] }, { - "pc": 2650, + "pc": 2616, "op": "SWAP2", "gas": 2078328, "gasCost": 3, @@ -1982,7 +1982,7 @@ ] }, { - "pc": 2651, + "pc": 2617, "op": "POP", "gas": 2078325, "gasCost": 2, @@ -1997,7 +1997,7 @@ ] }, { - "pc": 2652, + "pc": 2618, "op": "POP", "gas": 2078323, "gasCost": 2, @@ -2011,7 +2011,7 @@ ] }, { - "pc": 2653, + "pc": 2619, "op": "JUMP", "gas": 2078321, "gasCost": 8, @@ -2057,11 +2057,11 @@ "0x7f29c394", "0x17f", "0x3e8", - "0x4ae" + "0x49e" ] }, { - "pc": 1198, + "pc": 1182, "op": "JUMPDEST", "gas": 2078301, "gasCost": 1, @@ -2073,7 +2073,7 @@ ] }, { - "pc": 1199, + "pc": 1183, "op": "PUSH1", "gas": 2078300, "gasCost": 3, @@ -2085,7 +2085,7 @@ ] }, { - "pc": 1201, + "pc": 1185, "op": "ADDRESS", "gas": 2078297, "gasCost": 2, @@ -2098,7 +2098,7 @@ ] }, { - "pc": 1202, + "pc": 1186, "op": "PUSH20", "gas": 2078295, "gasCost": 3, @@ -2112,7 +2112,7 @@ ] }, { - "pc": 1223, + "pc": 1207, "op": "AND", "gas": 2078292, "gasCost": 3, @@ -2127,7 +2127,7 @@ ] }, { - "pc": 1224, + "pc": 1208, "op": "PUSH4", "gas": 2078289, "gasCost": 3, @@ -2141,7 +2141,7 @@ ] }, { - "pc": 1229, + "pc": 1213, "op": "PUSH1", "gas": 2078286, "gasCost": 3, @@ -2156,7 +2156,7 @@ ] }, { - "pc": 1231, + "pc": 1215, "op": "MLOAD", "gas": 2078283, "gasCost": 3, @@ -2172,7 +2172,7 @@ ] }, { - "pc": 1232, + "pc": 1216, "op": "DUP2", "gas": 2078280, "gasCost": 3, @@ -2188,7 +2188,7 @@ ] }, { - "pc": 1233, + "pc": 1217, "op": "PUSH4", "gas": 2078277, "gasCost": 3, @@ -2205,7 +2205,7 @@ ] }, { - "pc": 1238, + "pc": 1222, "op": "AND", "gas": 2078274, "gasCost": 3, @@ -2223,7 +2223,7 @@ ] }, { - "pc": 1239, + "pc": 1223, "op": "PUSH1", "gas": 2078271, "gasCost": 3, @@ -2240,7 +2240,7 @@ ] }, { - "pc": 1241, + "pc": 1225, "op": "SHL", "gas": 2078268, "gasCost": 3, @@ -2258,7 +2258,7 @@ ] }, { - "pc": 1242, + "pc": 1226, "op": "DUP2", "gas": 2078265, "gasCost": 3, @@ -2275,7 +2275,7 @@ ] }, { - "pc": 1243, + "pc": 1227, "op": "MSTORE", "gas": 2078262, "gasCost": 9, @@ -2293,7 +2293,7 @@ ] }, { - "pc": 1244, + "pc": 1228, "op": "PUSH1", "gas": 2078253, "gasCost": 3, @@ -2309,7 +2309,7 @@ ] }, { - "pc": 1246, + "pc": 1230, "op": "ADD", "gas": 2078250, "gasCost": 3, @@ -2326,7 +2326,7 @@ ] }, { - "pc": 1247, + "pc": 1231, "op": "PUSH1", "gas": 2078247, "gasCost": 3, @@ -2342,7 +2342,7 @@ ] }, { - "pc": 1249, + "pc": 1233, "op": "PUSH1", "gas": 2078244, "gasCost": 3, @@ -2359,7 +2359,7 @@ ] }, { - "pc": 1251, + "pc": 1235, "op": "MLOAD", "gas": 2078241, "gasCost": 3, @@ -2377,7 +2377,7 @@ ] }, { - "pc": 1252, + "pc": 1236, "op": "DUP1", "gas": 2078238, "gasCost": 3, @@ -2395,7 +2395,7 @@ ] }, { - "pc": 1253, + "pc": 1237, "op": "DUP4", "gas": 2078235, "gasCost": 3, @@ -2414,7 +2414,7 @@ ] }, { - "pc": 1254, + "pc": 1238, "op": "SUB", "gas": 2078232, "gasCost": 3, @@ -2434,7 +2434,7 @@ ] }, { - "pc": 1255, + "pc": 1239, "op": "DUP2", "gas": 2078229, "gasCost": 3, @@ -2453,7 +2453,7 @@ ] }, { - "pc": 1256, + "pc": 1240, "op": "DUP7", "gas": 2078226, "gasCost": 3, @@ -2473,7 +2473,7 @@ ] }, { - "pc": 1257, + "pc": 1241, "op": "DUP1", "gas": 2078223, "gasCost": 3, @@ -2494,7 +2494,7 @@ ] }, { - "pc": 1258, + "pc": 1242, "op": "EXTCODESIZE", "gas": 2078220, "gasCost": 100, @@ -2516,7 +2516,7 @@ ] }, { - "pc": 1259, + "pc": 1243, "op": "ISZERO", "gas": 2078120, "gasCost": 3, @@ -2534,11 +2534,11 @@ "0x4", "0x80", "Tracer.address", - "0x1bde" + "0x1b45" ] }, { - "pc": 1260, + "pc": 1244, "op": "DUP1", "gas": 2078117, "gasCost": 3, @@ -2560,7 +2560,7 @@ ] }, { - "pc": 1261, + "pc": 1245, "op": "ISZERO", "gas": 2078114, "gasCost": 3, @@ -2583,7 +2583,7 @@ ] }, { - "pc": 1262, + "pc": 1246, "op": "PUSH3", "gas": 2078111, "gasCost": 3, @@ -2606,7 +2606,7 @@ ] }, { - "pc": 1266, + "pc": 1250, "op": "JUMPI", "gas": 2078108, "gasCost": 10, @@ -2626,11 +2626,11 @@ "Tracer.address", "0x0", "0x1", - "0x4f7" + "0x4e7" ] }, { - "pc": 1271, + "pc": 1255, "op": "JUMPDEST", "gas": 2078098, "gasCost": 1, @@ -2652,7 +2652,7 @@ ] }, { - "pc": 1272, + "pc": 1256, "op": "POP", "gas": 2078097, "gasCost": 2, @@ -2674,7 +2674,7 @@ ] }, { - "pc": 1273, + "pc": 1257, "op": "GAS", "gas": 2078095, "gasCost": 2, @@ -2695,7 +2695,7 @@ ] }, { - "pc": 1274, + "pc": 1258, "op": "STATICCALL", "gas": 2078093, "gasCost": 2045625, @@ -3114,11 +3114,11 @@ "stack": [ "0x92954362", "0x1ad", - "0x7c5" + "0x7b3" ] }, { - "pc": 1989, + "pc": 1971, "op": "JUMPDEST", "gas": 2045369, "gasCost": 1, @@ -3129,7 +3129,7 @@ ] }, { - "pc": 1990, + "pc": 1972, "op": "PUSH1", "gas": 2045368, "gasCost": 3, @@ -3140,7 +3140,7 @@ ] }, { - "pc": 1992, + "pc": 1974, "op": "MLOAD", "gas": 2045365, "gasCost": 3, @@ -3152,7 +3152,7 @@ ] }, { - "pc": 1993, + "pc": 1975, "op": "PUSH32", "gas": 2045362, "gasCost": 3, @@ -3164,7 +3164,7 @@ ] }, { - "pc": 2026, + "pc": 2008, "op": "DUP2", "gas": 2045359, "gasCost": 3, @@ -3177,7 +3177,7 @@ ] }, { - "pc": 2027, + "pc": 2009, "op": "MSTORE", "gas": 2045356, "gasCost": 9, @@ -3191,7 +3191,7 @@ ] }, { - "pc": 2028, + "pc": 2010, "op": "PUSH1", "gas": 2045347, "gasCost": 3, @@ -3203,7 +3203,7 @@ ] }, { - "pc": 2030, + "pc": 2012, "op": "ADD", "gas": 2045344, "gasCost": 3, @@ -3216,7 +3216,7 @@ ] }, { - "pc": 2031, + "pc": 2013, "op": "PUSH3", "gas": 2045341, "gasCost": 3, @@ -3228,7 +3228,7 @@ ] }, { - "pc": 2035, + "pc": 2017, "op": "SWAP1", "gas": 2045338, "gasCost": 3, @@ -3237,11 +3237,11 @@ "0x92954362", "0x1ad", "0x84", - "0x7f9" + "0x7e7" ] }, { - "pc": 2036, + "pc": 2018, "op": "PUSH3", "gas": 2045335, "gasCost": 3, @@ -3249,12 +3249,12 @@ "stack": [ "0x92954362", "0x1ad", - "0x7f9", + "0x7e7", "0x84" ] }, { - "pc": 2040, + "pc": 2022, "op": "JUMP", "gas": 2045332, "gasCost": 8, @@ -3262,13 +3262,13 @@ "stack": [ "0x92954362", "0x1ad", - "0x7f9", + "0x7e7", "0x84", - "0x10a3" + "0x104e" ] }, { - "pc": 4259, + "pc": 4174, "op": "JUMPDEST", "gas": 2045324, "gasCost": 1, @@ -3276,12 +3276,12 @@ "stack": [ "0x92954362", "0x1ad", - "0x7f9", + "0x7e7", "0x84" ] }, { - "pc": 4260, + "pc": 4175, "op": "PUSH1", "gas": 2045323, "gasCost": 3, @@ -3289,12 +3289,12 @@ "stack": [ "0x92954362", "0x1ad", - "0x7f9", + "0x7e7", "0x84" ] }, { - "pc": 4262, + "pc": 4177, "op": "PUSH1", "gas": 2045320, "gasCost": 3, @@ -3302,13 +3302,13 @@ "stack": [ "0x92954362", "0x1ad", - "0x7f9", + "0x7e7", "0x84", "0x0" ] }, { - "pc": 4264, + "pc": 4179, "op": "DUP3", "gas": 2045317, "gasCost": 3, @@ -3316,14 +3316,14 @@ "stack": [ "0x92954362", "0x1ad", - "0x7f9", + "0x7e7", "0x84", "0x0", "0x20" ] }, { - "pc": 4265, + "pc": 4180, "op": "ADD", "gas": 2045314, "gasCost": 3, @@ -3331,7 +3331,7 @@ "stack": [ "0x92954362", "0x1ad", - "0x7f9", + "0x7e7", "0x84", "0x0", "0x20", @@ -3339,7 +3339,7 @@ ] }, { - "pc": 4266, + "pc": 4181, "op": "SWAP1", "gas": 2045311, "gasCost": 3, @@ -3347,14 +3347,14 @@ "stack": [ "0x92954362", "0x1ad", - "0x7f9", + "0x7e7", "0x84", "0x0", "0xa4" ] }, { - "pc": 4267, + "pc": 4182, "op": "POP", "gas": 2045308, "gasCost": 2, @@ -3362,14 +3362,14 @@ "stack": [ "0x92954362", "0x1ad", - "0x7f9", + "0x7e7", "0x84", "0xa4", "0x0" ] }, { - "pc": 4268, + "pc": 4183, "op": "DUP2", "gas": 2045306, "gasCost": 3, @@ -3377,13 +3377,13 @@ "stack": [ "0x92954362", "0x1ad", - "0x7f9", + "0x7e7", "0x84", "0xa4" ] }, { - "pc": 4269, + "pc": 4184, "op": "DUP2", "gas": 2045303, "gasCost": 3, @@ -3391,14 +3391,14 @@ "stack": [ "0x92954362", "0x1ad", - "0x7f9", + "0x7e7", "0x84", "0xa4", "0x84" ] }, { - "pc": 4270, + "pc": 4185, "op": "SUB", "gas": 2045300, "gasCost": 3, @@ -3406,7 +3406,7 @@ "stack": [ "0x92954362", "0x1ad", - "0x7f9", + "0x7e7", "0x84", "0xa4", "0x84", @@ -3414,7 +3414,7 @@ ] }, { - "pc": 4271, + "pc": 4186, "op": "PUSH1", "gas": 2045297, "gasCost": 3, @@ -3422,14 +3422,14 @@ "stack": [ "0x92954362", "0x1ad", - "0x7f9", + "0x7e7", "0x84", "0xa4", "0x20" ] }, { - "pc": 4273, + "pc": 4188, "op": "DUP4", "gas": 2045294, "gasCost": 3, @@ -3437,7 +3437,7 @@ "stack": [ "0x92954362", "0x1ad", - "0x7f9", + "0x7e7", "0x84", "0xa4", "0x20", @@ -3445,7 +3445,7 @@ ] }, { - "pc": 4274, + "pc": 4189, "op": "ADD", "gas": 2045291, "gasCost": 3, @@ -3453,7 +3453,7 @@ "stack": [ "0x92954362", "0x1ad", - "0x7f9", + "0x7e7", "0x84", "0xa4", "0x20", @@ -3462,7 +3462,7 @@ ] }, { - "pc": 4275, + "pc": 4190, "op": "MSTORE", "gas": 2045288, "gasCost": 6, @@ -3470,7 +3470,7 @@ "stack": [ "0x92954362", "0x1ad", - "0x7f9", + "0x7e7", "0x84", "0xa4", "0x20", @@ -3478,7 +3478,7 @@ ] }, { - "pc": 4276, + "pc": 4191, "op": "PUSH3", "gas": 2045282, "gasCost": 3, @@ -3486,13 +3486,13 @@ "stack": [ "0x92954362", "0x1ad", - "0x7f9", + "0x7e7", "0x84", "0xa4" ] }, { - "pc": 4280, + "pc": 4195, "op": "DUP2", "gas": 2045279, "gasCost": 3, @@ -3500,14 +3500,14 @@ "stack": [ "0x92954362", "0x1ad", - "0x7f9", + "0x7e7", "0x84", "0xa4", - "0x10be" + "0x1069" ] }, { - "pc": 4281, + "pc": 4196, "op": "PUSH3", "gas": 2045276, "gasCost": 3, @@ -3515,15 +3515,15 @@ "stack": [ "0x92954362", "0x1ad", - "0x7f9", + "0x7e7", "0x84", "0xa4", - "0x10be", + "0x1069", "0xa4" ] }, { - "pc": 4285, + "pc": 4200, "op": "JUMP", "gas": 2045273, "gasCost": 8, @@ -3531,16 +3531,16 @@ "stack": [ "0x92954362", "0x1ad", - "0x7f9", + "0x7e7", "0x84", "0xa4", - "0x10be", + "0x1069", "0xa4", - "0x107c" + "0x1027" ] }, { - "pc": 4220, + "pc": 4135, "op": "JUMPDEST", "gas": 2045265, "gasCost": 1, @@ -3548,15 +3548,15 @@ "stack": [ "0x92954362", "0x1ad", - "0x7f9", + "0x7e7", "0x84", "0xa4", - "0x10be", + "0x1069", "0xa4" ] }, { - "pc": 4221, + "pc": 4136, "op": "PUSH1", "gas": 2045264, "gasCost": 3, @@ -3564,15 +3564,15 @@ "stack": [ "0x92954362", "0x1ad", - "0x7f9", + "0x7e7", "0x84", "0xa4", - "0x10be", + "0x1069", "0xa4" ] }, { - "pc": 4223, + "pc": 4138, "op": "PUSH3", "gas": 2045261, "gasCost": 3, @@ -3580,16 +3580,16 @@ "stack": [ "0x92954362", "0x1ad", - "0x7f9", + "0x7e7", "0x84", "0xa4", - "0x10be", + "0x1069", "0xa4", "0x0" ] }, { - "pc": 4227, + "pc": 4142, "op": "PUSH1", "gas": 2045258, "gasCost": 3, @@ -3597,17 +3597,17 @@ "stack": [ "0x92954362", "0x1ad", - "0x7f9", + "0x7e7", "0x84", "0xa4", - "0x10be", + "0x1069", "0xa4", "0x0", - "0x108b" + "0x1036" ] }, { - "pc": 4229, + "pc": 4144, "op": "DUP4", "gas": 2045255, "gasCost": 3, @@ -3615,18 +3615,18 @@ "stack": [ "0x92954362", "0x1ad", - "0x7f9", + "0x7e7", "0x84", "0xa4", - "0x10be", + "0x1069", "0xa4", "0x0", - "0x108b", + "0x1036", "0x17" ] }, { - "pc": 4230, + "pc": 4145, "op": "PUSH3", "gas": 2045252, "gasCost": 3, @@ -3634,19 +3634,19 @@ "stack": [ "0x92954362", "0x1ad", - "0x7f9", + "0x7e7", "0x84", "0xa4", - "0x10be", + "0x1069", "0xa4", "0x0", - "0x108b", + "0x1036", "0x17", "0xa4" ] }, { - "pc": 4234, + "pc": 4149, "op": "JUMP", "gas": 2045249, "gasCost": 8, @@ -3654,20 +3654,20 @@ "stack": [ "0x92954362", "0x1ad", - "0x7f9", + "0x7e7", "0x84", "0xa4", - "0x10be", + "0x1069", "0xa4", "0x0", - "0x108b", + "0x1036", "0x17", "0xa4", - "0xaf5" + "0xad3" ] }, { - "pc": 2805, + "pc": 2771, "op": "JUMPDEST", "gas": 2045241, "gasCost": 1, @@ -3675,19 +3675,19 @@ "stack": [ "0x92954362", "0x1ad", - "0x7f9", + "0x7e7", "0x84", "0xa4", - "0x10be", + "0x1069", "0xa4", "0x0", - "0x108b", + "0x1036", "0x17", "0xa4" ] }, { - "pc": 2806, + "pc": 2772, "op": "PUSH1", "gas": 2045240, "gasCost": 3, @@ -3695,19 +3695,19 @@ "stack": [ "0x92954362", "0x1ad", - "0x7f9", + "0x7e7", "0x84", "0xa4", - "0x10be", + "0x1069", "0xa4", "0x0", - "0x108b", + "0x1036", "0x17", "0xa4" ] }, { - "pc": 2808, + "pc": 2774, "op": "DUP3", "gas": 2045237, "gasCost": 3, @@ -3715,20 +3715,20 @@ "stack": [ "0x92954362", "0x1ad", - "0x7f9", + "0x7e7", "0x84", "0xa4", - "0x10be", + "0x1069", "0xa4", "0x0", - "0x108b", + "0x1036", "0x17", "0xa4", "0x0" ] }, { - "pc": 2809, + "pc": 2775, "op": "DUP3", "gas": 2045234, "gasCost": 3, @@ -3736,13 +3736,13 @@ "stack": [ "0x92954362", "0x1ad", - "0x7f9", + "0x7e7", "0x84", "0xa4", - "0x10be", + "0x1069", "0xa4", "0x0", - "0x108b", + "0x1036", "0x17", "0xa4", "0x0", @@ -3750,7 +3750,7 @@ ] }, { - "pc": 2810, + "pc": 2776, "op": "MSTORE", "gas": 2045231, "gasCost": 6, @@ -3758,13 +3758,13 @@ "stack": [ "0x92954362", "0x1ad", - "0x7f9", + "0x7e7", "0x84", "0xa4", - "0x10be", + "0x1069", "0xa4", "0x0", - "0x108b", + "0x1036", "0x17", "0xa4", "0x0", @@ -3773,7 +3773,7 @@ ] }, { - "pc": 2811, + "pc": 2777, "op": "PUSH1", "gas": 2045225, "gasCost": 3, @@ -3781,20 +3781,20 @@ "stack": [ "0x92954362", "0x1ad", - "0x7f9", + "0x7e7", "0x84", "0xa4", - "0x10be", + "0x1069", "0xa4", "0x0", - "0x108b", + "0x1036", "0x17", "0xa4", "0x0" ] }, { - "pc": 2813, + "pc": 2779, "op": "DUP3", "gas": 2045222, "gasCost": 3, @@ -3802,13 +3802,13 @@ "stack": [ "0x92954362", "0x1ad", - "0x7f9", + "0x7e7", "0x84", "0xa4", - "0x10be", + "0x1069", "0xa4", "0x0", - "0x108b", + "0x1036", "0x17", "0xa4", "0x0", @@ -3816,7 +3816,7 @@ ] }, { - "pc": 2814, + "pc": 2780, "op": "ADD", "gas": 2045219, "gasCost": 3, @@ -3824,13 +3824,13 @@ "stack": [ "0x92954362", "0x1ad", - "0x7f9", + "0x7e7", "0x84", "0xa4", - "0x10be", + "0x1069", "0xa4", "0x0", - "0x108b", + "0x1036", "0x17", "0xa4", "0x0", @@ -3839,7 +3839,7 @@ ] }, { - "pc": 2815, + "pc": 2781, "op": "SWAP1", "gas": 2045216, "gasCost": 3, @@ -3847,13 +3847,13 @@ "stack": [ "0x92954362", "0x1ad", - "0x7f9", + "0x7e7", "0x84", "0xa4", - "0x10be", + "0x1069", "0xa4", "0x0", - "0x108b", + "0x1036", "0x17", "0xa4", "0x0", @@ -3861,7 +3861,7 @@ ] }, { - "pc": 2816, + "pc": 2782, "op": "POP", "gas": 2045213, "gasCost": 2, @@ -3869,13 +3869,13 @@ "stack": [ "0x92954362", "0x1ad", - "0x7f9", + "0x7e7", "0x84", "0xa4", - "0x10be", + "0x1069", "0xa4", "0x0", - "0x108b", + "0x1036", "0x17", "0xa4", "0xc4", @@ -3883,7 +3883,7 @@ ] }, { - "pc": 2817, + "pc": 2783, "op": "SWAP3", "gas": 2045211, "gasCost": 3, @@ -3891,20 +3891,20 @@ "stack": [ "0x92954362", "0x1ad", - "0x7f9", + "0x7e7", "0x84", "0xa4", - "0x10be", + "0x1069", "0xa4", "0x0", - "0x108b", + "0x1036", "0x17", "0xa4", "0xc4" ] }, { - "pc": 2818, + "pc": 2784, "op": "SWAP2", "gas": 2045208, "gasCost": 3, @@ -3912,20 +3912,20 @@ "stack": [ "0x92954362", "0x1ad", - "0x7f9", + "0x7e7", "0x84", "0xa4", - "0x10be", + "0x1069", "0xa4", "0x0", "0xc4", "0x17", "0xa4", - "0x108b" + "0x1036" ] }, { - "pc": 2819, + "pc": 2785, "op": "POP", "gas": 2045205, "gasCost": 2, @@ -3933,20 +3933,20 @@ "stack": [ "0x92954362", "0x1ad", - "0x7f9", + "0x7e7", "0x84", "0xa4", - "0x10be", + "0x1069", "0xa4", "0x0", "0xc4", - "0x108b", + "0x1036", "0xa4", "0x17" ] }, { - "pc": 2820, + "pc": 2786, "op": "POP", "gas": 2045203, "gasCost": 2, @@ -3954,19 +3954,19 @@ "stack": [ "0x92954362", "0x1ad", - "0x7f9", + "0x7e7", "0x84", "0xa4", - "0x10be", + "0x1069", "0xa4", "0x0", "0xc4", - "0x108b", + "0x1036", "0xa4" ] }, { - "pc": 2821, + "pc": 2787, "op": "JUMP", "gas": 2045201, "gasCost": 8, @@ -3974,18 +3974,18 @@ "stack": [ "0x92954362", "0x1ad", - "0x7f9", + "0x7e7", "0x84", "0xa4", - "0x10be", + "0x1069", "0xa4", "0x0", "0xc4", - "0x108b" + "0x1036" ] }, { - "pc": 4235, + "pc": 4150, "op": "JUMPDEST", "gas": 2045193, "gasCost": 1, @@ -3993,17 +3993,17 @@ "stack": [ "0x92954362", "0x1ad", - "0x7f9", + "0x7e7", "0x84", "0xa4", - "0x10be", + "0x1069", "0xa4", "0x0", "0xc4" ] }, { - "pc": 4236, + "pc": 4151, "op": "SWAP2", "gas": 2045192, "gasCost": 3, @@ -4011,17 +4011,17 @@ "stack": [ "0x92954362", "0x1ad", - "0x7f9", + "0x7e7", "0x84", "0xa4", - "0x10be", + "0x1069", "0xa4", "0x0", "0xc4" ] }, { - "pc": 4237, + "pc": 4152, "op": "POP", "gas": 2045189, "gasCost": 2, @@ -4029,17 +4029,17 @@ "stack": [ "0x92954362", "0x1ad", - "0x7f9", + "0x7e7", "0x84", "0xa4", - "0x10be", + "0x1069", "0xc4", "0x0", "0xa4" ] }, { - "pc": 4238, + "pc": 4153, "op": "PUSH3", "gas": 2045187, "gasCost": 3, @@ -4047,16 +4047,16 @@ "stack": [ "0x92954362", "0x1ad", - "0x7f9", + "0x7e7", "0x84", "0xa4", - "0x10be", + "0x1069", "0xc4", "0x0" ] }, { - "pc": 4242, + "pc": 4157, "op": "DUP3", "gas": 2045184, "gasCost": 3, @@ -4064,17 +4064,17 @@ "stack": [ "0x92954362", "0x1ad", - "0x7f9", + "0x7e7", "0x84", "0xa4", - "0x10be", + "0x1069", "0xc4", "0x0", - "0x1098" + "0x1043" ] }, { - "pc": 4243, + "pc": 4158, "op": "PUSH3", "gas": 2045181, "gasCost": 3, @@ -4082,18 +4082,18 @@ "stack": [ "0x92954362", "0x1ad", - "0x7f9", + "0x7e7", "0x84", "0xa4", - "0x10be", + "0x1069", "0xc4", "0x0", - "0x1098", + "0x1043", "0xc4" ] }, { - "pc": 4247, + "pc": 4162, "op": "JUMP", "gas": 2045178, "gasCost": 8, @@ -4101,19 +4101,19 @@ "stack": [ "0x92954362", "0x1ad", - "0x7f9", + "0x7e7", "0x84", "0xa4", - "0x10be", + "0x1069", "0xc4", "0x0", - "0x1098", + "0x1043", "0xc4", - "0x1053" + "0xffe" ] }, { - "pc": 4179, + "pc": 4094, "op": "JUMPDEST", "gas": 2045170, "gasCost": 1, @@ -4121,18 +4121,18 @@ "stack": [ "0x92954362", "0x1ad", - "0x7f9", + "0x7e7", "0x84", "0xa4", - "0x10be", + "0x1069", "0xc4", "0x0", - "0x1098", + "0x1043", "0xc4" ] }, { - "pc": 4180, + "pc": 4095, "op": "PUSH32", "gas": 2045169, "gasCost": 3, @@ -4140,18 +4140,18 @@ "stack": [ "0x92954362", "0x1ad", - "0x7f9", + "0x7e7", "0x84", "0xa4", - "0x10be", + "0x1069", "0xc4", "0x0", - "0x1098", + "0x1043", "0xc4" ] }, { - "pc": 4213, + "pc": 4128, "op": "PUSH1", "gas": 2045166, "gasCost": 3, @@ -4159,19 +4159,19 @@ "stack": [ "0x92954362", "0x1ad", - "0x7f9", + "0x7e7", "0x84", "0xa4", - "0x10be", + "0x1069", "0xc4", "0x0", - "0x1098", + "0x1043", "0xc4", "0x546869732066756e6374696f6e20726576657274656421000000000000000000" ] }, { - "pc": 4215, + "pc": 4130, "op": "DUP3", "gas": 2045163, "gasCost": 3, @@ -4179,20 +4179,20 @@ "stack": [ "0x92954362", "0x1ad", - "0x7f9", + "0x7e7", "0x84", "0xa4", - "0x10be", + "0x1069", "0xc4", "0x0", - "0x1098", + "0x1043", "0xc4", "0x546869732066756e6374696f6e20726576657274656421000000000000000000", "0x0" ] }, { - "pc": 4216, + "pc": 4131, "op": "ADD", "gas": 2045160, "gasCost": 3, @@ -4200,13 +4200,13 @@ "stack": [ "0x92954362", "0x1ad", - "0x7f9", + "0x7e7", "0x84", "0xa4", - "0x10be", + "0x1069", "0xc4", "0x0", - "0x1098", + "0x1043", "0xc4", "0x546869732066756e6374696f6e20726576657274656421000000000000000000", "0x0", @@ -4214,7 +4214,7 @@ ] }, { - "pc": 4217, + "pc": 4132, "op": "MSTORE", "gas": 2045157, "gasCost": 6, @@ -4222,20 +4222,20 @@ "stack": [ "0x92954362", "0x1ad", - "0x7f9", + "0x7e7", "0x84", "0xa4", - "0x10be", + "0x1069", "0xc4", "0x0", - "0x1098", + "0x1043", "0xc4", "0x546869732066756e6374696f6e20726576657274656421000000000000000000", "0xc4" ] }, { - "pc": 4218, + "pc": 4133, "op": "POP", "gas": 2045151, "gasCost": 2, @@ -4243,18 +4243,18 @@ "stack": [ "0x92954362", "0x1ad", - "0x7f9", + "0x7e7", "0x84", "0xa4", - "0x10be", + "0x1069", "0xc4", "0x0", - "0x1098", + "0x1043", "0xc4" ] }, { - "pc": 4219, + "pc": 4134, "op": "JUMP", "gas": 2045149, "gasCost": 8, @@ -4262,17 +4262,17 @@ "stack": [ "0x92954362", "0x1ad", - "0x7f9", + "0x7e7", "0x84", "0xa4", - "0x10be", + "0x1069", "0xc4", "0x0", - "0x1098" + "0x1043" ] }, { - "pc": 4248, + "pc": 4163, "op": "JUMPDEST", "gas": 2045141, "gasCost": 1, @@ -4280,16 +4280,16 @@ "stack": [ "0x92954362", "0x1ad", - "0x7f9", + "0x7e7", "0x84", "0xa4", - "0x10be", + "0x1069", "0xc4", "0x0" ] }, { - "pc": 4249, + "pc": 4164, "op": "PUSH1", "gas": 2045140, "gasCost": 3, @@ -4297,16 +4297,16 @@ "stack": [ "0x92954362", "0x1ad", - "0x7f9", + "0x7e7", "0x84", "0xa4", - "0x10be", + "0x1069", "0xc4", "0x0" ] }, { - "pc": 4251, + "pc": 4166, "op": "DUP3", "gas": 2045137, "gasCost": 3, @@ -4314,17 +4314,17 @@ "stack": [ "0x92954362", "0x1ad", - "0x7f9", + "0x7e7", "0x84", "0xa4", - "0x10be", + "0x1069", "0xc4", "0x0", "0x20" ] }, { - "pc": 4252, + "pc": 4167, "op": "ADD", "gas": 2045134, "gasCost": 3, @@ -4332,10 +4332,10 @@ "stack": [ "0x92954362", "0x1ad", - "0x7f9", + "0x7e7", "0x84", "0xa4", - "0x10be", + "0x1069", "0xc4", "0x0", "0x20", @@ -4343,7 +4343,7 @@ ] }, { - "pc": 4253, + "pc": 4168, "op": "SWAP1", "gas": 2045131, "gasCost": 3, @@ -4351,17 +4351,17 @@ "stack": [ "0x92954362", "0x1ad", - "0x7f9", + "0x7e7", "0x84", "0xa4", - "0x10be", + "0x1069", "0xc4", "0x0", "0xe4" ] }, { - "pc": 4254, + "pc": 4169, "op": "POP", "gas": 2045128, "gasCost": 2, @@ -4369,17 +4369,17 @@ "stack": [ "0x92954362", "0x1ad", - "0x7f9", + "0x7e7", "0x84", "0xa4", - "0x10be", + "0x1069", "0xc4", "0xe4", "0x0" ] }, { - "pc": 4255, + "pc": 4170, "op": "SWAP2", "gas": 2045126, "gasCost": 3, @@ -4387,16 +4387,16 @@ "stack": [ "0x92954362", "0x1ad", - "0x7f9", + "0x7e7", "0x84", "0xa4", - "0x10be", + "0x1069", "0xc4", "0xe4" ] }, { - "pc": 4256, + "pc": 4171, "op": "SWAP1", "gas": 2045123, "gasCost": 3, @@ -4404,16 +4404,16 @@ "stack": [ "0x92954362", "0x1ad", - "0x7f9", + "0x7e7", "0x84", "0xa4", "0xe4", "0xc4", - "0x10be" + "0x1069" ] }, { - "pc": 4257, + "pc": 4172, "op": "POP", "gas": 2045120, "gasCost": 2, @@ -4421,16 +4421,16 @@ "stack": [ "0x92954362", "0x1ad", - "0x7f9", + "0x7e7", "0x84", "0xa4", "0xe4", - "0x10be", + "0x1069", "0xc4" ] }, { - "pc": 4258, + "pc": 4173, "op": "JUMP", "gas": 2045118, "gasCost": 8, @@ -4438,15 +4438,15 @@ "stack": [ "0x92954362", "0x1ad", - "0x7f9", + "0x7e7", "0x84", "0xa4", "0xe4", - "0x10be" + "0x1069" ] }, { - "pc": 4286, + "pc": 4201, "op": "JUMPDEST", "gas": 2045110, "gasCost": 1, @@ -4454,14 +4454,14 @@ "stack": [ "0x92954362", "0x1ad", - "0x7f9", + "0x7e7", "0x84", "0xa4", "0xe4" ] }, { - "pc": 4287, + "pc": 4202, "op": "SWAP1", "gas": 2045109, "gasCost": 3, @@ -4469,14 +4469,14 @@ "stack": [ "0x92954362", "0x1ad", - "0x7f9", + "0x7e7", "0x84", "0xa4", "0xe4" ] }, { - "pc": 4288, + "pc": 4203, "op": "POP", "gas": 2045106, "gasCost": 2, @@ -4484,14 +4484,14 @@ "stack": [ "0x92954362", "0x1ad", - "0x7f9", + "0x7e7", "0x84", "0xe4", "0xa4" ] }, { - "pc": 4289, + "pc": 4204, "op": "SWAP2", "gas": 2045104, "gasCost": 3, @@ -4499,13 +4499,13 @@ "stack": [ "0x92954362", "0x1ad", - "0x7f9", + "0x7e7", "0x84", "0xe4" ] }, { - "pc": 4290, + "pc": 4205, "op": "SWAP1", "gas": 2045101, "gasCost": 3, @@ -4515,11 +4515,11 @@ "0x1ad", "0xe4", "0x84", - "0x7f9" + "0x7e7" ] }, { - "pc": 4291, + "pc": 4206, "op": "POP", "gas": 2045098, "gasCost": 2, @@ -4528,12 +4528,12 @@ "0x92954362", "0x1ad", "0xe4", - "0x7f9", + "0x7e7", "0x84" ] }, { - "pc": 4292, + "pc": 4207, "op": "JUMP", "gas": 2045096, "gasCost": 8, @@ -4542,11 +4542,11 @@ "0x92954362", "0x1ad", "0xe4", - "0x7f9" + "0x7e7" ] }, { - "pc": 2041, + "pc": 2023, "op": "JUMPDEST", "gas": 2045088, "gasCost": 1, @@ -4558,7 +4558,7 @@ ] }, { - "pc": 2042, + "pc": 2024, "op": "PUSH1", "gas": 2045087, "gasCost": 3, @@ -4570,7 +4570,7 @@ ] }, { - "pc": 2044, + "pc": 2026, "op": "MLOAD", "gas": 2045084, "gasCost": 3, @@ -4583,7 +4583,7 @@ ] }, { - "pc": 2045, + "pc": 2027, "op": "DUP1", "gas": 2045081, "gasCost": 3, @@ -4596,7 +4596,7 @@ ] }, { - "pc": 2046, + "pc": 2028, "op": "SWAP2", "gas": 2045078, "gasCost": 3, @@ -4610,7 +4610,7 @@ ] }, { - "pc": 2047, + "pc": 2029, "op": "SUB", "gas": 2045075, "gasCost": 3, @@ -4624,7 +4624,7 @@ ] }, { - "pc": 2048, + "pc": 2030, "op": "SWAP1", "gas": 2045072, "gasCost": 3, @@ -4637,7 +4637,7 @@ ] }, { - "pc": 2049, + "pc": 2031, "op": "REVERT", "gas": 2045069, "gasCost": 0, @@ -4650,7 +4650,7 @@ ] }, { - "pc": 1275, + "pc": 1259, "op": "SWAP3", "gas": 2077537, "gasCost": 3, @@ -4667,7 +4667,7 @@ ] }, { - "pc": 1276, + "pc": 1260, "op": "POP", "gas": 2077534, "gasCost": 2, @@ -4684,7 +4684,7 @@ ] }, { - "pc": 1277, + "pc": 1261, "op": "POP", "gas": 2077532, "gasCost": 2, @@ -4700,7 +4700,7 @@ ] }, { - "pc": 1278, + "pc": 1262, "op": "POP", "gas": 2077530, "gasCost": 2, @@ -4715,7 +4715,7 @@ ] }, { - "pc": 1279, + "pc": 1263, "op": "DUP1", "gas": 2077528, "gasCost": 3, @@ -4729,7 +4729,7 @@ ] }, { - "pc": 1280, + "pc": 1264, "op": "ISZERO", "gas": 2077525, "gasCost": 3, @@ -4744,7 +4744,7 @@ ] }, { - "pc": 1281, + "pc": 1265, "op": "PUSH3", "gas": 2077522, "gasCost": 3, @@ -4759,7 +4759,7 @@ ] }, { - "pc": 1285, + "pc": 1269, "op": "JUMPI", "gas": 2077519, "gasCost": 10, @@ -4771,11 +4771,11 @@ "0x0", "0x0", "0x1", - "0x509" + "0x4f9" ] }, { - "pc": 1289, + "pc": 1273, "op": "JUMPDEST", "gas": 2077509, "gasCost": 1, @@ -4789,7 +4789,7 @@ ] }, { - "pc": 1290, + "pc": 1274, "op": "PUSH3", "gas": 2077508, "gasCost": 3, @@ -4803,7 +4803,7 @@ ] }, { - "pc": 1294, + "pc": 1278, "op": "JUMPI", "gas": 2077505, "gasCost": 10, @@ -4814,11 +4814,11 @@ "0x3e8", "0x0", "0x0", - "0x5f2" + "0x5e1" ] }, { - "pc": 1295, + "pc": 1279, "op": "PUSH3", "gas": 2077495, "gasCost": 3, @@ -4831,7 +4831,7 @@ ] }, { - "pc": 1299, + "pc": 1283, "op": "PUSH3", "gas": 2077492, "gasCost": 3, @@ -4841,11 +4841,11 @@ "0x17f", "0x3e8", "0x0", - "0x518" + "0x508" ] }, { - "pc": 1303, + "pc": 1287, "op": "JUMP", "gas": 2077489, "gasCost": 8, @@ -4855,12 +4855,12 @@ "0x17f", "0x3e8", "0x0", - "0x518", - "0xcec" + "0x508", + "0xca8" ] }, { - "pc": 3308, + "pc": 3240, "op": "JUMPDEST", "gas": 2077481, "gasCost": 1, @@ -4870,11 +4870,11 @@ "0x17f", "0x3e8", "0x0", - "0x518" + "0x508" ] }, { - "pc": 3309, + "pc": 3241, "op": "PUSH1", "gas": 2077480, "gasCost": 3, @@ -4884,11 +4884,11 @@ "0x17f", "0x3e8", "0x0", - "0x518" + "0x508" ] }, { - "pc": 3311, + "pc": 3243, "op": "PUSH1", "gas": 2077477, "gasCost": 3, @@ -4898,12 +4898,12 @@ "0x17f", "0x3e8", "0x0", - "0x518", + "0x508", "0x0" ] }, { - "pc": 3313, + "pc": 3245, "op": "RETURNDATASIZE", "gas": 2077474, "gasCost": 2, @@ -4913,13 +4913,13 @@ "0x17f", "0x3e8", "0x0", - "0x518", + "0x508", "0x0", "0x3" ] }, { - "pc": 3314, + "pc": 3246, "op": "GT", "gas": 2077472, "gasCost": 3, @@ -4929,14 +4929,14 @@ "0x17f", "0x3e8", "0x0", - "0x518", + "0x508", "0x0", "0x3", "0x64" ] }, { - "pc": 3315, + "pc": 3247, "op": "ISZERO", "gas": 2077469, "gasCost": 3, @@ -4946,13 +4946,13 @@ "0x17f", "0x3e8", "0x0", - "0x518", + "0x508", "0x0", "0x1" ] }, { - "pc": 3316, + "pc": 3248, "op": "PUSH3", "gas": 2077466, "gasCost": 3, @@ -4962,13 +4962,13 @@ "0x17f", "0x3e8", "0x0", - "0x518", + "0x508", "0x0", "0x0" ] }, { - "pc": 3320, + "pc": 3252, "op": "JUMPI", "gas": 2077463, "gasCost": 10, @@ -4978,14 +4978,14 @@ "0x17f", "0x3e8", "0x0", - "0x518", + "0x508", "0x0", "0x0", - "0xd0e" + "0xcca" ] }, { - "pc": 3321, + "pc": 3253, "op": "PUSH1", "gas": 2077453, "gasCost": 3, @@ -4995,12 +4995,12 @@ "0x17f", "0x3e8", "0x0", - "0x518", + "0x508", "0x0" ] }, { - "pc": 3323, + "pc": 3255, "op": "PUSH1", "gas": 2077450, "gasCost": 3, @@ -5010,13 +5010,13 @@ "0x17f", "0x3e8", "0x0", - "0x518", + "0x508", "0x0", "0x4" ] }, { - "pc": 3325, + "pc": 3257, "op": "DUP1", "gas": 2077447, "gasCost": 3, @@ -5026,14 +5026,14 @@ "0x17f", "0x3e8", "0x0", - "0x518", + "0x508", "0x0", "0x4", "0x0" ] }, { - "pc": 3326, + "pc": 3258, "op": "RETURNDATACOPY", "gas": 2077444, "gasCost": 6, @@ -5043,7 +5043,7 @@ "0x17f", "0x3e8", "0x0", - "0x518", + "0x508", "0x0", "0x4", "0x0", @@ -5051,7 +5051,7 @@ ] }, { - "pc": 3327, + "pc": 3259, "op": "PUSH3", "gas": 2077438, "gasCost": 3, @@ -5061,12 +5061,12 @@ "0x17f", "0x3e8", "0x0", - "0x518", + "0x508", "0x0" ] }, { - "pc": 3331, + "pc": 3263, "op": "PUSH1", "gas": 2077435, "gasCost": 3, @@ -5076,13 +5076,13 @@ "0x17f", "0x3e8", "0x0", - "0x518", + "0x508", "0x0", - "0xd0b" + "0xcc7" ] }, { - "pc": 3333, + "pc": 3265, "op": "MLOAD", "gas": 2077432, "gasCost": 3, @@ -5092,14 +5092,14 @@ "0x17f", "0x3e8", "0x0", - "0x518", + "0x508", "0x0", - "0xd0b", + "0xcc7", "0x0" ] }, { - "pc": 3334, + "pc": 3266, "op": "PUSH3", "gas": 2077429, "gasCost": 3, @@ -5109,14 +5109,14 @@ "0x17f", "0x3e8", "0x0", - "0x518", + "0x508", "0x0", - "0xd0b", + "0xcc7", "0x8c379a000000000000000000000000000000000000000000000000000000000" ] }, { - "pc": 3338, + "pc": 3270, "op": "JUMP", "gas": 2077426, "gasCost": 8, @@ -5126,15 +5126,15 @@ "0x17f", "0x3e8", "0x0", - "0x518", + "0x508", "0x0", - "0xd0b", + "0xcc7", "0x8c379a000000000000000000000000000000000000000000000000000000000", - "0xcdf" + "0xc9b" ] }, { - "pc": 3295, + "pc": 3227, "op": "JUMPDEST", "gas": 2077418, "gasCost": 1, @@ -5144,14 +5144,14 @@ "0x17f", "0x3e8", "0x0", - "0x518", + "0x508", "0x0", - "0xd0b", + "0xcc7", "0x8c379a000000000000000000000000000000000000000000000000000000000" ] }, { - "pc": 3296, + "pc": 3228, "op": "PUSH1", "gas": 2077417, "gasCost": 3, @@ -5161,14 +5161,14 @@ "0x17f", "0x3e8", "0x0", - "0x518", + "0x508", "0x0", - "0xd0b", + "0xcc7", "0x8c379a000000000000000000000000000000000000000000000000000000000" ] }, { - "pc": 3298, + "pc": 3230, "op": "DUP2", "gas": 2077414, "gasCost": 3, @@ -5178,15 +5178,15 @@ "0x17f", "0x3e8", "0x0", - "0x518", + "0x508", "0x0", - "0xd0b", + "0xcc7", "0x8c379a000000000000000000000000000000000000000000000000000000000", "0x0" ] }, { - "pc": 3299, + "pc": 3231, "op": "PUSH1", "gas": 2077411, "gasCost": 3, @@ -5196,16 +5196,16 @@ "0x17f", "0x3e8", "0x0", - "0x518", + "0x508", "0x0", - "0xd0b", + "0xcc7", "0x8c379a000000000000000000000000000000000000000000000000000000000", "0x0", "0x8c379a000000000000000000000000000000000000000000000000000000000" ] }, { - "pc": 3301, + "pc": 3233, "op": "SHR", "gas": 2077408, "gasCost": 3, @@ -5215,9 +5215,9 @@ "0x17f", "0x3e8", "0x0", - "0x518", + "0x508", "0x0", - "0xd0b", + "0xcc7", "0x8c379a000000000000000000000000000000000000000000000000000000000", "0x0", "0x8c379a000000000000000000000000000000000000000000000000000000000", @@ -5225,7 +5225,7 @@ ] }, { - "pc": 3302, + "pc": 3234, "op": "SWAP1", "gas": 2077405, "gasCost": 3, @@ -5235,16 +5235,16 @@ "0x17f", "0x3e8", "0x0", - "0x518", + "0x508", "0x0", - "0xd0b", + "0xcc7", "0x8c379a000000000000000000000000000000000000000000000000000000000", "0x0", "0x8c379a0" ] }, { - "pc": 3303, + "pc": 3235, "op": "POP", "gas": 2077402, "gasCost": 2, @@ -5254,16 +5254,16 @@ "0x17f", "0x3e8", "0x0", - "0x518", + "0x508", "0x0", - "0xd0b", + "0xcc7", "0x8c379a000000000000000000000000000000000000000000000000000000000", "0x8c379a0", "0x0" ] }, { - "pc": 3304, + "pc": 3236, "op": "SWAP2", "gas": 2077400, "gasCost": 3, @@ -5273,15 +5273,15 @@ "0x17f", "0x3e8", "0x0", - "0x518", + "0x508", "0x0", - "0xd0b", + "0xcc7", "0x8c379a000000000000000000000000000000000000000000000000000000000", "0x8c379a0" ] }, { - "pc": 3305, + "pc": 3237, "op": "SWAP1", "gas": 2077397, "gasCost": 3, @@ -5291,15 +5291,15 @@ "0x17f", "0x3e8", "0x0", - "0x518", + "0x508", "0x0", "0x8c379a0", "0x8c379a000000000000000000000000000000000000000000000000000000000", - "0xd0b" + "0xcc7" ] }, { - "pc": 3306, + "pc": 3238, "op": "POP", "gas": 2077394, "gasCost": 2, @@ -5309,15 +5309,15 @@ "0x17f", "0x3e8", "0x0", - "0x518", + "0x508", "0x0", "0x8c379a0", - "0xd0b", + "0xcc7", "0x8c379a000000000000000000000000000000000000000000000000000000000" ] }, { - "pc": 3307, + "pc": 3239, "op": "JUMP", "gas": 2077392, "gasCost": 8, @@ -5327,14 +5327,14 @@ "0x17f", "0x3e8", "0x0", - "0x518", + "0x508", "0x0", "0x8c379a0", - "0xd0b" + "0xcc7" ] }, { - "pc": 3339, + "pc": 3271, "op": "JUMPDEST", "gas": 2077384, "gasCost": 1, @@ -5344,13 +5344,13 @@ "0x17f", "0x3e8", "0x0", - "0x518", + "0x508", "0x0", "0x8c379a0" ] }, { - "pc": 3340, + "pc": 3272, "op": "SWAP1", "gas": 2077383, "gasCost": 3, @@ -5360,13 +5360,13 @@ "0x17f", "0x3e8", "0x0", - "0x518", + "0x508", "0x0", "0x8c379a0" ] }, { - "pc": 3341, + "pc": 3273, "op": "POP", "gas": 2077380, "gasCost": 2, @@ -5376,13 +5376,13 @@ "0x17f", "0x3e8", "0x0", - "0x518", + "0x508", "0x8c379a0", "0x0" ] }, { - "pc": 3342, + "pc": 3274, "op": "JUMPDEST", "gas": 2077378, "gasCost": 1, @@ -5392,12 +5392,12 @@ "0x17f", "0x3e8", "0x0", - "0x518", + "0x508", "0x8c379a0" ] }, { - "pc": 3343, + "pc": 3275, "op": "SWAP1", "gas": 2077377, "gasCost": 3, @@ -5407,12 +5407,12 @@ "0x17f", "0x3e8", "0x0", - "0x518", + "0x508", "0x8c379a0" ] }, { - "pc": 3344, + "pc": 3276, "op": "JUMP", "gas": 2077374, "gasCost": 8, @@ -5423,11 +5423,11 @@ "0x3e8", "0x0", "0x8c379a0", - "0x518" + "0x508" ] }, { - "pc": 1304, + "pc": 1288, "op": "JUMPDEST", "gas": 2077366, "gasCost": 1, @@ -5441,7 +5441,7 @@ ] }, { - "pc": 1305, + "pc": 1289, "op": "DUP1", "gas": 2077365, "gasCost": 3, @@ -5455,7 +5455,7 @@ ] }, { - "pc": 1306, + "pc": 1290, "op": "PUSH4", "gas": 2077362, "gasCost": 3, @@ -5470,8 +5470,8 @@ ] }, { - "pc": 1311, - "op": "EQ", + "pc": 1295, + "op": "SUB", "gas": 2077359, "gasCost": 3, "depth": 1, @@ -5486,24 +5486,9 @@ ] }, { - "pc": 1312, - "op": "ISZERO", - "gas": 2077356, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x7f29c394", - "0x17f", - "0x3e8", - "0x0", - "0x8c379a0", - "0x1" - ] - }, - { - "pc": 1313, + "pc": 1296, "op": "PUSH3", - "gas": 2077353, + "gas": 2077356, "gasCost": 3, "depth": 1, "stack": [ @@ -5516,9 +5501,9 @@ ] }, { - "pc": 1317, + "pc": 1300, "op": "JUMPI", - "gas": 2077350, + "gas": 2077353, "gasCost": 10, "depth": 1, "stack": [ @@ -5528,13 +5513,13 @@ "0x0", "0x8c379a0", "0x0", - "0x57d" + "0x56c" ] }, { - "pc": 1318, + "pc": 1301, "op": "POP", - "gas": 2077340, + "gas": 2077343, "gasCost": 2, "depth": 1, "stack": [ @@ -5546,9 +5531,9 @@ ] }, { - "pc": 1319, + "pc": 1302, "op": "PUSH3", - "gas": 2077338, + "gas": 2077341, "gasCost": 3, "depth": 1, "stack": [ @@ -5559,9 +5544,9 @@ ] }, { - "pc": 1323, + "pc": 1306, "op": "PUSH3", - "gas": 2077335, + "gas": 2077338, "gasCost": 3, "depth": 1, "stack": [ @@ -5569,13 +5554,13 @@ "0x17f", "0x3e8", "0x0", - "0x530" + "0x51f" ] }, { - "pc": 1327, + "pc": 1310, "op": "JUMP", - "gas": 2077332, + "gas": 2077335, "gasCost": 8, "depth": 1, "stack": [ @@ -5583,14 +5568,14 @@ "0x17f", "0x3e8", "0x0", - "0x530", - "0xd87" + "0x51f", + "0xd43" ] }, { - "pc": 3463, + "pc": 3395, "op": "JUMPDEST", - "gas": 2077324, + "gas": 2077327, "gasCost": 1, "depth": 1, "stack": [ @@ -5598,13 +5583,13 @@ "0x17f", "0x3e8", "0x0", - "0x530" + "0x51f" ] }, { - "pc": 3464, + "pc": 3396, "op": "PUSH1", - "gas": 2077323, + "gas": 2077326, "gasCost": 3, "depth": 1, "stack": [ @@ -5612,13 +5597,13 @@ "0x17f", "0x3e8", "0x0", - "0x530" + "0x51f" ] }, { - "pc": 3466, + "pc": 3398, "op": "PUSH1", - "gas": 2077320, + "gas": 2077323, "gasCost": 3, "depth": 1, "stack": [ @@ -5626,14 +5611,14 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0" ] }, { - "pc": 3468, + "pc": 3400, "op": "RETURNDATASIZE", - "gas": 2077317, + "gas": 2077320, "gasCost": 2, "depth": 1, "stack": [ @@ -5641,15 +5626,15 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x44" ] }, { - "pc": 3469, + "pc": 3401, "op": "LT", - "gas": 2077315, + "gas": 2077318, "gasCost": 3, "depth": 1, "stack": [ @@ -5657,32 +5642,16 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x44", "0x64" ] }, { - "pc": 3470, - "op": "ISZERO", - "gas": 2077312, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x7f29c394", - "0x17f", - "0x3e8", - "0x0", - "0x530", - "0x0", - "0x0" - ] - }, - { - "pc": 3471, + "pc": 3402, "op": "PUSH3", - "gas": 2077309, + "gas": 2077315, "gasCost": 3, "depth": 1, "stack": [ @@ -5690,15 +5659,15 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", - "0x1" + "0x0" ] }, { - "pc": 3475, + "pc": 3406, "op": "JUMPI", - "gas": 2077306, + "gas": 2077312, "gasCost": 10, "depth": 1, "stack": [ @@ -5706,31 +5675,16 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", - "0x1", - "0xd99" - ] - }, - { - "pc": 3481, - "op": "JUMPDEST", - "gas": 2077296, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x7f29c394", - "0x17f", - "0x3e8", "0x0", - "0x530", - "0x0" + "0xddb" ] }, { - "pc": 3482, + "pc": 3407, "op": "PUSH3", - "gas": 2077295, + "gas": 2077302, "gasCost": 3, "depth": 1, "stack": [ @@ -5738,14 +5692,14 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0" ] }, { - "pc": 3486, + "pc": 3411, "op": "PUSH3", - "gas": 2077292, + "gas": 2077299, "gasCost": 3, "depth": 1, "stack": [ @@ -5753,15 +5707,15 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", - "0xda3" + "0xd58" ] }, { - "pc": 3490, + "pc": 3415, "op": "JUMP", - "gas": 2077289, + "gas": 2077296, "gasCost": 8, "depth": 1, "stack": [ @@ -5769,16 +5723,16 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", - "0xda3", - "0x9ec" + "0xd58", + "0x9ca" ] }, { - "pc": 2540, + "pc": 2506, "op": "JUMPDEST", - "gas": 2077281, + "gas": 2077288, "gasCost": 1, "depth": 1, "stack": [ @@ -5786,15 +5740,15 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", - "0xda3" + "0xd58" ] }, { - "pc": 2541, + "pc": 2507, "op": "PUSH1", - "gas": 2077280, + "gas": 2077287, "gasCost": 3, "depth": 1, "stack": [ @@ -5802,15 +5756,15 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", - "0xda3" + "0xd58" ] }, { - "pc": 2543, + "pc": 2509, "op": "PUSH1", - "gas": 2077277, + "gas": 2077284, "gasCost": 3, "depth": 1, "stack": [ @@ -5818,16 +5772,16 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", - "0xda3", + "0xd58", "0x0" ] }, { - "pc": 2545, + "pc": 2511, "op": "MLOAD", - "gas": 2077274, + "gas": 2077281, "gasCost": 3, "depth": 1, "stack": [ @@ -5835,17 +5789,17 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", - "0xda3", + "0xd58", "0x0", "0x40" ] }, { - "pc": 2546, + "pc": 2512, "op": "SWAP1", - "gas": 2077271, + "gas": 2077278, "gasCost": 3, "depth": 1, "stack": [ @@ -5853,17 +5807,17 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", - "0xda3", + "0xd58", "0x0", "0x80" ] }, { - "pc": 2547, + "pc": 2513, "op": "POP", - "gas": 2077268, + "gas": 2077275, "gasCost": 2, "depth": 1, "stack": [ @@ -5871,17 +5825,17 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", - "0xda3", + "0xd58", "0x80", "0x0" ] }, { - "pc": 2548, + "pc": 2514, "op": "SWAP1", - "gas": 2077266, + "gas": 2077273, "gasCost": 3, "depth": 1, "stack": [ @@ -5889,16 +5843,16 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", - "0xda3", + "0xd58", "0x80" ] }, { - "pc": 2549, + "pc": 2515, "op": "JUMP", - "gas": 2077263, + "gas": 2077270, "gasCost": 8, "depth": 1, "stack": [ @@ -5906,16 +5860,16 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", - "0xda3" + "0xd58" ] }, { - "pc": 3491, + "pc": 3416, "op": "JUMPDEST", - "gas": 2077255, + "gas": 2077262, "gasCost": 1, "depth": 1, "stack": [ @@ -5923,15 +5877,15 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80" ] }, { - "pc": 3492, + "pc": 3417, "op": "PUSH1", - "gas": 2077254, + "gas": 2077261, "gasCost": 3, "depth": 1, "stack": [ @@ -5939,15 +5893,15 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80" ] }, { - "pc": 3494, + "pc": 3419, "op": "RETURNDATASIZE", - "gas": 2077251, + "gas": 2077258, "gasCost": 2, "depth": 1, "stack": [ @@ -5955,16 +5909,16 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x4" ] }, { - "pc": 3495, + "pc": 3420, "op": "SUB", - "gas": 2077249, + "gas": 2077256, "gasCost": 3, "depth": 1, "stack": [ @@ -5972,7 +5926,7 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x4", @@ -5980,9 +5934,9 @@ ] }, { - "pc": 3496, + "pc": 3421, "op": "PUSH1", - "gas": 2077246, + "gas": 2077253, "gasCost": 3, "depth": 1, "stack": [ @@ -5990,16 +5944,16 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x60" ] }, { - "pc": 3498, + "pc": 3423, "op": "DUP3", - "gas": 2077243, + "gas": 2077250, "gasCost": 3, "depth": 1, "stack": [ @@ -6007,7 +5961,7 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x60", @@ -6015,9 +5969,9 @@ ] }, { - "pc": 3499, + "pc": 3424, "op": "RETURNDATACOPY", - "gas": 2077240, + "gas": 2077247, "gasCost": 18, "depth": 1, "stack": [ @@ -6025,7 +5979,7 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x60", @@ -6034,9 +5988,9 @@ ] }, { - "pc": 3500, + "pc": 3425, "op": "DUP1", - "gas": 2077222, + "gas": 2077229, "gasCost": 3, "depth": 1, "stack": [ @@ -6044,15 +5998,15 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80" ] }, { - "pc": 3501, + "pc": 3426, "op": "MLOAD", - "gas": 2077219, + "gas": 2077226, "gasCost": 3, "depth": 1, "stack": [ @@ -6060,16 +6014,16 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x80" ] }, { - "pc": 3502, + "pc": 3427, "op": "RETURNDATASIZE", - "gas": 2077216, + "gas": 2077223, "gasCost": 2, "depth": 1, "stack": [ @@ -6077,16 +6031,16 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20" ] }, { - "pc": 3503, + "pc": 3428, "op": "PUSH1", - "gas": 2077214, + "gas": 2077221, "gasCost": 3, "depth": 1, "stack": [ @@ -6094,7 +6048,7 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", @@ -6102,9 +6056,9 @@ ] }, { - "pc": 3505, + "pc": 3430, "op": "DUP3", - "gas": 2077211, + "gas": 2077218, "gasCost": 3, "depth": 1, "stack": [ @@ -6112,7 +6066,7 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", @@ -6121,9 +6075,9 @@ ] }, { - "pc": 3506, + "pc": 3431, "op": "ADD", - "gas": 2077208, + "gas": 2077215, "gasCost": 3, "depth": 1, "stack": [ @@ -6131,7 +6085,7 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", @@ -6141,9 +6095,9 @@ ] }, { - "pc": 3507, + "pc": 3432, "op": "GT", - "gas": 2077205, + "gas": 2077212, "gasCost": 3, "depth": 1, "stack": [ @@ -6151,7 +6105,7 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", @@ -6160,9 +6114,9 @@ ] }, { - "pc": 3508, + "pc": 3433, "op": "PUSH8", - "gas": 2077202, + "gas": 2077209, "gasCost": 3, "depth": 1, "stack": [ @@ -6170,7 +6124,7 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", @@ -6178,9 +6132,9 @@ ] }, { - "pc": 3517, + "pc": 3442, "op": "DUP3", - "gas": 2077199, + "gas": 2077206, "gasCost": 3, "depth": 1, "stack": [ @@ -6188,7 +6142,7 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", @@ -6197,9 +6151,9 @@ ] }, { - "pc": 3518, + "pc": 3443, "op": "GT", - "gas": 2077196, + "gas": 2077203, "gasCost": 3, "depth": 1, "stack": [ @@ -6207,7 +6161,7 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", @@ -6217,9 +6171,9 @@ ] }, { - "pc": 3519, + "pc": 3444, "op": "OR", - "gas": 2077193, + "gas": 2077200, "gasCost": 3, "depth": 1, "stack": [ @@ -6227,7 +6181,7 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", @@ -6236,9 +6190,9 @@ ] }, { - "pc": 3520, + "pc": 3445, "op": "ISZERO", - "gas": 2077190, + "gas": 2077197, "gasCost": 3, "depth": 1, "stack": [ @@ -6246,7 +6200,7 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", @@ -6254,9 +6208,9 @@ ] }, { - "pc": 3521, + "pc": 3446, "op": "PUSH3", - "gas": 2077187, + "gas": 2077194, "gasCost": 3, "depth": 1, "stack": [ @@ -6264,7 +6218,7 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", @@ -6272,9 +6226,9 @@ ] }, { - "pc": 3525, + "pc": 3450, "op": "JUMPI", - "gas": 2077184, + "gas": 2077191, "gasCost": 10, "depth": 1, "stack": [ @@ -6282,18 +6236,18 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", "0x1", - "0xdcd" + "0xd82" ] }, { - "pc": 3533, + "pc": 3458, "op": "JUMPDEST", - "gas": 2077174, + "gas": 2077181, "gasCost": 1, "depth": 1, "stack": [ @@ -6301,16 +6255,16 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20" ] }, { - "pc": 3534, + "pc": 3459, "op": "DUP1", - "gas": 2077173, + "gas": 2077180, "gasCost": 3, "depth": 1, "stack": [ @@ -6318,16 +6272,16 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20" ] }, { - "pc": 3535, + "pc": 3460, "op": "DUP3", - "gas": 2077170, + "gas": 2077177, "gasCost": 3, "depth": 1, "stack": [ @@ -6335,7 +6289,7 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", @@ -6343,9 +6297,9 @@ ] }, { - "pc": 3536, + "pc": 3461, "op": "ADD", - "gas": 2077167, + "gas": 2077174, "gasCost": 3, "depth": 1, "stack": [ @@ -6353,7 +6307,7 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", @@ -6362,9 +6316,9 @@ ] }, { - "pc": 3537, + "pc": 3462, "op": "DUP1", - "gas": 2077164, + "gas": 2077171, "gasCost": 3, "depth": 1, "stack": [ @@ -6372,7 +6326,7 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", @@ -6380,9 +6334,9 @@ ] }, { - "pc": 3538, + "pc": 3463, "op": "MLOAD", - "gas": 2077161, + "gas": 2077168, "gasCost": 3, "depth": 1, "stack": [ @@ -6390,7 +6344,7 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", @@ -6399,9 +6353,9 @@ ] }, { - "pc": 3539, + "pc": 3464, "op": "PUSH8", - "gas": 2077158, + "gas": 2077165, "gasCost": 3, "depth": 1, "stack": [ @@ -6409,7 +6363,7 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", @@ -6418,9 +6372,9 @@ ] }, { - "pc": 3548, + "pc": 3473, "op": "DUP2", - "gas": 2077155, + "gas": 2077162, "gasCost": 3, "depth": 1, "stack": [ @@ -6428,7 +6382,7 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", @@ -6438,9 +6392,9 @@ ] }, { - "pc": 3549, + "pc": 3474, "op": "GT", - "gas": 2077152, + "gas": 2077159, "gasCost": 3, "depth": 1, "stack": [ @@ -6448,7 +6402,7 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", @@ -6459,9 +6413,9 @@ ] }, { - "pc": 3550, + "pc": 3475, "op": "ISZERO", - "gas": 2077149, + "gas": 2077156, "gasCost": 3, "depth": 1, "stack": [ @@ -6469,7 +6423,7 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", @@ -6479,9 +6433,9 @@ ] }, { - "pc": 3551, + "pc": 3476, "op": "PUSH3", - "gas": 2077146, + "gas": 2077153, "gasCost": 3, "depth": 1, "stack": [ @@ -6489,7 +6443,7 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", @@ -6499,9 +6453,9 @@ ] }, { - "pc": 3555, + "pc": 3480, "op": "JUMPI", - "gas": 2077143, + "gas": 2077150, "gasCost": 10, "depth": 1, "stack": [ @@ -6509,20 +6463,20 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", "0xa0", "0x17", "0x1", - "0xded" + "0xda2" ] }, { - "pc": 3565, + "pc": 3490, "op": "JUMPDEST", - "gas": 2077133, + "gas": 2077140, "gasCost": 1, "depth": 1, "stack": [ @@ -6530,7 +6484,7 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", @@ -6539,9 +6493,9 @@ ] }, { - "pc": 3566, + "pc": 3491, "op": "DUP1", - "gas": 2077132, + "gas": 2077139, "gasCost": 3, "depth": 1, "stack": [ @@ -6549,7 +6503,7 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", @@ -6558,9 +6512,9 @@ ] }, { - "pc": 3567, + "pc": 3492, "op": "PUSH1", - "gas": 2077129, + "gas": 2077136, "gasCost": 3, "depth": 1, "stack": [ @@ -6568,7 +6522,7 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", @@ -6578,9 +6532,9 @@ ] }, { - "pc": 3569, + "pc": 3494, "op": "DUP4", - "gas": 2077126, + "gas": 2077133, "gasCost": 3, "depth": 1, "stack": [ @@ -6588,7 +6542,7 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", @@ -6599,9 +6553,9 @@ ] }, { - "pc": 3570, + "pc": 3495, "op": "ADD", - "gas": 2077123, + "gas": 2077130, "gasCost": 3, "depth": 1, "stack": [ @@ -6609,7 +6563,7 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", @@ -6621,9 +6575,9 @@ ] }, { - "pc": 3571, + "pc": 3496, "op": "ADD", - "gas": 2077120, + "gas": 2077127, "gasCost": 3, "depth": 1, "stack": [ @@ -6631,7 +6585,7 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", @@ -6642,9 +6596,9 @@ ] }, { - "pc": 3572, + "pc": 3497, "op": "PUSH1", - "gas": 2077117, + "gas": 2077124, "gasCost": 3, "depth": 1, "stack": [ @@ -6652,7 +6606,7 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", @@ -6662,9 +6616,9 @@ ] }, { - "pc": 3574, + "pc": 3499, "op": "RETURNDATASIZE", - "gas": 2077114, + "gas": 2077121, "gasCost": 2, "depth": 1, "stack": [ @@ -6672,7 +6626,7 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", @@ -6683,9 +6637,9 @@ ] }, { - "pc": 3575, + "pc": 3500, "op": "SUB", - "gas": 2077112, + "gas": 2077119, "gasCost": 3, "depth": 1, "stack": [ @@ -6693,7 +6647,7 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", @@ -6705,9 +6659,9 @@ ] }, { - "pc": 3576, + "pc": 3501, "op": "DUP6", - "gas": 2077109, + "gas": 2077116, "gasCost": 3, "depth": 1, "stack": [ @@ -6715,7 +6669,7 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", @@ -6726,9 +6680,9 @@ ] }, { - "pc": 3577, + "pc": 3502, "op": "ADD", - "gas": 2077106, + "gas": 2077113, "gasCost": 3, "depth": 1, "stack": [ @@ -6736,7 +6690,7 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", @@ -6748,9 +6702,9 @@ ] }, { - "pc": 3578, + "pc": 3503, "op": "DUP2", - "gas": 2077103, + "gas": 2077110, "gasCost": 3, "depth": 1, "stack": [ @@ -6758,7 +6712,7 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", @@ -6769,9 +6723,9 @@ ] }, { - "pc": 3579, + "pc": 3504, "op": "GT", - "gas": 2077100, + "gas": 2077107, "gasCost": 3, "depth": 1, "stack": [ @@ -6779,7 +6733,7 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", @@ -6791,9 +6745,9 @@ ] }, { - "pc": 3580, + "pc": 3505, "op": "ISZERO", - "gas": 2077097, + "gas": 2077104, "gasCost": 3, "depth": 1, "stack": [ @@ -6801,7 +6755,7 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", @@ -6812,9 +6766,9 @@ ] }, { - "pc": 3581, + "pc": 3506, "op": "PUSH3", - "gas": 2077094, + "gas": 2077101, "gasCost": 3, "depth": 1, "stack": [ @@ -6822,7 +6776,7 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", @@ -6833,9 +6787,9 @@ ] }, { - "pc": 3585, + "pc": 3510, "op": "JUMPI", - "gas": 2077091, + "gas": 2077098, "gasCost": 10, "depth": 1, "stack": [ @@ -6843,7 +6797,7 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", @@ -6851,13 +6805,13 @@ "0x17", "0xd7", "0x1", - "0xe0c" + "0xdc1" ] }, { - "pc": 3596, + "pc": 3521, "op": "JUMPDEST", - "gas": 2077081, + "gas": 2077088, "gasCost": 1, "depth": 1, "stack": [ @@ -6865,7 +6819,7 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", @@ -6875,9 +6829,9 @@ ] }, { - "pc": 3597, + "pc": 3522, "op": "PUSH3", - "gas": 2077080, + "gas": 2077087, "gasCost": 3, "depth": 1, "stack": [ @@ -6885,7 +6839,7 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", @@ -6895,9 +6849,9 @@ ] }, { - "pc": 3601, + "pc": 3526, "op": "DUP3", - "gas": 2077077, + "gas": 2077084, "gasCost": 3, "depth": 1, "stack": [ @@ -6905,20 +6859,20 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xe1d" + "0xdd2" ] }, { - "pc": 3602, + "pc": 3527, "op": "PUSH1", - "gas": 2077074, + "gas": 2077081, "gasCost": 3, "depth": 1, "stack": [ @@ -6926,21 +6880,21 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xe1d", + "0xdd2", "0x17" ] }, { - "pc": 3604, + "pc": 3529, "op": "ADD", - "gas": 2077071, + "gas": 2077078, "gasCost": 3, "depth": 1, "stack": [ @@ -6948,22 +6902,22 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xe1d", + "0xdd2", "0x17", "0x20" ] }, { - "pc": 3605, + "pc": 3530, "op": "DUP6", - "gas": 2077068, + "gas": 2077075, "gasCost": 3, "depth": 1, "stack": [ @@ -6971,21 +6925,21 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xe1d", + "0xdd2", "0x37" ] }, { - "pc": 3606, + "pc": 3531, "op": "ADD", - "gas": 2077065, + "gas": 2077072, "gasCost": 3, "depth": 1, "stack": [ @@ -6993,22 +6947,22 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xe1d", + "0xdd2", "0x37", "0x20" ] }, { - "pc": 3607, + "pc": 3532, "op": "DUP7", - "gas": 2077062, + "gas": 2077069, "gasCost": 3, "depth": 1, "stack": [ @@ -7016,21 +6970,21 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xe1d", + "0xdd2", "0x57" ] }, { - "pc": 3608, + "pc": 3533, "op": "PUSH3", - "gas": 2077059, + "gas": 2077066, "gasCost": 3, "depth": 1, "stack": [ @@ -7038,22 +6992,22 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xe1d", + "0xdd2", "0x57", "0x80" ] }, { - "pc": 3612, + "pc": 3537, "op": "JUMP", - "gas": 2077056, + "gas": 2077063, "gasCost": 8, "depth": 1, "stack": [ @@ -7061,23 +7015,23 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xe1d", + "0xdd2", "0x57", "0x80", - "0xd51" + "0xd0d" ] }, { - "pc": 3409, + "pc": 3341, "op": "JUMPDEST", - "gas": 2077048, + "gas": 2077055, "gasCost": 1, "depth": 1, "stack": [ @@ -7085,22 +7039,22 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xe1d", + "0xdd2", "0x57", "0x80" ] }, { - "pc": 3410, + "pc": 3342, "op": "PUSH3", - "gas": 2077047, + "gas": 2077054, "gasCost": 3, "depth": 1, "stack": [ @@ -7108,22 +7062,22 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xe1d", + "0xdd2", "0x57", "0x80" ] }, { - "pc": 3414, + "pc": 3346, "op": "DUP3", - "gas": 2077044, + "gas": 2077051, "gasCost": 3, "depth": 1, "stack": [ @@ -7131,23 +7085,23 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xe1d", + "0xdd2", "0x57", "0x80", - "0xd5c" + "0xd18" ] }, { - "pc": 3415, + "pc": 3347, "op": "PUSH3", - "gas": 2077041, + "gas": 2077048, "gasCost": 3, "depth": 1, "stack": [ @@ -7155,24 +7109,24 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xe1d", + "0xdd2", "0x57", "0x80", - "0xd5c", + "0xd18", "0x57" ] }, { - "pc": 3419, + "pc": 3351, "op": "JUMP", - "gas": 2077038, + "gas": 2077045, "gasCost": 8, "depth": 1, "stack": [ @@ -7180,25 +7134,25 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xe1d", + "0xdd2", "0x57", "0x80", - "0xd5c", + "0xd18", "0x57", - "0xd11" + "0xccd" ] }, { - "pc": 3345, + "pc": 3277, "op": "JUMPDEST", - "gas": 2077030, + "gas": 2077037, "gasCost": 1, "depth": 1, "stack": [ @@ -7206,24 +7160,24 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xe1d", + "0xdd2", "0x57", "0x80", - "0xd5c", + "0xd18", "0x57" ] }, { - "pc": 3346, + "pc": 3278, "op": "PUSH1", - "gas": 2077029, + "gas": 2077036, "gasCost": 3, "depth": 1, "stack": [ @@ -7231,24 +7185,24 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xe1d", + "0xdd2", "0x57", "0x80", - "0xd5c", + "0xd18", "0x57" ] }, { - "pc": 3348, + "pc": 3280, "op": "PUSH1", - "gas": 2077026, + "gas": 2077033, "gasCost": 3, "depth": 1, "stack": [ @@ -7256,25 +7210,25 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xe1d", + "0xdd2", "0x57", "0x80", - "0xd5c", + "0xd18", "0x57", "0x0" ] }, { - "pc": 3350, + "pc": 3282, "op": "NOT", - "gas": 2077023, + "gas": 2077030, "gasCost": 3, "depth": 1, "stack": [ @@ -7282,26 +7236,26 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xe1d", + "0xdd2", "0x57", "0x80", - "0xd5c", + "0xd18", "0x57", "0x0", "0x1f" ] }, { - "pc": 3351, + "pc": 3283, "op": "PUSH1", - "gas": 2077020, + "gas": 2077027, "gasCost": 3, "depth": 1, "stack": [ @@ -7309,26 +7263,26 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xe1d", + "0xdd2", "0x57", "0x80", - "0xd5c", + "0xd18", "0x57", "0x0", "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" ] }, { - "pc": 3353, + "pc": 3285, "op": "DUP4", - "gas": 2077017, + "gas": 2077024, "gasCost": 3, "depth": 1, "stack": [ @@ -7336,17 +7290,17 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xe1d", + "0xdd2", "0x57", "0x80", - "0xd5c", + "0xd18", "0x57", "0x0", "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", @@ -7354,9 +7308,9 @@ ] }, { - "pc": 3354, + "pc": 3286, "op": "ADD", - "gas": 2077014, + "gas": 2077021, "gasCost": 3, "depth": 1, "stack": [ @@ -7364,17 +7318,17 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xe1d", + "0xdd2", "0x57", "0x80", - "0xd5c", + "0xd18", "0x57", "0x0", "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", @@ -7383,9 +7337,9 @@ ] }, { - "pc": 3355, + "pc": 3287, "op": "AND", - "gas": 2077011, + "gas": 2077018, "gasCost": 3, "depth": 1, "stack": [ @@ -7393,17 +7347,17 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xe1d", + "0xdd2", "0x57", "0x80", - "0xd5c", + "0xd18", "0x57", "0x0", "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", @@ -7411,9 +7365,9 @@ ] }, { - "pc": 3356, + "pc": 3288, "op": "SWAP1", - "gas": 2077008, + "gas": 2077015, "gasCost": 3, "depth": 1, "stack": [ @@ -7421,26 +7375,26 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xe1d", + "0xdd2", "0x57", "0x80", - "0xd5c", + "0xd18", "0x57", "0x0", "0x60" ] }, { - "pc": 3357, + "pc": 3289, "op": "POP", - "gas": 2077005, + "gas": 2077012, "gasCost": 2, "depth": 1, "stack": [ @@ -7448,26 +7402,26 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xe1d", + "0xdd2", "0x57", "0x80", - "0xd5c", + "0xd18", "0x57", "0x60", "0x0" ] }, { - "pc": 3358, + "pc": 3290, "op": "SWAP2", - "gas": 2077003, + "gas": 2077010, "gasCost": 3, "depth": 1, "stack": [ @@ -7475,25 +7429,25 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xe1d", + "0xdd2", "0x57", "0x80", - "0xd5c", + "0xd18", "0x57", "0x60" ] }, { - "pc": 3359, + "pc": 3291, "op": "SWAP1", - "gas": 2077000, + "gas": 2077007, "gasCost": 3, "depth": 1, "stack": [ @@ -7501,25 +7455,25 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xe1d", + "0xdd2", "0x57", "0x80", "0x60", "0x57", - "0xd5c" + "0xd18" ] }, { - "pc": 3360, + "pc": 3292, "op": "POP", - "gas": 2076997, + "gas": 2077004, "gasCost": 2, "depth": 1, "stack": [ @@ -7527,25 +7481,25 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xe1d", + "0xdd2", "0x57", "0x80", "0x60", - "0xd5c", + "0xd18", "0x57" ] }, { - "pc": 3361, + "pc": 3293, "op": "JUMP", - "gas": 2076995, + "gas": 2077002, "gasCost": 8, "depth": 1, "stack": [ @@ -7553,24 +7507,24 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xe1d", + "0xdd2", "0x57", "0x80", "0x60", - "0xd5c" + "0xd18" ] }, { - "pc": 3420, + "pc": 3352, "op": "JUMPDEST", - "gas": 2076987, + "gas": 2076994, "gasCost": 1, "depth": 1, "stack": [ @@ -7578,23 +7532,23 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xe1d", + "0xdd2", "0x57", "0x80", "0x60" ] }, { - "pc": 3421, + "pc": 3353, "op": "DUP2", - "gas": 2076986, + "gas": 2076993, "gasCost": 3, "depth": 1, "stack": [ @@ -7602,23 +7556,23 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xe1d", + "0xdd2", "0x57", "0x80", "0x60" ] }, { - "pc": 3422, + "pc": 3354, "op": "ADD", - "gas": 2076983, + "gas": 2076990, "gasCost": 3, "depth": 1, "stack": [ @@ -7626,14 +7580,14 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xe1d", + "0xdd2", "0x57", "0x80", "0x60", @@ -7641,9 +7595,9 @@ ] }, { - "pc": 3423, + "pc": 3355, "op": "DUP2", - "gas": 2076980, + "gas": 2076987, "gasCost": 3, "depth": 1, "stack": [ @@ -7651,23 +7605,23 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xe1d", + "0xdd2", "0x57", "0x80", "0xe0" ] }, { - "pc": 3424, + "pc": 3356, "op": "DUP2", - "gas": 2076977, + "gas": 2076984, "gasCost": 3, "depth": 1, "stack": [ @@ -7675,14 +7629,14 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xe1d", + "0xdd2", "0x57", "0x80", "0xe0", @@ -7690,9 +7644,9 @@ ] }, { - "pc": 3425, + "pc": 3357, "op": "LT", - "gas": 2076974, + "gas": 2076981, "gasCost": 3, "depth": 1, "stack": [ @@ -7700,14 +7654,14 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xe1d", + "0xdd2", "0x57", "0x80", "0xe0", @@ -7716,9 +7670,9 @@ ] }, { - "pc": 3426, + "pc": 3358, "op": "PUSH8", - "gas": 2076971, + "gas": 2076978, "gasCost": 3, "depth": 1, "stack": [ @@ -7726,14 +7680,14 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xe1d", + "0xdd2", "0x57", "0x80", "0xe0", @@ -7741,9 +7695,9 @@ ] }, { - "pc": 3435, + "pc": 3367, "op": "DUP3", - "gas": 2076968, + "gas": 2076975, "gasCost": 3, "depth": 1, "stack": [ @@ -7751,14 +7705,14 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xe1d", + "0xdd2", "0x57", "0x80", "0xe0", @@ -7767,9 +7721,9 @@ ] }, { - "pc": 3436, + "pc": 3368, "op": "GT", - "gas": 2076965, + "gas": 2076972, "gasCost": 3, "depth": 1, "stack": [ @@ -7777,14 +7731,14 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xe1d", + "0xdd2", "0x57", "0x80", "0xe0", @@ -7794,9 +7748,9 @@ ] }, { - "pc": 3437, + "pc": 3369, "op": "OR", - "gas": 2076962, + "gas": 2076969, "gasCost": 3, "depth": 1, "stack": [ @@ -7804,14 +7758,14 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xe1d", + "0xdd2", "0x57", "0x80", "0xe0", @@ -7820,9 +7774,9 @@ ] }, { - "pc": 3438, + "pc": 3370, "op": "ISZERO", - "gas": 2076959, + "gas": 2076966, "gasCost": 3, "depth": 1, "stack": [ @@ -7830,14 +7784,14 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xe1d", + "0xdd2", "0x57", "0x80", "0xe0", @@ -7845,9 +7799,9 @@ ] }, { - "pc": 3439, + "pc": 3371, "op": "PUSH3", - "gas": 2076956, + "gas": 2076963, "gasCost": 3, "depth": 1, "stack": [ @@ -7855,14 +7809,14 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xe1d", + "0xdd2", "0x57", "0x80", "0xe0", @@ -7870,9 +7824,9 @@ ] }, { - "pc": 3443, + "pc": 3375, "op": "JUMPI", - "gas": 2076953, + "gas": 2076960, "gasCost": 10, "depth": 1, "stack": [ @@ -7880,25 +7834,25 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xe1d", + "0xdd2", "0x57", "0x80", "0xe0", "0x1", - "0xd7e" + "0xd3a" ] }, { - "pc": 3454, + "pc": 3386, "op": "JUMPDEST", - "gas": 2076943, + "gas": 2076950, "gasCost": 1, "depth": 1, "stack": [ @@ -7906,23 +7860,23 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xe1d", + "0xdd2", "0x57", "0x80", "0xe0" ] }, { - "pc": 3455, + "pc": 3387, "op": "DUP1", - "gas": 2076942, + "gas": 2076949, "gasCost": 3, "depth": 1, "stack": [ @@ -7930,23 +7884,23 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xe1d", + "0xdd2", "0x57", "0x80", "0xe0" ] }, { - "pc": 3456, + "pc": 3388, "op": "PUSH1", - "gas": 2076939, + "gas": 2076946, "gasCost": 3, "depth": 1, "stack": [ @@ -7954,14 +7908,14 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xe1d", + "0xdd2", "0x57", "0x80", "0xe0", @@ -7969,9 +7923,9 @@ ] }, { - "pc": 3458, + "pc": 3390, "op": "MSTORE", - "gas": 2076936, + "gas": 2076943, "gasCost": 3, "depth": 1, "stack": [ @@ -7979,14 +7933,14 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xe1d", + "0xdd2", "0x57", "0x80", "0xe0", @@ -7995,9 +7949,9 @@ ] }, { - "pc": 3459, + "pc": 3391, "op": "POP", - "gas": 2076933, + "gas": 2076940, "gasCost": 2, "depth": 1, "stack": [ @@ -8005,23 +7959,23 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xe1d", + "0xdd2", "0x57", "0x80", "0xe0" ] }, { - "pc": 3460, + "pc": 3392, "op": "POP", - "gas": 2076931, + "gas": 2076938, "gasCost": 2, "depth": 1, "stack": [ @@ -8029,22 +7983,22 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xe1d", + "0xdd2", "0x57", "0x80" ] }, { - "pc": 3461, + "pc": 3393, "op": "POP", - "gas": 2076929, + "gas": 2076936, "gasCost": 2, "depth": 1, "stack": [ @@ -8052,21 +8006,21 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xe1d", + "0xdd2", "0x57" ] }, { - "pc": 3462, + "pc": 3394, "op": "JUMP", - "gas": 2076927, + "gas": 2076934, "gasCost": 8, "depth": 1, "stack": [ @@ -8074,20 +8028,20 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xe1d" + "0xdd2" ] }, { - "pc": 3613, + "pc": 3538, "op": "JUMPDEST", - "gas": 2076919, + "gas": 2076926, "gasCost": 1, "depth": 1, "stack": [ @@ -8095,7 +8049,7 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", @@ -8105,9 +8059,9 @@ ] }, { - "pc": 3614, + "pc": 3539, "op": "DUP3", - "gas": 2076918, + "gas": 2076925, "gasCost": 3, "depth": 1, "stack": [ @@ -8115,7 +8069,7 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", @@ -8125,9 +8079,9 @@ ] }, { - "pc": 3615, + "pc": 3540, "op": "SWAP6", - "gas": 2076915, + "gas": 2076922, "gasCost": 3, "depth": 1, "stack": [ @@ -8135,7 +8089,7 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0x0", "0x80", "0x20", @@ -8146,9 +8100,9 @@ ] }, { - "pc": 3616, + "pc": 3541, "op": "POP", - "gas": 2076912, + "gas": 2076919, "gasCost": 2, "depth": 1, "stack": [ @@ -8156,7 +8110,7 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0xa0", "0x80", "0x20", @@ -8167,9 +8121,9 @@ ] }, { - "pc": 3617, + "pc": 3542, "op": "POP", - "gas": 2076910, + "gas": 2076917, "gasCost": 2, "depth": 1, "stack": [ @@ -8177,7 +8131,7 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0xa0", "0x80", "0x20", @@ -8187,9 +8141,9 @@ ] }, { - "pc": 3618, + "pc": 3543, "op": "POP", - "gas": 2076908, + "gas": 2076915, "gasCost": 2, "depth": 1, "stack": [ @@ -8197,7 +8151,7 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0xa0", "0x80", "0x20", @@ -8206,9 +8160,9 @@ ] }, { - "pc": 3619, + "pc": 3544, "op": "POP", - "gas": 2076906, + "gas": 2076913, "gasCost": 2, "depth": 1, "stack": [ @@ -8216,7 +8170,7 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0xa0", "0x80", "0x20", @@ -8224,9 +8178,9 @@ ] }, { - "pc": 3620, + "pc": 3545, "op": "POP", - "gas": 2076904, + "gas": 2076911, "gasCost": 2, "depth": 1, "stack": [ @@ -8234,16 +8188,16 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0xa0", "0x80", "0x20" ] }, { - "pc": 3621, + "pc": 3546, "op": "POP", - "gas": 2076902, + "gas": 2076909, "gasCost": 2, "depth": 1, "stack": [ @@ -8251,15 +8205,15 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0xa0", "0x80" ] }, { - "pc": 3622, + "pc": 3547, "op": "JUMPDEST", - "gas": 2076900, + "gas": 2076907, "gasCost": 1, "depth": 1, "stack": [ @@ -8267,14 +8221,14 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0xa0" ] }, { - "pc": 3623, + "pc": 3548, "op": "SWAP1", - "gas": 2076899, + "gas": 2076906, "gasCost": 3, "depth": 1, "stack": [ @@ -8282,14 +8236,14 @@ "0x17f", "0x3e8", "0x0", - "0x530", + "0x51f", "0xa0" ] }, { - "pc": 3624, + "pc": 3549, "op": "JUMP", - "gas": 2076896, + "gas": 2076903, "gasCost": 8, "depth": 1, "stack": [ @@ -8298,13 +8252,13 @@ "0x3e8", "0x0", "0xa0", - "0x530" + "0x51f" ] }, { - "pc": 1328, + "pc": 1311, "op": "JUMPDEST", - "gas": 2076888, + "gas": 2076895, "gasCost": 1, "depth": 1, "stack": [ @@ -8316,9 +8270,9 @@ ] }, { - "pc": 1329, + "pc": 1312, "op": "DUP1", - "gas": 2076887, + "gas": 2076894, "gasCost": 3, "depth": 1, "stack": [ @@ -8330,9 +8284,9 @@ ] }, { - "pc": 1330, + "pc": 1313, "op": "PUSH3", - "gas": 2076884, + "gas": 2076891, "gasCost": 3, "depth": 1, "stack": [ @@ -8345,9 +8299,9 @@ ] }, { - "pc": 1334, + "pc": 1317, "op": "JUMPI", - "gas": 2076881, + "gas": 2076888, "gasCost": 10, "depth": 1, "stack": [ @@ -8357,13 +8311,13 @@ "0x0", "0xa0", "0xa0", - "0x53d" + "0x52c" ] }, { - "pc": 1341, + "pc": 1324, "op": "JUMPDEST", - "gas": 2076871, + "gas": 2076878, "gasCost": 1, "depth": 1, "stack": [ @@ -8375,9 +8329,9 @@ ] }, { - "pc": 1342, + "pc": 1325, "op": "PUSH32", - "gas": 2076870, + "gas": 2076877, "gasCost": 3, "depth": 1, "stack": [ @@ -8389,9 +8343,9 @@ ] }, { - "pc": 1375, + "pc": 1358, "op": "DUP2", - "gas": 2076867, + "gas": 2076874, "gasCost": 3, "depth": 1, "stack": [ @@ -8404,9 +8358,9 @@ ] }, { - "pc": 1376, + "pc": 1359, "op": "PUSH1", - "gas": 2076864, + "gas": 2076871, "gasCost": 3, "depth": 1, "stack": [ @@ -8420,9 +8374,9 @@ ] }, { - "pc": 1378, + "pc": 1361, "op": "MLOAD", - "gas": 2076861, + "gas": 2076868, "gasCost": 3, "depth": 1, "stack": [ @@ -8437,9 +8391,9 @@ ] }, { - "pc": 1379, + "pc": 1362, "op": "PUSH3", - "gas": 2076858, + "gas": 2076865, "gasCost": 3, "depth": 1, "stack": [ @@ -8454,9 +8408,9 @@ ] }, { - "pc": 1383, + "pc": 1366, "op": "SWAP2", - "gas": 2076855, + "gas": 2076862, "gasCost": 3, "depth": 1, "stack": [ @@ -8468,13 +8422,13 @@ "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", "0xa0", "0xe0", - "0x56e" + "0x55d" ] }, { - "pc": 1384, + "pc": 1367, "op": "SWAP1", - "gas": 2076852, + "gas": 2076859, "gasCost": 3, "depth": 1, "stack": [ @@ -8484,15 +8438,15 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xe0", "0xa0" ] }, { - "pc": 1385, + "pc": 1368, "op": "PUSH3", - "gas": 2076849, + "gas": 2076856, "gasCost": 3, "depth": 1, "stack": [ @@ -8502,15 +8456,15 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0" ] }, { - "pc": 1389, + "pc": 1372, "op": "JUMP", - "gas": 2076846, + "gas": 2076853, "gasCost": 8, "depth": 1, "stack": [ @@ -8520,16 +8474,16 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", - "0xeab" + "0xe56" ] }, { - "pc": 3755, + "pc": 3670, "op": "JUMPDEST", - "gas": 2076838, + "gas": 2076845, "gasCost": 1, "depth": 1, "stack": [ @@ -8539,15 +8493,15 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0" ] }, { - "pc": 3756, + "pc": 3671, "op": "PUSH1", - "gas": 2076837, + "gas": 2076844, "gasCost": 3, "depth": 1, "stack": [ @@ -8557,15 +8511,15 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0" ] }, { - "pc": 3758, + "pc": 3673, "op": "PUSH1", - "gas": 2076834, + "gas": 2076841, "gasCost": 3, "depth": 1, "stack": [ @@ -8575,16 +8529,16 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x0" ] }, { - "pc": 3760, + "pc": 3675, "op": "DUP3", - "gas": 2076831, + "gas": 2076838, "gasCost": 3, "depth": 1, "stack": [ @@ -8594,7 +8548,7 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x0", @@ -8602,9 +8556,9 @@ ] }, { - "pc": 3761, + "pc": 3676, "op": "ADD", - "gas": 2076828, + "gas": 2076835, "gasCost": 3, "depth": 1, "stack": [ @@ -8614,7 +8568,7 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x0", @@ -8623,9 +8577,9 @@ ] }, { - "pc": 3762, + "pc": 3677, "op": "SWAP1", - "gas": 2076825, + "gas": 2076832, "gasCost": 3, "depth": 1, "stack": [ @@ -8635,7 +8589,7 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x0", @@ -8643,9 +8597,9 @@ ] }, { - "pc": 3763, + "pc": 3678, "op": "POP", - "gas": 2076822, + "gas": 2076829, "gasCost": 2, "depth": 1, "stack": [ @@ -8655,7 +8609,7 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", @@ -8663,9 +8617,9 @@ ] }, { - "pc": 3764, + "pc": 3679, "op": "DUP2", - "gas": 2076820, + "gas": 2076827, "gasCost": 3, "depth": 1, "stack": [ @@ -8675,16 +8629,16 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100" ] }, { - "pc": 3765, + "pc": 3680, "op": "DUP2", - "gas": 2076817, + "gas": 2076824, "gasCost": 3, "depth": 1, "stack": [ @@ -8694,7 +8648,7 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", @@ -8702,9 +8656,9 @@ ] }, { - "pc": 3766, + "pc": 3681, "op": "SUB", - "gas": 2076814, + "gas": 2076821, "gasCost": 3, "depth": 1, "stack": [ @@ -8714,7 +8668,7 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", @@ -8723,9 +8677,9 @@ ] }, { - "pc": 3767, + "pc": 3682, "op": "PUSH1", - "gas": 2076811, + "gas": 2076818, "gasCost": 3, "depth": 1, "stack": [ @@ -8735,7 +8689,7 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", @@ -8743,9 +8697,9 @@ ] }, { - "pc": 3769, + "pc": 3684, "op": "DUP4", - "gas": 2076808, + "gas": 2076815, "gasCost": 3, "depth": 1, "stack": [ @@ -8755,7 +8709,7 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", @@ -8764,9 +8718,9 @@ ] }, { - "pc": 3770, + "pc": 3685, "op": "ADD", - "gas": 2076805, + "gas": 2076812, "gasCost": 3, "depth": 1, "stack": [ @@ -8776,7 +8730,7 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", @@ -8786,9 +8740,9 @@ ] }, { - "pc": 3771, + "pc": 3686, "op": "MSTORE", - "gas": 2076802, + "gas": 2076809, "gasCost": 6, "depth": 1, "stack": [ @@ -8798,7 +8752,7 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", @@ -8807,9 +8761,9 @@ ] }, { - "pc": 3772, + "pc": 3687, "op": "PUSH3", - "gas": 2076796, + "gas": 2076803, "gasCost": 3, "depth": 1, "stack": [ @@ -8819,16 +8773,16 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100" ] }, { - "pc": 3776, + "pc": 3691, "op": "DUP2", - "gas": 2076793, + "gas": 2076800, "gasCost": 3, "depth": 1, "stack": [ @@ -8838,17 +8792,17 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7" + "0xe72" ] }, { - "pc": 3777, + "pc": 3692, "op": "DUP5", - "gas": 2076790, + "gas": 2076797, "gasCost": 3, "depth": 1, "stack": [ @@ -8858,18 +8812,18 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x100" ] }, { - "pc": 3778, + "pc": 3693, "op": "PUSH3", - "gas": 2076787, + "gas": 2076794, "gasCost": 3, "depth": 1, "stack": [ @@ -8879,19 +8833,19 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x100", "0xa0" ] }, { - "pc": 3782, + "pc": 3697, "op": "JUMP", - "gas": 2076784, + "gas": 2076791, "gasCost": 8, "depth": 1, "stack": [ @@ -8901,20 +8855,20 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x100", "0xa0", - "0xe6a" + "0xe15" ] }, { - "pc": 3690, + "pc": 3605, "op": "JUMPDEST", - "gas": 2076776, + "gas": 2076783, "gasCost": 1, "depth": 1, "stack": [ @@ -8924,19 +8878,19 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x100", "0xa0" ] }, { - "pc": 3691, + "pc": 3606, "op": "PUSH1", - "gas": 2076775, + "gas": 2076782, "gasCost": 3, "depth": 1, "stack": [ @@ -8946,19 +8900,19 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x100", "0xa0" ] }, { - "pc": 3693, + "pc": 3608, "op": "PUSH3", - "gas": 2076772, + "gas": 2076779, "gasCost": 3, "depth": 1, "stack": [ @@ -8968,20 +8922,20 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x100", "0xa0", "0x0" ] }, { - "pc": 3697, + "pc": 3612, "op": "DUP3", - "gas": 2076769, + "gas": 2076776, "gasCost": 3, "depth": 1, "stack": [ @@ -8991,21 +8945,21 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x100", "0xa0", "0x0", - "0xe77" + "0xe22" ] }, { - "pc": 3698, + "pc": 3613, "op": "PUSH3", - "gas": 2076766, + "gas": 2076773, "gasCost": 3, "depth": 1, "stack": [ @@ -9015,22 +8969,22 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x100", "0xa0", "0x0", - "0xe77", + "0xe22", "0xa0" ] }, { - "pc": 3702, + "pc": 3617, "op": "JUMP", - "gas": 2076763, + "gas": 2076770, "gasCost": 8, "depth": 1, "stack": [ @@ -9040,23 +8994,23 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x100", "0xa0", "0x0", - "0xe77", + "0xe22", "0xa0", - "0xe29" + "0xdde" ] }, { - "pc": 3625, + "pc": 3550, "op": "JUMPDEST", - "gas": 2076755, + "gas": 2076762, "gasCost": 1, "depth": 1, "stack": [ @@ -9066,22 +9020,22 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x100", "0xa0", "0x0", - "0xe77", + "0xe22", "0xa0" ] }, { - "pc": 3626, + "pc": 3551, "op": "PUSH1", - "gas": 2076754, + "gas": 2076761, "gasCost": 3, "depth": 1, "stack": [ @@ -9091,22 +9045,22 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x100", "0xa0", "0x0", - "0xe77", + "0xe22", "0xa0" ] }, { - "pc": 3628, + "pc": 3553, "op": "DUP2", - "gas": 2076751, + "gas": 2076758, "gasCost": 3, "depth": 1, "stack": [ @@ -9116,23 +9070,23 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x100", "0xa0", "0x0", - "0xe77", + "0xe22", "0xa0", "0x0" ] }, { - "pc": 3629, + "pc": 3554, "op": "MLOAD", - "gas": 2076748, + "gas": 2076755, "gasCost": 3, "depth": 1, "stack": [ @@ -9142,24 +9096,24 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x100", "0xa0", "0x0", - "0xe77", + "0xe22", "0xa0", "0x0", "0xa0" ] }, { - "pc": 3630, + "pc": 3555, "op": "SWAP1", - "gas": 2076745, + "gas": 2076752, "gasCost": 3, "depth": 1, "stack": [ @@ -9169,24 +9123,24 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x100", "0xa0", "0x0", - "0xe77", + "0xe22", "0xa0", "0x0", "0x17" ] }, { - "pc": 3631, + "pc": 3556, "op": "POP", - "gas": 2076742, + "gas": 2076749, "gasCost": 2, "depth": 1, "stack": [ @@ -9196,24 +9150,24 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x100", "0xa0", "0x0", - "0xe77", + "0xe22", "0xa0", "0x17", "0x0" ] }, { - "pc": 3632, + "pc": 3557, "op": "SWAP2", - "gas": 2076740, + "gas": 2076747, "gasCost": 3, "depth": 1, "stack": [ @@ -9223,23 +9177,23 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x100", "0xa0", "0x0", - "0xe77", + "0xe22", "0xa0", "0x17" ] }, { - "pc": 3633, + "pc": 3558, "op": "SWAP1", - "gas": 2076737, + "gas": 2076744, "gasCost": 3, "depth": 1, "stack": [ @@ -9249,23 +9203,23 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x100", "0xa0", "0x0", "0x17", "0xa0", - "0xe77" + "0xe22" ] }, { - "pc": 3634, + "pc": 3559, "op": "POP", - "gas": 2076734, + "gas": 2076741, "gasCost": 2, "depth": 1, "stack": [ @@ -9275,23 +9229,23 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x100", "0xa0", "0x0", "0x17", - "0xe77", + "0xe22", "0xa0" ] }, { - "pc": 3635, + "pc": 3560, "op": "JUMP", - "gas": 2076732, + "gas": 2076739, "gasCost": 8, "depth": 1, "stack": [ @@ -9301,22 +9255,22 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x100", "0xa0", "0x0", "0x17", - "0xe77" + "0xe22" ] }, { - "pc": 3703, + "pc": 3618, "op": "JUMPDEST", - "gas": 2076724, + "gas": 2076731, "gasCost": 1, "depth": 1, "stack": [ @@ -9326,11 +9280,11 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x100", "0xa0", "0x0", @@ -9338,9 +9292,9 @@ ] }, { - "pc": 3704, + "pc": 3619, "op": "PUSH3", - "gas": 2076723, + "gas": 2076730, "gasCost": 3, "depth": 1, "stack": [ @@ -9350,11 +9304,11 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x100", "0xa0", "0x0", @@ -9362,9 +9316,9 @@ ] }, { - "pc": 3708, + "pc": 3623, "op": "DUP2", - "gas": 2076720, + "gas": 2076727, "gasCost": 3, "depth": 1, "stack": [ @@ -9374,22 +9328,22 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x100", "0xa0", "0x0", "0x17", - "0xe83" + "0xe2e" ] }, { - "pc": 3709, + "pc": 3624, "op": "DUP6", - "gas": 2076717, + "gas": 2076724, "gasCost": 3, "depth": 1, "stack": [ @@ -9399,23 +9353,23 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x100", "0xa0", "0x0", "0x17", - "0xe83", + "0xe2e", "0x17" ] }, { - "pc": 3710, + "pc": 3625, "op": "PUSH3", - "gas": 2076714, + "gas": 2076721, "gasCost": 3, "depth": 1, "stack": [ @@ -9425,24 +9379,24 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x100", "0xa0", "0x0", "0x17", - "0xe83", + "0xe2e", "0x17", "0x100" ] }, { - "pc": 3714, + "pc": 3629, "op": "JUMP", - "gas": 2076711, + "gas": 2076718, "gasCost": 8, "depth": 1, "stack": [ @@ -9452,25 +9406,25 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x100", "0xa0", "0x0", "0x17", - "0xe83", + "0xe2e", "0x17", "0x100", - "0xaf5" + "0xad3" ] }, { - "pc": 2805, + "pc": 2771, "op": "JUMPDEST", - "gas": 2076703, + "gas": 2076710, "gasCost": 1, "depth": 1, "stack": [ @@ -9480,24 +9434,24 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x100", "0xa0", "0x0", "0x17", - "0xe83", + "0xe2e", "0x17", "0x100" ] }, { - "pc": 2806, + "pc": 2772, "op": "PUSH1", - "gas": 2076702, + "gas": 2076709, "gasCost": 3, "depth": 1, "stack": [ @@ -9507,24 +9461,24 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x100", "0xa0", "0x0", "0x17", - "0xe83", + "0xe2e", "0x17", "0x100" ] }, { - "pc": 2808, + "pc": 2774, "op": "DUP3", - "gas": 2076699, + "gas": 2076706, "gasCost": 3, "depth": 1, "stack": [ @@ -9534,25 +9488,25 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x100", "0xa0", "0x0", "0x17", - "0xe83", + "0xe2e", "0x17", "0x100", "0x0" ] }, { - "pc": 2809, + "pc": 2775, "op": "DUP3", - "gas": 2076696, + "gas": 2076703, "gasCost": 3, "depth": 1, "stack": [ @@ -9562,16 +9516,16 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x100", "0xa0", "0x0", "0x17", - "0xe83", + "0xe2e", "0x17", "0x100", "0x0", @@ -9579,9 +9533,9 @@ ] }, { - "pc": 2810, + "pc": 2776, "op": "MSTORE", - "gas": 2076693, + "gas": 2076700, "gasCost": 6, "depth": 1, "stack": [ @@ -9591,16 +9545,16 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x100", "0xa0", "0x0", "0x17", - "0xe83", + "0xe2e", "0x17", "0x100", "0x0", @@ -9609,9 +9563,9 @@ ] }, { - "pc": 2811, + "pc": 2777, "op": "PUSH1", - "gas": 2076687, + "gas": 2076694, "gasCost": 3, "depth": 1, "stack": [ @@ -9621,25 +9575,25 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x100", "0xa0", "0x0", "0x17", - "0xe83", + "0xe2e", "0x17", "0x100", "0x0" ] }, { - "pc": 2813, + "pc": 2779, "op": "DUP3", - "gas": 2076684, + "gas": 2076691, "gasCost": 3, "depth": 1, "stack": [ @@ -9649,16 +9603,16 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x100", "0xa0", "0x0", "0x17", - "0xe83", + "0xe2e", "0x17", "0x100", "0x0", @@ -9666,9 +9620,9 @@ ] }, { - "pc": 2814, + "pc": 2780, "op": "ADD", - "gas": 2076681, + "gas": 2076688, "gasCost": 3, "depth": 1, "stack": [ @@ -9678,16 +9632,16 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x100", "0xa0", "0x0", "0x17", - "0xe83", + "0xe2e", "0x17", "0x100", "0x0", @@ -9696,9 +9650,9 @@ ] }, { - "pc": 2815, + "pc": 2781, "op": "SWAP1", - "gas": 2076678, + "gas": 2076685, "gasCost": 3, "depth": 1, "stack": [ @@ -9708,16 +9662,16 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x100", "0xa0", "0x0", "0x17", - "0xe83", + "0xe2e", "0x17", "0x100", "0x0", @@ -9725,9 +9679,9 @@ ] }, { - "pc": 2816, + "pc": 2782, "op": "POP", - "gas": 2076675, + "gas": 2076682, "gasCost": 2, "depth": 1, "stack": [ @@ -9737,16 +9691,16 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x100", "0xa0", "0x0", "0x17", - "0xe83", + "0xe2e", "0x17", "0x100", "0x120", @@ -9754,9 +9708,9 @@ ] }, { - "pc": 2817, + "pc": 2783, "op": "SWAP3", - "gas": 2076673, + "gas": 2076680, "gasCost": 3, "depth": 1, "stack": [ @@ -9766,25 +9720,25 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x100", "0xa0", "0x0", "0x17", - "0xe83", + "0xe2e", "0x17", "0x100", "0x120" ] }, { - "pc": 2818, + "pc": 2784, "op": "SWAP2", - "gas": 2076670, + "gas": 2076677, "gasCost": 3, "depth": 1, "stack": [ @@ -9794,11 +9748,11 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x100", "0xa0", "0x0", @@ -9806,13 +9760,13 @@ "0x120", "0x17", "0x100", - "0xe83" + "0xe2e" ] }, { - "pc": 2819, + "pc": 2785, "op": "POP", - "gas": 2076667, + "gas": 2076674, "gasCost": 2, "depth": 1, "stack": [ @@ -9822,25 +9776,25 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x100", "0xa0", "0x0", "0x17", "0x120", - "0xe83", + "0xe2e", "0x100", "0x17" ] }, { - "pc": 2820, + "pc": 2786, "op": "POP", - "gas": 2076665, + "gas": 2076672, "gasCost": 2, "depth": 1, "stack": [ @@ -9850,24 +9804,24 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x100", "0xa0", "0x0", "0x17", "0x120", - "0xe83", + "0xe2e", "0x100" ] }, { - "pc": 2821, + "pc": 2787, "op": "JUMP", - "gas": 2076663, + "gas": 2076670, "gasCost": 8, "depth": 1, "stack": [ @@ -9877,23 +9831,23 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x100", "0xa0", "0x0", "0x17", "0x120", - "0xe83" + "0xe2e" ] }, { - "pc": 3715, + "pc": 3630, "op": "JUMPDEST", - "gas": 2076655, + "gas": 2076662, "gasCost": 1, "depth": 1, "stack": [ @@ -9903,11 +9857,11 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x100", "0xa0", "0x0", @@ -9916,9 +9870,9 @@ ] }, { - "pc": 3716, + "pc": 3631, "op": "SWAP4", - "gas": 2076654, + "gas": 2076661, "gasCost": 3, "depth": 1, "stack": [ @@ -9928,11 +9882,11 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x100", "0xa0", "0x0", @@ -9941,9 +9895,9 @@ ] }, { - "pc": 3717, + "pc": 3632, "op": "POP", - "gas": 2076651, + "gas": 2076658, "gasCost": 2, "depth": 1, "stack": [ @@ -9953,11 +9907,11 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x120", "0xa0", "0x0", @@ -9966,9 +9920,9 @@ ] }, { - "pc": 3718, + "pc": 3633, "op": "PUSH3", - "gas": 2076649, + "gas": 2076656, "gasCost": 3, "depth": 1, "stack": [ @@ -9978,11 +9932,11 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x120", "0xa0", "0x0", @@ -9990,9 +9944,9 @@ ] }, { - "pc": 3722, + "pc": 3637, "op": "DUP2", - "gas": 2076646, + "gas": 2076653, "gasCost": 3, "depth": 1, "stack": [ @@ -10002,22 +9956,22 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x120", "0xa0", "0x0", "0x17", - "0xe95" + "0xe40" ] }, { - "pc": 3723, + "pc": 3638, "op": "DUP6", - "gas": 2076643, + "gas": 2076650, "gasCost": 3, "depth": 1, "stack": [ @@ -10027,23 +9981,23 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x120", "0xa0", "0x0", "0x17", - "0xe95", + "0xe40", "0x17" ] }, { - "pc": 3724, + "pc": 3639, "op": "PUSH1", - "gas": 2076640, + "gas": 2076647, "gasCost": 3, "depth": 1, "stack": [ @@ -10053,24 +10007,24 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x120", "0xa0", "0x0", "0x17", - "0xe95", + "0xe40", "0x17", "0x120" ] }, { - "pc": 3726, + "pc": 3641, "op": "DUP7", - "gas": 2076637, + "gas": 2076644, "gasCost": 3, "depth": 1, "stack": [ @@ -10080,25 +10034,25 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x120", "0xa0", "0x0", "0x17", - "0xe95", + "0xe40", "0x17", "0x120", "0x20" ] }, { - "pc": 3727, + "pc": 3642, "op": "ADD", - "gas": 2076634, + "gas": 2076641, "gasCost": 3, "depth": 1, "stack": [ @@ -10108,16 +10062,16 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x120", "0xa0", "0x0", "0x17", - "0xe95", + "0xe40", "0x17", "0x120", "0x20", @@ -10125,9 +10079,9 @@ ] }, { - "pc": 3728, + "pc": 3643, "op": "PUSH3", - "gas": 2076631, + "gas": 2076638, "gasCost": 3, "depth": 1, "stack": [ @@ -10137,25 +10091,25 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x120", "0xa0", "0x0", "0x17", - "0xe95", + "0xe40", "0x17", "0x120", "0xc0" ] }, { - "pc": 3732, + "pc": 3647, "op": "JUMP", - "gas": 2076628, + "gas": 2076635, "gasCost": 8, "depth": 1, "stack": [ @@ -10165,26 +10119,26 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x120", "0xa0", "0x0", "0x17", - "0xe95", + "0xe40", "0x17", "0x120", "0xc0", - "0xe34" + "0xde9" ] }, { - "pc": 3636, + "pc": 3561, "op": "JUMPDEST", - "gas": 2076620, + "gas": 2076627, "gasCost": 1, "depth": 1, "stack": [ @@ -10194,25 +10148,25 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x120", "0xa0", "0x0", "0x17", - "0xe95", + "0xe40", "0x17", "0x120", "0xc0" ] }, { - "pc": 3637, + "pc": 3562, "op": "PUSH1", - "gas": 2076619, + "gas": 2076626, "gasCost": 3, "depth": 1, "stack": [ @@ -10222,25 +10176,25 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x120", "0xa0", "0x0", "0x17", - "0xe95", + "0xe40", "0x17", "0x120", "0xc0" ] }, { - "pc": 3639, + "pc": 3564, "op": "JUMPDEST", - "gas": 2076616, + "gas": 2076623, "gasCost": 1, "depth": 1, "stack": [ @@ -10250,16 +10204,16 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x120", "0xa0", "0x0", "0x17", - "0xe95", + "0xe40", "0x17", "0x120", "0xc0", @@ -10267,9 +10221,9 @@ ] }, { - "pc": 3640, + "pc": 3565, "op": "DUP4", - "gas": 2076615, + "gas": 2076622, "gasCost": 3, "depth": 1, "stack": [ @@ -10279,16 +10233,16 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x120", "0xa0", "0x0", "0x17", - "0xe95", + "0xe40", "0x17", "0x120", "0xc0", @@ -10296,9 +10250,9 @@ ] }, { - "pc": 3641, + "pc": 3566, "op": "DUP2", - "gas": 2076612, + "gas": 2076619, "gasCost": 3, "depth": 1, "stack": [ @@ -10308,16 +10262,16 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x120", "0xa0", "0x0", "0x17", - "0xe95", + "0xe40", "0x17", "0x120", "0xc0", @@ -10326,9 +10280,9 @@ ] }, { - "pc": 3642, + "pc": 3567, "op": "LT", - "gas": 2076609, + "gas": 2076616, "gasCost": 3, "depth": 1, "stack": [ @@ -10338,16 +10292,16 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x120", "0xa0", "0x0", "0x17", - "0xe95", + "0xe40", "0x17", "0x120", "0xc0", @@ -10357,9 +10311,9 @@ ] }, { - "pc": 3643, + "pc": 3568, "op": "ISZERO", - "gas": 2076606, + "gas": 2076613, "gasCost": 3, "depth": 1, "stack": [ @@ -10369,16 +10323,16 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x120", "0xa0", "0x0", "0x17", - "0xe95", + "0xe40", "0x17", "0x120", "0xc0", @@ -10387,9 +10341,9 @@ ] }, { - "pc": 3644, + "pc": 3569, "op": "PUSH3", - "gas": 2076603, + "gas": 2076610, "gasCost": 3, "depth": 1, "stack": [ @@ -10399,16 +10353,16 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x120", "0xa0", "0x0", "0x17", - "0xe95", + "0xe40", "0x17", "0x120", "0xc0", @@ -10417,9 +10371,9 @@ ] }, { - "pc": 3648, + "pc": 3573, "op": "JUMPI", - "gas": 2076600, + "gas": 2076607, "gasCost": 10, "depth": 1, "stack": [ @@ -10429,28 +10383,28 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x120", "0xa0", "0x0", "0x17", - "0xe95", + "0xe40", "0x17", "0x120", "0xc0", "0x0", "0x0", - "0xe54" + "0xe09" ] }, { - "pc": 3649, + "pc": 3574, "op": "DUP1", - "gas": 2076590, + "gas": 2076597, "gasCost": 3, "depth": 1, "stack": [ @@ -10460,16 +10414,16 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x120", "0xa0", "0x0", "0x17", - "0xe95", + "0xe40", "0x17", "0x120", "0xc0", @@ -10477,9 +10431,9 @@ ] }, { - "pc": 3650, + "pc": 3575, "op": "DUP3", - "gas": 2076587, + "gas": 2076594, "gasCost": 3, "depth": 1, "stack": [ @@ -10489,16 +10443,16 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x120", "0xa0", "0x0", "0x17", - "0xe95", + "0xe40", "0x17", "0x120", "0xc0", @@ -10507,9 +10461,9 @@ ] }, { - "pc": 3651, + "pc": 3576, "op": "ADD", - "gas": 2076584, + "gas": 2076591, "gasCost": 3, "depth": 1, "stack": [ @@ -10519,16 +10473,16 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x120", "0xa0", "0x0", "0x17", - "0xe95", + "0xe40", "0x17", "0x120", "0xc0", @@ -10538,9 +10492,9 @@ ] }, { - "pc": 3652, + "pc": 3577, "op": "MLOAD", - "gas": 2076581, + "gas": 2076588, "gasCost": 3, "depth": 1, "stack": [ @@ -10550,16 +10504,16 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x120", "0xa0", "0x0", "0x17", - "0xe95", + "0xe40", "0x17", "0x120", "0xc0", @@ -10568,9 +10522,9 @@ ] }, { - "pc": 3653, + "pc": 3578, "op": "DUP2", - "gas": 2076578, + "gas": 2076585, "gasCost": 3, "depth": 1, "stack": [ @@ -10580,16 +10534,16 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x120", "0xa0", "0x0", "0x17", - "0xe95", + "0xe40", "0x17", "0x120", "0xc0", @@ -10598,9 +10552,9 @@ ] }, { - "pc": 3654, + "pc": 3579, "op": "DUP5", - "gas": 2076575, + "gas": 2076582, "gasCost": 3, "depth": 1, "stack": [ @@ -10610,16 +10564,16 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x120", "0xa0", "0x0", "0x17", - "0xe95", + "0xe40", "0x17", "0x120", "0xc0", @@ -10629,9 +10583,9 @@ ] }, { - "pc": 3655, + "pc": 3580, "op": "ADD", - "gas": 2076572, + "gas": 2076579, "gasCost": 3, "depth": 1, "stack": [ @@ -10641,16 +10595,16 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x120", "0xa0", "0x0", "0x17", - "0xe95", + "0xe40", "0x17", "0x120", "0xc0", @@ -10661,9 +10615,9 @@ ] }, { - "pc": 3656, + "pc": 3581, "op": "MSTORE", - "gas": 2076569, + "gas": 2076576, "gasCost": 6, "depth": 1, "stack": [ @@ -10673,16 +10627,16 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x120", "0xa0", "0x0", "0x17", - "0xe95", + "0xe40", "0x17", "0x120", "0xc0", @@ -10692,9 +10646,9 @@ ] }, { - "pc": 3657, + "pc": 3582, "op": "PUSH1", - "gas": 2076563, + "gas": 2076570, "gasCost": 3, "depth": 1, "stack": [ @@ -10704,16 +10658,16 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x120", "0xa0", "0x0", "0x17", - "0xe95", + "0xe40", "0x17", "0x120", "0xc0", @@ -10721,9 +10675,9 @@ ] }, { - "pc": 3659, + "pc": 3584, "op": "DUP2", - "gas": 2076560, + "gas": 2076567, "gasCost": 3, "depth": 1, "stack": [ @@ -10733,16 +10687,16 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x120", "0xa0", "0x0", "0x17", - "0xe95", + "0xe40", "0x17", "0x120", "0xc0", @@ -10751,9 +10705,9 @@ ] }, { - "pc": 3660, + "pc": 3585, "op": "ADD", - "gas": 2076557, + "gas": 2076564, "gasCost": 3, "depth": 1, "stack": [ @@ -10763,16 +10717,16 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x120", "0xa0", "0x0", "0x17", - "0xe95", + "0xe40", "0x17", "0x120", "0xc0", @@ -10782,9 +10736,9 @@ ] }, { - "pc": 3661, + "pc": 3586, "op": "SWAP1", - "gas": 2076554, + "gas": 2076561, "gasCost": 3, "depth": 1, "stack": [ @@ -10794,16 +10748,16 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x120", "0xa0", "0x0", "0x17", - "0xe95", + "0xe40", "0x17", "0x120", "0xc0", @@ -10812,9 +10766,9 @@ ] }, { - "pc": 3662, + "pc": 3587, "op": "POP", - "gas": 2076551, + "gas": 2076558, "gasCost": 2, "depth": 1, "stack": [ @@ -10824,16 +10778,16 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x120", "0xa0", "0x0", "0x17", - "0xe95", + "0xe40", "0x17", "0x120", "0xc0", @@ -10842,9 +10796,9 @@ ] }, { - "pc": 3663, + "pc": 3588, "op": "PUSH3", - "gas": 2076549, + "gas": 2076556, "gasCost": 3, "depth": 1, "stack": [ @@ -10854,16 +10808,16 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x120", "0xa0", "0x0", "0x17", - "0xe95", + "0xe40", "0x17", "0x120", "0xc0", @@ -10871,9 +10825,9 @@ ] }, { - "pc": 3667, + "pc": 3592, "op": "JUMP", - "gas": 2076546, + "gas": 2076553, "gasCost": 8, "depth": 1, "stack": [ @@ -10883,27 +10837,27 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x120", "0xa0", "0x0", "0x17", - "0xe95", + "0xe40", "0x17", "0x120", "0xc0", "0x20", - "0xe37" + "0xdec" ] }, { - "pc": 3639, + "pc": 3564, "op": "JUMPDEST", - "gas": 2076538, + "gas": 2076545, "gasCost": 1, "depth": 1, "stack": [ @@ -10913,16 +10867,16 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x120", "0xa0", "0x0", "0x17", - "0xe95", + "0xe40", "0x17", "0x120", "0xc0", @@ -10930,9 +10884,9 @@ ] }, { - "pc": 3640, + "pc": 3565, "op": "DUP4", - "gas": 2076537, + "gas": 2076544, "gasCost": 3, "depth": 1, "stack": [ @@ -10942,16 +10896,16 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x120", "0xa0", "0x0", "0x17", - "0xe95", + "0xe40", "0x17", "0x120", "0xc0", @@ -10959,9 +10913,9 @@ ] }, { - "pc": 3641, + "pc": 3566, "op": "DUP2", - "gas": 2076534, + "gas": 2076541, "gasCost": 3, "depth": 1, "stack": [ @@ -10971,16 +10925,16 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x120", "0xa0", "0x0", "0x17", - "0xe95", + "0xe40", "0x17", "0x120", "0xc0", @@ -10989,9 +10943,9 @@ ] }, { - "pc": 3642, + "pc": 3567, "op": "LT", - "gas": 2076531, + "gas": 2076538, "gasCost": 3, "depth": 1, "stack": [ @@ -11001,16 +10955,16 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x120", "0xa0", "0x0", "0x17", - "0xe95", + "0xe40", "0x17", "0x120", "0xc0", @@ -11020,9 +10974,9 @@ ] }, { - "pc": 3643, + "pc": 3568, "op": "ISZERO", - "gas": 2076528, + "gas": 2076535, "gasCost": 3, "depth": 1, "stack": [ @@ -11032,16 +10986,16 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x120", "0xa0", "0x0", "0x17", - "0xe95", + "0xe40", "0x17", "0x120", "0xc0", @@ -11050,9 +11004,9 @@ ] }, { - "pc": 3644, + "pc": 3569, "op": "PUSH3", - "gas": 2076525, + "gas": 2076532, "gasCost": 3, "depth": 1, "stack": [ @@ -11062,16 +11016,16 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x120", "0xa0", "0x0", "0x17", - "0xe95", + "0xe40", "0x17", "0x120", "0xc0", @@ -11080,9 +11034,9 @@ ] }, { - "pc": 3648, + "pc": 3573, "op": "JUMPI", - "gas": 2076522, + "gas": 2076529, "gasCost": 10, "depth": 1, "stack": [ @@ -11092,28 +11046,28 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x120", "0xa0", "0x0", "0x17", - "0xe95", + "0xe40", "0x17", "0x120", "0xc0", "0x20", "0x1", - "0xe54" + "0xe09" ] }, { - "pc": 3668, + "pc": 3593, "op": "JUMPDEST", - "gas": 2076512, + "gas": 2076519, "gasCost": 1, "depth": 1, "stack": [ @@ -11123,16 +11077,16 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x120", "0xa0", "0x0", "0x17", - "0xe95", + "0xe40", "0x17", "0x120", "0xc0", @@ -11140,9 +11094,9 @@ ] }, { - "pc": 3669, - "op": "DUP4", - "gas": 2076511, + "pc": 3594, + "op": "PUSH1", + "gas": 2076518, "gasCost": 3, "depth": 1, "stack": [ @@ -11152,16 +11106,16 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x120", "0xa0", "0x0", "0x17", - "0xe95", + "0xe40", "0x17", "0x120", "0xc0", @@ -11169,9 +11123,9 @@ ] }, { - "pc": 3670, - "op": "DUP2", - "gas": 2076508, + "pc": 3596, + "op": "DUP5", + "gas": 2076515, "gasCost": 3, "depth": 1, "stack": [ @@ -11181,27 +11135,27 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x120", "0xa0", "0x0", "0x17", - "0xe95", + "0xe40", "0x17", "0x120", "0xc0", "0x20", - "0x17" + "0x0" ] }, { - "pc": 3671, - "op": "GT", - "gas": 2076505, + "pc": 3597, + "op": "DUP5", + "gas": 2076512, "gasCost": 3, "depth": 1, "stack": [ @@ -11211,28 +11165,28 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x120", "0xa0", "0x0", "0x17", - "0xe95", + "0xe40", "0x17", "0x120", "0xc0", "0x20", - "0x17", - "0x20" + "0x0", + "0x17" ] }, { - "pc": 3672, - "op": "ISZERO", - "gas": 2076502, + "pc": 3598, + "op": "ADD", + "gas": 2076509, "gasCost": 3, "depth": 1, "stack": [ @@ -11242,28 +11196,30 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x120", "0xa0", "0x0", "0x17", - "0xe95", + "0xe40", "0x17", "0x120", "0xc0", "0x20", - "0x1" + "0x0", + "0x17", + "0x120" ] }, { - "pc": 3673, - "op": "PUSH3", - "gas": 2076499, - "gasCost": 3, + "pc": 3599, + "op": "MSTORE", + "gas": 2076506, + "gasCost": 6, "depth": 1, "stack": [ "0x7f29c394", @@ -11272,240 +11228,28 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x120", "0xa0", "0x0", "0x17", - "0xe95", + "0xe40", "0x17", "0x120", "0xc0", "0x20", - "0x0" + "0x0", + "0x137" ] }, { - "pc": 3677, - "op": "JUMPI", - "gas": 2076496, - "gasCost": 10, - "depth": 1, - "stack": [ - "0x7f29c394", - "0x17f", - "0x3e8", - "0x0", - "0xa0", - "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", - "0xa0", - "0xe0", - "0x100", - "0xec7", - "0x120", - "0xa0", - "0x0", - "0x17", - "0xe95", - "0x17", - "0x120", - "0xc0", - "0x20", - "0x0", - "0xe64" - ] - }, - { - "pc": 3678, - "op": "PUSH1", - "gas": 2076486, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x7f29c394", - "0x17f", - "0x3e8", - "0x0", - "0xa0", - "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", - "0xa0", - "0xe0", - "0x100", - "0xec7", - "0x120", - "0xa0", - "0x0", - "0x17", - "0xe95", - "0x17", - "0x120", - "0xc0", - "0x20" - ] - }, - { - "pc": 3680, - "op": "DUP5", - "gas": 2076483, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x7f29c394", - "0x17f", - "0x3e8", - "0x0", - "0xa0", - "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", - "0xa0", - "0xe0", - "0x100", - "0xec7", - "0x120", - "0xa0", - "0x0", - "0x17", - "0xe95", - "0x17", - "0x120", - "0xc0", - "0x20", - "0x0" - ] - }, - { - "pc": 3681, - "op": "DUP5", - "gas": 2076480, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x7f29c394", - "0x17f", - "0x3e8", - "0x0", - "0xa0", - "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", - "0xa0", - "0xe0", - "0x100", - "0xec7", - "0x120", - "0xa0", - "0x0", - "0x17", - "0xe95", - "0x17", - "0x120", - "0xc0", - "0x20", - "0x0", - "0x17" - ] - }, - { - "pc": 3682, - "op": "ADD", - "gas": 2076477, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x7f29c394", - "0x17f", - "0x3e8", - "0x0", - "0xa0", - "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", - "0xa0", - "0xe0", - "0x100", - "0xec7", - "0x120", - "0xa0", - "0x0", - "0x17", - "0xe95", - "0x17", - "0x120", - "0xc0", - "0x20", - "0x0", - "0x17", - "0x120" - ] - }, - { - "pc": 3683, - "op": "MSTORE", - "gas": 2076474, - "gasCost": 6, - "depth": 1, - "stack": [ - "0x7f29c394", - "0x17f", - "0x3e8", - "0x0", - "0xa0", - "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", - "0xa0", - "0xe0", - "0x100", - "0xec7", - "0x120", - "0xa0", - "0x0", - "0x17", - "0xe95", - "0x17", - "0x120", - "0xc0", - "0x20", - "0x0", - "0x137" - ] - }, - { - "pc": 3684, - "op": "JUMPDEST", - "gas": 2076468, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x7f29c394", - "0x17f", - "0x3e8", - "0x0", - "0xa0", - "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", - "0xa0", - "0xe0", - "0x100", - "0xec7", - "0x120", - "0xa0", - "0x0", - "0x17", - "0xe95", - "0x17", - "0x120", - "0xc0", - "0x20" - ] - }, - { - "pc": 3685, + "pc": 3600, "op": "POP", - "gas": 2076467, + "gas": 2076500, "gasCost": 2, "depth": 1, "stack": [ @@ -11515,16 +11259,16 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x120", "0xa0", "0x0", "0x17", - "0xe95", + "0xe40", "0x17", "0x120", "0xc0", @@ -11532,9 +11276,9 @@ ] }, { - "pc": 3686, + "pc": 3601, "op": "POP", - "gas": 2076465, + "gas": 2076498, "gasCost": 2, "depth": 1, "stack": [ @@ -11544,25 +11288,25 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x120", "0xa0", "0x0", "0x17", - "0xe95", + "0xe40", "0x17", "0x120", "0xc0" ] }, { - "pc": 3687, + "pc": 3602, "op": "POP", - "gas": 2076463, + "gas": 2076496, "gasCost": 2, "depth": 1, "stack": [ @@ -11572,24 +11316,24 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x120", "0xa0", "0x0", "0x17", - "0xe95", + "0xe40", "0x17", "0x120" ] }, { - "pc": 3688, + "pc": 3603, "op": "POP", - "gas": 2076461, + "gas": 2076494, "gasCost": 2, "depth": 1, "stack": [ @@ -11599,23 +11343,23 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x120", "0xa0", "0x0", "0x17", - "0xe95", + "0xe40", "0x17" ] }, { - "pc": 3689, + "pc": 3604, "op": "JUMP", - "gas": 2076459, + "gas": 2076492, "gasCost": 8, "depth": 1, "stack": [ @@ -11625,22 +11369,22 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x120", "0xa0", "0x0", "0x17", - "0xe95" + "0xe40" ] }, { - "pc": 3733, + "pc": 3648, "op": "JUMPDEST", - "gas": 2076451, + "gas": 2076484, "gasCost": 1, "depth": 1, "stack": [ @@ -11650,11 +11394,11 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x120", "0xa0", "0x0", @@ -11662,9 +11406,9 @@ ] }, { - "pc": 3734, + "pc": 3649, "op": "PUSH3", - "gas": 2076450, + "gas": 2076483, "gasCost": 3, "depth": 1, "stack": [ @@ -11674,11 +11418,11 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x120", "0xa0", "0x0", @@ -11686,9 +11430,9 @@ ] }, { - "pc": 3738, + "pc": 3653, "op": "DUP2", - "gas": 2076447, + "gas": 2076480, "gasCost": 3, "depth": 1, "stack": [ @@ -11698,22 +11442,22 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x120", "0xa0", "0x0", "0x17", - "0xea0" + "0xe4b" ] }, { - "pc": 3739, + "pc": 3654, "op": "PUSH3", - "gas": 2076444, + "gas": 2076477, "gasCost": 3, "depth": 1, "stack": [ @@ -11723,23 +11467,23 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x120", "0xa0", "0x0", "0x17", - "0xea0", + "0xe4b", "0x17" ] }, { - "pc": 3743, + "pc": 3658, "op": "JUMP", - "gas": 2076441, + "gas": 2076474, "gasCost": 8, "depth": 1, "stack": [ @@ -11749,24 +11493,24 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x120", "0xa0", "0x0", "0x17", - "0xea0", + "0xe4b", "0x17", - "0xd11" + "0xccd" ] }, { - "pc": 3345, + "pc": 3277, "op": "JUMPDEST", - "gas": 2076433, + "gas": 2076466, "gasCost": 1, "depth": 1, "stack": [ @@ -11776,23 +11520,23 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x120", "0xa0", "0x0", "0x17", - "0xea0", + "0xe4b", "0x17" ] }, { - "pc": 3346, + "pc": 3278, "op": "PUSH1", - "gas": 2076432, + "gas": 2076465, "gasCost": 3, "depth": 1, "stack": [ @@ -11802,23 +11546,23 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x120", "0xa0", "0x0", "0x17", - "0xea0", + "0xe4b", "0x17" ] }, { - "pc": 3348, + "pc": 3280, "op": "PUSH1", - "gas": 2076429, + "gas": 2076462, "gasCost": 3, "depth": 1, "stack": [ @@ -11828,24 +11572,24 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x120", "0xa0", "0x0", "0x17", - "0xea0", + "0xe4b", "0x17", "0x0" ] }, { - "pc": 3350, + "pc": 3282, "op": "NOT", - "gas": 2076426, + "gas": 2076459, "gasCost": 3, "depth": 1, "stack": [ @@ -11855,25 +11599,25 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x120", "0xa0", "0x0", "0x17", - "0xea0", + "0xe4b", "0x17", "0x0", "0x1f" ] }, { - "pc": 3351, + "pc": 3283, "op": "PUSH1", - "gas": 2076423, + "gas": 2076456, "gasCost": 3, "depth": 1, "stack": [ @@ -11883,25 +11627,25 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x120", "0xa0", "0x0", "0x17", - "0xea0", + "0xe4b", "0x17", "0x0", "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" ] }, { - "pc": 3353, + "pc": 3285, "op": "DUP4", - "gas": 2076420, + "gas": 2076453, "gasCost": 3, "depth": 1, "stack": [ @@ -11911,16 +11655,16 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x120", "0xa0", "0x0", "0x17", - "0xea0", + "0xe4b", "0x17", "0x0", "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", @@ -11928,9 +11672,9 @@ ] }, { - "pc": 3354, + "pc": 3286, "op": "ADD", - "gas": 2076417, + "gas": 2076450, "gasCost": 3, "depth": 1, "stack": [ @@ -11940,16 +11684,16 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x120", "0xa0", "0x0", "0x17", - "0xea0", + "0xe4b", "0x17", "0x0", "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", @@ -11958,9 +11702,9 @@ ] }, { - "pc": 3355, + "pc": 3287, "op": "AND", - "gas": 2076414, + "gas": 2076447, "gasCost": 3, "depth": 1, "stack": [ @@ -11970,16 +11714,16 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x120", "0xa0", "0x0", "0x17", - "0xea0", + "0xe4b", "0x17", "0x0", "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", @@ -11987,9 +11731,9 @@ ] }, { - "pc": 3356, + "pc": 3288, "op": "SWAP1", - "gas": 2076411, + "gas": 2076444, "gasCost": 3, "depth": 1, "stack": [ @@ -11999,25 +11743,25 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x120", "0xa0", "0x0", "0x17", - "0xea0", + "0xe4b", "0x17", "0x0", "0x20" ] }, { - "pc": 3357, + "pc": 3289, "op": "POP", - "gas": 2076408, + "gas": 2076441, "gasCost": 2, "depth": 1, "stack": [ @@ -12027,25 +11771,25 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x120", "0xa0", "0x0", "0x17", - "0xea0", + "0xe4b", "0x17", "0x20", "0x0" ] }, { - "pc": 3358, + "pc": 3290, "op": "SWAP2", - "gas": 2076406, + "gas": 2076439, "gasCost": 3, "depth": 1, "stack": [ @@ -12055,24 +11799,24 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x120", "0xa0", "0x0", "0x17", - "0xea0", + "0xe4b", "0x17", "0x20" ] }, { - "pc": 3359, + "pc": 3291, "op": "SWAP1", - "gas": 2076403, + "gas": 2076436, "gasCost": 3, "depth": 1, "stack": [ @@ -12082,24 +11826,24 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x120", "0xa0", "0x0", "0x17", "0x20", "0x17", - "0xea0" + "0xe4b" ] }, { - "pc": 3360, + "pc": 3292, "op": "POP", - "gas": 2076400, + "gas": 2076433, "gasCost": 2, "depth": 1, "stack": [ @@ -12109,24 +11853,24 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x120", "0xa0", "0x0", "0x17", "0x20", - "0xea0", + "0xe4b", "0x17" ] }, { - "pc": 3361, + "pc": 3293, "op": "JUMP", - "gas": 2076398, + "gas": 2076431, "gasCost": 8, "depth": 1, "stack": [ @@ -12136,23 +11880,23 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x120", "0xa0", "0x0", "0x17", "0x20", - "0xea0" + "0xe4b" ] }, { - "pc": 3744, + "pc": 3659, "op": "JUMPDEST", - "gas": 2076390, + "gas": 2076423, "gasCost": 1, "depth": 1, "stack": [ @@ -12162,11 +11906,11 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x120", "0xa0", "0x0", @@ -12175,9 +11919,9 @@ ] }, { - "pc": 3745, + "pc": 3660, "op": "DUP5", - "gas": 2076389, + "gas": 2076422, "gasCost": 3, "depth": 1, "stack": [ @@ -12187,11 +11931,11 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x120", "0xa0", "0x0", @@ -12200,9 +11944,9 @@ ] }, { - "pc": 3746, + "pc": 3661, "op": "ADD", - "gas": 2076386, + "gas": 2076419, "gasCost": 3, "depth": 1, "stack": [ @@ -12212,11 +11956,11 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x120", "0xa0", "0x0", @@ -12226,9 +11970,9 @@ ] }, { - "pc": 3747, + "pc": 3662, "op": "SWAP2", - "gas": 2076383, + "gas": 2076416, "gasCost": 3, "depth": 1, "stack": [ @@ -12238,11 +11982,11 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x120", "0xa0", "0x0", @@ -12251,9 +11995,9 @@ ] }, { - "pc": 3748, + "pc": 3663, "op": "POP", - "gas": 2076380, + "gas": 2076413, "gasCost": 2, "depth": 1, "stack": [ @@ -12263,11 +12007,11 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x120", "0xa0", "0x140", @@ -12276,9 +12020,9 @@ ] }, { - "pc": 3749, + "pc": 3664, "op": "POP", - "gas": 2076378, + "gas": 2076411, "gasCost": 2, "depth": 1, "stack": [ @@ -12288,11 +12032,11 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x120", "0xa0", "0x140", @@ -12300,9 +12044,9 @@ ] }, { - "pc": 3750, + "pc": 3665, "op": "SWAP3", - "gas": 2076376, + "gas": 2076409, "gasCost": 3, "depth": 1, "stack": [ @@ -12312,20 +12056,20 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", - "0xec7", + "0xe72", "0x120", "0xa0", "0x140" ] }, { - "pc": 3751, + "pc": 3666, "op": "SWAP2", - "gas": 2076373, + "gas": 2076406, "gasCost": 3, "depth": 1, "stack": [ @@ -12335,20 +12079,20 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", "0x140", "0x120", "0xa0", - "0xec7" + "0xe72" ] }, { - "pc": 3752, + "pc": 3667, "op": "POP", - "gas": 2076370, + "gas": 2076403, "gasCost": 2, "depth": 1, "stack": [ @@ -12358,20 +12102,20 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", "0x140", - "0xec7", + "0xe72", "0xa0", "0x120" ] }, { - "pc": 3753, + "pc": 3668, "op": "POP", - "gas": 2076368, + "gas": 2076401, "gasCost": 2, "depth": 1, "stack": [ @@ -12381,19 +12125,19 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", "0x140", - "0xec7", + "0xe72", "0xa0" ] }, { - "pc": 3754, + "pc": 3669, "op": "JUMP", - "gas": 2076366, + "gas": 2076399, "gasCost": 8, "depth": 1, "stack": [ @@ -12403,18 +12147,18 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", "0x140", - "0xec7" + "0xe72" ] }, { - "pc": 3783, + "pc": 3698, "op": "JUMPDEST", - "gas": 2076358, + "gas": 2076391, "gasCost": 1, "depth": 1, "stack": [ @@ -12424,7 +12168,7 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", @@ -12432,9 +12176,9 @@ ] }, { - "pc": 3784, + "pc": 3699, "op": "SWAP1", - "gas": 2076357, + "gas": 2076390, "gasCost": 3, "depth": 1, "stack": [ @@ -12444,7 +12188,7 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x100", @@ -12452,9 +12196,9 @@ ] }, { - "pc": 3785, + "pc": 3700, "op": "POP", - "gas": 2076354, + "gas": 2076387, "gasCost": 2, "depth": 1, "stack": [ @@ -12464,7 +12208,7 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x140", @@ -12472,9 +12216,9 @@ ] }, { - "pc": 3786, + "pc": 3701, "op": "SWAP3", - "gas": 2076352, + "gas": 2076385, "gasCost": 3, "depth": 1, "stack": [ @@ -12484,16 +12228,16 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x56e", + "0x55d", "0xa0", "0xe0", "0x140" ] }, { - "pc": 3787, + "pc": 3702, "op": "SWAP2", - "gas": 2076349, + "gas": 2076382, "gasCost": 3, "depth": 1, "stack": [ @@ -12506,13 +12250,13 @@ "0x140", "0xa0", "0xe0", - "0x56e" + "0x55d" ] }, { - "pc": 3788, + "pc": 3703, "op": "POP", - "gas": 2076346, + "gas": 2076379, "gasCost": 2, "depth": 1, "stack": [ @@ -12523,15 +12267,15 @@ "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", "0x140", - "0x56e", + "0x55d", "0xe0", "0xa0" ] }, { - "pc": 3789, + "pc": 3704, "op": "POP", - "gas": 2076344, + "gas": 2076377, "gasCost": 2, "depth": 1, "stack": [ @@ -12542,14 +12286,14 @@ "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", "0x140", - "0x56e", + "0x55d", "0xe0" ] }, { - "pc": 3790, + "pc": 3705, "op": "JUMP", - "gas": 2076342, + "gas": 2076375, "gasCost": 8, "depth": 1, "stack": [ @@ -12560,13 +12304,13 @@ "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", "0x140", - "0x56e" + "0x55d" ] }, { - "pc": 1390, + "pc": 1373, "op": "JUMPDEST", - "gas": 2076334, + "gas": 2076367, "gasCost": 1, "depth": 1, "stack": [ @@ -12580,9 +12324,9 @@ ] }, { - "pc": 1391, + "pc": 1374, "op": "PUSH1", - "gas": 2076333, + "gas": 2076366, "gasCost": 3, "depth": 1, "stack": [ @@ -12596,9 +12340,9 @@ ] }, { - "pc": 1393, + "pc": 1376, "op": "MLOAD", - "gas": 2076330, + "gas": 2076363, "gasCost": 3, "depth": 1, "stack": [ @@ -12613,9 +12357,9 @@ ] }, { - "pc": 1394, + "pc": 1377, "op": "DUP1", - "gas": 2076327, + "gas": 2076360, "gasCost": 3, "depth": 1, "stack": [ @@ -12630,9 +12374,9 @@ ] }, { - "pc": 1395, + "pc": 1378, "op": "SWAP2", - "gas": 2076324, + "gas": 2076357, "gasCost": 3, "depth": 1, "stack": [ @@ -12648,9 +12392,9 @@ ] }, { - "pc": 1396, + "pc": 1379, "op": "SUB", - "gas": 2076321, + "gas": 2076354, "gasCost": 3, "depth": 1, "stack": [ @@ -12666,9 +12410,9 @@ ] }, { - "pc": 1397, + "pc": 1380, "op": "SWAP1", - "gas": 2076318, + "gas": 2076351, "gasCost": 3, "depth": 1, "stack": [ @@ -12683,9 +12427,9 @@ ] }, { - "pc": 1398, + "pc": 1381, "op": "LOG1", - "gas": 2076315, + "gas": 2076348, "gasCost": 1518, "depth": 1, "stack": [ @@ -12700,9 +12444,9 @@ ] }, { - "pc": 1399, + "pc": 1382, "op": "POP", - "gas": 2074797, + "gas": 2074830, "gasCost": 2, "depth": 1, "stack": [ @@ -12714,9 +12458,9 @@ ] }, { - "pc": 1400, + "pc": 1383, "op": "PUSH3", - "gas": 2074795, + "gas": 2074828, "gasCost": 3, "depth": 1, "stack": [ @@ -12727,9 +12471,9 @@ ] }, { - "pc": 1404, + "pc": 1387, "op": "JUMP", - "gas": 2074792, + "gas": 2074825, "gasCost": 8, "depth": 1, "stack": [ @@ -12737,13 +12481,13 @@ "0x17f", "0x3e8", "0x0", - "0x5ec" + "0x5db" ] }, { - "pc": 1516, + "pc": 1499, "op": "JUMPDEST", - "gas": 2074784, + "gas": 2074817, "gasCost": 1, "depth": 1, "stack": [ @@ -12754,9 +12498,9 @@ ] }, { - "pc": 1517, + "pc": 1500, "op": "PUSH3", - "gas": 2074783, + "gas": 2074816, "gasCost": 3, "depth": 1, "stack": [ @@ -12767,9 +12511,9 @@ ] }, { - "pc": 1521, + "pc": 1504, "op": "JUMP", - "gas": 2074780, + "gas": 2074813, "gasCost": 8, "depth": 1, "stack": [ @@ -12777,13 +12521,13 @@ "0x17f", "0x3e8", "0x0", - "0x5f3" + "0x5e2" ] }, { - "pc": 1523, + "pc": 1506, "op": "JUMPDEST", - "gas": 2074772, + "gas": 2074805, "gasCost": 1, "depth": 1, "stack": [ @@ -12794,9 +12538,9 @@ ] }, { - "pc": 1524, + "pc": 1507, "op": "ADDRESS", - "gas": 2074771, + "gas": 2074804, "gasCost": 2, "depth": 1, "stack": [ @@ -12807,9 +12551,9 @@ ] }, { - "pc": 1525, + "pc": 1508, "op": "PUSH20", - "gas": 2074769, + "gas": 2074802, "gasCost": 3, "depth": 1, "stack": [ @@ -12821,9 +12565,9 @@ ] }, { - "pc": 1546, + "pc": 1529, "op": "AND", - "gas": 2074766, + "gas": 2074799, "gasCost": 3, "depth": 1, "stack": [ @@ -12836,9 +12580,9 @@ ] }, { - "pc": 1547, + "pc": 1530, "op": "PUSH4", - "gas": 2074763, + "gas": 2074796, "gasCost": 3, "depth": 1, "stack": [ @@ -12850,9 +12594,9 @@ ] }, { - "pc": 1552, + "pc": 1535, "op": "PUSH1", - "gas": 2074760, + "gas": 2074793, "gasCost": 3, "depth": 1, "stack": [ @@ -12865,9 +12609,9 @@ ] }, { - "pc": 1554, + "pc": 1537, "op": "MLOAD", - "gas": 2074757, + "gas": 2074790, "gasCost": 3, "depth": 1, "stack": [ @@ -12881,9 +12625,9 @@ ] }, { - "pc": 1555, + "pc": 1538, "op": "DUP2", - "gas": 2074754, + "gas": 2074787, "gasCost": 3, "depth": 1, "stack": [ @@ -12897,9 +12641,9 @@ ] }, { - "pc": 1556, + "pc": 1539, "op": "PUSH4", - "gas": 2074751, + "gas": 2074784, "gasCost": 3, "depth": 1, "stack": [ @@ -12914,9 +12658,9 @@ ] }, { - "pc": 1561, + "pc": 1544, "op": "AND", - "gas": 2074748, + "gas": 2074781, "gasCost": 3, "depth": 1, "stack": [ @@ -12932,9 +12676,9 @@ ] }, { - "pc": 1562, + "pc": 1545, "op": "PUSH1", - "gas": 2074745, + "gas": 2074778, "gasCost": 3, "depth": 1, "stack": [ @@ -12949,9 +12693,9 @@ ] }, { - "pc": 1564, + "pc": 1547, "op": "SHL", - "gas": 2074742, + "gas": 2074775, "gasCost": 3, "depth": 1, "stack": [ @@ -12967,9 +12711,9 @@ ] }, { - "pc": 1565, + "pc": 1548, "op": "DUP2", - "gas": 2074739, + "gas": 2074772, "gasCost": 3, "depth": 1, "stack": [ @@ -12984,9 +12728,9 @@ ] }, { - "pc": 1566, + "pc": 1549, "op": "MSTORE", - "gas": 2074736, + "gas": 2074769, "gasCost": 3, "depth": 1, "stack": [ @@ -13002,9 +12746,9 @@ ] }, { - "pc": 1567, + "pc": 1550, "op": "PUSH1", - "gas": 2074733, + "gas": 2074766, "gasCost": 3, "depth": 1, "stack": [ @@ -13018,9 +12762,9 @@ ] }, { - "pc": 1569, + "pc": 1552, "op": "ADD", - "gas": 2074730, + "gas": 2074763, "gasCost": 3, "depth": 1, "stack": [ @@ -13035,9 +12779,9 @@ ] }, { - "pc": 1570, + "pc": 1553, "op": "PUSH1", - "gas": 2074727, + "gas": 2074760, "gasCost": 3, "depth": 1, "stack": [ @@ -13051,9 +12795,9 @@ ] }, { - "pc": 1572, + "pc": 1555, "op": "PUSH1", - "gas": 2074724, + "gas": 2074757, "gasCost": 3, "depth": 1, "stack": [ @@ -13068,9 +12812,9 @@ ] }, { - "pc": 1574, + "pc": 1557, "op": "MLOAD", - "gas": 2074721, + "gas": 2074754, "gasCost": 3, "depth": 1, "stack": [ @@ -13086,9 +12830,9 @@ ] }, { - "pc": 1575, + "pc": 1558, "op": "DUP1", - "gas": 2074718, + "gas": 2074751, "gasCost": 3, "depth": 1, "stack": [ @@ -13104,9 +12848,9 @@ ] }, { - "pc": 1576, + "pc": 1559, "op": "DUP4", - "gas": 2074715, + "gas": 2074748, "gasCost": 3, "depth": 1, "stack": [ @@ -13123,9 +12867,9 @@ ] }, { - "pc": 1577, + "pc": 1560, "op": "SUB", - "gas": 2074712, + "gas": 2074745, "gasCost": 3, "depth": 1, "stack": [ @@ -13143,9 +12887,9 @@ ] }, { - "pc": 1578, + "pc": 1561, "op": "DUP2", - "gas": 2074709, + "gas": 2074742, "gasCost": 3, "depth": 1, "stack": [ @@ -13162,9 +12906,9 @@ ] }, { - "pc": 1579, + "pc": 1562, "op": "DUP7", - "gas": 2074706, + "gas": 2074739, "gasCost": 3, "depth": 1, "stack": [ @@ -13182,9 +12926,9 @@ ] }, { - "pc": 1580, + "pc": 1563, "op": "DUP1", - "gas": 2074703, + "gas": 2074736, "gasCost": 3, "depth": 1, "stack": [ @@ -13203,9 +12947,9 @@ ] }, { - "pc": 1581, + "pc": 1564, "op": "EXTCODESIZE", - "gas": 2074700, + "gas": 2074733, "gasCost": 100, "depth": 1, "stack": [ @@ -13225,9 +12969,9 @@ ] }, { - "pc": 1582, + "pc": 1565, "op": "ISZERO", - "gas": 2074600, + "gas": 2074633, "gasCost": 3, "depth": 1, "stack": [ @@ -13243,13 +12987,13 @@ "0x4", "0xe0", "Tracer.address", - "0x1bde" + "0x1b45" ] }, { - "pc": 1583, + "pc": 1566, "op": "DUP1", - "gas": 2074597, + "gas": 2074630, "gasCost": 3, "depth": 1, "stack": [ @@ -13269,9 +13013,9 @@ ] }, { - "pc": 1584, + "pc": 1567, "op": "ISZERO", - "gas": 2074594, + "gas": 2074627, "gasCost": 3, "depth": 1, "stack": [ @@ -13292,9 +13036,9 @@ ] }, { - "pc": 1585, + "pc": 1568, "op": "PUSH3", - "gas": 2074591, + "gas": 2074624, "gasCost": 3, "depth": 1, "stack": [ @@ -13315,9 +13059,9 @@ ] }, { - "pc": 1589, + "pc": 1572, "op": "JUMPI", - "gas": 2074588, + "gas": 2074621, "gasCost": 10, "depth": 1, "stack": [ @@ -13335,13 +13079,13 @@ "Tracer.address", "0x0", "0x1", - "0x63a" + "0x629" ] }, { - "pc": 1594, + "pc": 1577, "op": "JUMPDEST", - "gas": 2074578, + "gas": 2074611, "gasCost": 1, "depth": 1, "stack": [ @@ -13361,9 +13105,9 @@ ] }, { - "pc": 1595, + "pc": 1578, "op": "POP", - "gas": 2074577, + "gas": 2074610, "gasCost": 2, "depth": 1, "stack": [ @@ -13383,9 +13127,9 @@ ] }, { - "pc": 1596, + "pc": 1579, "op": "GAS", - "gas": 2074575, + "gas": 2074608, "gasCost": 2, "depth": 1, "stack": [ @@ -13404,10 +13148,10 @@ ] }, { - "pc": 1597, + "pc": 1580, "op": "STATICCALL", - "gas": 2074573, - "gasCost": 2042160, + "gas": 2074606, + "gasCost": 2042192, "depth": 1, "stack": [ "0x7f29c394", @@ -13422,13 +13166,13 @@ "0x4", "0xe0", "Tracer.address", - "0x1fa7cd" + "0x1fa7ee" ] }, { "pc": 0, "op": "PUSH1", - "gas": 2042060, + "gas": 2042092, "gasCost": 3, "depth": 2, "stack": [] @@ -13436,7 +13180,7 @@ { "pc": 2, "op": "PUSH1", - "gas": 2042057, + "gas": 2042089, "gasCost": 3, "depth": 2, "stack": [ @@ -13446,7 +13190,7 @@ { "pc": 4, "op": "MSTORE", - "gas": 2042054, + "gas": 2042086, "gasCost": 12, "depth": 2, "stack": [ @@ -13457,7 +13201,7 @@ { "pc": 5, "op": "CALLVALUE", - "gas": 2042042, + "gas": 2042074, "gasCost": 2, "depth": 2, "stack": [] @@ -13465,7 +13209,7 @@ { "pc": 6, "op": "DUP1", - "gas": 2042040, + "gas": 2042072, "gasCost": 3, "depth": 2, "stack": [ @@ -13475,7 +13219,7 @@ { "pc": 7, "op": "ISZERO", - "gas": 2042037, + "gas": 2042069, "gasCost": 3, "depth": 2, "stack": [ @@ -13486,7 +13230,7 @@ { "pc": 8, "op": "PUSH3", - "gas": 2042034, + "gas": 2042066, "gasCost": 3, "depth": 2, "stack": [ @@ -13497,7 +13241,7 @@ { "pc": 12, "op": "JUMPI", - "gas": 2042031, + "gas": 2042063, "gasCost": 10, "depth": 2, "stack": [ @@ -13509,7 +13253,7 @@ { "pc": 17, "op": "JUMPDEST", - "gas": 2042021, + "gas": 2042053, "gasCost": 1, "depth": 2, "stack": [ @@ -13519,7 +13263,7 @@ { "pc": 18, "op": "POP", - "gas": 2042020, + "gas": 2042052, "gasCost": 2, "depth": 2, "stack": [ @@ -13529,7 +13273,7 @@ { "pc": 19, "op": "PUSH1", - "gas": 2042018, + "gas": 2042050, "gasCost": 3, "depth": 2, "stack": [] @@ -13537,7 +13281,7 @@ { "pc": 21, "op": "CALLDATASIZE", - "gas": 2042015, + "gas": 2042047, "gasCost": 2, "depth": 2, "stack": [ @@ -13547,7 +13291,7 @@ { "pc": 22, "op": "LT", - "gas": 2042013, + "gas": 2042045, "gasCost": 3, "depth": 2, "stack": [ @@ -13558,7 +13302,7 @@ { "pc": 23, "op": "PUSH3", - "gas": 2042010, + "gas": 2042042, "gasCost": 3, "depth": 2, "stack": [ @@ -13568,7 +13312,7 @@ { "pc": 27, "op": "JUMPI", - "gas": 2042007, + "gas": 2042039, "gasCost": 10, "depth": 2, "stack": [ @@ -13579,7 +13323,7 @@ { "pc": 28, "op": "PUSH1", - "gas": 2041997, + "gas": 2042029, "gasCost": 3, "depth": 2, "stack": [] @@ -13587,7 +13331,7 @@ { "pc": 30, "op": "CALLDATALOAD", - "gas": 2041994, + "gas": 2042026, "gasCost": 3, "depth": 2, "stack": [ @@ -13597,7 +13341,7 @@ { "pc": 31, "op": "PUSH1", - "gas": 2041991, + "gas": 2042023, "gasCost": 3, "depth": 2, "stack": [ @@ -13607,7 +13351,7 @@ { "pc": 33, "op": "SHR", - "gas": 2041988, + "gas": 2042020, "gasCost": 3, "depth": 2, "stack": [ @@ -13618,7 +13362,7 @@ { "pc": 34, "op": "DUP1", - "gas": 2041985, + "gas": 2042017, "gasCost": 3, "depth": 2, "stack": [ @@ -13628,7 +13372,7 @@ { "pc": 35, "op": "PUSH4", - "gas": 2041982, + "gas": 2042014, "gasCost": 3, "depth": 2, "stack": [ @@ -13639,7 +13383,7 @@ { "pc": 40, "op": "GT", - "gas": 2041979, + "gas": 2042011, "gasCost": 3, "depth": 2, "stack": [ @@ -13651,7 +13395,7 @@ { "pc": 41, "op": "PUSH3", - "gas": 2041976, + "gas": 2042008, "gasCost": 3, "depth": 2, "stack": [ @@ -13662,7 +13406,7 @@ { "pc": 45, "op": "JUMPI", - "gas": 2041973, + "gas": 2042005, "gasCost": 10, "depth": 2, "stack": [ @@ -13674,7 +13418,7 @@ { "pc": 46, "op": "DUP1", - "gas": 2041963, + "gas": 2041995, "gasCost": 3, "depth": 2, "stack": [ @@ -13684,7 +13428,7 @@ { "pc": 47, "op": "PUSH4", - "gas": 2041960, + "gas": 2041992, "gasCost": 3, "depth": 2, "stack": [ @@ -13695,7 +13439,7 @@ { "pc": 52, "op": "EQ", - "gas": 2041957, + "gas": 2041989, "gasCost": 3, "depth": 2, "stack": [ @@ -13707,7 +13451,7 @@ { "pc": 53, "op": "PUSH3", - "gas": 2041954, + "gas": 2041986, "gasCost": 3, "depth": 2, "stack": [ @@ -13718,7 +13462,7 @@ { "pc": 57, "op": "JUMPI", - "gas": 2041951, + "gas": 2041983, "gasCost": 10, "depth": 2, "stack": [ @@ -13730,7 +13474,7 @@ { "pc": 407, "op": "JUMPDEST", - "gas": 2041941, + "gas": 2041973, "gasCost": 1, "depth": 2, "stack": [ @@ -13740,7 +13484,7 @@ { "pc": 408, "op": "PUSH3", - "gas": 2041940, + "gas": 2041972, "gasCost": 3, "depth": 2, "stack": [ @@ -13750,7 +13494,7 @@ { "pc": 412, "op": "PUSH3", - "gas": 2041937, + "gas": 2041969, "gasCost": 3, "depth": 2, "stack": [ @@ -13761,19 +13505,19 @@ { "pc": 416, "op": "JUMP", - "gas": 2041934, + "gas": 2041966, "gasCost": 8, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x783" + "0x771" ] }, { - "pc": 1923, + "pc": 1905, "op": "JUMPDEST", - "gas": 2041926, + "gas": 2041958, "gasCost": 1, "depth": 2, "stack": [ @@ -13782,9 +13526,9 @@ ] }, { - "pc": 1924, + "pc": 1906, "op": "PUSH1", - "gas": 2041925, + "gas": 2041957, "gasCost": 3, "depth": 2, "stack": [ @@ -13793,9 +13537,9 @@ ] }, { - "pc": 1926, + "pc": 1908, "op": "DUP1", - "gas": 2041922, + "gas": 2041954, "gasCost": 3, "depth": 2, "stack": [ @@ -13805,9 +13549,9 @@ ] }, { - "pc": 1927, + "pc": 1909, "op": "PUSH1", - "gas": 2041919, + "gas": 2041951, "gasCost": 3, "depth": 2, "stack": [ @@ -13818,9 +13562,9 @@ ] }, { - "pc": 1929, + "pc": 1911, "op": "MLOAD", - "gas": 2041916, + "gas": 2041948, "gasCost": 3, "depth": 2, "stack": [ @@ -13832,9 +13576,9 @@ ] }, { - "pc": 1930, + "pc": 1912, "op": "PUSH32", - "gas": 2041913, + "gas": 2041945, "gasCost": 3, "depth": 2, "stack": [ @@ -13846,9 +13590,9 @@ ] }, { - "pc": 1963, + "pc": 1945, "op": "DUP2", - "gas": 2041910, + "gas": 2041942, "gasCost": 3, "depth": 2, "stack": [ @@ -13861,9 +13605,9 @@ ] }, { - "pc": 1964, + "pc": 1946, "op": "MSTORE", - "gas": 2041907, + "gas": 2041939, "gasCost": 9, "depth": 2, "stack": [ @@ -13877,9 +13621,9 @@ ] }, { - "pc": 1965, + "pc": 1947, "op": "PUSH1", - "gas": 2041898, + "gas": 2041930, "gasCost": 3, "depth": 2, "stack": [ @@ -13891,9 +13635,9 @@ ] }, { - "pc": 1967, + "pc": 1949, "op": "ADD", - "gas": 2041895, + "gas": 2041927, "gasCost": 3, "depth": 2, "stack": [ @@ -13906,9 +13650,9 @@ ] }, { - "pc": 1968, + "pc": 1950, "op": "PUSH3", - "gas": 2041892, + "gas": 2041924, "gasCost": 3, "depth": 2, "stack": [ @@ -13920,9 +13664,9 @@ ] }, { - "pc": 1972, + "pc": 1954, "op": "SWAP3", - "gas": 2041889, + "gas": 2041921, "gasCost": 3, "depth": 2, "stack": [ @@ -13931,110 +13675,110 @@ "0x1", "0x1", "0x84", - "0x7bc" + "0x7aa" ] }, { - "pc": 1973, + "pc": 1955, "op": "SWAP2", - "gas": 2041886, + "gas": 2041918, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x84", "0x1" ] }, { - "pc": 1974, + "pc": 1956, "op": "SWAP1", - "gas": 2041883, + "gas": 2041915, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x84", "0x1" ] }, { - "pc": 1975, + "pc": 1957, "op": "PUSH3", - "gas": 2041880, + "gas": 2041912, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84" ] }, { - "pc": 1979, + "pc": 1961, "op": "JUMP", - "gas": 2041877, + "gas": 2041909, "gasCost": 8, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", - "0x1026" + "0xfd1" ] }, { - "pc": 4134, + "pc": 4049, "op": "JUMPDEST", - "gas": 2041869, + "gas": 2041901, "gasCost": 1, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84" ] }, { - "pc": 4135, + "pc": 4050, "op": "PUSH1", - "gas": 2041868, + "gas": 2041900, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84" ] }, { - "pc": 4137, + "pc": 4052, "op": "PUSH1", - "gas": 2041865, + "gas": 2041897, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", @@ -14042,15 +13786,15 @@ ] }, { - "pc": 4139, + "pc": 4054, "op": "DUP3", - "gas": 2041862, + "gas": 2041894, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", @@ -14059,15 +13803,15 @@ ] }, { - "pc": 4140, + "pc": 4055, "op": "ADD", - "gas": 2041859, + "gas": 2041891, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", @@ -14077,15 +13821,15 @@ ] }, { - "pc": 4141, + "pc": 4056, "op": "SWAP1", - "gas": 2041856, + "gas": 2041888, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", @@ -14094,15 +13838,15 @@ ] }, { - "pc": 4142, + "pc": 4057, "op": "POP", - "gas": 2041853, + "gas": 2041885, "gasCost": 2, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", @@ -14111,15 +13855,15 @@ ] }, { - "pc": 4143, + "pc": 4058, "op": "PUSH3", - "gas": 2041851, + "gas": 2041883, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", @@ -14127,1465 +13871,1465 @@ ] }, { - "pc": 4147, + "pc": 4062, "op": "PUSH1", - "gas": 2041848, + "gas": 2041880, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x103d" + "0xfe8" ] }, { - "pc": 4149, + "pc": 4064, "op": "DUP4", - "gas": 2041845, + "gas": 2041877, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x103d", + "0xfe8", "0x0" ] }, { - "pc": 4150, + "pc": 4065, "op": "ADD", - "gas": 2041842, + "gas": 2041874, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x103d", + "0xfe8", "0x0", "0x84" ] }, { - "pc": 4151, + "pc": 4066, "op": "DUP6", - "gas": 2041839, + "gas": 2041871, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x103d", + "0xfe8", "0x84" ] }, { - "pc": 4152, + "pc": 4067, "op": "PUSH3", - "gas": 2041836, + "gas": 2041868, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x103d", + "0xfe8", "0x84", "0x1" ] }, { - "pc": 4156, + "pc": 4071, "op": "JUMP", - "gas": 2041833, + "gas": 2041865, "gasCost": 8, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x103d", + "0xfe8", "0x84", "0x1", - "0x1015" + "0xfc0" ] }, { - "pc": 4117, + "pc": 4032, "op": "JUMPDEST", - "gas": 2041825, + "gas": 2041857, "gasCost": 1, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x103d", + "0xfe8", "0x84", "0x1" ] }, { - "pc": 4118, + "pc": 4033, "op": "PUSH3", - "gas": 2041824, + "gas": 2041856, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x103d", + "0xfe8", "0x84", "0x1" ] }, { - "pc": 4122, + "pc": 4037, "op": "DUP2", - "gas": 2041821, + "gas": 2041853, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x103d", + "0xfe8", "0x84", "0x1", - "0x1020" + "0xfcb" ] }, { - "pc": 4123, + "pc": 4038, "op": "PUSH3", - "gas": 2041818, + "gas": 2041850, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x103d", + "0xfe8", "0x84", "0x1", - "0x1020", + "0xfcb", "0x1" ] }, { - "pc": 4127, + "pc": 4042, "op": "JUMP", - "gas": 2041815, + "gas": 2041847, "gasCost": 8, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x103d", + "0xfe8", "0x84", "0x1", - "0x1020", + "0xfcb", "0x1", - "0xfed" + "0xf98" ] }, { - "pc": 4077, + "pc": 3992, "op": "JUMPDEST", - "gas": 2041807, + "gas": 2041839, "gasCost": 1, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x103d", + "0xfe8", "0x84", "0x1", - "0x1020", + "0xfcb", "0x1" ] }, { - "pc": 4078, + "pc": 3993, "op": "PUSH1", - "gas": 2041806, + "gas": 2041838, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x103d", + "0xfe8", "0x84", "0x1", - "0x1020", + "0xfcb", "0x1" ] }, { - "pc": 4080, + "pc": 3995, "op": "PUSH3", - "gas": 2041803, + "gas": 2041835, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x103d", + "0xfe8", "0x84", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0" ] }, { - "pc": 4084, + "pc": 3999, "op": "PUSH3", - "gas": 2041800, + "gas": 2041832, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x103d", + "0xfe8", "0x84", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", - "0x100e" + "0xfb9" ] }, { - "pc": 4088, + "pc": 4003, "op": "PUSH3", - "gas": 2041797, + "gas": 2041829, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x103d", + "0xfe8", "0x84", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", - "0x100e", - "0x1008" + "0xfb9", + "0xfb3" ] }, { - "pc": 4092, + "pc": 4007, "op": "DUP5", - "gas": 2041794, + "gas": 2041826, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x103d", + "0xfe8", "0x84", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", - "0x100e", - "0x1008", - "0x1002" + "0xfb9", + "0xfb3", + "0xfad" ] }, { - "pc": 4093, + "pc": 4008, "op": "PUSH3", - "gas": 2041791, + "gas": 2041823, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x103d", + "0xfe8", "0x84", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", - "0x100e", - "0x1008", - "0x1002", + "0xfb9", + "0xfb3", + "0xfad", "0x1" ] }, { - "pc": 4097, + "pc": 4012, "op": "JUMP", - "gas": 2041788, + "gas": 2041820, "gasCost": 8, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x103d", + "0xfe8", "0x84", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", - "0x100e", - "0x1008", - "0x1002", + "0xfb9", + "0xfb3", + "0xfad", "0x1", - "0xfd9" + "0xf84" ] }, { - "pc": 4057, + "pc": 3972, "op": "JUMPDEST", - "gas": 2041780, + "gas": 2041812, "gasCost": 1, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x103d", + "0xfe8", "0x84", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", - "0x100e", - "0x1008", - "0x1002", + "0xfb9", + "0xfb3", + "0xfad", "0x1" ] }, { - "pc": 4058, + "pc": 3973, "op": "PUSH1", - "gas": 2041779, + "gas": 2041811, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x103d", + "0xfe8", "0x84", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", - "0x100e", - "0x1008", - "0x1002", + "0xfb9", + "0xfb3", + "0xfad", "0x1" ] }, { - "pc": 4060, + "pc": 3975, "op": "DUP2", - "gas": 2041776, + "gas": 2041808, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x103d", + "0xfe8", "0x84", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", - "0x100e", - "0x1008", - "0x1002", + "0xfb9", + "0xfb3", + "0xfad", "0x1", "0x0" ] }, { - "pc": 4061, + "pc": 3976, "op": "SWAP1", - "gas": 2041773, + "gas": 2041805, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x103d", + "0xfe8", "0x84", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", - "0x100e", - "0x1008", - "0x1002", + "0xfb9", + "0xfb3", + "0xfad", "0x1", "0x0", "0x1" ] }, { - "pc": 4062, + "pc": 3977, "op": "POP", - "gas": 2041770, + "gas": 2041802, "gasCost": 2, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x103d", + "0xfe8", "0x84", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", - "0x100e", - "0x1008", - "0x1002", + "0xfb9", + "0xfb3", + "0xfad", "0x1", "0x1", "0x0" ] }, { - "pc": 4063, + "pc": 3978, "op": "SWAP2", - "gas": 2041768, + "gas": 2041800, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x103d", + "0xfe8", "0x84", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", - "0x100e", - "0x1008", - "0x1002", + "0xfb9", + "0xfb3", + "0xfad", "0x1", "0x1" ] }, { - "pc": 4064, + "pc": 3979, "op": "SWAP1", - "gas": 2041765, + "gas": 2041797, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x103d", + "0xfe8", "0x84", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", - "0x100e", - "0x1008", + "0xfb9", + "0xfb3", "0x1", "0x1", - "0x1002" + "0xfad" ] }, { - "pc": 4065, + "pc": 3980, "op": "POP", - "gas": 2041762, + "gas": 2041794, "gasCost": 2, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x103d", + "0xfe8", "0x84", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", - "0x100e", - "0x1008", + "0xfb9", + "0xfb3", "0x1", - "0x1002", + "0xfad", "0x1" ] }, { - "pc": 4066, + "pc": 3981, "op": "JUMP", - "gas": 2041760, + "gas": 2041792, "gasCost": 8, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x103d", + "0xfe8", "0x84", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", - "0x100e", - "0x1008", + "0xfb9", + "0xfb3", "0x1", - "0x1002" + "0xfad" ] }, { - "pc": 4098, + "pc": 4013, "op": "JUMPDEST", - "gas": 2041752, + "gas": 2041784, "gasCost": 1, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x103d", + "0xfe8", "0x84", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", - "0x100e", - "0x1008", + "0xfb9", + "0xfb3", "0x1" ] }, { - "pc": 4099, + "pc": 4014, "op": "PUSH3", - "gas": 2041751, + "gas": 2041783, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x103d", + "0xfe8", "0x84", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", - "0x100e", - "0x1008", + "0xfb9", + "0xfb3", "0x1" ] }, { - "pc": 4103, + "pc": 4018, "op": "JUMP", - "gas": 2041748, + "gas": 2041780, "gasCost": 8, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x103d", + "0xfe8", "0x84", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", - "0x100e", - "0x1008", + "0xfb9", + "0xfb3", "0x1", - "0xfe3" + "0xf8e" ] }, { - "pc": 4067, + "pc": 3982, "op": "JUMPDEST", - "gas": 2041740, + "gas": 2041772, "gasCost": 1, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x103d", + "0xfe8", "0x84", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", - "0x100e", - "0x1008", + "0xfb9", + "0xfb3", "0x1" ] }, { - "pc": 4068, + "pc": 3983, "op": "PUSH1", - "gas": 2041739, + "gas": 2041771, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x103d", + "0xfe8", "0x84", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", - "0x100e", - "0x1008", + "0xfb9", + "0xfb3", "0x1" ] }, { - "pc": 4070, + "pc": 3985, "op": "DUP2", - "gas": 2041736, + "gas": 2041768, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x103d", + "0xfe8", "0x84", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", - "0x100e", - "0x1008", + "0xfb9", + "0xfb3", "0x1", "0x0" ] }, { - "pc": 4071, + "pc": 3986, "op": "SWAP1", - "gas": 2041733, + "gas": 2041765, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x103d", + "0xfe8", "0x84", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", - "0x100e", - "0x1008", + "0xfb9", + "0xfb3", "0x1", "0x0", "0x1" ] }, { - "pc": 4072, + "pc": 3987, "op": "POP", - "gas": 2041730, + "gas": 2041762, "gasCost": 2, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x103d", + "0xfe8", "0x84", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", - "0x100e", - "0x1008", + "0xfb9", + "0xfb3", "0x1", "0x1", "0x0" ] }, { - "pc": 4073, + "pc": 3988, "op": "SWAP2", - "gas": 2041728, + "gas": 2041760, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x103d", + "0xfe8", "0x84", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", - "0x100e", - "0x1008", + "0xfb9", + "0xfb3", "0x1", "0x1" ] }, { - "pc": 4074, + "pc": 3989, "op": "SWAP1", - "gas": 2041725, + "gas": 2041757, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x103d", + "0xfe8", "0x84", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", - "0x100e", + "0xfb9", "0x1", "0x1", - "0x1008" + "0xfb3" ] }, { - "pc": 4075, + "pc": 3990, "op": "POP", - "gas": 2041722, + "gas": 2041754, "gasCost": 2, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x103d", + "0xfe8", "0x84", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", - "0x100e", + "0xfb9", "0x1", - "0x1008", + "0xfb3", "0x1" ] }, { - "pc": 4076, + "pc": 3991, "op": "JUMP", - "gas": 2041720, + "gas": 2041752, "gasCost": 8, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x103d", + "0xfe8", "0x84", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", - "0x100e", + "0xfb9", "0x1", - "0x1008" + "0xfb3" ] }, { - "pc": 4104, + "pc": 4019, "op": "JUMPDEST", - "gas": 2041712, + "gas": 2041744, "gasCost": 1, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x103d", + "0xfe8", "0x84", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", - "0x100e", + "0xfb9", "0x1" ] }, { - "pc": 4105, + "pc": 4020, "op": "PUSH3", - "gas": 2041711, + "gas": 2041743, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x103d", + "0xfe8", "0x84", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", - "0x100e", + "0xfb9", "0x1" ] }, { - "pc": 4109, + "pc": 4024, "op": "JUMP", - "gas": 2041708, + "gas": 2041740, "gasCost": 8, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x103d", + "0xfe8", "0x84", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", - "0x100e", + "0xfb9", "0x1", - "0x97c" + "0x95a" ] }, { - "pc": 2428, + "pc": 2394, "op": "JUMPDEST", - "gas": 2041700, + "gas": 2041732, "gasCost": 1, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x103d", + "0xfe8", "0x84", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", - "0x100e", + "0xfb9", "0x1" ] }, { - "pc": 2429, + "pc": 2395, "op": "PUSH1", - "gas": 2041699, + "gas": 2041731, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x103d", + "0xfe8", "0x84", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", - "0x100e", + "0xfb9", "0x1" ] }, { - "pc": 2431, + "pc": 2397, "op": "DUP2", - "gas": 2041696, + "gas": 2041728, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x103d", + "0xfe8", "0x84", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", - "0x100e", + "0xfb9", "0x1", "0x0" ] }, { - "pc": 2432, + "pc": 2398, "op": "SWAP1", - "gas": 2041693, + "gas": 2041725, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x103d", + "0xfe8", "0x84", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", - "0x100e", + "0xfb9", "0x1", "0x0", "0x1" ] }, { - "pc": 2433, + "pc": 2399, "op": "POP", - "gas": 2041690, + "gas": 2041722, "gasCost": 2, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x103d", + "0xfe8", "0x84", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", - "0x100e", + "0xfb9", "0x1", "0x1", "0x0" ] }, { - "pc": 2434, + "pc": 2400, "op": "SWAP2", - "gas": 2041688, + "gas": 2041720, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x103d", + "0xfe8", "0x84", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", - "0x100e", + "0xfb9", "0x1", "0x1" ] }, { - "pc": 2435, + "pc": 2401, "op": "SWAP1", - "gas": 2041685, + "gas": 2041717, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x103d", + "0xfe8", "0x84", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", "0x1", "0x1", - "0x100e" + "0xfb9" ] }, { - "pc": 2436, + "pc": 2402, "op": "POP", - "gas": 2041682, + "gas": 2041714, "gasCost": 2, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x103d", + "0xfe8", "0x84", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", "0x1", - "0x100e", + "0xfb9", "0x1" ] }, { - "pc": 2437, + "pc": 2403, "op": "JUMP", - "gas": 2041680, + "gas": 2041712, "gasCost": 8, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x103d", + "0xfe8", "0x84", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", "0x1", - "0x100e" + "0xfb9" ] }, { - "pc": 4110, + "pc": 4025, "op": "JUMPDEST", - "gas": 2041672, + "gas": 2041704, "gasCost": 1, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x103d", + "0xfe8", "0x84", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", "0x1" ] }, { - "pc": 4111, + "pc": 4026, "op": "SWAP1", - "gas": 2041671, + "gas": 2041703, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x103d", + "0xfe8", "0x84", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", "0x1" ] }, { - "pc": 4112, + "pc": 4027, "op": "POP", - "gas": 2041668, + "gas": 2041700, "gasCost": 2, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x103d", + "0xfe8", "0x84", "0x1", - "0x1020", + "0xfcb", "0x1", "0x1", "0x0" ] }, { - "pc": 4113, + "pc": 4028, "op": "SWAP2", - "gas": 2041666, + "gas": 2041698, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x103d", + "0xfe8", "0x84", "0x1", - "0x1020", + "0xfcb", "0x1", "0x1" ] }, { - "pc": 4114, + "pc": 4029, "op": "SWAP1", - "gas": 2041663, + "gas": 2041695, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x103d", + "0xfe8", "0x84", "0x1", "0x1", "0x1", - "0x1020" + "0xfcb" ] }, { - "pc": 4115, + "pc": 4030, "op": "POP", - "gas": 2041660, + "gas": 2041692, "gasCost": 2, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x103d", + "0xfe8", "0x84", "0x1", "0x1", - "0x1020", + "0xfcb", "0x1" ] }, { - "pc": 4116, + "pc": 4031, "op": "JUMP", - "gas": 2041658, + "gas": 2041690, "gasCost": 8, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x103d", + "0xfe8", "0x84", "0x1", "0x1", - "0x1020" + "0xfcb" ] }, { - "pc": 4128, + "pc": 4043, "op": "JUMPDEST", - "gas": 2041650, + "gas": 2041682, "gasCost": 1, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x103d", + "0xfe8", "0x84", "0x1", "0x1" ] }, { - "pc": 4129, + "pc": 4044, "op": "DUP3", - "gas": 2041649, + "gas": 2041681, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x103d", + "0xfe8", "0x84", "0x1", "0x1" ] }, { - "pc": 4130, + "pc": 4045, "op": "MSTORE", - "gas": 2041646, + "gas": 2041678, "gasCost": 6, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x103d", + "0xfe8", "0x84", "0x1", "0x1", @@ -15593,69 +15337,69 @@ ] }, { - "pc": 4131, + "pc": 4046, "op": "POP", - "gas": 2041640, + "gas": 2041672, "gasCost": 2, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x103d", + "0xfe8", "0x84", "0x1" ] }, { - "pc": 4132, + "pc": 4047, "op": "POP", - "gas": 2041638, + "gas": 2041670, "gasCost": 2, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x103d", + "0xfe8", "0x84" ] }, { - "pc": 4133, + "pc": 4048, "op": "JUMP", - "gas": 2041636, + "gas": 2041668, "gasCost": 8, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x103d" + "0xfe8" ] }, { - "pc": 4157, + "pc": 4072, "op": "JUMPDEST", - "gas": 2041628, + "gas": 2041660, "gasCost": 1, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", @@ -15663,15 +15407,15 @@ ] }, { - "pc": 4158, + "pc": 4073, "op": "PUSH3", - "gas": 2041627, + "gas": 2041659, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", @@ -15679,1465 +15423,1465 @@ ] }, { - "pc": 4162, + "pc": 4077, "op": "PUSH1", - "gas": 2041624, + "gas": 2041656, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x104c" + "0xff7" ] }, { - "pc": 4164, + "pc": 4079, "op": "DUP4", - "gas": 2041621, + "gas": 2041653, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x104c", + "0xff7", "0x20" ] }, { - "pc": 4165, + "pc": 4080, "op": "ADD", - "gas": 2041618, + "gas": 2041650, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x104c", + "0xff7", "0x20", "0x84" ] }, { - "pc": 4166, + "pc": 4081, "op": "DUP5", - "gas": 2041615, + "gas": 2041647, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x104c", + "0xff7", "0xa4" ] }, { - "pc": 4167, + "pc": 4082, "op": "PUSH3", - "gas": 2041612, + "gas": 2041644, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x104c", + "0xff7", "0xa4", "0x1" ] }, { - "pc": 4171, + "pc": 4086, "op": "JUMP", - "gas": 2041609, + "gas": 2041641, "gasCost": 8, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x104c", + "0xff7", "0xa4", "0x1", - "0x1015" + "0xfc0" ] }, { - "pc": 4117, + "pc": 4032, "op": "JUMPDEST", - "gas": 2041601, + "gas": 2041633, "gasCost": 1, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x104c", + "0xff7", "0xa4", "0x1" ] }, { - "pc": 4118, + "pc": 4033, "op": "PUSH3", - "gas": 2041600, + "gas": 2041632, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x104c", + "0xff7", "0xa4", "0x1" ] }, { - "pc": 4122, + "pc": 4037, "op": "DUP2", - "gas": 2041597, + "gas": 2041629, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x104c", + "0xff7", "0xa4", "0x1", - "0x1020" + "0xfcb" ] }, { - "pc": 4123, + "pc": 4038, "op": "PUSH3", - "gas": 2041594, + "gas": 2041626, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x104c", + "0xff7", "0xa4", "0x1", - "0x1020", + "0xfcb", "0x1" ] }, { - "pc": 4127, + "pc": 4042, "op": "JUMP", - "gas": 2041591, + "gas": 2041623, "gasCost": 8, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x104c", + "0xff7", "0xa4", "0x1", - "0x1020", + "0xfcb", "0x1", - "0xfed" + "0xf98" ] }, { - "pc": 4077, + "pc": 3992, "op": "JUMPDEST", - "gas": 2041583, + "gas": 2041615, "gasCost": 1, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x104c", + "0xff7", "0xa4", "0x1", - "0x1020", + "0xfcb", "0x1" ] }, { - "pc": 4078, + "pc": 3993, "op": "PUSH1", - "gas": 2041582, + "gas": 2041614, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x104c", + "0xff7", "0xa4", "0x1", - "0x1020", + "0xfcb", "0x1" ] }, { - "pc": 4080, + "pc": 3995, "op": "PUSH3", - "gas": 2041579, + "gas": 2041611, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x104c", + "0xff7", "0xa4", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0" ] }, { - "pc": 4084, + "pc": 3999, "op": "PUSH3", - "gas": 2041576, + "gas": 2041608, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x104c", + "0xff7", "0xa4", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", - "0x100e" + "0xfb9" ] }, { - "pc": 4088, + "pc": 4003, "op": "PUSH3", - "gas": 2041573, + "gas": 2041605, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x104c", + "0xff7", "0xa4", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", - "0x100e", - "0x1008" + "0xfb9", + "0xfb3" ] }, { - "pc": 4092, + "pc": 4007, "op": "DUP5", - "gas": 2041570, + "gas": 2041602, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x104c", + "0xff7", "0xa4", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", - "0x100e", - "0x1008", - "0x1002" + "0xfb9", + "0xfb3", + "0xfad" ] }, { - "pc": 4093, + "pc": 4008, "op": "PUSH3", - "gas": 2041567, + "gas": 2041599, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x104c", + "0xff7", "0xa4", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", - "0x100e", - "0x1008", - "0x1002", + "0xfb9", + "0xfb3", + "0xfad", "0x1" ] }, { - "pc": 4097, + "pc": 4012, "op": "JUMP", - "gas": 2041564, + "gas": 2041596, "gasCost": 8, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x104c", + "0xff7", "0xa4", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", - "0x100e", - "0x1008", - "0x1002", + "0xfb9", + "0xfb3", + "0xfad", "0x1", - "0xfd9" + "0xf84" ] }, { - "pc": 4057, + "pc": 3972, "op": "JUMPDEST", - "gas": 2041556, + "gas": 2041588, "gasCost": 1, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x104c", + "0xff7", "0xa4", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", - "0x100e", - "0x1008", - "0x1002", + "0xfb9", + "0xfb3", + "0xfad", "0x1" ] }, { - "pc": 4058, + "pc": 3973, "op": "PUSH1", - "gas": 2041555, + "gas": 2041587, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x104c", + "0xff7", "0xa4", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", - "0x100e", - "0x1008", - "0x1002", + "0xfb9", + "0xfb3", + "0xfad", "0x1" ] }, { - "pc": 4060, + "pc": 3975, "op": "DUP2", - "gas": 2041552, + "gas": 2041584, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x104c", + "0xff7", "0xa4", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", - "0x100e", - "0x1008", - "0x1002", + "0xfb9", + "0xfb3", + "0xfad", "0x1", "0x0" ] }, { - "pc": 4061, + "pc": 3976, "op": "SWAP1", - "gas": 2041549, + "gas": 2041581, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x104c", + "0xff7", "0xa4", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", - "0x100e", - "0x1008", - "0x1002", + "0xfb9", + "0xfb3", + "0xfad", "0x1", "0x0", "0x1" ] }, { - "pc": 4062, + "pc": 3977, "op": "POP", - "gas": 2041546, + "gas": 2041578, "gasCost": 2, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x104c", + "0xff7", "0xa4", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", - "0x100e", - "0x1008", - "0x1002", + "0xfb9", + "0xfb3", + "0xfad", "0x1", "0x1", "0x0" ] }, { - "pc": 4063, + "pc": 3978, "op": "SWAP2", - "gas": 2041544, + "gas": 2041576, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x104c", + "0xff7", "0xa4", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", - "0x100e", - "0x1008", - "0x1002", + "0xfb9", + "0xfb3", + "0xfad", "0x1", "0x1" ] }, { - "pc": 4064, + "pc": 3979, "op": "SWAP1", - "gas": 2041541, + "gas": 2041573, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x104c", + "0xff7", "0xa4", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", - "0x100e", - "0x1008", + "0xfb9", + "0xfb3", "0x1", "0x1", - "0x1002" + "0xfad" ] }, { - "pc": 4065, + "pc": 3980, "op": "POP", - "gas": 2041538, + "gas": 2041570, "gasCost": 2, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x104c", + "0xff7", "0xa4", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", - "0x100e", - "0x1008", + "0xfb9", + "0xfb3", "0x1", - "0x1002", + "0xfad", "0x1" ] }, { - "pc": 4066, + "pc": 3981, "op": "JUMP", - "gas": 2041536, + "gas": 2041568, "gasCost": 8, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x104c", + "0xff7", "0xa4", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", - "0x100e", - "0x1008", + "0xfb9", + "0xfb3", "0x1", - "0x1002" + "0xfad" ] }, { - "pc": 4098, + "pc": 4013, "op": "JUMPDEST", - "gas": 2041528, + "gas": 2041560, "gasCost": 1, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x104c", + "0xff7", "0xa4", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", - "0x100e", - "0x1008", + "0xfb9", + "0xfb3", "0x1" ] }, { - "pc": 4099, + "pc": 4014, "op": "PUSH3", - "gas": 2041527, + "gas": 2041559, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x104c", + "0xff7", "0xa4", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", - "0x100e", - "0x1008", + "0xfb9", + "0xfb3", "0x1" ] }, { - "pc": 4103, + "pc": 4018, "op": "JUMP", - "gas": 2041524, + "gas": 2041556, "gasCost": 8, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x104c", + "0xff7", "0xa4", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", - "0x100e", - "0x1008", + "0xfb9", + "0xfb3", "0x1", - "0xfe3" + "0xf8e" ] }, { - "pc": 4067, + "pc": 3982, "op": "JUMPDEST", - "gas": 2041516, + "gas": 2041548, "gasCost": 1, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x104c", + "0xff7", "0xa4", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", - "0x100e", - "0x1008", + "0xfb9", + "0xfb3", "0x1" ] }, { - "pc": 4068, + "pc": 3983, "op": "PUSH1", - "gas": 2041515, + "gas": 2041547, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x104c", + "0xff7", "0xa4", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", - "0x100e", - "0x1008", + "0xfb9", + "0xfb3", "0x1" ] }, { - "pc": 4070, + "pc": 3985, "op": "DUP2", - "gas": 2041512, + "gas": 2041544, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x104c", + "0xff7", "0xa4", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", - "0x100e", - "0x1008", + "0xfb9", + "0xfb3", "0x1", "0x0" ] }, { - "pc": 4071, + "pc": 3986, "op": "SWAP1", - "gas": 2041509, + "gas": 2041541, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x104c", + "0xff7", "0xa4", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", - "0x100e", - "0x1008", + "0xfb9", + "0xfb3", "0x1", "0x0", "0x1" ] }, { - "pc": 4072, + "pc": 3987, "op": "POP", - "gas": 2041506, + "gas": 2041538, "gasCost": 2, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x104c", + "0xff7", "0xa4", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", - "0x100e", - "0x1008", + "0xfb9", + "0xfb3", "0x1", "0x1", "0x0" ] }, { - "pc": 4073, + "pc": 3988, "op": "SWAP2", - "gas": 2041504, + "gas": 2041536, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x104c", + "0xff7", "0xa4", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", - "0x100e", - "0x1008", + "0xfb9", + "0xfb3", "0x1", "0x1" ] }, { - "pc": 4074, + "pc": 3989, "op": "SWAP1", - "gas": 2041501, + "gas": 2041533, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x104c", + "0xff7", "0xa4", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", - "0x100e", + "0xfb9", "0x1", "0x1", - "0x1008" + "0xfb3" ] }, { - "pc": 4075, + "pc": 3990, "op": "POP", - "gas": 2041498, + "gas": 2041530, "gasCost": 2, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x104c", + "0xff7", "0xa4", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", - "0x100e", + "0xfb9", "0x1", - "0x1008", + "0xfb3", "0x1" ] }, { - "pc": 4076, + "pc": 3991, "op": "JUMP", - "gas": 2041496, + "gas": 2041528, "gasCost": 8, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x104c", + "0xff7", "0xa4", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", - "0x100e", + "0xfb9", "0x1", - "0x1008" + "0xfb3" ] }, { - "pc": 4104, + "pc": 4019, "op": "JUMPDEST", - "gas": 2041488, + "gas": 2041520, "gasCost": 1, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x104c", + "0xff7", "0xa4", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", - "0x100e", + "0xfb9", "0x1" ] }, { - "pc": 4105, + "pc": 4020, "op": "PUSH3", - "gas": 2041487, + "gas": 2041519, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x104c", + "0xff7", "0xa4", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", - "0x100e", + "0xfb9", "0x1" ] }, { - "pc": 4109, + "pc": 4024, "op": "JUMP", - "gas": 2041484, + "gas": 2041516, "gasCost": 8, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x104c", + "0xff7", "0xa4", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", - "0x100e", + "0xfb9", "0x1", - "0x97c" + "0x95a" ] }, { - "pc": 2428, + "pc": 2394, "op": "JUMPDEST", - "gas": 2041476, + "gas": 2041508, "gasCost": 1, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x104c", + "0xff7", "0xa4", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", - "0x100e", + "0xfb9", "0x1" ] }, { - "pc": 2429, + "pc": 2395, "op": "PUSH1", - "gas": 2041475, + "gas": 2041507, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x104c", + "0xff7", "0xa4", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", - "0x100e", + "0xfb9", "0x1" ] }, { - "pc": 2431, + "pc": 2397, "op": "DUP2", - "gas": 2041472, + "gas": 2041504, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x104c", + "0xff7", "0xa4", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", - "0x100e", + "0xfb9", "0x1", "0x0" ] }, { - "pc": 2432, + "pc": 2398, "op": "SWAP1", - "gas": 2041469, + "gas": 2041501, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x104c", + "0xff7", "0xa4", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", - "0x100e", + "0xfb9", "0x1", "0x0", "0x1" ] }, { - "pc": 2433, + "pc": 2399, "op": "POP", - "gas": 2041466, + "gas": 2041498, "gasCost": 2, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x104c", + "0xff7", "0xa4", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", - "0x100e", + "0xfb9", "0x1", "0x1", "0x0" ] }, { - "pc": 2434, + "pc": 2400, "op": "SWAP2", - "gas": 2041464, + "gas": 2041496, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x104c", + "0xff7", "0xa4", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", - "0x100e", + "0xfb9", "0x1", "0x1" ] }, { - "pc": 2435, + "pc": 2401, "op": "SWAP1", - "gas": 2041461, + "gas": 2041493, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x104c", + "0xff7", "0xa4", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", "0x1", "0x1", - "0x100e" + "0xfb9" ] }, { - "pc": 2436, + "pc": 2402, "op": "POP", - "gas": 2041458, + "gas": 2041490, "gasCost": 2, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x104c", + "0xff7", "0xa4", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", "0x1", - "0x100e", + "0xfb9", "0x1" ] }, { - "pc": 2437, + "pc": 2403, "op": "JUMP", - "gas": 2041456, + "gas": 2041488, "gasCost": 8, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x104c", + "0xff7", "0xa4", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", "0x1", - "0x100e" + "0xfb9" ] }, { - "pc": 4110, + "pc": 4025, "op": "JUMPDEST", - "gas": 2041448, + "gas": 2041480, "gasCost": 1, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x104c", + "0xff7", "0xa4", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", "0x1" ] }, { - "pc": 4111, + "pc": 4026, "op": "SWAP1", - "gas": 2041447, + "gas": 2041479, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x104c", + "0xff7", "0xa4", "0x1", - "0x1020", + "0xfcb", "0x1", "0x0", "0x1" ] }, { - "pc": 4112, + "pc": 4027, "op": "POP", - "gas": 2041444, + "gas": 2041476, "gasCost": 2, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x104c", + "0xff7", "0xa4", "0x1", - "0x1020", + "0xfcb", "0x1", "0x1", "0x0" ] }, { - "pc": 4113, + "pc": 4028, "op": "SWAP2", - "gas": 2041442, + "gas": 2041474, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x104c", + "0xff7", "0xa4", "0x1", - "0x1020", + "0xfcb", "0x1", "0x1" ] }, { - "pc": 4114, + "pc": 4029, "op": "SWAP1", - "gas": 2041439, + "gas": 2041471, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x104c", + "0xff7", "0xa4", "0x1", "0x1", "0x1", - "0x1020" + "0xfcb" ] }, { - "pc": 4115, + "pc": 4030, "op": "POP", - "gas": 2041436, + "gas": 2041468, "gasCost": 2, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x104c", + "0xff7", "0xa4", "0x1", "0x1", - "0x1020", + "0xfcb", "0x1" ] }, { - "pc": 4116, + "pc": 4031, "op": "JUMP", - "gas": 2041434, + "gas": 2041466, "gasCost": 8, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x104c", + "0xff7", "0xa4", "0x1", "0x1", - "0x1020" + "0xfcb" ] }, { - "pc": 4128, + "pc": 4043, "op": "JUMPDEST", - "gas": 2041426, + "gas": 2041458, "gasCost": 1, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x104c", + "0xff7", "0xa4", "0x1", "0x1" ] }, { - "pc": 4129, + "pc": 4044, "op": "DUP3", - "gas": 2041425, + "gas": 2041457, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x104c", + "0xff7", "0xa4", "0x1", "0x1" ] }, { - "pc": 4130, + "pc": 4045, "op": "MSTORE", - "gas": 2041422, + "gas": 2041454, "gasCost": 6, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x104c", + "0xff7", "0xa4", "0x1", "0x1", @@ -17145,69 +16889,69 @@ ] }, { - "pc": 4131, + "pc": 4046, "op": "POP", - "gas": 2041416, + "gas": 2041448, "gasCost": 2, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x104c", + "0xff7", "0xa4", "0x1" ] }, { - "pc": 4132, + "pc": 4047, "op": "POP", - "gas": 2041414, + "gas": 2041446, "gasCost": 2, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x104c", + "0xff7", "0xa4" ] }, { - "pc": 4133, + "pc": 4048, "op": "JUMP", - "gas": 2041412, + "gas": 2041444, "gasCost": 8, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", "0xc4", - "0x104c" + "0xff7" ] }, { - "pc": 4172, + "pc": 4087, "op": "JUMPDEST", - "gas": 2041404, + "gas": 2041436, "gasCost": 1, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", @@ -17215,15 +16959,15 @@ ] }, { - "pc": 4173, + "pc": 4088, "op": "SWAP4", - "gas": 2041403, + "gas": 2041435, "gasCost": 3, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7bc", + "0x7aa", "0x1", "0x1", "0x84", @@ -17231,9 +16975,9 @@ ] }, { - "pc": 4174, + "pc": 4089, "op": "SWAP3", - "gas": 2041400, + "gas": 2041432, "gasCost": 3, "depth": 2, "stack": [ @@ -17243,71 +16987,71 @@ "0x1", "0x1", "0x84", - "0x7bc" + "0x7aa" ] }, { - "pc": 4175, + "pc": 4090, "op": "POP", - "gas": 2041397, + "gas": 2041429, "gasCost": 2, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", "0xc4", - "0x7bc", + "0x7aa", "0x1", "0x84", "0x1" ] }, { - "pc": 4176, + "pc": 4091, "op": "POP", - "gas": 2041395, + "gas": 2041427, "gasCost": 2, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", "0xc4", - "0x7bc", + "0x7aa", "0x1", "0x84" ] }, { - "pc": 4177, + "pc": 4092, "op": "POP", - "gas": 2041393, + "gas": 2041425, "gasCost": 2, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", "0xc4", - "0x7bc", + "0x7aa", "0x1" ] }, { - "pc": 4178, + "pc": 4093, "op": "JUMP", - "gas": 2041391, + "gas": 2041423, "gasCost": 8, "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", "0xc4", - "0x7bc" + "0x7aa" ] }, { - "pc": 1980, + "pc": 1962, "op": "JUMPDEST", - "gas": 2041383, + "gas": 2041415, "gasCost": 1, "depth": 2, "stack": [ @@ -17317,9 +17061,9 @@ ] }, { - "pc": 1981, + "pc": 1963, "op": "PUSH1", - "gas": 2041382, + "gas": 2041414, "gasCost": 3, "depth": 2, "stack": [ @@ -17329,9 +17073,9 @@ ] }, { - "pc": 1983, + "pc": 1965, "op": "MLOAD", - "gas": 2041379, + "gas": 2041411, "gasCost": 3, "depth": 2, "stack": [ @@ -17342,9 +17086,9 @@ ] }, { - "pc": 1984, + "pc": 1966, "op": "DUP1", - "gas": 2041376, + "gas": 2041408, "gasCost": 3, "depth": 2, "stack": [ @@ -17355,9 +17099,9 @@ ] }, { - "pc": 1985, + "pc": 1967, "op": "SWAP2", - "gas": 2041373, + "gas": 2041405, "gasCost": 3, "depth": 2, "stack": [ @@ -17369,9 +17113,9 @@ ] }, { - "pc": 1986, + "pc": 1968, "op": "SUB", - "gas": 2041370, + "gas": 2041402, "gasCost": 3, "depth": 2, "stack": [ @@ -17383,9 +17127,9 @@ ] }, { - "pc": 1987, + "pc": 1969, "op": "SWAP1", - "gas": 2041367, + "gas": 2041399, "gasCost": 3, "depth": 2, "stack": [ @@ -17396,9 +17140,9 @@ ] }, { - "pc": 1988, + "pc": 1970, "op": "REVERT", - "gas": 2041364, + "gas": 2041396, "gasCost": 0, "depth": 2, "stack": [ @@ -17409,9 +17153,9 @@ ] }, { - "pc": 1598, + "pc": 1581, "op": "SWAP3", - "gas": 2073777, + "gas": 2073810, "gasCost": 3, "depth": 1, "stack": [ @@ -17426,9 +17170,9 @@ ] }, { - "pc": 1599, + "pc": 1582, "op": "POP", - "gas": 2073774, + "gas": 2073807, "gasCost": 2, "depth": 1, "stack": [ @@ -17443,9 +17187,9 @@ ] }, { - "pc": 1600, + "pc": 1583, "op": "POP", - "gas": 2073772, + "gas": 2073805, "gasCost": 2, "depth": 1, "stack": [ @@ -17459,9 +17203,9 @@ ] }, { - "pc": 1601, + "pc": 1584, "op": "POP", - "gas": 2073770, + "gas": 2073803, "gasCost": 2, "depth": 1, "stack": [ @@ -17474,9 +17218,9 @@ ] }, { - "pc": 1602, + "pc": 1585, "op": "DUP1", - "gas": 2073768, + "gas": 2073801, "gasCost": 3, "depth": 1, "stack": [ @@ -17488,9 +17232,9 @@ ] }, { - "pc": 1603, + "pc": 1586, "op": "ISZERO", - "gas": 2073765, + "gas": 2073798, "gasCost": 3, "depth": 1, "stack": [ @@ -17503,9 +17247,9 @@ ] }, { - "pc": 1604, + "pc": 1587, "op": "PUSH3", - "gas": 2073762, + "gas": 2073795, "gasCost": 3, "depth": 1, "stack": [ @@ -17518,9 +17262,9 @@ ] }, { - "pc": 1608, + "pc": 1591, "op": "JUMPI", - "gas": 2073759, + "gas": 2073792, "gasCost": 10, "depth": 1, "stack": [ @@ -17530,13 +17274,13 @@ "0x0", "0x0", "0x1", - "0x64c" + "0x63b" ] }, { - "pc": 1612, + "pc": 1595, "op": "JUMPDEST", - "gas": 2073749, + "gas": 2073782, "gasCost": 1, "depth": 1, "stack": [ @@ -17548,9 +17292,9 @@ ] }, { - "pc": 1613, + "pc": 1596, "op": "PUSH3", - "gas": 2073748, + "gas": 2073781, "gasCost": 3, "depth": 1, "stack": [ @@ -17562,9 +17306,9 @@ ] }, { - "pc": 1617, + "pc": 1600, "op": "JUMPI", - "gas": 2073745, + "gas": 2073778, "gasCost": 10, "depth": 1, "stack": [ @@ -17573,13 +17317,13 @@ "0x3e8", "0x0", "0x0", - "0x735" + "0x723" ] }, { - "pc": 1618, + "pc": 1601, "op": "PUSH3", - "gas": 2073735, + "gas": 2073768, "gasCost": 3, "depth": 1, "stack": [ @@ -17590,9 +17334,9 @@ ] }, { - "pc": 1622, + "pc": 1605, "op": "PUSH3", - "gas": 2073732, + "gas": 2073765, "gasCost": 3, "depth": 1, "stack": [ @@ -17600,13 +17344,13 @@ "0x17f", "0x3e8", "0x0", - "0x65b" + "0x64a" ] }, { - "pc": 1626, + "pc": 1609, "op": "JUMP", - "gas": 2073729, + "gas": 2073762, "gasCost": 8, "depth": 1, "stack": [ @@ -17614,14 +17358,14 @@ "0x17f", "0x3e8", "0x0", - "0x65b", - "0xcec" + "0x64a", + "0xca8" ] }, { - "pc": 3308, + "pc": 3240, "op": "JUMPDEST", - "gas": 2073721, + "gas": 2073754, "gasCost": 1, "depth": 1, "stack": [ @@ -17629,13 +17373,13 @@ "0x17f", "0x3e8", "0x0", - "0x65b" + "0x64a" ] }, { - "pc": 3309, + "pc": 3241, "op": "PUSH1", - "gas": 2073720, + "gas": 2073753, "gasCost": 3, "depth": 1, "stack": [ @@ -17643,13 +17387,13 @@ "0x17f", "0x3e8", "0x0", - "0x65b" + "0x64a" ] }, { - "pc": 3311, + "pc": 3243, "op": "PUSH1", - "gas": 2073717, + "gas": 2073750, "gasCost": 3, "depth": 1, "stack": [ @@ -17657,14 +17401,14 @@ "0x17f", "0x3e8", "0x0", - "0x65b", + "0x64a", "0x0" ] }, { - "pc": 3313, + "pc": 3245, "op": "RETURNDATASIZE", - "gas": 2073714, + "gas": 2073747, "gasCost": 2, "depth": 1, "stack": [ @@ -17672,15 +17416,15 @@ "0x17f", "0x3e8", "0x0", - "0x65b", + "0x64a", "0x0", "0x3" ] }, { - "pc": 3314, + "pc": 3246, "op": "GT", - "gas": 2073712, + "gas": 2073745, "gasCost": 3, "depth": 1, "stack": [ @@ -17688,16 +17432,16 @@ "0x17f", "0x3e8", "0x0", - "0x65b", + "0x64a", "0x0", "0x3", "0x44" ] }, { - "pc": 3315, + "pc": 3247, "op": "ISZERO", - "gas": 2073709, + "gas": 2073742, "gasCost": 3, "depth": 1, "stack": [ @@ -17705,15 +17449,15 @@ "0x17f", "0x3e8", "0x0", - "0x65b", + "0x64a", "0x0", "0x1" ] }, { - "pc": 3316, + "pc": 3248, "op": "PUSH3", - "gas": 2073706, + "gas": 2073739, "gasCost": 3, "depth": 1, "stack": [ @@ -17721,15 +17465,15 @@ "0x17f", "0x3e8", "0x0", - "0x65b", + "0x64a", "0x0", "0x0" ] }, { - "pc": 3320, + "pc": 3252, "op": "JUMPI", - "gas": 2073703, + "gas": 2073736, "gasCost": 10, "depth": 1, "stack": [ @@ -17737,16 +17481,16 @@ "0x17f", "0x3e8", "0x0", - "0x65b", + "0x64a", "0x0", "0x0", - "0xd0e" + "0xcca" ] }, { - "pc": 3321, + "pc": 3253, "op": "PUSH1", - "gas": 2073693, + "gas": 2073726, "gasCost": 3, "depth": 1, "stack": [ @@ -17754,14 +17498,14 @@ "0x17f", "0x3e8", "0x0", - "0x65b", + "0x64a", "0x0" ] }, { - "pc": 3323, + "pc": 3255, "op": "PUSH1", - "gas": 2073690, + "gas": 2073723, "gasCost": 3, "depth": 1, "stack": [ @@ -17769,15 +17513,15 @@ "0x17f", "0x3e8", "0x0", - "0x65b", + "0x64a", "0x0", "0x4" ] }, { - "pc": 3325, + "pc": 3257, "op": "DUP1", - "gas": 2073687, + "gas": 2073720, "gasCost": 3, "depth": 1, "stack": [ @@ -17785,16 +17529,16 @@ "0x17f", "0x3e8", "0x0", - "0x65b", + "0x64a", "0x0", "0x4", "0x0" ] }, { - "pc": 3326, + "pc": 3258, "op": "RETURNDATACOPY", - "gas": 2073684, + "gas": 2073717, "gasCost": 6, "depth": 1, "stack": [ @@ -17802,7 +17546,7 @@ "0x17f", "0x3e8", "0x0", - "0x65b", + "0x64a", "0x0", "0x4", "0x0", @@ -17810,9 +17554,9 @@ ] }, { - "pc": 3327, + "pc": 3259, "op": "PUSH3", - "gas": 2073678, + "gas": 2073711, "gasCost": 3, "depth": 1, "stack": [ @@ -17820,14 +17564,14 @@ "0x17f", "0x3e8", "0x0", - "0x65b", + "0x64a", "0x0" ] }, { - "pc": 3331, + "pc": 3263, "op": "PUSH1", - "gas": 2073675, + "gas": 2073708, "gasCost": 3, "depth": 1, "stack": [ @@ -17835,15 +17579,15 @@ "0x17f", "0x3e8", "0x0", - "0x65b", + "0x64a", "0x0", - "0xd0b" + "0xcc7" ] }, { - "pc": 3333, + "pc": 3265, "op": "MLOAD", - "gas": 2073672, + "gas": 2073705, "gasCost": 3, "depth": 1, "stack": [ @@ -17851,16 +17595,16 @@ "0x17f", "0x3e8", "0x0", - "0x65b", + "0x64a", "0x0", - "0xd0b", + "0xcc7", "0x0" ] }, { - "pc": 3334, + "pc": 3266, "op": "PUSH3", - "gas": 2073669, + "gas": 2073702, "gasCost": 3, "depth": 1, "stack": [ @@ -17868,16 +17612,16 @@ "0x17f", "0x3e8", "0x0", - "0x65b", + "0x64a", "0x0", - "0xd0b", + "0xcc7", "0xcf47918100000000000000000000000000000000000000000000000000000000" ] }, { - "pc": 3338, + "pc": 3270, "op": "JUMP", - "gas": 2073666, + "gas": 2073699, "gasCost": 8, "depth": 1, "stack": [ @@ -17885,17 +17629,17 @@ "0x17f", "0x3e8", "0x0", - "0x65b", + "0x64a", "0x0", - "0xd0b", + "0xcc7", "0xcf47918100000000000000000000000000000000000000000000000000000000", - "0xcdf" + "0xc9b" ] }, { - "pc": 3295, + "pc": 3227, "op": "JUMPDEST", - "gas": 2073658, + "gas": 2073691, "gasCost": 1, "depth": 1, "stack": [ @@ -17903,16 +17647,16 @@ "0x17f", "0x3e8", "0x0", - "0x65b", + "0x64a", "0x0", - "0xd0b", + "0xcc7", "0xcf47918100000000000000000000000000000000000000000000000000000000" ] }, { - "pc": 3296, + "pc": 3228, "op": "PUSH1", - "gas": 2073657, + "gas": 2073690, "gasCost": 3, "depth": 1, "stack": [ @@ -17920,16 +17664,16 @@ "0x17f", "0x3e8", "0x0", - "0x65b", + "0x64a", "0x0", - "0xd0b", + "0xcc7", "0xcf47918100000000000000000000000000000000000000000000000000000000" ] }, { - "pc": 3298, + "pc": 3230, "op": "DUP2", - "gas": 2073654, + "gas": 2073687, "gasCost": 3, "depth": 1, "stack": [ @@ -17937,17 +17681,17 @@ "0x17f", "0x3e8", "0x0", - "0x65b", + "0x64a", "0x0", - "0xd0b", + "0xcc7", "0xcf47918100000000000000000000000000000000000000000000000000000000", "0x0" ] }, { - "pc": 3299, + "pc": 3231, "op": "PUSH1", - "gas": 2073651, + "gas": 2073684, "gasCost": 3, "depth": 1, "stack": [ @@ -17955,18 +17699,18 @@ "0x17f", "0x3e8", "0x0", - "0x65b", + "0x64a", "0x0", - "0xd0b", + "0xcc7", "0xcf47918100000000000000000000000000000000000000000000000000000000", "0x0", "0xcf47918100000000000000000000000000000000000000000000000000000000" ] }, { - "pc": 3301, + "pc": 3233, "op": "SHR", - "gas": 2073648, + "gas": 2073681, "gasCost": 3, "depth": 1, "stack": [ @@ -17974,9 +17718,9 @@ "0x17f", "0x3e8", "0x0", - "0x65b", + "0x64a", "0x0", - "0xd0b", + "0xcc7", "0xcf47918100000000000000000000000000000000000000000000000000000000", "0x0", "0xcf47918100000000000000000000000000000000000000000000000000000000", @@ -17984,9 +17728,9 @@ ] }, { - "pc": 3302, + "pc": 3234, "op": "SWAP1", - "gas": 2073645, + "gas": 2073678, "gasCost": 3, "depth": 1, "stack": [ @@ -17994,18 +17738,18 @@ "0x17f", "0x3e8", "0x0", - "0x65b", + "0x64a", "0x0", - "0xd0b", + "0xcc7", "0xcf47918100000000000000000000000000000000000000000000000000000000", "0x0", "0xcf479181" ] }, { - "pc": 3303, + "pc": 3235, "op": "POP", - "gas": 2073642, + "gas": 2073675, "gasCost": 2, "depth": 1, "stack": [ @@ -18013,18 +17757,18 @@ "0x17f", "0x3e8", "0x0", - "0x65b", + "0x64a", "0x0", - "0xd0b", + "0xcc7", "0xcf47918100000000000000000000000000000000000000000000000000000000", "0xcf479181", "0x0" ] }, { - "pc": 3304, + "pc": 3236, "op": "SWAP2", - "gas": 2073640, + "gas": 2073673, "gasCost": 3, "depth": 1, "stack": [ @@ -18032,17 +17776,17 @@ "0x17f", "0x3e8", "0x0", - "0x65b", + "0x64a", "0x0", - "0xd0b", + "0xcc7", "0xcf47918100000000000000000000000000000000000000000000000000000000", "0xcf479181" ] }, { - "pc": 3305, + "pc": 3237, "op": "SWAP1", - "gas": 2073637, + "gas": 2073670, "gasCost": 3, "depth": 1, "stack": [ @@ -18050,17 +17794,17 @@ "0x17f", "0x3e8", "0x0", - "0x65b", + "0x64a", "0x0", "0xcf479181", "0xcf47918100000000000000000000000000000000000000000000000000000000", - "0xd0b" + "0xcc7" ] }, { - "pc": 3306, + "pc": 3238, "op": "POP", - "gas": 2073634, + "gas": 2073667, "gasCost": 2, "depth": 1, "stack": [ @@ -18068,17 +17812,17 @@ "0x17f", "0x3e8", "0x0", - "0x65b", + "0x64a", "0x0", "0xcf479181", - "0xd0b", + "0xcc7", "0xcf47918100000000000000000000000000000000000000000000000000000000" ] }, { - "pc": 3307, + "pc": 3239, "op": "JUMP", - "gas": 2073632, + "gas": 2073665, "gasCost": 8, "depth": 1, "stack": [ @@ -18086,16 +17830,16 @@ "0x17f", "0x3e8", "0x0", - "0x65b", + "0x64a", "0x0", "0xcf479181", - "0xd0b" + "0xcc7" ] }, { - "pc": 3339, + "pc": 3271, "op": "JUMPDEST", - "gas": 2073624, + "gas": 2073657, "gasCost": 1, "depth": 1, "stack": [ @@ -18103,15 +17847,15 @@ "0x17f", "0x3e8", "0x0", - "0x65b", + "0x64a", "0x0", "0xcf479181" ] }, { - "pc": 3340, + "pc": 3272, "op": "SWAP1", - "gas": 2073623, + "gas": 2073656, "gasCost": 3, "depth": 1, "stack": [ @@ -18119,15 +17863,15 @@ "0x17f", "0x3e8", "0x0", - "0x65b", + "0x64a", "0x0", "0xcf479181" ] }, { - "pc": 3341, + "pc": 3273, "op": "POP", - "gas": 2073620, + "gas": 2073653, "gasCost": 2, "depth": 1, "stack": [ @@ -18135,15 +17879,15 @@ "0x17f", "0x3e8", "0x0", - "0x65b", + "0x64a", "0xcf479181", "0x0" ] }, { - "pc": 3342, + "pc": 3274, "op": "JUMPDEST", - "gas": 2073618, + "gas": 2073651, "gasCost": 1, "depth": 1, "stack": [ @@ -18151,14 +17895,14 @@ "0x17f", "0x3e8", "0x0", - "0x65b", + "0x64a", "0xcf479181" ] }, { - "pc": 3343, + "pc": 3275, "op": "SWAP1", - "gas": 2073617, + "gas": 2073650, "gasCost": 3, "depth": 1, "stack": [ @@ -18166,14 +17910,14 @@ "0x17f", "0x3e8", "0x0", - "0x65b", + "0x64a", "0xcf479181" ] }, { - "pc": 3344, + "pc": 3276, "op": "JUMP", - "gas": 2073614, + "gas": 2073647, "gasCost": 8, "depth": 1, "stack": [ @@ -18182,13 +17926,13 @@ "0x3e8", "0x0", "0xcf479181", - "0x65b" + "0x64a" ] }, { - "pc": 1627, + "pc": 1610, "op": "JUMPDEST", - "gas": 2073606, + "gas": 2073639, "gasCost": 1, "depth": 1, "stack": [ @@ -18200,9 +17944,9 @@ ] }, { - "pc": 1628, + "pc": 1611, "op": "DUP1", - "gas": 2073605, + "gas": 2073638, "gasCost": 3, "depth": 1, "stack": [ @@ -18214,9 +17958,9 @@ ] }, { - "pc": 1629, + "pc": 1612, "op": "PUSH4", - "gas": 2073602, + "gas": 2073635, "gasCost": 3, "depth": 1, "stack": [ @@ -18229,9 +17973,9 @@ ] }, { - "pc": 1634, - "op": "EQ", - "gas": 2073599, + "pc": 1617, + "op": "SUB", + "gas": 2073632, "gasCost": 3, "depth": 1, "stack": [ @@ -18245,24 +17989,9 @@ ] }, { - "pc": 1635, - "op": "ISZERO", - "gas": 2073596, - "gasCost": 3, - "depth": 1, - "stack": [ - "0x7f29c394", - "0x17f", - "0x3e8", - "0x0", - "0xcf479181", - "0x0" - ] - }, - { - "pc": 1636, + "pc": 1618, "op": "PUSH3", - "gas": 2073593, + "gas": 2073629, "gasCost": 3, "depth": 1, "stack": [ @@ -18271,13 +18000,13 @@ "0x3e8", "0x0", "0xcf479181", - "0x1" + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff397be81f" ] }, { - "pc": 1640, + "pc": 1622, "op": "JUMPI", - "gas": 2073590, + "gas": 2073626, "gasCost": 10, "depth": 1, "stack": [ @@ -18286,14 +18015,14 @@ "0x3e8", "0x0", "0xcf479181", - "0x1", - "0x6c0" + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff397be81f", + "0x6ae" ] }, { - "pc": 1728, + "pc": 1710, "op": "JUMPDEST", - "gas": 2073580, + "gas": 2073616, "gasCost": 1, "depth": 1, "stack": [ @@ -18305,9 +18034,9 @@ ] }, { - "pc": 1729, + "pc": 1711, "op": "POP", - "gas": 2073579, + "gas": 2073615, "gasCost": 2, "depth": 1, "stack": [ @@ -18319,9 +18048,9 @@ ] }, { - "pc": 1730, + "pc": 1712, "op": "JUMPDEST", - "gas": 2073577, + "gas": 2073613, "gasCost": 1, "depth": 1, "stack": [ @@ -18332,9 +18061,9 @@ ] }, { - "pc": 1731, + "pc": 1713, "op": "RETURNDATASIZE", - "gas": 2073576, + "gas": 2073612, "gasCost": 2, "depth": 1, "stack": [ @@ -18345,9 +18074,9 @@ ] }, { - "pc": 1732, + "pc": 1714, "op": "DUP1", - "gas": 2073574, + "gas": 2073610, "gasCost": 3, "depth": 1, "stack": [ @@ -18359,9 +18088,9 @@ ] }, { - "pc": 1733, + "pc": 1715, "op": "PUSH1", - "gas": 2073571, + "gas": 2073607, "gasCost": 3, "depth": 1, "stack": [ @@ -18374,9 +18103,9 @@ ] }, { - "pc": 1735, + "pc": 1717, "op": "DUP2", - "gas": 2073568, + "gas": 2073604, "gasCost": 3, "depth": 1, "stack": [ @@ -18390,9 +18119,9 @@ ] }, { - "pc": 1736, + "pc": 1718, "op": "EQ", - "gas": 2073565, + "gas": 2073601, "gasCost": 3, "depth": 1, "stack": [ @@ -18407,9 +18136,9 @@ ] }, { - "pc": 1737, + "pc": 1719, "op": "PUSH3", - "gas": 2073562, + "gas": 2073598, "gasCost": 3, "depth": 1, "stack": [ @@ -18423,9 +18152,9 @@ ] }, { - "pc": 1741, + "pc": 1723, "op": "JUMPI", - "gas": 2073559, + "gas": 2073595, "gasCost": 10, "depth": 1, "stack": [ @@ -18436,13 +18165,13 @@ "0x44", "0x44", "0x0", - "0x6f0" + "0x6de" ] }, { - "pc": 1742, + "pc": 1724, "op": "PUSH1", - "gas": 2073549, + "gas": 2073585, "gasCost": 3, "depth": 1, "stack": [ @@ -18455,9 +18184,9 @@ ] }, { - "pc": 1744, + "pc": 1726, "op": "MLOAD", - "gas": 2073546, + "gas": 2073582, "gasCost": 3, "depth": 1, "stack": [ @@ -18471,9 +18200,9 @@ ] }, { - "pc": 1745, + "pc": 1727, "op": "SWAP2", - "gas": 2073543, + "gas": 2073579, "gasCost": 3, "depth": 1, "stack": [ @@ -18487,9 +18216,9 @@ ] }, { - "pc": 1746, + "pc": 1728, "op": "POP", - "gas": 2073540, + "gas": 2073576, "gasCost": 2, "depth": 1, "stack": [ @@ -18503,9 +18232,9 @@ ] }, { - "pc": 1747, + "pc": 1729, "op": "PUSH1", - "gas": 2073538, + "gas": 2073574, "gasCost": 3, "depth": 1, "stack": [ @@ -18518,9 +18247,9 @@ ] }, { - "pc": 1749, + "pc": 1731, "op": "NOT", - "gas": 2073535, + "gas": 2073571, "gasCost": 3, "depth": 1, "stack": [ @@ -18534,9 +18263,9 @@ ] }, { - "pc": 1750, + "pc": 1732, "op": "PUSH1", - "gas": 2073532, + "gas": 2073568, "gasCost": 3, "depth": 1, "stack": [ @@ -18550,9 +18279,9 @@ ] }, { - "pc": 1752, + "pc": 1734, "op": "RETURNDATASIZE", - "gas": 2073529, + "gas": 2073565, "gasCost": 2, "depth": 1, "stack": [ @@ -18567,9 +18296,9 @@ ] }, { - "pc": 1753, + "pc": 1735, "op": "ADD", - "gas": 2073527, + "gas": 2073563, "gasCost": 3, "depth": 1, "stack": [ @@ -18585,9 +18314,9 @@ ] }, { - "pc": 1754, + "pc": 1736, "op": "AND", - "gas": 2073524, + "gas": 2073560, "gasCost": 3, "depth": 1, "stack": [ @@ -18602,9 +18331,9 @@ ] }, { - "pc": 1755, + "pc": 1737, "op": "DUP3", - "gas": 2073521, + "gas": 2073557, "gasCost": 3, "depth": 1, "stack": [ @@ -18618,9 +18347,9 @@ ] }, { - "pc": 1756, + "pc": 1738, "op": "ADD", - "gas": 2073518, + "gas": 2073554, "gasCost": 3, "depth": 1, "stack": [ @@ -18635,9 +18364,9 @@ ] }, { - "pc": 1757, + "pc": 1739, "op": "PUSH1", - "gas": 2073515, + "gas": 2073551, "gasCost": 3, "depth": 1, "stack": [ @@ -18651,9 +18380,9 @@ ] }, { - "pc": 1759, + "pc": 1741, "op": "MSTORE", - "gas": 2073512, + "gas": 2073548, "gasCost": 3, "depth": 1, "stack": [ @@ -18668,9 +18397,9 @@ ] }, { - "pc": 1760, + "pc": 1742, "op": "RETURNDATASIZE", - "gas": 2073509, + "gas": 2073545, "gasCost": 2, "depth": 1, "stack": [ @@ -18683,9 +18412,9 @@ ] }, { - "pc": 1761, + "pc": 1743, "op": "DUP3", - "gas": 2073507, + "gas": 2073543, "gasCost": 3, "depth": 1, "stack": [ @@ -18699,9 +18428,9 @@ ] }, { - "pc": 1762, + "pc": 1744, "op": "MSTORE", - "gas": 2073504, + "gas": 2073540, "gasCost": 3, "depth": 1, "stack": [ @@ -18716,9 +18445,9 @@ ] }, { - "pc": 1763, + "pc": 1745, "op": "RETURNDATASIZE", - "gas": 2073501, + "gas": 2073537, "gasCost": 2, "depth": 1, "stack": [ @@ -18731,9 +18460,9 @@ ] }, { - "pc": 1764, + "pc": 1746, "op": "PUSH1", - "gas": 2073499, + "gas": 2073535, "gasCost": 3, "depth": 1, "stack": [ @@ -18747,9 +18476,9 @@ ] }, { - "pc": 1766, + "pc": 1748, "op": "PUSH1", - "gas": 2073496, + "gas": 2073532, "gasCost": 3, "depth": 1, "stack": [ @@ -18764,9 +18493,9 @@ ] }, { - "pc": 1768, + "pc": 1750, "op": "DUP5", - "gas": 2073493, + "gas": 2073529, "gasCost": 3, "depth": 1, "stack": [ @@ -18782,9 +18511,9 @@ ] }, { - "pc": 1769, + "pc": 1751, "op": "ADD", - "gas": 2073490, + "gas": 2073526, "gasCost": 3, "depth": 1, "stack": [ @@ -18801,9 +18530,9 @@ ] }, { - "pc": 1770, + "pc": 1752, "op": "RETURNDATACOPY", - "gas": 2073487, + "gas": 2073523, "gasCost": 12, "depth": 1, "stack": [ @@ -18819,9 +18548,9 @@ ] }, { - "pc": 1771, + "pc": 1753, "op": "PUSH3", - "gas": 2073475, + "gas": 2073511, "gasCost": 3, "depth": 1, "stack": [ @@ -18834,9 +18563,9 @@ ] }, { - "pc": 1775, + "pc": 1757, "op": "JUMP", - "gas": 2073472, + "gas": 2073508, "gasCost": 8, "depth": 1, "stack": [ @@ -18846,13 +18575,13 @@ "0x0", "0xe0", "0x44", - "0x6f5" + "0x6e3" ] }, { - "pc": 1781, + "pc": 1763, "op": "JUMPDEST", - "gas": 2073464, + "gas": 2073500, "gasCost": 1, "depth": 1, "stack": [ @@ -18865,9 +18594,9 @@ ] }, { - "pc": 1782, + "pc": 1764, "op": "POP", - "gas": 2073463, + "gas": 2073499, "gasCost": 2, "depth": 1, "stack": [ @@ -18880,9 +18609,9 @@ ] }, { - "pc": 1783, + "pc": 1765, "op": "PUSH32", - "gas": 2073461, + "gas": 2073497, "gasCost": 3, "depth": 1, "stack": [ @@ -18894,9 +18623,9 @@ ] }, { - "pc": 1816, + "pc": 1798, "op": "PUSH1", - "gas": 2073458, + "gas": 2073494, "gasCost": 3, "depth": 1, "stack": [ @@ -18909,9 +18638,9 @@ ] }, { - "pc": 1818, + "pc": 1800, "op": "MLOAD", - "gas": 2073455, + "gas": 2073491, "gasCost": 3, "depth": 1, "stack": [ @@ -18925,9 +18654,9 @@ ] }, { - "pc": 1819, + "pc": 1801, "op": "PUSH3", - "gas": 2073452, + "gas": 2073488, "gasCost": 3, "depth": 1, "stack": [ @@ -18941,9 +18670,9 @@ ] }, { - "pc": 1823, + "pc": 1805, "op": "SWAP1", - "gas": 2073449, + "gas": 2073485, "gasCost": 3, "depth": 1, "stack": [ @@ -18954,13 +18683,13 @@ "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", "0x160", - "0x725" + "0x713" ] }, { - "pc": 1824, + "pc": 1806, "op": "PUSH3", - "gas": 2073446, + "gas": 2073482, "gasCost": 3, "depth": 1, "stack": [ @@ -18970,14 +18699,14 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x725", + "0x713", "0x160" ] }, { - "pc": 1828, + "pc": 1810, "op": "JUMP", - "gas": 2073443, + "gas": 2073479, "gasCost": 8, "depth": 1, "stack": [ @@ -18987,15 +18716,15 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x725", + "0x713", "0x160", - "0xf45" + "0xef0" ] }, { - "pc": 3909, + "pc": 3824, "op": "JUMPDEST", - "gas": 2073435, + "gas": 2073471, "gasCost": 1, "depth": 1, "stack": [ @@ -19005,14 +18734,14 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x725", + "0x713", "0x160" ] }, { - "pc": 3910, + "pc": 3825, "op": "PUSH1", - "gas": 2073434, + "gas": 2073470, "gasCost": 3, "depth": 1, "stack": [ @@ -19022,14 +18751,14 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x725", + "0x713", "0x160" ] }, { - "pc": 3912, + "pc": 3827, "op": "PUSH1", - "gas": 2073431, + "gas": 2073467, "gasCost": 3, "depth": 1, "stack": [ @@ -19039,15 +18768,15 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x725", + "0x713", "0x160", "0x0" ] }, { - "pc": 3914, + "pc": 3829, "op": "DUP3", - "gas": 2073428, + "gas": 2073464, "gasCost": 3, "depth": 1, "stack": [ @@ -19057,16 +18786,16 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x725", + "0x713", "0x160", "0x0", "0x20" ] }, { - "pc": 3915, + "pc": 3830, "op": "ADD", - "gas": 2073425, + "gas": 2073461, "gasCost": 3, "depth": 1, "stack": [ @@ -19076,7 +18805,7 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x725", + "0x713", "0x160", "0x0", "0x20", @@ -19084,9 +18813,9 @@ ] }, { - "pc": 3916, + "pc": 3831, "op": "SWAP1", - "gas": 2073422, + "gas": 2073458, "gasCost": 3, "depth": 1, "stack": [ @@ -19096,16 +18825,16 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x725", + "0x713", "0x160", "0x0", "0x180" ] }, { - "pc": 3917, + "pc": 3832, "op": "POP", - "gas": 2073419, + "gas": 2073455, "gasCost": 2, "depth": 1, "stack": [ @@ -19115,16 +18844,16 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x725", + "0x713", "0x160", "0x180", "0x0" ] }, { - "pc": 3918, + "pc": 3833, "op": "DUP2", - "gas": 2073417, + "gas": 2073453, "gasCost": 3, "depth": 1, "stack": [ @@ -19134,15 +18863,15 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x725", + "0x713", "0x160", "0x180" ] }, { - "pc": 3919, + "pc": 3834, "op": "DUP2", - "gas": 2073414, + "gas": 2073450, "gasCost": 3, "depth": 1, "stack": [ @@ -19152,16 +18881,16 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x725", + "0x713", "0x160", "0x180", "0x160" ] }, { - "pc": 3920, + "pc": 3835, "op": "SUB", - "gas": 2073411, + "gas": 2073447, "gasCost": 3, "depth": 1, "stack": [ @@ -19171,7 +18900,7 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x725", + "0x713", "0x160", "0x180", "0x160", @@ -19179,9 +18908,9 @@ ] }, { - "pc": 3921, + "pc": 3836, "op": "PUSH1", - "gas": 2073408, + "gas": 2073444, "gasCost": 3, "depth": 1, "stack": [ @@ -19191,16 +18920,16 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x725", + "0x713", "0x160", "0x180", "0x20" ] }, { - "pc": 3923, + "pc": 3838, "op": "DUP4", - "gas": 2073405, + "gas": 2073441, "gasCost": 3, "depth": 1, "stack": [ @@ -19210,7 +18939,7 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x725", + "0x713", "0x160", "0x180", "0x20", @@ -19218,9 +18947,9 @@ ] }, { - "pc": 3924, + "pc": 3839, "op": "ADD", - "gas": 2073402, + "gas": 2073438, "gasCost": 3, "depth": 1, "stack": [ @@ -19230,7 +18959,7 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x725", + "0x713", "0x160", "0x180", "0x20", @@ -19239,9 +18968,9 @@ ] }, { - "pc": 3925, + "pc": 3840, "op": "MSTORE", - "gas": 2073399, + "gas": 2073435, "gasCost": 6, "depth": 1, "stack": [ @@ -19251,7 +18980,7 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x725", + "0x713", "0x160", "0x180", "0x20", @@ -19259,9 +18988,9 @@ ] }, { - "pc": 3926, + "pc": 3841, "op": "PUSH3", - "gas": 2073393, + "gas": 2073429, "gasCost": 3, "depth": 1, "stack": [ @@ -19271,15 +19000,15 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x725", + "0x713", "0x160", "0x180" ] }, { - "pc": 3930, + "pc": 3845, "op": "DUP2", - "gas": 2073390, + "gas": 2073426, "gasCost": 3, "depth": 1, "stack": [ @@ -19289,16 +19018,16 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x725", + "0x713", "0x160", "0x180", - "0xf60" + "0xf0b" ] }, { - "pc": 3931, + "pc": 3846, "op": "PUSH3", - "gas": 2073387, + "gas": 2073423, "gasCost": 3, "depth": 1, "stack": [ @@ -19308,17 +19037,17 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x725", + "0x713", "0x160", "0x180", - "0xf60", + "0xf0b", "0x180" ] }, { - "pc": 3935, + "pc": 3850, "op": "JUMP", - "gas": 2073384, + "gas": 2073420, "gasCost": 8, "depth": 1, "stack": [ @@ -19328,18 +19057,18 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x725", + "0x713", "0x160", "0x180", - "0xf60", + "0xf0b", "0x180", - "0xf1e" + "0xec9" ] }, { - "pc": 3870, + "pc": 3785, "op": "JUMPDEST", - "gas": 2073376, + "gas": 2073412, "gasCost": 1, "depth": 1, "stack": [ @@ -19349,17 +19078,17 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x725", + "0x713", "0x160", "0x180", - "0xf60", + "0xf0b", "0x180" ] }, { - "pc": 3871, + "pc": 3786, "op": "PUSH1", - "gas": 2073375, + "gas": 2073411, "gasCost": 3, "depth": 1, "stack": [ @@ -19369,17 +19098,17 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x725", + "0x713", "0x160", "0x180", - "0xf60", + "0xf0b", "0x180" ] }, { - "pc": 3873, + "pc": 3788, "op": "PUSH3", - "gas": 2073372, + "gas": 2073408, "gasCost": 3, "depth": 1, "stack": [ @@ -19389,18 +19118,18 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x725", + "0x713", "0x160", "0x180", - "0xf60", + "0xf0b", "0x180", "0x0" ] }, { - "pc": 3877, + "pc": 3792, "op": "PUSH1", - "gas": 2073369, + "gas": 2073405, "gasCost": 3, "depth": 1, "stack": [ @@ -19410,19 +19139,19 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x725", + "0x713", "0x160", "0x180", - "0xf60", + "0xf0b", "0x180", "0x0", - "0xf2d" + "0xed8" ] }, { - "pc": 3879, + "pc": 3794, "op": "DUP4", - "gas": 2073366, + "gas": 2073402, "gasCost": 3, "depth": 1, "stack": [ @@ -19432,20 +19161,20 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x725", + "0x713", "0x160", "0x180", - "0xf60", + "0xf0b", "0x180", "0x0", - "0xf2d", + "0xed8", "0x2d" ] }, { - "pc": 3880, + "pc": 3795, "op": "PUSH3", - "gas": 2073363, + "gas": 2073399, "gasCost": 3, "depth": 1, "stack": [ @@ -19455,21 +19184,21 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x725", + "0x713", "0x160", "0x180", - "0xf60", + "0xf0b", "0x180", "0x0", - "0xf2d", + "0xed8", "0x2d", "0x180" ] }, { - "pc": 3884, + "pc": 3799, "op": "JUMP", - "gas": 2073360, + "gas": 2073396, "gasCost": 8, "depth": 1, "stack": [ @@ -19479,22 +19208,22 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x725", + "0x713", "0x160", "0x180", - "0xf60", + "0xf0b", "0x180", "0x0", - "0xf2d", + "0xed8", "0x2d", "0x180", - "0xaf5" + "0xad3" ] }, { - "pc": 2805, + "pc": 2771, "op": "JUMPDEST", - "gas": 2073352, + "gas": 2073388, "gasCost": 1, "depth": 1, "stack": [ @@ -19504,21 +19233,21 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x725", + "0x713", "0x160", "0x180", - "0xf60", + "0xf0b", "0x180", "0x0", - "0xf2d", + "0xed8", "0x2d", "0x180" ] }, { - "pc": 2806, + "pc": 2772, "op": "PUSH1", - "gas": 2073351, + "gas": 2073387, "gasCost": 3, "depth": 1, "stack": [ @@ -19528,21 +19257,21 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x725", + "0x713", "0x160", "0x180", - "0xf60", + "0xf0b", "0x180", "0x0", - "0xf2d", + "0xed8", "0x2d", "0x180" ] }, { - "pc": 2808, + "pc": 2774, "op": "DUP3", - "gas": 2073348, + "gas": 2073384, "gasCost": 3, "depth": 1, "stack": [ @@ -19552,22 +19281,22 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x725", + "0x713", "0x160", "0x180", - "0xf60", + "0xf0b", "0x180", "0x0", - "0xf2d", + "0xed8", "0x2d", "0x180", "0x0" ] }, { - "pc": 2809, + "pc": 2775, "op": "DUP3", - "gas": 2073345, + "gas": 2073381, "gasCost": 3, "depth": 1, "stack": [ @@ -19577,13 +19306,13 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x725", + "0x713", "0x160", "0x180", - "0xf60", + "0xf0b", "0x180", "0x0", - "0xf2d", + "0xed8", "0x2d", "0x180", "0x0", @@ -19591,9 +19320,9 @@ ] }, { - "pc": 2810, + "pc": 2776, "op": "MSTORE", - "gas": 2073342, + "gas": 2073378, "gasCost": 6, "depth": 1, "stack": [ @@ -19603,13 +19332,13 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x725", + "0x713", "0x160", "0x180", - "0xf60", + "0xf0b", "0x180", "0x0", - "0xf2d", + "0xed8", "0x2d", "0x180", "0x0", @@ -19618,9 +19347,9 @@ ] }, { - "pc": 2811, + "pc": 2777, "op": "PUSH1", - "gas": 2073336, + "gas": 2073372, "gasCost": 3, "depth": 1, "stack": [ @@ -19630,22 +19359,22 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x725", + "0x713", "0x160", "0x180", - "0xf60", + "0xf0b", "0x180", "0x0", - "0xf2d", + "0xed8", "0x2d", "0x180", "0x0" ] }, { - "pc": 2813, + "pc": 2779, "op": "DUP3", - "gas": 2073333, + "gas": 2073369, "gasCost": 3, "depth": 1, "stack": [ @@ -19655,13 +19384,13 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x725", + "0x713", "0x160", "0x180", - "0xf60", + "0xf0b", "0x180", "0x0", - "0xf2d", + "0xed8", "0x2d", "0x180", "0x0", @@ -19669,9 +19398,9 @@ ] }, { - "pc": 2814, + "pc": 2780, "op": "ADD", - "gas": 2073330, + "gas": 2073366, "gasCost": 3, "depth": 1, "stack": [ @@ -19681,13 +19410,13 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x725", + "0x713", "0x160", "0x180", - "0xf60", + "0xf0b", "0x180", "0x0", - "0xf2d", + "0xed8", "0x2d", "0x180", "0x0", @@ -19696,9 +19425,9 @@ ] }, { - "pc": 2815, + "pc": 2781, "op": "SWAP1", - "gas": 2073327, + "gas": 2073363, "gasCost": 3, "depth": 1, "stack": [ @@ -19708,13 +19437,13 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x725", + "0x713", "0x160", "0x180", - "0xf60", + "0xf0b", "0x180", "0x0", - "0xf2d", + "0xed8", "0x2d", "0x180", "0x0", @@ -19722,9 +19451,9 @@ ] }, { - "pc": 2816, + "pc": 2782, "op": "POP", - "gas": 2073324, + "gas": 2073360, "gasCost": 2, "depth": 1, "stack": [ @@ -19734,13 +19463,13 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x725", + "0x713", "0x160", "0x180", - "0xf60", + "0xf0b", "0x180", "0x0", - "0xf2d", + "0xed8", "0x2d", "0x180", "0x1a0", @@ -19748,9 +19477,9 @@ ] }, { - "pc": 2817, + "pc": 2783, "op": "SWAP3", - "gas": 2073322, + "gas": 2073358, "gasCost": 3, "depth": 1, "stack": [ @@ -19760,22 +19489,22 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x725", + "0x713", "0x160", "0x180", - "0xf60", + "0xf0b", "0x180", "0x0", - "0xf2d", + "0xed8", "0x2d", "0x180", "0x1a0" ] }, { - "pc": 2818, + "pc": 2784, "op": "SWAP2", - "gas": 2073319, + "gas": 2073355, "gasCost": 3, "depth": 1, "stack": [ @@ -19785,22 +19514,22 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x725", + "0x713", "0x160", "0x180", - "0xf60", + "0xf0b", "0x180", "0x0", "0x1a0", "0x2d", "0x180", - "0xf2d" + "0xed8" ] }, { - "pc": 2819, + "pc": 2785, "op": "POP", - "gas": 2073316, + "gas": 2073352, "gasCost": 2, "depth": 1, "stack": [ @@ -19810,22 +19539,22 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x725", + "0x713", "0x160", "0x180", - "0xf60", + "0xf0b", "0x180", "0x0", "0x1a0", - "0xf2d", + "0xed8", "0x180", "0x2d" ] }, { - "pc": 2820, + "pc": 2786, "op": "POP", - "gas": 2073314, + "gas": 2073350, "gasCost": 2, "depth": 1, "stack": [ @@ -19835,21 +19564,21 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x725", + "0x713", "0x160", "0x180", - "0xf60", + "0xf0b", "0x180", "0x0", "0x1a0", - "0xf2d", + "0xed8", "0x180" ] }, { - "pc": 2821, + "pc": 2787, "op": "JUMP", - "gas": 2073312, + "gas": 2073348, "gasCost": 8, "depth": 1, "stack": [ @@ -19859,20 +19588,20 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x725", + "0x713", "0x160", "0x180", - "0xf60", + "0xf0b", "0x180", "0x0", "0x1a0", - "0xf2d" + "0xed8" ] }, { - "pc": 3885, + "pc": 3800, "op": "JUMPDEST", - "gas": 2073304, + "gas": 2073340, "gasCost": 1, "depth": 1, "stack": [ @@ -19882,19 +19611,19 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x725", + "0x713", "0x160", "0x180", - "0xf60", + "0xf0b", "0x180", "0x0", "0x1a0" ] }, { - "pc": 3886, + "pc": 3801, "op": "SWAP2", - "gas": 2073303, + "gas": 2073339, "gasCost": 3, "depth": 1, "stack": [ @@ -19904,19 +19633,19 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x725", + "0x713", "0x160", "0x180", - "0xf60", + "0xf0b", "0x180", "0x0", "0x1a0" ] }, { - "pc": 3887, + "pc": 3802, "op": "POP", - "gas": 2073300, + "gas": 2073336, "gasCost": 2, "depth": 1, "stack": [ @@ -19926,19 +19655,19 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x725", + "0x713", "0x160", "0x180", - "0xf60", + "0xf0b", "0x1a0", "0x0", "0x180" ] }, { - "pc": 3888, + "pc": 3803, "op": "PUSH3", - "gas": 2073298, + "gas": 2073334, "gasCost": 3, "depth": 1, "stack": [ @@ -19948,18 +19677,18 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x725", + "0x713", "0x160", "0x180", - "0xf60", + "0xf0b", "0x1a0", "0x0" ] }, { - "pc": 3892, + "pc": 3807, "op": "DUP3", - "gas": 2073295, + "gas": 2073331, "gasCost": 3, "depth": 1, "stack": [ @@ -19969,19 +19698,19 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x725", + "0x713", "0x160", "0x180", - "0xf60", + "0xf0b", "0x1a0", "0x0", - "0xf3a" + "0xee5" ] }, { - "pc": 3893, + "pc": 3808, "op": "PUSH3", - "gas": 2073292, + "gas": 2073328, "gasCost": 3, "depth": 1, "stack": [ @@ -19991,20 +19720,20 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x725", + "0x713", "0x160", "0x180", - "0xf60", + "0xf0b", "0x1a0", "0x0", - "0xf3a", + "0xee5", "0x1a0" ] }, { - "pc": 3897, + "pc": 3812, "op": "JUMP", - "gas": 2073289, + "gas": 2073325, "gasCost": 8, "depth": 1, "stack": [ @@ -20014,21 +19743,21 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x725", + "0x713", "0x160", "0x180", - "0xf60", + "0xf0b", "0x1a0", "0x0", - "0xf3a", + "0xee5", "0x1a0", - "0xecf" + "0xe7a" ] }, { - "pc": 3791, + "pc": 3706, "op": "JUMPDEST", - "gas": 2073281, + "gas": 2073317, "gasCost": 1, "depth": 1, "stack": [ @@ -20038,20 +19767,20 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x725", + "0x713", "0x160", "0x180", - "0xf60", + "0xf0b", "0x1a0", "0x0", - "0xf3a", + "0xee5", "0x1a0" ] }, { - "pc": 3792, + "pc": 3707, "op": "PUSH32", - "gas": 2073280, + "gas": 2073316, "gasCost": 3, "depth": 1, "stack": [ @@ -20061,20 +19790,20 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x725", + "0x713", "0x160", "0x180", - "0xf60", + "0xf0b", "0x1a0", "0x0", - "0xf3a", + "0xee5", "0x1a0" ] }, { - "pc": 3825, + "pc": 3740, "op": "PUSH1", - "gas": 2073277, + "gas": 2073313, "gasCost": 3, "depth": 1, "stack": [ @@ -20084,21 +19813,21 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x725", + "0x713", "0x160", "0x180", - "0xf60", + "0xf0b", "0x1a0", "0x0", - "0xf3a", + "0xee5", "0x1a0", "0x45787465726e616c2063616c6c206661696c656420776974686f757420616e20" ] }, { - "pc": 3827, + "pc": 3742, "op": "DUP3", - "gas": 2073274, + "gas": 2073310, "gasCost": 3, "depth": 1, "stack": [ @@ -20108,22 +19837,22 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x725", + "0x713", "0x160", "0x180", - "0xf60", + "0xf0b", "0x1a0", "0x0", - "0xf3a", + "0xee5", "0x1a0", "0x45787465726e616c2063616c6c206661696c656420776974686f757420616e20", "0x0" ] }, { - "pc": 3828, + "pc": 3743, "op": "ADD", - "gas": 2073271, + "gas": 2073307, "gasCost": 3, "depth": 1, "stack": [ @@ -20133,13 +19862,13 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x725", + "0x713", "0x160", "0x180", - "0xf60", + "0xf0b", "0x1a0", "0x0", - "0xf3a", + "0xee5", "0x1a0", "0x45787465726e616c2063616c6c206661696c656420776974686f757420616e20", "0x0", @@ -20147,9 +19876,9 @@ ] }, { - "pc": 3829, + "pc": 3744, "op": "MSTORE", - "gas": 2073268, + "gas": 2073304, "gasCost": 6, "depth": 1, "stack": [ @@ -20159,22 +19888,22 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x725", + "0x713", "0x160", "0x180", - "0xf60", + "0xf0b", "0x1a0", "0x0", - "0xf3a", + "0xee5", "0x1a0", "0x45787465726e616c2063616c6c206661696c656420776974686f757420616e20", "0x1a0" ] }, { - "pc": 3830, + "pc": 3745, "op": "PUSH32", - "gas": 2073262, + "gas": 2073298, "gasCost": 3, "depth": 1, "stack": [ @@ -20184,20 +19913,20 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x725", + "0x713", "0x160", "0x180", - "0xf60", + "0xf0b", "0x1a0", "0x0", - "0xf3a", + "0xee5", "0x1a0" ] }, { - "pc": 3863, + "pc": 3778, "op": "PUSH1", - "gas": 2073259, + "gas": 2073295, "gasCost": 3, "depth": 1, "stack": [ @@ -20207,21 +19936,21 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x725", + "0x713", "0x160", "0x180", - "0xf60", + "0xf0b", "0x1a0", "0x0", - "0xf3a", + "0xee5", "0x1a0", "0x6572726f72206d65737361676500000000000000000000000000000000000000" ] }, { - "pc": 3865, + "pc": 3780, "op": "DUP3", - "gas": 2073256, + "gas": 2073292, "gasCost": 3, "depth": 1, "stack": [ @@ -20231,22 +19960,22 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x725", + "0x713", "0x160", "0x180", - "0xf60", + "0xf0b", "0x1a0", "0x0", - "0xf3a", + "0xee5", "0x1a0", "0x6572726f72206d65737361676500000000000000000000000000000000000000", "0x20" ] }, { - "pc": 3866, + "pc": 3781, "op": "ADD", - "gas": 2073253, + "gas": 2073289, "gasCost": 3, "depth": 1, "stack": [ @@ -20256,13 +19985,13 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x725", + "0x713", "0x160", "0x180", - "0xf60", + "0xf0b", "0x1a0", "0x0", - "0xf3a", + "0xee5", "0x1a0", "0x6572726f72206d65737361676500000000000000000000000000000000000000", "0x20", @@ -20270,9 +19999,9 @@ ] }, { - "pc": 3867, + "pc": 3782, "op": "MSTORE", - "gas": 2073250, + "gas": 2073286, "gasCost": 6, "depth": 1, "stack": [ @@ -20282,22 +20011,22 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x725", + "0x713", "0x160", "0x180", - "0xf60", + "0xf0b", "0x1a0", "0x0", - "0xf3a", + "0xee5", "0x1a0", "0x6572726f72206d65737361676500000000000000000000000000000000000000", "0x1c0" ] }, { - "pc": 3868, + "pc": 3783, "op": "POP", - "gas": 2073244, + "gas": 2073280, "gasCost": 2, "depth": 1, "stack": [ @@ -20307,20 +20036,20 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x725", + "0x713", "0x160", "0x180", - "0xf60", + "0xf0b", "0x1a0", "0x0", - "0xf3a", + "0xee5", "0x1a0" ] }, { - "pc": 3869, + "pc": 3784, "op": "JUMP", - "gas": 2073242, + "gas": 2073278, "gasCost": 8, "depth": 1, "stack": [ @@ -20330,19 +20059,19 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x725", + "0x713", "0x160", "0x180", - "0xf60", + "0xf0b", "0x1a0", "0x0", - "0xf3a" + "0xee5" ] }, { - "pc": 3898, + "pc": 3813, "op": "JUMPDEST", - "gas": 2073234, + "gas": 2073270, "gasCost": 1, "depth": 1, "stack": [ @@ -20352,18 +20081,18 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x725", + "0x713", "0x160", "0x180", - "0xf60", + "0xf0b", "0x1a0", "0x0" ] }, { - "pc": 3899, + "pc": 3814, "op": "PUSH1", - "gas": 2073233, + "gas": 2073269, "gasCost": 3, "depth": 1, "stack": [ @@ -20373,18 +20102,18 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x725", + "0x713", "0x160", "0x180", - "0xf60", + "0xf0b", "0x1a0", "0x0" ] }, { - "pc": 3901, + "pc": 3816, "op": "DUP3", - "gas": 2073230, + "gas": 2073266, "gasCost": 3, "depth": 1, "stack": [ @@ -20394,19 +20123,19 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x725", + "0x713", "0x160", "0x180", - "0xf60", + "0xf0b", "0x1a0", "0x0", "0x40" ] }, { - "pc": 3902, + "pc": 3817, "op": "ADD", - "gas": 2073227, + "gas": 2073263, "gasCost": 3, "depth": 1, "stack": [ @@ -20416,10 +20145,10 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x725", + "0x713", "0x160", "0x180", - "0xf60", + "0xf0b", "0x1a0", "0x0", "0x40", @@ -20427,9 +20156,9 @@ ] }, { - "pc": 3903, + "pc": 3818, "op": "SWAP1", - "gas": 2073224, + "gas": 2073260, "gasCost": 3, "depth": 1, "stack": [ @@ -20439,19 +20168,19 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x725", + "0x713", "0x160", "0x180", - "0xf60", + "0xf0b", "0x1a0", "0x0", "0x1e0" ] }, { - "pc": 3904, + "pc": 3819, "op": "POP", - "gas": 2073221, + "gas": 2073257, "gasCost": 2, "depth": 1, "stack": [ @@ -20461,19 +20190,19 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x725", + "0x713", "0x160", "0x180", - "0xf60", + "0xf0b", "0x1a0", "0x1e0", "0x0" ] }, { - "pc": 3905, + "pc": 3820, "op": "SWAP2", - "gas": 2073219, + "gas": 2073255, "gasCost": 3, "depth": 1, "stack": [ @@ -20483,18 +20212,18 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x725", + "0x713", "0x160", "0x180", - "0xf60", + "0xf0b", "0x1a0", "0x1e0" ] }, { - "pc": 3906, + "pc": 3821, "op": "SWAP1", - "gas": 2073216, + "gas": 2073252, "gasCost": 3, "depth": 1, "stack": [ @@ -20504,18 +20233,18 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x725", + "0x713", "0x160", "0x180", "0x1e0", "0x1a0", - "0xf60" + "0xf0b" ] }, { - "pc": 3907, + "pc": 3822, "op": "POP", - "gas": 2073213, + "gas": 2073249, "gasCost": 2, "depth": 1, "stack": [ @@ -20525,18 +20254,18 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x725", + "0x713", "0x160", "0x180", "0x1e0", - "0xf60", + "0xf0b", "0x1a0" ] }, { - "pc": 3908, + "pc": 3823, "op": "JUMP", - "gas": 2073211, + "gas": 2073247, "gasCost": 8, "depth": 1, "stack": [ @@ -20546,17 +20275,17 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x725", + "0x713", "0x160", "0x180", "0x1e0", - "0xf60" + "0xf0b" ] }, { - "pc": 3936, + "pc": 3851, "op": "JUMPDEST", - "gas": 2073203, + "gas": 2073239, "gasCost": 1, "depth": 1, "stack": [ @@ -20566,16 +20295,16 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x725", + "0x713", "0x160", "0x180", "0x1e0" ] }, { - "pc": 3937, + "pc": 3852, "op": "SWAP1", - "gas": 2073202, + "gas": 2073238, "gasCost": 3, "depth": 1, "stack": [ @@ -20585,16 +20314,16 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x725", + "0x713", "0x160", "0x180", "0x1e0" ] }, { - "pc": 3938, + "pc": 3853, "op": "POP", - "gas": 2073199, + "gas": 2073235, "gasCost": 2, "depth": 1, "stack": [ @@ -20604,16 +20333,16 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x725", + "0x713", "0x160", "0x1e0", "0x180" ] }, { - "pc": 3939, + "pc": 3854, "op": "SWAP2", - "gas": 2073197, + "gas": 2073233, "gasCost": 3, "depth": 1, "stack": [ @@ -20623,15 +20352,15 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x725", + "0x713", "0x160", "0x1e0" ] }, { - "pc": 3940, + "pc": 3855, "op": "SWAP1", - "gas": 2073194, + "gas": 2073230, "gasCost": 3, "depth": 1, "stack": [ @@ -20643,13 +20372,13 @@ "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", "0x1e0", "0x160", - "0x725" + "0x713" ] }, { - "pc": 3941, + "pc": 3856, "op": "POP", - "gas": 2073191, + "gas": 2073227, "gasCost": 2, "depth": 1, "stack": [ @@ -20660,14 +20389,14 @@ "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", "0x1e0", - "0x725", + "0x713", "0x160" ] }, { - "pc": 3942, + "pc": 3857, "op": "JUMP", - "gas": 2073189, + "gas": 2073225, "gasCost": 8, "depth": 1, "stack": [ @@ -20678,13 +20407,13 @@ "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", "0x1e0", - "0x725" + "0x713" ] }, { - "pc": 1829, + "pc": 1811, "op": "JUMPDEST", - "gas": 2073181, + "gas": 2073217, "gasCost": 1, "depth": 1, "stack": [ @@ -20698,9 +20427,9 @@ ] }, { - "pc": 1830, + "pc": 1812, "op": "PUSH1", - "gas": 2073180, + "gas": 2073216, "gasCost": 3, "depth": 1, "stack": [ @@ -20714,9 +20443,9 @@ ] }, { - "pc": 1832, + "pc": 1814, "op": "MLOAD", - "gas": 2073177, + "gas": 2073213, "gasCost": 3, "depth": 1, "stack": [ @@ -20731,9 +20460,9 @@ ] }, { - "pc": 1833, + "pc": 1815, "op": "DUP1", - "gas": 2073174, + "gas": 2073210, "gasCost": 3, "depth": 1, "stack": [ @@ -20748,9 +20477,9 @@ ] }, { - "pc": 1834, + "pc": 1816, "op": "SWAP2", - "gas": 2073171, + "gas": 2073207, "gasCost": 3, "depth": 1, "stack": [ @@ -20766,9 +20495,9 @@ ] }, { - "pc": 1835, + "pc": 1817, "op": "SUB", - "gas": 2073168, + "gas": 2073204, "gasCost": 3, "depth": 1, "stack": [ @@ -20784,9 +20513,9 @@ ] }, { - "pc": 1836, + "pc": 1818, "op": "SWAP1", - "gas": 2073165, + "gas": 2073201, "gasCost": 3, "depth": 1, "stack": [ @@ -20801,9 +20530,9 @@ ] }, { - "pc": 1837, + "pc": 1819, "op": "LOG1", - "gas": 2073162, + "gas": 2073198, "gasCost": 1774, "depth": 1, "stack": [ @@ -20818,9 +20547,9 @@ ] }, { - "pc": 1838, + "pc": 1820, "op": "POP", - "gas": 2071388, + "gas": 2071424, "gasCost": 2, "depth": 1, "stack": [ @@ -20832,9 +20561,9 @@ ] }, { - "pc": 1839, + "pc": 1821, "op": "JUMPDEST", - "gas": 2071386, + "gas": 2071422, "gasCost": 1, "depth": 1, "stack": [ @@ -20845,9 +20574,9 @@ ] }, { - "pc": 1840, + "pc": 1822, "op": "PUSH3", - "gas": 2071385, + "gas": 2071421, "gasCost": 3, "depth": 1, "stack": [ @@ -20858,9 +20587,9 @@ ] }, { - "pc": 1844, + "pc": 1826, "op": "JUMP", - "gas": 2071382, + "gas": 2071418, "gasCost": 8, "depth": 1, "stack": [ @@ -20868,13 +20597,13 @@ "0x17f", "0x3e8", "0x0", - "0x736" + "0x724" ] }, { - "pc": 1846, + "pc": 1828, "op": "JUMPDEST", - "gas": 2071374, + "gas": 2071410, "gasCost": 1, "depth": 1, "stack": [ @@ -20885,9 +20614,9 @@ ] }, { - "pc": 1847, + "pc": 1829, "op": "PUSH1", - "gas": 2071373, + "gas": 2071409, "gasCost": 3, "depth": 1, "stack": [ @@ -20898,9 +20627,9 @@ ] }, { - "pc": 1849, + "pc": 1831, "op": "PUSH3", - "gas": 2071370, + "gas": 2071406, "gasCost": 3, "depth": 1, "stack": [ @@ -20912,9 +20641,9 @@ ] }, { - "pc": 1853, + "pc": 1835, "op": "JUMPI", - "gas": 2071367, + "gas": 2071403, "gasCost": 10, "depth": 1, "stack": [ @@ -20923,13 +20652,13 @@ "0x3e8", "0x0", "0x0", - "0x77a" + "0x768" ] }, { - "pc": 1854, + "pc": 1836, "op": "PUSH1", - "gas": 2071357, + "gas": 2071393, "gasCost": 3, "depth": 1, "stack": [ @@ -20940,9 +20669,9 @@ ] }, { - "pc": 1856, + "pc": 1838, "op": "MLOAD", - "gas": 2071354, + "gas": 2071390, "gasCost": 3, "depth": 1, "stack": [ @@ -20954,9 +20683,9 @@ ] }, { - "pc": 1857, + "pc": 1839, "op": "PUSH32", - "gas": 2071351, + "gas": 2071387, "gasCost": 3, "depth": 1, "stack": [ @@ -20968,9 +20697,9 @@ ] }, { - "pc": 1890, + "pc": 1872, "op": "DUP2", - "gas": 2071348, + "gas": 2071384, "gasCost": 3, "depth": 1, "stack": [ @@ -20983,9 +20712,9 @@ ] }, { - "pc": 1891, + "pc": 1873, "op": "MSTORE", - "gas": 2071345, + "gas": 2071381, "gasCost": 3, "depth": 1, "stack": [ @@ -20999,9 +20728,9 @@ ] }, { - "pc": 1892, + "pc": 1874, "op": "PUSH1", - "gas": 2071342, + "gas": 2071378, "gasCost": 3, "depth": 1, "stack": [ @@ -21013,9 +20742,9 @@ ] }, { - "pc": 1894, + "pc": 1876, "op": "ADD", - "gas": 2071339, + "gas": 2071375, "gasCost": 3, "depth": 1, "stack": [ @@ -21028,9 +20757,9 @@ ] }, { - "pc": 1895, + "pc": 1877, "op": "PUSH3", - "gas": 2071336, + "gas": 2071372, "gasCost": 3, "depth": 1, "stack": [ @@ -21042,9 +20771,9 @@ ] }, { - "pc": 1899, + "pc": 1881, "op": "SWAP1", - "gas": 2071333, + "gas": 2071369, "gasCost": 3, "depth": 1, "stack": [ @@ -21053,13 +20782,13 @@ "0x3e8", "0x0", "0x164", - "0x771" + "0x75f" ] }, { - "pc": 1900, + "pc": 1882, "op": "PUSH3", - "gas": 2071330, + "gas": 2071366, "gasCost": 3, "depth": 1, "stack": [ @@ -21067,14 +20796,14 @@ "0x17f", "0x3e8", "0x0", - "0x771", + "0x75f", "0x164" ] }, { - "pc": 1904, + "pc": 1886, "op": "JUMP", - "gas": 2071327, + "gas": 2071363, "gasCost": 8, "depth": 1, "stack": [ @@ -21082,15 +20811,15 @@ "0x17f", "0x3e8", "0x0", - "0x771", + "0x75f", "0x164", - "0xfb7" + "0xf62" ] }, { - "pc": 4023, + "pc": 3938, "op": "JUMPDEST", - "gas": 2071319, + "gas": 2071355, "gasCost": 1, "depth": 1, "stack": [ @@ -21098,14 +20827,14 @@ "0x17f", "0x3e8", "0x0", - "0x771", + "0x75f", "0x164" ] }, { - "pc": 4024, + "pc": 3939, "op": "PUSH1", - "gas": 2071318, + "gas": 2071354, "gasCost": 3, "depth": 1, "stack": [ @@ -21113,14 +20842,14 @@ "0x17f", "0x3e8", "0x0", - "0x771", + "0x75f", "0x164" ] }, { - "pc": 4026, + "pc": 3941, "op": "PUSH1", - "gas": 2071315, + "gas": 2071351, "gasCost": 3, "depth": 1, "stack": [ @@ -21128,15 +20857,15 @@ "0x17f", "0x3e8", "0x0", - "0x771", + "0x75f", "0x164", "0x0" ] }, { - "pc": 4028, + "pc": 3943, "op": "DUP3", - "gas": 2071312, + "gas": 2071348, "gasCost": 3, "depth": 1, "stack": [ @@ -21144,16 +20873,16 @@ "0x17f", "0x3e8", "0x0", - "0x771", + "0x75f", "0x164", "0x0", "0x20" ] }, { - "pc": 4029, + "pc": 3944, "op": "ADD", - "gas": 2071309, + "gas": 2071345, "gasCost": 3, "depth": 1, "stack": [ @@ -21161,7 +20890,7 @@ "0x17f", "0x3e8", "0x0", - "0x771", + "0x75f", "0x164", "0x0", "0x20", @@ -21169,9 +20898,9 @@ ] }, { - "pc": 4030, + "pc": 3945, "op": "SWAP1", - "gas": 2071306, + "gas": 2071342, "gasCost": 3, "depth": 1, "stack": [ @@ -21179,16 +20908,16 @@ "0x17f", "0x3e8", "0x0", - "0x771", + "0x75f", "0x164", "0x0", "0x184" ] }, { - "pc": 4031, + "pc": 3946, "op": "POP", - "gas": 2071303, + "gas": 2071339, "gasCost": 2, "depth": 1, "stack": [ @@ -21196,16 +20925,16 @@ "0x17f", "0x3e8", "0x0", - "0x771", + "0x75f", "0x164", "0x184", "0x0" ] }, { - "pc": 4032, + "pc": 3947, "op": "DUP2", - "gas": 2071301, + "gas": 2071337, "gasCost": 3, "depth": 1, "stack": [ @@ -21213,15 +20942,15 @@ "0x17f", "0x3e8", "0x0", - "0x771", + "0x75f", "0x164", "0x184" ] }, { - "pc": 4033, + "pc": 3948, "op": "DUP2", - "gas": 2071298, + "gas": 2071334, "gasCost": 3, "depth": 1, "stack": [ @@ -21229,16 +20958,16 @@ "0x17f", "0x3e8", "0x0", - "0x771", + "0x75f", "0x164", "0x184", "0x164" ] }, { - "pc": 4034, + "pc": 3949, "op": "SUB", - "gas": 2071295, + "gas": 2071331, "gasCost": 3, "depth": 1, "stack": [ @@ -21246,7 +20975,7 @@ "0x17f", "0x3e8", "0x0", - "0x771", + "0x75f", "0x164", "0x184", "0x164", @@ -21254,9 +20983,9 @@ ] }, { - "pc": 4035, + "pc": 3950, "op": "PUSH1", - "gas": 2071292, + "gas": 2071328, "gasCost": 3, "depth": 1, "stack": [ @@ -21264,16 +20993,16 @@ "0x17f", "0x3e8", "0x0", - "0x771", + "0x75f", "0x164", "0x184", "0x20" ] }, { - "pc": 4037, + "pc": 3952, "op": "DUP4", - "gas": 2071289, + "gas": 2071325, "gasCost": 3, "depth": 1, "stack": [ @@ -21281,7 +21010,7 @@ "0x17f", "0x3e8", "0x0", - "0x771", + "0x75f", "0x164", "0x184", "0x20", @@ -21289,9 +21018,9 @@ ] }, { - "pc": 4038, + "pc": 3953, "op": "ADD", - "gas": 2071286, + "gas": 2071322, "gasCost": 3, "depth": 1, "stack": [ @@ -21299,7 +21028,7 @@ "0x17f", "0x3e8", "0x0", - "0x771", + "0x75f", "0x164", "0x184", "0x20", @@ -21308,9 +21037,9 @@ ] }, { - "pc": 4039, + "pc": 3954, "op": "MSTORE", - "gas": 2071283, + "gas": 2071319, "gasCost": 3, "depth": 1, "stack": [ @@ -21318,7 +21047,7 @@ "0x17f", "0x3e8", "0x0", - "0x771", + "0x75f", "0x164", "0x184", "0x20", @@ -21326,9 +21055,9 @@ ] }, { - "pc": 4040, + "pc": 3955, "op": "PUSH3", - "gas": 2071280, + "gas": 2071316, "gasCost": 3, "depth": 1, "stack": [ @@ -21336,15 +21065,15 @@ "0x17f", "0x3e8", "0x0", - "0x771", + "0x75f", "0x164", "0x184" ] }, { - "pc": 4044, + "pc": 3959, "op": "DUP2", - "gas": 2071277, + "gas": 2071313, "gasCost": 3, "depth": 1, "stack": [ @@ -21352,16 +21081,16 @@ "0x17f", "0x3e8", "0x0", - "0x771", + "0x75f", "0x164", "0x184", - "0xfd2" + "0xf7d" ] }, { - "pc": 4045, + "pc": 3960, "op": "PUSH3", - "gas": 2071274, + "gas": 2071310, "gasCost": 3, "depth": 1, "stack": [ @@ -21369,17 +21098,17 @@ "0x17f", "0x3e8", "0x0", - "0x771", + "0x75f", "0x164", "0x184", - "0xfd2", + "0xf7d", "0x184" ] }, { - "pc": 4049, + "pc": 3964, "op": "JUMP", - "gas": 2071271, + "gas": 2071307, "gasCost": 8, "depth": 1, "stack": [ @@ -21387,18 +21116,18 @@ "0x17f", "0x3e8", "0x0", - "0x771", + "0x75f", "0x164", "0x184", - "0xfd2", + "0xf7d", "0x184", - "0xf90" + "0xf3b" ] }, { - "pc": 3984, + "pc": 3899, "op": "JUMPDEST", - "gas": 2071263, + "gas": 2071299, "gasCost": 1, "depth": 1, "stack": [ @@ -21406,17 +21135,17 @@ "0x17f", "0x3e8", "0x0", - "0x771", + "0x75f", "0x164", "0x184", - "0xfd2", + "0xf7d", "0x184" ] }, { - "pc": 3985, + "pc": 3900, "op": "PUSH1", - "gas": 2071262, + "gas": 2071298, "gasCost": 3, "depth": 1, "stack": [ @@ -21424,17 +21153,17 @@ "0x17f", "0x3e8", "0x0", - "0x771", + "0x75f", "0x164", "0x184", - "0xfd2", + "0xf7d", "0x184" ] }, { - "pc": 3987, + "pc": 3902, "op": "PUSH3", - "gas": 2071259, + "gas": 2071295, "gasCost": 3, "depth": 1, "stack": [ @@ -21442,18 +21171,18 @@ "0x17f", "0x3e8", "0x0", - "0x771", + "0x75f", "0x164", "0x184", - "0xfd2", + "0xf7d", "0x184", "0x0" ] }, { - "pc": 3991, + "pc": 3906, "op": "PUSH1", - "gas": 2071256, + "gas": 2071292, "gasCost": 3, "depth": 1, "stack": [ @@ -21461,19 +21190,19 @@ "0x17f", "0x3e8", "0x0", - "0x771", + "0x75f", "0x164", "0x184", - "0xfd2", + "0xf7d", "0x184", "0x0", - "0xf9f" + "0xf4a" ] }, { - "pc": 3993, + "pc": 3908, "op": "DUP4", - "gas": 2071253, + "gas": 2071289, "gasCost": 3, "depth": 1, "stack": [ @@ -21481,20 +21210,20 @@ "0x17f", "0x3e8", "0x0", - "0x771", + "0x75f", "0x164", "0x184", - "0xfd2", + "0xf7d", "0x184", "0x0", - "0xf9f", + "0xf4a", "0x14" ] }, { - "pc": 3994, + "pc": 3909, "op": "PUSH3", - "gas": 2071250, + "gas": 2071286, "gasCost": 3, "depth": 1, "stack": [ @@ -21502,21 +21231,21 @@ "0x17f", "0x3e8", "0x0", - "0x771", + "0x75f", "0x164", "0x184", - "0xfd2", + "0xf7d", "0x184", "0x0", - "0xf9f", + "0xf4a", "0x14", "0x184" ] }, { - "pc": 3998, + "pc": 3913, "op": "JUMP", - "gas": 2071247, + "gas": 2071283, "gasCost": 8, "depth": 1, "stack": [ @@ -21524,22 +21253,22 @@ "0x17f", "0x3e8", "0x0", - "0x771", + "0x75f", "0x164", "0x184", - "0xfd2", + "0xf7d", "0x184", "0x0", - "0xf9f", + "0xf4a", "0x14", "0x184", - "0xaf5" + "0xad3" ] }, { - "pc": 2805, + "pc": 2771, "op": "JUMPDEST", - "gas": 2071239, + "gas": 2071275, "gasCost": 1, "depth": 1, "stack": [ @@ -21547,21 +21276,21 @@ "0x17f", "0x3e8", "0x0", - "0x771", + "0x75f", "0x164", "0x184", - "0xfd2", + "0xf7d", "0x184", "0x0", - "0xf9f", + "0xf4a", "0x14", "0x184" ] }, { - "pc": 2806, + "pc": 2772, "op": "PUSH1", - "gas": 2071238, + "gas": 2071274, "gasCost": 3, "depth": 1, "stack": [ @@ -21569,21 +21298,21 @@ "0x17f", "0x3e8", "0x0", - "0x771", + "0x75f", "0x164", "0x184", - "0xfd2", + "0xf7d", "0x184", "0x0", - "0xf9f", + "0xf4a", "0x14", "0x184" ] }, { - "pc": 2808, + "pc": 2774, "op": "DUP3", - "gas": 2071235, + "gas": 2071271, "gasCost": 3, "depth": 1, "stack": [ @@ -21591,22 +21320,22 @@ "0x17f", "0x3e8", "0x0", - "0x771", + "0x75f", "0x164", "0x184", - "0xfd2", + "0xf7d", "0x184", "0x0", - "0xf9f", + "0xf4a", "0x14", "0x184", "0x0" ] }, { - "pc": 2809, + "pc": 2775, "op": "DUP3", - "gas": 2071232, + "gas": 2071268, "gasCost": 3, "depth": 1, "stack": [ @@ -21614,13 +21343,13 @@ "0x17f", "0x3e8", "0x0", - "0x771", + "0x75f", "0x164", "0x184", - "0xfd2", + "0xf7d", "0x184", "0x0", - "0xf9f", + "0xf4a", "0x14", "0x184", "0x0", @@ -21628,9 +21357,9 @@ ] }, { - "pc": 2810, + "pc": 2776, "op": "MSTORE", - "gas": 2071229, + "gas": 2071265, "gasCost": 3, "depth": 1, "stack": [ @@ -21638,13 +21367,13 @@ "0x17f", "0x3e8", "0x0", - "0x771", + "0x75f", "0x164", "0x184", - "0xfd2", + "0xf7d", "0x184", "0x0", - "0xf9f", + "0xf4a", "0x14", "0x184", "0x0", @@ -21653,9 +21382,9 @@ ] }, { - "pc": 2811, + "pc": 2777, "op": "PUSH1", - "gas": 2071226, + "gas": 2071262, "gasCost": 3, "depth": 1, "stack": [ @@ -21663,22 +21392,22 @@ "0x17f", "0x3e8", "0x0", - "0x771", + "0x75f", "0x164", "0x184", - "0xfd2", + "0xf7d", "0x184", "0x0", - "0xf9f", + "0xf4a", "0x14", "0x184", "0x0" ] }, { - "pc": 2813, + "pc": 2779, "op": "DUP3", - "gas": 2071223, + "gas": 2071259, "gasCost": 3, "depth": 1, "stack": [ @@ -21686,13 +21415,13 @@ "0x17f", "0x3e8", "0x0", - "0x771", + "0x75f", "0x164", "0x184", - "0xfd2", + "0xf7d", "0x184", "0x0", - "0xf9f", + "0xf4a", "0x14", "0x184", "0x0", @@ -21700,9 +21429,9 @@ ] }, { - "pc": 2814, + "pc": 2780, "op": "ADD", - "gas": 2071220, + "gas": 2071256, "gasCost": 3, "depth": 1, "stack": [ @@ -21710,13 +21439,13 @@ "0x17f", "0x3e8", "0x0", - "0x771", + "0x75f", "0x164", "0x184", - "0xfd2", + "0xf7d", "0x184", "0x0", - "0xf9f", + "0xf4a", "0x14", "0x184", "0x0", @@ -21725,9 +21454,9 @@ ] }, { - "pc": 2815, + "pc": 2781, "op": "SWAP1", - "gas": 2071217, + "gas": 2071253, "gasCost": 3, "depth": 1, "stack": [ @@ -21735,13 +21464,13 @@ "0x17f", "0x3e8", "0x0", - "0x771", + "0x75f", "0x164", "0x184", - "0xfd2", + "0xf7d", "0x184", "0x0", - "0xf9f", + "0xf4a", "0x14", "0x184", "0x0", @@ -21749,9 +21478,9 @@ ] }, { - "pc": 2816, + "pc": 2782, "op": "POP", - "gas": 2071214, + "gas": 2071250, "gasCost": 2, "depth": 1, "stack": [ @@ -21759,13 +21488,13 @@ "0x17f", "0x3e8", "0x0", - "0x771", + "0x75f", "0x164", "0x184", - "0xfd2", + "0xf7d", "0x184", "0x0", - "0xf9f", + "0xf4a", "0x14", "0x184", "0x1a4", @@ -21773,9 +21502,9 @@ ] }, { - "pc": 2817, + "pc": 2783, "op": "SWAP3", - "gas": 2071212, + "gas": 2071248, "gasCost": 3, "depth": 1, "stack": [ @@ -21783,22 +21512,22 @@ "0x17f", "0x3e8", "0x0", - "0x771", + "0x75f", "0x164", "0x184", - "0xfd2", + "0xf7d", "0x184", "0x0", - "0xf9f", + "0xf4a", "0x14", "0x184", "0x1a4" ] }, { - "pc": 2818, + "pc": 2784, "op": "SWAP2", - "gas": 2071209, + "gas": 2071245, "gasCost": 3, "depth": 1, "stack": [ @@ -21806,22 +21535,22 @@ "0x17f", "0x3e8", "0x0", - "0x771", + "0x75f", "0x164", "0x184", - "0xfd2", + "0xf7d", "0x184", "0x0", "0x1a4", "0x14", "0x184", - "0xf9f" + "0xf4a" ] }, { - "pc": 2819, + "pc": 2785, "op": "POP", - "gas": 2071206, + "gas": 2071242, "gasCost": 2, "depth": 1, "stack": [ @@ -21829,22 +21558,22 @@ "0x17f", "0x3e8", "0x0", - "0x771", + "0x75f", "0x164", "0x184", - "0xfd2", + "0xf7d", "0x184", "0x0", "0x1a4", - "0xf9f", + "0xf4a", "0x184", "0x14" ] }, { - "pc": 2820, + "pc": 2786, "op": "POP", - "gas": 2071204, + "gas": 2071240, "gasCost": 2, "depth": 1, "stack": [ @@ -21852,21 +21581,21 @@ "0x17f", "0x3e8", "0x0", - "0x771", + "0x75f", "0x164", "0x184", - "0xfd2", + "0xf7d", "0x184", "0x0", "0x1a4", - "0xf9f", + "0xf4a", "0x184" ] }, { - "pc": 2821, + "pc": 2787, "op": "JUMP", - "gas": 2071202, + "gas": 2071238, "gasCost": 8, "depth": 1, "stack": [ @@ -21874,20 +21603,20 @@ "0x17f", "0x3e8", "0x0", - "0x771", + "0x75f", "0x164", "0x184", - "0xfd2", + "0xf7d", "0x184", "0x0", "0x1a4", - "0xf9f" + "0xf4a" ] }, { - "pc": 3999, + "pc": 3914, "op": "JUMPDEST", - "gas": 2071194, + "gas": 2071230, "gasCost": 1, "depth": 1, "stack": [ @@ -21895,19 +21624,19 @@ "0x17f", "0x3e8", "0x0", - "0x771", + "0x75f", "0x164", "0x184", - "0xfd2", + "0xf7d", "0x184", "0x0", "0x1a4" ] }, { - "pc": 4000, + "pc": 3915, "op": "SWAP2", - "gas": 2071193, + "gas": 2071229, "gasCost": 3, "depth": 1, "stack": [ @@ -21915,19 +21644,19 @@ "0x17f", "0x3e8", "0x0", - "0x771", + "0x75f", "0x164", "0x184", - "0xfd2", + "0xf7d", "0x184", "0x0", "0x1a4" ] }, { - "pc": 4001, + "pc": 3916, "op": "POP", - "gas": 2071190, + "gas": 2071226, "gasCost": 2, "depth": 1, "stack": [ @@ -21935,19 +21664,19 @@ "0x17f", "0x3e8", "0x0", - "0x771", + "0x75f", "0x164", "0x184", - "0xfd2", + "0xf7d", "0x1a4", "0x0", "0x184" ] }, { - "pc": 4002, + "pc": 3917, "op": "PUSH3", - "gas": 2071188, + "gas": 2071224, "gasCost": 3, "depth": 1, "stack": [ @@ -21955,18 +21684,18 @@ "0x17f", "0x3e8", "0x0", - "0x771", + "0x75f", "0x164", "0x184", - "0xfd2", + "0xf7d", "0x1a4", "0x0" ] }, { - "pc": 4006, + "pc": 3921, "op": "DUP3", - "gas": 2071185, + "gas": 2071221, "gasCost": 3, "depth": 1, "stack": [ @@ -21974,19 +21703,19 @@ "0x17f", "0x3e8", "0x0", - "0x771", + "0x75f", "0x164", "0x184", - "0xfd2", + "0xf7d", "0x1a4", "0x0", - "0xfac" + "0xf57" ] }, { - "pc": 4007, + "pc": 3922, "op": "PUSH3", - "gas": 2071182, + "gas": 2071218, "gasCost": 3, "depth": 1, "stack": [ @@ -21994,20 +21723,20 @@ "0x17f", "0x3e8", "0x0", - "0x771", + "0x75f", "0x164", "0x184", - "0xfd2", + "0xf7d", "0x1a4", "0x0", - "0xfac", + "0xf57", "0x1a4" ] }, { - "pc": 4011, + "pc": 3926, "op": "JUMP", - "gas": 2071179, + "gas": 2071215, "gasCost": 8, "depth": 1, "stack": [ @@ -22015,21 +21744,21 @@ "0x17f", "0x3e8", "0x0", - "0x771", + "0x75f", "0x164", "0x184", - "0xfd2", + "0xf7d", "0x1a4", "0x0", - "0xfac", + "0xf57", "0x1a4", - "0xf67" + "0xf12" ] }, { - "pc": 3943, + "pc": 3858, "op": "JUMPDEST", - "gas": 2071171, + "gas": 2071207, "gasCost": 1, "depth": 1, "stack": [ @@ -22037,20 +21766,20 @@ "0x17f", "0x3e8", "0x0", - "0x771", + "0x75f", "0x164", "0x184", - "0xfd2", + "0xf7d", "0x1a4", "0x0", - "0xfac", + "0xf57", "0x1a4" ] }, { - "pc": 3944, + "pc": 3859, "op": "PUSH32", - "gas": 2071170, + "gas": 2071206, "gasCost": 3, "depth": 1, "stack": [ @@ -22058,20 +21787,20 @@ "0x17f", "0x3e8", "0x0", - "0x771", + "0x75f", "0x164", "0x184", - "0xfd2", + "0xf7d", "0x1a4", "0x0", - "0xfac", + "0xf57", "0x1a4" ] }, { - "pc": 3977, + "pc": 3892, "op": "PUSH1", - "gas": 2071167, + "gas": 2071203, "gasCost": 3, "depth": 1, "stack": [ @@ -22079,21 +21808,21 @@ "0x17f", "0x3e8", "0x0", - "0x771", + "0x75f", "0x164", "0x184", - "0xfd2", + "0xf7d", "0x1a4", "0x0", - "0xfac", + "0xf57", "0x1a4", "0x494e53554646494349454e542042414c414e4345000000000000000000000000" ] }, { - "pc": 3979, + "pc": 3894, "op": "DUP3", - "gas": 2071164, + "gas": 2071200, "gasCost": 3, "depth": 1, "stack": [ @@ -22101,22 +21830,22 @@ "0x17f", "0x3e8", "0x0", - "0x771", + "0x75f", "0x164", "0x184", - "0xfd2", + "0xf7d", "0x1a4", "0x0", - "0xfac", + "0xf57", "0x1a4", "0x494e53554646494349454e542042414c414e4345000000000000000000000000", "0x0" ] }, { - "pc": 3980, + "pc": 3895, "op": "ADD", - "gas": 2071161, + "gas": 2071197, "gasCost": 3, "depth": 1, "stack": [ @@ -22124,13 +21853,13 @@ "0x17f", "0x3e8", "0x0", - "0x771", + "0x75f", "0x164", "0x184", - "0xfd2", + "0xf7d", "0x1a4", "0x0", - "0xfac", + "0xf57", "0x1a4", "0x494e53554646494349454e542042414c414e4345000000000000000000000000", "0x0", @@ -22138,9 +21867,9 @@ ] }, { - "pc": 3981, + "pc": 3896, "op": "MSTORE", - "gas": 2071158, + "gas": 2071194, "gasCost": 3, "depth": 1, "stack": [ @@ -22148,22 +21877,22 @@ "0x17f", "0x3e8", "0x0", - "0x771", + "0x75f", "0x164", "0x184", - "0xfd2", + "0xf7d", "0x1a4", "0x0", - "0xfac", + "0xf57", "0x1a4", "0x494e53554646494349454e542042414c414e4345000000000000000000000000", "0x1a4" ] }, { - "pc": 3982, + "pc": 3897, "op": "POP", - "gas": 2071155, + "gas": 2071191, "gasCost": 2, "depth": 1, "stack": [ @@ -22171,20 +21900,20 @@ "0x17f", "0x3e8", "0x0", - "0x771", + "0x75f", "0x164", "0x184", - "0xfd2", + "0xf7d", "0x1a4", "0x0", - "0xfac", + "0xf57", "0x1a4" ] }, { - "pc": 3983, + "pc": 3898, "op": "JUMP", - "gas": 2071153, + "gas": 2071189, "gasCost": 8, "depth": 1, "stack": [ @@ -22192,19 +21921,19 @@ "0x17f", "0x3e8", "0x0", - "0x771", + "0x75f", "0x164", "0x184", - "0xfd2", + "0xf7d", "0x1a4", "0x0", - "0xfac" + "0xf57" ] }, { - "pc": 4012, + "pc": 3927, "op": "JUMPDEST", - "gas": 2071145, + "gas": 2071181, "gasCost": 1, "depth": 1, "stack": [ @@ -22212,18 +21941,18 @@ "0x17f", "0x3e8", "0x0", - "0x771", + "0x75f", "0x164", "0x184", - "0xfd2", + "0xf7d", "0x1a4", "0x0" ] }, { - "pc": 4013, + "pc": 3928, "op": "PUSH1", - "gas": 2071144, + "gas": 2071180, "gasCost": 3, "depth": 1, "stack": [ @@ -22231,18 +21960,18 @@ "0x17f", "0x3e8", "0x0", - "0x771", + "0x75f", "0x164", "0x184", - "0xfd2", + "0xf7d", "0x1a4", "0x0" ] }, { - "pc": 4015, + "pc": 3930, "op": "DUP3", - "gas": 2071141, + "gas": 2071177, "gasCost": 3, "depth": 1, "stack": [ @@ -22250,19 +21979,19 @@ "0x17f", "0x3e8", "0x0", - "0x771", + "0x75f", "0x164", "0x184", - "0xfd2", + "0xf7d", "0x1a4", "0x0", "0x20" ] }, { - "pc": 4016, + "pc": 3931, "op": "ADD", - "gas": 2071138, + "gas": 2071174, "gasCost": 3, "depth": 1, "stack": [ @@ -22270,10 +21999,10 @@ "0x17f", "0x3e8", "0x0", - "0x771", + "0x75f", "0x164", "0x184", - "0xfd2", + "0xf7d", "0x1a4", "0x0", "0x20", @@ -22281,9 +22010,9 @@ ] }, { - "pc": 4017, + "pc": 3932, "op": "SWAP1", - "gas": 2071135, + "gas": 2071171, "gasCost": 3, "depth": 1, "stack": [ @@ -22291,19 +22020,19 @@ "0x17f", "0x3e8", "0x0", - "0x771", + "0x75f", "0x164", "0x184", - "0xfd2", + "0xf7d", "0x1a4", "0x0", "0x1c4" ] }, { - "pc": 4018, + "pc": 3933, "op": "POP", - "gas": 2071132, + "gas": 2071168, "gasCost": 2, "depth": 1, "stack": [ @@ -22311,19 +22040,19 @@ "0x17f", "0x3e8", "0x0", - "0x771", + "0x75f", "0x164", "0x184", - "0xfd2", + "0xf7d", "0x1a4", "0x1c4", "0x0" ] }, { - "pc": 4019, + "pc": 3934, "op": "SWAP2", - "gas": 2071130, + "gas": 2071166, "gasCost": 3, "depth": 1, "stack": [ @@ -22331,18 +22060,18 @@ "0x17f", "0x3e8", "0x0", - "0x771", + "0x75f", "0x164", "0x184", - "0xfd2", + "0xf7d", "0x1a4", "0x1c4" ] }, { - "pc": 4020, + "pc": 3935, "op": "SWAP1", - "gas": 2071127, + "gas": 2071163, "gasCost": 3, "depth": 1, "stack": [ @@ -22350,18 +22079,18 @@ "0x17f", "0x3e8", "0x0", - "0x771", + "0x75f", "0x164", "0x184", "0x1c4", "0x1a4", - "0xfd2" + "0xf7d" ] }, { - "pc": 4021, + "pc": 3936, "op": "POP", - "gas": 2071124, + "gas": 2071160, "gasCost": 2, "depth": 1, "stack": [ @@ -22369,18 +22098,18 @@ "0x17f", "0x3e8", "0x0", - "0x771", + "0x75f", "0x164", "0x184", "0x1c4", - "0xfd2", + "0xf7d", "0x1a4" ] }, { - "pc": 4022, + "pc": 3937, "op": "JUMP", - "gas": 2071122, + "gas": 2071158, "gasCost": 8, "depth": 1, "stack": [ @@ -22388,17 +22117,17 @@ "0x17f", "0x3e8", "0x0", - "0x771", + "0x75f", "0x164", "0x184", "0x1c4", - "0xfd2" + "0xf7d" ] }, { - "pc": 4050, + "pc": 3965, "op": "JUMPDEST", - "gas": 2071114, + "gas": 2071150, "gasCost": 1, "depth": 1, "stack": [ @@ -22406,16 +22135,16 @@ "0x17f", "0x3e8", "0x0", - "0x771", + "0x75f", "0x164", "0x184", "0x1c4" ] }, { - "pc": 4051, + "pc": 3966, "op": "SWAP1", - "gas": 2071113, + "gas": 2071149, "gasCost": 3, "depth": 1, "stack": [ @@ -22423,16 +22152,16 @@ "0x17f", "0x3e8", "0x0", - "0x771", + "0x75f", "0x164", "0x184", "0x1c4" ] }, { - "pc": 4052, + "pc": 3967, "op": "POP", - "gas": 2071110, + "gas": 2071146, "gasCost": 2, "depth": 1, "stack": [ @@ -22440,16 +22169,16 @@ "0x17f", "0x3e8", "0x0", - "0x771", + "0x75f", "0x164", "0x1c4", "0x184" ] }, { - "pc": 4053, + "pc": 3968, "op": "SWAP2", - "gas": 2071108, + "gas": 2071144, "gasCost": 3, "depth": 1, "stack": [ @@ -22457,15 +22186,15 @@ "0x17f", "0x3e8", "0x0", - "0x771", + "0x75f", "0x164", "0x1c4" ] }, { - "pc": 4054, + "pc": 3969, "op": "SWAP1", - "gas": 2071105, + "gas": 2071141, "gasCost": 3, "depth": 1, "stack": [ @@ -22475,13 +22204,13 @@ "0x0", "0x1c4", "0x164", - "0x771" + "0x75f" ] }, { - "pc": 4055, + "pc": 3970, "op": "POP", - "gas": 2071102, + "gas": 2071138, "gasCost": 2, "depth": 1, "stack": [ @@ -22490,14 +22219,14 @@ "0x3e8", "0x0", "0x1c4", - "0x771", + "0x75f", "0x164" ] }, { - "pc": 4056, + "pc": 3971, "op": "JUMP", - "gas": 2071100, + "gas": 2071136, "gasCost": 8, "depth": 1, "stack": [ @@ -22506,13 +22235,13 @@ "0x3e8", "0x0", "0x1c4", - "0x771" + "0x75f" ] }, { - "pc": 1905, + "pc": 1887, "op": "JUMPDEST", - "gas": 2071092, + "gas": 2071128, "gasCost": 1, "depth": 1, "stack": [ @@ -22524,9 +22253,9 @@ ] }, { - "pc": 1906, + "pc": 1888, "op": "PUSH1", - "gas": 2071091, + "gas": 2071127, "gasCost": 3, "depth": 1, "stack": [ @@ -22538,9 +22267,9 @@ ] }, { - "pc": 1908, + "pc": 1890, "op": "MLOAD", - "gas": 2071088, + "gas": 2071124, "gasCost": 3, "depth": 1, "stack": [ @@ -22553,9 +22282,9 @@ ] }, { - "pc": 1909, + "pc": 1891, "op": "DUP1", - "gas": 2071085, + "gas": 2071121, "gasCost": 3, "depth": 1, "stack": [ @@ -22568,9 +22297,9 @@ ] }, { - "pc": 1910, + "pc": 1892, "op": "SWAP2", - "gas": 2071082, + "gas": 2071118, "gasCost": 3, "depth": 1, "stack": [ @@ -22584,9 +22313,9 @@ ] }, { - "pc": 1911, + "pc": 1893, "op": "SUB", - "gas": 2071079, + "gas": 2071115, "gasCost": 3, "depth": 1, "stack": [ @@ -22600,9 +22329,9 @@ ] }, { - "pc": 1912, + "pc": 1894, "op": "SWAP1", - "gas": 2071076, + "gas": 2071112, "gasCost": 3, "depth": 1, "stack": [ @@ -22615,9 +22344,9 @@ ] }, { - "pc": 1913, + "pc": 1895, "op": "REVERT", - "gas": 2071073, + "gas": 2071109, "gasCost": 0, "depth": 1, "stack": [ diff --git a/test/historicstate/hardhat/scripts/geth_traces/Tracer.readableRevert.prestateDiffTracer.json b/test/historicstate/hardhat/scripts/geth_traces/Tracer.readableRevert.prestateDiffTracer.json index adb54205d..0ac721274 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/Tracer.readableRevert.prestateDiffTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/Tracer.readableRevert.prestateDiffTracer.json @@ -1,20 +1,20 @@ { "post": { "0x0000000000000000000000000000000000000000": { - "balance": "0x1bf279a" + "balance": "0x462d20" }, "OWNER.address": { - "balance": "0x360ee5cfde418e129e", - "nonce": 84 + "balance": "0x10f075e94d02d4a43d0", + "nonce": 12 } }, "pre": { "0x0000000000000000000000000000000000000000": { - "balance": "0x1beb69b" + "balance": "0x45bc45" }, "OWNER.address": { - "balance": "0x360ee5cfde69ec5c29", - "nonce": 83 + "balance": "0x10f075e97d88a9daf8e", + "nonce": 11 } } } \ No newline at end of file diff --git a/test/historicstate/hardhat/scripts/geth_traces/Tracer.readableRevert.prestateTracer.json b/test/historicstate/hardhat/scripts/geth_traces/Tracer.readableRevert.prestateTracer.json index dac71a96a..e13af6ca0 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/Tracer.readableRevert.prestateTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/Tracer.readableRevert.prestateTracer.json @@ -1,14 +1,14 @@ { "0x0000000000000000000000000000000000000000": { - "balance": "0x1beb69b" - }, - "OWNER.address": { - "balance": "0x360ee5cfde69ec5c29", - "nonce": 83 + "balance": "0x45bc45" }, "Tracer.address": { "balance": "0x0", - "code": "0x60806040523480156200001157600080fd5b5060043610620000ac5760003560e01c80638bfe44ff116200006f5780638bfe44ff14620001975780639295436214620001a3578063a0712d6814620001af578063b69ef8a814620001e5578063c9353cb5146200020757620000ac565b806312065fe014620000b15780631c71706914620000d35780631c93908c14620000f55780633aa18088146200012b5780637f29c3941462000161575b600080fd5b620000bb62000227565b604051620000ca919062000997565b60405180910390f35b620000dd62000231565b604051620000ec9190620009cf565b60405180910390f35b6200011360048036038101906200010d919062000a2c565b62000280565b60405162000122919062000997565b60405180910390f35b62000149600480360381019062000143919062000a2c565b620002f6565b60405162000158919062000997565b60405180910390f35b6200017f600480360381019062000179919062000a2c565b620004ae565b6040516200018e919062000997565b60405180910390f35b620001a162000783565b005b620001ad620007c5565b005b620001cd6004803603810190620001c7919062000a2c565b62000802565b604051620001dc919062000997565b60405180910390f35b620001ef6200094f565b604051620001fe919062000997565b60405180910390f35b6200022560048036038101906200021f919062000ac3565b62000955565b005b6000600154905090565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620002ca919062000b56565b60405180910390a28160036000828254620002e6919062000bb7565b9250508190555060029050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405162000340919062000c64565b60405180910390a260405162000356906200096e565b604051809103906000f08015801562000373573d6000803e3d6000fd5b506000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508160016000828254620003c7919062000bb7565b92505081905550620003e7600183620003e1919062000bb7565b62000280565b50620003f262000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b81526004016200044e919062000997565b602060405180830381600087803b1580156200046957600080fd5b505af11580156200047e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004a4919062000cad565b5060019050919050565b60003073ffffffffffffffffffffffffffffffffffffffff1663929543626040518163ffffffff1660e01b815260040160006040518083038186803b158015620004f757600080fd5b505afa92505050801562000509575060015b620005f2576200051862000cec565b806308c379a014156200057d57506200053062000d87565b806200053d57506200057f565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a816040516200056e919062000eab565b60405180910390a150620005ec565b505b3d8060008114620005ad576040519150601f19603f3d011682016040523d82523d6000602084013e620005b2565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620005e29062000f45565b60405180910390a1505b620005f3565b5b3073ffffffffffffffffffffffffffffffffffffffff16638bfe44ff6040518163ffffffff1660e01b815260040160006040518083038186803b1580156200063a57600080fd5b505afa9250505080156200064c575060015b62000735576200065b62000cec565b806308c379a01415620006c057506200067362000d87565b80620006805750620006c2565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a81604051620006b1919062000eab565b60405180910390a1506200072f565b505b3d8060008114620006f0576040519150601f19603f3d011682016040523d82523d6000602084013e620006f5565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620007259062000f45565b60405180910390a1505b62000736565b5b60006200077a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007719062000fb7565b60405180910390fd5b60019050919050565b6001806040517fcf479181000000000000000000000000000000000000000000000000000000008152600401620007bc92919062001026565b60405180910390fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007f990620010a3565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200084c919062000c64565b60405180910390a2816001600082825462000868919062000bb7565b925050819055506200088860018362000882919062000bb7565b62000280565b506200089362000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b8152600401620008ef919062000997565b602060405180830381600087803b1580156200090a57600080fd5b505af11580156200091f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000945919062000cad565b5060019050919050565b60015481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b610ae380620010c683390190565b6000819050919050565b62000991816200097c565b82525050565b6000602082019050620009ae600083018462000986565b92915050565b6000819050919050565b620009c981620009b4565b82525050565b6000602082019050620009e66000830184620009be565b92915050565b6000604051905090565b600080fd5b62000a06816200097c565b811462000a1257600080fd5b50565b60008135905062000a2681620009fb565b92915050565b60006020828403121562000a455762000a44620009f6565b5b600062000a558482850162000a15565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000a8b8262000a5e565b9050919050565b62000a9d8162000a7e565b811462000aa957600080fd5b50565b60008135905062000abd8162000a92565b92915050565b60006020828403121562000adc5762000adb620009f6565b5b600062000aec8482850162000aac565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000b3e600e8362000af5565b915062000b4b8262000b06565b602082019050919050565b600060408201905062000b6d600083018462000986565b818103602083015262000b808162000b2f565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000bc4826200097c565b915062000bd1836200097c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000c095762000c0862000b88565b5b828201905092915050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b600062000c4c60058362000af5565b915062000c598262000c14565b602082019050919050565b600060408201905062000c7b600083018462000986565b818103602083015262000c8e8162000c3d565b905092915050565b60008151905062000ca781620009fb565b92915050565b60006020828403121562000cc65762000cc5620009f6565b5b600062000cd68482850162000c96565b91505092915050565b60008160e01c9050919050565b600060033d111562000d0e5760046000803e62000d0b60005162000cdf565b90505b90565b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000d5c8262000d11565b810181811067ffffffffffffffff8211171562000d7e5762000d7d62000d22565b5b80604052505050565b600060443d101562000d995762000e26565b62000da3620009ec565b60043d036004823e80513d602482011167ffffffffffffffff8211171562000dcd57505062000e26565b808201805167ffffffffffffffff81111562000ded575050505062000e26565b80602083010160043d03850181111562000e0c57505050505062000e26565b62000e1d8260200185018662000d51565b82955050505050505b90565b600081519050919050565b60005b8381101562000e5457808201518184015260208101905062000e37565b8381111562000e64576000848401525b50505050565b600062000e778262000e29565b62000e83818562000af5565b935062000e9581856020860162000e34565b62000ea08162000d11565b840191505092915050565b6000602082019050818103600083015262000ec7818462000e6a565b905092915050565b7f45787465726e616c2063616c6c206661696c656420776974686f757420616e2060008201527f6572726f72206d65737361676500000000000000000000000000000000000000602082015250565b600062000f2d602d8362000af5565b915062000f3a8262000ecf565b604082019050919050565b6000602082019050818103600083015262000f608162000f1e565b9050919050565b7f494e53554646494349454e542042414c414e4345000000000000000000000000600082015250565b600062000f9f60148362000af5565b915062000fac8262000f67565b602082019050919050565b6000602082019050818103600083015262000fd28162000f90565b9050919050565b6000819050919050565b6000819050919050565b60006200100e62001008620010028462000fd9565b62000fe3565b6200097c565b9050919050565b620010208162000fed565b82525050565b60006040820190506200103d600083018562001015565b6200104c602083018462001015565b9392505050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b60006200108b60178362000af5565b9150620010988262001053565b602082019050919050565b60006020820190508181036000830152620010be816200107c565b905091905056fe60806040526000600160006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b50600160009054906101000a900460ff161562000080576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200007790620002b5565b60405180910390fd5b60018060006101000a81548160ff021916908315150217905550620000bc701d6329f1c35ca4bfabb9f5610000000000620000c360201b60201c565b5062000482565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200010d919062000342565b60405180910390a281600080828254620001289190620003a3565b925050819055506200014e600183620001429190620003a3565b6200016960201b60201c565b506200015f620001df60201b60201c565b5060019050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620001b3919062000450565b60405180910390a28160026000828254620001cf9190620003a3565b9250508190555060029050919050565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b600082825260208201905092915050565b7f436f6e747261637420696e7374616e63652068617320616c726561647920626560008201527f656e20696e697469616c697a6564000000000000000000000000000000000000602082015250565b60006200029d602e836200022e565b9150620002aa826200023f565b604082019050919050565b60006020820190508181036000830152620002d0816200028e565b9050919050565b6000819050919050565b620002ec81620002d7565b82525050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006200032a6005836200022e565b91506200033782620002f2565b602082019050919050565b6000604082019050620003596000830184620002e1565b81810360208301526200036c816200031b565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620003b082620002d7565b9150620003bd83620002d7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620003f557620003f462000374565b5b828201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000438600e836200022e565b9150620004458262000400565b602082019050919050565b6000604082019050620004676000830184620002e1565b81810360208301526200047a8162000429565b905092915050565b61065180620004926000396000f3fe608060405234801561001057600080fd5b50600436106100625760003560e01c80631c717069146100675780631c93908c1461008557806392954362146100b5578063a0712d68146100bf578063b69ef8a8146100ef578063c9353cb51461010d575b600080fd5b61006f610129565b60405161007c91906102ed565b60405180910390f35b61009f600480360381019061009a9190610343565b610178565b6040516100ac919061037f565b60405180910390f35b6100bd6101ea565b005b6100d960048036038101906100d49190610343565b610225565b6040516100e6919061037f565b60405180910390f35b6100f76102b5565b604051610104919061037f565b60405180910390f35b610127600480360381019061012291906103f8565b6102bb565b005b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516101c09190610482565b60405180910390a281600260008282546101da91906104df565b9250508190555060029050919050565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161021c90610581565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405161026d91906105ed565b60405180910390a28160008082825461028691906104df565b925050819055506102a260018361029d91906104df565b610178565b506102ab610129565b5060019050919050565b60005481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b6000819050919050565b6102e7816102d4565b82525050565b600060208201905061030260008301846102de565b92915050565b600080fd5b6000819050919050565b6103208161030d565b811461032b57600080fd5b50565b60008135905061033d81610317565b92915050565b60006020828403121561035957610358610308565b5b60006103678482850161032e565b91505092915050565b6103798161030d565b82525050565b60006020820190506103946000830184610370565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006103c58261039a565b9050919050565b6103d5816103ba565b81146103e057600080fd5b50565b6000813590506103f2816103cc565b92915050565b60006020828403121561040e5761040d610308565b5b600061041c848285016103e3565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600061046c600e83610425565b915061047782610436565b602082019050919050565b60006040820190506104976000830184610370565b81810360208301526104a88161045f565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006104ea8261030d565b91506104f58361030d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561052a576105296104b0565b5b828201905092915050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b600061056b601783610425565b915061057682610535565b602082019050919050565b6000602082019050818103600083015261059a8161055e565b9050919050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006105d7600583610425565b91506105e2826105a1565b602082019050919050565b60006040820190506106026000830184610370565b8181036020830152610613816105ca565b90509291505056fea26469706673582212208743accab6cfcd1c8ccb3f51b787d679e803a77ce24ec642bd068883132fd5fa64736f6c63430008090033a264697066735822122066241fedca9ebd69f0cd9e4879f75428f5d4bf734eb072e52934a8b3161581f064736f6c63430008090033", + "code": "0x60806040523480156200001157600080fd5b5060043610620000ac5760003560e01c80638bfe44ff116200006f5780638bfe44ff14620001975780639295436214620001a3578063a0712d6814620001af578063b69ef8a814620001e5578063c9353cb5146200020757620000ac565b806312065fe014620000b15780631c71706914620000d35780631c93908c14620000f55780633aa18088146200012b5780637f29c3941462000161575b600080fd5b620000bb62000227565b604051620000ca919062000975565b60405180910390f35b620000dd62000231565b604051620000ec9190620009ad565b60405180910390f35b6200011360048036038101906200010d919062000a0a565b62000280565b60405162000122919062000975565b60405180910390f35b62000149600480360381019062000143919062000a0a565b620002f6565b60405162000158919062000975565b60405180910390f35b6200017f600480360381019062000179919062000a0a565b6200049e565b6040516200018e919062000975565b60405180910390f35b620001a162000771565b005b620001ad620007b3565b005b620001cd6004803603810190620001c7919062000a0a565b620007f0565b604051620001dc919062000975565b60405180910390f35b620001ef6200092d565b604051620001fe919062000975565b60405180910390f35b6200022560048036038101906200021f919062000aa1565b62000933565b005b6000600154905090565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620002ca919062000b34565b60405180910390a28160036000828254620002e6919062000b95565b9250508190555060029050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405162000340919062000c20565b60405180910390a260405162000356906200094c565b604051809103906000f08015801562000373573d6000803e3d6000fd5b506000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508160016000828254620003c7919062000b95565b92505081905550620003e7600183620003e1919062000b95565b62000280565b50620003f262000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b81526004016200044e919062000975565b6020604051808303816000875af11580156200046e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000494919062000c69565b5060019050919050565b60003073ffffffffffffffffffffffffffffffffffffffff1663929543626040518163ffffffff1660e01b815260040160006040518083038186803b158015620004e757600080fd5b505afa925050508015620004f9575060015b620005e1576200050862000ca8565b806308c379a0036200056c57506200051f62000d43565b806200052c57506200056e565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a816040516200055d919062000e56565b60405180910390a150620005db565b505b3d80600081146200059c576040519150601f19603f3d011682016040523d82523d6000602084013e620005a1565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620005d19062000ef0565b60405180910390a1505b620005e2565b5b3073ffffffffffffffffffffffffffffffffffffffff16638bfe44ff6040518163ffffffff1660e01b815260040160006040518083038186803b1580156200062957600080fd5b505afa9250505080156200063b575060015b62000723576200064a62000ca8565b806308c379a003620006ae57506200066162000d43565b806200066e5750620006b0565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a816040516200069f919062000e56565b60405180910390a1506200071d565b505b3d8060008114620006de576040519150601f19603f3d011682016040523d82523d6000602084013e620006e3565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620007139062000ef0565b60405180910390a1505b62000724565b5b600062000768576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200075f9062000f62565b60405180910390fd5b60019050919050565b6001806040517fcf479181000000000000000000000000000000000000000000000000000000008152600401620007aa92919062000fd1565b60405180910390fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007e7906200104e565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200083a919062000c20565b60405180910390a2816001600082825462000856919062000b95565b925050819055506200087660018362000870919062000b95565b62000280565b506200088162000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b8152600401620008dd919062000975565b6020604051808303816000875af1158015620008fd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000923919062000c69565b5060019050919050565b60015481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b610a9f806200107183390190565b6000819050919050565b6200096f816200095a565b82525050565b60006020820190506200098c600083018462000964565b92915050565b6000819050919050565b620009a78162000992565b82525050565b6000602082019050620009c460008301846200099c565b92915050565b6000604051905090565b600080fd5b620009e4816200095a565b8114620009f057600080fd5b50565b60008135905062000a0481620009d9565b92915050565b60006020828403121562000a235762000a22620009d4565b5b600062000a3384828501620009f3565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000a698262000a3c565b9050919050565b62000a7b8162000a5c565b811462000a8757600080fd5b50565b60008135905062000a9b8162000a70565b92915050565b60006020828403121562000aba5762000ab9620009d4565b5b600062000aca8482850162000a8a565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000b1c600e8362000ad3565b915062000b298262000ae4565b602082019050919050565b600060408201905062000b4b600083018462000964565b818103602083015262000b5e8162000b0d565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000ba2826200095a565b915062000baf836200095a565b925082820190508082111562000bca5762000bc962000b66565b5b92915050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b600062000c0860058362000ad3565b915062000c158262000bd0565b602082019050919050565b600060408201905062000c37600083018462000964565b818103602083015262000c4a8162000bf9565b905092915050565b60008151905062000c6381620009d9565b92915050565b60006020828403121562000c825762000c81620009d4565b5b600062000c928482850162000c52565b91505092915050565b60008160e01c9050919050565b600060033d111562000cca5760046000803e62000cc760005162000c9b565b90505b90565b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000d188262000ccd565b810181811067ffffffffffffffff8211171562000d3a5762000d3962000cde565b5b80604052505050565b600060443d1062000ddb5762000d58620009ca565b60043d036004823e80513d602482011167ffffffffffffffff8211171562000d8257505062000ddb565b808201805167ffffffffffffffff81111562000da2575050505062000ddb565b80602083010160043d03850181111562000dc157505050505062000ddb565b62000dd28260200185018662000d0d565b82955050505050505b90565b600081519050919050565b60005b8381101562000e0957808201518184015260208101905062000dec565b60008484015250505050565b600062000e228262000dde565b62000e2e818562000ad3565b935062000e4081856020860162000de9565b62000e4b8162000ccd565b840191505092915050565b6000602082019050818103600083015262000e72818462000e15565b905092915050565b7f45787465726e616c2063616c6c206661696c656420776974686f757420616e2060008201527f6572726f72206d65737361676500000000000000000000000000000000000000602082015250565b600062000ed8602d8362000ad3565b915062000ee58262000e7a565b604082019050919050565b6000602082019050818103600083015262000f0b8162000ec9565b9050919050565b7f494e53554646494349454e542042414c414e4345000000000000000000000000600082015250565b600062000f4a60148362000ad3565b915062000f578262000f12565b602082019050919050565b6000602082019050818103600083015262000f7d8162000f3b565b9050919050565b6000819050919050565b6000819050919050565b600062000fb962000fb362000fad8462000f84565b62000f8e565b6200095a565b9050919050565b62000fcb8162000f98565b82525050565b600060408201905062000fe8600083018562000fc0565b62000ff7602083018462000fc0565b9392505050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b60006200103660178362000ad3565b9150620010438262000ffe565b602082019050919050565b60006020820190508181036000830152620010698162001027565b905091905056fe60806040526000600160006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b50600160009054906101000a900460ff161562000080576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200007790620002b5565b60405180910390fd5b60018060006101000a81548160ff021916908315150217905550620000bc701d6329f1c35ca4bfabb9f5610000000000620000c360201b60201c565b5062000460565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200010d919062000342565b60405180910390a281600080828254620001289190620003a3565b925050819055506200014e600183620001429190620003a3565b6200016960201b60201c565b506200015f620001df60201b60201c565b5060019050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620001b391906200042e565b60405180910390a28160026000828254620001cf9190620003a3565b9250508190555060029050919050565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b600082825260208201905092915050565b7f436f6e747261637420696e7374616e63652068617320616c726561647920626560008201527f656e20696e697469616c697a6564000000000000000000000000000000000000602082015250565b60006200029d602e836200022e565b9150620002aa826200023f565b604082019050919050565b60006020820190508181036000830152620002d0816200028e565b9050919050565b6000819050919050565b620002ec81620002d7565b82525050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006200032a6005836200022e565b91506200033782620002f2565b602082019050919050565b6000604082019050620003596000830184620002e1565b81810360208301526200036c816200031b565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620003b082620002d7565b9150620003bd83620002d7565b9250828201905080821115620003d857620003d762000374565b5b92915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000416600e836200022e565b91506200042382620003de565b602082019050919050565b6000604082019050620004456000830184620002e1565b8181036020830152620004588162000407565b905092915050565b61062f80620004706000396000f3fe608060405234801561001057600080fd5b50600436106100625760003560e01c80631c717069146100675780631c93908c1461008557806392954362146100b5578063a0712d68146100bf578063b69ef8a8146100ef578063c9353cb51461010d575b600080fd5b61006f610129565b60405161007c91906102ed565b60405180910390f35b61009f600480360381019061009a9190610343565b610178565b6040516100ac919061037f565b60405180910390f35b6100bd6101ea565b005b6100d960048036038101906100d49190610343565b610225565b6040516100e6919061037f565b60405180910390f35b6100f76102b5565b604051610104919061037f565b60405180910390f35b610127600480360381019061012291906103f8565b6102bb565b005b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516101c09190610482565b60405180910390a281600260008282546101da91906104df565b9250508190555060029050919050565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161021c9061055f565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405161026d91906105cb565b60405180910390a28160008082825461028691906104df565b925050819055506102a260018361029d91906104df565b610178565b506102ab610129565b5060019050919050565b60005481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b6000819050919050565b6102e7816102d4565b82525050565b600060208201905061030260008301846102de565b92915050565b600080fd5b6000819050919050565b6103208161030d565b811461032b57600080fd5b50565b60008135905061033d81610317565b92915050565b60006020828403121561035957610358610308565b5b60006103678482850161032e565b91505092915050565b6103798161030d565b82525050565b60006020820190506103946000830184610370565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006103c58261039a565b9050919050565b6103d5816103ba565b81146103e057600080fd5b50565b6000813590506103f2816103cc565b92915050565b60006020828403121561040e5761040d610308565b5b600061041c848285016103e3565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600061046c600e83610425565b915061047782610436565b602082019050919050565b60006040820190506104976000830184610370565b81810360208301526104a88161045f565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006104ea8261030d565b91506104f58361030d565b925082820190508082111561050d5761050c6104b0565b5b92915050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b6000610549601783610425565b915061055482610513565b602082019050919050565b600060208201905081810360008301526105788161053c565b9050919050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006105b5600583610425565b91506105c08261057f565b602082019050919050565b60006040820190506105e06000830184610370565b81810360208301526105f1816105a8565b90509291505056fea26469706673582212202a0a0fa5842e91cc0c1e5b645f7286aad7193a83c3b2f8c8e4c1b35008af0d6f64736f6c63430008140033a264697066735822122036f326b9881542090544d5d6e9f2ff18b13ec09bd4994f14891a84e97f4d6db964736f6c63430008140033", "nonce": 2 + }, + "OWNER.address": { + "balance": "0x10f075e97d88a9daf8e", + "nonce": 11 } } \ No newline at end of file diff --git a/test/historicstate/hardhat/scripts/geth_traces/Tracer.transfer.prestateDiffTracer.json b/test/historicstate/hardhat/scripts/geth_traces/Tracer.transfer.prestateDiffTracer.json index ccd88db84..feea3ac20 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/Tracer.transfer.prestateDiffTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/Tracer.transfer.prestateDiffTracer.json @@ -1,26 +1,26 @@ { "post": { "0x0000000000000000000000000000000000000000": { - "balance": "0x1b69ad1" + "balance": "0x3dbbe1" }, "0x388c818ca8b9251b393131c08a736a67ccb19297": { - "balance": "0x136dcc951d8c0000" + "balance": "0x2c68af0bb140000" }, "OWNER.address": { - "balance": "0x360ee5cfe1af4203d1", - "nonce": 82 + "balance": "0x10f075ed5f51d7cf45e", + "nonce": 10 } }, "pre": { "0x0000000000000000000000000000000000000000": { - "balance": "0x1b648c9" + "balance": "0x3d69d9" }, "0x388c818ca8b9251b393131c08a736a67ccb19297": { - "balance": "0x120a871cc0020000" + "balance": "0x16345785d8a0000" }, "OWNER.address": { - "balance": "0x361049155a32982d79", - "nonce": 81 + "balance": "0x10f08c21e44d69a7a96", + "nonce": 9 } } } \ No newline at end of file diff --git a/test/historicstate/hardhat/scripts/geth_traces/Tracer.transfer.prestateTracer.json b/test/historicstate/hardhat/scripts/geth_traces/Tracer.transfer.prestateTracer.json index 6246a1708..fa757e344 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/Tracer.transfer.prestateTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/Tracer.transfer.prestateTracer.json @@ -1,12 +1,12 @@ { "0x0000000000000000000000000000000000000000": { - "balance": "0x1b648c9" + "balance": "0x3d69d9" }, "0x388c818ca8b9251b393131c08a736a67ccb19297": { - "balance": "0x120a871cc0020000" + "balance": "0x16345785d8a0000" }, "OWNER.address": { - "balance": "0x361049155a32982d79", - "nonce": 81 + "balance": "0x10f08c21e44d69a7a96", + "nonce": 9 } } \ No newline at end of file From 46627eb7ee3bbead49f658ff3b467eef253e8287 Mon Sep 17 00:00:00 2001 From: Stan Kladko <13399135+kladkogex@users.noreply.github.com> Date: Tue, 23 Apr 2024 15:56:51 +0100 Subject: [PATCH 16/34] #1859 added test contract --- .../ERC20Custom.transfer.callTracer.json | 14 +- .../Tracer.deploy.4byteTracer.json | 4 +- .../geth_traces/Tracer.deploy.callTracer.json | 10 +- .../Tracer.deploy.defaultTracer.json | 618 +- .../Tracer.deploy.prestateDiffTracer.json | 21 +- .../Tracer.deploy.prestateTracer.json | 13 +- .../Tracer.getBalance.callTracer.json | 10 +- .../Tracer.getBalance.defaultTracer.json | 788 +- .../Tracer.getBalance.prestateTracer.json | 2 +- .../Tracer.getBalance.replayTracer.json | 2 +- .../geth_traces/Tracer.mint.4byteTracer.json | 2 +- .../geth_traces/Tracer.mint.callTracer.json | 23 +- .../Tracer.mint.defaultTracer.json | 6080 ++--- .../Tracer.mint.prestateDiffTracer.json | 12 +- .../Tracer.mint.prestateTracer.json | 10 +- .../geth_traces/Tracer.mint2.callTracer.json | 36 +- .../Tracer.mint2.defaultTracer.json | 18326 ++++++++-------- .../Tracer.mint2.prestateDiffTracer.json | 37 +- .../Tracer.mint2.prestateTracer.json | 10 +- .../Tracer.readableRevert.callTracer.json | 36 +- .../Tracer.readableRevert.defaultTracer.json | 9506 ++++---- ...cer.readableRevert.prestateDiffTracer.json | 12 +- .../Tracer.readableRevert.prestateTracer.json | 10 +- .../Tracer.transfer.callTracer.json | 6 +- .../Tracer.transfer.defaultTracer.json | 2 +- .../Tracer.transfer.prestateDiffTracer.json | 16 +- .../Tracer.transfer.prestateTracer.json | 8 +- .../hardhat/scripts/token_revert.ts | 2 +- 28 files changed, 17809 insertions(+), 17807 deletions(-) diff --git a/test/historicstate/hardhat/scripts/geth_traces/ERC20Custom.transfer.callTracer.json b/test/historicstate/hardhat/scripts/geth_traces/ERC20Custom.transfer.callTracer.json index 016008707..bb82c9e61 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/ERC20Custom.transfer.callTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/ERC20Custom.transfer.callTracer.json @@ -1,10 +1,12 @@ { "from": "OWNER.address", - "gas": "0x1fb1c8", - "gasUsed": "0xcb55", - "input": "0xa9059cbb000000000000000000000000ce5c7ca85f8cb94fa284a303348ef42add23f5e70000000000000000000000000000000000000000000000000000000000000001", - "output": "0x0000000000000000000000000000000000000000000000000000000000000001", + "gas": "0x200b20", + "gasUsed": "0x60ad", "to": "ERC20Custom.address", - "type": "CALL", - "value": "0x0" + "input": "0xa9059cbb000000000000000000000000ce5c7ca85f8cb94fa284a303348ef42add23f5e70000000000000000000000000000000000000000000000000000000000000001", + "output": "0x4e487b710000000000000000000000000000000000000000000000000000000000000011", + "error": "execution reverted", + "revertReason": "arithmetic underflow or overflow", + "value": "0x0", + "type": "CALL" } \ No newline at end of file diff --git a/test/historicstate/hardhat/scripts/geth_traces/Tracer.deploy.4byteTracer.json b/test/historicstate/hardhat/scripts/geth_traces/Tracer.deploy.4byteTracer.json index 9e26dfeeb..153169088 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/Tracer.deploy.4byteTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/Tracer.deploy.4byteTracer.json @@ -1 +1,3 @@ -{} \ No newline at end of file +{ + "0x60806040-7311": 1 +} \ No newline at end of file diff --git a/test/historicstate/hardhat/scripts/geth_traces/Tracer.deploy.callTracer.json b/test/historicstate/hardhat/scripts/geth_traces/Tracer.deploy.callTracer.json index d49befbc0..201f96af3 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/Tracer.deploy.callTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/Tracer.deploy.callTracer.json @@ -1,10 +1,10 @@ { "from": "OWNER.address", - "gas": "0x200b20", - "gasUsed": "0x1811a2", - "to": "Tracer.address", + "gas": "0x18bbcc", + "gasUsed": "0x1cf4f8", "input": "0x60806040526000600260006101000a81548160ff02191690831515021790555034801561002b57600080fd5b50600260009054906101000a900460ff161561007c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016100739061011f565b60405180910390fd5b6001600260006101000a81548160ff02191690831515021790555061013f565b600082825260208201905092915050565b7f436f6e747261637420696e7374616e63652068617320616c726561647920626560008201527f656e20696e697469616c697a6564000000000000000000000000000000000000602082015250565b6000610109602e8361009c565b9150610114826100ad565b604082019050919050565b60006020820190508181036000830152610138816100fc565b9050919050565b611b458061014e6000396000f3fe60806040523480156200001157600080fd5b5060043610620000ac5760003560e01c80638bfe44ff116200006f5780638bfe44ff14620001975780639295436214620001a3578063a0712d6814620001af578063b69ef8a814620001e5578063c9353cb5146200020757620000ac565b806312065fe014620000b15780631c71706914620000d35780631c93908c14620000f55780633aa18088146200012b5780637f29c3941462000161575b600080fd5b620000bb62000227565b604051620000ca919062000975565b60405180910390f35b620000dd62000231565b604051620000ec9190620009ad565b60405180910390f35b6200011360048036038101906200010d919062000a0a565b62000280565b60405162000122919062000975565b60405180910390f35b62000149600480360381019062000143919062000a0a565b620002f6565b60405162000158919062000975565b60405180910390f35b6200017f600480360381019062000179919062000a0a565b6200049e565b6040516200018e919062000975565b60405180910390f35b620001a162000771565b005b620001ad620007b3565b005b620001cd6004803603810190620001c7919062000a0a565b620007f0565b604051620001dc919062000975565b60405180910390f35b620001ef6200092d565b604051620001fe919062000975565b60405180910390f35b6200022560048036038101906200021f919062000aa1565b62000933565b005b6000600154905090565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620002ca919062000b34565b60405180910390a28160036000828254620002e6919062000b95565b9250508190555060029050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405162000340919062000c20565b60405180910390a260405162000356906200094c565b604051809103906000f08015801562000373573d6000803e3d6000fd5b506000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508160016000828254620003c7919062000b95565b92505081905550620003e7600183620003e1919062000b95565b62000280565b50620003f262000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b81526004016200044e919062000975565b6020604051808303816000875af11580156200046e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000494919062000c69565b5060019050919050565b60003073ffffffffffffffffffffffffffffffffffffffff1663929543626040518163ffffffff1660e01b815260040160006040518083038186803b158015620004e757600080fd5b505afa925050508015620004f9575060015b620005e1576200050862000ca8565b806308c379a0036200056c57506200051f62000d43565b806200052c57506200056e565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a816040516200055d919062000e56565b60405180910390a150620005db565b505b3d80600081146200059c576040519150601f19603f3d011682016040523d82523d6000602084013e620005a1565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620005d19062000ef0565b60405180910390a1505b620005e2565b5b3073ffffffffffffffffffffffffffffffffffffffff16638bfe44ff6040518163ffffffff1660e01b815260040160006040518083038186803b1580156200062957600080fd5b505afa9250505080156200063b575060015b62000723576200064a62000ca8565b806308c379a003620006ae57506200066162000d43565b806200066e5750620006b0565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a816040516200069f919062000e56565b60405180910390a1506200071d565b505b3d8060008114620006de576040519150601f19603f3d011682016040523d82523d6000602084013e620006e3565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620007139062000ef0565b60405180910390a1505b62000724565b5b600062000768576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200075f9062000f62565b60405180910390fd5b60019050919050565b6001806040517fcf479181000000000000000000000000000000000000000000000000000000008152600401620007aa92919062000fd1565b60405180910390fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007e7906200104e565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200083a919062000c20565b60405180910390a2816001600082825462000856919062000b95565b925050819055506200087660018362000870919062000b95565b62000280565b506200088162000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b8152600401620008dd919062000975565b6020604051808303816000875af1158015620008fd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000923919062000c69565b5060019050919050565b60015481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b610a9f806200107183390190565b6000819050919050565b6200096f816200095a565b82525050565b60006020820190506200098c600083018462000964565b92915050565b6000819050919050565b620009a78162000992565b82525050565b6000602082019050620009c460008301846200099c565b92915050565b6000604051905090565b600080fd5b620009e4816200095a565b8114620009f057600080fd5b50565b60008135905062000a0481620009d9565b92915050565b60006020828403121562000a235762000a22620009d4565b5b600062000a3384828501620009f3565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000a698262000a3c565b9050919050565b62000a7b8162000a5c565b811462000a8757600080fd5b50565b60008135905062000a9b8162000a70565b92915050565b60006020828403121562000aba5762000ab9620009d4565b5b600062000aca8482850162000a8a565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000b1c600e8362000ad3565b915062000b298262000ae4565b602082019050919050565b600060408201905062000b4b600083018462000964565b818103602083015262000b5e8162000b0d565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000ba2826200095a565b915062000baf836200095a565b925082820190508082111562000bca5762000bc962000b66565b5b92915050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b600062000c0860058362000ad3565b915062000c158262000bd0565b602082019050919050565b600060408201905062000c37600083018462000964565b818103602083015262000c4a8162000bf9565b905092915050565b60008151905062000c6381620009d9565b92915050565b60006020828403121562000c825762000c81620009d4565b5b600062000c928482850162000c52565b91505092915050565b60008160e01c9050919050565b600060033d111562000cca5760046000803e62000cc760005162000c9b565b90505b90565b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000d188262000ccd565b810181811067ffffffffffffffff8211171562000d3a5762000d3962000cde565b5b80604052505050565b600060443d1062000ddb5762000d58620009ca565b60043d036004823e80513d602482011167ffffffffffffffff8211171562000d8257505062000ddb565b808201805167ffffffffffffffff81111562000da2575050505062000ddb565b80602083010160043d03850181111562000dc157505050505062000ddb565b62000dd28260200185018662000d0d565b82955050505050505b90565b600081519050919050565b60005b8381101562000e0957808201518184015260208101905062000dec565b60008484015250505050565b600062000e228262000dde565b62000e2e818562000ad3565b935062000e4081856020860162000de9565b62000e4b8162000ccd565b840191505092915050565b6000602082019050818103600083015262000e72818462000e15565b905092915050565b7f45787465726e616c2063616c6c206661696c656420776974686f757420616e2060008201527f6572726f72206d65737361676500000000000000000000000000000000000000602082015250565b600062000ed8602d8362000ad3565b915062000ee58262000e7a565b604082019050919050565b6000602082019050818103600083015262000f0b8162000ec9565b9050919050565b7f494e53554646494349454e542042414c414e4345000000000000000000000000600082015250565b600062000f4a60148362000ad3565b915062000f578262000f12565b602082019050919050565b6000602082019050818103600083015262000f7d8162000f3b565b9050919050565b6000819050919050565b6000819050919050565b600062000fb962000fb362000fad8462000f84565b62000f8e565b6200095a565b9050919050565b62000fcb8162000f98565b82525050565b600060408201905062000fe8600083018562000fc0565b62000ff7602083018462000fc0565b9392505050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b60006200103660178362000ad3565b9150620010438262000ffe565b602082019050919050565b60006020820190508181036000830152620010698162001027565b905091905056fe60806040526000600160006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b50600160009054906101000a900460ff161562000080576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200007790620002b5565b60405180910390fd5b60018060006101000a81548160ff021916908315150217905550620000bc701d6329f1c35ca4bfabb9f5610000000000620000c360201b60201c565b5062000460565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200010d919062000342565b60405180910390a281600080828254620001289190620003a3565b925050819055506200014e600183620001429190620003a3565b6200016960201b60201c565b506200015f620001df60201b60201c565b5060019050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620001b391906200042e565b60405180910390a28160026000828254620001cf9190620003a3565b9250508190555060029050919050565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b600082825260208201905092915050565b7f436f6e747261637420696e7374616e63652068617320616c726561647920626560008201527f656e20696e697469616c697a6564000000000000000000000000000000000000602082015250565b60006200029d602e836200022e565b9150620002aa826200023f565b604082019050919050565b60006020820190508181036000830152620002d0816200028e565b9050919050565b6000819050919050565b620002ec81620002d7565b82525050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006200032a6005836200022e565b91506200033782620002f2565b602082019050919050565b6000604082019050620003596000830184620002e1565b81810360208301526200036c816200031b565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620003b082620002d7565b9150620003bd83620002d7565b9250828201905080821115620003d857620003d762000374565b5b92915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000416600e836200022e565b91506200042382620003de565b602082019050919050565b6000604082019050620004456000830184620002e1565b8181036020830152620004588162000407565b905092915050565b61062f80620004706000396000f3fe608060405234801561001057600080fd5b50600436106100625760003560e01c80631c717069146100675780631c93908c1461008557806392954362146100b5578063a0712d68146100bf578063b69ef8a8146100ef578063c9353cb51461010d575b600080fd5b61006f610129565b60405161007c91906102ed565b60405180910390f35b61009f600480360381019061009a9190610343565b610178565b6040516100ac919061037f565b60405180910390f35b6100bd6101ea565b005b6100d960048036038101906100d49190610343565b610225565b6040516100e6919061037f565b60405180910390f35b6100f76102b5565b604051610104919061037f565b60405180910390f35b610127600480360381019061012291906103f8565b6102bb565b005b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516101c09190610482565b60405180910390a281600260008282546101da91906104df565b9250508190555060029050919050565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161021c9061055f565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405161026d91906105cb565b60405180910390a28160008082825461028691906104df565b925050819055506102a260018361029d91906104df565b610178565b506102ab610129565b5060019050919050565b60005481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b6000819050919050565b6102e7816102d4565b82525050565b600060208201905061030260008301846102de565b92915050565b600080fd5b6000819050919050565b6103208161030d565b811461032b57600080fd5b50565b60008135905061033d81610317565b92915050565b60006020828403121561035957610358610308565b5b60006103678482850161032e565b91505092915050565b6103798161030d565b82525050565b60006020820190506103946000830184610370565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006103c58261039a565b9050919050565b6103d5816103ba565b81146103e057600080fd5b50565b6000813590506103f2816103cc565b92915050565b60006020828403121561040e5761040d610308565b5b600061041c848285016103e3565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600061046c600e83610425565b915061047782610436565b602082019050919050565b60006040820190506104976000830184610370565b81810360208301526104a88161045f565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006104ea8261030d565b91506104f58361030d565b925082820190508082111561050d5761050c6104b0565b5b92915050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b6000610549601783610425565b915061055482610513565b602082019050919050565b600060208201905081810360008301526105788161053c565b9050919050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006105b5600583610425565b91506105c08261057f565b602082019050919050565b60006040820190506105e06000830184610370565b81810360208301526105f1816105a8565b90509291505056fea26469706673582212202a0a0fa5842e91cc0c1e5b645f7286aad7193a83c3b2f8c8e4c1b35008af0d6f64736f6c63430008140033a264697066735822122036f326b9881542090544d5d6e9f2ff18b13ec09bd4994f14891a84e97f4d6db964736f6c63430008140033", "output": "0x60806040523480156200001157600080fd5b5060043610620000ac5760003560e01c80638bfe44ff116200006f5780638bfe44ff14620001975780639295436214620001a3578063a0712d6814620001af578063b69ef8a814620001e5578063c9353cb5146200020757620000ac565b806312065fe014620000b15780631c71706914620000d35780631c93908c14620000f55780633aa18088146200012b5780637f29c3941462000161575b600080fd5b620000bb62000227565b604051620000ca919062000975565b60405180910390f35b620000dd62000231565b604051620000ec9190620009ad565b60405180910390f35b6200011360048036038101906200010d919062000a0a565b62000280565b60405162000122919062000975565b60405180910390f35b62000149600480360381019062000143919062000a0a565b620002f6565b60405162000158919062000975565b60405180910390f35b6200017f600480360381019062000179919062000a0a565b6200049e565b6040516200018e919062000975565b60405180910390f35b620001a162000771565b005b620001ad620007b3565b005b620001cd6004803603810190620001c7919062000a0a565b620007f0565b604051620001dc919062000975565b60405180910390f35b620001ef6200092d565b604051620001fe919062000975565b60405180910390f35b6200022560048036038101906200021f919062000aa1565b62000933565b005b6000600154905090565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620002ca919062000b34565b60405180910390a28160036000828254620002e6919062000b95565b9250508190555060029050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405162000340919062000c20565b60405180910390a260405162000356906200094c565b604051809103906000f08015801562000373573d6000803e3d6000fd5b506000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508160016000828254620003c7919062000b95565b92505081905550620003e7600183620003e1919062000b95565b62000280565b50620003f262000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b81526004016200044e919062000975565b6020604051808303816000875af11580156200046e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000494919062000c69565b5060019050919050565b60003073ffffffffffffffffffffffffffffffffffffffff1663929543626040518163ffffffff1660e01b815260040160006040518083038186803b158015620004e757600080fd5b505afa925050508015620004f9575060015b620005e1576200050862000ca8565b806308c379a0036200056c57506200051f62000d43565b806200052c57506200056e565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a816040516200055d919062000e56565b60405180910390a150620005db565b505b3d80600081146200059c576040519150601f19603f3d011682016040523d82523d6000602084013e620005a1565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620005d19062000ef0565b60405180910390a1505b620005e2565b5b3073ffffffffffffffffffffffffffffffffffffffff16638bfe44ff6040518163ffffffff1660e01b815260040160006040518083038186803b1580156200062957600080fd5b505afa9250505080156200063b575060015b62000723576200064a62000ca8565b806308c379a003620006ae57506200066162000d43565b806200066e5750620006b0565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a816040516200069f919062000e56565b60405180910390a1506200071d565b505b3d8060008114620006de576040519150601f19603f3d011682016040523d82523d6000602084013e620006e3565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620007139062000ef0565b60405180910390a1505b62000724565b5b600062000768576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200075f9062000f62565b60405180910390fd5b60019050919050565b6001806040517fcf479181000000000000000000000000000000000000000000000000000000008152600401620007aa92919062000fd1565b60405180910390fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007e7906200104e565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200083a919062000c20565b60405180910390a2816001600082825462000856919062000b95565b925050819055506200087660018362000870919062000b95565b62000280565b506200088162000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b8152600401620008dd919062000975565b6020604051808303816000875af1158015620008fd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000923919062000c69565b5060019050919050565b60015481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b610a9f806200107183390190565b6000819050919050565b6200096f816200095a565b82525050565b60006020820190506200098c600083018462000964565b92915050565b6000819050919050565b620009a78162000992565b82525050565b6000602082019050620009c460008301846200099c565b92915050565b6000604051905090565b600080fd5b620009e4816200095a565b8114620009f057600080fd5b50565b60008135905062000a0481620009d9565b92915050565b60006020828403121562000a235762000a22620009d4565b5b600062000a3384828501620009f3565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000a698262000a3c565b9050919050565b62000a7b8162000a5c565b811462000a8757600080fd5b50565b60008135905062000a9b8162000a70565b92915050565b60006020828403121562000aba5762000ab9620009d4565b5b600062000aca8482850162000a8a565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000b1c600e8362000ad3565b915062000b298262000ae4565b602082019050919050565b600060408201905062000b4b600083018462000964565b818103602083015262000b5e8162000b0d565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000ba2826200095a565b915062000baf836200095a565b925082820190508082111562000bca5762000bc962000b66565b5b92915050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b600062000c0860058362000ad3565b915062000c158262000bd0565b602082019050919050565b600060408201905062000c37600083018462000964565b818103602083015262000c4a8162000bf9565b905092915050565b60008151905062000c6381620009d9565b92915050565b60006020828403121562000c825762000c81620009d4565b5b600062000c928482850162000c52565b91505092915050565b60008160e01c9050919050565b600060033d111562000cca5760046000803e62000cc760005162000c9b565b90505b90565b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000d188262000ccd565b810181811067ffffffffffffffff8211171562000d3a5762000d3962000cde565b5b80604052505050565b600060443d1062000ddb5762000d58620009ca565b60043d036004823e80513d602482011167ffffffffffffffff8211171562000d8257505062000ddb565b808201805167ffffffffffffffff81111562000da2575050505062000ddb565b80602083010160043d03850181111562000dc157505050505062000ddb565b62000dd28260200185018662000d0d565b82955050505050505b90565b600081519050919050565b60005b8381101562000e0957808201518184015260208101905062000dec565b60008484015250505050565b600062000e228262000dde565b62000e2e818562000ad3565b935062000e4081856020860162000de9565b62000e4b8162000ccd565b840191505092915050565b6000602082019050818103600083015262000e72818462000e15565b905092915050565b7f45787465726e616c2063616c6c206661696c656420776974686f757420616e2060008201527f6572726f72206d65737361676500000000000000000000000000000000000000602082015250565b600062000ed8602d8362000ad3565b915062000ee58262000e7a565b604082019050919050565b6000602082019050818103600083015262000f0b8162000ec9565b9050919050565b7f494e53554646494349454e542042414c414e4345000000000000000000000000600082015250565b600062000f4a60148362000ad3565b915062000f578262000f12565b602082019050919050565b6000602082019050818103600083015262000f7d8162000f3b565b9050919050565b6000819050919050565b6000819050919050565b600062000fb962000fb362000fad8462000f84565b62000f8e565b6200095a565b9050919050565b62000fcb8162000f98565b82525050565b600060408201905062000fe8600083018562000fc0565b62000ff7602083018462000fc0565b9392505050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b60006200103660178362000ad3565b9150620010438262000ffe565b602082019050919050565b60006020820190508181036000830152620010698162001027565b905091905056fe60806040526000600160006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b50600160009054906101000a900460ff161562000080576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200007790620002b5565b60405180910390fd5b60018060006101000a81548160ff021916908315150217905550620000bc701d6329f1c35ca4bfabb9f5610000000000620000c360201b60201c565b5062000460565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200010d919062000342565b60405180910390a281600080828254620001289190620003a3565b925050819055506200014e600183620001429190620003a3565b6200016960201b60201c565b506200015f620001df60201b60201c565b5060019050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620001b391906200042e565b60405180910390a28160026000828254620001cf9190620003a3565b9250508190555060029050919050565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b600082825260208201905092915050565b7f436f6e747261637420696e7374616e63652068617320616c726561647920626560008201527f656e20696e697469616c697a6564000000000000000000000000000000000000602082015250565b60006200029d602e836200022e565b9150620002aa826200023f565b604082019050919050565b60006020820190508181036000830152620002d0816200028e565b9050919050565b6000819050919050565b620002ec81620002d7565b82525050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006200032a6005836200022e565b91506200033782620002f2565b602082019050919050565b6000604082019050620003596000830184620002e1565b81810360208301526200036c816200031b565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620003b082620002d7565b9150620003bd83620002d7565b9250828201905080821115620003d857620003d762000374565b5b92915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000416600e836200022e565b91506200042382620003de565b602082019050919050565b6000604082019050620004456000830184620002e1565b8181036020830152620004588162000407565b905092915050565b61062f80620004706000396000f3fe608060405234801561001057600080fd5b50600436106100625760003560e01c80631c717069146100675780631c93908c1461008557806392954362146100b5578063a0712d68146100bf578063b69ef8a8146100ef578063c9353cb51461010d575b600080fd5b61006f610129565b60405161007c91906102ed565b60405180910390f35b61009f600480360381019061009a9190610343565b610178565b6040516100ac919061037f565b60405180910390f35b6100bd6101ea565b005b6100d960048036038101906100d49190610343565b610225565b6040516100e6919061037f565b60405180910390f35b6100f76102b5565b604051610104919061037f565b60405180910390f35b610127600480360381019061012291906103f8565b6102bb565b005b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516101c09190610482565b60405180910390a281600260008282546101da91906104df565b9250508190555060029050919050565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161021c9061055f565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405161026d91906105cb565b60405180910390a28160008082825461028691906104df565b925050819055506102a260018361029d91906104df565b610178565b506102ab610129565b5060019050919050565b60005481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b6000819050919050565b6102e7816102d4565b82525050565b600060208201905061030260008301846102de565b92915050565b600080fd5b6000819050919050565b6103208161030d565b811461032b57600080fd5b50565b60008135905061033d81610317565b92915050565b60006020828403121561035957610358610308565b5b60006103678482850161032e565b91505092915050565b6103798161030d565b82525050565b60006020820190506103946000830184610370565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006103c58261039a565b9050919050565b6103d5816103ba565b81146103e057600080fd5b50565b6000813590506103f2816103cc565b92915050565b60006020828403121561040e5761040d610308565b5b600061041c848285016103e3565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600061046c600e83610425565b915061047782610436565b602082019050919050565b60006040820190506104976000830184610370565b81810360208301526104a88161045f565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006104ea8261030d565b91506104f58361030d565b925082820190508082111561050d5761050c6104b0565b5b92915050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b6000610549601783610425565b915061055482610513565b602082019050919050565b600060208201905081810360008301526105788161053c565b9050919050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006105b5600583610425565b91506105c08261057f565b602082019050919050565b60006040820190506105e06000830184610370565b81810360208301526105f1816105a8565b90509291505056fea26469706673582212202a0a0fa5842e91cc0c1e5b645f7286aad7193a83c3b2f8c8e4c1b35008af0d6f64736f6c63430008140033a264697066735822122036f326b9881542090544d5d6e9f2ff18b13ec09bd4994f14891a84e97f4d6db964736f6c63430008140033", - "value": "0x0", - "type": "CREATE" + "to": "Tracer.address", + "type": "CREATE", + "value": "0x0" } \ No newline at end of file diff --git a/test/historicstate/hardhat/scripts/geth_traces/Tracer.deploy.defaultTracer.json b/test/historicstate/hardhat/scripts/geth_traces/Tracer.deploy.defaultTracer.json index 184f6f237..f308cb88f 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/Tracer.deploy.defaultTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/Tracer.deploy.defaultTracer.json @@ -1,72 +1,72 @@ { - "gas": 1577378, "failed": false, + "gas": 1897720, "returnValue": "60806040523480156200001157600080fd5b5060043610620000ac5760003560e01c80638bfe44ff116200006f5780638bfe44ff14620001975780639295436214620001a3578063a0712d6814620001af578063b69ef8a814620001e5578063c9353cb5146200020757620000ac565b806312065fe014620000b15780631c71706914620000d35780631c93908c14620000f55780633aa18088146200012b5780637f29c3941462000161575b600080fd5b620000bb62000227565b604051620000ca919062000975565b60405180910390f35b620000dd62000231565b604051620000ec9190620009ad565b60405180910390f35b6200011360048036038101906200010d919062000a0a565b62000280565b60405162000122919062000975565b60405180910390f35b62000149600480360381019062000143919062000a0a565b620002f6565b60405162000158919062000975565b60405180910390f35b6200017f600480360381019062000179919062000a0a565b6200049e565b6040516200018e919062000975565b60405180910390f35b620001a162000771565b005b620001ad620007b3565b005b620001cd6004803603810190620001c7919062000a0a565b620007f0565b604051620001dc919062000975565b60405180910390f35b620001ef6200092d565b604051620001fe919062000975565b60405180910390f35b6200022560048036038101906200021f919062000aa1565b62000933565b005b6000600154905090565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620002ca919062000b34565b60405180910390a28160036000828254620002e6919062000b95565b9250508190555060029050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405162000340919062000c20565b60405180910390a260405162000356906200094c565b604051809103906000f08015801562000373573d6000803e3d6000fd5b506000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508160016000828254620003c7919062000b95565b92505081905550620003e7600183620003e1919062000b95565b62000280565b50620003f262000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b81526004016200044e919062000975565b6020604051808303816000875af11580156200046e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000494919062000c69565b5060019050919050565b60003073ffffffffffffffffffffffffffffffffffffffff1663929543626040518163ffffffff1660e01b815260040160006040518083038186803b158015620004e757600080fd5b505afa925050508015620004f9575060015b620005e1576200050862000ca8565b806308c379a0036200056c57506200051f62000d43565b806200052c57506200056e565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a816040516200055d919062000e56565b60405180910390a150620005db565b505b3d80600081146200059c576040519150601f19603f3d011682016040523d82523d6000602084013e620005a1565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620005d19062000ef0565b60405180910390a1505b620005e2565b5b3073ffffffffffffffffffffffffffffffffffffffff16638bfe44ff6040518163ffffffff1660e01b815260040160006040518083038186803b1580156200062957600080fd5b505afa9250505080156200063b575060015b62000723576200064a62000ca8565b806308c379a003620006ae57506200066162000d43565b806200066e5750620006b0565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a816040516200069f919062000e56565b60405180910390a1506200071d565b505b3d8060008114620006de576040519150601f19603f3d011682016040523d82523d6000602084013e620006e3565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620007139062000ef0565b60405180910390a1505b62000724565b5b600062000768576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200075f9062000f62565b60405180910390fd5b60019050919050565b6001806040517fcf479181000000000000000000000000000000000000000000000000000000008152600401620007aa92919062000fd1565b60405180910390fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007e7906200104e565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200083a919062000c20565b60405180910390a2816001600082825462000856919062000b95565b925050819055506200087660018362000870919062000b95565b62000280565b506200088162000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b8152600401620008dd919062000975565b6020604051808303816000875af1158015620008fd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000923919062000c69565b5060019050919050565b60015481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b610a9f806200107183390190565b6000819050919050565b6200096f816200095a565b82525050565b60006020820190506200098c600083018462000964565b92915050565b6000819050919050565b620009a78162000992565b82525050565b6000602082019050620009c460008301846200099c565b92915050565b6000604051905090565b600080fd5b620009e4816200095a565b8114620009f057600080fd5b50565b60008135905062000a0481620009d9565b92915050565b60006020828403121562000a235762000a22620009d4565b5b600062000a3384828501620009f3565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000a698262000a3c565b9050919050565b62000a7b8162000a5c565b811462000a8757600080fd5b50565b60008135905062000a9b8162000a70565b92915050565b60006020828403121562000aba5762000ab9620009d4565b5b600062000aca8482850162000a8a565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000b1c600e8362000ad3565b915062000b298262000ae4565b602082019050919050565b600060408201905062000b4b600083018462000964565b818103602083015262000b5e8162000b0d565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000ba2826200095a565b915062000baf836200095a565b925082820190508082111562000bca5762000bc962000b66565b5b92915050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b600062000c0860058362000ad3565b915062000c158262000bd0565b602082019050919050565b600060408201905062000c37600083018462000964565b818103602083015262000c4a8162000bf9565b905092915050565b60008151905062000c6381620009d9565b92915050565b60006020828403121562000c825762000c81620009d4565b5b600062000c928482850162000c52565b91505092915050565b60008160e01c9050919050565b600060033d111562000cca5760046000803e62000cc760005162000c9b565b90505b90565b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000d188262000ccd565b810181811067ffffffffffffffff8211171562000d3a5762000d3962000cde565b5b80604052505050565b600060443d1062000ddb5762000d58620009ca565b60043d036004823e80513d602482011167ffffffffffffffff8211171562000d8257505062000ddb565b808201805167ffffffffffffffff81111562000da2575050505062000ddb565b80602083010160043d03850181111562000dc157505050505062000ddb565b62000dd28260200185018662000d0d565b82955050505050505b90565b600081519050919050565b60005b8381101562000e0957808201518184015260208101905062000dec565b60008484015250505050565b600062000e228262000dde565b62000e2e818562000ad3565b935062000e4081856020860162000de9565b62000e4b8162000ccd565b840191505092915050565b6000602082019050818103600083015262000e72818462000e15565b905092915050565b7f45787465726e616c2063616c6c206661696c656420776974686f757420616e2060008201527f6572726f72206d65737361676500000000000000000000000000000000000000602082015250565b600062000ed8602d8362000ad3565b915062000ee58262000e7a565b604082019050919050565b6000602082019050818103600083015262000f0b8162000ec9565b9050919050565b7f494e53554646494349454e542042414c414e4345000000000000000000000000600082015250565b600062000f4a60148362000ad3565b915062000f578262000f12565b602082019050919050565b6000602082019050818103600083015262000f7d8162000f3b565b9050919050565b6000819050919050565b6000819050919050565b600062000fb962000fb362000fad8462000f84565b62000f8e565b6200095a565b9050919050565b62000fcb8162000f98565b82525050565b600060408201905062000fe8600083018562000fc0565b62000ff7602083018462000fc0565b9392505050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b60006200103660178362000ad3565b9150620010438262000ffe565b602082019050919050565b60006020820190508181036000830152620010698162001027565b905091905056fe60806040526000600160006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b50600160009054906101000a900460ff161562000080576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200007790620002b5565b60405180910390fd5b60018060006101000a81548160ff021916908315150217905550620000bc701d6329f1c35ca4bfabb9f5610000000000620000c360201b60201c565b5062000460565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200010d919062000342565b60405180910390a281600080828254620001289190620003a3565b925050819055506200014e600183620001429190620003a3565b6200016960201b60201c565b506200015f620001df60201b60201c565b5060019050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620001b391906200042e565b60405180910390a28160026000828254620001cf9190620003a3565b9250508190555060029050919050565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b600082825260208201905092915050565b7f436f6e747261637420696e7374616e63652068617320616c726561647920626560008201527f656e20696e697469616c697a6564000000000000000000000000000000000000602082015250565b60006200029d602e836200022e565b9150620002aa826200023f565b604082019050919050565b60006020820190508181036000830152620002d0816200028e565b9050919050565b6000819050919050565b620002ec81620002d7565b82525050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006200032a6005836200022e565b91506200033782620002f2565b602082019050919050565b6000604082019050620003596000830184620002e1565b81810360208301526200036c816200031b565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620003b082620002d7565b9150620003bd83620002d7565b9250828201905080821115620003d857620003d762000374565b5b92915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000416600e836200022e565b91506200042382620003de565b602082019050919050565b6000604082019050620004456000830184620002e1565b8181036020830152620004588162000407565b905092915050565b61062f80620004706000396000f3fe608060405234801561001057600080fd5b50600436106100625760003560e01c80631c717069146100675780631c93908c1461008557806392954362146100b5578063a0712d68146100bf578063b69ef8a8146100ef578063c9353cb51461010d575b600080fd5b61006f610129565b60405161007c91906102ed565b60405180910390f35b61009f600480360381019061009a9190610343565b610178565b6040516100ac919061037f565b60405180910390f35b6100bd6101ea565b005b6100d960048036038101906100d49190610343565b610225565b6040516100e6919061037f565b60405180910390f35b6100f76102b5565b604051610104919061037f565b60405180910390f35b610127600480360381019061012291906103f8565b6102bb565b005b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516101c09190610482565b60405180910390a281600260008282546101da91906104df565b9250508190555060029050919050565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161021c9061055f565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405161026d91906105cb565b60405180910390a28160008082825461028691906104df565b925050819055506102a260018361029d91906104df565b610178565b506102ab610129565b5060019050919050565b60005481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b6000819050919050565b6102e7816102d4565b82525050565b600060208201905061030260008301846102de565b92915050565b600080fd5b6000819050919050565b6103208161030d565b811461032b57600080fd5b50565b60008135905061033d81610317565b92915050565b60006020828403121561035957610358610308565b5b60006103678482850161032e565b91505092915050565b6103798161030d565b82525050565b60006020820190506103946000830184610370565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006103c58261039a565b9050919050565b6103d5816103ba565b81146103e057600080fd5b50565b6000813590506103f2816103cc565b92915050565b60006020828403121561040e5761040d610308565b5b600061041c848285016103e3565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600061046c600e83610425565b915061047782610436565b602082019050919050565b60006040820190506104976000830184610370565b81810360208301526104a88161045f565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006104ea8261030d565b91506104f58361030d565b925082820190508082111561050d5761050c6104b0565b5b92915050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b6000610549601783610425565b915061055482610513565b602082019050919050565b600060208201905081810360008301526105788161053c565b9050919050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006105b5600583610425565b91506105c08261057f565b602082019050919050565b60006040820190506105e06000830184610370565b81810360208301526105f1816105a8565b90509291505056fea26469706673582212202a0a0fa5842e91cc0c1e5b645f7286aad7193a83c3b2f8c8e4c1b35008af0d6f64736f6c63430008140033a264697066735822122036f326b9881542090544d5d6e9f2ff18b13ec09bd4994f14891a84e97f4d6db964736f6c63430008140033", "structLogs": [ { - "pc": 0, - "op": "PUSH1", - "gas": 1942882, - "gasCost": 3, "depth": 1, + "gas": 1620940, + "gasCost": 3, + "op": "PUSH1", + "pc": 0, "stack": [] }, { - "pc": 2, - "op": "PUSH1", - "gas": 1942879, - "gasCost": 3, "depth": 1, + "gas": 1620937, + "gasCost": 3, + "op": "PUSH1", + "pc": 2, "stack": [ "0x80" ] }, { - "pc": 4, - "op": "MSTORE", - "gas": 1942876, - "gasCost": 12, "depth": 1, + "gas": 1620934, + "gasCost": 12, + "op": "MSTORE", + "pc": 4, "stack": [ "0x80", "0x40" ] }, { - "pc": 5, - "op": "PUSH1", - "gas": 1942864, - "gasCost": 3, "depth": 1, + "gas": 1620922, + "gasCost": 3, + "op": "PUSH1", + "pc": 5, "stack": [] }, { - "pc": 7, - "op": "PUSH1", - "gas": 1942861, - "gasCost": 3, "depth": 1, + "gas": 1620919, + "gasCost": 3, + "op": "PUSH1", + "pc": 7, "stack": [ "0x0" ] }, { - "pc": 9, - "op": "PUSH1", - "gas": 1942858, - "gasCost": 3, "depth": 1, + "gas": 1620916, + "gasCost": 3, + "op": "PUSH1", + "pc": 9, "stack": [ "0x0", "0x2" ] }, { - "pc": 11, - "op": "PUSH2", - "gas": 1942855, - "gasCost": 3, "depth": 1, + "gas": 1620913, + "gasCost": 3, + "op": "PUSH2", + "pc": 11, "stack": [ "0x0", "0x2", @@ -74,11 +74,11 @@ ] }, { - "pc": 14, - "op": "EXP", - "gas": 1942852, - "gasCost": 10, "depth": 1, + "gas": 1620910, + "gasCost": 10, + "op": "EXP", + "pc": 14, "stack": [ "0x0", "0x2", @@ -87,11 +87,11 @@ ] }, { - "pc": 15, - "op": "DUP2", - "gas": 1942842, - "gasCost": 3, "depth": 1, + "gas": 1620900, + "gasCost": 3, + "op": "DUP2", + "pc": 15, "stack": [ "0x0", "0x2", @@ -99,11 +99,11 @@ ] }, { - "pc": 16, - "op": "SLOAD", - "gas": 1942839, - "gasCost": 2100, "depth": 1, + "gas": 1620897, + "gasCost": 200, + "op": "SLOAD", + "pc": 16, "stack": [ "0x0", "0x2", @@ -115,11 +115,11 @@ } }, { - "pc": 17, - "op": "DUP2", - "gas": 1940739, - "gasCost": 3, "depth": 1, + "gas": 1620697, + "gasCost": 3, + "op": "DUP2", + "pc": 17, "stack": [ "0x0", "0x2", @@ -128,11 +128,11 @@ ] }, { - "pc": 18, - "op": "PUSH1", - "gas": 1940736, - "gasCost": 3, "depth": 1, + "gas": 1620694, + "gasCost": 3, + "op": "PUSH1", + "pc": 18, "stack": [ "0x0", "0x2", @@ -142,11 +142,11 @@ ] }, { - "pc": 20, - "op": "MUL", - "gas": 1940733, - "gasCost": 5, "depth": 1, + "gas": 1620691, + "gasCost": 5, + "op": "MUL", + "pc": 20, "stack": [ "0x0", "0x2", @@ -157,11 +157,11 @@ ] }, { - "pc": 21, - "op": "NOT", - "gas": 1940728, - "gasCost": 3, "depth": 1, + "gas": 1620686, + "gasCost": 3, + "op": "NOT", + "pc": 21, "stack": [ "0x0", "0x2", @@ -171,11 +171,11 @@ ] }, { - "pc": 22, - "op": "AND", - "gas": 1940725, - "gasCost": 3, "depth": 1, + "gas": 1620683, + "gasCost": 3, + "op": "AND", + "pc": 22, "stack": [ "0x0", "0x2", @@ -185,11 +185,11 @@ ] }, { - "pc": 23, - "op": "SWAP1", - "gas": 1940722, - "gasCost": 3, "depth": 1, + "gas": 1620680, + "gasCost": 3, + "op": "SWAP1", + "pc": 23, "stack": [ "0x0", "0x2", @@ -198,11 +198,11 @@ ] }, { - "pc": 24, - "op": "DUP4", - "gas": 1940719, - "gasCost": 3, "depth": 1, + "gas": 1620677, + "gasCost": 3, + "op": "DUP4", + "pc": 24, "stack": [ "0x0", "0x2", @@ -211,11 +211,11 @@ ] }, { - "pc": 25, - "op": "ISZERO", - "gas": 1940716, - "gasCost": 3, "depth": 1, + "gas": 1620674, + "gasCost": 3, + "op": "ISZERO", + "pc": 25, "stack": [ "0x0", "0x2", @@ -225,11 +225,11 @@ ] }, { - "pc": 26, - "op": "ISZERO", - "gas": 1940713, - "gasCost": 3, "depth": 1, + "gas": 1620671, + "gasCost": 3, + "op": "ISZERO", + "pc": 26, "stack": [ "0x0", "0x2", @@ -239,11 +239,11 @@ ] }, { - "pc": 27, - "op": "MUL", - "gas": 1940710, - "gasCost": 5, "depth": 1, + "gas": 1620668, + "gasCost": 5, + "op": "MUL", + "pc": 27, "stack": [ "0x0", "0x2", @@ -253,11 +253,11 @@ ] }, { - "pc": 28, - "op": "OR", - "gas": 1940705, - "gasCost": 3, "depth": 1, + "gas": 1620663, + "gasCost": 3, + "op": "OR", + "pc": 28, "stack": [ "0x0", "0x2", @@ -266,11 +266,11 @@ ] }, { - "pc": 29, - "op": "SWAP1", - "gas": 1940702, - "gasCost": 3, "depth": 1, + "gas": 1620660, + "gasCost": 3, + "op": "SWAP1", + "pc": 29, "stack": [ "0x0", "0x2", @@ -278,11 +278,11 @@ ] }, { - "pc": 30, - "op": "SSTORE", - "gas": 1940699, - "gasCost": 100, "depth": 1, + "gas": 1620657, + "gasCost": 200, + "op": "SSTORE", + "pc": 30, "stack": [ "0x0", "0x0", @@ -293,61 +293,61 @@ } }, { - "pc": 31, - "op": "POP", - "gas": 1940599, - "gasCost": 2, "depth": 1, + "gas": 1620457, + "gasCost": 2, + "op": "POP", + "pc": 31, "stack": [ "0x0" ] }, { - "pc": 32, - "op": "CALLVALUE", - "gas": 1940597, - "gasCost": 2, "depth": 1, + "gas": 1620455, + "gasCost": 2, + "op": "CALLVALUE", + "pc": 32, "stack": [] }, { - "pc": 33, - "op": "DUP1", - "gas": 1940595, - "gasCost": 3, "depth": 1, + "gas": 1620453, + "gasCost": 3, + "op": "DUP1", + "pc": 33, "stack": [ "0x0" ] }, { - "pc": 34, - "op": "ISZERO", - "gas": 1940592, - "gasCost": 3, "depth": 1, + "gas": 1620450, + "gasCost": 3, + "op": "ISZERO", + "pc": 34, "stack": [ "0x0", "0x0" ] }, { - "pc": 35, - "op": "PUSH2", - "gas": 1940589, - "gasCost": 3, "depth": 1, + "gas": 1620447, + "gasCost": 3, + "op": "PUSH2", + "pc": 35, "stack": [ "0x0", "0x1" ] }, { - "pc": 38, - "op": "JUMPI", - "gas": 1940586, - "gasCost": 10, "depth": 1, + "gas": 1620444, + "gasCost": 10, + "op": "JUMPI", + "pc": 38, "stack": [ "0x0", "0x1", @@ -355,60 +355,60 @@ ] }, { - "pc": 43, - "op": "JUMPDEST", - "gas": 1940576, - "gasCost": 1, "depth": 1, + "gas": 1620434, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 43, "stack": [ "0x0" ] }, { - "pc": 44, - "op": "POP", - "gas": 1940575, - "gasCost": 2, "depth": 1, + "gas": 1620433, + "gasCost": 2, + "op": "POP", + "pc": 44, "stack": [ "0x0" ] }, { - "pc": 45, - "op": "PUSH1", - "gas": 1940573, - "gasCost": 3, "depth": 1, + "gas": 1620431, + "gasCost": 3, + "op": "PUSH1", + "pc": 45, "stack": [] }, { - "pc": 47, - "op": "PUSH1", - "gas": 1940570, - "gasCost": 3, "depth": 1, + "gas": 1620428, + "gasCost": 3, + "op": "PUSH1", + "pc": 47, "stack": [ "0x2" ] }, { - "pc": 49, - "op": "SWAP1", - "gas": 1940567, - "gasCost": 3, "depth": 1, + "gas": 1620425, + "gasCost": 3, + "op": "SWAP1", + "pc": 49, "stack": [ "0x2", "0x0" ] }, { - "pc": 50, - "op": "SLOAD", - "gas": 1940564, - "gasCost": 100, "depth": 1, + "gas": 1620422, + "gasCost": 200, + "op": "SLOAD", + "pc": 50, "stack": [ "0x0", "0x2" @@ -418,33 +418,33 @@ } }, { - "pc": 51, - "op": "SWAP1", - "gas": 1940464, - "gasCost": 3, "depth": 1, + "gas": 1620222, + "gasCost": 3, + "op": "SWAP1", + "pc": 51, "stack": [ "0x0", "0x0" ] }, { - "pc": 52, - "op": "PUSH2", - "gas": 1940461, - "gasCost": 3, "depth": 1, + "gas": 1620219, + "gasCost": 3, + "op": "PUSH2", + "pc": 52, "stack": [ "0x0", "0x0" ] }, { - "pc": 55, - "op": "EXP", - "gas": 1940458, - "gasCost": 10, "depth": 1, + "gas": 1620216, + "gasCost": 10, + "op": "EXP", + "pc": 55, "stack": [ "0x0", "0x0", @@ -452,122 +452,122 @@ ] }, { - "pc": 56, - "op": "SWAP1", - "gas": 1940448, - "gasCost": 3, "depth": 1, + "gas": 1620206, + "gasCost": 3, + "op": "SWAP1", + "pc": 56, "stack": [ "0x0", "0x1" ] }, { - "pc": 57, - "op": "DIV", - "gas": 1940445, - "gasCost": 5, "depth": 1, + "gas": 1620203, + "gasCost": 5, + "op": "DIV", + "pc": 57, "stack": [ "0x1", "0x0" ] }, { - "pc": 58, - "op": "PUSH1", - "gas": 1940440, - "gasCost": 3, "depth": 1, + "gas": 1620198, + "gasCost": 3, + "op": "PUSH1", + "pc": 58, "stack": [ "0x0" ] }, { - "pc": 60, - "op": "AND", - "gas": 1940437, - "gasCost": 3, "depth": 1, + "gas": 1620195, + "gasCost": 3, + "op": "AND", + "pc": 60, "stack": [ "0x0", "0xff" ] }, { - "pc": 61, - "op": "ISZERO", - "gas": 1940434, - "gasCost": 3, "depth": 1, + "gas": 1620192, + "gasCost": 3, + "op": "ISZERO", + "pc": 61, "stack": [ "0x0" ] }, { - "pc": 62, - "op": "PUSH2", - "gas": 1940431, - "gasCost": 3, "depth": 1, + "gas": 1620189, + "gasCost": 3, + "op": "PUSH2", + "pc": 62, "stack": [ "0x1" ] }, { - "pc": 65, - "op": "JUMPI", - "gas": 1940428, - "gasCost": 10, "depth": 1, + "gas": 1620186, + "gasCost": 10, + "op": "JUMPI", + "pc": 65, "stack": [ "0x1", "0x7c" ] }, { - "pc": 124, - "op": "JUMPDEST", - "gas": 1940418, - "gasCost": 1, "depth": 1, + "gas": 1620176, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 124, "stack": [] }, { - "pc": 125, - "op": "PUSH1", - "gas": 1940417, - "gasCost": 3, "depth": 1, + "gas": 1620175, + "gasCost": 3, + "op": "PUSH1", + "pc": 125, "stack": [] }, { - "pc": 127, - "op": "PUSH1", - "gas": 1940414, - "gasCost": 3, "depth": 1, + "gas": 1620172, + "gasCost": 3, + "op": "PUSH1", + "pc": 127, "stack": [ "0x1" ] }, { - "pc": 129, - "op": "PUSH1", - "gas": 1940411, - "gasCost": 3, "depth": 1, + "gas": 1620169, + "gasCost": 3, + "op": "PUSH1", + "pc": 129, "stack": [ "0x1", "0x2" ] }, { - "pc": 131, - "op": "PUSH2", - "gas": 1940408, - "gasCost": 3, "depth": 1, + "gas": 1620166, + "gasCost": 3, + "op": "PUSH2", + "pc": 131, "stack": [ "0x1", "0x2", @@ -575,11 +575,11 @@ ] }, { - "pc": 134, - "op": "EXP", - "gas": 1940405, - "gasCost": 10, "depth": 1, + "gas": 1620163, + "gasCost": 10, + "op": "EXP", + "pc": 134, "stack": [ "0x1", "0x2", @@ -588,11 +588,11 @@ ] }, { - "pc": 135, - "op": "DUP2", - "gas": 1940395, - "gasCost": 3, "depth": 1, + "gas": 1620153, + "gasCost": 3, + "op": "DUP2", + "pc": 135, "stack": [ "0x1", "0x2", @@ -600,11 +600,11 @@ ] }, { - "pc": 136, - "op": "SLOAD", - "gas": 1940392, - "gasCost": 100, "depth": 1, + "gas": 1620150, + "gasCost": 200, + "op": "SLOAD", + "pc": 136, "stack": [ "0x1", "0x2", @@ -616,11 +616,11 @@ } }, { - "pc": 137, - "op": "DUP2", - "gas": 1940292, - "gasCost": 3, "depth": 1, + "gas": 1619950, + "gasCost": 3, + "op": "DUP2", + "pc": 137, "stack": [ "0x1", "0x2", @@ -629,11 +629,11 @@ ] }, { - "pc": 138, - "op": "PUSH1", - "gas": 1940289, - "gasCost": 3, "depth": 1, + "gas": 1619947, + "gasCost": 3, + "op": "PUSH1", + "pc": 138, "stack": [ "0x1", "0x2", @@ -643,11 +643,11 @@ ] }, { - "pc": 140, - "op": "MUL", - "gas": 1940286, - "gasCost": 5, "depth": 1, + "gas": 1619944, + "gasCost": 5, + "op": "MUL", + "pc": 140, "stack": [ "0x1", "0x2", @@ -658,11 +658,11 @@ ] }, { - "pc": 141, - "op": "NOT", - "gas": 1940281, - "gasCost": 3, "depth": 1, + "gas": 1619939, + "gasCost": 3, + "op": "NOT", + "pc": 141, "stack": [ "0x1", "0x2", @@ -672,11 +672,11 @@ ] }, { - "pc": 142, - "op": "AND", - "gas": 1940278, - "gasCost": 3, "depth": 1, + "gas": 1619936, + "gasCost": 3, + "op": "AND", + "pc": 142, "stack": [ "0x1", "0x2", @@ -686,11 +686,11 @@ ] }, { - "pc": 143, - "op": "SWAP1", - "gas": 1940275, - "gasCost": 3, "depth": 1, + "gas": 1619933, + "gasCost": 3, + "op": "SWAP1", + "pc": 143, "stack": [ "0x1", "0x2", @@ -699,11 +699,11 @@ ] }, { - "pc": 144, - "op": "DUP4", - "gas": 1940272, - "gasCost": 3, "depth": 1, + "gas": 1619930, + "gasCost": 3, + "op": "DUP4", + "pc": 144, "stack": [ "0x1", "0x2", @@ -712,11 +712,11 @@ ] }, { - "pc": 145, - "op": "ISZERO", - "gas": 1940269, - "gasCost": 3, "depth": 1, + "gas": 1619927, + "gasCost": 3, + "op": "ISZERO", + "pc": 145, "stack": [ "0x1", "0x2", @@ -726,11 +726,11 @@ ] }, { - "pc": 146, - "op": "ISZERO", - "gas": 1940266, - "gasCost": 3, "depth": 1, + "gas": 1619924, + "gasCost": 3, + "op": "ISZERO", + "pc": 146, "stack": [ "0x1", "0x2", @@ -740,11 +740,11 @@ ] }, { - "pc": 147, - "op": "MUL", - "gas": 1940263, - "gasCost": 5, "depth": 1, + "gas": 1619921, + "gasCost": 5, + "op": "MUL", + "pc": 147, "stack": [ "0x1", "0x2", @@ -754,11 +754,11 @@ ] }, { - "pc": 148, - "op": "OR", - "gas": 1940258, - "gasCost": 3, "depth": 1, + "gas": 1619916, + "gasCost": 3, + "op": "OR", + "pc": 148, "stack": [ "0x1", "0x2", @@ -767,11 +767,11 @@ ] }, { - "pc": 149, - "op": "SWAP1", - "gas": 1940255, - "gasCost": 3, "depth": 1, + "gas": 1619913, + "gasCost": 3, + "op": "SWAP1", + "pc": 149, "stack": [ "0x1", "0x2", @@ -779,11 +779,11 @@ ] }, { - "pc": 150, - "op": "SSTORE", - "gas": 1940252, - "gasCost": 20000, "depth": 1, + "gas": 1619910, + "gasCost": 20000, + "op": "SSTORE", + "pc": 150, "stack": [ "0x1", "0x1", @@ -794,76 +794,76 @@ } }, { - "pc": 151, - "op": "POP", - "gas": 1920252, - "gasCost": 2, "depth": 1, + "gas": 1599910, + "gasCost": 2, + "op": "POP", + "pc": 151, "stack": [ "0x1" ] }, { - "pc": 152, - "op": "PUSH2", - "gas": 1920250, - "gasCost": 3, "depth": 1, + "gas": 1599908, + "gasCost": 3, + "op": "PUSH2", + "pc": 152, "stack": [] }, { - "pc": 155, - "op": "JUMP", - "gas": 1920247, - "gasCost": 8, "depth": 1, + "gas": 1599905, + "gasCost": 8, + "op": "JUMP", + "pc": 155, "stack": [ "0x13f" ] }, { - "pc": 319, - "op": "JUMPDEST", - "gas": 1920239, - "gasCost": 1, "depth": 1, + "gas": 1599897, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 319, "stack": [] }, { - "pc": 320, - "op": "PUSH2", - "gas": 1920238, - "gasCost": 3, "depth": 1, + "gas": 1599896, + "gasCost": 3, + "op": "PUSH2", + "pc": 320, "stack": [] }, { - "pc": 323, - "op": "DUP1", - "gas": 1920235, - "gasCost": 3, "depth": 1, + "gas": 1599893, + "gasCost": 3, + "op": "DUP1", + "pc": 323, "stack": [ "0x1b45" ] }, { - "pc": 324, - "op": "PUSH2", - "gas": 1920232, - "gasCost": 3, "depth": 1, + "gas": 1599890, + "gasCost": 3, + "op": "PUSH2", + "pc": 324, "stack": [ "0x1b45", "0x1b45" ] }, { - "pc": 327, - "op": "PUSH1", - "gas": 1920229, - "gasCost": 3, "depth": 1, + "gas": 1599887, + "gasCost": 3, + "op": "PUSH1", + "pc": 327, "stack": [ "0x1b45", "0x1b45", @@ -871,11 +871,11 @@ ] }, { - "pc": 329, - "op": "CODECOPY", - "gas": 1920226, - "gasCost": 1401, "depth": 1, + "gas": 1599884, + "gasCost": 1401, + "op": "CODECOPY", + "pc": 329, "stack": [ "0x1b45", "0x1b45", @@ -884,21 +884,21 @@ ] }, { - "pc": 330, - "op": "PUSH1", - "gas": 1918825, - "gasCost": 3, "depth": 1, + "gas": 1598483, + "gasCost": 3, + "op": "PUSH1", + "pc": 330, "stack": [ "0x1b45" ] }, { - "pc": 332, - "op": "RETURN", - "gas": 1918822, - "gasCost": 0, "depth": 1, + "gas": 1598480, + "gasCost": 0, + "op": "RETURN", + "pc": 332, "stack": [ "0x1b45", "0x0" diff --git a/test/historicstate/hardhat/scripts/geth_traces/Tracer.deploy.prestateDiffTracer.json b/test/historicstate/hardhat/scripts/geth_traces/Tracer.deploy.prestateDiffTracer.json index bb4689866..097ef1abc 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/Tracer.deploy.prestateDiffTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/Tracer.deploy.prestateDiffTracer.json @@ -1,27 +1,30 @@ { "post": { "0x0000000000000000000000000000000000000000": { - "balance": "0x3bf546" + "balance": "0x2c2f4aeb00" + }, + "OWNER.address": { + "balance": "0xc9f2c9ccfdb990889ee331500", + "nonce": 358 }, "Tracer.address": { "code": "0x60806040523480156200001157600080fd5b5060043610620000ac5760003560e01c80638bfe44ff116200006f5780638bfe44ff14620001975780639295436214620001a3578063a0712d6814620001af578063b69ef8a814620001e5578063c9353cb5146200020757620000ac565b806312065fe014620000b15780631c71706914620000d35780631c93908c14620000f55780633aa18088146200012b5780637f29c3941462000161575b600080fd5b620000bb62000227565b604051620000ca919062000975565b60405180910390f35b620000dd62000231565b604051620000ec9190620009ad565b60405180910390f35b6200011360048036038101906200010d919062000a0a565b62000280565b60405162000122919062000975565b60405180910390f35b62000149600480360381019062000143919062000a0a565b620002f6565b60405162000158919062000975565b60405180910390f35b6200017f600480360381019062000179919062000a0a565b6200049e565b6040516200018e919062000975565b60405180910390f35b620001a162000771565b005b620001ad620007b3565b005b620001cd6004803603810190620001c7919062000a0a565b620007f0565b604051620001dc919062000975565b60405180910390f35b620001ef6200092d565b604051620001fe919062000975565b60405180910390f35b6200022560048036038101906200021f919062000aa1565b62000933565b005b6000600154905090565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620002ca919062000b34565b60405180910390a28160036000828254620002e6919062000b95565b9250508190555060029050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405162000340919062000c20565b60405180910390a260405162000356906200094c565b604051809103906000f08015801562000373573d6000803e3d6000fd5b506000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508160016000828254620003c7919062000b95565b92505081905550620003e7600183620003e1919062000b95565b62000280565b50620003f262000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b81526004016200044e919062000975565b6020604051808303816000875af11580156200046e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000494919062000c69565b5060019050919050565b60003073ffffffffffffffffffffffffffffffffffffffff1663929543626040518163ffffffff1660e01b815260040160006040518083038186803b158015620004e757600080fd5b505afa925050508015620004f9575060015b620005e1576200050862000ca8565b806308c379a0036200056c57506200051f62000d43565b806200052c57506200056e565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a816040516200055d919062000e56565b60405180910390a150620005db565b505b3d80600081146200059c576040519150601f19603f3d011682016040523d82523d6000602084013e620005a1565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620005d19062000ef0565b60405180910390a1505b620005e2565b5b3073ffffffffffffffffffffffffffffffffffffffff16638bfe44ff6040518163ffffffff1660e01b815260040160006040518083038186803b1580156200062957600080fd5b505afa9250505080156200063b575060015b62000723576200064a62000ca8565b806308c379a003620006ae57506200066162000d43565b806200066e5750620006b0565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a816040516200069f919062000e56565b60405180910390a1506200071d565b505b3d8060008114620006de576040519150601f19603f3d011682016040523d82523d6000602084013e620006e3565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620007139062000ef0565b60405180910390a1505b62000724565b5b600062000768576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200075f9062000f62565b60405180910390fd5b60019050919050565b6001806040517fcf479181000000000000000000000000000000000000000000000000000000008152600401620007aa92919062000fd1565b60405180910390fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007e7906200104e565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200083a919062000c20565b60405180910390a2816001600082825462000856919062000b95565b925050819055506200087660018362000870919062000b95565b62000280565b506200088162000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b8152600401620008dd919062000975565b6020604051808303816000875af1158015620008fd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000923919062000c69565b5060019050919050565b60015481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b610a9f806200107183390190565b6000819050919050565b6200096f816200095a565b82525050565b60006020820190506200098c600083018462000964565b92915050565b6000819050919050565b620009a78162000992565b82525050565b6000602082019050620009c460008301846200099c565b92915050565b6000604051905090565b600080fd5b620009e4816200095a565b8114620009f057600080fd5b50565b60008135905062000a0481620009d9565b92915050565b60006020828403121562000a235762000a22620009d4565b5b600062000a3384828501620009f3565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000a698262000a3c565b9050919050565b62000a7b8162000a5c565b811462000a8757600080fd5b50565b60008135905062000a9b8162000a70565b92915050565b60006020828403121562000aba5762000ab9620009d4565b5b600062000aca8482850162000a8a565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000b1c600e8362000ad3565b915062000b298262000ae4565b602082019050919050565b600060408201905062000b4b600083018462000964565b818103602083015262000b5e8162000b0d565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000ba2826200095a565b915062000baf836200095a565b925082820190508082111562000bca5762000bc962000b66565b5b92915050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b600062000c0860058362000ad3565b915062000c158262000bd0565b602082019050919050565b600060408201905062000c37600083018462000964565b818103602083015262000c4a8162000bf9565b905092915050565b60008151905062000c6381620009d9565b92915050565b60006020828403121562000c825762000c81620009d4565b5b600062000c928482850162000c52565b91505092915050565b60008160e01c9050919050565b600060033d111562000cca5760046000803e62000cc760005162000c9b565b90505b90565b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000d188262000ccd565b810181811067ffffffffffffffff8211171562000d3a5762000d3962000cde565b5b80604052505050565b600060443d1062000ddb5762000d58620009ca565b60043d036004823e80513d602482011167ffffffffffffffff8211171562000d8257505062000ddb565b808201805167ffffffffffffffff81111562000da2575050505062000ddb565b80602083010160043d03850181111562000dc157505050505062000ddb565b62000dd28260200185018662000d0d565b82955050505050505b90565b600081519050919050565b60005b8381101562000e0957808201518184015260208101905062000dec565b60008484015250505050565b600062000e228262000dde565b62000e2e818562000ad3565b935062000e4081856020860162000de9565b62000e4b8162000ccd565b840191505092915050565b6000602082019050818103600083015262000e72818462000e15565b905092915050565b7f45787465726e616c2063616c6c206661696c656420776974686f757420616e2060008201527f6572726f72206d65737361676500000000000000000000000000000000000000602082015250565b600062000ed8602d8362000ad3565b915062000ee58262000e7a565b604082019050919050565b6000602082019050818103600083015262000f0b8162000ec9565b9050919050565b7f494e53554646494349454e542042414c414e4345000000000000000000000000600082015250565b600062000f4a60148362000ad3565b915062000f578262000f12565b602082019050919050565b6000602082019050818103600083015262000f7d8162000f3b565b9050919050565b6000819050919050565b6000819050919050565b600062000fb962000fb362000fad8462000f84565b62000f8e565b6200095a565b9050919050565b62000fcb8162000f98565b82525050565b600060408201905062000fe8600083018562000fc0565b62000ff7602083018462000fc0565b9392505050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b60006200103660178362000ad3565b9150620010438262000ffe565b602082019050919050565b60006020820190508181036000830152620010698162001027565b905091905056fe60806040526000600160006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b50600160009054906101000a900460ff161562000080576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200007790620002b5565b60405180910390fd5b60018060006101000a81548160ff021916908315150217905550620000bc701d6329f1c35ca4bfabb9f5610000000000620000c360201b60201c565b5062000460565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200010d919062000342565b60405180910390a281600080828254620001289190620003a3565b925050819055506200014e600183620001429190620003a3565b6200016960201b60201c565b506200015f620001df60201b60201c565b5060019050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620001b391906200042e565b60405180910390a28160026000828254620001cf9190620003a3565b9250508190555060029050919050565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b600082825260208201905092915050565b7f436f6e747261637420696e7374616e63652068617320616c726561647920626560008201527f656e20696e697469616c697a6564000000000000000000000000000000000000602082015250565b60006200029d602e836200022e565b9150620002aa826200023f565b604082019050919050565b60006020820190508181036000830152620002d0816200028e565b9050919050565b6000819050919050565b620002ec81620002d7565b82525050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006200032a6005836200022e565b91506200033782620002f2565b602082019050919050565b6000604082019050620003596000830184620002e1565b81810360208301526200036c816200031b565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620003b082620002d7565b9150620003bd83620002d7565b9250828201905080821115620003d857620003d762000374565b5b92915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000416600e836200022e565b91506200042382620003de565b602082019050919050565b6000604082019050620004456000830184620002e1565b8181036020830152620004588162000407565b905092915050565b61062f80620004706000396000f3fe608060405234801561001057600080fd5b50600436106100625760003560e01c80631c717069146100675780631c93908c1461008557806392954362146100b5578063a0712d68146100bf578063b69ef8a8146100ef578063c9353cb51461010d575b600080fd5b61006f610129565b60405161007c91906102ed565b60405180910390f35b61009f600480360381019061009a9190610343565b610178565b6040516100ac919061037f565b60405180910390f35b6100bd6101ea565b005b6100d960048036038101906100d49190610343565b610225565b6040516100e6919061037f565b60405180910390f35b6100f76102b5565b604051610104919061037f565b60405180910390f35b610127600480360381019061012291906103f8565b6102bb565b005b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516101c09190610482565b60405180910390a281600260008282546101da91906104df565b9250508190555060029050919050565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161021c9061055f565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405161026d91906105cb565b60405180910390a28160008082825461028691906104df565b925050819055506102a260018361029d91906104df565b610178565b506102ab610129565b5060019050919050565b60005481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b6000819050919050565b6102e7816102d4565b82525050565b600060208201905061030260008301846102de565b92915050565b600080fd5b6000819050919050565b6103208161030d565b811461032b57600080fd5b50565b60008135905061033d81610317565b92915050565b60006020828403121561035957610358610308565b5b60006103678482850161032e565b91505092915050565b6103798161030d565b82525050565b60006020820190506103946000830184610370565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006103c58261039a565b9050919050565b6103d5816103ba565b81146103e057600080fd5b50565b6000813590506103f2816103cc565b92915050565b60006020828403121561040e5761040d610308565b5b600061041c848285016103e3565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600061046c600e83610425565b915061047782610436565b602082019050919050565b60006040820190506104976000830184610370565b81810360208301526104a88161045f565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006104ea8261030d565b91506104f58361030d565b925082820190508082111561050d5761050c6104b0565b5b92915050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b6000610549601783610425565b915061055482610513565b602082019050919050565b600060208201905081810360008301526105788161053c565b9050919050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006105b5600583610425565b91506105c08261057f565b602082019050919050565b60006040820190506105e06000830184610370565b81810360208301526105f1816105a8565b90509291505056fea26469706673582212202a0a0fa5842e91cc0c1e5b645f7286aad7193a83c3b2f8c8e4c1b35008af0d6f64736f6c63430008140033a264697066735822122036f326b9881542090544d5d6e9f2ff18b13ec09bd4994f14891a84e97f4d6db964736f6c63430008140033", - "nonce": 1, "storage": { "0x0000000000000000000000000000000000000000000000000000000000000002": "0x0000000000000000000000000000000000000000000000000000000000000001" } - }, - "OWNER.address": { - "balance": "0x10f0a2572ebdf8ca48a", - "nonce": 7 } }, "pre": { "0x0000000000000000000000000000000000000000": { - "balance": "0x23e3a4" + "balance": "0x0" }, "OWNER.address": { - "balance": "0x10f0a26a4e4b8d3e124", - "nonce": 6 + "balance": "0xc9f2c9ccfdb9908b61d7e0000", + "nonce": 357 + }, + "Tracer.address": { + "balance": "0x0", + "nonce": 1 } } } \ No newline at end of file diff --git a/test/historicstate/hardhat/scripts/geth_traces/Tracer.deploy.prestateTracer.json b/test/historicstate/hardhat/scripts/geth_traces/Tracer.deploy.prestateTracer.json index f547dcf81..8d894ec67 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/Tracer.deploy.prestateTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/Tracer.deploy.prestateTracer.json @@ -1,9 +1,16 @@ { "0x0000000000000000000000000000000000000000": { - "balance": "0x23e3a4" + "balance": "0x0" }, "OWNER.address": { - "balance": "0x10f0a26a4e4b8d3e124", - "nonce": 6 + "balance": "0xc9f2c9ccfdb9908b61d7e0000", + "nonce": 357 + }, + "Tracer.address": { + "balance": "0x0", + "nonce": 1, + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000002": "0x0000000000000000000000000000000000000000000000000000000000000000" + } } } \ No newline at end of file diff --git a/test/historicstate/hardhat/scripts/geth_traces/Tracer.getBalance.callTracer.json b/test/historicstate/hardhat/scripts/geth_traces/Tracer.getBalance.callTracer.json index eb1061ac5..213abcff7 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/Tracer.getBalance.callTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/Tracer.getBalance.callTracer.json @@ -1,10 +1,10 @@ { "from": "CALL.address", - "gas": "0x2faf080", - "gasUsed": "0x5bce", - "to": "Tracer.address", + "gas": "0xffffface7", + "gasUsed": "0x5532", "input": "0x12065fe0", "output": "0x00000000000000000000000000000000000000000000000000000000000003e8", - "value": "0x0", - "type": "CALL" + "to": "Tracer.address", + "type": "CALL", + "value": "0x0" } \ No newline at end of file diff --git a/test/historicstate/hardhat/scripts/geth_traces/Tracer.getBalance.defaultTracer.json b/test/historicstate/hardhat/scripts/geth_traces/Tracer.getBalance.defaultTracer.json index 2ffb0099c..e02b4bb4d 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/Tracer.getBalance.defaultTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/Tracer.getBalance.defaultTracer.json @@ -1,83 +1,83 @@ { - "gas": 23502, "failed": false, + "gas": 21810, "returnValue": "00000000000000000000000000000000000000000000000000000000000003e8", "structLogs": [ { - "pc": 0, - "op": "PUSH1", - "gas": 49978936, - "gasCost": 3, "depth": 1, + "gas": 68719455463, + "gasCost": 3, + "op": "PUSH1", + "pc": 0, "stack": [] }, { - "pc": 2, - "op": "PUSH1", - "gas": 49978933, - "gasCost": 3, "depth": 1, + "gas": 68719455460, + "gasCost": 3, + "op": "PUSH1", + "pc": 2, "stack": [ "0x80" ] }, { - "pc": 4, - "op": "MSTORE", - "gas": 49978930, - "gasCost": 12, "depth": 1, + "gas": 68719455457, + "gasCost": 12, + "op": "MSTORE", + "pc": 4, "stack": [ "0x80", "0x40" ] }, { - "pc": 5, - "op": "CALLVALUE", - "gas": 49978918, - "gasCost": 2, "depth": 1, + "gas": 68719455445, + "gasCost": 2, + "op": "CALLVALUE", + "pc": 5, "stack": [] }, { - "pc": 6, - "op": "DUP1", - "gas": 49978916, - "gasCost": 3, "depth": 1, + "gas": 68719455443, + "gasCost": 3, + "op": "DUP1", + "pc": 6, "stack": [ "0x0" ] }, { - "pc": 7, - "op": "ISZERO", - "gas": 49978913, - "gasCost": 3, "depth": 1, + "gas": 68719455440, + "gasCost": 3, + "op": "ISZERO", + "pc": 7, "stack": [ "0x0", "0x0" ] }, { - "pc": 8, - "op": "PUSH3", - "gas": 49978910, - "gasCost": 3, "depth": 1, + "gas": 68719455437, + "gasCost": 3, + "op": "PUSH3", + "pc": 8, "stack": [ "0x0", "0x1" ] }, { - "pc": 12, - "op": "JUMPI", - "gas": 49978907, - "gasCost": 10, "depth": 1, + "gas": 68719455434, + "gasCost": 10, + "op": "JUMPI", + "pc": 12, "stack": [ "0x0", "0x1", @@ -85,141 +85,141 @@ ] }, { - "pc": 17, - "op": "JUMPDEST", - "gas": 49978897, - "gasCost": 1, "depth": 1, + "gas": 68719455424, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 17, "stack": [ "0x0" ] }, { - "pc": 18, - "op": "POP", - "gas": 49978896, - "gasCost": 2, "depth": 1, + "gas": 68719455423, + "gasCost": 2, + "op": "POP", + "pc": 18, "stack": [ "0x0" ] }, { - "pc": 19, - "op": "PUSH1", - "gas": 49978894, - "gasCost": 3, "depth": 1, + "gas": 68719455421, + "gasCost": 3, + "op": "PUSH1", + "pc": 19, "stack": [] }, { - "pc": 21, - "op": "CALLDATASIZE", - "gas": 49978891, - "gasCost": 2, "depth": 1, + "gas": 68719455418, + "gasCost": 2, + "op": "CALLDATASIZE", + "pc": 21, "stack": [ "0x4" ] }, { - "pc": 22, - "op": "LT", - "gas": 49978889, - "gasCost": 3, "depth": 1, + "gas": 68719455416, + "gasCost": 3, + "op": "LT", + "pc": 22, "stack": [ "0x4", "0x4" ] }, { - "pc": 23, - "op": "PUSH3", - "gas": 49978886, - "gasCost": 3, "depth": 1, + "gas": 68719455413, + "gasCost": 3, + "op": "PUSH3", + "pc": 23, "stack": [ "0x0" ] }, { - "pc": 27, - "op": "JUMPI", - "gas": 49978883, - "gasCost": 10, "depth": 1, + "gas": 68719455410, + "gasCost": 10, + "op": "JUMPI", + "pc": 27, "stack": [ "0x0", "0xac" ] }, { - "pc": 28, - "op": "PUSH1", - "gas": 49978873, - "gasCost": 3, "depth": 1, + "gas": 68719455400, + "gasCost": 3, + "op": "PUSH1", + "pc": 28, "stack": [] }, { - "pc": 30, - "op": "CALLDATALOAD", - "gas": 49978870, - "gasCost": 3, "depth": 1, + "gas": 68719455397, + "gasCost": 3, + "op": "CALLDATALOAD", + "pc": 30, "stack": [ "0x0" ] }, { - "pc": 31, - "op": "PUSH1", - "gas": 49978867, - "gasCost": 3, "depth": 1, + "gas": 68719455394, + "gasCost": 3, + "op": "PUSH1", + "pc": 31, "stack": [ "0x12065fe000000000000000000000000000000000000000000000000000000000" ] }, { - "pc": 33, - "op": "SHR", - "gas": 49978864, - "gasCost": 3, "depth": 1, + "gas": 68719455391, + "gasCost": 3, + "op": "SHR", + "pc": 33, "stack": [ "0x12065fe000000000000000000000000000000000000000000000000000000000", "0xe0" ] }, { - "pc": 34, - "op": "DUP1", - "gas": 49978861, - "gasCost": 3, "depth": 1, + "gas": 68719455388, + "gasCost": 3, + "op": "DUP1", + "pc": 34, "stack": [ "0x12065fe0" ] }, { - "pc": 35, - "op": "PUSH4", - "gas": 49978858, - "gasCost": 3, "depth": 1, + "gas": 68719455385, + "gasCost": 3, + "op": "PUSH4", + "pc": 35, "stack": [ "0x12065fe0", "0x12065fe0" ] }, { - "pc": 40, - "op": "GT", - "gas": 49978855, - "gasCost": 3, "depth": 1, + "gas": 68719455382, + "gasCost": 3, + "op": "GT", + "pc": 40, "stack": [ "0x12065fe0", "0x12065fe0", @@ -227,22 +227,22 @@ ] }, { - "pc": 41, - "op": "PUSH3", - "gas": 49978852, - "gasCost": 3, "depth": 1, + "gas": 68719455379, + "gasCost": 3, + "op": "PUSH3", + "pc": 41, "stack": [ "0x12065fe0", "0x1" ] }, { - "pc": 45, - "op": "JUMPI", - "gas": 49978849, - "gasCost": 10, "depth": 1, + "gas": 68719455376, + "gasCost": 10, + "op": "JUMPI", + "pc": 45, "stack": [ "0x12065fe0", "0x1", @@ -250,42 +250,42 @@ ] }, { - "pc": 111, - "op": "JUMPDEST", - "gas": 49978839, - "gasCost": 1, "depth": 1, + "gas": 68719455366, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 111, "stack": [ "0x12065fe0" ] }, { - "pc": 112, - "op": "DUP1", - "gas": 49978838, - "gasCost": 3, "depth": 1, + "gas": 68719455365, + "gasCost": 3, + "op": "DUP1", + "pc": 112, "stack": [ "0x12065fe0" ] }, { - "pc": 113, - "op": "PUSH4", - "gas": 49978835, - "gasCost": 3, "depth": 1, + "gas": 68719455362, + "gasCost": 3, + "op": "PUSH4", + "pc": 113, "stack": [ "0x12065fe0", "0x12065fe0" ] }, { - "pc": 118, - "op": "EQ", - "gas": 49978832, - "gasCost": 3, "depth": 1, + "gas": 68719455359, + "gasCost": 3, + "op": "EQ", + "pc": 118, "stack": [ "0x12065fe0", "0x12065fe0", @@ -293,22 +293,22 @@ ] }, { - "pc": 119, - "op": "PUSH3", - "gas": 49978829, - "gasCost": 3, "depth": 1, + "gas": 68719455356, + "gasCost": 3, + "op": "PUSH3", + "pc": 119, "stack": [ "0x12065fe0", "0x1" ] }, { - "pc": 123, - "op": "JUMPI", - "gas": 49978826, - "gasCost": 10, "depth": 1, + "gas": 68719455353, + "gasCost": 10, + "op": "JUMPI", + "pc": 123, "stack": [ "0x12065fe0", "0x1", @@ -316,42 +316,42 @@ ] }, { - "pc": 177, - "op": "JUMPDEST", - "gas": 49978816, - "gasCost": 1, "depth": 1, + "gas": 68719455343, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 177, "stack": [ "0x12065fe0" ] }, { - "pc": 178, - "op": "PUSH3", - "gas": 49978815, - "gasCost": 3, "depth": 1, + "gas": 68719455342, + "gasCost": 3, + "op": "PUSH3", + "pc": 178, "stack": [ "0x12065fe0" ] }, { - "pc": 182, - "op": "PUSH3", - "gas": 49978812, - "gasCost": 3, "depth": 1, + "gas": 68719455339, + "gasCost": 3, + "op": "PUSH3", + "pc": 182, "stack": [ "0x12065fe0", "0xbb" ] }, { - "pc": 186, - "op": "JUMP", - "gas": 49978809, - "gasCost": 8, "depth": 1, + "gas": 68719455336, + "gasCost": 8, + "op": "JUMP", + "pc": 186, "stack": [ "0x12065fe0", "0xbb", @@ -359,33 +359,33 @@ ] }, { - "pc": 551, - "op": "JUMPDEST", - "gas": 49978801, - "gasCost": 1, "depth": 1, + "gas": 68719455328, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 551, "stack": [ "0x12065fe0", "0xbb" ] }, { - "pc": 552, - "op": "PUSH1", - "gas": 49978800, - "gasCost": 3, "depth": 1, + "gas": 68719455327, + "gasCost": 3, + "op": "PUSH1", + "pc": 552, "stack": [ "0x12065fe0", "0xbb" ] }, { - "pc": 554, - "op": "PUSH1", - "gas": 49978797, - "gasCost": 3, "depth": 1, + "gas": 68719455324, + "gasCost": 3, + "op": "PUSH1", + "pc": 554, "stack": [ "0x12065fe0", "0xbb", @@ -393,11 +393,11 @@ ] }, { - "pc": 556, - "op": "SLOAD", - "gas": 49978794, - "gasCost": 2100, "depth": 1, + "gas": 68719455321, + "gasCost": 200, + "op": "SLOAD", + "pc": 556, "stack": [ "0x12065fe0", "0xbb", @@ -409,11 +409,11 @@ } }, { - "pc": 557, - "op": "SWAP1", - "gas": 49976694, - "gasCost": 3, "depth": 1, + "gas": 68719455121, + "gasCost": 3, + "op": "SWAP1", + "pc": 557, "stack": [ "0x12065fe0", "0xbb", @@ -422,11 +422,11 @@ ] }, { - "pc": 558, - "op": "POP", - "gas": 49976691, - "gasCost": 2, "depth": 1, + "gas": 68719455118, + "gasCost": 2, + "op": "POP", + "pc": 558, "stack": [ "0x12065fe0", "0xbb", @@ -435,11 +435,11 @@ ] }, { - "pc": 559, - "op": "SWAP1", - "gas": 49976689, - "gasCost": 3, "depth": 1, + "gas": 68719455116, + "gasCost": 3, + "op": "SWAP1", + "pc": 559, "stack": [ "0x12065fe0", "0xbb", @@ -447,11 +447,11 @@ ] }, { - "pc": 560, - "op": "JUMP", - "gas": 49976686, - "gasCost": 8, "depth": 1, + "gas": 68719455113, + "gasCost": 8, + "op": "JUMP", + "pc": 560, "stack": [ "0x12065fe0", "0x3e8", @@ -459,33 +459,33 @@ ] }, { - "pc": 187, - "op": "JUMPDEST", - "gas": 49976678, - "gasCost": 1, "depth": 1, + "gas": 68719455105, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 187, "stack": [ "0x12065fe0", "0x3e8" ] }, { - "pc": 188, - "op": "PUSH1", - "gas": 49976677, - "gasCost": 3, "depth": 1, + "gas": 68719455104, + "gasCost": 3, + "op": "PUSH1", + "pc": 188, "stack": [ "0x12065fe0", "0x3e8" ] }, { - "pc": 190, - "op": "MLOAD", - "gas": 49976674, - "gasCost": 3, "depth": 1, + "gas": 68719455101, + "gasCost": 3, + "op": "MLOAD", + "pc": 190, "stack": [ "0x12065fe0", "0x3e8", @@ -493,11 +493,11 @@ ] }, { - "pc": 191, - "op": "PUSH3", - "gas": 49976671, - "gasCost": 3, "depth": 1, + "gas": 68719455098, + "gasCost": 3, + "op": "PUSH3", + "pc": 191, "stack": [ "0x12065fe0", "0x3e8", @@ -505,11 +505,11 @@ ] }, { - "pc": 195, - "op": "SWAP2", - "gas": 49976668, - "gasCost": 3, "depth": 1, + "gas": 68719455095, + "gasCost": 3, + "op": "SWAP2", + "pc": 195, "stack": [ "0x12065fe0", "0x3e8", @@ -518,11 +518,11 @@ ] }, { - "pc": 196, - "op": "SWAP1", - "gas": 49976665, - "gasCost": 3, "depth": 1, + "gas": 68719455092, + "gasCost": 3, + "op": "SWAP1", + "pc": 196, "stack": [ "0x12065fe0", "0xca", @@ -531,11 +531,11 @@ ] }, { - "pc": 197, - "op": "PUSH3", - "gas": 49976662, - "gasCost": 3, "depth": 1, + "gas": 68719455089, + "gasCost": 3, + "op": "PUSH3", + "pc": 197, "stack": [ "0x12065fe0", "0xca", @@ -544,11 +544,11 @@ ] }, { - "pc": 201, - "op": "JUMP", - "gas": 49976659, - "gasCost": 8, "depth": 1, + "gas": 68719455086, + "gasCost": 8, + "op": "JUMP", + "pc": 201, "stack": [ "0x12065fe0", "0xca", @@ -558,11 +558,11 @@ ] }, { - "pc": 2421, - "op": "JUMPDEST", - "gas": 49976651, - "gasCost": 1, "depth": 1, + "gas": 68719455078, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2421, "stack": [ "0x12065fe0", "0xca", @@ -571,11 +571,11 @@ ] }, { - "pc": 2422, - "op": "PUSH1", - "gas": 49976650, - "gasCost": 3, "depth": 1, + "gas": 68719455077, + "gasCost": 3, + "op": "PUSH1", + "pc": 2422, "stack": [ "0x12065fe0", "0xca", @@ -584,11 +584,11 @@ ] }, { - "pc": 2424, - "op": "PUSH1", - "gas": 49976647, - "gasCost": 3, "depth": 1, + "gas": 68719455074, + "gasCost": 3, + "op": "PUSH1", + "pc": 2424, "stack": [ "0x12065fe0", "0xca", @@ -598,11 +598,11 @@ ] }, { - "pc": 2426, - "op": "DUP3", - "gas": 49976644, - "gasCost": 3, "depth": 1, + "gas": 68719455071, + "gasCost": 3, + "op": "DUP3", + "pc": 2426, "stack": [ "0x12065fe0", "0xca", @@ -613,11 +613,11 @@ ] }, { - "pc": 2427, - "op": "ADD", - "gas": 49976641, - "gasCost": 3, "depth": 1, + "gas": 68719455068, + "gasCost": 3, + "op": "ADD", + "pc": 2427, "stack": [ "0x12065fe0", "0xca", @@ -628,12 +628,12 @@ "0x80" ] }, - { - "pc": 2428, - "op": "SWAP1", - "gas": 49976638, - "gasCost": 3, + { "depth": 1, + "gas": 68719455065, + "gasCost": 3, + "op": "SWAP1", + "pc": 2428, "stack": [ "0x12065fe0", "0xca", @@ -644,11 +644,11 @@ ] }, { - "pc": 2429, - "op": "POP", - "gas": 49976635, - "gasCost": 2, "depth": 1, + "gas": 68719455062, + "gasCost": 2, + "op": "POP", + "pc": 2429, "stack": [ "0x12065fe0", "0xca", @@ -659,11 +659,11 @@ ] }, { - "pc": 2430, - "op": "PUSH3", - "gas": 49976633, - "gasCost": 3, "depth": 1, + "gas": 68719455060, + "gasCost": 3, + "op": "PUSH3", + "pc": 2430, "stack": [ "0x12065fe0", "0xca", @@ -673,11 +673,11 @@ ] }, { - "pc": 2434, - "op": "PUSH1", - "gas": 49976630, - "gasCost": 3, "depth": 1, + "gas": 68719455057, + "gasCost": 3, + "op": "PUSH1", + "pc": 2434, "stack": [ "0x12065fe0", "0xca", @@ -688,11 +688,11 @@ ] }, { - "pc": 2436, - "op": "DUP4", - "gas": 49976627, - "gasCost": 3, "depth": 1, + "gas": 68719455054, + "gasCost": 3, + "op": "DUP4", + "pc": 2436, "stack": [ "0x12065fe0", "0xca", @@ -704,11 +704,11 @@ ] }, { - "pc": 2437, - "op": "ADD", - "gas": 49976624, - "gasCost": 3, "depth": 1, + "gas": 68719455051, + "gasCost": 3, + "op": "ADD", + "pc": 2437, "stack": [ "0x12065fe0", "0xca", @@ -721,11 +721,11 @@ ] }, { - "pc": 2438, - "op": "DUP5", - "gas": 49976621, - "gasCost": 3, "depth": 1, + "gas": 68719455048, + "gasCost": 3, + "op": "DUP5", + "pc": 2438, "stack": [ "0x12065fe0", "0xca", @@ -737,11 +737,11 @@ ] }, { - "pc": 2439, - "op": "PUSH3", - "gas": 49976618, - "gasCost": 3, "depth": 1, + "gas": 68719455045, + "gasCost": 3, + "op": "PUSH3", + "pc": 2439, "stack": [ "0x12065fe0", "0xca", @@ -754,11 +754,11 @@ ] }, { - "pc": 2443, - "op": "JUMP", - "gas": 49976615, - "gasCost": 8, "depth": 1, + "gas": 68719455042, + "gasCost": 8, + "op": "JUMP", + "pc": 2443, "stack": [ "0x12065fe0", "0xca", @@ -772,11 +772,11 @@ ] }, { - "pc": 2404, - "op": "JUMPDEST", - "gas": 49976607, - "gasCost": 1, "depth": 1, + "gas": 68719455034, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2404, "stack": [ "0x12065fe0", "0xca", @@ -789,11 +789,11 @@ ] }, { - "pc": 2405, - "op": "PUSH3", - "gas": 49976606, - "gasCost": 3, "depth": 1, + "gas": 68719455033, + "gasCost": 3, + "op": "PUSH3", + "pc": 2405, "stack": [ "0x12065fe0", "0xca", @@ -806,11 +806,11 @@ ] }, { - "pc": 2409, - "op": "DUP2", - "gas": 49976603, - "gasCost": 3, "depth": 1, + "gas": 68719455030, + "gasCost": 3, + "op": "DUP2", + "pc": 2409, "stack": [ "0x12065fe0", "0xca", @@ -824,11 +824,11 @@ ] }, { - "pc": 2410, - "op": "PUSH3", - "gas": 49976600, - "gasCost": 3, "depth": 1, + "gas": 68719455027, + "gasCost": 3, + "op": "PUSH3", + "pc": 2410, "stack": [ "0x12065fe0", "0xca", @@ -843,11 +843,11 @@ ] }, { - "pc": 2414, - "op": "JUMP", - "gas": 49976597, - "gasCost": 8, "depth": 1, + "gas": 68719455024, + "gasCost": 8, + "op": "JUMP", + "pc": 2414, "stack": [ "0x12065fe0", "0xca", @@ -863,11 +863,11 @@ ] }, { - "pc": 2394, - "op": "JUMPDEST", - "gas": 49976589, - "gasCost": 1, "depth": 1, + "gas": 68719455016, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2394, "stack": [ "0x12065fe0", "0xca", @@ -882,11 +882,11 @@ ] }, { - "pc": 2395, - "op": "PUSH1", - "gas": 49976588, - "gasCost": 3, "depth": 1, + "gas": 68719455015, + "gasCost": 3, + "op": "PUSH1", + "pc": 2395, "stack": [ "0x12065fe0", "0xca", @@ -901,11 +901,11 @@ ] }, { - "pc": 2397, - "op": "DUP2", - "gas": 49976585, - "gasCost": 3, "depth": 1, + "gas": 68719455012, + "gasCost": 3, + "op": "DUP2", + "pc": 2397, "stack": [ "0x12065fe0", "0xca", @@ -921,11 +921,11 @@ ] }, { - "pc": 2398, - "op": "SWAP1", - "gas": 49976582, - "gasCost": 3, "depth": 1, + "gas": 68719455009, + "gasCost": 3, + "op": "SWAP1", + "pc": 2398, "stack": [ "0x12065fe0", "0xca", @@ -942,11 +942,11 @@ ] }, { - "pc": 2399, - "op": "POP", - "gas": 49976579, - "gasCost": 2, "depth": 1, + "gas": 68719455006, + "gasCost": 2, + "op": "POP", + "pc": 2399, "stack": [ "0x12065fe0", "0xca", @@ -963,11 +963,11 @@ ] }, { - "pc": 2400, - "op": "SWAP2", - "gas": 49976577, - "gasCost": 3, "depth": 1, + "gas": 68719455004, + "gasCost": 3, + "op": "SWAP2", + "pc": 2400, "stack": [ "0x12065fe0", "0xca", @@ -983,11 +983,11 @@ ] }, { - "pc": 2401, - "op": "SWAP1", - "gas": 49976574, - "gasCost": 3, "depth": 1, + "gas": 68719455001, + "gasCost": 3, + "op": "SWAP1", + "pc": 2401, "stack": [ "0x12065fe0", "0xca", @@ -1003,11 +1003,11 @@ ] }, { - "pc": 2402, - "op": "POP", - "gas": 49976571, - "gasCost": 2, "depth": 1, + "gas": 68719454998, + "gasCost": 2, + "op": "POP", + "pc": 2402, "stack": [ "0x12065fe0", "0xca", @@ -1023,11 +1023,11 @@ ] }, { - "pc": 2403, - "op": "JUMP", - "gas": 49976569, - "gasCost": 8, "depth": 1, + "gas": 68719454996, + "gasCost": 8, + "op": "JUMP", + "pc": 2403, "stack": [ "0x12065fe0", "0xca", @@ -1042,11 +1042,11 @@ ] }, { - "pc": 2415, - "op": "JUMPDEST", - "gas": 49976561, - "gasCost": 1, "depth": 1, + "gas": 68719454988, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2415, "stack": [ "0x12065fe0", "0xca", @@ -1060,11 +1060,11 @@ ] }, { - "pc": 2416, - "op": "DUP3", - "gas": 49976560, - "gasCost": 3, "depth": 1, + "gas": 68719454987, + "gasCost": 3, + "op": "DUP3", + "pc": 2416, "stack": [ "0x12065fe0", "0xca", @@ -1078,11 +1078,11 @@ ] }, { - "pc": 2417, - "op": "MSTORE", - "gas": 49976557, - "gasCost": 9, "depth": 1, + "gas": 68719454984, + "gasCost": 9, + "op": "MSTORE", + "pc": 2417, "stack": [ "0x12065fe0", "0xca", @@ -1097,11 +1097,11 @@ ] }, { - "pc": 2418, - "op": "POP", - "gas": 49976548, - "gasCost": 2, "depth": 1, + "gas": 68719454975, + "gasCost": 2, + "op": "POP", + "pc": 2418, "stack": [ "0x12065fe0", "0xca", @@ -1114,11 +1114,11 @@ ] }, { - "pc": 2419, - "op": "POP", - "gas": 49976546, - "gasCost": 2, "depth": 1, + "gas": 68719454973, + "gasCost": 2, + "op": "POP", + "pc": 2419, "stack": [ "0x12065fe0", "0xca", @@ -1130,11 +1130,11 @@ ] }, { - "pc": 2420, - "op": "JUMP", - "gas": 49976544, - "gasCost": 8, "depth": 1, + "gas": 68719454971, + "gasCost": 8, + "op": "JUMP", + "pc": 2420, "stack": [ "0x12065fe0", "0xca", @@ -1145,11 +1145,11 @@ ] }, { - "pc": 2444, - "op": "JUMPDEST", - "gas": 49976536, - "gasCost": 1, "depth": 1, + "gas": 68719454963, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2444, "stack": [ "0x12065fe0", "0xca", @@ -1159,11 +1159,11 @@ ] }, { - "pc": 2445, - "op": "SWAP3", - "gas": 49976535, - "gasCost": 3, "depth": 1, + "gas": 68719454962, + "gasCost": 3, + "op": "SWAP3", + "pc": 2445, "stack": [ "0x12065fe0", "0xca", @@ -1173,11 +1173,11 @@ ] }, { - "pc": 2446, - "op": "SWAP2", - "gas": 49976532, - "gasCost": 3, "depth": 1, + "gas": 68719454959, + "gasCost": 3, + "op": "SWAP2", + "pc": 2446, "stack": [ "0x12065fe0", "0xa0", @@ -1187,11 +1187,11 @@ ] }, { - "pc": 2447, - "op": "POP", - "gas": 49976529, - "gasCost": 2, "depth": 1, + "gas": 68719454956, + "gasCost": 2, + "op": "POP", + "pc": 2447, "stack": [ "0x12065fe0", "0xa0", @@ -1201,11 +1201,11 @@ ] }, { - "pc": 2448, - "op": "POP", - "gas": 49976527, - "gasCost": 2, "depth": 1, + "gas": 68719454954, + "gasCost": 2, + "op": "POP", + "pc": 2448, "stack": [ "0x12065fe0", "0xa0", @@ -1214,11 +1214,11 @@ ] }, { - "pc": 2449, - "op": "JUMP", - "gas": 49976525, - "gasCost": 8, "depth": 1, + "gas": 68719454952, + "gasCost": 8, + "op": "JUMP", + "pc": 2449, "stack": [ "0x12065fe0", "0xa0", @@ -1226,33 +1226,33 @@ ] }, { - "pc": 202, - "op": "JUMPDEST", - "gas": 49976517, - "gasCost": 1, "depth": 1, + "gas": 68719454944, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 202, "stack": [ "0x12065fe0", "0xa0" ] }, { - "pc": 203, - "op": "PUSH1", - "gas": 49976516, - "gasCost": 3, "depth": 1, + "gas": 68719454943, + "gasCost": 3, + "op": "PUSH1", + "pc": 203, "stack": [ "0x12065fe0", "0xa0" ] }, { - "pc": 205, - "op": "MLOAD", - "gas": 49976513, - "gasCost": 3, "depth": 1, + "gas": 68719454940, + "gasCost": 3, + "op": "MLOAD", + "pc": 205, "stack": [ "0x12065fe0", "0xa0", @@ -1260,11 +1260,11 @@ ] }, { - "pc": 206, - "op": "DUP1", - "gas": 49976510, - "gasCost": 3, "depth": 1, + "gas": 68719454937, + "gasCost": 3, + "op": "DUP1", + "pc": 206, "stack": [ "0x12065fe0", "0xa0", @@ -1272,11 +1272,11 @@ ] }, { - "pc": 207, - "op": "SWAP2", - "gas": 49976507, - "gasCost": 3, "depth": 1, + "gas": 68719454934, + "gasCost": 3, + "op": "SWAP2", + "pc": 207, "stack": [ "0x12065fe0", "0xa0", @@ -1285,11 +1285,11 @@ ] }, { - "pc": 208, - "op": "SUB", - "gas": 49976504, - "gasCost": 3, "depth": 1, + "gas": 68719454931, + "gasCost": 3, + "op": "SUB", + "pc": 208, "stack": [ "0x12065fe0", "0x80", @@ -1298,11 +1298,11 @@ ] }, { - "pc": 209, - "op": "SWAP1", - "gas": 49976501, - "gasCost": 3, "depth": 1, + "gas": 68719454928, + "gasCost": 3, + "op": "SWAP1", + "pc": 209, "stack": [ "0x12065fe0", "0x80", @@ -1310,11 +1310,11 @@ ] }, { - "pc": 210, - "op": "RETURN", - "gas": 49976498, - "gasCost": 0, "depth": 1, + "gas": 68719454925, + "gasCost": 0, + "op": "RETURN", + "pc": 210, "stack": [ "0x12065fe0", "0x20", diff --git a/test/historicstate/hardhat/scripts/geth_traces/Tracer.getBalance.prestateTracer.json b/test/historicstate/hardhat/scripts/geth_traces/Tracer.getBalance.prestateTracer.json index 57430df8e..41d1c7ab7 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/Tracer.getBalance.prestateTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/Tracer.getBalance.prestateTracer.json @@ -1,6 +1,6 @@ { "0x0000000000000000000000000000000000000000": { - "balance": "0x462d20" + "balance": "0x0" }, "Tracer.address": { "balance": "0x0", diff --git a/test/historicstate/hardhat/scripts/geth_traces/Tracer.getBalance.replayTracer.json b/test/historicstate/hardhat/scripts/geth_traces/Tracer.getBalance.replayTracer.json index aa01818dc..8503b4acc 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/Tracer.getBalance.replayTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/Tracer.getBalance.replayTracer.json @@ -20,6 +20,6 @@ "type": "call" } ], - "transactionHash": "0xa47ba3a37138df5b8b302f7a536e2322d54d294ee5d70cc681a64f19c23cc189", + "transactionHash": "0x752bc1798da03588616290690e1488192a4b4764e10de6d38488b6a90837637e", "vmTrace": null } \ No newline at end of file diff --git a/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint.4byteTracer.json b/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint.4byteTracer.json index 78ba3cda3..00cc957e2 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint.4byteTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint.4byteTracer.json @@ -1,3 +1,3 @@ { - "0xa0712d68-32": 2 + "0xa0712d68-32": 1 } \ No newline at end of file diff --git a/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint.callTracer.json b/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint.callTracer.json index 439fa1315..83c6e1cdb 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint.callTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint.callTracer.json @@ -1,21 +1,10 @@ { + "error": "execution reverted", "from": "OWNER.address", - "gas": "0x200b20", - "gasUsed": "0x1228b", - "to": "Tracer.address", + "gas": "0x1fb708", + "gasUsed": "0x10fd7", "input": "0xa0712d6800000000000000000000000000000000000000000000000000000000000003e8", - "error": "execution reverted", - "calls": [ - { - "from": "Tracer.address", - "gas": "0x1e6d90", - "gasUsed": "0x0", - "to": "0x0000000000000000000000000000000000000000", - "input": "0xa0712d6800000000000000000000000000000000000000000000000000000000000003e8", - "value": "0x0", - "type": "CALL" - } - ], - "value": "0x0", - "type": "CALL" + "to": "Tracer.address", + "type": "CALL", + "value": "0x0" } \ No newline at end of file diff --git a/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint.defaultTracer.json b/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint.defaultTracer.json index 87ba2b6c4..d633d59fa 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint.defaultTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint.defaultTracer.json @@ -1,83 +1,83 @@ { - "gas": 74379, "failed": true, + "gas": 69591, "returnValue": "", "structLogs": [ { - "pc": 0, - "op": "PUSH1", - "gas": 2078784, - "gasCost": 3, "depth": 1, + "gas": 2078472, + "gasCost": 3, + "op": "PUSH1", + "pc": 0, "stack": [] }, { - "pc": 2, - "op": "PUSH1", - "gas": 2078781, - "gasCost": 3, "depth": 1, + "gas": 2078469, + "gasCost": 3, + "op": "PUSH1", + "pc": 2, "stack": [ "0x80" ] }, { - "pc": 4, - "op": "MSTORE", - "gas": 2078778, - "gasCost": 12, "depth": 1, + "gas": 2078466, + "gasCost": 12, + "op": "MSTORE", + "pc": 4, "stack": [ "0x80", "0x40" ] }, { - "pc": 5, - "op": "CALLVALUE", - "gas": 2078766, - "gasCost": 2, "depth": 1, + "gas": 2078454, + "gasCost": 2, + "op": "CALLVALUE", + "pc": 5, "stack": [] }, { - "pc": 6, - "op": "DUP1", - "gas": 2078764, - "gasCost": 3, "depth": 1, + "gas": 2078452, + "gasCost": 3, + "op": "DUP1", + "pc": 6, "stack": [ "0x0" ] }, { - "pc": 7, - "op": "ISZERO", - "gas": 2078761, - "gasCost": 3, "depth": 1, + "gas": 2078449, + "gasCost": 3, + "op": "ISZERO", + "pc": 7, "stack": [ "0x0", "0x0" ] }, { - "pc": 8, - "op": "PUSH3", - "gas": 2078758, - "gasCost": 3, "depth": 1, + "gas": 2078446, + "gasCost": 3, + "op": "PUSH3", + "pc": 8, "stack": [ "0x0", "0x1" ] }, { - "pc": 12, - "op": "JUMPI", - "gas": 2078755, - "gasCost": 10, "depth": 1, + "gas": 2078443, + "gasCost": 10, + "op": "JUMPI", + "pc": 12, "stack": [ "0x0", "0x1", @@ -85,141 +85,141 @@ ] }, { - "pc": 17, - "op": "JUMPDEST", - "gas": 2078745, - "gasCost": 1, "depth": 1, + "gas": 2078433, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 17, "stack": [ "0x0" ] }, { - "pc": 18, - "op": "POP", - "gas": 2078744, - "gasCost": 2, "depth": 1, + "gas": 2078432, + "gasCost": 2, + "op": "POP", + "pc": 18, "stack": [ "0x0" ] }, { - "pc": 19, - "op": "PUSH1", - "gas": 2078742, - "gasCost": 3, "depth": 1, + "gas": 2078430, + "gasCost": 3, + "op": "PUSH1", + "pc": 19, "stack": [] }, { - "pc": 21, - "op": "CALLDATASIZE", - "gas": 2078739, - "gasCost": 2, "depth": 1, + "gas": 2078427, + "gasCost": 2, + "op": "CALLDATASIZE", + "pc": 21, "stack": [ "0x4" ] }, { - "pc": 22, - "op": "LT", - "gas": 2078737, - "gasCost": 3, "depth": 1, + "gas": 2078425, + "gasCost": 3, + "op": "LT", + "pc": 22, "stack": [ "0x4", "0x24" ] }, { - "pc": 23, - "op": "PUSH3", - "gas": 2078734, - "gasCost": 3, "depth": 1, + "gas": 2078422, + "gasCost": 3, + "op": "PUSH3", + "pc": 23, "stack": [ "0x0" ] }, { - "pc": 27, - "op": "JUMPI", - "gas": 2078731, - "gasCost": 10, "depth": 1, + "gas": 2078419, + "gasCost": 10, + "op": "JUMPI", + "pc": 27, "stack": [ "0x0", "0xac" ] }, { - "pc": 28, - "op": "PUSH1", - "gas": 2078721, - "gasCost": 3, "depth": 1, + "gas": 2078409, + "gasCost": 3, + "op": "PUSH1", + "pc": 28, "stack": [] }, { - "pc": 30, - "op": "CALLDATALOAD", - "gas": 2078718, - "gasCost": 3, "depth": 1, + "gas": 2078406, + "gasCost": 3, + "op": "CALLDATALOAD", + "pc": 30, "stack": [ "0x0" ] }, { - "pc": 31, - "op": "PUSH1", - "gas": 2078715, - "gasCost": 3, "depth": 1, + "gas": 2078403, + "gasCost": 3, + "op": "PUSH1", + "pc": 31, "stack": [ "0xa0712d6800000000000000000000000000000000000000000000000000000000" ] }, { - "pc": 33, - "op": "SHR", - "gas": 2078712, - "gasCost": 3, "depth": 1, + "gas": 2078400, + "gasCost": 3, + "op": "SHR", + "pc": 33, "stack": [ "0xa0712d6800000000000000000000000000000000000000000000000000000000", "0xe0" ] }, { - "pc": 34, - "op": "DUP1", - "gas": 2078709, - "gasCost": 3, "depth": 1, + "gas": 2078397, + "gasCost": 3, + "op": "DUP1", + "pc": 34, "stack": [ "0xa0712d68" ] }, { - "pc": 35, - "op": "PUSH4", - "gas": 2078706, - "gasCost": 3, "depth": 1, + "gas": 2078394, + "gasCost": 3, + "op": "PUSH4", + "pc": 35, "stack": [ "0xa0712d68", "0xa0712d68" ] }, { - "pc": 40, - "op": "GT", - "gas": 2078703, - "gasCost": 3, "depth": 1, + "gas": 2078391, + "gasCost": 3, + "op": "GT", + "pc": 40, "stack": [ "0xa0712d68", "0xa0712d68", @@ -227,22 +227,22 @@ ] }, { - "pc": 41, - "op": "PUSH3", - "gas": 2078700, - "gasCost": 3, "depth": 1, + "gas": 2078388, + "gasCost": 3, + "op": "PUSH3", + "pc": 41, "stack": [ "0xa0712d68", "0x0" ] }, { - "pc": 45, - "op": "JUMPI", - "gas": 2078697, - "gasCost": 10, "depth": 1, + "gas": 2078385, + "gasCost": 10, + "op": "JUMPI", + "pc": 45, "stack": [ "0xa0712d68", "0x0", @@ -250,32 +250,32 @@ ] }, { - "pc": 46, - "op": "DUP1", - "gas": 2078687, - "gasCost": 3, "depth": 1, + "gas": 2078375, + "gasCost": 3, + "op": "DUP1", + "pc": 46, "stack": [ "0xa0712d68" ] }, { - "pc": 47, - "op": "PUSH4", - "gas": 2078684, - "gasCost": 3, "depth": 1, + "gas": 2078372, + "gasCost": 3, + "op": "PUSH4", + "pc": 47, "stack": [ "0xa0712d68", "0xa0712d68" ] }, { - "pc": 52, - "op": "EQ", - "gas": 2078681, - "gasCost": 3, "depth": 1, + "gas": 2078369, + "gasCost": 3, + "op": "EQ", + "pc": 52, "stack": [ "0xa0712d68", "0xa0712d68", @@ -283,22 +283,22 @@ ] }, { - "pc": 53, - "op": "PUSH3", - "gas": 2078678, - "gasCost": 3, "depth": 1, + "gas": 2078366, + "gasCost": 3, + "op": "PUSH3", + "pc": 53, "stack": [ "0xa0712d68", "0x0" ] }, { - "pc": 57, - "op": "JUMPI", - "gas": 2078675, - "gasCost": 10, "depth": 1, + "gas": 2078363, + "gasCost": 10, + "op": "JUMPI", + "pc": 57, "stack": [ "0xa0712d68", "0x0", @@ -306,32 +306,32 @@ ] }, { - "pc": 58, - "op": "DUP1", - "gas": 2078665, - "gasCost": 3, "depth": 1, + "gas": 2078353, + "gasCost": 3, + "op": "DUP1", + "pc": 58, "stack": [ "0xa0712d68" ] }, { - "pc": 59, - "op": "PUSH4", - "gas": 2078662, - "gasCost": 3, "depth": 1, + "gas": 2078350, + "gasCost": 3, + "op": "PUSH4", + "pc": 59, "stack": [ "0xa0712d68", "0xa0712d68" ] }, { - "pc": 64, - "op": "EQ", - "gas": 2078659, - "gasCost": 3, "depth": 1, + "gas": 2078347, + "gasCost": 3, + "op": "EQ", + "pc": 64, "stack": [ "0xa0712d68", "0xa0712d68", @@ -339,22 +339,22 @@ ] }, { - "pc": 65, - "op": "PUSH3", - "gas": 2078656, - "gasCost": 3, "depth": 1, + "gas": 2078344, + "gasCost": 3, + "op": "PUSH3", + "pc": 65, "stack": [ "0xa0712d68", "0x0" ] }, { - "pc": 69, - "op": "JUMPI", - "gas": 2078653, - "gasCost": 10, "depth": 1, + "gas": 2078341, + "gasCost": 10, + "op": "JUMPI", + "pc": 69, "stack": [ "0xa0712d68", "0x0", @@ -362,32 +362,32 @@ ] }, { - "pc": 70, - "op": "DUP1", - "gas": 2078643, - "gasCost": 3, "depth": 1, + "gas": 2078331, + "gasCost": 3, + "op": "DUP1", + "pc": 70, "stack": [ "0xa0712d68" ] }, { - "pc": 71, - "op": "PUSH4", - "gas": 2078640, - "gasCost": 3, "depth": 1, + "gas": 2078328, + "gasCost": 3, + "op": "PUSH4", + "pc": 71, "stack": [ "0xa0712d68", "0xa0712d68" ] }, { - "pc": 76, - "op": "EQ", - "gas": 2078637, - "gasCost": 3, "depth": 1, + "gas": 2078325, + "gasCost": 3, + "op": "EQ", + "pc": 76, "stack": [ "0xa0712d68", "0xa0712d68", @@ -395,22 +395,22 @@ ] }, { - "pc": 77, - "op": "PUSH3", - "gas": 2078634, - "gasCost": 3, "depth": 1, + "gas": 2078322, + "gasCost": 3, + "op": "PUSH3", + "pc": 77, "stack": [ "0xa0712d68", "0x1" ] }, { - "pc": 81, - "op": "JUMPI", - "gas": 2078631, - "gasCost": 10, "depth": 1, + "gas": 2078319, + "gasCost": 10, + "op": "JUMPI", + "pc": 81, "stack": [ "0xa0712d68", "0x1", @@ -418,42 +418,42 @@ ] }, { - "pc": 431, - "op": "JUMPDEST", - "gas": 2078621, - "gasCost": 1, "depth": 1, + "gas": 2078309, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 431, "stack": [ "0xa0712d68" ] }, { - "pc": 432, - "op": "PUSH3", - "gas": 2078620, - "gasCost": 3, "depth": 1, + "gas": 2078308, + "gasCost": 3, + "op": "PUSH3", + "pc": 432, "stack": [ "0xa0712d68" ] }, { - "pc": 436, - "op": "PUSH1", - "gas": 2078617, - "gasCost": 3, "depth": 1, + "gas": 2078305, + "gasCost": 3, + "op": "PUSH1", + "pc": 436, "stack": [ "0xa0712d68", "0x1cd" ] }, { - "pc": 438, - "op": "DUP1", - "gas": 2078614, - "gasCost": 3, "depth": 1, + "gas": 2078302, + "gasCost": 3, + "op": "DUP1", + "pc": 438, "stack": [ "0xa0712d68", "0x1cd", @@ -461,11 +461,11 @@ ] }, { - "pc": 439, - "op": "CALLDATASIZE", - "gas": 2078611, - "gasCost": 2, "depth": 1, + "gas": 2078299, + "gasCost": 2, + "op": "CALLDATASIZE", + "pc": 439, "stack": [ "0xa0712d68", "0x1cd", @@ -474,11 +474,11 @@ ] }, { - "pc": 440, - "op": "SUB", - "gas": 2078609, - "gasCost": 3, "depth": 1, + "gas": 2078297, + "gasCost": 3, + "op": "SUB", + "pc": 440, "stack": [ "0xa0712d68", "0x1cd", @@ -487,12 +487,12 @@ "0x24" ] }, - { - "pc": 441, - "op": "DUP2", - "gas": 2078606, - "gasCost": 3, + { "depth": 1, + "gas": 2078294, + "gasCost": 3, + "op": "DUP2", + "pc": 441, "stack": [ "0xa0712d68", "0x1cd", @@ -501,11 +501,11 @@ ] }, { - "pc": 442, - "op": "ADD", - "gas": 2078603, - "gasCost": 3, "depth": 1, + "gas": 2078291, + "gasCost": 3, + "op": "ADD", + "pc": 442, "stack": [ "0xa0712d68", "0x1cd", @@ -515,11 +515,11 @@ ] }, { - "pc": 443, - "op": "SWAP1", - "gas": 2078600, - "gasCost": 3, "depth": 1, + "gas": 2078288, + "gasCost": 3, + "op": "SWAP1", + "pc": 443, "stack": [ "0xa0712d68", "0x1cd", @@ -528,11 +528,11 @@ ] }, { - "pc": 444, - "op": "PUSH3", - "gas": 2078597, - "gasCost": 3, "depth": 1, + "gas": 2078285, + "gasCost": 3, + "op": "PUSH3", + "pc": 444, "stack": [ "0xa0712d68", "0x1cd", @@ -541,11 +541,11 @@ ] }, { - "pc": 448, - "op": "SWAP2", - "gas": 2078594, - "gasCost": 3, "depth": 1, + "gas": 2078282, + "gasCost": 3, + "op": "SWAP2", + "pc": 448, "stack": [ "0xa0712d68", "0x1cd", @@ -555,11 +555,11 @@ ] }, { - "pc": 449, - "op": "SWAP1", - "gas": 2078591, - "gasCost": 3, "depth": 1, + "gas": 2078279, + "gasCost": 3, + "op": "SWAP1", + "pc": 449, "stack": [ "0xa0712d68", "0x1cd", @@ -569,11 +569,11 @@ ] }, { - "pc": 450, - "op": "PUSH3", - "gas": 2078588, - "gasCost": 3, "depth": 1, + "gas": 2078276, + "gasCost": 3, + "op": "PUSH3", + "pc": 450, "stack": [ "0xa0712d68", "0x1cd", @@ -583,11 +583,11 @@ ] }, { - "pc": 454, - "op": "JUMP", - "gas": 2078585, - "gasCost": 8, "depth": 1, + "gas": 2078273, + "gasCost": 8, + "op": "JUMP", + "pc": 454, "stack": [ "0xa0712d68", "0x1cd", @@ -598,11 +598,11 @@ ] }, { - "pc": 2570, - "op": "JUMPDEST", - "gas": 2078577, - "gasCost": 1, "depth": 1, + "gas": 2078265, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2570, "stack": [ "0xa0712d68", "0x1cd", @@ -612,11 +612,11 @@ ] }, { - "pc": 2571, - "op": "PUSH1", - "gas": 2078576, - "gasCost": 3, "depth": 1, + "gas": 2078264, + "gasCost": 3, + "op": "PUSH1", + "pc": 2571, "stack": [ "0xa0712d68", "0x1cd", @@ -626,11 +626,11 @@ ] }, { - "pc": 2573, - "op": "PUSH1", - "gas": 2078573, - "gasCost": 3, "depth": 1, + "gas": 2078261, + "gasCost": 3, + "op": "PUSH1", + "pc": 2573, "stack": [ "0xa0712d68", "0x1cd", @@ -641,11 +641,11 @@ ] }, { - "pc": 2575, - "op": "DUP3", - "gas": 2078570, - "gasCost": 3, "depth": 1, + "gas": 2078258, + "gasCost": 3, + "op": "DUP3", + "pc": 2575, "stack": [ "0xa0712d68", "0x1cd", @@ -657,11 +657,11 @@ ] }, { - "pc": 2576, - "op": "DUP5", - "gas": 2078567, - "gasCost": 3, "depth": 1, + "gas": 2078255, + "gasCost": 3, + "op": "DUP5", + "pc": 2576, "stack": [ "0xa0712d68", "0x1cd", @@ -674,11 +674,11 @@ ] }, { - "pc": 2577, - "op": "SUB", - "gas": 2078564, - "gasCost": 3, "depth": 1, + "gas": 2078252, + "gasCost": 3, + "op": "SUB", + "pc": 2577, "stack": [ "0xa0712d68", "0x1cd", @@ -692,11 +692,11 @@ ] }, { - "pc": 2578, - "op": "SLT", - "gas": 2078561, - "gasCost": 3, "depth": 1, + "gas": 2078249, + "gasCost": 3, + "op": "SLT", + "pc": 2578, "stack": [ "0xa0712d68", "0x1cd", @@ -709,11 +709,11 @@ ] }, { - "pc": 2579, - "op": "ISZERO", - "gas": 2078558, - "gasCost": 3, "depth": 1, + "gas": 2078246, + "gasCost": 3, + "op": "ISZERO", + "pc": 2579, "stack": [ "0xa0712d68", "0x1cd", @@ -725,11 +725,11 @@ ] }, { - "pc": 2580, - "op": "PUSH3", - "gas": 2078555, - "gasCost": 3, "depth": 1, + "gas": 2078243, + "gasCost": 3, + "op": "PUSH3", + "pc": 2580, "stack": [ "0xa0712d68", "0x1cd", @@ -741,11 +741,11 @@ ] }, { - "pc": 2584, - "op": "JUMPI", - "gas": 2078552, - "gasCost": 10, "depth": 1, + "gas": 2078240, + "gasCost": 10, + "op": "JUMPI", + "pc": 2584, "stack": [ "0xa0712d68", "0x1cd", @@ -758,11 +758,11 @@ ] }, { - "pc": 2595, - "op": "JUMPDEST", - "gas": 2078542, - "gasCost": 1, "depth": 1, + "gas": 2078230, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2595, "stack": [ "0xa0712d68", "0x1cd", @@ -773,11 +773,11 @@ ] }, { - "pc": 2596, - "op": "PUSH1", - "gas": 2078541, - "gasCost": 3, "depth": 1, + "gas": 2078229, + "gasCost": 3, + "op": "PUSH1", + "pc": 2596, "stack": [ "0xa0712d68", "0x1cd", @@ -788,11 +788,11 @@ ] }, { - "pc": 2598, - "op": "PUSH3", - "gas": 2078538, - "gasCost": 3, "depth": 1, + "gas": 2078226, + "gasCost": 3, + "op": "PUSH3", + "pc": 2598, "stack": [ "0xa0712d68", "0x1cd", @@ -804,11 +804,11 @@ ] }, { - "pc": 2602, - "op": "DUP5", - "gas": 2078535, - "gasCost": 3, "depth": 1, + "gas": 2078223, + "gasCost": 3, + "op": "DUP5", + "pc": 2602, "stack": [ "0xa0712d68", "0x1cd", @@ -821,11 +821,11 @@ ] }, { - "pc": 2603, - "op": "DUP3", - "gas": 2078532, - "gasCost": 3, "depth": 1, + "gas": 2078220, + "gasCost": 3, + "op": "DUP3", + "pc": 2603, "stack": [ "0xa0712d68", "0x1cd", @@ -839,11 +839,11 @@ ] }, { - "pc": 2604, - "op": "DUP6", - "gas": 2078529, - "gasCost": 3, "depth": 1, + "gas": 2078217, + "gasCost": 3, + "op": "DUP6", + "pc": 2604, "stack": [ "0xa0712d68", "0x1cd", @@ -858,11 +858,11 @@ ] }, { - "pc": 2605, - "op": "ADD", - "gas": 2078526, - "gasCost": 3, "depth": 1, + "gas": 2078214, + "gasCost": 3, + "op": "ADD", + "pc": 2605, "stack": [ "0xa0712d68", "0x1cd", @@ -878,11 +878,11 @@ ] }, { - "pc": 2606, - "op": "PUSH3", - "gas": 2078523, - "gasCost": 3, "depth": 1, + "gas": 2078211, + "gasCost": 3, + "op": "PUSH3", + "pc": 2606, "stack": [ "0xa0712d68", "0x1cd", @@ -897,11 +897,11 @@ ] }, { - "pc": 2610, - "op": "JUMP", - "gas": 2078520, - "gasCost": 8, "depth": 1, + "gas": 2078208, + "gasCost": 8, + "op": "JUMP", + "pc": 2610, "stack": [ "0xa0712d68", "0x1cd", @@ -917,11 +917,11 @@ ] }, { - "pc": 2547, - "op": "JUMPDEST", - "gas": 2078512, - "gasCost": 1, "depth": 1, + "gas": 2078200, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2547, "stack": [ "0xa0712d68", "0x1cd", @@ -936,11 +936,11 @@ ] }, { - "pc": 2548, - "op": "PUSH1", - "gas": 2078511, - "gasCost": 3, "depth": 1, + "gas": 2078199, + "gasCost": 3, + "op": "PUSH1", + "pc": 2548, "stack": [ "0xa0712d68", "0x1cd", @@ -955,11 +955,11 @@ ] }, { - "pc": 2550, - "op": "DUP2", - "gas": 2078508, - "gasCost": 3, "depth": 1, + "gas": 2078196, + "gasCost": 3, + "op": "DUP2", + "pc": 2550, "stack": [ "0xa0712d68", "0x1cd", @@ -975,11 +975,11 @@ ] }, { - "pc": 2551, - "op": "CALLDATALOAD", - "gas": 2078505, - "gasCost": 3, "depth": 1, + "gas": 2078193, + "gasCost": 3, + "op": "CALLDATALOAD", + "pc": 2551, "stack": [ "0xa0712d68", "0x1cd", @@ -996,11 +996,11 @@ ] }, { - "pc": 2552, - "op": "SWAP1", - "gas": 2078502, - "gasCost": 3, "depth": 1, + "gas": 2078190, + "gasCost": 3, + "op": "SWAP1", + "pc": 2552, "stack": [ "0xa0712d68", "0x1cd", @@ -1017,11 +1017,11 @@ ] }, { - "pc": 2553, - "op": "POP", - "gas": 2078499, - "gasCost": 2, "depth": 1, + "gas": 2078187, + "gasCost": 2, + "op": "POP", + "pc": 2553, "stack": [ "0xa0712d68", "0x1cd", @@ -1038,11 +1038,11 @@ ] }, { - "pc": 2554, - "op": "PUSH3", - "gas": 2078497, - "gasCost": 3, "depth": 1, + "gas": 2078185, + "gasCost": 3, + "op": "PUSH3", + "pc": 2554, "stack": [ "0xa0712d68", "0x1cd", @@ -1058,11 +1058,11 @@ ] }, { - "pc": 2558, - "op": "DUP2", - "gas": 2078494, - "gasCost": 3, "depth": 1, + "gas": 2078182, + "gasCost": 3, + "op": "DUP2", + "pc": 2558, "stack": [ "0xa0712d68", "0x1cd", @@ -1079,11 +1079,11 @@ ] }, { - "pc": 2559, - "op": "PUSH3", - "gas": 2078491, - "gasCost": 3, "depth": 1, + "gas": 2078179, + "gasCost": 3, + "op": "PUSH3", + "pc": 2559, "stack": [ "0xa0712d68", "0x1cd", @@ -1101,11 +1101,11 @@ ] }, { - "pc": 2563, - "op": "JUMP", - "gas": 2078488, - "gasCost": 8, "depth": 1, + "gas": 2078176, + "gasCost": 8, + "op": "JUMP", + "pc": 2563, "stack": [ "0xa0712d68", "0x1cd", @@ -1124,11 +1124,11 @@ ] }, { - "pc": 2521, - "op": "JUMPDEST", - "gas": 2078480, - "gasCost": 1, "depth": 1, + "gas": 2078168, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2521, "stack": [ "0xa0712d68", "0x1cd", @@ -1146,11 +1146,11 @@ ] }, { - "pc": 2522, - "op": "PUSH3", - "gas": 2078479, - "gasCost": 3, "depth": 1, + "gas": 2078167, + "gasCost": 3, + "op": "PUSH3", + "pc": 2522, "stack": [ "0xa0712d68", "0x1cd", @@ -1168,11 +1168,11 @@ ] }, { - "pc": 2526, - "op": "DUP2", - "gas": 2078476, - "gasCost": 3, "depth": 1, + "gas": 2078164, + "gasCost": 3, + "op": "DUP2", + "pc": 2526, "stack": [ "0xa0712d68", "0x1cd", @@ -1191,11 +1191,11 @@ ] }, { - "pc": 2527, - "op": "PUSH3", - "gas": 2078473, - "gasCost": 3, "depth": 1, + "gas": 2078161, + "gasCost": 3, + "op": "PUSH3", + "pc": 2527, "stack": [ "0xa0712d68", "0x1cd", @@ -1215,11 +1215,11 @@ ] }, { - "pc": 2531, - "op": "JUMP", - "gas": 2078470, - "gasCost": 8, "depth": 1, + "gas": 2078158, + "gasCost": 8, + "op": "JUMP", + "pc": 2531, "stack": [ "0xa0712d68", "0x1cd", @@ -1240,11 +1240,11 @@ ] }, { - "pc": 2394, - "op": "JUMPDEST", - "gas": 2078462, - "gasCost": 1, "depth": 1, + "gas": 2078150, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2394, "stack": [ "0xa0712d68", "0x1cd", @@ -1264,11 +1264,11 @@ ] }, { - "pc": 2395, - "op": "PUSH1", - "gas": 2078461, - "gasCost": 3, "depth": 1, + "gas": 2078149, + "gasCost": 3, + "op": "PUSH1", + "pc": 2395, "stack": [ "0xa0712d68", "0x1cd", @@ -1288,11 +1288,11 @@ ] }, { - "pc": 2397, - "op": "DUP2", - "gas": 2078458, - "gasCost": 3, "depth": 1, + "gas": 2078146, + "gasCost": 3, + "op": "DUP2", + "pc": 2397, "stack": [ "0xa0712d68", "0x1cd", @@ -1313,11 +1313,11 @@ ] }, { - "pc": 2398, - "op": "SWAP1", - "gas": 2078455, - "gasCost": 3, "depth": 1, + "gas": 2078143, + "gasCost": 3, + "op": "SWAP1", + "pc": 2398, "stack": [ "0xa0712d68", "0x1cd", @@ -1339,11 +1339,11 @@ ] }, { - "pc": 2399, - "op": "POP", - "gas": 2078452, - "gasCost": 2, "depth": 1, + "gas": 2078140, + "gasCost": 2, + "op": "POP", + "pc": 2399, "stack": [ "0xa0712d68", "0x1cd", @@ -1365,11 +1365,11 @@ ] }, { - "pc": 2400, - "op": "SWAP2", - "gas": 2078450, - "gasCost": 3, "depth": 1, + "gas": 2078138, + "gasCost": 3, + "op": "SWAP2", + "pc": 2400, "stack": [ "0xa0712d68", "0x1cd", @@ -1390,11 +1390,11 @@ ] }, { - "pc": 2401, - "op": "SWAP1", - "gas": 2078447, - "gasCost": 3, "depth": 1, + "gas": 2078135, + "gasCost": 3, + "op": "SWAP1", + "pc": 2401, "stack": [ "0xa0712d68", "0x1cd", @@ -1415,11 +1415,11 @@ ] }, { - "pc": 2402, - "op": "POP", - "gas": 2078444, - "gasCost": 2, "depth": 1, + "gas": 2078132, + "gasCost": 2, + "op": "POP", + "pc": 2402, "stack": [ "0xa0712d68", "0x1cd", @@ -1440,11 +1440,11 @@ ] }, { - "pc": 2403, - "op": "JUMP", - "gas": 2078442, - "gasCost": 8, "depth": 1, + "gas": 2078130, + "gasCost": 8, + "op": "JUMP", + "pc": 2403, "stack": [ "0xa0712d68", "0x1cd", @@ -1464,11 +1464,11 @@ ] }, { - "pc": 2532, - "op": "JUMPDEST", - "gas": 2078434, - "gasCost": 1, "depth": 1, + "gas": 2078122, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2532, "stack": [ "0xa0712d68", "0x1cd", @@ -1487,11 +1487,11 @@ ] }, { - "pc": 2533, - "op": "DUP2", - "gas": 2078433, - "gasCost": 3, "depth": 1, + "gas": 2078121, + "gasCost": 3, + "op": "DUP2", + "pc": 2533, "stack": [ "0xa0712d68", "0x1cd", @@ -1510,11 +1510,11 @@ ] }, { - "pc": 2534, - "op": "EQ", - "gas": 2078430, - "gasCost": 3, "depth": 1, + "gas": 2078118, + "gasCost": 3, + "op": "EQ", + "pc": 2534, "stack": [ "0xa0712d68", "0x1cd", @@ -1534,11 +1534,11 @@ ] }, { - "pc": 2535, - "op": "PUSH3", - "gas": 2078427, - "gasCost": 3, "depth": 1, + "gas": 2078115, + "gasCost": 3, + "op": "PUSH3", + "pc": 2535, "stack": [ "0xa0712d68", "0x1cd", @@ -1557,11 +1557,11 @@ ] }, { - "pc": 2539, - "op": "JUMPI", - "gas": 2078424, - "gasCost": 10, "depth": 1, + "gas": 2078112, + "gasCost": 10, + "op": "JUMPI", + "pc": 2539, "stack": [ "0xa0712d68", "0x1cd", @@ -1581,11 +1581,11 @@ ] }, { - "pc": 2544, - "op": "JUMPDEST", - "gas": 2078414, - "gasCost": 1, "depth": 1, + "gas": 2078102, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2544, "stack": [ "0xa0712d68", "0x1cd", @@ -1603,11 +1603,11 @@ ] }, { - "pc": 2545, - "op": "POP", - "gas": 2078413, - "gasCost": 2, "depth": 1, + "gas": 2078101, + "gasCost": 2, + "op": "POP", + "pc": 2545, "stack": [ "0xa0712d68", "0x1cd", @@ -1625,11 +1625,11 @@ ] }, { - "pc": 2546, - "op": "JUMP", - "gas": 2078411, - "gasCost": 8, "depth": 1, + "gas": 2078099, + "gasCost": 8, + "op": "JUMP", + "pc": 2546, "stack": [ "0xa0712d68", "0x1cd", @@ -1646,11 +1646,11 @@ ] }, { - "pc": 2564, - "op": "JUMPDEST", - "gas": 2078403, - "gasCost": 1, "depth": 1, + "gas": 2078091, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2564, "stack": [ "0xa0712d68", "0x1cd", @@ -1666,11 +1666,11 @@ ] }, { - "pc": 2565, - "op": "SWAP3", - "gas": 2078402, - "gasCost": 3, "depth": 1, + "gas": 2078090, + "gasCost": 3, + "op": "SWAP3", + "pc": 2565, "stack": [ "0xa0712d68", "0x1cd", @@ -1686,11 +1686,11 @@ ] }, { - "pc": 2566, - "op": "SWAP2", - "gas": 2078399, - "gasCost": 3, "depth": 1, + "gas": 2078087, + "gasCost": 3, + "op": "SWAP2", + "pc": 2566, "stack": [ "0xa0712d68", "0x1cd", @@ -1706,11 +1706,11 @@ ] }, { - "pc": 2567, - "op": "POP", - "gas": 2078396, - "gasCost": 2, "depth": 1, + "gas": 2078084, + "gasCost": 2, + "op": "POP", + "pc": 2567, "stack": [ "0xa0712d68", "0x1cd", @@ -1726,11 +1726,11 @@ ] }, { - "pc": 2568, - "op": "POP", - "gas": 2078394, - "gasCost": 2, "depth": 1, + "gas": 2078082, + "gasCost": 2, + "op": "POP", + "pc": 2568, "stack": [ "0xa0712d68", "0x1cd", @@ -1745,11 +1745,11 @@ ] }, { - "pc": 2569, - "op": "JUMP", - "gas": 2078392, - "gasCost": 8, "depth": 1, + "gas": 2078080, + "gasCost": 8, + "op": "JUMP", + "pc": 2569, "stack": [ "0xa0712d68", "0x1cd", @@ -1763,11 +1763,11 @@ ] }, { - "pc": 2611, - "op": "JUMPDEST", - "gas": 2078384, - "gasCost": 1, "depth": 1, + "gas": 2078072, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2611, "stack": [ "0xa0712d68", "0x1cd", @@ -1780,11 +1780,11 @@ ] }, { - "pc": 2612, - "op": "SWAP2", - "gas": 2078383, - "gasCost": 3, "depth": 1, + "gas": 2078071, + "gasCost": 3, + "op": "SWAP2", + "pc": 2612, "stack": [ "0xa0712d68", "0x1cd", @@ -1797,11 +1797,11 @@ ] }, { - "pc": 2613, - "op": "POP", - "gas": 2078380, - "gasCost": 2, "depth": 1, + "gas": 2078068, + "gasCost": 2, + "op": "POP", + "pc": 2613, "stack": [ "0xa0712d68", "0x1cd", @@ -1814,11 +1814,11 @@ ] }, { - "pc": 2614, - "op": "POP", - "gas": 2078378, - "gasCost": 2, "depth": 1, + "gas": 2078066, + "gasCost": 2, + "op": "POP", + "pc": 2614, "stack": [ "0xa0712d68", "0x1cd", @@ -1830,11 +1830,11 @@ ] }, { - "pc": 2615, - "op": "SWAP3", - "gas": 2078376, - "gasCost": 3, "depth": 1, + "gas": 2078064, + "gasCost": 3, + "op": "SWAP3", + "pc": 2615, "stack": [ "0xa0712d68", "0x1cd", @@ -1845,11 +1845,11 @@ ] }, { - "pc": 2616, - "op": "SWAP2", - "gas": 2078373, - "gasCost": 3, "depth": 1, + "gas": 2078061, + "gasCost": 3, + "op": "SWAP2", + "pc": 2616, "stack": [ "0xa0712d68", "0x1cd", @@ -1860,11 +1860,11 @@ ] }, { - "pc": 2617, - "op": "POP", - "gas": 2078370, - "gasCost": 2, "depth": 1, + "gas": 2078058, + "gasCost": 2, + "op": "POP", + "pc": 2617, "stack": [ "0xa0712d68", "0x1cd", @@ -1875,11 +1875,11 @@ ] }, { - "pc": 2618, - "op": "POP", - "gas": 2078368, - "gasCost": 2, "depth": 1, + "gas": 2078056, + "gasCost": 2, + "op": "POP", + "pc": 2618, "stack": [ "0xa0712d68", "0x1cd", @@ -1889,11 +1889,11 @@ ] }, { - "pc": 2619, - "op": "JUMP", - "gas": 2078366, - "gasCost": 8, "depth": 1, + "gas": 2078054, + "gasCost": 8, + "op": "JUMP", + "pc": 2619, "stack": [ "0xa0712d68", "0x1cd", @@ -1902,11 +1902,11 @@ ] }, { - "pc": 455, - "op": "JUMPDEST", - "gas": 2078358, - "gasCost": 1, "depth": 1, + "gas": 2078046, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 455, "stack": [ "0xa0712d68", "0x1cd", @@ -1914,11 +1914,11 @@ ] }, { - "pc": 456, - "op": "PUSH3", - "gas": 2078357, - "gasCost": 3, "depth": 1, + "gas": 2078045, + "gasCost": 3, + "op": "PUSH3", + "pc": 456, "stack": [ "0xa0712d68", "0x1cd", @@ -1926,11 +1926,11 @@ ] }, { - "pc": 460, - "op": "JUMP", - "gas": 2078354, - "gasCost": 8, "depth": 1, + "gas": 2078042, + "gasCost": 8, + "op": "JUMP", + "pc": 460, "stack": [ "0xa0712d68", "0x1cd", @@ -1939,11 +1939,11 @@ ] }, { - "pc": 2032, - "op": "JUMPDEST", - "gas": 2078346, - "gasCost": 1, "depth": 1, + "gas": 2078034, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2032, "stack": [ "0xa0712d68", "0x1cd", @@ -1951,11 +1951,11 @@ ] }, { - "pc": 2033, - "op": "PUSH1", - "gas": 2078345, - "gasCost": 3, "depth": 1, + "gas": 2078033, + "gasCost": 3, + "op": "PUSH1", + "pc": 2033, "stack": [ "0xa0712d68", "0x1cd", @@ -1963,11 +1963,11 @@ ] }, { - "pc": 2035, - "op": "CALLER", - "gas": 2078342, - "gasCost": 2, "depth": 1, + "gas": 2078030, + "gasCost": 2, + "op": "CALLER", + "pc": 2035, "stack": [ "0xa0712d68", "0x1cd", @@ -1976,11 +1976,11 @@ ] }, { - "pc": 2036, - "op": "PUSH20", - "gas": 2078340, - "gasCost": 3, "depth": 1, + "gas": 2078028, + "gasCost": 3, + "op": "PUSH20", + "pc": 2036, "stack": [ "0xa0712d68", "0x1cd", @@ -1990,11 +1990,11 @@ ] }, { - "pc": 2057, - "op": "AND", - "gas": 2078337, - "gasCost": 3, "depth": 1, + "gas": 2078025, + "gasCost": 3, + "op": "AND", + "pc": 2057, "stack": [ "0xa0712d68", "0x1cd", @@ -2005,11 +2005,11 @@ ] }, { - "pc": 2058, - "op": "PUSH32", - "gas": 2078334, - "gasCost": 3, "depth": 1, + "gas": 2078022, + "gasCost": 3, + "op": "PUSH32", + "pc": 2058, "stack": [ "0xa0712d68", "0x1cd", @@ -2019,11 +2019,11 @@ ] }, { - "pc": 2091, - "op": "DUP4", - "gas": 2078331, - "gasCost": 3, "depth": 1, + "gas": 2078019, + "gasCost": 3, + "op": "DUP4", + "pc": 2091, "stack": [ "0xa0712d68", "0x1cd", @@ -2034,11 +2034,11 @@ ] }, { - "pc": 2092, - "op": "PUSH1", - "gas": 2078328, - "gasCost": 3, "depth": 1, + "gas": 2078016, + "gasCost": 3, + "op": "PUSH1", + "pc": 2092, "stack": [ "0xa0712d68", "0x1cd", @@ -2050,11 +2050,11 @@ ] }, { - "pc": 2094, - "op": "MLOAD", - "gas": 2078325, - "gasCost": 3, "depth": 1, + "gas": 2078013, + "gasCost": 3, + "op": "MLOAD", + "pc": 2094, "stack": [ "0xa0712d68", "0x1cd", @@ -2067,11 +2067,11 @@ ] }, { - "pc": 2095, - "op": "PUSH3", - "gas": 2078322, - "gasCost": 3, "depth": 1, + "gas": 2078010, + "gasCost": 3, + "op": "PUSH3", + "pc": 2095, "stack": [ "0xa0712d68", "0x1cd", @@ -2084,11 +2084,11 @@ ] }, { - "pc": 2099, - "op": "SWAP2", - "gas": 2078319, - "gasCost": 3, "depth": 1, + "gas": 2078007, + "gasCost": 3, + "op": "SWAP2", + "pc": 2099, "stack": [ "0xa0712d68", "0x1cd", @@ -2102,11 +2102,11 @@ ] }, { - "pc": 2100, - "op": "SWAP1", - "gas": 2078316, - "gasCost": 3, "depth": 1, + "gas": 2078004, + "gasCost": 3, + "op": "SWAP1", + "pc": 2100, "stack": [ "0xa0712d68", "0x1cd", @@ -2120,11 +2120,11 @@ ] }, { - "pc": 2101, - "op": "PUSH3", - "gas": 2078313, - "gasCost": 3, "depth": 1, + "gas": 2078001, + "gasCost": 3, + "op": "PUSH3", + "pc": 2101, "stack": [ "0xa0712d68", "0x1cd", @@ -2138,11 +2138,11 @@ ] }, { - "pc": 2105, - "op": "JUMP", - "gas": 2078310, - "gasCost": 8, "depth": 1, + "gas": 2077998, + "gasCost": 8, + "op": "JUMP", + "pc": 2105, "stack": [ "0xa0712d68", "0x1cd", @@ -2157,11 +2157,11 @@ ] }, { - "pc": 3104, - "op": "JUMPDEST", - "gas": 2078302, - "gasCost": 1, "depth": 1, + "gas": 2077990, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 3104, "stack": [ "0xa0712d68", "0x1cd", @@ -2175,11 +2175,11 @@ ] }, { - "pc": 3105, - "op": "PUSH1", - "gas": 2078301, - "gasCost": 3, "depth": 1, + "gas": 2077989, + "gasCost": 3, + "op": "PUSH1", + "pc": 3105, "stack": [ "0xa0712d68", "0x1cd", @@ -2193,11 +2193,11 @@ ] }, { - "pc": 3107, - "op": "PUSH1", - "gas": 2078298, - "gasCost": 3, "depth": 1, + "gas": 2077986, + "gasCost": 3, + "op": "PUSH1", + "pc": 3107, "stack": [ "0xa0712d68", "0x1cd", @@ -2212,11 +2212,11 @@ ] }, { - "pc": 3109, - "op": "DUP3", - "gas": 2078295, - "gasCost": 3, "depth": 1, + "gas": 2077983, + "gasCost": 3, + "op": "DUP3", + "pc": 3109, "stack": [ "0xa0712d68", "0x1cd", @@ -2232,11 +2232,11 @@ ] }, { - "pc": 3110, - "op": "ADD", - "gas": 2078292, - "gasCost": 3, "depth": 1, + "gas": 2077980, + "gasCost": 3, + "op": "ADD", + "pc": 3110, "stack": [ "0xa0712d68", "0x1cd", @@ -2253,11 +2253,11 @@ ] }, { - "pc": 3111, - "op": "SWAP1", - "gas": 2078289, - "gasCost": 3, "depth": 1, + "gas": 2077977, + "gasCost": 3, + "op": "SWAP1", + "pc": 3111, "stack": [ "0xa0712d68", "0x1cd", @@ -2273,11 +2273,11 @@ ] }, { - "pc": 3112, - "op": "POP", - "gas": 2078286, - "gasCost": 2, "depth": 1, + "gas": 2077974, + "gasCost": 2, + "op": "POP", + "pc": 3112, "stack": [ "0xa0712d68", "0x1cd", @@ -2293,11 +2293,11 @@ ] }, { - "pc": 3113, - "op": "PUSH3", - "gas": 2078284, - "gasCost": 3, "depth": 1, + "gas": 2077972, + "gasCost": 3, + "op": "PUSH3", + "pc": 3113, "stack": [ "0xa0712d68", "0x1cd", @@ -2312,11 +2312,11 @@ ] }, { - "pc": 3117, - "op": "PUSH1", - "gas": 2078281, - "gasCost": 3, "depth": 1, + "gas": 2077969, + "gasCost": 3, + "op": "PUSH1", + "pc": 3117, "stack": [ "0xa0712d68", "0x1cd", @@ -2332,11 +2332,11 @@ ] }, { - "pc": 3119, - "op": "DUP4", - "gas": 2078278, - "gasCost": 3, "depth": 1, + "gas": 2077966, + "gasCost": 3, + "op": "DUP4", + "pc": 3119, "stack": [ "0xa0712d68", "0x1cd", @@ -2353,11 +2353,11 @@ ] }, { - "pc": 3120, - "op": "ADD", - "gas": 2078275, - "gasCost": 3, "depth": 1, + "gas": 2077963, + "gasCost": 3, + "op": "ADD", + "pc": 3120, "stack": [ "0xa0712d68", "0x1cd", @@ -2375,11 +2375,11 @@ ] }, { - "pc": 3121, - "op": "DUP5", - "gas": 2078272, - "gasCost": 3, "depth": 1, + "gas": 2077960, + "gasCost": 3, + "op": "DUP5", + "pc": 3121, "stack": [ "0xa0712d68", "0x1cd", @@ -2396,11 +2396,11 @@ ] }, { - "pc": 3122, - "op": "PUSH3", - "gas": 2078269, - "gasCost": 3, "depth": 1, + "gas": 2077957, + "gasCost": 3, + "op": "PUSH3", + "pc": 3122, "stack": [ "0xa0712d68", "0x1cd", @@ -2418,11 +2418,11 @@ ] }, { - "pc": 3126, - "op": "JUMP", - "gas": 2078266, - "gasCost": 8, "depth": 1, + "gas": 2077954, + "gasCost": 8, + "op": "JUMP", + "pc": 3126, "stack": [ "0xa0712d68", "0x1cd", @@ -2441,11 +2441,11 @@ ] }, { - "pc": 2404, - "op": "JUMPDEST", - "gas": 2078258, - "gasCost": 1, "depth": 1, + "gas": 2077946, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2404, "stack": [ "0xa0712d68", "0x1cd", @@ -2463,11 +2463,11 @@ ] }, { - "pc": 2405, - "op": "PUSH3", - "gas": 2078257, - "gasCost": 3, "depth": 1, + "gas": 2077945, + "gasCost": 3, + "op": "PUSH3", + "pc": 2405, "stack": [ "0xa0712d68", "0x1cd", @@ -2485,11 +2485,11 @@ ] }, { - "pc": 2409, - "op": "DUP2", - "gas": 2078254, - "gasCost": 3, "depth": 1, + "gas": 2077942, + "gasCost": 3, + "op": "DUP2", + "pc": 2409, "stack": [ "0xa0712d68", "0x1cd", @@ -2508,11 +2508,11 @@ ] }, { - "pc": 2410, - "op": "PUSH3", - "gas": 2078251, - "gasCost": 3, "depth": 1, + "gas": 2077939, + "gasCost": 3, + "op": "PUSH3", + "pc": 2410, "stack": [ "0xa0712d68", "0x1cd", @@ -2532,11 +2532,11 @@ ] }, { - "pc": 2414, - "op": "JUMP", - "gas": 2078248, - "gasCost": 8, "depth": 1, + "gas": 2077936, + "gasCost": 8, + "op": "JUMP", + "pc": 2414, "stack": [ "0xa0712d68", "0x1cd", @@ -2557,11 +2557,11 @@ ] }, { - "pc": 2394, - "op": "JUMPDEST", - "gas": 2078240, - "gasCost": 1, "depth": 1, + "gas": 2077928, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2394, "stack": [ "0xa0712d68", "0x1cd", @@ -2581,11 +2581,11 @@ ] }, { - "pc": 2395, - "op": "PUSH1", - "gas": 2078239, - "gasCost": 3, "depth": 1, + "gas": 2077927, + "gasCost": 3, + "op": "PUSH1", + "pc": 2395, "stack": [ "0xa0712d68", "0x1cd", @@ -2605,11 +2605,11 @@ ] }, { - "pc": 2397, - "op": "DUP2", - "gas": 2078236, - "gasCost": 3, "depth": 1, + "gas": 2077924, + "gasCost": 3, + "op": "DUP2", + "pc": 2397, "stack": [ "0xa0712d68", "0x1cd", @@ -2630,11 +2630,11 @@ ] }, { - "pc": 2398, - "op": "SWAP1", - "gas": 2078233, - "gasCost": 3, "depth": 1, + "gas": 2077921, + "gasCost": 3, + "op": "SWAP1", + "pc": 2398, "stack": [ "0xa0712d68", "0x1cd", @@ -2656,11 +2656,11 @@ ] }, { - "pc": 2399, - "op": "POP", - "gas": 2078230, - "gasCost": 2, "depth": 1, + "gas": 2077918, + "gasCost": 2, + "op": "POP", + "pc": 2399, "stack": [ "0xa0712d68", "0x1cd", @@ -2682,11 +2682,11 @@ ] }, { - "pc": 2400, - "op": "SWAP2", - "gas": 2078228, - "gasCost": 3, "depth": 1, + "gas": 2077916, + "gasCost": 3, + "op": "SWAP2", + "pc": 2400, "stack": [ "0xa0712d68", "0x1cd", @@ -2707,11 +2707,11 @@ ] }, { - "pc": 2401, - "op": "SWAP1", - "gas": 2078225, - "gasCost": 3, "depth": 1, + "gas": 2077913, + "gasCost": 3, + "op": "SWAP1", + "pc": 2401, "stack": [ "0xa0712d68", "0x1cd", @@ -2732,11 +2732,11 @@ ] }, { - "pc": 2402, - "op": "POP", - "gas": 2078222, - "gasCost": 2, "depth": 1, + "gas": 2077910, + "gasCost": 2, + "op": "POP", + "pc": 2402, "stack": [ "0xa0712d68", "0x1cd", @@ -2757,11 +2757,11 @@ ] }, { - "pc": 2403, - "op": "JUMP", - "gas": 2078220, - "gasCost": 8, "depth": 1, + "gas": 2077908, + "gasCost": 8, + "op": "JUMP", + "pc": 2403, "stack": [ "0xa0712d68", "0x1cd", @@ -2781,11 +2781,11 @@ ] }, { - "pc": 2415, - "op": "JUMPDEST", - "gas": 2078212, - "gasCost": 1, "depth": 1, + "gas": 2077900, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2415, "stack": [ "0xa0712d68", "0x1cd", @@ -2802,13 +2802,13 @@ "0x3e8", "0x3e8" ] - }, - { - "pc": 2416, - "op": "DUP3", - "gas": 2078211, - "gasCost": 3, + }, + { "depth": 1, + "gas": 2077899, + "gasCost": 3, + "op": "DUP3", + "pc": 2416, "stack": [ "0xa0712d68", "0x1cd", @@ -2827,11 +2827,11 @@ ] }, { - "pc": 2417, - "op": "MSTORE", - "gas": 2078208, - "gasCost": 9, "depth": 1, + "gas": 2077896, + "gasCost": 9, + "op": "MSTORE", + "pc": 2417, "stack": [ "0xa0712d68", "0x1cd", @@ -2851,11 +2851,11 @@ ] }, { - "pc": 2418, - "op": "POP", - "gas": 2078199, - "gasCost": 2, "depth": 1, + "gas": 2077887, + "gasCost": 2, + "op": "POP", + "pc": 2418, "stack": [ "0xa0712d68", "0x1cd", @@ -2873,11 +2873,11 @@ ] }, { - "pc": 2419, - "op": "POP", - "gas": 2078197, - "gasCost": 2, "depth": 1, + "gas": 2077885, + "gasCost": 2, + "op": "POP", + "pc": 2419, "stack": [ "0xa0712d68", "0x1cd", @@ -2894,11 +2894,11 @@ ] }, { - "pc": 2420, - "op": "JUMP", - "gas": 2078195, - "gasCost": 8, "depth": 1, + "gas": 2077883, + "gasCost": 8, + "op": "JUMP", + "pc": 2420, "stack": [ "0xa0712d68", "0x1cd", @@ -2914,11 +2914,11 @@ ] }, { - "pc": 3127, - "op": "JUMPDEST", - "gas": 2078187, - "gasCost": 1, "depth": 1, + "gas": 2077875, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 3127, "stack": [ "0xa0712d68", "0x1cd", @@ -2933,11 +2933,11 @@ ] }, { - "pc": 3128, - "op": "DUP2", - "gas": 2078186, - "gasCost": 3, "depth": 1, + "gas": 2077874, + "gasCost": 3, + "op": "DUP2", + "pc": 3128, "stack": [ "0xa0712d68", "0x1cd", @@ -2952,11 +2952,11 @@ ] }, { - "pc": 3129, - "op": "DUP2", - "gas": 2078183, - "gasCost": 3, "depth": 1, + "gas": 2077871, + "gasCost": 3, + "op": "DUP2", + "pc": 3129, "stack": [ "0xa0712d68", "0x1cd", @@ -2972,11 +2972,11 @@ ] }, { - "pc": 3130, - "op": "SUB", - "gas": 2078180, - "gasCost": 3, "depth": 1, + "gas": 2077868, + "gasCost": 3, + "op": "SUB", + "pc": 3130, "stack": [ "0xa0712d68", "0x1cd", @@ -2993,11 +2993,11 @@ ] }, { - "pc": 3131, - "op": "PUSH1", - "gas": 2078177, - "gasCost": 3, "depth": 1, + "gas": 2077865, + "gasCost": 3, + "op": "PUSH1", + "pc": 3131, "stack": [ "0xa0712d68", "0x1cd", @@ -3013,11 +3013,11 @@ ] }, { - "pc": 3133, - "op": "DUP4", - "gas": 2078174, - "gasCost": 3, "depth": 1, + "gas": 2077862, + "gasCost": 3, + "op": "DUP4", + "pc": 3133, "stack": [ "0xa0712d68", "0x1cd", @@ -3034,11 +3034,11 @@ ] }, { - "pc": 3134, - "op": "ADD", - "gas": 2078171, - "gasCost": 3, "depth": 1, + "gas": 2077859, + "gasCost": 3, + "op": "ADD", + "pc": 3134, "stack": [ "0xa0712d68", "0x1cd", @@ -3056,11 +3056,11 @@ ] }, { - "pc": 3135, - "op": "MSTORE", - "gas": 2078168, - "gasCost": 6, "depth": 1, + "gas": 2077856, + "gasCost": 6, + "op": "MSTORE", + "pc": 3135, "stack": [ "0xa0712d68", "0x1cd", @@ -3077,11 +3077,11 @@ ] }, { - "pc": 3136, - "op": "PUSH3", - "gas": 2078162, - "gasCost": 3, "depth": 1, + "gas": 2077850, + "gasCost": 3, + "op": "PUSH3", + "pc": 3136, "stack": [ "0xa0712d68", "0x1cd", @@ -3096,11 +3096,11 @@ ] }, { - "pc": 3140, - "op": "DUP2", - "gas": 2078159, - "gasCost": 3, "depth": 1, + "gas": 2077847, + "gasCost": 3, + "op": "DUP2", + "pc": 3140, "stack": [ "0xa0712d68", "0x1cd", @@ -3116,11 +3116,11 @@ ] }, { - "pc": 3141, - "op": "PUSH3", - "gas": 2078156, - "gasCost": 3, "depth": 1, + "gas": 2077844, + "gasCost": 3, + "op": "PUSH3", + "pc": 3141, "stack": [ "0xa0712d68", "0x1cd", @@ -3137,11 +3137,11 @@ ] }, { - "pc": 3145, - "op": "JUMP", - "gas": 2078153, - "gasCost": 8, "depth": 1, + "gas": 2077841, + "gasCost": 8, + "op": "JUMP", + "pc": 3145, "stack": [ "0xa0712d68", "0x1cd", @@ -3159,11 +3159,11 @@ ] }, { - "pc": 3065, - "op": "JUMPDEST", - "gas": 2078145, - "gasCost": 1, "depth": 1, + "gas": 2077833, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 3065, "stack": [ "0xa0712d68", "0x1cd", @@ -3180,11 +3180,11 @@ ] }, { - "pc": 3066, - "op": "PUSH1", - "gas": 2078144, - "gasCost": 3, "depth": 1, + "gas": 2077832, + "gasCost": 3, + "op": "PUSH1", + "pc": 3066, "stack": [ "0xa0712d68", "0x1cd", @@ -3201,11 +3201,11 @@ ] }, { - "pc": 3068, - "op": "PUSH3", - "gas": 2078141, - "gasCost": 3, "depth": 1, + "gas": 2077829, + "gasCost": 3, + "op": "PUSH3", + "pc": 3068, "stack": [ "0xa0712d68", "0x1cd", @@ -3223,11 +3223,11 @@ ] }, { - "pc": 3072, - "op": "PUSH1", - "gas": 2078138, - "gasCost": 3, "depth": 1, + "gas": 2077826, + "gasCost": 3, + "op": "PUSH1", + "pc": 3072, "stack": [ "0xa0712d68", "0x1cd", @@ -3246,11 +3246,11 @@ ] }, { - "pc": 3074, - "op": "DUP4", - "gas": 2078135, - "gasCost": 3, "depth": 1, + "gas": 2077823, + "gasCost": 3, + "op": "DUP4", + "pc": 3074, "stack": [ "0xa0712d68", "0x1cd", @@ -3270,11 +3270,11 @@ ] }, { - "pc": 3075, - "op": "PUSH3", - "gas": 2078132, - "gasCost": 3, "depth": 1, + "gas": 2077820, + "gasCost": 3, + "op": "PUSH3", + "pc": 3075, "stack": [ "0xa0712d68", "0x1cd", @@ -3295,11 +3295,11 @@ ] }, { - "pc": 3079, - "op": "JUMP", - "gas": 2078129, - "gasCost": 8, "depth": 1, + "gas": 2077817, + "gasCost": 8, + "op": "JUMP", + "pc": 3079, "stack": [ "0xa0712d68", "0x1cd", @@ -3321,11 +3321,11 @@ ] }, { - "pc": 2771, - "op": "JUMPDEST", - "gas": 2078121, - "gasCost": 1, "depth": 1, + "gas": 2077809, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2771, "stack": [ "0xa0712d68", "0x1cd", @@ -3346,11 +3346,11 @@ ] }, { - "pc": 2772, - "op": "PUSH1", - "gas": 2078120, - "gasCost": 3, "depth": 1, + "gas": 2077808, + "gasCost": 3, + "op": "PUSH1", + "pc": 2772, "stack": [ "0xa0712d68", "0x1cd", @@ -3371,11 +3371,11 @@ ] }, { - "pc": 2774, - "op": "DUP3", - "gas": 2078117, - "gasCost": 3, "depth": 1, + "gas": 2077805, + "gasCost": 3, + "op": "DUP3", + "pc": 2774, "stack": [ "0xa0712d68", "0x1cd", @@ -3397,11 +3397,11 @@ ] }, { - "pc": 2775, - "op": "DUP3", - "gas": 2078114, - "gasCost": 3, "depth": 1, + "gas": 2077802, + "gasCost": 3, + "op": "DUP3", + "pc": 2775, "stack": [ "0xa0712d68", "0x1cd", @@ -3424,11 +3424,11 @@ ] }, { - "pc": 2776, - "op": "MSTORE", - "gas": 2078111, - "gasCost": 6, "depth": 1, + "gas": 2077799, + "gasCost": 6, + "op": "MSTORE", + "pc": 2776, "stack": [ "0xa0712d68", "0x1cd", @@ -3452,11 +3452,11 @@ ] }, { - "pc": 2777, - "op": "PUSH1", - "gas": 2078105, - "gasCost": 3, "depth": 1, + "gas": 2077793, + "gasCost": 3, + "op": "PUSH1", + "pc": 2777, "stack": [ "0xa0712d68", "0x1cd", @@ -3478,11 +3478,11 @@ ] }, { - "pc": 2779, - "op": "DUP3", - "gas": 2078102, - "gasCost": 3, "depth": 1, + "gas": 2077790, + "gasCost": 3, + "op": "DUP3", + "pc": 2779, "stack": [ "0xa0712d68", "0x1cd", @@ -3505,11 +3505,11 @@ ] }, { - "pc": 2780, - "op": "ADD", - "gas": 2078099, - "gasCost": 3, "depth": 1, + "gas": 2077787, + "gasCost": 3, + "op": "ADD", + "pc": 2780, "stack": [ "0xa0712d68", "0x1cd", @@ -3533,11 +3533,11 @@ ] }, { - "pc": 2781, - "op": "SWAP1", - "gas": 2078096, - "gasCost": 3, "depth": 1, + "gas": 2077784, + "gasCost": 3, + "op": "SWAP1", + "pc": 2781, "stack": [ "0xa0712d68", "0x1cd", @@ -3560,11 +3560,11 @@ ] }, { - "pc": 2782, - "op": "POP", - "gas": 2078093, - "gasCost": 2, "depth": 1, + "gas": 2077781, + "gasCost": 2, + "op": "POP", + "pc": 2782, "stack": [ "0xa0712d68", "0x1cd", @@ -3587,11 +3587,11 @@ ] }, { - "pc": 2783, - "op": "SWAP3", - "gas": 2078091, - "gasCost": 3, "depth": 1, + "gas": 2077779, + "gasCost": 3, + "op": "SWAP3", + "pc": 2783, "stack": [ "0xa0712d68", "0x1cd", @@ -3613,11 +3613,11 @@ ] }, { - "pc": 2784, - "op": "SWAP2", - "gas": 2078088, - "gasCost": 3, "depth": 1, + "gas": 2077776, + "gasCost": 3, + "op": "SWAP2", + "pc": 2784, "stack": [ "0xa0712d68", "0x1cd", @@ -3639,11 +3639,11 @@ ] }, { - "pc": 2785, - "op": "POP", - "gas": 2078085, - "gasCost": 2, "depth": 1, + "gas": 2077773, + "gasCost": 2, + "op": "POP", + "pc": 2785, "stack": [ "0xa0712d68", "0x1cd", @@ -3665,11 +3665,11 @@ ] }, { - "pc": 2786, - "op": "POP", - "gas": 2078083, - "gasCost": 2, "depth": 1, + "gas": 2077771, + "gasCost": 2, + "op": "POP", + "pc": 2786, "stack": [ "0xa0712d68", "0x1cd", @@ -3690,11 +3690,11 @@ ] }, { - "pc": 2787, - "op": "JUMP", - "gas": 2078081, - "gasCost": 8, "depth": 1, + "gas": 2077769, + "gasCost": 8, + "op": "JUMP", + "pc": 2787, "stack": [ "0xa0712d68", "0x1cd", @@ -3714,11 +3714,11 @@ ] }, { - "pc": 3080, - "op": "JUMPDEST", - "gas": 2078073, - "gasCost": 1, "depth": 1, + "gas": 2077761, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 3080, "stack": [ "0xa0712d68", "0x1cd", @@ -3737,11 +3737,11 @@ ] }, { - "pc": 3081, - "op": "SWAP2", - "gas": 2078072, - "gasCost": 3, "depth": 1, + "gas": 2077760, + "gasCost": 3, + "op": "SWAP2", + "pc": 3081, "stack": [ "0xa0712d68", "0x1cd", @@ -3760,11 +3760,11 @@ ] }, { - "pc": 3082, - "op": "POP", - "gas": 2078069, - "gasCost": 2, "depth": 1, + "gas": 2077757, + "gasCost": 2, + "op": "POP", + "pc": 3082, "stack": [ "0xa0712d68", "0x1cd", @@ -3783,11 +3783,11 @@ ] }, { - "pc": 3083, - "op": "PUSH3", - "gas": 2078067, - "gasCost": 3, "depth": 1, + "gas": 2077755, + "gasCost": 3, + "op": "PUSH3", + "pc": 3083, "stack": [ "0xa0712d68", "0x1cd", @@ -3805,11 +3805,11 @@ ] }, { - "pc": 3087, - "op": "DUP3", - "gas": 2078064, - "gasCost": 3, "depth": 1, + "gas": 2077752, + "gasCost": 3, + "op": "DUP3", + "pc": 3087, "stack": [ "0xa0712d68", "0x1cd", @@ -3828,11 +3828,11 @@ ] }, { - "pc": 3088, - "op": "PUSH3", - "gas": 2078061, - "gasCost": 3, "depth": 1, + "gas": 2077749, + "gasCost": 3, + "op": "PUSH3", + "pc": 3088, "stack": [ "0xa0712d68", "0x1cd", @@ -3852,11 +3852,11 @@ ] }, { - "pc": 3092, - "op": "JUMP", - "gas": 2078058, - "gasCost": 8, "depth": 1, + "gas": 2077746, + "gasCost": 8, + "op": "JUMP", + "pc": 3092, "stack": [ "0xa0712d68", "0x1cd", @@ -3877,11 +3877,11 @@ ] }, { - "pc": 3024, - "op": "JUMPDEST", - "gas": 2078050, - "gasCost": 1, "depth": 1, + "gas": 2077738, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 3024, "stack": [ "0xa0712d68", "0x1cd", @@ -3901,11 +3901,11 @@ ] }, { - "pc": 3025, - "op": "PUSH32", - "gas": 2078049, - "gasCost": 3, "depth": 1, + "gas": 2077737, + "gasCost": 3, + "op": "PUSH32", + "pc": 3025, "stack": [ "0xa0712d68", "0x1cd", @@ -3925,11 +3925,11 @@ ] }, { - "pc": 3058, - "op": "PUSH1", - "gas": 2078046, - "gasCost": 3, "depth": 1, + "gas": 2077734, + "gasCost": 3, + "op": "PUSH1", + "pc": 3058, "stack": [ "0xa0712d68", "0x1cd", @@ -3950,11 +3950,11 @@ ] }, { - "pc": 3060, - "op": "DUP3", - "gas": 2078043, - "gasCost": 3, "depth": 1, + "gas": 2077731, + "gasCost": 3, + "op": "DUP3", + "pc": 3060, "stack": [ "0xa0712d68", "0x1cd", @@ -3976,11 +3976,11 @@ ] }, { - "pc": 3061, - "op": "ADD", - "gas": 2078040, - "gasCost": 3, "depth": 1, + "gas": 2077728, + "gasCost": 3, + "op": "ADD", + "pc": 3061, "stack": [ "0xa0712d68", "0x1cd", @@ -4003,11 +4003,11 @@ ] }, { - "pc": 3062, - "op": "MSTORE", - "gas": 2078037, - "gasCost": 6, "depth": 1, + "gas": 2077725, + "gasCost": 6, + "op": "MSTORE", + "pc": 3062, "stack": [ "0xa0712d68", "0x1cd", @@ -4029,11 +4029,11 @@ ] }, { - "pc": 3063, - "op": "POP", - "gas": 2078031, - "gasCost": 2, "depth": 1, + "gas": 2077719, + "gasCost": 2, + "op": "POP", + "pc": 3063, "stack": [ "0xa0712d68", "0x1cd", @@ -4053,11 +4053,11 @@ ] }, { - "pc": 3064, - "op": "JUMP", - "gas": 2078029, - "gasCost": 8, "depth": 1, + "gas": 2077717, + "gasCost": 8, + "op": "JUMP", + "pc": 3064, "stack": [ "0xa0712d68", "0x1cd", @@ -4076,11 +4076,11 @@ ] }, { - "pc": 3093, - "op": "JUMPDEST", - "gas": 2078021, - "gasCost": 1, "depth": 1, + "gas": 2077709, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 3093, "stack": [ "0xa0712d68", "0x1cd", @@ -4098,11 +4098,11 @@ ] }, { - "pc": 3094, - "op": "PUSH1", - "gas": 2078020, - "gasCost": 3, "depth": 1, + "gas": 2077708, + "gasCost": 3, + "op": "PUSH1", + "pc": 3094, "stack": [ "0xa0712d68", "0x1cd", @@ -4120,11 +4120,11 @@ ] }, { - "pc": 3096, - "op": "DUP3", - "gas": 2078017, - "gasCost": 3, "depth": 1, + "gas": 2077705, + "gasCost": 3, + "op": "DUP3", + "pc": 3096, "stack": [ "0xa0712d68", "0x1cd", @@ -4143,11 +4143,11 @@ ] }, { - "pc": 3097, - "op": "ADD", - "gas": 2078014, - "gasCost": 3, "depth": 1, + "gas": 2077702, + "gasCost": 3, + "op": "ADD", + "pc": 3097, "stack": [ "0xa0712d68", "0x1cd", @@ -4167,11 +4167,11 @@ ] }, { - "pc": 3098, - "op": "SWAP1", - "gas": 2078011, - "gasCost": 3, "depth": 1, + "gas": 2077699, + "gasCost": 3, + "op": "SWAP1", + "pc": 3098, "stack": [ "0xa0712d68", "0x1cd", @@ -4190,11 +4190,11 @@ ] }, { - "pc": 3099, - "op": "POP", - "gas": 2078008, - "gasCost": 2, "depth": 1, + "gas": 2077696, + "gasCost": 2, + "op": "POP", + "pc": 3099, "stack": [ "0xa0712d68", "0x1cd", @@ -4213,11 +4213,11 @@ ] }, { - "pc": 3100, - "op": "SWAP2", - "gas": 2078006, - "gasCost": 3, "depth": 1, + "gas": 2077694, + "gasCost": 3, + "op": "SWAP2", + "pc": 3100, "stack": [ "0xa0712d68", "0x1cd", @@ -4235,11 +4235,11 @@ ] }, { - "pc": 3101, - "op": "SWAP1", - "gas": 2078003, - "gasCost": 3, "depth": 1, + "gas": 2077691, + "gasCost": 3, + "op": "SWAP1", + "pc": 3101, "stack": [ "0xa0712d68", "0x1cd", @@ -4257,11 +4257,11 @@ ] }, { - "pc": 3102, - "op": "POP", - "gas": 2078000, - "gasCost": 2, "depth": 1, + "gas": 2077688, + "gasCost": 2, + "op": "POP", + "pc": 3102, "stack": [ "0xa0712d68", "0x1cd", @@ -4279,11 +4279,11 @@ ] }, { - "pc": 3103, - "op": "JUMP", - "gas": 2077998, - "gasCost": 8, "depth": 1, + "gas": 2077686, + "gasCost": 8, + "op": "JUMP", + "pc": 3103, "stack": [ "0xa0712d68", "0x1cd", @@ -4300,11 +4300,11 @@ ] }, { - "pc": 3146, - "op": "JUMPDEST", - "gas": 2077990, - "gasCost": 1, "depth": 1, + "gas": 2077678, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 3146, "stack": [ "0xa0712d68", "0x1cd", @@ -4320,11 +4320,11 @@ ] }, { - "pc": 3147, - "op": "SWAP1", - "gas": 2077989, - "gasCost": 3, "depth": 1, + "gas": 2077677, + "gasCost": 3, + "op": "SWAP1", + "pc": 3147, "stack": [ "0xa0712d68", "0x1cd", @@ -4340,11 +4340,11 @@ ] }, { - "pc": 3148, - "op": "POP", - "gas": 2077986, - "gasCost": 2, "depth": 1, + "gas": 2077674, + "gasCost": 2, + "op": "POP", + "pc": 3148, "stack": [ "0xa0712d68", "0x1cd", @@ -4360,11 +4360,11 @@ ] }, { - "pc": 3149, - "op": "SWAP3", - "gas": 2077984, - "gasCost": 3, "depth": 1, + "gas": 2077672, + "gasCost": 3, + "op": "SWAP3", + "pc": 3149, "stack": [ "0xa0712d68", "0x1cd", @@ -4379,11 +4379,11 @@ ] }, { - "pc": 3150, - "op": "SWAP2", - "gas": 2077981, - "gasCost": 3, "depth": 1, + "gas": 2077669, + "gasCost": 3, + "op": "SWAP2", + "pc": 3150, "stack": [ "0xa0712d68", "0x1cd", @@ -4398,11 +4398,11 @@ ] }, { - "pc": 3151, - "op": "POP", - "gas": 2077978, - "gasCost": 2, "depth": 1, + "gas": 2077666, + "gasCost": 2, + "op": "POP", + "pc": 3151, "stack": [ "0xa0712d68", "0x1cd", @@ -4417,11 +4417,11 @@ ] }, { - "pc": 3152, - "op": "POP", - "gas": 2077976, - "gasCost": 2, "depth": 1, + "gas": 2077664, + "gasCost": 2, + "op": "POP", + "pc": 3152, "stack": [ "0xa0712d68", "0x1cd", @@ -4435,11 +4435,11 @@ ] }, { - "pc": 3153, - "op": "JUMP", - "gas": 2077974, - "gasCost": 8, "depth": 1, + "gas": 2077662, + "gasCost": 8, + "op": "JUMP", + "pc": 3153, "stack": [ "0xa0712d68", "0x1cd", @@ -4452,11 +4452,11 @@ ] }, { - "pc": 2106, - "op": "JUMPDEST", - "gas": 2077966, - "gasCost": 1, "depth": 1, + "gas": 2077654, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2106, "stack": [ "0xa0712d68", "0x1cd", @@ -4468,11 +4468,11 @@ ] }, { - "pc": 2107, - "op": "PUSH1", - "gas": 2077965, - "gasCost": 3, "depth": 1, + "gas": 2077653, + "gasCost": 3, + "op": "PUSH1", + "pc": 2107, "stack": [ "0xa0712d68", "0x1cd", @@ -4484,11 +4484,11 @@ ] }, { - "pc": 2109, - "op": "MLOAD", - "gas": 2077962, - "gasCost": 3, "depth": 1, + "gas": 2077650, + "gasCost": 3, + "op": "MLOAD", + "pc": 2109, "stack": [ "0xa0712d68", "0x1cd", @@ -4501,11 +4501,11 @@ ] }, { - "pc": 2110, - "op": "DUP1", - "gas": 2077959, - "gasCost": 3, "depth": 1, + "gas": 2077647, + "gasCost": 3, + "op": "DUP1", + "pc": 2110, "stack": [ "0xa0712d68", "0x1cd", @@ -4518,11 +4518,11 @@ ] }, { - "pc": 2111, - "op": "SWAP2", - "gas": 2077956, - "gasCost": 3, "depth": 1, + "gas": 2077644, + "gasCost": 3, + "op": "SWAP2", + "pc": 2111, "stack": [ "0xa0712d68", "0x1cd", @@ -4536,11 +4536,11 @@ ] }, { - "pc": 2112, - "op": "SUB", - "gas": 2077953, - "gasCost": 3, "depth": 1, + "gas": 2077641, + "gasCost": 3, + "op": "SUB", + "pc": 2112, "stack": [ "0xa0712d68", "0x1cd", @@ -4554,11 +4554,11 @@ ] }, { - "pc": 2113, - "op": "SWAP1", - "gas": 2077950, - "gasCost": 3, "depth": 1, + "gas": 2077638, + "gasCost": 3, + "op": "SWAP1", + "pc": 2113, "stack": [ "0xa0712d68", "0x1cd", @@ -4571,11 +4571,11 @@ ] }, { - "pc": 2114, - "op": "LOG2", - "gas": 2077947, - "gasCost": 2149, "depth": 1, + "gas": 2077635, + "gasCost": 2149, + "op": "LOG2", + "pc": 2114, "stack": [ "0xa0712d68", "0x1cd", @@ -4588,11 +4588,11 @@ ] }, { - "pc": 2115, - "op": "DUP2", - "gas": 2075798, - "gasCost": 3, "depth": 1, + "gas": 2075486, + "gasCost": 3, + "op": "DUP2", + "pc": 2115, "stack": [ "0xa0712d68", "0x1cd", @@ -4601,11 +4601,11 @@ ] }, { - "pc": 2116, - "op": "PUSH1", - "gas": 2075795, - "gasCost": 3, "depth": 1, + "gas": 2075483, + "gasCost": 3, + "op": "PUSH1", + "pc": 2116, "stack": [ "0xa0712d68", "0x1cd", @@ -4615,11 +4615,11 @@ ] }, { - "pc": 2118, - "op": "PUSH1", - "gas": 2075792, - "gasCost": 3, "depth": 1, + "gas": 2075480, + "gasCost": 3, + "op": "PUSH1", + "pc": 2118, "stack": [ "0xa0712d68", "0x1cd", @@ -4630,11 +4630,11 @@ ] }, { - "pc": 2120, - "op": "DUP3", - "gas": 2075789, - "gasCost": 3, "depth": 1, + "gas": 2075477, + "gasCost": 3, + "op": "DUP3", + "pc": 2120, "stack": [ "0xa0712d68", "0x1cd", @@ -4646,11 +4646,11 @@ ] }, { - "pc": 2121, - "op": "DUP3", - "gas": 2075786, - "gasCost": 3, "depth": 1, + "gas": 2075474, + "gasCost": 3, + "op": "DUP3", + "pc": 2121, "stack": [ "0xa0712d68", "0x1cd", @@ -4663,11 +4663,11 @@ ] }, { - "pc": 2122, - "op": "SLOAD", - "gas": 2075783, - "gasCost": 2100, "depth": 1, + "gas": 2075471, + "gasCost": 200, + "op": "SLOAD", + "pc": 2122, "stack": [ "0xa0712d68", "0x1cd", @@ -4684,11 +4684,11 @@ } }, { - "pc": 2123, - "op": "PUSH3", - "gas": 2073683, - "gasCost": 3, "depth": 1, + "gas": 2075271, + "gasCost": 3, + "op": "PUSH3", + "pc": 2123, "stack": [ "0xa0712d68", "0x1cd", @@ -4702,11 +4702,11 @@ ] }, { - "pc": 2127, - "op": "SWAP2", - "gas": 2073680, - "gasCost": 3, "depth": 1, + "gas": 2075268, + "gasCost": 3, + "op": "SWAP2", + "pc": 2127, "stack": [ "0xa0712d68", "0x1cd", @@ -4721,11 +4721,11 @@ ] }, { - "pc": 2128, - "op": "SWAP1", - "gas": 2073677, - "gasCost": 3, "depth": 1, + "gas": 2075265, + "gasCost": 3, + "op": "SWAP1", + "pc": 2128, "stack": [ "0xa0712d68", "0x1cd", @@ -4740,11 +4740,11 @@ ] }, { - "pc": 2129, - "op": "PUSH3", - "gas": 2073674, - "gasCost": 3, "depth": 1, + "gas": 2075262, + "gasCost": 3, + "op": "PUSH3", + "pc": 2129, "stack": [ "0xa0712d68", "0x1cd", @@ -4759,11 +4759,11 @@ ] }, { - "pc": 2133, - "op": "JUMP", - "gas": 2073671, - "gasCost": 8, "depth": 1, + "gas": 2075259, + "gasCost": 8, + "op": "JUMP", + "pc": 2133, "stack": [ "0xa0712d68", "0x1cd", @@ -4779,11 +4779,11 @@ ] }, { - "pc": 2965, - "op": "JUMPDEST", - "gas": 2073663, - "gasCost": 1, "depth": 1, + "gas": 2075251, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2965, "stack": [ "0xa0712d68", "0x1cd", @@ -4798,11 +4798,11 @@ ] }, { - "pc": 2966, - "op": "PUSH1", - "gas": 2073662, - "gasCost": 3, "depth": 1, + "gas": 2075250, + "gasCost": 3, + "op": "PUSH1", + "pc": 2966, "stack": [ "0xa0712d68", "0x1cd", @@ -4817,11 +4817,11 @@ ] }, { - "pc": 2968, - "op": "PUSH3", - "gas": 2073659, - "gasCost": 3, "depth": 1, + "gas": 2075247, + "gasCost": 3, + "op": "PUSH3", + "pc": 2968, "stack": [ "0xa0712d68", "0x1cd", @@ -4837,11 +4837,11 @@ ] }, { - "pc": 2972, - "op": "DUP3", - "gas": 2073656, - "gasCost": 3, "depth": 1, + "gas": 2075244, + "gasCost": 3, + "op": "DUP3", + "pc": 2972, "stack": [ "0xa0712d68", "0x1cd", @@ -4858,11 +4858,11 @@ ] }, { - "pc": 2973, - "op": "PUSH3", - "gas": 2073653, - "gasCost": 3, "depth": 1, + "gas": 2075241, + "gasCost": 3, + "op": "PUSH3", + "pc": 2973, "stack": [ "0xa0712d68", "0x1cd", @@ -4880,11 +4880,11 @@ ] }, { - "pc": 2977, - "op": "JUMP", - "gas": 2073650, - "gasCost": 8, "depth": 1, + "gas": 2075238, + "gasCost": 8, + "op": "JUMP", + "pc": 2977, "stack": [ "0xa0712d68", "0x1cd", @@ -4903,11 +4903,11 @@ ] }, { - "pc": 2394, - "op": "JUMPDEST", - "gas": 2073642, - "gasCost": 1, "depth": 1, + "gas": 2075230, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2394, "stack": [ "0xa0712d68", "0x1cd", @@ -4925,11 +4925,11 @@ ] }, { - "pc": 2395, - "op": "PUSH1", - "gas": 2073641, - "gasCost": 3, "depth": 1, + "gas": 2075229, + "gasCost": 3, + "op": "PUSH1", + "pc": 2395, "stack": [ "0xa0712d68", "0x1cd", @@ -4947,11 +4947,11 @@ ] }, { - "pc": 2397, - "op": "DUP2", - "gas": 2073638, - "gasCost": 3, "depth": 1, + "gas": 2075226, + "gasCost": 3, + "op": "DUP2", + "pc": 2397, "stack": [ "0xa0712d68", "0x1cd", @@ -4970,11 +4970,11 @@ ] }, { - "pc": 2398, - "op": "SWAP1", - "gas": 2073635, - "gasCost": 3, "depth": 1, + "gas": 2075223, + "gasCost": 3, + "op": "SWAP1", + "pc": 2398, "stack": [ "0xa0712d68", "0x1cd", @@ -4994,11 +4994,11 @@ ] }, { - "pc": 2399, - "op": "POP", - "gas": 2073632, - "gasCost": 2, "depth": 1, + "gas": 2075220, + "gasCost": 2, + "op": "POP", + "pc": 2399, "stack": [ "0xa0712d68", "0x1cd", @@ -5018,11 +5018,11 @@ ] }, { - "pc": 2400, - "op": "SWAP2", - "gas": 2073630, - "gasCost": 3, "depth": 1, + "gas": 2075218, + "gasCost": 3, + "op": "SWAP2", + "pc": 2400, "stack": [ "0xa0712d68", "0x1cd", @@ -5041,11 +5041,11 @@ ] }, { - "pc": 2401, - "op": "SWAP1", - "gas": 2073627, - "gasCost": 3, "depth": 1, + "gas": 2075215, + "gasCost": 3, + "op": "SWAP1", + "pc": 2401, "stack": [ "0xa0712d68", "0x1cd", @@ -5064,11 +5064,11 @@ ] }, { - "pc": 2402, - "op": "POP", - "gas": 2073624, - "gasCost": 2, "depth": 1, + "gas": 2075212, + "gasCost": 2, + "op": "POP", + "pc": 2402, "stack": [ "0xa0712d68", "0x1cd", @@ -5087,11 +5087,11 @@ ] }, { - "pc": 2403, - "op": "JUMP", - "gas": 2073622, - "gasCost": 8, "depth": 1, + "gas": 2075210, + "gasCost": 8, + "op": "JUMP", + "pc": 2403, "stack": [ "0xa0712d68", "0x1cd", @@ -5109,11 +5109,11 @@ ] }, { - "pc": 2978, - "op": "JUMPDEST", - "gas": 2073614, - "gasCost": 1, "depth": 1, + "gas": 2075202, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2978, "stack": [ "0xa0712d68", "0x1cd", @@ -5130,11 +5130,11 @@ ] }, { - "pc": 2979, - "op": "SWAP2", - "gas": 2073613, - "gasCost": 3, "depth": 1, + "gas": 2075201, + "gasCost": 3, + "op": "SWAP2", + "pc": 2979, "stack": [ "0xa0712d68", "0x1cd", @@ -5151,11 +5151,11 @@ ] }, { - "pc": 2980, - "op": "POP", - "gas": 2073610, - "gasCost": 2, "depth": 1, + "gas": 2075198, + "gasCost": 2, + "op": "POP", + "pc": 2980, "stack": [ "0xa0712d68", "0x1cd", @@ -5172,11 +5172,11 @@ ] }, { - "pc": 2981, - "op": "PUSH3", - "gas": 2073608, - "gasCost": 3, "depth": 1, + "gas": 2075196, + "gasCost": 3, + "op": "PUSH3", + "pc": 2981, "stack": [ "0xa0712d68", "0x1cd", @@ -5192,11 +5192,11 @@ ] }, { - "pc": 2985, - "op": "DUP4", - "gas": 2073605, - "gasCost": 3, "depth": 1, + "gas": 2075193, + "gasCost": 3, + "op": "DUP4", + "pc": 2985, "stack": [ "0xa0712d68", "0x1cd", @@ -5213,11 +5213,11 @@ ] }, { - "pc": 2986, - "op": "PUSH3", - "gas": 2073602, - "gasCost": 3, "depth": 1, + "gas": 2075190, + "gasCost": 3, + "op": "PUSH3", + "pc": 2986, "stack": [ "0xa0712d68", "0x1cd", @@ -5235,11 +5235,11 @@ ] }, { - "pc": 2990, - "op": "JUMP", - "gas": 2073599, - "gasCost": 8, "depth": 1, + "gas": 2075187, + "gasCost": 8, + "op": "JUMP", + "pc": 2990, "stack": [ "0xa0712d68", "0x1cd", @@ -5258,11 +5258,11 @@ ] }, { - "pc": 2394, - "op": "JUMPDEST", - "gas": 2073591, - "gasCost": 1, "depth": 1, + "gas": 2075179, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2394, "stack": [ "0xa0712d68", "0x1cd", @@ -5280,11 +5280,11 @@ ] }, { - "pc": 2395, - "op": "PUSH1", - "gas": 2073590, - "gasCost": 3, "depth": 1, + "gas": 2075178, + "gasCost": 3, + "op": "PUSH1", + "pc": 2395, "stack": [ "0xa0712d68", "0x1cd", @@ -5302,11 +5302,11 @@ ] }, { - "pc": 2397, - "op": "DUP2", - "gas": 2073587, - "gasCost": 3, "depth": 1, + "gas": 2075175, + "gasCost": 3, + "op": "DUP2", + "pc": 2397, "stack": [ "0xa0712d68", "0x1cd", @@ -5325,11 +5325,11 @@ ] }, { - "pc": 2398, - "op": "SWAP1", - "gas": 2073584, - "gasCost": 3, "depth": 1, + "gas": 2075172, + "gasCost": 3, + "op": "SWAP1", + "pc": 2398, "stack": [ "0xa0712d68", "0x1cd", @@ -5349,11 +5349,11 @@ ] }, { - "pc": 2399, - "op": "POP", - "gas": 2073581, - "gasCost": 2, "depth": 1, + "gas": 2075169, + "gasCost": 2, + "op": "POP", + "pc": 2399, "stack": [ "0xa0712d68", "0x1cd", @@ -5373,11 +5373,11 @@ ] }, { - "pc": 2400, - "op": "SWAP2", - "gas": 2073579, - "gasCost": 3, "depth": 1, + "gas": 2075167, + "gasCost": 3, + "op": "SWAP2", + "pc": 2400, "stack": [ "0xa0712d68", "0x1cd", @@ -5396,11 +5396,11 @@ ] }, { - "pc": 2401, - "op": "SWAP1", - "gas": 2073576, - "gasCost": 3, "depth": 1, + "gas": 2075164, + "gasCost": 3, + "op": "SWAP1", + "pc": 2401, "stack": [ "0xa0712d68", "0x1cd", @@ -5419,11 +5419,11 @@ ] }, { - "pc": 2402, - "op": "POP", - "gas": 2073573, - "gasCost": 2, "depth": 1, + "gas": 2075161, + "gasCost": 2, + "op": "POP", + "pc": 2402, "stack": [ "0xa0712d68", "0x1cd", @@ -5442,11 +5442,11 @@ ] }, { - "pc": 2403, - "op": "JUMP", - "gas": 2073571, - "gasCost": 8, "depth": 1, + "gas": 2075159, + "gasCost": 8, + "op": "JUMP", + "pc": 2403, "stack": [ "0xa0712d68", "0x1cd", @@ -5464,11 +5464,11 @@ ] }, { - "pc": 2991, - "op": "JUMPDEST", - "gas": 2073563, - "gasCost": 1, "depth": 1, + "gas": 2075151, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2991, "stack": [ "0xa0712d68", "0x1cd", @@ -5485,11 +5485,11 @@ ] }, { - "pc": 2992, - "op": "SWAP3", - "gas": 2073562, - "gasCost": 3, "depth": 1, + "gas": 2075150, + "gasCost": 3, + "op": "SWAP3", + "pc": 2992, "stack": [ "0xa0712d68", "0x1cd", @@ -5504,13 +5504,13 @@ "0x0", "0x3e8" ] - }, - { - "pc": 2993, - "op": "POP", - "gas": 2073559, - "gasCost": 2, + }, + { "depth": 1, + "gas": 2075147, + "gasCost": 2, + "op": "POP", + "pc": 2993, "stack": [ "0xa0712d68", "0x1cd", @@ -5527,11 +5527,11 @@ ] }, { - "pc": 2994, - "op": "DUP3", - "gas": 2073557, - "gasCost": 3, "depth": 1, + "gas": 2075145, + "gasCost": 3, + "op": "DUP3", + "pc": 2994, "stack": [ "0xa0712d68", "0x1cd", @@ -5547,11 +5547,11 @@ ] }, { - "pc": 2995, - "op": "DUP3", - "gas": 2073554, - "gasCost": 3, "depth": 1, + "gas": 2075142, + "gasCost": 3, + "op": "DUP3", + "pc": 2995, "stack": [ "0xa0712d68", "0x1cd", @@ -5568,11 +5568,11 @@ ] }, { - "pc": 2996, - "op": "ADD", - "gas": 2073551, - "gasCost": 3, "depth": 1, + "gas": 2075139, + "gasCost": 3, + "op": "ADD", + "pc": 2996, "stack": [ "0xa0712d68", "0x1cd", @@ -5590,11 +5590,11 @@ ] }, { - "pc": 2997, - "op": "SWAP1", - "gas": 2073548, - "gasCost": 3, "depth": 1, + "gas": 2075136, + "gasCost": 3, + "op": "SWAP1", + "pc": 2997, "stack": [ "0xa0712d68", "0x1cd", @@ -5611,11 +5611,11 @@ ] }, { - "pc": 2998, - "op": "POP", - "gas": 2073545, - "gasCost": 2, "depth": 1, + "gas": 2075133, + "gasCost": 2, + "op": "POP", + "pc": 2998, "stack": [ "0xa0712d68", "0x1cd", @@ -5632,11 +5632,11 @@ ] }, { - "pc": 2999, - "op": "DUP1", - "gas": 2073543, - "gasCost": 3, "depth": 1, + "gas": 2075131, + "gasCost": 3, + "op": "DUP1", + "pc": 2999, "stack": [ "0xa0712d68", "0x1cd", @@ -5652,11 +5652,11 @@ ] }, { - "pc": 3000, - "op": "DUP3", - "gas": 2073540, - "gasCost": 3, "depth": 1, + "gas": 2075128, + "gasCost": 3, + "op": "DUP3", + "pc": 3000, "stack": [ "0xa0712d68", "0x1cd", @@ -5673,11 +5673,11 @@ ] }, { - "pc": 3001, - "op": "GT", - "gas": 2073537, - "gasCost": 3, "depth": 1, + "gas": 2075125, + "gasCost": 3, + "op": "GT", + "pc": 3001, "stack": [ "0xa0712d68", "0x1cd", @@ -5695,11 +5695,11 @@ ] }, { - "pc": 3002, - "op": "ISZERO", - "gas": 2073534, - "gasCost": 3, "depth": 1, + "gas": 2075122, + "gasCost": 3, + "op": "ISZERO", + "pc": 3002, "stack": [ "0xa0712d68", "0x1cd", @@ -5716,11 +5716,11 @@ ] }, { - "pc": 3003, - "op": "PUSH3", - "gas": 2073531, - "gasCost": 3, "depth": 1, + "gas": 2075119, + "gasCost": 3, + "op": "PUSH3", + "pc": 3003, "stack": [ "0xa0712d68", "0x1cd", @@ -5737,11 +5737,11 @@ ] }, { - "pc": 3007, - "op": "JUMPI", - "gas": 2073528, - "gasCost": 10, "depth": 1, + "gas": 2075116, + "gasCost": 10, + "op": "JUMPI", + "pc": 3007, "stack": [ "0xa0712d68", "0x1cd", @@ -5759,11 +5759,11 @@ ] }, { - "pc": 3018, - "op": "JUMPDEST", - "gas": 2073518, - "gasCost": 1, "depth": 1, + "gas": 2075106, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 3018, "stack": [ "0xa0712d68", "0x1cd", @@ -5779,11 +5779,11 @@ ] }, { - "pc": 3019, - "op": "SWAP3", - "gas": 2073517, - "gasCost": 3, "depth": 1, + "gas": 2075105, + "gasCost": 3, + "op": "SWAP3", + "pc": 3019, "stack": [ "0xa0712d68", "0x1cd", @@ -5799,11 +5799,11 @@ ] }, { - "pc": 3020, - "op": "SWAP2", - "gas": 2073514, - "gasCost": 3, "depth": 1, + "gas": 2075102, + "gasCost": 3, + "op": "SWAP2", + "pc": 3020, "stack": [ "0xa0712d68", "0x1cd", @@ -5819,11 +5819,11 @@ ] }, { - "pc": 3021, - "op": "POP", - "gas": 2073511, - "gasCost": 2, "depth": 1, + "gas": 2075099, + "gasCost": 2, + "op": "POP", + "pc": 3021, "stack": [ "0xa0712d68", "0x1cd", @@ -5839,11 +5839,11 @@ ] }, { - "pc": 3022, - "op": "POP", - "gas": 2073509, - "gasCost": 2, "depth": 1, + "gas": 2075097, + "gasCost": 2, + "op": "POP", + "pc": 3022, "stack": [ "0xa0712d68", "0x1cd", @@ -5858,11 +5858,11 @@ ] }, { - "pc": 3023, - "op": "JUMP", - "gas": 2073507, - "gasCost": 8, "depth": 1, + "gas": 2075095, + "gasCost": 8, + "op": "JUMP", + "pc": 3023, "stack": [ "0xa0712d68", "0x1cd", @@ -5876,11 +5876,11 @@ ] }, { - "pc": 2134, - "op": "JUMPDEST", - "gas": 2073499, - "gasCost": 1, "depth": 1, + "gas": 2075087, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2134, "stack": [ "0xa0712d68", "0x1cd", @@ -5893,11 +5893,11 @@ ] }, { - "pc": 2135, - "op": "SWAP3", - "gas": 2073498, - "gasCost": 3, "depth": 1, + "gas": 2075086, + "gasCost": 3, + "op": "SWAP3", + "pc": 2135, "stack": [ "0xa0712d68", "0x1cd", @@ -5910,11 +5910,11 @@ ] }, { - "pc": 2136, - "op": "POP", - "gas": 2073495, - "gasCost": 2, "depth": 1, + "gas": 2075083, + "gasCost": 2, + "op": "POP", + "pc": 2136, "stack": [ "0xa0712d68", "0x1cd", @@ -5927,11 +5927,11 @@ ] }, { - "pc": 2137, - "op": "POP", - "gas": 2073493, - "gasCost": 2, "depth": 1, + "gas": 2075081, + "gasCost": 2, + "op": "POP", + "pc": 2137, "stack": [ "0xa0712d68", "0x1cd", @@ -5943,11 +5943,11 @@ ] }, { - "pc": 2138, - "op": "DUP2", - "gas": 2073491, - "gasCost": 3, "depth": 1, + "gas": 2075079, + "gasCost": 3, + "op": "DUP2", + "pc": 2138, "stack": [ "0xa0712d68", "0x1cd", @@ -5958,11 +5958,11 @@ ] }, { - "pc": 2139, - "op": "SWAP1", - "gas": 2073488, - "gasCost": 3, "depth": 1, + "gas": 2075076, + "gasCost": 3, + "op": "SWAP1", + "pc": 2139, "stack": [ "0xa0712d68", "0x1cd", @@ -5974,11 +5974,11 @@ ] }, { - "pc": 2140, - "op": "SSTORE", - "gas": 2073485, - "gasCost": 20000, "depth": 1, + "gas": 2075073, + "gasCost": 20000, + "op": "SSTORE", + "pc": 2140, "stack": [ "0xa0712d68", "0x1cd", @@ -5993,11 +5993,11 @@ } }, { - "pc": 2141, - "op": "POP", - "gas": 2053485, - "gasCost": 2, "depth": 1, + "gas": 2055073, + "gasCost": 2, + "op": "POP", + "pc": 2141, "stack": [ "0xa0712d68", "0x1cd", @@ -6007,11 +6007,11 @@ ] }, { - "pc": 2142, - "op": "PUSH3", - "gas": 2053483, - "gasCost": 3, "depth": 1, + "gas": 2055071, + "gasCost": 3, + "op": "PUSH3", + "pc": 2142, "stack": [ "0xa0712d68", "0x1cd", @@ -6020,11 +6020,11 @@ ] }, { - "pc": 2146, - "op": "PUSH1", - "gas": 2053480, - "gasCost": 3, "depth": 1, + "gas": 2055068, + "gasCost": 3, + "op": "PUSH1", + "pc": 2146, "stack": [ "0xa0712d68", "0x1cd", @@ -6034,11 +6034,11 @@ ] }, { - "pc": 2148, - "op": "DUP4", - "gas": 2053477, - "gasCost": 3, "depth": 1, + "gas": 2055065, + "gasCost": 3, + "op": "DUP4", + "pc": 2148, "stack": [ "0xa0712d68", "0x1cd", @@ -6049,11 +6049,11 @@ ] }, { - "pc": 2149, - "op": "PUSH3", - "gas": 2053474, - "gasCost": 3, "depth": 1, + "gas": 2055062, + "gasCost": 3, + "op": "PUSH3", + "pc": 2149, "stack": [ "0xa0712d68", "0x1cd", @@ -6065,11 +6065,11 @@ ] }, { - "pc": 2153, - "op": "SWAP2", - "gas": 2053471, - "gasCost": 3, "depth": 1, + "gas": 2055059, + "gasCost": 3, + "op": "SWAP2", + "pc": 2153, "stack": [ "0xa0712d68", "0x1cd", @@ -6082,11 +6082,11 @@ ] }, { - "pc": 2154, - "op": "SWAP1", - "gas": 2053468, - "gasCost": 3, "depth": 1, + "gas": 2055056, + "gasCost": 3, + "op": "SWAP1", + "pc": 2154, "stack": [ "0xa0712d68", "0x1cd", @@ -6099,11 +6099,11 @@ ] }, { - "pc": 2155, - "op": "PUSH3", - "gas": 2053465, - "gasCost": 3, "depth": 1, + "gas": 2055053, + "gasCost": 3, + "op": "PUSH3", + "pc": 2155, "stack": [ "0xa0712d68", "0x1cd", @@ -6116,11 +6116,11 @@ ] }, { - "pc": 2159, - "op": "JUMP", - "gas": 2053462, - "gasCost": 8, "depth": 1, + "gas": 2055050, + "gasCost": 8, + "op": "JUMP", + "pc": 2159, "stack": [ "0xa0712d68", "0x1cd", @@ -6134,11 +6134,11 @@ ] }, { - "pc": 2965, - "op": "JUMPDEST", - "gas": 2053454, - "gasCost": 1, "depth": 1, + "gas": 2055042, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2965, "stack": [ "0xa0712d68", "0x1cd", @@ -6151,11 +6151,11 @@ ] }, { - "pc": 2966, - "op": "PUSH1", - "gas": 2053453, - "gasCost": 3, "depth": 1, + "gas": 2055041, + "gasCost": 3, + "op": "PUSH1", + "pc": 2966, "stack": [ "0xa0712d68", "0x1cd", @@ -6168,11 +6168,11 @@ ] }, { - "pc": 2968, - "op": "PUSH3", - "gas": 2053450, - "gasCost": 3, "depth": 1, + "gas": 2055038, + "gasCost": 3, + "op": "PUSH3", + "pc": 2968, "stack": [ "0xa0712d68", "0x1cd", @@ -6186,11 +6186,11 @@ ] }, { - "pc": 2972, - "op": "DUP3", - "gas": 2053447, - "gasCost": 3, "depth": 1, + "gas": 2055035, + "gasCost": 3, + "op": "DUP3", + "pc": 2972, "stack": [ "0xa0712d68", "0x1cd", @@ -6205,11 +6205,11 @@ ] }, { - "pc": 2973, - "op": "PUSH3", - "gas": 2053444, - "gasCost": 3, "depth": 1, + "gas": 2055032, + "gasCost": 3, + "op": "PUSH3", + "pc": 2973, "stack": [ "0xa0712d68", "0x1cd", @@ -6225,11 +6225,11 @@ ] }, { - "pc": 2977, - "op": "JUMP", - "gas": 2053441, - "gasCost": 8, "depth": 1, + "gas": 2055029, + "gasCost": 8, + "op": "JUMP", + "pc": 2977, "stack": [ "0xa0712d68", "0x1cd", @@ -6246,11 +6246,11 @@ ] }, { - "pc": 2394, - "op": "JUMPDEST", - "gas": 2053433, - "gasCost": 1, "depth": 1, + "gas": 2055021, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2394, "stack": [ "0xa0712d68", "0x1cd", @@ -6266,11 +6266,11 @@ ] }, { - "pc": 2395, - "op": "PUSH1", - "gas": 2053432, - "gasCost": 3, "depth": 1, + "gas": 2055020, + "gasCost": 3, + "op": "PUSH1", + "pc": 2395, "stack": [ "0xa0712d68", "0x1cd", @@ -6284,13 +6284,13 @@ "0xba2", "0x3e8" ] - }, - { - "pc": 2397, - "op": "DUP2", - "gas": 2053429, - "gasCost": 3, + }, + { "depth": 1, + "gas": 2055017, + "gasCost": 3, + "op": "DUP2", + "pc": 2397, "stack": [ "0xa0712d68", "0x1cd", @@ -6307,11 +6307,11 @@ ] }, { - "pc": 2398, - "op": "SWAP1", - "gas": 2053426, - "gasCost": 3, "depth": 1, + "gas": 2055014, + "gasCost": 3, + "op": "SWAP1", + "pc": 2398, "stack": [ "0xa0712d68", "0x1cd", @@ -6329,11 +6329,11 @@ ] }, { - "pc": 2399, - "op": "POP", - "gas": 2053423, - "gasCost": 2, "depth": 1, + "gas": 2055011, + "gasCost": 2, + "op": "POP", + "pc": 2399, "stack": [ "0xa0712d68", "0x1cd", @@ -6351,11 +6351,11 @@ ] }, { - "pc": 2400, - "op": "SWAP2", - "gas": 2053421, - "gasCost": 3, "depth": 1, + "gas": 2055009, + "gasCost": 3, + "op": "SWAP2", + "pc": 2400, "stack": [ "0xa0712d68", "0x1cd", @@ -6372,11 +6372,11 @@ ] }, { - "pc": 2401, - "op": "SWAP1", - "gas": 2053418, - "gasCost": 3, "depth": 1, + "gas": 2055006, + "gasCost": 3, + "op": "SWAP1", + "pc": 2401, "stack": [ "0xa0712d68", "0x1cd", @@ -6393,11 +6393,11 @@ ] }, { - "pc": 2402, - "op": "POP", - "gas": 2053415, - "gasCost": 2, "depth": 1, + "gas": 2055003, + "gasCost": 2, + "op": "POP", + "pc": 2402, "stack": [ "0xa0712d68", "0x1cd", @@ -6414,11 +6414,11 @@ ] }, { - "pc": 2403, - "op": "JUMP", - "gas": 2053413, - "gasCost": 8, "depth": 1, + "gas": 2055001, + "gasCost": 8, + "op": "JUMP", + "pc": 2403, "stack": [ "0xa0712d68", "0x1cd", @@ -6434,11 +6434,11 @@ ] }, { - "pc": 2978, - "op": "JUMPDEST", - "gas": 2053405, - "gasCost": 1, "depth": 1, + "gas": 2054993, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2978, "stack": [ "0xa0712d68", "0x1cd", @@ -6453,11 +6453,11 @@ ] }, { - "pc": 2979, - "op": "SWAP2", - "gas": 2053404, - "gasCost": 3, "depth": 1, + "gas": 2054992, + "gasCost": 3, + "op": "SWAP2", + "pc": 2979, "stack": [ "0xa0712d68", "0x1cd", @@ -6472,11 +6472,11 @@ ] }, { - "pc": 2980, - "op": "POP", - "gas": 2053401, - "gasCost": 2, "depth": 1, + "gas": 2054989, + "gasCost": 2, + "op": "POP", + "pc": 2980, "stack": [ "0xa0712d68", "0x1cd", @@ -6491,11 +6491,11 @@ ] }, { - "pc": 2981, - "op": "PUSH3", - "gas": 2053399, - "gasCost": 3, "depth": 1, + "gas": 2054987, + "gasCost": 3, + "op": "PUSH3", + "pc": 2981, "stack": [ "0xa0712d68", "0x1cd", @@ -6509,11 +6509,11 @@ ] }, { - "pc": 2985, - "op": "DUP4", - "gas": 2053396, - "gasCost": 3, "depth": 1, + "gas": 2054984, + "gasCost": 3, + "op": "DUP4", + "pc": 2985, "stack": [ "0xa0712d68", "0x1cd", @@ -6528,11 +6528,11 @@ ] }, { - "pc": 2986, - "op": "PUSH3", - "gas": 2053393, - "gasCost": 3, "depth": 1, + "gas": 2054981, + "gasCost": 3, + "op": "PUSH3", + "pc": 2986, "stack": [ "0xa0712d68", "0x1cd", @@ -6548,11 +6548,11 @@ ] }, { - "pc": 2990, - "op": "JUMP", - "gas": 2053390, - "gasCost": 8, "depth": 1, + "gas": 2054978, + "gasCost": 8, + "op": "JUMP", + "pc": 2990, "stack": [ "0xa0712d68", "0x1cd", @@ -6569,11 +6569,11 @@ ] }, { - "pc": 2394, - "op": "JUMPDEST", - "gas": 2053382, - "gasCost": 1, "depth": 1, + "gas": 2054970, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2394, "stack": [ "0xa0712d68", "0x1cd", @@ -6589,11 +6589,11 @@ ] }, { - "pc": 2395, - "op": "PUSH1", - "gas": 2053381, - "gasCost": 3, "depth": 1, + "gas": 2054969, + "gasCost": 3, + "op": "PUSH1", + "pc": 2395, "stack": [ "0xa0712d68", "0x1cd", @@ -6609,11 +6609,11 @@ ] }, { - "pc": 2397, - "op": "DUP2", - "gas": 2053378, - "gasCost": 3, "depth": 1, + "gas": 2054966, + "gasCost": 3, + "op": "DUP2", + "pc": 2397, "stack": [ "0xa0712d68", "0x1cd", @@ -6630,11 +6630,11 @@ ] }, { - "pc": 2398, - "op": "SWAP1", - "gas": 2053375, - "gasCost": 3, "depth": 1, + "gas": 2054963, + "gasCost": 3, + "op": "SWAP1", + "pc": 2398, "stack": [ "0xa0712d68", "0x1cd", @@ -6652,11 +6652,11 @@ ] }, { - "pc": 2399, - "op": "POP", - "gas": 2053372, - "gasCost": 2, "depth": 1, + "gas": 2054960, + "gasCost": 2, + "op": "POP", + "pc": 2399, "stack": [ "0xa0712d68", "0x1cd", @@ -6674,11 +6674,11 @@ ] }, { - "pc": 2400, - "op": "SWAP2", - "gas": 2053370, - "gasCost": 3, "depth": 1, + "gas": 2054958, + "gasCost": 3, + "op": "SWAP2", + "pc": 2400, "stack": [ "0xa0712d68", "0x1cd", @@ -6695,11 +6695,11 @@ ] }, { - "pc": 2401, - "op": "SWAP1", - "gas": 2053367, - "gasCost": 3, "depth": 1, + "gas": 2054955, + "gasCost": 3, + "op": "SWAP1", + "pc": 2401, "stack": [ "0xa0712d68", "0x1cd", @@ -6716,11 +6716,11 @@ ] }, { - "pc": 2402, - "op": "POP", - "gas": 2053364, - "gasCost": 2, "depth": 1, + "gas": 2054952, + "gasCost": 2, + "op": "POP", + "pc": 2402, "stack": [ "0xa0712d68", "0x1cd", @@ -6737,11 +6737,11 @@ ] }, { - "pc": 2403, - "op": "JUMP", - "gas": 2053362, - "gasCost": 8, "depth": 1, + "gas": 2054950, + "gasCost": 8, + "op": "JUMP", + "pc": 2403, "stack": [ "0xa0712d68", "0x1cd", @@ -6757,11 +6757,11 @@ ] }, { - "pc": 2991, - "op": "JUMPDEST", - "gas": 2053354, - "gasCost": 1, "depth": 1, + "gas": 2054942, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2991, "stack": [ "0xa0712d68", "0x1cd", @@ -6776,11 +6776,11 @@ ] }, { - "pc": 2992, - "op": "SWAP3", - "gas": 2053353, - "gasCost": 3, "depth": 1, + "gas": 2054941, + "gasCost": 3, + "op": "SWAP3", + "pc": 2992, "stack": [ "0xa0712d68", "0x1cd", @@ -6795,11 +6795,11 @@ ] }, { - "pc": 2993, - "op": "POP", - "gas": 2053350, - "gasCost": 2, "depth": 1, + "gas": 2054938, + "gasCost": 2, + "op": "POP", + "pc": 2993, "stack": [ "0xa0712d68", "0x1cd", @@ -6814,11 +6814,11 @@ ] }, { - "pc": 2994, - "op": "DUP3", - "gas": 2053348, - "gasCost": 3, "depth": 1, + "gas": 2054936, + "gasCost": 3, + "op": "DUP3", + "pc": 2994, "stack": [ "0xa0712d68", "0x1cd", @@ -6832,11 +6832,11 @@ ] }, { - "pc": 2995, - "op": "DUP3", - "gas": 2053345, - "gasCost": 3, "depth": 1, + "gas": 2054933, + "gasCost": 3, + "op": "DUP3", + "pc": 2995, "stack": [ "0xa0712d68", "0x1cd", @@ -6851,11 +6851,11 @@ ] }, { - "pc": 2996, - "op": "ADD", - "gas": 2053342, - "gasCost": 3, "depth": 1, + "gas": 2054930, + "gasCost": 3, + "op": "ADD", + "pc": 2996, "stack": [ "0xa0712d68", "0x1cd", @@ -6871,11 +6871,11 @@ ] }, { - "pc": 2997, - "op": "SWAP1", - "gas": 2053339, - "gasCost": 3, "depth": 1, + "gas": 2054927, + "gasCost": 3, + "op": "SWAP1", + "pc": 2997, "stack": [ "0xa0712d68", "0x1cd", @@ -6890,11 +6890,11 @@ ] }, { - "pc": 2998, - "op": "POP", - "gas": 2053336, - "gasCost": 2, "depth": 1, + "gas": 2054924, + "gasCost": 2, + "op": "POP", + "pc": 2998, "stack": [ "0xa0712d68", "0x1cd", @@ -6909,11 +6909,11 @@ ] }, { - "pc": 2999, - "op": "DUP1", - "gas": 2053334, - "gasCost": 3, "depth": 1, + "gas": 2054922, + "gasCost": 3, + "op": "DUP1", + "pc": 2999, "stack": [ "0xa0712d68", "0x1cd", @@ -6927,11 +6927,11 @@ ] }, { - "pc": 3000, - "op": "DUP3", - "gas": 2053331, - "gasCost": 3, "depth": 1, + "gas": 2054919, + "gasCost": 3, + "op": "DUP3", + "pc": 3000, "stack": [ "0xa0712d68", "0x1cd", @@ -6946,11 +6946,11 @@ ] }, { - "pc": 3001, - "op": "GT", - "gas": 2053328, - "gasCost": 3, "depth": 1, + "gas": 2054916, + "gasCost": 3, + "op": "GT", + "pc": 3001, "stack": [ "0xa0712d68", "0x1cd", @@ -6966,11 +6966,11 @@ ] }, { - "pc": 3002, - "op": "ISZERO", - "gas": 2053325, - "gasCost": 3, "depth": 1, + "gas": 2054913, + "gasCost": 3, + "op": "ISZERO", + "pc": 3002, "stack": [ "0xa0712d68", "0x1cd", @@ -6985,11 +6985,11 @@ ] }, { - "pc": 3003, - "op": "PUSH3", - "gas": 2053322, - "gasCost": 3, "depth": 1, + "gas": 2054910, + "gasCost": 3, + "op": "PUSH3", + "pc": 3003, "stack": [ "0xa0712d68", "0x1cd", @@ -7004,11 +7004,11 @@ ] }, { - "pc": 3007, - "op": "JUMPI", - "gas": 2053319, - "gasCost": 10, "depth": 1, + "gas": 2054907, + "gasCost": 10, + "op": "JUMPI", + "pc": 3007, "stack": [ "0xa0712d68", "0x1cd", @@ -7024,11 +7024,11 @@ ] }, { - "pc": 3018, - "op": "JUMPDEST", - "gas": 2053309, - "gasCost": 1, "depth": 1, + "gas": 2054897, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 3018, "stack": [ "0xa0712d68", "0x1cd", @@ -7042,11 +7042,11 @@ ] }, { - "pc": 3019, - "op": "SWAP3", - "gas": 2053308, - "gasCost": 3, "depth": 1, + "gas": 2054896, + "gasCost": 3, + "op": "SWAP3", + "pc": 3019, "stack": [ "0xa0712d68", "0x1cd", @@ -7060,11 +7060,11 @@ ] }, { - "pc": 3020, - "op": "SWAP2", - "gas": 2053305, - "gasCost": 3, "depth": 1, + "gas": 2054893, + "gasCost": 3, + "op": "SWAP2", + "pc": 3020, "stack": [ "0xa0712d68", "0x1cd", @@ -7078,11 +7078,11 @@ ] }, { - "pc": 3021, - "op": "POP", - "gas": 2053302, - "gasCost": 2, "depth": 1, + "gas": 2054890, + "gasCost": 2, + "op": "POP", + "pc": 3021, "stack": [ "0xa0712d68", "0x1cd", @@ -7096,11 +7096,11 @@ ] }, { - "pc": 3022, - "op": "POP", - "gas": 2053300, - "gasCost": 2, "depth": 1, + "gas": 2054888, + "gasCost": 2, + "op": "POP", + "pc": 3022, "stack": [ "0xa0712d68", "0x1cd", @@ -7111,13 +7111,13 @@ "0x870", "0x3e8" ] - }, - { - "pc": 3023, - "op": "JUMP", - "gas": 2053298, - "gasCost": 8, + }, + { "depth": 1, + "gas": 2054886, + "gasCost": 8, + "op": "JUMP", + "pc": 3023, "stack": [ "0xa0712d68", "0x1cd", @@ -7129,11 +7129,11 @@ ] }, { - "pc": 2160, - "op": "JUMPDEST", - "gas": 2053290, - "gasCost": 1, "depth": 1, + "gas": 2054878, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2160, "stack": [ "0xa0712d68", "0x1cd", @@ -7144,11 +7144,11 @@ ] }, { - "pc": 2161, - "op": "PUSH3", - "gas": 2053289, - "gasCost": 3, "depth": 1, + "gas": 2054877, + "gasCost": 3, + "op": "PUSH3", + "pc": 2161, "stack": [ "0xa0712d68", "0x1cd", @@ -7159,11 +7159,11 @@ ] }, { - "pc": 2165, - "op": "JUMP", - "gas": 2053286, - "gasCost": 8, "depth": 1, + "gas": 2054874, + "gasCost": 8, + "op": "JUMP", + "pc": 2165, "stack": [ "0xa0712d68", "0x1cd", @@ -7175,11 +7175,11 @@ ] }, { - "pc": 640, - "op": "JUMPDEST", - "gas": 2053278, - "gasCost": 1, "depth": 1, + "gas": 2054866, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 640, "stack": [ "0xa0712d68", "0x1cd", @@ -7190,11 +7190,11 @@ ] }, { - "pc": 641, - "op": "PUSH1", - "gas": 2053277, - "gasCost": 3, "depth": 1, + "gas": 2054865, + "gasCost": 3, + "op": "PUSH1", + "pc": 641, "stack": [ "0xa0712d68", "0x1cd", @@ -7205,11 +7205,11 @@ ] }, { - "pc": 643, - "op": "CALLER", - "gas": 2053274, - "gasCost": 2, "depth": 1, + "gas": 2054862, + "gasCost": 2, + "op": "CALLER", + "pc": 643, "stack": [ "0xa0712d68", "0x1cd", @@ -7221,11 +7221,11 @@ ] }, { - "pc": 644, - "op": "PUSH20", - "gas": 2053272, - "gasCost": 3, "depth": 1, + "gas": 2054860, + "gasCost": 3, + "op": "PUSH20", + "pc": 644, "stack": [ "0xa0712d68", "0x1cd", @@ -7238,11 +7238,11 @@ ] }, { - "pc": 665, - "op": "AND", - "gas": 2053269, - "gasCost": 3, "depth": 1, + "gas": 2054857, + "gasCost": 3, + "op": "AND", + "pc": 665, "stack": [ "0xa0712d68", "0x1cd", @@ -7256,11 +7256,11 @@ ] }, { - "pc": 666, - "op": "PUSH32", - "gas": 2053266, - "gasCost": 3, "depth": 1, + "gas": 2054854, + "gasCost": 3, + "op": "PUSH32", + "pc": 666, "stack": [ "0xa0712d68", "0x1cd", @@ -7273,11 +7273,11 @@ ] }, { - "pc": 699, - "op": "DUP4", - "gas": 2053263, - "gasCost": 3, "depth": 1, + "gas": 2054851, + "gasCost": 3, + "op": "DUP4", + "pc": 699, "stack": [ "0xa0712d68", "0x1cd", @@ -7291,11 +7291,11 @@ ] }, { - "pc": 700, - "op": "PUSH1", - "gas": 2053260, - "gasCost": 3, "depth": 1, + "gas": 2054848, + "gasCost": 3, + "op": "PUSH1", + "pc": 700, "stack": [ "0xa0712d68", "0x1cd", @@ -7310,11 +7310,11 @@ ] }, { - "pc": 702, - "op": "MLOAD", - "gas": 2053257, - "gasCost": 3, "depth": 1, + "gas": 2054845, + "gasCost": 3, + "op": "MLOAD", + "pc": 702, "stack": [ "0xa0712d68", "0x1cd", @@ -7330,11 +7330,11 @@ ] }, { - "pc": 703, - "op": "PUSH3", - "gas": 2053254, - "gasCost": 3, "depth": 1, + "gas": 2054842, + "gasCost": 3, + "op": "PUSH3", + "pc": 703, "stack": [ "0xa0712d68", "0x1cd", @@ -7350,11 +7350,11 @@ ] }, { - "pc": 707, - "op": "SWAP2", - "gas": 2053251, - "gasCost": 3, "depth": 1, + "gas": 2054839, + "gasCost": 3, + "op": "SWAP2", + "pc": 707, "stack": [ "0xa0712d68", "0x1cd", @@ -7371,11 +7371,11 @@ ] }, { - "pc": 708, - "op": "SWAP1", - "gas": 2053248, - "gasCost": 3, "depth": 1, + "gas": 2054836, + "gasCost": 3, + "op": "SWAP1", + "pc": 708, "stack": [ "0xa0712d68", "0x1cd", @@ -7392,11 +7392,11 @@ ] }, { - "pc": 709, - "op": "PUSH3", - "gas": 2053245, - "gasCost": 3, "depth": 1, + "gas": 2054833, + "gasCost": 3, + "op": "PUSH3", + "pc": 709, "stack": [ "0xa0712d68", "0x1cd", @@ -7413,11 +7413,11 @@ ] }, { - "pc": 713, - "op": "JUMP", - "gas": 2053242, - "gasCost": 8, "depth": 1, + "gas": 2054830, + "gasCost": 8, + "op": "JUMP", + "pc": 713, "stack": [ "0xa0712d68", "0x1cd", @@ -7435,11 +7435,11 @@ ] }, { - "pc": 2868, - "op": "JUMPDEST", - "gas": 2053234, - "gasCost": 1, "depth": 1, + "gas": 2054822, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2868, "stack": [ "0xa0712d68", "0x1cd", @@ -7456,11 +7456,11 @@ ] }, { - "pc": 2869, - "op": "PUSH1", - "gas": 2053233, - "gasCost": 3, "depth": 1, + "gas": 2054821, + "gasCost": 3, + "op": "PUSH1", + "pc": 2869, "stack": [ "0xa0712d68", "0x1cd", @@ -7477,11 +7477,11 @@ ] }, { - "pc": 2871, - "op": "PUSH1", - "gas": 2053230, - "gasCost": 3, "depth": 1, + "gas": 2054818, + "gasCost": 3, + "op": "PUSH1", + "pc": 2871, "stack": [ "0xa0712d68", "0x1cd", @@ -7499,11 +7499,11 @@ ] }, { - "pc": 2873, - "op": "DUP3", - "gas": 2053227, - "gasCost": 3, "depth": 1, + "gas": 2054815, + "gasCost": 3, + "op": "DUP3", + "pc": 2873, "stack": [ "0xa0712d68", "0x1cd", @@ -7522,11 +7522,11 @@ ] }, { - "pc": 2874, - "op": "ADD", - "gas": 2053224, - "gasCost": 3, "depth": 1, + "gas": 2054812, + "gasCost": 3, + "op": "ADD", + "pc": 2874, "stack": [ "0xa0712d68", "0x1cd", @@ -7546,11 +7546,11 @@ ] }, { - "pc": 2875, - "op": "SWAP1", - "gas": 2053221, - "gasCost": 3, "depth": 1, + "gas": 2054809, + "gasCost": 3, + "op": "SWAP1", + "pc": 2875, "stack": [ "0xa0712d68", "0x1cd", @@ -7569,11 +7569,11 @@ ] }, { - "pc": 2876, - "op": "POP", - "gas": 2053218, - "gasCost": 2, "depth": 1, + "gas": 2054806, + "gasCost": 2, + "op": "POP", + "pc": 2876, "stack": [ "0xa0712d68", "0x1cd", @@ -7592,11 +7592,11 @@ ] }, { - "pc": 2877, - "op": "PUSH3", - "gas": 2053216, - "gasCost": 3, "depth": 1, + "gas": 2054804, + "gasCost": 3, + "op": "PUSH3", + "pc": 2877, "stack": [ "0xa0712d68", "0x1cd", @@ -7614,11 +7614,11 @@ ] }, { - "pc": 2881, - "op": "PUSH1", - "gas": 2053213, - "gasCost": 3, "depth": 1, + "gas": 2054801, + "gasCost": 3, + "op": "PUSH1", + "pc": 2881, "stack": [ "0xa0712d68", "0x1cd", @@ -7637,11 +7637,11 @@ ] }, { - "pc": 2883, - "op": "DUP4", - "gas": 2053210, - "gasCost": 3, "depth": 1, + "gas": 2054798, + "gasCost": 3, + "op": "DUP4", + "pc": 2883, "stack": [ "0xa0712d68", "0x1cd", @@ -7661,11 +7661,11 @@ ] }, { - "pc": 2884, - "op": "ADD", - "gas": 2053207, - "gasCost": 3, "depth": 1, + "gas": 2054795, + "gasCost": 3, + "op": "ADD", + "pc": 2884, "stack": [ "0xa0712d68", "0x1cd", @@ -7686,11 +7686,11 @@ ] }, { - "pc": 2885, - "op": "DUP5", - "gas": 2053204, - "gasCost": 3, "depth": 1, + "gas": 2054792, + "gasCost": 3, + "op": "DUP5", + "pc": 2885, "stack": [ "0xa0712d68", "0x1cd", @@ -7710,11 +7710,11 @@ ] }, { - "pc": 2886, - "op": "PUSH3", - "gas": 2053201, - "gasCost": 3, "depth": 1, + "gas": 2054789, + "gasCost": 3, + "op": "PUSH3", + "pc": 2886, "stack": [ "0xa0712d68", "0x1cd", @@ -7735,11 +7735,11 @@ ] }, { - "pc": 2890, - "op": "JUMP", - "gas": 2053198, - "gasCost": 8, "depth": 1, + "gas": 2054786, + "gasCost": 8, + "op": "JUMP", + "pc": 2890, "stack": [ "0xa0712d68", "0x1cd", @@ -7761,11 +7761,11 @@ ] }, { - "pc": 2404, - "op": "JUMPDEST", - "gas": 2053190, - "gasCost": 1, "depth": 1, + "gas": 2054778, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2404, "stack": [ "0xa0712d68", "0x1cd", @@ -7786,11 +7786,11 @@ ] }, { - "pc": 2405, - "op": "PUSH3", - "gas": 2053189, - "gasCost": 3, "depth": 1, + "gas": 2054777, + "gasCost": 3, + "op": "PUSH3", + "pc": 2405, "stack": [ "0xa0712d68", "0x1cd", @@ -7811,11 +7811,11 @@ ] }, { - "pc": 2409, - "op": "DUP2", - "gas": 2053186, - "gasCost": 3, "depth": 1, + "gas": 2054774, + "gasCost": 3, + "op": "DUP2", + "pc": 2409, "stack": [ "0xa0712d68", "0x1cd", @@ -7837,11 +7837,11 @@ ] }, { - "pc": 2410, - "op": "PUSH3", - "gas": 2053183, - "gasCost": 3, "depth": 1, + "gas": 2054771, + "gasCost": 3, + "op": "PUSH3", + "pc": 2410, "stack": [ "0xa0712d68", "0x1cd", @@ -7864,11 +7864,11 @@ ] }, { - "pc": 2414, - "op": "JUMP", - "gas": 2053180, - "gasCost": 8, "depth": 1, + "gas": 2054768, + "gasCost": 8, + "op": "JUMP", + "pc": 2414, "stack": [ "0xa0712d68", "0x1cd", @@ -7892,11 +7892,11 @@ ] }, { - "pc": 2394, - "op": "JUMPDEST", - "gas": 2053172, - "gasCost": 1, "depth": 1, + "gas": 2054760, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2394, "stack": [ "0xa0712d68", "0x1cd", @@ -7919,11 +7919,11 @@ ] }, { - "pc": 2395, - "op": "PUSH1", - "gas": 2053171, - "gasCost": 3, "depth": 1, + "gas": 2054759, + "gasCost": 3, + "op": "PUSH1", + "pc": 2395, "stack": [ "0xa0712d68", "0x1cd", @@ -7946,11 +7946,11 @@ ] }, { - "pc": 2397, - "op": "DUP2", - "gas": 2053168, - "gasCost": 3, "depth": 1, + "gas": 2054756, + "gasCost": 3, + "op": "DUP2", + "pc": 2397, "stack": [ "0xa0712d68", "0x1cd", @@ -7974,11 +7974,11 @@ ] }, { - "pc": 2398, - "op": "SWAP1", - "gas": 2053165, - "gasCost": 3, "depth": 1, + "gas": 2054753, + "gasCost": 3, + "op": "SWAP1", + "pc": 2398, "stack": [ "0xa0712d68", "0x1cd", @@ -8003,11 +8003,11 @@ ] }, { - "pc": 2399, - "op": "POP", - "gas": 2053162, - "gasCost": 2, "depth": 1, + "gas": 2054750, + "gasCost": 2, + "op": "POP", + "pc": 2399, "stack": [ "0xa0712d68", "0x1cd", @@ -8030,13 +8030,13 @@ "0x3e9", "0x0" ] - }, - { - "pc": 2400, - "op": "SWAP2", - "gas": 2053160, - "gasCost": 3, + }, + { "depth": 1, + "gas": 2054748, + "gasCost": 3, + "op": "SWAP2", + "pc": 2400, "stack": [ "0xa0712d68", "0x1cd", @@ -8060,11 +8060,11 @@ ] }, { - "pc": 2401, - "op": "SWAP1", - "gas": 2053157, - "gasCost": 3, "depth": 1, + "gas": 2054745, + "gasCost": 3, + "op": "SWAP1", + "pc": 2401, "stack": [ "0xa0712d68", "0x1cd", @@ -8088,11 +8088,11 @@ ] }, { - "pc": 2402, - "op": "POP", - "gas": 2053154, - "gasCost": 2, "depth": 1, + "gas": 2054742, + "gasCost": 2, + "op": "POP", + "pc": 2402, "stack": [ "0xa0712d68", "0x1cd", @@ -8116,11 +8116,11 @@ ] }, { - "pc": 2403, - "op": "JUMP", - "gas": 2053152, - "gasCost": 8, "depth": 1, + "gas": 2054740, + "gasCost": 8, + "op": "JUMP", + "pc": 2403, "stack": [ "0xa0712d68", "0x1cd", @@ -8143,11 +8143,11 @@ ] }, { - "pc": 2415, - "op": "JUMPDEST", - "gas": 2053144, - "gasCost": 1, "depth": 1, + "gas": 2054732, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2415, "stack": [ "0xa0712d68", "0x1cd", @@ -8169,11 +8169,11 @@ ] }, { - "pc": 2416, - "op": "DUP3", - "gas": 2053143, - "gasCost": 3, "depth": 1, + "gas": 2054731, + "gasCost": 3, + "op": "DUP3", + "pc": 2416, "stack": [ "0xa0712d68", "0x1cd", @@ -8195,11 +8195,11 @@ ] }, { - "pc": 2417, - "op": "MSTORE", - "gas": 2053140, - "gasCost": 3, "depth": 1, + "gas": 2054728, + "gasCost": 3, + "op": "MSTORE", + "pc": 2417, "stack": [ "0xa0712d68", "0x1cd", @@ -8222,11 +8222,11 @@ ] }, { - "pc": 2418, - "op": "POP", - "gas": 2053137, - "gasCost": 2, "depth": 1, + "gas": 2054725, + "gasCost": 2, + "op": "POP", + "pc": 2418, "stack": [ "0xa0712d68", "0x1cd", @@ -8247,11 +8247,11 @@ ] }, { - "pc": 2419, - "op": "POP", - "gas": 2053135, - "gasCost": 2, "depth": 1, + "gas": 2054723, + "gasCost": 2, + "op": "POP", + "pc": 2419, "stack": [ "0xa0712d68", "0x1cd", @@ -8271,11 +8271,11 @@ ] }, { - "pc": 2420, - "op": "JUMP", - "gas": 2053133, - "gasCost": 8, "depth": 1, + "gas": 2054721, + "gasCost": 8, + "op": "JUMP", + "pc": 2420, "stack": [ "0xa0712d68", "0x1cd", @@ -8294,11 +8294,11 @@ ] }, { - "pc": 2891, - "op": "JUMPDEST", - "gas": 2053125, - "gasCost": 1, "depth": 1, + "gas": 2054713, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2891, "stack": [ "0xa0712d68", "0x1cd", @@ -8316,11 +8316,11 @@ ] }, { - "pc": 2892, - "op": "DUP2", - "gas": 2053124, - "gasCost": 3, "depth": 1, + "gas": 2054712, + "gasCost": 3, + "op": "DUP2", + "pc": 2892, "stack": [ "0xa0712d68", "0x1cd", @@ -8338,11 +8338,11 @@ ] }, { - "pc": 2893, - "op": "DUP2", - "gas": 2053121, - "gasCost": 3, "depth": 1, + "gas": 2054709, + "gasCost": 3, + "op": "DUP2", + "pc": 2893, "stack": [ "0xa0712d68", "0x1cd", @@ -8361,11 +8361,11 @@ ] }, { - "pc": 2894, - "op": "SUB", - "gas": 2053118, - "gasCost": 3, "depth": 1, + "gas": 2054706, + "gasCost": 3, + "op": "SUB", + "pc": 2894, "stack": [ "0xa0712d68", "0x1cd", @@ -8385,11 +8385,11 @@ ] }, { - "pc": 2895, - "op": "PUSH1", - "gas": 2053115, - "gasCost": 3, "depth": 1, + "gas": 2054703, + "gasCost": 3, + "op": "PUSH1", + "pc": 2895, "stack": [ "0xa0712d68", "0x1cd", @@ -8408,11 +8408,11 @@ ] }, { - "pc": 2897, - "op": "DUP4", - "gas": 2053112, - "gasCost": 3, "depth": 1, + "gas": 2054700, + "gasCost": 3, + "op": "DUP4", + "pc": 2897, "stack": [ "0xa0712d68", "0x1cd", @@ -8432,11 +8432,11 @@ ] }, { - "pc": 2898, - "op": "ADD", - "gas": 2053109, - "gasCost": 3, "depth": 1, + "gas": 2054697, + "gasCost": 3, + "op": "ADD", + "pc": 2898, "stack": [ "0xa0712d68", "0x1cd", @@ -8457,11 +8457,11 @@ ] }, { - "pc": 2899, - "op": "MSTORE", - "gas": 2053106, - "gasCost": 3, "depth": 1, + "gas": 2054694, + "gasCost": 3, + "op": "MSTORE", + "pc": 2899, "stack": [ "0xa0712d68", "0x1cd", @@ -8481,11 +8481,11 @@ ] }, { - "pc": 2900, - "op": "PUSH3", - "gas": 2053103, - "gasCost": 3, "depth": 1, + "gas": 2054691, + "gasCost": 3, + "op": "PUSH3", + "pc": 2900, "stack": [ "0xa0712d68", "0x1cd", @@ -8503,11 +8503,11 @@ ] }, { - "pc": 2904, - "op": "DUP2", - "gas": 2053100, - "gasCost": 3, "depth": 1, + "gas": 2054688, + "gasCost": 3, + "op": "DUP2", + "pc": 2904, "stack": [ "0xa0712d68", "0x1cd", @@ -8526,11 +8526,11 @@ ] }, { - "pc": 2905, - "op": "PUSH3", - "gas": 2053097, - "gasCost": 3, "depth": 1, + "gas": 2054685, + "gasCost": 3, + "op": "PUSH3", + "pc": 2905, "stack": [ "0xa0712d68", "0x1cd", @@ -8550,11 +8550,11 @@ ] }, { - "pc": 2909, - "op": "JUMP", - "gas": 2053094, - "gasCost": 8, "depth": 1, + "gas": 2054682, + "gasCost": 8, + "op": "JUMP", + "pc": 2909, "stack": [ "0xa0712d68", "0x1cd", @@ -8575,11 +8575,11 @@ ] }, { - "pc": 2829, - "op": "JUMPDEST", - "gas": 2053086, - "gasCost": 1, "depth": 1, + "gas": 2054674, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2829, "stack": [ "0xa0712d68", "0x1cd", @@ -8599,11 +8599,11 @@ ] }, { - "pc": 2830, - "op": "PUSH1", - "gas": 2053085, - "gasCost": 3, "depth": 1, + "gas": 2054673, + "gasCost": 3, + "op": "PUSH1", + "pc": 2830, "stack": [ "0xa0712d68", "0x1cd", @@ -8623,11 +8623,11 @@ ] }, { - "pc": 2832, - "op": "PUSH3", - "gas": 2053082, - "gasCost": 3, "depth": 1, + "gas": 2054670, + "gasCost": 3, + "op": "PUSH3", + "pc": 2832, "stack": [ "0xa0712d68", "0x1cd", @@ -8648,11 +8648,11 @@ ] }, { - "pc": 2836, - "op": "PUSH1", - "gas": 2053079, - "gasCost": 3, "depth": 1, + "gas": 2054667, + "gasCost": 3, + "op": "PUSH1", + "pc": 2836, "stack": [ "0xa0712d68", "0x1cd", @@ -8674,11 +8674,11 @@ ] }, { - "pc": 2838, - "op": "DUP4", - "gas": 2053076, - "gasCost": 3, "depth": 1, + "gas": 2054664, + "gasCost": 3, + "op": "DUP4", + "pc": 2838, "stack": [ "0xa0712d68", "0x1cd", @@ -8701,11 +8701,11 @@ ] }, { - "pc": 2839, - "op": "PUSH3", - "gas": 2053073, - "gasCost": 3, "depth": 1, + "gas": 2054661, + "gasCost": 3, + "op": "PUSH3", + "pc": 2839, "stack": [ "0xa0712d68", "0x1cd", @@ -8729,11 +8729,11 @@ ] }, { - "pc": 2843, - "op": "JUMP", - "gas": 2053070, - "gasCost": 8, "depth": 1, + "gas": 2054658, + "gasCost": 8, + "op": "JUMP", + "pc": 2843, "stack": [ "0xa0712d68", "0x1cd", @@ -8758,11 +8758,11 @@ ] }, { - "pc": 2771, - "op": "JUMPDEST", - "gas": 2053062, - "gasCost": 1, "depth": 1, + "gas": 2054650, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2771, "stack": [ "0xa0712d68", "0x1cd", @@ -8786,11 +8786,11 @@ ] }, { - "pc": 2772, - "op": "PUSH1", - "gas": 2053061, - "gasCost": 3, "depth": 1, + "gas": 2054649, + "gasCost": 3, + "op": "PUSH1", + "pc": 2772, "stack": [ "0xa0712d68", "0x1cd", @@ -8814,11 +8814,11 @@ ] }, { - "pc": 2774, - "op": "DUP3", - "gas": 2053058, - "gasCost": 3, "depth": 1, + "gas": 2054646, + "gasCost": 3, + "op": "DUP3", + "pc": 2774, "stack": [ "0xa0712d68", "0x1cd", @@ -8843,11 +8843,11 @@ ] }, { - "pc": 2775, - "op": "DUP3", - "gas": 2053055, - "gasCost": 3, "depth": 1, + "gas": 2054643, + "gasCost": 3, + "op": "DUP3", + "pc": 2775, "stack": [ "0xa0712d68", "0x1cd", @@ -8873,11 +8873,11 @@ ] }, { - "pc": 2776, - "op": "MSTORE", - "gas": 2053052, - "gasCost": 3, "depth": 1, + "gas": 2054640, + "gasCost": 3, + "op": "MSTORE", + "pc": 2776, "stack": [ "0xa0712d68", "0x1cd", @@ -8904,11 +8904,11 @@ ] }, { - "pc": 2777, - "op": "PUSH1", - "gas": 2053049, - "gasCost": 3, "depth": 1, + "gas": 2054637, + "gasCost": 3, + "op": "PUSH1", + "pc": 2777, "stack": [ "0xa0712d68", "0x1cd", @@ -8933,11 +8933,11 @@ ] }, { - "pc": 2779, - "op": "DUP3", - "gas": 2053046, - "gasCost": 3, "depth": 1, + "gas": 2054634, + "gasCost": 3, + "op": "DUP3", + "pc": 2779, "stack": [ "0xa0712d68", "0x1cd", @@ -8963,11 +8963,11 @@ ] }, { - "pc": 2780, - "op": "ADD", - "gas": 2053043, - "gasCost": 3, "depth": 1, + "gas": 2054631, + "gasCost": 3, + "op": "ADD", + "pc": 2780, "stack": [ "0xa0712d68", "0x1cd", @@ -8994,11 +8994,11 @@ ] }, { - "pc": 2781, - "op": "SWAP1", - "gas": 2053040, - "gasCost": 3, "depth": 1, + "gas": 2054628, + "gasCost": 3, + "op": "SWAP1", + "pc": 2781, "stack": [ "0xa0712d68", "0x1cd", @@ -9024,11 +9024,11 @@ ] }, { - "pc": 2782, - "op": "POP", - "gas": 2053037, - "gasCost": 2, "depth": 1, + "gas": 2054625, + "gasCost": 2, + "op": "POP", + "pc": 2782, "stack": [ "0xa0712d68", "0x1cd", @@ -9054,11 +9054,11 @@ ] }, { - "pc": 2783, - "op": "SWAP3", - "gas": 2053035, - "gasCost": 3, "depth": 1, + "gas": 2054623, + "gasCost": 3, + "op": "SWAP3", + "pc": 2783, "stack": [ "0xa0712d68", "0x1cd", @@ -9083,11 +9083,11 @@ ] }, { - "pc": 2784, - "op": "SWAP2", - "gas": 2053032, - "gasCost": 3, "depth": 1, + "gas": 2054620, + "gasCost": 3, + "op": "SWAP2", + "pc": 2784, "stack": [ "0xa0712d68", "0x1cd", @@ -9112,11 +9112,11 @@ ] }, { - "pc": 2785, - "op": "POP", - "gas": 2053029, - "gasCost": 2, "depth": 1, + "gas": 2054617, + "gasCost": 2, + "op": "POP", + "pc": 2785, "stack": [ "0xa0712d68", "0x1cd", @@ -9139,13 +9139,13 @@ "0xc0", "0xe" ] - }, - { - "pc": 2786, - "op": "POP", - "gas": 2053027, - "gasCost": 2, + }, + { "depth": 1, + "gas": 2054615, + "gasCost": 2, + "op": "POP", + "pc": 2786, "stack": [ "0xa0712d68", "0x1cd", @@ -9169,11 +9169,11 @@ ] }, { - "pc": 2787, - "op": "JUMP", - "gas": 2053025, - "gasCost": 8, "depth": 1, + "gas": 2054613, + "gasCost": 8, + "op": "JUMP", + "pc": 2787, "stack": [ "0xa0712d68", "0x1cd", @@ -9196,11 +9196,11 @@ ] }, { - "pc": 2844, - "op": "JUMPDEST", - "gas": 2053017, - "gasCost": 1, "depth": 1, + "gas": 2054605, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2844, "stack": [ "0xa0712d68", "0x1cd", @@ -9222,11 +9222,11 @@ ] }, { - "pc": 2845, - "op": "SWAP2", - "gas": 2053016, - "gasCost": 3, "depth": 1, + "gas": 2054604, + "gasCost": 3, + "op": "SWAP2", + "pc": 2845, "stack": [ "0xa0712d68", "0x1cd", @@ -9248,11 +9248,11 @@ ] }, { - "pc": 2846, - "op": "POP", - "gas": 2053013, - "gasCost": 2, "depth": 1, + "gas": 2054601, + "gasCost": 2, + "op": "POP", + "pc": 2846, "stack": [ "0xa0712d68", "0x1cd", @@ -9274,11 +9274,11 @@ ] }, { - "pc": 2847, - "op": "PUSH3", - "gas": 2053011, - "gasCost": 3, "depth": 1, + "gas": 2054599, + "gasCost": 3, + "op": "PUSH3", + "pc": 2847, "stack": [ "0xa0712d68", "0x1cd", @@ -9299,11 +9299,11 @@ ] }, { - "pc": 2851, - "op": "DUP3", - "gas": 2053008, - "gasCost": 3, "depth": 1, + "gas": 2054596, + "gasCost": 3, + "op": "DUP3", + "pc": 2851, "stack": [ "0xa0712d68", "0x1cd", @@ -9325,11 +9325,11 @@ ] }, { - "pc": 2852, - "op": "PUSH3", - "gas": 2053005, - "gasCost": 3, "depth": 1, + "gas": 2054593, + "gasCost": 3, + "op": "PUSH3", + "pc": 2852, "stack": [ "0xa0712d68", "0x1cd", @@ -9352,11 +9352,11 @@ ] }, { - "pc": 2856, - "op": "JUMP", - "gas": 2053002, - "gasCost": 8, "depth": 1, + "gas": 2054590, + "gasCost": 8, + "op": "JUMP", + "pc": 2856, "stack": [ "0xa0712d68", "0x1cd", @@ -9380,11 +9380,11 @@ ] }, { - "pc": 2788, - "op": "JUMPDEST", - "gas": 2052994, - "gasCost": 1, "depth": 1, + "gas": 2054582, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2788, "stack": [ "0xa0712d68", "0x1cd", @@ -9407,11 +9407,11 @@ ] }, { - "pc": 2789, - "op": "PUSH32", - "gas": 2052993, - "gasCost": 3, "depth": 1, + "gas": 2054581, + "gasCost": 3, + "op": "PUSH32", + "pc": 2789, "stack": [ "0xa0712d68", "0x1cd", @@ -9434,11 +9434,11 @@ ] }, { - "pc": 2822, - "op": "PUSH1", - "gas": 2052990, - "gasCost": 3, "depth": 1, + "gas": 2054578, + "gasCost": 3, + "op": "PUSH1", + "pc": 2822, "stack": [ "0xa0712d68", "0x1cd", @@ -9462,11 +9462,11 @@ ] }, { - "pc": 2824, - "op": "DUP3", - "gas": 2052987, - "gasCost": 3, "depth": 1, + "gas": 2054575, + "gasCost": 3, + "op": "DUP3", + "pc": 2824, "stack": [ "0xa0712d68", "0x1cd", @@ -9491,11 +9491,11 @@ ] }, { - "pc": 2825, - "op": "ADD", - "gas": 2052984, - "gasCost": 3, "depth": 1, + "gas": 2054572, + "gasCost": 3, + "op": "ADD", + "pc": 2825, "stack": [ "0xa0712d68", "0x1cd", @@ -9521,11 +9521,11 @@ ] }, { - "pc": 2826, - "op": "MSTORE", - "gas": 2052981, - "gasCost": 3, "depth": 1, + "gas": 2054569, + "gasCost": 3, + "op": "MSTORE", + "pc": 2826, "stack": [ "0xa0712d68", "0x1cd", @@ -9550,11 +9550,11 @@ ] }, { - "pc": 2827, - "op": "POP", - "gas": 2052978, - "gasCost": 2, "depth": 1, + "gas": 2054566, + "gasCost": 2, + "op": "POP", + "pc": 2827, "stack": [ "0xa0712d68", "0x1cd", @@ -9577,11 +9577,11 @@ ] }, { - "pc": 2828, - "op": "JUMP", - "gas": 2052976, - "gasCost": 8, "depth": 1, + "gas": 2054564, + "gasCost": 8, + "op": "JUMP", + "pc": 2828, "stack": [ "0xa0712d68", "0x1cd", @@ -9603,11 +9603,11 @@ ] }, { - "pc": 2857, - "op": "JUMPDEST", - "gas": 2052968, - "gasCost": 1, "depth": 1, + "gas": 2054556, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2857, "stack": [ "0xa0712d68", "0x1cd", @@ -9628,11 +9628,11 @@ ] }, { - "pc": 2858, - "op": "PUSH1", - "gas": 2052967, - "gasCost": 3, "depth": 1, + "gas": 2054555, + "gasCost": 3, + "op": "PUSH1", + "pc": 2858, "stack": [ "0xa0712d68", "0x1cd", @@ -9653,11 +9653,11 @@ ] }, { - "pc": 2860, - "op": "DUP3", - "gas": 2052964, - "gasCost": 3, "depth": 1, + "gas": 2054552, + "gasCost": 3, + "op": "DUP3", + "pc": 2860, "stack": [ "0xa0712d68", "0x1cd", @@ -9679,11 +9679,11 @@ ] }, { - "pc": 2861, - "op": "ADD", - "gas": 2052961, - "gasCost": 3, "depth": 1, + "gas": 2054549, + "gasCost": 3, + "op": "ADD", + "pc": 2861, "stack": [ "0xa0712d68", "0x1cd", @@ -9706,11 +9706,11 @@ ] }, { - "pc": 2862, - "op": "SWAP1", - "gas": 2052958, - "gasCost": 3, "depth": 1, + "gas": 2054546, + "gasCost": 3, + "op": "SWAP1", + "pc": 2862, "stack": [ "0xa0712d68", "0x1cd", @@ -9732,11 +9732,11 @@ ] }, { - "pc": 2863, - "op": "POP", - "gas": 2052955, - "gasCost": 2, "depth": 1, + "gas": 2054543, + "gasCost": 2, + "op": "POP", + "pc": 2863, "stack": [ "0xa0712d68", "0x1cd", @@ -9758,11 +9758,11 @@ ] }, { - "pc": 2864, - "op": "SWAP2", - "gas": 2052953, - "gasCost": 3, "depth": 1, + "gas": 2054541, + "gasCost": 3, + "op": "SWAP2", + "pc": 2864, "stack": [ "0xa0712d68", "0x1cd", @@ -9783,11 +9783,11 @@ ] }, { - "pc": 2865, - "op": "SWAP1", - "gas": 2052950, - "gasCost": 3, "depth": 1, + "gas": 2054538, + "gasCost": 3, + "op": "SWAP1", + "pc": 2865, "stack": [ "0xa0712d68", "0x1cd", @@ -9808,11 +9808,11 @@ ] }, { - "pc": 2866, - "op": "POP", - "gas": 2052947, - "gasCost": 2, "depth": 1, + "gas": 2054535, + "gasCost": 2, + "op": "POP", + "pc": 2866, "stack": [ "0xa0712d68", "0x1cd", @@ -9833,11 +9833,11 @@ ] }, { - "pc": 2867, - "op": "JUMP", - "gas": 2052945, - "gasCost": 8, "depth": 1, + "gas": 2054533, + "gasCost": 8, + "op": "JUMP", + "pc": 2867, "stack": [ "0xa0712d68", "0x1cd", @@ -9857,11 +9857,11 @@ ] }, { - "pc": 2910, - "op": "JUMPDEST", - "gas": 2052937, - "gasCost": 1, "depth": 1, + "gas": 2054525, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2910, "stack": [ "0xa0712d68", "0x1cd", @@ -9880,11 +9880,11 @@ ] }, { - "pc": 2911, - "op": "SWAP1", - "gas": 2052936, - "gasCost": 3, "depth": 1, + "gas": 2054524, + "gasCost": 3, + "op": "SWAP1", + "pc": 2911, "stack": [ "0xa0712d68", "0x1cd", @@ -9903,11 +9903,11 @@ ] }, { - "pc": 2912, - "op": "POP", - "gas": 2052933, - "gasCost": 2, "depth": 1, + "gas": 2054521, + "gasCost": 2, + "op": "POP", + "pc": 2912, "stack": [ "0xa0712d68", "0x1cd", @@ -9926,11 +9926,11 @@ ] }, { - "pc": 2913, - "op": "SWAP3", - "gas": 2052931, - "gasCost": 3, "depth": 1, + "gas": 2054519, + "gasCost": 3, + "op": "SWAP3", + "pc": 2913, "stack": [ "0xa0712d68", "0x1cd", @@ -9948,11 +9948,11 @@ ] }, { - "pc": 2914, - "op": "SWAP2", - "gas": 2052928, - "gasCost": 3, "depth": 1, + "gas": 2054516, + "gasCost": 3, + "op": "SWAP2", + "pc": 2914, "stack": [ "0xa0712d68", "0x1cd", @@ -9970,11 +9970,11 @@ ] }, { - "pc": 2915, - "op": "POP", - "gas": 2052925, - "gasCost": 2, "depth": 1, + "gas": 2054513, + "gasCost": 2, + "op": "POP", + "pc": 2915, "stack": [ "0xa0712d68", "0x1cd", @@ -9992,11 +9992,11 @@ ] }, { - "pc": 2916, - "op": "POP", - "gas": 2052923, - "gasCost": 2, "depth": 1, + "gas": 2054511, + "gasCost": 2, + "op": "POP", + "pc": 2916, "stack": [ "0xa0712d68", "0x1cd", @@ -10013,11 +10013,11 @@ ] }, { - "pc": 2917, - "op": "JUMP", - "gas": 2052921, - "gasCost": 8, "depth": 1, + "gas": 2054509, + "gasCost": 8, + "op": "JUMP", + "pc": 2917, "stack": [ "0xa0712d68", "0x1cd", @@ -10033,11 +10033,11 @@ ] }, { - "pc": 714, - "op": "JUMPDEST", - "gas": 2052913, - "gasCost": 1, "depth": 1, + "gas": 2054501, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 714, "stack": [ "0xa0712d68", "0x1cd", @@ -10052,11 +10052,11 @@ ] }, { - "pc": 715, - "op": "PUSH1", - "gas": 2052912, - "gasCost": 3, "depth": 1, + "gas": 2054500, + "gasCost": 3, + "op": "PUSH1", + "pc": 715, "stack": [ "0xa0712d68", "0x1cd", @@ -10071,11 +10071,11 @@ ] }, { - "pc": 717, - "op": "MLOAD", - "gas": 2052909, - "gasCost": 3, "depth": 1, + "gas": 2054497, + "gasCost": 3, + "op": "MLOAD", + "pc": 717, "stack": [ "0xa0712d68", "0x1cd", @@ -10091,11 +10091,11 @@ ] }, { - "pc": 718, - "op": "DUP1", - "gas": 2052906, - "gasCost": 3, "depth": 1, + "gas": 2054494, + "gasCost": 3, + "op": "DUP1", + "pc": 718, "stack": [ "0xa0712d68", "0x1cd", @@ -10111,11 +10111,11 @@ ] }, { - "pc": 719, - "op": "SWAP2", - "gas": 2052903, - "gasCost": 3, "depth": 1, + "gas": 2054491, + "gasCost": 3, + "op": "SWAP2", + "pc": 719, "stack": [ "0xa0712d68", "0x1cd", @@ -10132,11 +10132,11 @@ ] }, { - "pc": 720, - "op": "SUB", - "gas": 2052900, - "gasCost": 3, "depth": 1, + "gas": 2054488, + "gasCost": 3, + "op": "SUB", + "pc": 720, "stack": [ "0xa0712d68", "0x1cd", @@ -10153,11 +10153,11 @@ ] }, { - "pc": 721, - "op": "SWAP1", - "gas": 2052897, - "gasCost": 3, "depth": 1, + "gas": 2054485, + "gasCost": 3, + "op": "SWAP1", + "pc": 721, "stack": [ "0xa0712d68", "0x1cd", @@ -10173,11 +10173,11 @@ ] }, { - "pc": 722, - "op": "LOG2", - "gas": 2052894, - "gasCost": 2149, "depth": 1, + "gas": 2054482, + "gasCost": 2149, + "op": "LOG2", + "pc": 722, "stack": [ "0xa0712d68", "0x1cd", @@ -10193,11 +10193,11 @@ ] }, { - "pc": 723, - "op": "DUP2", - "gas": 2050745, - "gasCost": 3, "depth": 1, + "gas": 2052333, + "gasCost": 3, + "op": "DUP2", + "pc": 723, "stack": [ "0xa0712d68", "0x1cd", @@ -10209,11 +10209,11 @@ ] }, { - "pc": 724, - "op": "PUSH1", - "gas": 2050742, - "gasCost": 3, "depth": 1, + "gas": 2052330, + "gasCost": 3, + "op": "PUSH1", + "pc": 724, "stack": [ "0xa0712d68", "0x1cd", @@ -10226,11 +10226,11 @@ ] }, { - "pc": 726, - "op": "PUSH1", - "gas": 2050739, - "gasCost": 3, "depth": 1, + "gas": 2052327, + "gasCost": 3, + "op": "PUSH1", + "pc": 726, "stack": [ "0xa0712d68", "0x1cd", @@ -10244,11 +10244,11 @@ ] }, { - "pc": 728, - "op": "DUP3", - "gas": 2050736, - "gasCost": 3, "depth": 1, + "gas": 2052324, + "gasCost": 3, + "op": "DUP3", + "pc": 728, "stack": [ "0xa0712d68", "0x1cd", @@ -10263,11 +10263,11 @@ ] }, { - "pc": 729, - "op": "DUP3", - "gas": 2050733, - "gasCost": 3, "depth": 1, + "gas": 2052321, + "gasCost": 3, + "op": "DUP3", + "pc": 729, "stack": [ "0xa0712d68", "0x1cd", @@ -10283,11 +10283,11 @@ ] }, { - "pc": 730, - "op": "SLOAD", - "gas": 2050730, - "gasCost": 2100, "depth": 1, + "gas": 2052318, + "gasCost": 200, + "op": "SLOAD", + "pc": 730, "stack": [ "0xa0712d68", "0x1cd", @@ -10308,11 +10308,11 @@ } }, { - "pc": 731, - "op": "PUSH3", - "gas": 2048630, - "gasCost": 3, "depth": 1, + "gas": 2052118, + "gasCost": 3, + "op": "PUSH3", + "pc": 731, "stack": [ "0xa0712d68", "0x1cd", @@ -10329,11 +10329,11 @@ ] }, { - "pc": 735, - "op": "SWAP2", - "gas": 2048627, - "gasCost": 3, "depth": 1, + "gas": 2052115, + "gasCost": 3, + "op": "SWAP2", + "pc": 735, "stack": [ "0xa0712d68", "0x1cd", @@ -10351,11 +10351,11 @@ ] }, { - "pc": 736, - "op": "SWAP1", - "gas": 2048624, - "gasCost": 3, "depth": 1, + "gas": 2052112, + "gasCost": 3, + "op": "SWAP1", + "pc": 736, "stack": [ "0xa0712d68", "0x1cd", @@ -10373,11 +10373,11 @@ ] }, { - "pc": 737, - "op": "PUSH3", - "gas": 2048621, - "gasCost": 3, "depth": 1, + "gas": 2052109, + "gasCost": 3, + "op": "PUSH3", + "pc": 737, "stack": [ "0xa0712d68", "0x1cd", @@ -10395,11 +10395,11 @@ ] }, { - "pc": 741, - "op": "JUMP", - "gas": 2048618, - "gasCost": 8, "depth": 1, + "gas": 2052106, + "gasCost": 8, + "op": "JUMP", + "pc": 741, "stack": [ "0xa0712d68", "0x1cd", @@ -10418,11 +10418,11 @@ ] }, { - "pc": 2965, - "op": "JUMPDEST", - "gas": 2048610, - "gasCost": 1, "depth": 1, + "gas": 2052098, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2965, "stack": [ "0xa0712d68", "0x1cd", @@ -10440,11 +10440,11 @@ ] }, { - "pc": 2966, - "op": "PUSH1", - "gas": 2048609, - "gasCost": 3, "depth": 1, + "gas": 2052097, + "gasCost": 3, + "op": "PUSH1", + "pc": 2966, "stack": [ "0xa0712d68", "0x1cd", @@ -10462,11 +10462,11 @@ ] }, { - "pc": 2968, - "op": "PUSH3", - "gas": 2048606, - "gasCost": 3, "depth": 1, + "gas": 2052094, + "gasCost": 3, + "op": "PUSH3", + "pc": 2968, "stack": [ "0xa0712d68", "0x1cd", @@ -10485,11 +10485,11 @@ ] }, { - "pc": 2972, - "op": "DUP3", - "gas": 2048603, - "gasCost": 3, "depth": 1, + "gas": 2052091, + "gasCost": 3, + "op": "DUP3", + "pc": 2972, "stack": [ "0xa0712d68", "0x1cd", @@ -10509,11 +10509,11 @@ ] }, { - "pc": 2973, - "op": "PUSH3", - "gas": 2048600, - "gasCost": 3, "depth": 1, + "gas": 2052088, + "gasCost": 3, + "op": "PUSH3", + "pc": 2973, "stack": [ "0xa0712d68", "0x1cd", @@ -10534,11 +10534,11 @@ ] }, { - "pc": 2977, - "op": "JUMP", - "gas": 2048597, - "gasCost": 8, "depth": 1, + "gas": 2052085, + "gasCost": 8, + "op": "JUMP", + "pc": 2977, "stack": [ "0xa0712d68", "0x1cd", @@ -10560,11 +10560,11 @@ ] }, { - "pc": 2394, - "op": "JUMPDEST", - "gas": 2048589, - "gasCost": 1, "depth": 1, + "gas": 2052077, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2394, "stack": [ "0xa0712d68", "0x1cd", @@ -10585,11 +10585,11 @@ ] }, { - "pc": 2395, - "op": "PUSH1", - "gas": 2048588, - "gasCost": 3, "depth": 1, + "gas": 2052076, + "gasCost": 3, + "op": "PUSH1", + "pc": 2395, "stack": [ "0xa0712d68", "0x1cd", @@ -10610,11 +10610,11 @@ ] }, { - "pc": 2397, - "op": "DUP2", - "gas": 2048585, - "gasCost": 3, "depth": 1, + "gas": 2052073, + "gasCost": 3, + "op": "DUP2", + "pc": 2397, "stack": [ "0xa0712d68", "0x1cd", @@ -10636,11 +10636,11 @@ ] }, { - "pc": 2398, - "op": "SWAP1", - "gas": 2048582, - "gasCost": 3, "depth": 1, + "gas": 2052070, + "gasCost": 3, + "op": "SWAP1", + "pc": 2398, "stack": [ "0xa0712d68", "0x1cd", @@ -10663,11 +10663,11 @@ ] }, { - "pc": 2399, - "op": "POP", - "gas": 2048579, - "gasCost": 2, "depth": 1, + "gas": 2052067, + "gasCost": 2, + "op": "POP", + "pc": 2399, "stack": [ "0xa0712d68", "0x1cd", @@ -10690,11 +10690,11 @@ ] }, { - "pc": 2400, - "op": "SWAP2", - "gas": 2048577, - "gasCost": 3, "depth": 1, + "gas": 2052065, + "gasCost": 3, + "op": "SWAP2", + "pc": 2400, "stack": [ "0xa0712d68", "0x1cd", @@ -10716,11 +10716,11 @@ ] }, { - "pc": 2401, - "op": "SWAP1", - "gas": 2048574, - "gasCost": 3, "depth": 1, + "gas": 2052062, + "gasCost": 3, + "op": "SWAP1", + "pc": 2401, "stack": [ "0xa0712d68", "0x1cd", @@ -10742,11 +10742,11 @@ ] }, { - "pc": 2402, - "op": "POP", - "gas": 2048571, - "gasCost": 2, "depth": 1, + "gas": 2052059, + "gasCost": 2, + "op": "POP", + "pc": 2402, "stack": [ "0xa0712d68", "0x1cd", @@ -10768,11 +10768,11 @@ ] }, { - "pc": 2403, - "op": "JUMP", - "gas": 2048569, - "gasCost": 8, "depth": 1, + "gas": 2052057, + "gasCost": 8, + "op": "JUMP", + "pc": 2403, "stack": [ "0xa0712d68", "0x1cd", @@ -10793,11 +10793,11 @@ ] }, { - "pc": 2978, - "op": "JUMPDEST", - "gas": 2048561, - "gasCost": 1, "depth": 1, + "gas": 2052049, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2978, "stack": [ "0xa0712d68", "0x1cd", @@ -10817,11 +10817,11 @@ ] }, { - "pc": 2979, - "op": "SWAP2", - "gas": 2048560, - "gasCost": 3, "depth": 1, + "gas": 2052048, + "gasCost": 3, + "op": "SWAP2", + "pc": 2979, "stack": [ "0xa0712d68", "0x1cd", @@ -10841,11 +10841,11 @@ ] }, { - "pc": 2980, - "op": "POP", - "gas": 2048557, - "gasCost": 2, "depth": 1, + "gas": 2052045, + "gasCost": 2, + "op": "POP", + "pc": 2980, "stack": [ "0xa0712d68", "0x1cd", @@ -10865,11 +10865,11 @@ ] }, { - "pc": 2981, - "op": "PUSH3", - "gas": 2048555, - "gasCost": 3, "depth": 1, + "gas": 2052043, + "gasCost": 3, + "op": "PUSH3", + "pc": 2981, "stack": [ "0xa0712d68", "0x1cd", @@ -10888,11 +10888,11 @@ ] }, { - "pc": 2985, - "op": "DUP4", - "gas": 2048552, - "gasCost": 3, "depth": 1, + "gas": 2052040, + "gasCost": 3, + "op": "DUP4", + "pc": 2985, "stack": [ "0xa0712d68", "0x1cd", @@ -10912,11 +10912,11 @@ ] }, { - "pc": 2986, - "op": "PUSH3", - "gas": 2048549, - "gasCost": 3, "depth": 1, + "gas": 2052037, + "gasCost": 3, + "op": "PUSH3", + "pc": 2986, "stack": [ "0xa0712d68", "0x1cd", @@ -10937,11 +10937,11 @@ ] }, { - "pc": 2990, - "op": "JUMP", - "gas": 2048546, - "gasCost": 8, "depth": 1, + "gas": 2052034, + "gasCost": 8, + "op": "JUMP", + "pc": 2990, "stack": [ "0xa0712d68", "0x1cd", @@ -10963,11 +10963,11 @@ ] }, { - "pc": 2394, - "op": "JUMPDEST", - "gas": 2048538, - "gasCost": 1, "depth": 1, + "gas": 2052026, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2394, "stack": [ "0xa0712d68", "0x1cd", @@ -10988,11 +10988,11 @@ ] }, { - "pc": 2395, - "op": "PUSH1", - "gas": 2048537, - "gasCost": 3, "depth": 1, + "gas": 2052025, + "gasCost": 3, + "op": "PUSH1", + "pc": 2395, "stack": [ "0xa0712d68", "0x1cd", @@ -11013,11 +11013,11 @@ ] }, { - "pc": 2397, - "op": "DUP2", - "gas": 2048534, - "gasCost": 3, "depth": 1, + "gas": 2052022, + "gasCost": 3, + "op": "DUP2", + "pc": 2397, "stack": [ "0xa0712d68", "0x1cd", @@ -11039,11 +11039,11 @@ ] }, { - "pc": 2398, - "op": "SWAP1", - "gas": 2048531, - "gasCost": 3, "depth": 1, + "gas": 2052019, + "gasCost": 3, + "op": "SWAP1", + "pc": 2398, "stack": [ "0xa0712d68", "0x1cd", @@ -11066,11 +11066,11 @@ ] }, { - "pc": 2399, - "op": "POP", - "gas": 2048528, - "gasCost": 2, "depth": 1, + "gas": 2052016, + "gasCost": 2, + "op": "POP", + "pc": 2399, "stack": [ "0xa0712d68", "0x1cd", @@ -11093,11 +11093,11 @@ ] }, { - "pc": 2400, - "op": "SWAP2", - "gas": 2048526, - "gasCost": 3, "depth": 1, + "gas": 2052014, + "gasCost": 3, + "op": "SWAP2", + "pc": 2400, "stack": [ "0xa0712d68", "0x1cd", @@ -11119,11 +11119,11 @@ ] }, { - "pc": 2401, - "op": "SWAP1", - "gas": 2048523, - "gasCost": 3, "depth": 1, + "gas": 2052011, + "gasCost": 3, + "op": "SWAP1", + "pc": 2401, "stack": [ "0xa0712d68", "0x1cd", @@ -11145,11 +11145,11 @@ ] }, { - "pc": 2402, - "op": "POP", - "gas": 2048520, - "gasCost": 2, "depth": 1, + "gas": 2052008, + "gasCost": 2, + "op": "POP", + "pc": 2402, "stack": [ "0xa0712d68", "0x1cd", @@ -11171,11 +11171,11 @@ ] }, { - "pc": 2403, - "op": "JUMP", - "gas": 2048518, - "gasCost": 8, "depth": 1, + "gas": 2052006, + "gasCost": 8, + "op": "JUMP", + "pc": 2403, "stack": [ "0xa0712d68", "0x1cd", @@ -11194,13 +11194,13 @@ "0x3e9", "0xbaf" ] - }, - { - "pc": 2991, - "op": "JUMPDEST", - "gas": 2048510, - "gasCost": 1, + }, + { "depth": 1, + "gas": 2051998, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2991, "stack": [ "0xa0712d68", "0x1cd", @@ -11220,11 +11220,11 @@ ] }, { - "pc": 2992, - "op": "SWAP3", - "gas": 2048509, - "gasCost": 3, "depth": 1, + "gas": 2051997, + "gasCost": 3, + "op": "SWAP3", + "pc": 2992, "stack": [ "0xa0712d68", "0x1cd", @@ -11244,11 +11244,11 @@ ] }, { - "pc": 2993, - "op": "POP", - "gas": 2048506, - "gasCost": 2, "depth": 1, + "gas": 2051994, + "gasCost": 2, + "op": "POP", + "pc": 2993, "stack": [ "0xa0712d68", "0x1cd", @@ -11268,11 +11268,11 @@ ] }, { - "pc": 2994, - "op": "DUP3", - "gas": 2048504, - "gasCost": 3, "depth": 1, + "gas": 2051992, + "gasCost": 3, + "op": "DUP3", + "pc": 2994, "stack": [ "0xa0712d68", "0x1cd", @@ -11291,11 +11291,11 @@ ] }, { - "pc": 2995, - "op": "DUP3", - "gas": 2048501, - "gasCost": 3, "depth": 1, + "gas": 2051989, + "gasCost": 3, + "op": "DUP3", + "pc": 2995, "stack": [ "0xa0712d68", "0x1cd", @@ -11315,11 +11315,11 @@ ] }, { - "pc": 2996, - "op": "ADD", - "gas": 2048498, - "gasCost": 3, "depth": 1, + "gas": 2051986, + "gasCost": 3, + "op": "ADD", + "pc": 2996, "stack": [ "0xa0712d68", "0x1cd", @@ -11340,11 +11340,11 @@ ] }, { - "pc": 2997, - "op": "SWAP1", - "gas": 2048495, - "gasCost": 3, "depth": 1, + "gas": 2051983, + "gasCost": 3, + "op": "SWAP1", + "pc": 2997, "stack": [ "0xa0712d68", "0x1cd", @@ -11364,11 +11364,11 @@ ] }, { - "pc": 2998, - "op": "POP", - "gas": 2048492, - "gasCost": 2, "depth": 1, + "gas": 2051980, + "gasCost": 2, + "op": "POP", + "pc": 2998, "stack": [ "0xa0712d68", "0x1cd", @@ -11388,11 +11388,11 @@ ] }, { - "pc": 2999, - "op": "DUP1", - "gas": 2048490, - "gasCost": 3, "depth": 1, + "gas": 2051978, + "gasCost": 3, + "op": "DUP1", + "pc": 2999, "stack": [ "0xa0712d68", "0x1cd", @@ -11411,11 +11411,11 @@ ] }, { - "pc": 3000, - "op": "DUP3", - "gas": 2048487, - "gasCost": 3, "depth": 1, + "gas": 2051975, + "gasCost": 3, + "op": "DUP3", + "pc": 3000, "stack": [ "0xa0712d68", "0x1cd", @@ -11435,11 +11435,11 @@ ] }, { - "pc": 3001, - "op": "GT", - "gas": 2048484, - "gasCost": 3, "depth": 1, + "gas": 2051972, + "gasCost": 3, + "op": "GT", + "pc": 3001, "stack": [ "0xa0712d68", "0x1cd", @@ -11460,11 +11460,11 @@ ] }, { - "pc": 3002, - "op": "ISZERO", - "gas": 2048481, - "gasCost": 3, "depth": 1, + "gas": 2051969, + "gasCost": 3, + "op": "ISZERO", + "pc": 3002, "stack": [ "0xa0712d68", "0x1cd", @@ -11484,11 +11484,11 @@ ] }, { - "pc": 3003, - "op": "PUSH3", - "gas": 2048478, - "gasCost": 3, "depth": 1, + "gas": 2051966, + "gasCost": 3, + "op": "PUSH3", + "pc": 3003, "stack": [ "0xa0712d68", "0x1cd", @@ -11508,11 +11508,11 @@ ] }, { - "pc": 3007, - "op": "JUMPI", - "gas": 2048475, - "gasCost": 10, "depth": 1, + "gas": 2051963, + "gasCost": 10, + "op": "JUMPI", + "pc": 3007, "stack": [ "0xa0712d68", "0x1cd", @@ -11533,11 +11533,11 @@ ] }, { - "pc": 3018, - "op": "JUMPDEST", - "gas": 2048465, - "gasCost": 1, "depth": 1, + "gas": 2051953, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 3018, "stack": [ "0xa0712d68", "0x1cd", @@ -11556,11 +11556,11 @@ ] }, { - "pc": 3019, - "op": "SWAP3", - "gas": 2048464, - "gasCost": 3, "depth": 1, + "gas": 2051952, + "gasCost": 3, + "op": "SWAP3", + "pc": 3019, "stack": [ "0xa0712d68", "0x1cd", @@ -11579,11 +11579,11 @@ ] }, { - "pc": 3020, - "op": "SWAP2", - "gas": 2048461, - "gasCost": 3, "depth": 1, + "gas": 2051949, + "gasCost": 3, + "op": "SWAP2", + "pc": 3020, "stack": [ "0xa0712d68", "0x1cd", @@ -11602,11 +11602,11 @@ ] }, { - "pc": 3021, - "op": "POP", - "gas": 2048458, - "gasCost": 2, "depth": 1, + "gas": 2051946, + "gasCost": 2, + "op": "POP", + "pc": 3021, "stack": [ "0xa0712d68", "0x1cd", @@ -11625,11 +11625,11 @@ ] }, { - "pc": 3022, - "op": "POP", - "gas": 2048456, - "gasCost": 2, "depth": 1, + "gas": 2051944, + "gasCost": 2, + "op": "POP", + "pc": 3022, "stack": [ "0xa0712d68", "0x1cd", @@ -11647,11 +11647,11 @@ ] }, { - "pc": 3023, - "op": "JUMP", - "gas": 2048454, - "gasCost": 8, "depth": 1, + "gas": 2051942, + "gasCost": 8, + "op": "JUMP", + "pc": 3023, "stack": [ "0xa0712d68", "0x1cd", @@ -11668,11 +11668,11 @@ ] }, { - "pc": 742, - "op": "JUMPDEST", - "gas": 2048446, - "gasCost": 1, "depth": 1, + "gas": 2051934, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 742, "stack": [ "0xa0712d68", "0x1cd", @@ -11688,11 +11688,11 @@ ] }, { - "pc": 743, - "op": "SWAP3", - "gas": 2048445, - "gasCost": 3, "depth": 1, + "gas": 2051933, + "gasCost": 3, + "op": "SWAP3", + "pc": 743, "stack": [ "0xa0712d68", "0x1cd", @@ -11708,11 +11708,11 @@ ] }, { - "pc": 744, - "op": "POP", - "gas": 2048442, - "gasCost": 2, "depth": 1, + "gas": 2051930, + "gasCost": 2, + "op": "POP", + "pc": 744, "stack": [ "0xa0712d68", "0x1cd", @@ -11728,11 +11728,11 @@ ] }, { - "pc": 745, - "op": "POP", - "gas": 2048440, - "gasCost": 2, "depth": 1, + "gas": 2051928, + "gasCost": 2, + "op": "POP", + "pc": 745, "stack": [ "0xa0712d68", "0x1cd", @@ -11747,11 +11747,11 @@ ] }, { - "pc": 746, - "op": "DUP2", - "gas": 2048438, - "gasCost": 3, "depth": 1, + "gas": 2051926, + "gasCost": 3, + "op": "DUP2", + "pc": 746, "stack": [ "0xa0712d68", "0x1cd", @@ -11765,11 +11765,11 @@ ] }, { - "pc": 747, - "op": "SWAP1", - "gas": 2048435, - "gasCost": 3, "depth": 1, + "gas": 2051923, + "gasCost": 3, + "op": "SWAP1", + "pc": 747, "stack": [ "0xa0712d68", "0x1cd", @@ -11784,11 +11784,11 @@ ] }, { - "pc": 748, - "op": "SSTORE", - "gas": 2048432, - "gasCost": 20000, "depth": 1, + "gas": 2051920, + "gasCost": 20000, + "op": "SSTORE", + "pc": 748, "stack": [ "0xa0712d68", "0x1cd", @@ -11807,11 +11807,11 @@ } }, { - "pc": 749, - "op": "POP", - "gas": 2028432, - "gasCost": 2, "depth": 1, + "gas": 2031920, + "gasCost": 2, + "op": "POP", + "pc": 749, "stack": [ "0xa0712d68", "0x1cd", @@ -11824,11 +11824,11 @@ ] }, { - "pc": 750, - "op": "PUSH1", - "gas": 2028430, - "gasCost": 3, "depth": 1, + "gas": 2031918, + "gasCost": 3, + "op": "PUSH1", + "pc": 750, "stack": [ "0xa0712d68", "0x1cd", @@ -11840,11 +11840,11 @@ ] }, { - "pc": 752, - "op": "SWAP1", - "gas": 2028427, - "gasCost": 3, "depth": 1, + "gas": 2031915, + "gasCost": 3, + "op": "SWAP1", + "pc": 752, "stack": [ "0xa0712d68", "0x1cd", @@ -11857,11 +11857,11 @@ ] }, { - "pc": 753, - "op": "POP", - "gas": 2028424, - "gasCost": 2, "depth": 1, + "gas": 2031912, + "gasCost": 2, + "op": "POP", + "pc": 753, "stack": [ "0xa0712d68", "0x1cd", @@ -11874,11 +11874,11 @@ ] }, { - "pc": 754, - "op": "SWAP2", - "gas": 2028422, - "gasCost": 3, "depth": 1, + "gas": 2031910, + "gasCost": 3, + "op": "SWAP2", + "pc": 754, "stack": [ "0xa0712d68", "0x1cd", @@ -11890,11 +11890,11 @@ ] }, { - "pc": 755, - "op": "SWAP1", - "gas": 2028419, - "gasCost": 3, "depth": 1, + "gas": 2031907, + "gasCost": 3, + "op": "SWAP1", + "pc": 755, "stack": [ "0xa0712d68", "0x1cd", @@ -11906,11 +11906,11 @@ ] }, { - "pc": 756, - "op": "POP", - "gas": 2028416, - "gasCost": 2, "depth": 1, + "gas": 2031904, + "gasCost": 2, + "op": "POP", + "pc": 756, "stack": [ "0xa0712d68", "0x1cd", @@ -11922,11 +11922,11 @@ ] }, { - "pc": 757, - "op": "JUMP", - "gas": 2028414, - "gasCost": 8, "depth": 1, + "gas": 2031902, + "gasCost": 8, + "op": "JUMP", + "pc": 757, "stack": [ "0xa0712d68", "0x1cd", @@ -11937,11 +11937,11 @@ ] }, { - "pc": 2166, - "op": "JUMPDEST", - "gas": 2028406, - "gasCost": 1, "depth": 1, + "gas": 2031894, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2166, "stack": [ "0xa0712d68", "0x1cd", @@ -11951,11 +11951,11 @@ ] }, { - "pc": 2167, - "op": "POP", - "gas": 2028405, - "gasCost": 2, "depth": 1, + "gas": 2031893, + "gasCost": 2, + "op": "POP", + "pc": 2167, "stack": [ "0xa0712d68", "0x1cd", @@ -11965,11 +11965,11 @@ ] }, { - "pc": 2168, - "op": "PUSH3", - "gas": 2028403, - "gasCost": 3, "depth": 1, + "gas": 2031891, + "gasCost": 3, + "op": "PUSH3", + "pc": 2168, "stack": [ "0xa0712d68", "0x1cd", @@ -11978,11 +11978,11 @@ ] }, { - "pc": 2172, - "op": "PUSH3", - "gas": 2028400, - "gasCost": 3, "depth": 1, + "gas": 2031888, + "gasCost": 3, + "op": "PUSH3", + "pc": 2172, "stack": [ "0xa0712d68", "0x1cd", @@ -11992,11 +11992,11 @@ ] }, { - "pc": 2176, - "op": "JUMP", - "gas": 2028397, - "gasCost": 8, "depth": 1, + "gas": 2031885, + "gasCost": 8, + "op": "JUMP", + "pc": 2176, "stack": [ "0xa0712d68", "0x1cd", @@ -12007,11 +12007,11 @@ ] }, { - "pc": 561, - "op": "JUMPDEST", - "gas": 2028389, - "gasCost": 1, "depth": 1, + "gas": 2031877, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 561, "stack": [ "0xa0712d68", "0x1cd", @@ -12021,11 +12021,11 @@ ] }, { - "pc": 562, - "op": "PUSH1", - "gas": 2028388, - "gasCost": 3, "depth": 1, + "gas": 2031876, + "gasCost": 3, + "op": "PUSH1", + "pc": 562, "stack": [ "0xa0712d68", "0x1cd", @@ -12035,11 +12035,11 @@ ] }, { - "pc": 564, - "op": "DUP1", - "gas": 2028385, - "gasCost": 3, "depth": 1, + "gas": 2031873, + "gasCost": 3, + "op": "DUP1", + "pc": 564, "stack": [ "0xa0712d68", "0x1cd", @@ -12050,11 +12050,11 @@ ] }, { - "pc": 565, - "op": "PUSH1", - "gas": 2028382, - "gasCost": 3, "depth": 1, + "gas": 2031870, + "gasCost": 3, + "op": "PUSH1", + "pc": 565, "stack": [ "0xa0712d68", "0x1cd", @@ -12066,11 +12066,11 @@ ] }, { - "pc": 567, - "op": "MLOAD", - "gas": 2028379, - "gasCost": 3, "depth": 1, + "gas": 2031867, + "gasCost": 3, + "op": "MLOAD", + "pc": 567, "stack": [ "0xa0712d68", "0x1cd", @@ -12083,11 +12083,11 @@ ] }, { - "pc": 568, - "op": "DUP1", - "gas": 2028376, - "gasCost": 3, "depth": 1, + "gas": 2031864, + "gasCost": 3, + "op": "DUP1", + "pc": 568, "stack": [ "0xa0712d68", "0x1cd", @@ -12100,11 +12100,11 @@ ] }, { - "pc": 569, - "op": "PUSH1", - "gas": 2028373, - "gasCost": 3, "depth": 1, + "gas": 2031861, + "gasCost": 3, + "op": "PUSH1", + "pc": 569, "stack": [ "0xa0712d68", "0x1cd", @@ -12118,11 +12118,11 @@ ] }, { - "pc": 571, - "op": "ADD", - "gas": 2028370, - "gasCost": 3, "depth": 1, + "gas": 2031858, + "gasCost": 3, + "op": "ADD", + "pc": 571, "stack": [ "0xa0712d68", "0x1cd", @@ -12137,11 +12137,11 @@ ] }, { - "pc": 572, - "op": "PUSH1", - "gas": 2028367, - "gasCost": 3, "depth": 1, + "gas": 2031855, + "gasCost": 3, + "op": "PUSH1", + "pc": 572, "stack": [ "0xa0712d68", "0x1cd", @@ -12155,11 +12155,11 @@ ] }, { - "pc": 574, - "op": "MSTORE", - "gas": 2028364, - "gasCost": 3, "depth": 1, + "gas": 2031852, + "gasCost": 3, + "op": "MSTORE", + "pc": 574, "stack": [ "0xa0712d68", "0x1cd", @@ -12174,11 +12174,11 @@ ] }, { - "pc": 575, - "op": "DUP1", - "gas": 2028361, - "gasCost": 3, "depth": 1, + "gas": 2031849, + "gasCost": 3, + "op": "DUP1", + "pc": 575, "stack": [ "0xa0712d68", "0x1cd", @@ -12191,11 +12191,11 @@ ] }, { - "pc": 576, - "op": "PUSH1", - "gas": 2028358, - "gasCost": 3, "depth": 1, + "gas": 2031846, + "gasCost": 3, + "op": "PUSH1", + "pc": 576, "stack": [ "0xa0712d68", "0x1cd", @@ -12209,11 +12209,11 @@ ] }, { - "pc": 578, - "op": "DUP2", - "gas": 2028355, - "gasCost": 3, "depth": 1, + "gas": 2031843, + "gasCost": 3, + "op": "DUP2", + "pc": 578, "stack": [ "0xa0712d68", "0x1cd", @@ -12228,11 +12228,11 @@ ] }, { - "pc": 579, - "op": "MSTORE", - "gas": 2028352, - "gasCost": 3, "depth": 1, + "gas": 2031840, + "gasCost": 3, + "op": "MSTORE", + "pc": 579, "stack": [ "0xa0712d68", "0x1cd", @@ -12248,11 +12248,11 @@ ] }, { - "pc": 580, - "op": "PUSH1", - "gas": 2028349, - "gasCost": 3, "depth": 1, + "gas": 2031837, + "gasCost": 3, + "op": "PUSH1", + "pc": 580, "stack": [ "0xa0712d68", "0x1cd", @@ -12266,11 +12266,11 @@ ] }, { - "pc": 582, - "op": "ADD", - "gas": 2028346, - "gasCost": 3, "depth": 1, + "gas": 2031834, + "gasCost": 3, + "op": "ADD", + "pc": 582, "stack": [ "0xa0712d68", "0x1cd", @@ -12285,11 +12285,11 @@ ] }, { - "pc": 583, - "op": "PUSH32", - "gas": 2028343, - "gasCost": 3, "depth": 1, + "gas": 2031831, + "gasCost": 3, + "op": "PUSH32", + "pc": 583, "stack": [ "0xa0712d68", "0x1cd", @@ -12303,11 +12303,11 @@ ] }, { - "pc": 616, - "op": "DUP2", - "gas": 2028340, - "gasCost": 3, "depth": 1, + "gas": 2031828, + "gasCost": 3, + "op": "DUP2", + "pc": 616, "stack": [ "0xa0712d68", "0x1cd", @@ -12322,11 +12322,11 @@ ] }, { - "pc": 617, - "op": "MSTORE", - "gas": 2028337, - "gasCost": 3, "depth": 1, + "gas": 2031825, + "gasCost": 3, + "op": "MSTORE", + "pc": 617, "stack": [ "0xa0712d68", "0x1cd", @@ -12342,11 +12342,11 @@ ] }, { - "pc": 618, - "op": "POP", - "gas": 2028334, - "gasCost": 2, "depth": 1, + "gas": 2031822, + "gasCost": 2, + "op": "POP", + "pc": 618, "stack": [ "0xa0712d68", "0x1cd", @@ -12360,11 +12360,11 @@ ] }, { - "pc": 619, - "op": "SWAP1", - "gas": 2028332, - "gasCost": 3, "depth": 1, + "gas": 2031820, + "gasCost": 3, + "op": "SWAP1", + "pc": 619, "stack": [ "0xa0712d68", "0x1cd", @@ -12377,11 +12377,11 @@ ] }, { - "pc": 620, - "op": "POP", - "gas": 2028329, - "gasCost": 2, "depth": 1, + "gas": 2031817, + "gasCost": 2, + "op": "POP", + "pc": 620, "stack": [ "0xa0712d68", "0x1cd", @@ -12394,11 +12394,11 @@ ] }, { - "pc": 621, - "op": "PUSH1", - "gas": 2028327, - "gasCost": 3, "depth": 1, + "gas": 2031815, + "gasCost": 3, + "op": "PUSH1", + "pc": 621, "stack": [ "0xa0712d68", "0x1cd", @@ -12410,11 +12410,11 @@ ] }, { - "pc": 623, - "op": "DUP2", - "gas": 2028324, - "gasCost": 3, "depth": 1, + "gas": 2031812, + "gasCost": 3, + "op": "DUP2", + "pc": 623, "stack": [ "0xa0712d68", "0x1cd", @@ -12427,11 +12427,11 @@ ] }, { - "pc": 624, - "op": "DUP1", - "gas": 2028321, - "gasCost": 3, "depth": 1, + "gas": 2031809, + "gasCost": 3, + "op": "DUP1", + "pc": 624, "stack": [ "0xa0712d68", "0x1cd", @@ -12445,11 +12445,11 @@ ] }, { - "pc": 625, - "op": "MLOAD", - "gas": 2028318, - "gasCost": 3, "depth": 1, + "gas": 2031806, + "gasCost": 3, + "op": "MLOAD", + "pc": 625, "stack": [ "0xa0712d68", "0x1cd", @@ -12464,11 +12464,11 @@ ] }, { - "pc": 626, - "op": "SWAP1", - "gas": 2028315, - "gasCost": 3, "depth": 1, + "gas": 2031803, + "gasCost": 3, + "op": "SWAP1", + "pc": 626, "stack": [ "0xa0712d68", "0x1cd", @@ -12483,11 +12483,11 @@ ] }, { - "pc": 627, - "op": "PUSH1", - "gas": 2028312, - "gasCost": 3, "depth": 1, + "gas": 2031800, + "gasCost": 3, + "op": "PUSH1", + "pc": 627, "stack": [ "0xa0712d68", "0x1cd", @@ -12502,11 +12502,11 @@ ] }, { - "pc": 629, - "op": "ADD", - "gas": 2028309, - "gasCost": 3, "depth": 1, + "gas": 2031797, + "gasCost": 3, + "op": "ADD", + "pc": 629, "stack": [ "0xa0712d68", "0x1cd", @@ -12522,11 +12522,11 @@ ] }, { - "pc": 630, - "op": "KECCAK256", - "gas": 2028306, - "gasCost": 36, "depth": 1, + "gas": 2031794, + "gasCost": 36, + "op": "KECCAK256", + "pc": 630, "stack": [ "0xa0712d68", "0x1cd", @@ -12541,11 +12541,11 @@ ] }, { - "pc": 631, - "op": "SWAP1", - "gas": 2028270, - "gasCost": 3, "depth": 1, + "gas": 2031758, + "gasCost": 3, + "op": "SWAP1", + "pc": 631, "stack": [ "0xa0712d68", "0x1cd", @@ -12559,11 +12559,11 @@ ] }, { - "pc": 632, - "op": "POP", - "gas": 2028267, - "gasCost": 2, "depth": 1, + "gas": 2031755, + "gasCost": 2, + "op": "POP", + "pc": 632, "stack": [ "0xa0712d68", "0x1cd", @@ -12577,11 +12577,11 @@ ] }, { - "pc": 633, - "op": "DUP1", - "gas": 2028265, - "gasCost": 3, "depth": 1, + "gas": 2031753, + "gasCost": 3, + "op": "DUP1", + "pc": 633, "stack": [ "0xa0712d68", "0x1cd", @@ -12594,11 +12594,11 @@ ] }, { - "pc": 634, - "op": "SWAP3", - "gas": 2028262, - "gasCost": 3, "depth": 1, + "gas": 2031750, + "gasCost": 3, + "op": "SWAP3", + "pc": 634, "stack": [ "0xa0712d68", "0x1cd", @@ -12612,11 +12612,11 @@ ] }, { - "pc": 635, - "op": "POP", - "gas": 2028259, - "gasCost": 2, "depth": 1, + "gas": 2031747, + "gasCost": 2, + "op": "POP", + "pc": 635, "stack": [ "0xa0712d68", "0x1cd", @@ -12630,11 +12630,11 @@ ] }, { - "pc": 636, - "op": "POP", - "gas": 2028257, - "gasCost": 2, "depth": 1, + "gas": 2031745, + "gasCost": 2, + "op": "POP", + "pc": 636, "stack": [ "0xa0712d68", "0x1cd", @@ -12647,11 +12647,11 @@ ] }, { - "pc": 637, - "op": "POP", - "gas": 2028255, - "gasCost": 2, "depth": 1, + "gas": 2031743, + "gasCost": 2, + "op": "POP", + "pc": 637, "stack": [ "0xa0712d68", "0x1cd", @@ -12663,11 +12663,11 @@ ] }, { - "pc": 638, - "op": "SWAP1", - "gas": 2028253, - "gasCost": 3, "depth": 1, + "gas": 2031741, + "gasCost": 3, + "op": "SWAP1", + "pc": 638, "stack": [ "0xa0712d68", "0x1cd", @@ -12678,11 +12678,11 @@ ] }, { - "pc": 639, - "op": "JUMP", - "gas": 2028250, - "gasCost": 8, "depth": 1, + "gas": 2031738, + "gasCost": 8, + "op": "JUMP", + "pc": 639, "stack": [ "0xa0712d68", "0x1cd", @@ -12693,11 +12693,11 @@ ] }, { - "pc": 2177, - "op": "JUMPDEST", - "gas": 2028242, - "gasCost": 1, "depth": 1, + "gas": 2031730, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2177, "stack": [ "0xa0712d68", "0x1cd", @@ -12707,11 +12707,11 @@ ] }, { - "pc": 2178, - "op": "POP", - "gas": 2028241, - "gasCost": 2, "depth": 1, + "gas": 2031729, + "gasCost": 2, + "op": "POP", + "pc": 2178, "stack": [ "0xa0712d68", "0x1cd", @@ -12721,11 +12721,11 @@ ] }, { - "pc": 2179, - "op": "PUSH1", - "gas": 2028239, - "gasCost": 3, "depth": 1, + "gas": 2031727, + "gasCost": 3, + "op": "PUSH1", + "pc": 2179, "stack": [ "0xa0712d68", "0x1cd", @@ -12734,11 +12734,11 @@ ] }, { - "pc": 2181, - "op": "DUP1", - "gas": 2028236, - "gasCost": 3, "depth": 1, + "gas": 2031724, + "gasCost": 3, + "op": "DUP1", + "pc": 2181, "stack": [ "0xa0712d68", "0x1cd", @@ -12748,11 +12748,11 @@ ] }, { - "pc": 2182, - "op": "SLOAD", - "gas": 2028233, - "gasCost": 2100, "depth": 1, + "gas": 2031721, + "gasCost": 200, + "op": "SLOAD", + "pc": 2182, "stack": [ "0xa0712d68", "0x1cd", @@ -12768,11 +12768,11 @@ } }, { - "pc": 2183, - "op": "SWAP1", - "gas": 2026133, - "gasCost": 3, "depth": 1, + "gas": 2031521, + "gasCost": 3, + "op": "SWAP1", + "pc": 2183, "stack": [ "0xa0712d68", "0x1cd", @@ -12781,13 +12781,13 @@ "0x0", "0x0" ] - }, - { - "pc": 2184, - "op": "PUSH2", - "gas": 2026130, - "gasCost": 3, + }, + { "depth": 1, + "gas": 2031518, + "gasCost": 3, + "op": "PUSH2", + "pc": 2184, "stack": [ "0xa0712d68", "0x1cd", @@ -12798,11 +12798,11 @@ ] }, { - "pc": 2187, - "op": "EXP", - "gas": 2026127, - "gasCost": 10, "depth": 1, + "gas": 2031515, + "gasCost": 10, + "op": "EXP", + "pc": 2187, "stack": [ "0xa0712d68", "0x1cd", @@ -12814,11 +12814,11 @@ ] }, { - "pc": 2188, - "op": "SWAP1", - "gas": 2026117, - "gasCost": 3, "depth": 1, + "gas": 2031505, + "gasCost": 3, + "op": "SWAP1", + "pc": 2188, "stack": [ "0xa0712d68", "0x1cd", @@ -12829,11 +12829,11 @@ ] }, { - "pc": 2189, - "op": "DIV", - "gas": 2026114, - "gasCost": 5, "depth": 1, + "gas": 2031502, + "gasCost": 5, + "op": "DIV", + "pc": 2189, "stack": [ "0xa0712d68", "0x1cd", @@ -12844,11 +12844,11 @@ ] }, { - "pc": 2190, - "op": "PUSH20", - "gas": 2026109, - "gasCost": 3, "depth": 1, + "gas": 2031497, + "gasCost": 3, + "op": "PUSH20", + "pc": 2190, "stack": [ "0xa0712d68", "0x1cd", @@ -12858,11 +12858,11 @@ ] }, { - "pc": 2211, - "op": "AND", - "gas": 2026106, - "gasCost": 3, "depth": 1, + "gas": 2031494, + "gasCost": 3, + "op": "AND", + "pc": 2211, "stack": [ "0xa0712d68", "0x1cd", @@ -12873,11 +12873,11 @@ ] }, { - "pc": 2212, - "op": "PUSH20", - "gas": 2026103, - "gasCost": 3, "depth": 1, + "gas": 2031491, + "gasCost": 3, + "op": "PUSH20", + "pc": 2212, "stack": [ "0xa0712d68", "0x1cd", @@ -12887,11 +12887,11 @@ ] }, { - "pc": 2233, - "op": "AND", - "gas": 2026100, - "gasCost": 3, "depth": 1, + "gas": 2031488, + "gasCost": 3, + "op": "AND", + "pc": 2233, "stack": [ "0xa0712d68", "0x1cd", @@ -12902,11 +12902,11 @@ ] }, { - "pc": 2234, - "op": "PUSH4", - "gas": 2026097, - "gasCost": 3, "depth": 1, + "gas": 2031485, + "gasCost": 3, + "op": "PUSH4", + "pc": 2234, "stack": [ "0xa0712d68", "0x1cd", @@ -12916,11 +12916,11 @@ ] }, { - "pc": 2239, - "op": "DUP4", - "gas": 2026094, - "gasCost": 3, "depth": 1, + "gas": 2031482, + "gasCost": 3, + "op": "DUP4", + "pc": 2239, "stack": [ "0xa0712d68", "0x1cd", @@ -12931,11 +12931,11 @@ ] }, { - "pc": 2240, - "op": "PUSH1", - "gas": 2026091, - "gasCost": 3, "depth": 1, + "gas": 2031479, + "gasCost": 3, + "op": "PUSH1", + "pc": 2240, "stack": [ "0xa0712d68", "0x1cd", @@ -12947,11 +12947,11 @@ ] }, { - "pc": 2242, - "op": "MLOAD", - "gas": 2026088, - "gasCost": 3, "depth": 1, + "gas": 2031476, + "gasCost": 3, + "op": "MLOAD", + "pc": 2242, "stack": [ "0xa0712d68", "0x1cd", @@ -12964,11 +12964,11 @@ ] }, { - "pc": 2243, - "op": "DUP3", - "gas": 2026085, - "gasCost": 3, "depth": 1, + "gas": 2031473, + "gasCost": 3, + "op": "DUP3", + "pc": 2243, "stack": [ "0xa0712d68", "0x1cd", @@ -12981,11 +12981,11 @@ ] }, { - "pc": 2244, - "op": "PUSH4", - "gas": 2026082, - "gasCost": 3, "depth": 1, + "gas": 2031470, + "gasCost": 3, + "op": "PUSH4", + "pc": 2244, "stack": [ "0xa0712d68", "0x1cd", @@ -12999,11 +12999,11 @@ ] }, { - "pc": 2249, - "op": "AND", - "gas": 2026079, - "gasCost": 3, "depth": 1, + "gas": 2031467, + "gasCost": 3, + "op": "AND", + "pc": 2249, "stack": [ "0xa0712d68", "0x1cd", @@ -13018,11 +13018,11 @@ ] }, { - "pc": 2250, - "op": "PUSH1", - "gas": 2026076, - "gasCost": 3, "depth": 1, + "gas": 2031464, + "gasCost": 3, + "op": "PUSH1", + "pc": 2250, "stack": [ "0xa0712d68", "0x1cd", @@ -13036,11 +13036,11 @@ ] }, { - "pc": 2252, - "op": "SHL", - "gas": 2026073, - "gasCost": 3, "depth": 1, + "gas": 2031461, + "gasCost": 3, + "op": "SHL", + "pc": 2252, "stack": [ "0xa0712d68", "0x1cd", @@ -13055,11 +13055,11 @@ ] }, { - "pc": 2253, - "op": "DUP2", - "gas": 2026070, - "gasCost": 3, "depth": 1, + "gas": 2031458, + "gasCost": 3, + "op": "DUP2", + "pc": 2253, "stack": [ "0xa0712d68", "0x1cd", @@ -13073,11 +13073,11 @@ ] }, { - "pc": 2254, - "op": "MSTORE", - "gas": 2026067, - "gasCost": 3, "depth": 1, + "gas": 2031455, + "gasCost": 3, + "op": "MSTORE", + "pc": 2254, "stack": [ "0xa0712d68", "0x1cd", @@ -13092,11 +13092,11 @@ ] }, { - "pc": 2255, - "op": "PUSH1", - "gas": 2026064, - "gasCost": 3, "depth": 1, + "gas": 2031452, + "gasCost": 3, + "op": "PUSH1", + "pc": 2255, "stack": [ "0xa0712d68", "0x1cd", @@ -13109,11 +13109,11 @@ ] }, { - "pc": 2257, - "op": "ADD", - "gas": 2026061, - "gasCost": 3, "depth": 1, + "gas": 2031449, + "gasCost": 3, + "op": "ADD", + "pc": 2257, "stack": [ "0xa0712d68", "0x1cd", @@ -13127,11 +13127,11 @@ ] }, { - "pc": 2258, - "op": "PUSH3", - "gas": 2026058, - "gasCost": 3, "depth": 1, + "gas": 2031446, + "gasCost": 3, + "op": "PUSH3", + "pc": 2258, "stack": [ "0xa0712d68", "0x1cd", @@ -13144,11 +13144,11 @@ ] }, { - "pc": 2262, - "op": "SWAP2", - "gas": 2026055, - "gasCost": 3, "depth": 1, + "gas": 2031443, + "gasCost": 3, + "op": "SWAP2", + "pc": 2262, "stack": [ "0xa0712d68", "0x1cd", @@ -13162,11 +13162,11 @@ ] }, { - "pc": 2263, - "op": "SWAP1", - "gas": 2026052, - "gasCost": 3, "depth": 1, + "gas": 2031440, + "gasCost": 3, + "op": "SWAP1", + "pc": 2263, "stack": [ "0xa0712d68", "0x1cd", @@ -13180,11 +13180,11 @@ ] }, { - "pc": 2264, - "op": "PUSH3", - "gas": 2026049, - "gasCost": 3, "depth": 1, + "gas": 2031437, + "gasCost": 3, + "op": "PUSH3", + "pc": 2264, "stack": [ "0xa0712d68", "0x1cd", @@ -13198,11 +13198,11 @@ ] }, { - "pc": 2268, - "op": "JUMP", - "gas": 2026046, - "gasCost": 8, "depth": 1, + "gas": 2031434, + "gasCost": 8, + "op": "JUMP", + "pc": 2268, "stack": [ "0xa0712d68", "0x1cd", @@ -13217,11 +13217,11 @@ ] }, { - "pc": 2421, - "op": "JUMPDEST", - "gas": 2026038, - "gasCost": 1, "depth": 1, + "gas": 2031426, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2421, "stack": [ "0xa0712d68", "0x1cd", @@ -13235,11 +13235,11 @@ ] }, { - "pc": 2422, - "op": "PUSH1", - "gas": 2026037, - "gasCost": 3, "depth": 1, + "gas": 2031425, + "gasCost": 3, + "op": "PUSH1", + "pc": 2422, "stack": [ "0xa0712d68", "0x1cd", @@ -13253,11 +13253,11 @@ ] }, { - "pc": 2424, - "op": "PUSH1", - "gas": 2026034, - "gasCost": 3, "depth": 1, + "gas": 2031422, + "gasCost": 3, + "op": "PUSH1", + "pc": 2424, "stack": [ "0xa0712d68", "0x1cd", @@ -13272,11 +13272,11 @@ ] }, { - "pc": 2426, - "op": "DUP3", - "gas": 2026031, - "gasCost": 3, "depth": 1, + "gas": 2031419, + "gasCost": 3, + "op": "DUP3", + "pc": 2426, "stack": [ "0xa0712d68", "0x1cd", @@ -13292,11 +13292,11 @@ ] }, { - "pc": 2427, - "op": "ADD", - "gas": 2026028, - "gasCost": 3, "depth": 1, + "gas": 2031416, + "gasCost": 3, + "op": "ADD", + "pc": 2427, "stack": [ "0xa0712d68", "0x1cd", @@ -13313,11 +13313,11 @@ ] }, { - "pc": 2428, - "op": "SWAP1", - "gas": 2026025, - "gasCost": 3, "depth": 1, + "gas": 2031413, + "gasCost": 3, + "op": "SWAP1", + "pc": 2428, "stack": [ "0xa0712d68", "0x1cd", @@ -13333,11 +13333,11 @@ ] }, { - "pc": 2429, - "op": "POP", - "gas": 2026022, - "gasCost": 2, "depth": 1, + "gas": 2031410, + "gasCost": 2, + "op": "POP", + "pc": 2429, "stack": [ "0xa0712d68", "0x1cd", @@ -13353,11 +13353,11 @@ ] }, { - "pc": 2430, - "op": "PUSH3", - "gas": 2026020, - "gasCost": 3, "depth": 1, + "gas": 2031408, + "gasCost": 3, + "op": "PUSH3", + "pc": 2430, "stack": [ "0xa0712d68", "0x1cd", @@ -13372,11 +13372,11 @@ ] }, { - "pc": 2434, - "op": "PUSH1", - "gas": 2026017, - "gasCost": 3, "depth": 1, + "gas": 2031405, + "gasCost": 3, + "op": "PUSH1", + "pc": 2434, "stack": [ "0xa0712d68", "0x1cd", @@ -13392,11 +13392,11 @@ ] }, { - "pc": 2436, - "op": "DUP4", - "gas": 2026014, - "gasCost": 3, "depth": 1, + "gas": 2031402, + "gasCost": 3, + "op": "DUP4", + "pc": 2436, "stack": [ "0xa0712d68", "0x1cd", @@ -13413,11 +13413,11 @@ ] }, { - "pc": 2437, - "op": "ADD", - "gas": 2026011, - "gasCost": 3, "depth": 1, + "gas": 2031399, + "gasCost": 3, + "op": "ADD", + "pc": 2437, "stack": [ "0xa0712d68", "0x1cd", @@ -13435,11 +13435,11 @@ ] }, { - "pc": 2438, - "op": "DUP5", - "gas": 2026008, - "gasCost": 3, "depth": 1, + "gas": 2031396, + "gasCost": 3, + "op": "DUP5", + "pc": 2438, "stack": [ "0xa0712d68", "0x1cd", @@ -13456,11 +13456,11 @@ ] }, { - "pc": 2439, - "op": "PUSH3", - "gas": 2026005, - "gasCost": 3, "depth": 1, + "gas": 2031393, + "gasCost": 3, + "op": "PUSH3", + "pc": 2439, "stack": [ "0xa0712d68", "0x1cd", @@ -13478,11 +13478,11 @@ ] }, { - "pc": 2443, - "op": "JUMP", - "gas": 2026002, - "gasCost": 8, "depth": 1, + "gas": 2031390, + "gasCost": 8, + "op": "JUMP", + "pc": 2443, "stack": [ "0xa0712d68", "0x1cd", @@ -13501,11 +13501,11 @@ ] }, { - "pc": 2404, - "op": "JUMPDEST", - "gas": 2025994, - "gasCost": 1, "depth": 1, + "gas": 2031382, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2404, "stack": [ "0xa0712d68", "0x1cd", @@ -13523,11 +13523,11 @@ ] }, { - "pc": 2405, - "op": "PUSH3", - "gas": 2025993, - "gasCost": 3, "depth": 1, + "gas": 2031381, + "gasCost": 3, + "op": "PUSH3", + "pc": 2405, "stack": [ "0xa0712d68", "0x1cd", @@ -13545,11 +13545,11 @@ ] }, { - "pc": 2409, - "op": "DUP2", - "gas": 2025990, - "gasCost": 3, "depth": 1, + "gas": 2031378, + "gasCost": 3, + "op": "DUP2", + "pc": 2409, "stack": [ "0xa0712d68", "0x1cd", @@ -13568,11 +13568,11 @@ ] }, { - "pc": 2410, - "op": "PUSH3", - "gas": 2025987, - "gasCost": 3, "depth": 1, + "gas": 2031375, + "gasCost": 3, + "op": "PUSH3", + "pc": 2410, "stack": [ "0xa0712d68", "0x1cd", @@ -13592,11 +13592,11 @@ ] }, { - "pc": 2414, - "op": "JUMP", - "gas": 2025984, - "gasCost": 8, "depth": 1, + "gas": 2031372, + "gasCost": 8, + "op": "JUMP", + "pc": 2414, "stack": [ "0xa0712d68", "0x1cd", @@ -13617,11 +13617,11 @@ ] }, { - "pc": 2394, - "op": "JUMPDEST", - "gas": 2025976, - "gasCost": 1, "depth": 1, + "gas": 2031364, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2394, "stack": [ "0xa0712d68", "0x1cd", @@ -13641,11 +13641,11 @@ ] }, { - "pc": 2395, - "op": "PUSH1", - "gas": 2025975, - "gasCost": 3, "depth": 1, + "gas": 2031363, + "gasCost": 3, + "op": "PUSH1", + "pc": 2395, "stack": [ "0xa0712d68", "0x1cd", @@ -13665,11 +13665,11 @@ ] }, { - "pc": 2397, - "op": "DUP2", - "gas": 2025972, - "gasCost": 3, "depth": 1, + "gas": 2031360, + "gasCost": 3, + "op": "DUP2", + "pc": 2397, "stack": [ "0xa0712d68", "0x1cd", @@ -13690,11 +13690,11 @@ ] }, { - "pc": 2398, - "op": "SWAP1", - "gas": 2025969, - "gasCost": 3, "depth": 1, + "gas": 2031357, + "gasCost": 3, + "op": "SWAP1", + "pc": 2398, "stack": [ "0xa0712d68", "0x1cd", @@ -13716,11 +13716,11 @@ ] }, { - "pc": 2399, - "op": "POP", - "gas": 2025966, - "gasCost": 2, "depth": 1, + "gas": 2031354, + "gasCost": 2, + "op": "POP", + "pc": 2399, "stack": [ "0xa0712d68", "0x1cd", @@ -13742,11 +13742,11 @@ ] }, { - "pc": 2400, - "op": "SWAP2", - "gas": 2025964, - "gasCost": 3, "depth": 1, + "gas": 2031352, + "gasCost": 3, + "op": "SWAP2", + "pc": 2400, "stack": [ "0xa0712d68", "0x1cd", @@ -13767,11 +13767,11 @@ ] }, { - "pc": 2401, - "op": "SWAP1", - "gas": 2025961, - "gasCost": 3, "depth": 1, + "gas": 2031349, + "gasCost": 3, + "op": "SWAP1", + "pc": 2401, "stack": [ "0xa0712d68", "0x1cd", @@ -13792,11 +13792,11 @@ ] }, { - "pc": 2402, - "op": "POP", - "gas": 2025958, - "gasCost": 2, "depth": 1, + "gas": 2031346, + "gasCost": 2, + "op": "POP", + "pc": 2402, "stack": [ "0xa0712d68", "0x1cd", @@ -13817,11 +13817,11 @@ ] }, { - "pc": 2403, - "op": "JUMP", - "gas": 2025956, - "gasCost": 8, "depth": 1, + "gas": 2031344, + "gasCost": 8, + "op": "JUMP", + "pc": 2403, "stack": [ "0xa0712d68", "0x1cd", @@ -13841,11 +13841,11 @@ ] }, { - "pc": 2415, - "op": "JUMPDEST", - "gas": 2025948, - "gasCost": 1, "depth": 1, + "gas": 2031336, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2415, "stack": [ "0xa0712d68", "0x1cd", @@ -13864,11 +13864,11 @@ ] }, { - "pc": 2416, - "op": "DUP3", - "gas": 2025947, - "gasCost": 3, "depth": 1, + "gas": 2031335, + "gasCost": 3, + "op": "DUP3", + "pc": 2416, "stack": [ "0xa0712d68", "0x1cd", @@ -13887,11 +13887,11 @@ ] }, { - "pc": 2417, - "op": "MSTORE", - "gas": 2025944, - "gasCost": 3, "depth": 1, + "gas": 2031332, + "gasCost": 3, + "op": "MSTORE", + "pc": 2417, "stack": [ "0xa0712d68", "0x1cd", @@ -13911,11 +13911,11 @@ ] }, { - "pc": 2418, - "op": "POP", - "gas": 2025941, - "gasCost": 2, "depth": 1, + "gas": 2031329, + "gasCost": 2, + "op": "POP", + "pc": 2418, "stack": [ "0xa0712d68", "0x1cd", @@ -13933,11 +13933,11 @@ ] }, { - "pc": 2419, - "op": "POP", - "gas": 2025939, - "gasCost": 2, "depth": 1, + "gas": 2031327, + "gasCost": 2, + "op": "POP", + "pc": 2419, "stack": [ "0xa0712d68", "0x1cd", @@ -13954,11 +13954,11 @@ ] }, { - "pc": 2420, - "op": "JUMP", - "gas": 2025937, - "gasCost": 8, "depth": 1, + "gas": 2031325, + "gasCost": 8, + "op": "JUMP", + "pc": 2420, "stack": [ "0xa0712d68", "0x1cd", @@ -13974,11 +13974,11 @@ ] }, { - "pc": 2444, - "op": "JUMPDEST", - "gas": 2025929, - "gasCost": 1, "depth": 1, + "gas": 2031317, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2444, "stack": [ "0xa0712d68", "0x1cd", @@ -13993,11 +13993,11 @@ ] }, { - "pc": 2445, - "op": "SWAP3", - "gas": 2025928, - "gasCost": 3, "depth": 1, + "gas": 2031316, + "gasCost": 3, + "op": "SWAP3", + "pc": 2445, "stack": [ "0xa0712d68", "0x1cd", @@ -14012,11 +14012,11 @@ ] }, { - "pc": 2446, - "op": "SWAP2", - "gas": 2025925, - "gasCost": 3, "depth": 1, + "gas": 2031313, + "gasCost": 3, + "op": "SWAP2", + "pc": 2446, "stack": [ "0xa0712d68", "0x1cd", @@ -14031,11 +14031,11 @@ ] }, { - "pc": 2447, - "op": "POP", - "gas": 2025922, - "gasCost": 2, "depth": 1, + "gas": 2031310, + "gasCost": 2, + "op": "POP", + "pc": 2447, "stack": [ "0xa0712d68", "0x1cd", @@ -14050,11 +14050,11 @@ ] }, { - "pc": 2448, - "op": "POP", - "gas": 2025920, - "gasCost": 2, "depth": 1, + "gas": 2031308, + "gasCost": 2, + "op": "POP", + "pc": 2448, "stack": [ "0xa0712d68", "0x1cd", @@ -14068,11 +14068,11 @@ ] }, { - "pc": 2449, - "op": "JUMP", - "gas": 2025918, - "gasCost": 8, "depth": 1, + "gas": 2031306, + "gasCost": 8, + "op": "JUMP", + "pc": 2449, "stack": [ "0xa0712d68", "0x1cd", @@ -14085,11 +14085,11 @@ ] }, { - "pc": 2269, - "op": "JUMPDEST", - "gas": 2025910, - "gasCost": 1, "depth": 1, + "gas": 2031298, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2269, "stack": [ "0xa0712d68", "0x1cd", @@ -14101,11 +14101,11 @@ ] }, { - "pc": 2270, - "op": "PUSH1", - "gas": 2025909, - "gasCost": 3, "depth": 1, + "gas": 2031297, + "gasCost": 3, + "op": "PUSH1", + "pc": 2270, "stack": [ "0xa0712d68", "0x1cd", @@ -14117,11 +14117,11 @@ ] }, { - "pc": 2272, - "op": "PUSH1", - "gas": 2025906, - "gasCost": 3, "depth": 1, + "gas": 2031294, + "gasCost": 3, + "op": "PUSH1", + "pc": 2272, "stack": [ "0xa0712d68", "0x1cd", @@ -14134,11 +14134,11 @@ ] }, { - "pc": 2274, - "op": "MLOAD", - "gas": 2025903, - "gasCost": 3, "depth": 1, + "gas": 2031291, + "gasCost": 3, + "op": "MLOAD", + "pc": 2274, "stack": [ "0xa0712d68", "0x1cd", @@ -14152,11 +14152,11 @@ ] }, { - "pc": 2275, - "op": "DUP1", - "gas": 2025900, - "gasCost": 3, "depth": 1, + "gas": 2031288, + "gasCost": 3, + "op": "DUP1", + "pc": 2275, "stack": [ "0xa0712d68", "0x1cd", @@ -14170,11 +14170,11 @@ ] }, { - "pc": 2276, - "op": "DUP4", - "gas": 2025897, - "gasCost": 3, "depth": 1, + "gas": 2031285, + "gasCost": 3, + "op": "DUP4", + "pc": 2276, "stack": [ "0xa0712d68", "0x1cd", @@ -14189,11 +14189,11 @@ ] }, { - "pc": 2277, - "op": "SUB", - "gas": 2025894, - "gasCost": 3, "depth": 1, + "gas": 2031282, + "gasCost": 3, + "op": "SUB", + "pc": 2277, "stack": [ "0xa0712d68", "0x1cd", @@ -14209,11 +14209,11 @@ ] }, { - "pc": 2278, - "op": "DUP2", - "gas": 2025891, - "gasCost": 3, "depth": 1, + "gas": 2031279, + "gasCost": 3, + "op": "DUP2", + "pc": 2278, "stack": [ "0xa0712d68", "0x1cd", @@ -14228,11 +14228,11 @@ ] }, { - "pc": 2279, - "op": "PUSH1", - "gas": 2025888, - "gasCost": 3, "depth": 1, + "gas": 2031276, + "gasCost": 3, + "op": "PUSH1", + "pc": 2279, "stack": [ "0xa0712d68", "0x1cd", @@ -14248,11 +14248,11 @@ ] }, { - "pc": 2281, - "op": "DUP8", - "gas": 2025885, - "gasCost": 3, "depth": 1, + "gas": 2031273, + "gasCost": 3, + "op": "DUP8", + "pc": 2281, "stack": [ "0xa0712d68", "0x1cd", @@ -14269,11 +14269,11 @@ ] }, { - "pc": 2282, - "op": "GAS", - "gas": 2025882, - "gasCost": 2, "depth": 1, + "gas": 2031270, + "gasCost": 2, + "op": "GAS", + "pc": 2282, "stack": [ "0xa0712d68", "0x1cd", @@ -14291,11 +14291,11 @@ ] }, { - "pc": 2283, - "op": "CALL", - "gas": 2025880, - "gasCost": 1994228, "depth": 1, + "gas": 2031268, + "gasCost": 0, + "op": "CALL", + "pc": 2283, "stack": [ "0xa0712d68", "0x1cd", @@ -14310,15 +14310,15 @@ "0xc0", "0x0", "0x0", - "0x1ee998" + "0x1efea4" ] }, { - "pc": 2284, - "op": "ISZERO", - "gas": 2025780, - "gasCost": 3, "depth": 1, + "gas": 2030568, + "gasCost": 3, + "op": "ISZERO", + "pc": 2284, "stack": [ "0xa0712d68", "0x1cd", @@ -14331,11 +14331,11 @@ ] }, { - "pc": 2285, - "op": "DUP1", - "gas": 2025777, - "gasCost": 3, "depth": 1, + "gas": 2030565, + "gasCost": 3, + "op": "DUP1", + "pc": 2285, "stack": [ "0xa0712d68", "0x1cd", @@ -14348,11 +14348,11 @@ ] }, { - "pc": 2286, - "op": "ISZERO", - "gas": 2025774, - "gasCost": 3, "depth": 1, + "gas": 2030562, + "gasCost": 3, + "op": "ISZERO", + "pc": 2286, "stack": [ "0xa0712d68", "0x1cd", @@ -14366,11 +14366,11 @@ ] }, { - "pc": 2287, - "op": "PUSH3", - "gas": 2025771, - "gasCost": 3, "depth": 1, + "gas": 2030559, + "gasCost": 3, + "op": "PUSH3", + "pc": 2287, "stack": [ "0xa0712d68", "0x1cd", @@ -14384,11 +14384,11 @@ ] }, { - "pc": 2291, - "op": "JUMPI", - "gas": 2025768, - "gasCost": 10, "depth": 1, + "gas": 2030556, + "gasCost": 10, + "op": "JUMPI", + "pc": 2291, "stack": [ "0xa0712d68", "0x1cd", @@ -14403,11 +14403,11 @@ ] }, { - "pc": 2301, - "op": "JUMPDEST", - "gas": 2025758, - "gasCost": 1, "depth": 1, + "gas": 2030546, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2301, "stack": [ "0xa0712d68", "0x1cd", @@ -14420,11 +14420,11 @@ ] }, { - "pc": 2302, - "op": "POP", - "gas": 2025757, - "gasCost": 2, "depth": 1, + "gas": 2030545, + "gasCost": 2, + "op": "POP", + "pc": 2302, "stack": [ "0xa0712d68", "0x1cd", @@ -14436,12 +14436,12 @@ "0x0" ] }, - { - "pc": 2303, - "op": "POP", - "gas": 2025755, - "gasCost": 2, + { "depth": 1, + "gas": 2030543, + "gasCost": 2, + "op": "POP", + "pc": 2303, "stack": [ "0xa0712d68", "0x1cd", @@ -14453,11 +14453,11 @@ ] }, { - "pc": 2304, - "op": "POP", - "gas": 2025753, - "gasCost": 2, "depth": 1, + "gas": 2030541, + "gasCost": 2, + "op": "POP", + "pc": 2304, "stack": [ "0xa0712d68", "0x1cd", @@ -14468,11 +14468,11 @@ ] }, { - "pc": 2305, - "op": "POP", - "gas": 2025751, - "gasCost": 2, "depth": 1, + "gas": 2030539, + "gasCost": 2, + "op": "POP", + "pc": 2305, "stack": [ "0xa0712d68", "0x1cd", @@ -14482,11 +14482,11 @@ ] }, { - "pc": 2306, - "op": "PUSH1", - "gas": 2025749, - "gasCost": 3, "depth": 1, + "gas": 2030537, + "gasCost": 3, + "op": "PUSH1", + "pc": 2306, "stack": [ "0xa0712d68", "0x1cd", @@ -14495,11 +14495,11 @@ ] }, { - "pc": 2308, - "op": "MLOAD", - "gas": 2025746, - "gasCost": 3, "depth": 1, + "gas": 2030534, + "gasCost": 3, + "op": "MLOAD", + "pc": 2308, "stack": [ "0xa0712d68", "0x1cd", @@ -14509,11 +14509,11 @@ ] }, { - "pc": 2309, - "op": "RETURNDATASIZE", - "gas": 2025743, - "gasCost": 2, "depth": 1, + "gas": 2030531, + "gasCost": 2, + "op": "RETURNDATASIZE", + "pc": 2309, "stack": [ "0xa0712d68", "0x1cd", @@ -14523,11 +14523,11 @@ ] }, { - "pc": 2310, - "op": "PUSH1", - "gas": 2025741, - "gasCost": 3, "depth": 1, + "gas": 2030529, + "gasCost": 3, + "op": "PUSH1", + "pc": 2310, "stack": [ "0xa0712d68", "0x1cd", @@ -14538,11 +14538,11 @@ ] }, { - "pc": 2312, - "op": "NOT", - "gas": 2025738, - "gasCost": 3, "depth": 1, + "gas": 2030526, + "gasCost": 3, + "op": "NOT", + "pc": 2312, "stack": [ "0xa0712d68", "0x1cd", @@ -14554,11 +14554,11 @@ ] }, { - "pc": 2313, - "op": "PUSH1", - "gas": 2025735, - "gasCost": 3, "depth": 1, + "gas": 2030523, + "gasCost": 3, + "op": "PUSH1", + "pc": 2313, "stack": [ "0xa0712d68", "0x1cd", @@ -14570,11 +14570,11 @@ ] }, { - "pc": 2315, - "op": "DUP3", - "gas": 2025732, - "gasCost": 3, "depth": 1, + "gas": 2030520, + "gasCost": 3, + "op": "DUP3", + "pc": 2315, "stack": [ "0xa0712d68", "0x1cd", @@ -14587,11 +14587,11 @@ ] }, { - "pc": 2316, - "op": "ADD", - "gas": 2025729, - "gasCost": 3, "depth": 1, + "gas": 2030517, + "gasCost": 3, + "op": "ADD", + "pc": 2316, "stack": [ "0xa0712d68", "0x1cd", @@ -14605,11 +14605,11 @@ ] }, { - "pc": 2317, - "op": "AND", - "gas": 2025726, - "gasCost": 3, "depth": 1, + "gas": 2030514, + "gasCost": 3, + "op": "AND", + "pc": 2317, "stack": [ "0xa0712d68", "0x1cd", @@ -14622,11 +14622,11 @@ ] }, { - "pc": 2318, - "op": "DUP3", - "gas": 2025723, - "gasCost": 3, "depth": 1, + "gas": 2030511, + "gasCost": 3, + "op": "DUP3", + "pc": 2318, "stack": [ "0xa0712d68", "0x1cd", @@ -14638,11 +14638,11 @@ ] }, { - "pc": 2319, - "op": "ADD", - "gas": 2025720, - "gasCost": 3, "depth": 1, + "gas": 2030508, + "gasCost": 3, + "op": "ADD", + "pc": 2319, "stack": [ "0xa0712d68", "0x1cd", @@ -14655,11 +14655,11 @@ ] }, { - "pc": 2320, - "op": "DUP1", - "gas": 2025717, - "gasCost": 3, "depth": 1, + "gas": 2030505, + "gasCost": 3, + "op": "DUP1", + "pc": 2320, "stack": [ "0xa0712d68", "0x1cd", @@ -14671,11 +14671,11 @@ ] }, { - "pc": 2321, - "op": "PUSH1", - "gas": 2025714, - "gasCost": 3, "depth": 1, + "gas": 2030502, + "gasCost": 3, + "op": "PUSH1", + "pc": 2321, "stack": [ "0xa0712d68", "0x1cd", @@ -14688,11 +14688,11 @@ ] }, { - "pc": 2323, - "op": "MSTORE", - "gas": 2025711, - "gasCost": 3, "depth": 1, + "gas": 2030499, + "gasCost": 3, + "op": "MSTORE", + "pc": 2323, "stack": [ "0xa0712d68", "0x1cd", @@ -14706,11 +14706,11 @@ ] }, { - "pc": 2324, - "op": "POP", - "gas": 2025708, - "gasCost": 2, "depth": 1, + "gas": 2030496, + "gasCost": 2, + "op": "POP", + "pc": 2324, "stack": [ "0xa0712d68", "0x1cd", @@ -14722,11 +14722,11 @@ ] }, { - "pc": 2325, - "op": "DUP2", - "gas": 2025706, - "gasCost": 3, "depth": 1, + "gas": 2030494, + "gasCost": 3, + "op": "DUP2", + "pc": 2325, "stack": [ "0xa0712d68", "0x1cd", @@ -14737,11 +14737,11 @@ ] }, { - "pc": 2326, - "op": "ADD", - "gas": 2025703, - "gasCost": 3, "depth": 1, + "gas": 2030491, + "gasCost": 3, + "op": "ADD", + "pc": 2326, "stack": [ "0xa0712d68", "0x1cd", @@ -14753,11 +14753,11 @@ ] }, { - "pc": 2327, - "op": "SWAP1", - "gas": 2025700, - "gasCost": 3, "depth": 1, + "gas": 2030488, + "gasCost": 3, + "op": "SWAP1", + "pc": 2327, "stack": [ "0xa0712d68", "0x1cd", @@ -14768,11 +14768,11 @@ ] }, { - "pc": 2328, - "op": "PUSH3", - "gas": 2025697, - "gasCost": 3, "depth": 1, + "gas": 2030485, + "gasCost": 3, + "op": "PUSH3", + "pc": 2328, "stack": [ "0xa0712d68", "0x1cd", @@ -14783,11 +14783,11 @@ ] }, { - "pc": 2332, - "op": "SWAP2", - "gas": 2025694, - "gasCost": 3, "depth": 1, + "gas": 2030482, + "gasCost": 3, + "op": "SWAP2", + "pc": 2332, "stack": [ "0xa0712d68", "0x1cd", @@ -14799,11 +14799,11 @@ ] }, { - "pc": 2333, - "op": "SWAP1", - "gas": 2025691, - "gasCost": 3, "depth": 1, + "gas": 2030479, + "gasCost": 3, + "op": "SWAP1", + "pc": 2333, "stack": [ "0xa0712d68", "0x1cd", @@ -14815,11 +14815,11 @@ ] }, { - "pc": 2334, - "op": "PUSH3", - "gas": 2025688, - "gasCost": 3, "depth": 1, + "gas": 2030476, + "gasCost": 3, + "op": "PUSH3", + "pc": 2334, "stack": [ "0xa0712d68", "0x1cd", @@ -14831,11 +14831,11 @@ ] }, { - "pc": 2338, - "op": "JUMP", - "gas": 2025685, - "gasCost": 8, "depth": 1, + "gas": 2030473, + "gasCost": 8, + "op": "JUMP", + "pc": 2338, "stack": [ "0xa0712d68", "0x1cd", @@ -14848,11 +14848,11 @@ ] }, { - "pc": 3177, - "op": "JUMPDEST", - "gas": 2025677, - "gasCost": 1, "depth": 1, + "gas": 2030465, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 3177, "stack": [ "0xa0712d68", "0x1cd", @@ -14864,11 +14864,11 @@ ] }, { - "pc": 3178, - "op": "PUSH1", - "gas": 2025676, - "gasCost": 3, "depth": 1, + "gas": 2030464, + "gasCost": 3, + "op": "PUSH1", + "pc": 3178, "stack": [ "0xa0712d68", "0x1cd", @@ -14880,11 +14880,11 @@ ] }, { - "pc": 3180, - "op": "PUSH1", - "gas": 2025673, - "gasCost": 3, "depth": 1, + "gas": 2030461, + "gasCost": 3, + "op": "PUSH1", + "pc": 3180, "stack": [ "0xa0712d68", "0x1cd", @@ -14897,11 +14897,11 @@ ] }, { - "pc": 3182, - "op": "DUP3", - "gas": 2025670, - "gasCost": 3, "depth": 1, + "gas": 2030458, + "gasCost": 3, + "op": "DUP3", + "pc": 3182, "stack": [ "0xa0712d68", "0x1cd", @@ -14915,11 +14915,11 @@ ] }, { - "pc": 3183, - "op": "DUP5", - "gas": 2025667, - "gasCost": 3, "depth": 1, + "gas": 2030455, + "gasCost": 3, + "op": "DUP5", + "pc": 3183, "stack": [ "0xa0712d68", "0x1cd", @@ -14934,11 +14934,11 @@ ] }, { - "pc": 3184, - "op": "SUB", - "gas": 2025664, - "gasCost": 3, "depth": 1, + "gas": 2030452, + "gasCost": 3, + "op": "SUB", + "pc": 3184, "stack": [ "0xa0712d68", "0x1cd", @@ -14954,11 +14954,11 @@ ] }, { - "pc": 3185, - "op": "SLT", - "gas": 2025661, - "gasCost": 3, "depth": 1, + "gas": 2030449, + "gasCost": 3, + "op": "SLT", + "pc": 3185, "stack": [ "0xa0712d68", "0x1cd", @@ -14973,11 +14973,11 @@ ] }, { - "pc": 3186, - "op": "ISZERO", - "gas": 2025658, - "gasCost": 3, "depth": 1, + "gas": 2030446, + "gasCost": 3, + "op": "ISZERO", + "pc": 3186, "stack": [ "0xa0712d68", "0x1cd", @@ -14991,11 +14991,11 @@ ] }, { - "pc": 3187, - "op": "PUSH3", - "gas": 2025655, - "gasCost": 3, "depth": 1, + "gas": 2030443, + "gasCost": 3, + "op": "PUSH3", + "pc": 3187, "stack": [ "0xa0712d68", "0x1cd", @@ -15009,11 +15009,11 @@ ] }, { - "pc": 3191, - "op": "JUMPI", - "gas": 2025652, - "gasCost": 10, "depth": 1, + "gas": 2030440, + "gasCost": 10, + "op": "JUMPI", + "pc": 3191, "stack": [ "0xa0712d68", "0x1cd", @@ -15028,11 +15028,11 @@ ] }, { - "pc": 3192, - "op": "PUSH3", - "gas": 2025642, - "gasCost": 3, "depth": 1, + "gas": 2030430, + "gasCost": 3, + "op": "PUSH3", + "pc": 3192, "stack": [ "0xa0712d68", "0x1cd", @@ -15045,11 +15045,11 @@ ] }, { - "pc": 3196, - "op": "PUSH3", - "gas": 2025639, - "gasCost": 3, "depth": 1, + "gas": 2030427, + "gasCost": 3, + "op": "PUSH3", + "pc": 3196, "stack": [ "0xa0712d68", "0x1cd", @@ -15063,11 +15063,11 @@ ] }, { - "pc": 3200, - "op": "JUMP", - "gas": 2025636, - "gasCost": 8, "depth": 1, + "gas": 2030424, + "gasCost": 8, + "op": "JUMP", + "pc": 3200, "stack": [ "0xa0712d68", "0x1cd", @@ -15082,11 +15082,11 @@ ] }, { - "pc": 2516, - "op": "JUMPDEST", - "gas": 2025628, - "gasCost": 1, "depth": 1, + "gas": 2030416, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2516, "stack": [ "0xa0712d68", "0x1cd", @@ -15100,11 +15100,11 @@ ] }, { - "pc": 2517, - "op": "PUSH1", - "gas": 2025627, - "gasCost": 3, "depth": 1, + "gas": 2030415, + "gasCost": 3, + "op": "PUSH1", + "pc": 2517, "stack": [ "0xa0712d68", "0x1cd", @@ -15118,11 +15118,11 @@ ] }, { - "pc": 2519, - "op": "DUP1", - "gas": 2025624, - "gasCost": 3, "depth": 1, + "gas": 2030412, + "gasCost": 3, + "op": "DUP1", + "pc": 2519, "stack": [ "0xa0712d68", "0x1cd", @@ -15137,11 +15137,11 @@ ] }, { - "pc": 2520, - "op": "REVERT", - "gas": 2025621, - "gasCost": 0, "depth": 1, + "gas": 2030409, + "gasCost": 0, + "op": "REVERT", + "pc": 2520, "stack": [ "0xa0712d68", "0x1cd", diff --git a/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint.prestateDiffTracer.json b/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint.prestateDiffTracer.json index 3183d30fb..eff0ed558 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint.prestateDiffTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint.prestateDiffTracer.json @@ -1,20 +1,20 @@ { "post": { "0x0000000000000000000000000000000000000000": { - "balance": "0x3d69d9" + "balance": "0x21bf6e560" }, "OWNER.address": { - "balance": "0x10f08c21e44d69a7a96", - "nonce": 9 + "balance": "0xc9f2c9ccfda35c33ba3fd1aa0", + "nonce": 360 } }, "pre": { "0x0000000000000000000000000000000000000000": { - "balance": "0x3c474e" + "balance": "0x7d2b7500" }, "OWNER.address": { - "balance": "0x10f08c229bfb4db5c42", - "nonce": 8 + "balance": "0xc9f2c9ccfda35c33d42c88b00", + "nonce": 359 } } } \ No newline at end of file diff --git a/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint.prestateTracer.json b/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint.prestateTracer.json index 58fc2ebab..5345a2418 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint.prestateTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint.prestateTracer.json @@ -1,6 +1,10 @@ { "0x0000000000000000000000000000000000000000": { - "balance": "0x3c474e" + "balance": "0x7d2b7500" + }, + "OWNER.address": { + "balance": "0xc9f2c9ccfda35c33d42c88b00", + "nonce": 359 }, "Tracer.address": { "balance": "0x0", @@ -11,9 +15,5 @@ "0x0000000000000000000000000000000000000000000000000000000000000001": "0x0000000000000000000000000000000000000000000000000000000000000000", "0x0000000000000000000000000000000000000000000000000000000000000003": "0x0000000000000000000000000000000000000000000000000000000000000000" } - }, - "OWNER.address": { - "balance": "0x10f08c229bfb4db5c42", - "nonce": 8 } } \ No newline at end of file diff --git a/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint2.callTracer.json b/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint2.callTracer.json index 3dd6c16e4..b50f54316 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint2.callTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint2.callTracer.json @@ -1,32 +1,32 @@ { - "from": "OWNER.address", - "gas": "0x200b20", - "gasUsed": "0x80064", - "to": "Tracer.address", - "input": "0x3aa1808800000000000000000000000000000000000000000000000000000000000003e8", - "output": "0x0000000000000000000000000000000000000000000000000000000000000001", "calls": [ { "from": "Tracer.address", - "gas": "0x1eafd7", - "gasUsed": "0x5f261", - "to": "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "gas": "0x1eaf4c", + "gasUsed": "0x65a49", "input": "0x60806040526000600160006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b50600160009054906101000a900460ff161562000080576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200007790620002b5565b60405180910390fd5b60018060006101000a81548160ff021916908315150217905550620000bc701d6329f1c35ca4bfabb9f5610000000000620000c360201b60201c565b5062000460565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200010d919062000342565b60405180910390a281600080828254620001289190620003a3565b925050819055506200014e600183620001429190620003a3565b6200016960201b60201c565b506200015f620001df60201b60201c565b5060019050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620001b391906200042e565b60405180910390a28160026000828254620001cf9190620003a3565b9250508190555060029050919050565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b600082825260208201905092915050565b7f436f6e747261637420696e7374616e63652068617320616c726561647920626560008201527f656e20696e697469616c697a6564000000000000000000000000000000000000602082015250565b60006200029d602e836200022e565b9150620002aa826200023f565b604082019050919050565b60006020820190508181036000830152620002d0816200028e565b9050919050565b6000819050919050565b620002ec81620002d7565b82525050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006200032a6005836200022e565b91506200033782620002f2565b602082019050919050565b6000604082019050620003596000830184620002e1565b81810360208301526200036c816200031b565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620003b082620002d7565b9150620003bd83620002d7565b9250828201905080821115620003d857620003d762000374565b5b92915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000416600e836200022e565b91506200042382620003de565b602082019050919050565b6000604082019050620004456000830184620002e1565b8181036020830152620004588162000407565b905092915050565b61062f80620004706000396000f3fe608060405234801561001057600080fd5b50600436106100625760003560e01c80631c717069146100675780631c93908c1461008557806392954362146100b5578063a0712d68146100bf578063b69ef8a8146100ef578063c9353cb51461010d575b600080fd5b61006f610129565b60405161007c91906102ed565b60405180910390f35b61009f600480360381019061009a9190610343565b610178565b6040516100ac919061037f565b60405180910390f35b6100bd6101ea565b005b6100d960048036038101906100d49190610343565b610225565b6040516100e6919061037f565b60405180910390f35b6100f76102b5565b604051610104919061037f565b60405180910390f35b610127600480360381019061012291906103f8565b6102bb565b005b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516101c09190610482565b60405180910390a281600260008282546101da91906104df565b9250508190555060029050919050565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161021c9061055f565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405161026d91906105cb565b60405180910390a28160008082825461028691906104df565b925050819055506102a260018361029d91906104df565b610178565b506102ab610129565b5060019050919050565b60005481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b6000819050919050565b6102e7816102d4565b82525050565b600060208201905061030260008301846102de565b92915050565b600080fd5b6000819050919050565b6103208161030d565b811461032b57600080fd5b50565b60008135905061033d81610317565b92915050565b60006020828403121561035957610358610308565b5b60006103678482850161032e565b91505092915050565b6103798161030d565b82525050565b60006020820190506103946000830184610370565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006103c58261039a565b9050919050565b6103d5816103ba565b81146103e057600080fd5b50565b6000813590506103f2816103cc565b92915050565b60006020828403121561040e5761040d610308565b5b600061041c848285016103e3565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600061046c600e83610425565b915061047782610436565b602082019050919050565b60006040820190506104976000830184610370565b81810360208301526104a88161045f565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006104ea8261030d565b91506104f58361030d565b925082820190508082111561050d5761050c6104b0565b5b92915050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b6000610549601783610425565b915061055482610513565b602082019050919050565b600060208201905081810360008301526105788161053c565b9050919050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006105b5600583610425565b91506105c08261057f565b602082019050919050565b60006040820190506105e06000830184610370565b81810360208301526105f1816105a8565b90509291505056fea26469706673582212202a0a0fa5842e91cc0c1e5b645f7286aad7193a83c3b2f8c8e4c1b35008af0d6f64736f6c63430008140033", "output": "0x608060405234801561001057600080fd5b50600436106100625760003560e01c80631c717069146100675780631c93908c1461008557806392954362146100b5578063a0712d68146100bf578063b69ef8a8146100ef578063c9353cb51461010d575b600080fd5b61006f610129565b60405161007c91906102ed565b60405180910390f35b61009f600480360381019061009a9190610343565b610178565b6040516100ac919061037f565b60405180910390f35b6100bd6101ea565b005b6100d960048036038101906100d49190610343565b610225565b6040516100e6919061037f565b60405180910390f35b6100f76102b5565b604051610104919061037f565b60405180910390f35b610127600480360381019061012291906103f8565b6102bb565b005b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516101c09190610482565b60405180910390a281600260008282546101da91906104df565b9250508190555060029050919050565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161021c9061055f565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405161026d91906105cb565b60405180910390a28160008082825461028691906104df565b925050819055506102a260018361029d91906104df565b610178565b506102ab610129565b5060019050919050565b60005481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b6000819050919050565b6102e7816102d4565b82525050565b600060208201905061030260008301846102de565b92915050565b600080fd5b6000819050919050565b6103208161030d565b811461032b57600080fd5b50565b60008135905061033d81610317565b92915050565b60006020828403121561035957610358610308565b5b60006103678482850161032e565b91505092915050565b6103798161030d565b82525050565b60006020820190506103946000830184610370565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006103c58261039a565b9050919050565b6103d5816103ba565b81146103e057600080fd5b50565b6000813590506103f2816103cc565b92915050565b60006020828403121561040e5761040d610308565b5b600061041c848285016103e3565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600061046c600e83610425565b915061047782610436565b602082019050919050565b60006040820190506104976000830184610370565b81810360208301526104a88161045f565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006104ea8261030d565b91506104f58361030d565b925082820190508082111561050d5761050c6104b0565b5b92915050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b6000610549601783610425565b915061055482610513565b602082019050919050565b600060208201905081810360008301526105788161053c565b9050919050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006105b5600583610425565b91506105c08261057f565b602082019050919050565b60006040820190506105e06000830184610370565b81810360208301526105f1816105a8565b90509291505056fea26469706673582212202a0a0fa5842e91cc0c1e5b645f7286aad7193a83c3b2f8c8e4c1b35008af0d6f64736f6c63430008140033", - "value": "0x0", - "type": "CREATE" + "to": "0x5b659fd8bdc52879d0c3697038537da40832b759", + "type": "CREATE", + "value": "0x0" }, { "from": "Tracer.address", - "gas": "0x17c747", - "gasUsed": "0x1b1f", - "to": "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "gas": "0x17eeb9", + "gasUsed": "0x1f6b", "input": "0xa0712d6800000000000000000000000000000000000000000000000000000000000003e8", "output": "0x0000000000000000000000000000000000000000000000000000000000000001", - "value": "0x0", - "type": "CALL" + "to": "0x5b659fd8bdc52879d0c3697038537da40832b759", + "type": "CALL", + "value": "0x0" } ], - "value": "0x0", - "type": "CALL" + "from": "OWNER.address", + "gas": "0x1fb708", + "gasUsed": "0x7d9e2", + "input": "0x3aa1808800000000000000000000000000000000000000000000000000000000000003e8", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001", + "to": "Tracer.address", + "type": "CALL", + "value": "0x0" } \ No newline at end of file diff --git a/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint2.defaultTracer.json b/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint2.defaultTracer.json index 57c88d4c5..e2029a036 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint2.defaultTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint2.defaultTracer.json @@ -1,83 +1,83 @@ { - "gas": 524388, "failed": false, + "gas": 514530, "returnValue": "0000000000000000000000000000000000000000000000000000000000000001", "structLogs": [ { - "pc": 0, - "op": "PUSH1", - "gas": 2078784, - "gasCost": 3, "depth": 1, + "gas": 2078472, + "gasCost": 3, + "op": "PUSH1", + "pc": 0, "stack": [] }, { - "pc": 2, - "op": "PUSH1", - "gas": 2078781, - "gasCost": 3, "depth": 1, + "gas": 2078469, + "gasCost": 3, + "op": "PUSH1", + "pc": 2, "stack": [ "0x80" ] }, { - "pc": 4, - "op": "MSTORE", - "gas": 2078778, - "gasCost": 12, "depth": 1, + "gas": 2078466, + "gasCost": 12, + "op": "MSTORE", + "pc": 4, "stack": [ "0x80", "0x40" ] }, { - "pc": 5, - "op": "CALLVALUE", - "gas": 2078766, - "gasCost": 2, "depth": 1, + "gas": 2078454, + "gasCost": 2, + "op": "CALLVALUE", + "pc": 5, "stack": [] }, { - "pc": 6, - "op": "DUP1", - "gas": 2078764, - "gasCost": 3, "depth": 1, + "gas": 2078452, + "gasCost": 3, + "op": "DUP1", + "pc": 6, "stack": [ "0x0" ] }, { - "pc": 7, - "op": "ISZERO", - "gas": 2078761, - "gasCost": 3, "depth": 1, + "gas": 2078449, + "gasCost": 3, + "op": "ISZERO", + "pc": 7, "stack": [ "0x0", "0x0" ] }, { - "pc": 8, - "op": "PUSH3", - "gas": 2078758, - "gasCost": 3, "depth": 1, + "gas": 2078446, + "gasCost": 3, + "op": "PUSH3", + "pc": 8, "stack": [ "0x0", "0x1" ] }, { - "pc": 12, - "op": "JUMPI", - "gas": 2078755, - "gasCost": 10, "depth": 1, + "gas": 2078443, + "gasCost": 10, + "op": "JUMPI", + "pc": 12, "stack": [ "0x0", "0x1", @@ -85,141 +85,141 @@ ] }, { - "pc": 17, - "op": "JUMPDEST", - "gas": 2078745, - "gasCost": 1, "depth": 1, + "gas": 2078433, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 17, "stack": [ "0x0" ] }, { - "pc": 18, - "op": "POP", - "gas": 2078744, - "gasCost": 2, "depth": 1, + "gas": 2078432, + "gasCost": 2, + "op": "POP", + "pc": 18, "stack": [ "0x0" ] }, { - "pc": 19, - "op": "PUSH1", - "gas": 2078742, - "gasCost": 3, "depth": 1, + "gas": 2078430, + "gasCost": 3, + "op": "PUSH1", + "pc": 19, "stack": [] }, { - "pc": 21, - "op": "CALLDATASIZE", - "gas": 2078739, - "gasCost": 2, "depth": 1, + "gas": 2078427, + "gasCost": 2, + "op": "CALLDATASIZE", + "pc": 21, "stack": [ "0x4" ] }, { - "pc": 22, - "op": "LT", - "gas": 2078737, - "gasCost": 3, "depth": 1, + "gas": 2078425, + "gasCost": 3, + "op": "LT", + "pc": 22, "stack": [ "0x4", "0x24" ] }, { - "pc": 23, - "op": "PUSH3", - "gas": 2078734, - "gasCost": 3, "depth": 1, + "gas": 2078422, + "gasCost": 3, + "op": "PUSH3", + "pc": 23, "stack": [ "0x0" ] }, { - "pc": 27, - "op": "JUMPI", - "gas": 2078731, - "gasCost": 10, "depth": 1, + "gas": 2078419, + "gasCost": 10, + "op": "JUMPI", + "pc": 27, "stack": [ "0x0", "0xac" ] }, { - "pc": 28, - "op": "PUSH1", - "gas": 2078721, - "gasCost": 3, "depth": 1, + "gas": 2078409, + "gasCost": 3, + "op": "PUSH1", + "pc": 28, "stack": [] }, { - "pc": 30, - "op": "CALLDATALOAD", - "gas": 2078718, - "gasCost": 3, "depth": 1, + "gas": 2078406, + "gasCost": 3, + "op": "CALLDATALOAD", + "pc": 30, "stack": [ "0x0" ] }, { - "pc": 31, - "op": "PUSH1", - "gas": 2078715, - "gasCost": 3, "depth": 1, + "gas": 2078403, + "gasCost": 3, + "op": "PUSH1", + "pc": 31, "stack": [ "0x3aa1808800000000000000000000000000000000000000000000000000000000" ] }, { - "pc": 33, - "op": "SHR", - "gas": 2078712, - "gasCost": 3, "depth": 1, + "gas": 2078400, + "gasCost": 3, + "op": "SHR", + "pc": 33, "stack": [ "0x3aa1808800000000000000000000000000000000000000000000000000000000", "0xe0" ] }, { - "pc": 34, - "op": "DUP1", - "gas": 2078709, - "gasCost": 3, "depth": 1, + "gas": 2078397, + "gasCost": 3, + "op": "DUP1", + "pc": 34, "stack": [ "0x3aa18088" ] }, { - "pc": 35, - "op": "PUSH4", - "gas": 2078706, - "gasCost": 3, "depth": 1, + "gas": 2078394, + "gasCost": 3, + "op": "PUSH4", + "pc": 35, "stack": [ "0x3aa18088", "0x3aa18088" ] }, { - "pc": 40, - "op": "GT", - "gas": 2078703, - "gasCost": 3, "depth": 1, + "gas": 2078391, + "gasCost": 3, + "op": "GT", + "pc": 40, "stack": [ "0x3aa18088", "0x3aa18088", @@ -227,22 +227,22 @@ ] }, { - "pc": 41, - "op": "PUSH3", - "gas": 2078700, - "gasCost": 3, "depth": 1, + "gas": 2078388, + "gasCost": 3, + "op": "PUSH3", + "pc": 41, "stack": [ "0x3aa18088", "0x1" ] }, { - "pc": 45, - "op": "JUMPI", - "gas": 2078697, - "gasCost": 10, "depth": 1, + "gas": 2078385, + "gasCost": 10, + "op": "JUMPI", + "pc": 45, "stack": [ "0x3aa18088", "0x1", @@ -250,42 +250,42 @@ ] }, { - "pc": 111, - "op": "JUMPDEST", - "gas": 2078687, - "gasCost": 1, "depth": 1, + "gas": 2078375, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 111, "stack": [ "0x3aa18088" ] }, { - "pc": 112, - "op": "DUP1", - "gas": 2078686, - "gasCost": 3, "depth": 1, + "gas": 2078374, + "gasCost": 3, + "op": "DUP1", + "pc": 112, "stack": [ "0x3aa18088" ] }, { - "pc": 113, - "op": "PUSH4", - "gas": 2078683, - "gasCost": 3, "depth": 1, + "gas": 2078371, + "gasCost": 3, + "op": "PUSH4", + "pc": 113, "stack": [ "0x3aa18088", "0x3aa18088" ] }, { - "pc": 118, - "op": "EQ", - "gas": 2078680, - "gasCost": 3, "depth": 1, + "gas": 2078368, + "gasCost": 3, + "op": "EQ", + "pc": 118, "stack": [ "0x3aa18088", "0x3aa18088", @@ -293,22 +293,22 @@ ] }, { - "pc": 119, - "op": "PUSH3", - "gas": 2078677, - "gasCost": 3, "depth": 1, + "gas": 2078365, + "gasCost": 3, + "op": "PUSH3", + "pc": 119, "stack": [ "0x3aa18088", "0x0" ] }, { - "pc": 123, - "op": "JUMPI", - "gas": 2078674, - "gasCost": 10, "depth": 1, + "gas": 2078362, + "gasCost": 10, + "op": "JUMPI", + "pc": 123, "stack": [ "0x3aa18088", "0x0", @@ -316,32 +316,32 @@ ] }, { - "pc": 124, - "op": "DUP1", - "gas": 2078664, - "gasCost": 3, "depth": 1, + "gas": 2078352, + "gasCost": 3, + "op": "DUP1", + "pc": 124, "stack": [ "0x3aa18088" ] }, { - "pc": 125, - "op": "PUSH4", - "gas": 2078661, - "gasCost": 3, "depth": 1, + "gas": 2078349, + "gasCost": 3, + "op": "PUSH4", + "pc": 125, "stack": [ "0x3aa18088", "0x3aa18088" ] }, { - "pc": 130, - "op": "EQ", - "gas": 2078658, - "gasCost": 3, "depth": 1, + "gas": 2078346, + "gasCost": 3, + "op": "EQ", + "pc": 130, "stack": [ "0x3aa18088", "0x3aa18088", @@ -349,22 +349,22 @@ ] }, { - "pc": 131, - "op": "PUSH3", - "gas": 2078655, - "gasCost": 3, "depth": 1, + "gas": 2078343, + "gasCost": 3, + "op": "PUSH3", + "pc": 131, "stack": [ "0x3aa18088", "0x0" ] }, { - "pc": 135, - "op": "JUMPI", - "gas": 2078652, - "gasCost": 10, "depth": 1, + "gas": 2078340, + "gasCost": 10, + "op": "JUMPI", + "pc": 135, "stack": [ "0x3aa18088", "0x0", @@ -372,32 +372,32 @@ ] }, { - "pc": 136, - "op": "DUP1", - "gas": 2078642, - "gasCost": 3, "depth": 1, + "gas": 2078330, + "gasCost": 3, + "op": "DUP1", + "pc": 136, "stack": [ "0x3aa18088" ] }, { - "pc": 137, - "op": "PUSH4", - "gas": 2078639, - "gasCost": 3, "depth": 1, + "gas": 2078327, + "gasCost": 3, + "op": "PUSH4", + "pc": 137, "stack": [ "0x3aa18088", "0x3aa18088" ] }, { - "pc": 142, - "op": "EQ", - "gas": 2078636, - "gasCost": 3, "depth": 1, + "gas": 2078324, + "gasCost": 3, + "op": "EQ", + "pc": 142, "stack": [ "0x3aa18088", "0x3aa18088", @@ -405,22 +405,22 @@ ] }, { - "pc": 143, - "op": "PUSH3", - "gas": 2078633, - "gasCost": 3, "depth": 1, + "gas": 2078321, + "gasCost": 3, + "op": "PUSH3", + "pc": 143, "stack": [ "0x3aa18088", "0x0" ] }, { - "pc": 147, - "op": "JUMPI", - "gas": 2078630, - "gasCost": 10, "depth": 1, + "gas": 2078318, + "gasCost": 10, + "op": "JUMPI", + "pc": 147, "stack": [ "0x3aa18088", "0x0", @@ -428,32 +428,32 @@ ] }, { - "pc": 148, - "op": "DUP1", - "gas": 2078620, - "gasCost": 3, "depth": 1, + "gas": 2078308, + "gasCost": 3, + "op": "DUP1", + "pc": 148, "stack": [ "0x3aa18088" ] }, { - "pc": 149, - "op": "PUSH4", - "gas": 2078617, - "gasCost": 3, "depth": 1, + "gas": 2078305, + "gasCost": 3, + "op": "PUSH4", + "pc": 149, "stack": [ "0x3aa18088", "0x3aa18088" ] }, { - "pc": 154, - "op": "EQ", - "gas": 2078614, - "gasCost": 3, "depth": 1, + "gas": 2078302, + "gasCost": 3, + "op": "EQ", + "pc": 154, "stack": [ "0x3aa18088", "0x3aa18088", @@ -461,22 +461,22 @@ ] }, { - "pc": 155, - "op": "PUSH3", - "gas": 2078611, - "gasCost": 3, "depth": 1, + "gas": 2078299, + "gasCost": 3, + "op": "PUSH3", + "pc": 155, "stack": [ "0x3aa18088", "0x1" ] }, { - "pc": 159, - "op": "JUMPI", - "gas": 2078608, - "gasCost": 10, "depth": 1, + "gas": 2078296, + "gasCost": 10, + "op": "JUMPI", + "pc": 159, "stack": [ "0x3aa18088", "0x1", @@ -484,42 +484,42 @@ ] }, { - "pc": 299, - "op": "JUMPDEST", - "gas": 2078598, - "gasCost": 1, "depth": 1, + "gas": 2078286, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 299, "stack": [ "0x3aa18088" ] }, { - "pc": 300, - "op": "PUSH3", - "gas": 2078597, - "gasCost": 3, "depth": 1, + "gas": 2078285, + "gasCost": 3, + "op": "PUSH3", + "pc": 300, "stack": [ "0x3aa18088" ] }, { - "pc": 304, - "op": "PUSH1", - "gas": 2078594, - "gasCost": 3, "depth": 1, + "gas": 2078282, + "gasCost": 3, + "op": "PUSH1", + "pc": 304, "stack": [ "0x3aa18088", "0x149" ] }, { - "pc": 306, - "op": "DUP1", - "gas": 2078591, - "gasCost": 3, "depth": 1, + "gas": 2078279, + "gasCost": 3, + "op": "DUP1", + "pc": 306, "stack": [ "0x3aa18088", "0x149", @@ -527,11 +527,11 @@ ] }, { - "pc": 307, - "op": "CALLDATASIZE", - "gas": 2078588, - "gasCost": 2, "depth": 1, + "gas": 2078276, + "gasCost": 2, + "op": "CALLDATASIZE", + "pc": 307, "stack": [ "0x3aa18088", "0x149", @@ -540,11 +540,11 @@ ] }, { - "pc": 308, - "op": "SUB", - "gas": 2078586, - "gasCost": 3, "depth": 1, + "gas": 2078274, + "gasCost": 3, + "op": "SUB", + "pc": 308, "stack": [ "0x3aa18088", "0x149", @@ -554,11 +554,11 @@ ] }, { - "pc": 309, - "op": "DUP2", - "gas": 2078583, - "gasCost": 3, "depth": 1, + "gas": 2078271, + "gasCost": 3, + "op": "DUP2", + "pc": 309, "stack": [ "0x3aa18088", "0x149", @@ -567,11 +567,11 @@ ] }, { - "pc": 310, - "op": "ADD", - "gas": 2078580, - "gasCost": 3, "depth": 1, + "gas": 2078268, + "gasCost": 3, + "op": "ADD", + "pc": 310, "stack": [ "0x3aa18088", "0x149", @@ -581,11 +581,11 @@ ] }, { - "pc": 311, - "op": "SWAP1", - "gas": 2078577, - "gasCost": 3, "depth": 1, + "gas": 2078265, + "gasCost": 3, + "op": "SWAP1", + "pc": 311, "stack": [ "0x3aa18088", "0x149", @@ -594,11 +594,11 @@ ] }, { - "pc": 312, - "op": "PUSH3", - "gas": 2078574, - "gasCost": 3, "depth": 1, + "gas": 2078262, + "gasCost": 3, + "op": "PUSH3", + "pc": 312, "stack": [ "0x3aa18088", "0x149", @@ -607,11 +607,11 @@ ] }, { - "pc": 316, - "op": "SWAP2", - "gas": 2078571, - "gasCost": 3, "depth": 1, + "gas": 2078259, + "gasCost": 3, + "op": "SWAP2", + "pc": 316, "stack": [ "0x3aa18088", "0x149", @@ -621,11 +621,11 @@ ] }, { - "pc": 317, - "op": "SWAP1", - "gas": 2078568, - "gasCost": 3, "depth": 1, + "gas": 2078256, + "gasCost": 3, + "op": "SWAP1", + "pc": 317, "stack": [ "0x3aa18088", "0x149", @@ -635,11 +635,11 @@ ] }, { - "pc": 318, - "op": "PUSH3", - "gas": 2078565, - "gasCost": 3, "depth": 1, + "gas": 2078253, + "gasCost": 3, + "op": "PUSH3", + "pc": 318, "stack": [ "0x3aa18088", "0x149", @@ -649,11 +649,11 @@ ] }, { - "pc": 322, - "op": "JUMP", - "gas": 2078562, - "gasCost": 8, "depth": 1, + "gas": 2078250, + "gasCost": 8, + "op": "JUMP", + "pc": 322, "stack": [ "0x3aa18088", "0x149", @@ -664,11 +664,11 @@ ] }, { - "pc": 2570, - "op": "JUMPDEST", - "gas": 2078554, - "gasCost": 1, "depth": 1, + "gas": 2078242, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2570, "stack": [ "0x3aa18088", "0x149", @@ -678,11 +678,11 @@ ] }, { - "pc": 2571, - "op": "PUSH1", - "gas": 2078553, - "gasCost": 3, "depth": 1, + "gas": 2078241, + "gasCost": 3, + "op": "PUSH1", + "pc": 2571, "stack": [ "0x3aa18088", "0x149", @@ -692,11 +692,11 @@ ] }, { - "pc": 2573, - "op": "PUSH1", - "gas": 2078550, - "gasCost": 3, "depth": 1, + "gas": 2078238, + "gasCost": 3, + "op": "PUSH1", + "pc": 2573, "stack": [ "0x3aa18088", "0x149", @@ -707,11 +707,11 @@ ] }, { - "pc": 2575, - "op": "DUP3", - "gas": 2078547, - "gasCost": 3, "depth": 1, + "gas": 2078235, + "gasCost": 3, + "op": "DUP3", + "pc": 2575, "stack": [ "0x3aa18088", "0x149", @@ -723,11 +723,11 @@ ] }, { - "pc": 2576, - "op": "DUP5", - "gas": 2078544, - "gasCost": 3, "depth": 1, + "gas": 2078232, + "gasCost": 3, + "op": "DUP5", + "pc": 2576, "stack": [ "0x3aa18088", "0x149", @@ -740,11 +740,11 @@ ] }, { - "pc": 2577, - "op": "SUB", - "gas": 2078541, - "gasCost": 3, "depth": 1, + "gas": 2078229, + "gasCost": 3, + "op": "SUB", + "pc": 2577, "stack": [ "0x3aa18088", "0x149", @@ -758,11 +758,11 @@ ] }, { - "pc": 2578, - "op": "SLT", - "gas": 2078538, - "gasCost": 3, "depth": 1, + "gas": 2078226, + "gasCost": 3, + "op": "SLT", + "pc": 2578, "stack": [ "0x3aa18088", "0x149", @@ -775,11 +775,11 @@ ] }, { - "pc": 2579, - "op": "ISZERO", - "gas": 2078535, - "gasCost": 3, "depth": 1, + "gas": 2078223, + "gasCost": 3, + "op": "ISZERO", + "pc": 2579, "stack": [ "0x3aa18088", "0x149", @@ -791,11 +791,11 @@ ] }, { - "pc": 2580, - "op": "PUSH3", - "gas": 2078532, - "gasCost": 3, "depth": 1, + "gas": 2078220, + "gasCost": 3, + "op": "PUSH3", + "pc": 2580, "stack": [ "0x3aa18088", "0x149", @@ -807,11 +807,11 @@ ] }, { - "pc": 2584, - "op": "JUMPI", - "gas": 2078529, - "gasCost": 10, "depth": 1, + "gas": 2078217, + "gasCost": 10, + "op": "JUMPI", + "pc": 2584, "stack": [ "0x3aa18088", "0x149", @@ -824,11 +824,11 @@ ] }, { - "pc": 2595, - "op": "JUMPDEST", - "gas": 2078519, - "gasCost": 1, "depth": 1, + "gas": 2078207, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2595, "stack": [ "0x3aa18088", "0x149", @@ -839,11 +839,11 @@ ] }, { - "pc": 2596, - "op": "PUSH1", - "gas": 2078518, - "gasCost": 3, "depth": 1, + "gas": 2078206, + "gasCost": 3, + "op": "PUSH1", + "pc": 2596, "stack": [ "0x3aa18088", "0x149", @@ -854,11 +854,11 @@ ] }, { - "pc": 2598, - "op": "PUSH3", - "gas": 2078515, - "gasCost": 3, "depth": 1, + "gas": 2078203, + "gasCost": 3, + "op": "PUSH3", + "pc": 2598, "stack": [ "0x3aa18088", "0x149", @@ -870,11 +870,11 @@ ] }, { - "pc": 2602, - "op": "DUP5", - "gas": 2078512, - "gasCost": 3, "depth": 1, + "gas": 2078200, + "gasCost": 3, + "op": "DUP5", + "pc": 2602, "stack": [ "0x3aa18088", "0x149", @@ -887,11 +887,11 @@ ] }, { - "pc": 2603, - "op": "DUP3", - "gas": 2078509, - "gasCost": 3, "depth": 1, + "gas": 2078197, + "gasCost": 3, + "op": "DUP3", + "pc": 2603, "stack": [ "0x3aa18088", "0x149", @@ -905,11 +905,11 @@ ] }, { - "pc": 2604, - "op": "DUP6", - "gas": 2078506, - "gasCost": 3, "depth": 1, + "gas": 2078194, + "gasCost": 3, + "op": "DUP6", + "pc": 2604, "stack": [ "0x3aa18088", "0x149", @@ -924,11 +924,11 @@ ] }, { - "pc": 2605, - "op": "ADD", - "gas": 2078503, - "gasCost": 3, "depth": 1, + "gas": 2078191, + "gasCost": 3, + "op": "ADD", + "pc": 2605, "stack": [ "0x3aa18088", "0x149", @@ -944,11 +944,11 @@ ] }, { - "pc": 2606, - "op": "PUSH3", - "gas": 2078500, - "gasCost": 3, "depth": 1, + "gas": 2078188, + "gasCost": 3, + "op": "PUSH3", + "pc": 2606, "stack": [ "0x3aa18088", "0x149", @@ -963,11 +963,11 @@ ] }, { - "pc": 2610, - "op": "JUMP", - "gas": 2078497, - "gasCost": 8, "depth": 1, + "gas": 2078185, + "gasCost": 8, + "op": "JUMP", + "pc": 2610, "stack": [ "0x3aa18088", "0x149", @@ -983,11 +983,11 @@ ] }, { - "pc": 2547, - "op": "JUMPDEST", - "gas": 2078489, - "gasCost": 1, "depth": 1, + "gas": 2078177, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2547, "stack": [ "0x3aa18088", "0x149", @@ -1002,11 +1002,11 @@ ] }, { - "pc": 2548, - "op": "PUSH1", - "gas": 2078488, - "gasCost": 3, "depth": 1, + "gas": 2078176, + "gasCost": 3, + "op": "PUSH1", + "pc": 2548, "stack": [ "0x3aa18088", "0x149", @@ -1021,11 +1021,11 @@ ] }, { - "pc": 2550, - "op": "DUP2", - "gas": 2078485, - "gasCost": 3, "depth": 1, + "gas": 2078173, + "gasCost": 3, + "op": "DUP2", + "pc": 2550, "stack": [ "0x3aa18088", "0x149", @@ -1041,11 +1041,11 @@ ] }, { - "pc": 2551, - "op": "CALLDATALOAD", - "gas": 2078482, - "gasCost": 3, "depth": 1, + "gas": 2078170, + "gasCost": 3, + "op": "CALLDATALOAD", + "pc": 2551, "stack": [ "0x3aa18088", "0x149", @@ -1062,11 +1062,11 @@ ] }, { - "pc": 2552, - "op": "SWAP1", - "gas": 2078479, - "gasCost": 3, "depth": 1, + "gas": 2078167, + "gasCost": 3, + "op": "SWAP1", + "pc": 2552, "stack": [ "0x3aa18088", "0x149", @@ -1083,11 +1083,11 @@ ] }, { - "pc": 2553, - "op": "POP", - "gas": 2078476, - "gasCost": 2, "depth": 1, + "gas": 2078164, + "gasCost": 2, + "op": "POP", + "pc": 2553, "stack": [ "0x3aa18088", "0x149", @@ -1104,11 +1104,11 @@ ] }, { - "pc": 2554, - "op": "PUSH3", - "gas": 2078474, - "gasCost": 3, "depth": 1, + "gas": 2078162, + "gasCost": 3, + "op": "PUSH3", + "pc": 2554, "stack": [ "0x3aa18088", "0x149", @@ -1124,11 +1124,11 @@ ] }, { - "pc": 2558, - "op": "DUP2", - "gas": 2078471, - "gasCost": 3, "depth": 1, + "gas": 2078159, + "gasCost": 3, + "op": "DUP2", + "pc": 2558, "stack": [ "0x3aa18088", "0x149", @@ -1145,11 +1145,11 @@ ] }, { - "pc": 2559, - "op": "PUSH3", - "gas": 2078468, - "gasCost": 3, "depth": 1, + "gas": 2078156, + "gasCost": 3, + "op": "PUSH3", + "pc": 2559, "stack": [ "0x3aa18088", "0x149", @@ -1167,11 +1167,11 @@ ] }, { - "pc": 2563, - "op": "JUMP", - "gas": 2078465, - "gasCost": 8, "depth": 1, + "gas": 2078153, + "gasCost": 8, + "op": "JUMP", + "pc": 2563, "stack": [ "0x3aa18088", "0x149", @@ -1190,11 +1190,11 @@ ] }, { - "pc": 2521, - "op": "JUMPDEST", - "gas": 2078457, - "gasCost": 1, "depth": 1, + "gas": 2078145, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2521, "stack": [ "0x3aa18088", "0x149", @@ -1212,11 +1212,11 @@ ] }, { - "pc": 2522, - "op": "PUSH3", - "gas": 2078456, - "gasCost": 3, "depth": 1, + "gas": 2078144, + "gasCost": 3, + "op": "PUSH3", + "pc": 2522, "stack": [ "0x3aa18088", "0x149", @@ -1234,11 +1234,11 @@ ] }, { - "pc": 2526, - "op": "DUP2", - "gas": 2078453, - "gasCost": 3, "depth": 1, + "gas": 2078141, + "gasCost": 3, + "op": "DUP2", + "pc": 2526, "stack": [ "0x3aa18088", "0x149", @@ -1257,11 +1257,11 @@ ] }, { - "pc": 2527, - "op": "PUSH3", - "gas": 2078450, - "gasCost": 3, "depth": 1, + "gas": 2078138, + "gasCost": 3, + "op": "PUSH3", + "pc": 2527, "stack": [ "0x3aa18088", "0x149", @@ -1281,11 +1281,11 @@ ] }, { - "pc": 2531, - "op": "JUMP", - "gas": 2078447, - "gasCost": 8, "depth": 1, + "gas": 2078135, + "gasCost": 8, + "op": "JUMP", + "pc": 2531, "stack": [ "0x3aa18088", "0x149", @@ -1306,11 +1306,11 @@ ] }, { - "pc": 2394, - "op": "JUMPDEST", - "gas": 2078439, - "gasCost": 1, "depth": 1, + "gas": 2078127, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2394, "stack": [ "0x3aa18088", "0x149", @@ -1330,11 +1330,11 @@ ] }, { - "pc": 2395, - "op": "PUSH1", - "gas": 2078438, - "gasCost": 3, "depth": 1, + "gas": 2078126, + "gasCost": 3, + "op": "PUSH1", + "pc": 2395, "stack": [ "0x3aa18088", "0x149", @@ -1354,11 +1354,11 @@ ] }, { - "pc": 2397, - "op": "DUP2", - "gas": 2078435, - "gasCost": 3, "depth": 1, + "gas": 2078123, + "gasCost": 3, + "op": "DUP2", + "pc": 2397, "stack": [ "0x3aa18088", "0x149", @@ -1379,11 +1379,11 @@ ] }, { - "pc": 2398, - "op": "SWAP1", - "gas": 2078432, - "gasCost": 3, "depth": 1, + "gas": 2078120, + "gasCost": 3, + "op": "SWAP1", + "pc": 2398, "stack": [ "0x3aa18088", "0x149", @@ -1405,11 +1405,11 @@ ] }, { - "pc": 2399, - "op": "POP", - "gas": 2078429, - "gasCost": 2, "depth": 1, + "gas": 2078117, + "gasCost": 2, + "op": "POP", + "pc": 2399, "stack": [ "0x3aa18088", "0x149", @@ -1431,11 +1431,11 @@ ] }, { - "pc": 2400, - "op": "SWAP2", - "gas": 2078427, - "gasCost": 3, "depth": 1, + "gas": 2078115, + "gasCost": 3, + "op": "SWAP2", + "pc": 2400, "stack": [ "0x3aa18088", "0x149", @@ -1456,11 +1456,11 @@ ] }, { - "pc": 2401, - "op": "SWAP1", - "gas": 2078424, - "gasCost": 3, "depth": 1, + "gas": 2078112, + "gasCost": 3, + "op": "SWAP1", + "pc": 2401, "stack": [ "0x3aa18088", "0x149", @@ -1481,11 +1481,11 @@ ] }, { - "pc": 2402, - "op": "POP", - "gas": 2078421, - "gasCost": 2, "depth": 1, + "gas": 2078109, + "gasCost": 2, + "op": "POP", + "pc": 2402, "stack": [ "0x3aa18088", "0x149", @@ -1506,11 +1506,11 @@ ] }, { - "pc": 2403, - "op": "JUMP", - "gas": 2078419, - "gasCost": 8, "depth": 1, + "gas": 2078107, + "gasCost": 8, + "op": "JUMP", + "pc": 2403, "stack": [ "0x3aa18088", "0x149", @@ -1530,11 +1530,11 @@ ] }, { - "pc": 2532, - "op": "JUMPDEST", - "gas": 2078411, - "gasCost": 1, "depth": 1, + "gas": 2078099, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2532, "stack": [ "0x3aa18088", "0x149", @@ -1553,11 +1553,11 @@ ] }, { - "pc": 2533, - "op": "DUP2", - "gas": 2078410, - "gasCost": 3, "depth": 1, + "gas": 2078098, + "gasCost": 3, + "op": "DUP2", + "pc": 2533, "stack": [ "0x3aa18088", "0x149", @@ -1576,11 +1576,11 @@ ] }, { - "pc": 2534, - "op": "EQ", - "gas": 2078407, - "gasCost": 3, "depth": 1, + "gas": 2078095, + "gasCost": 3, + "op": "EQ", + "pc": 2534, "stack": [ "0x3aa18088", "0x149", @@ -1600,11 +1600,11 @@ ] }, { - "pc": 2535, - "op": "PUSH3", - "gas": 2078404, - "gasCost": 3, "depth": 1, + "gas": 2078092, + "gasCost": 3, + "op": "PUSH3", + "pc": 2535, "stack": [ "0x3aa18088", "0x149", @@ -1623,11 +1623,11 @@ ] }, { - "pc": 2539, - "op": "JUMPI", - "gas": 2078401, - "gasCost": 10, "depth": 1, + "gas": 2078089, + "gasCost": 10, + "op": "JUMPI", + "pc": 2539, "stack": [ "0x3aa18088", "0x149", @@ -1647,11 +1647,11 @@ ] }, { - "pc": 2544, - "op": "JUMPDEST", - "gas": 2078391, - "gasCost": 1, "depth": 1, + "gas": 2078079, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2544, "stack": [ "0x3aa18088", "0x149", @@ -1669,11 +1669,11 @@ ] }, { - "pc": 2545, - "op": "POP", - "gas": 2078390, - "gasCost": 2, "depth": 1, + "gas": 2078078, + "gasCost": 2, + "op": "POP", + "pc": 2545, "stack": [ "0x3aa18088", "0x149", @@ -1691,11 +1691,11 @@ ] }, { - "pc": 2546, - "op": "JUMP", - "gas": 2078388, - "gasCost": 8, "depth": 1, + "gas": 2078076, + "gasCost": 8, + "op": "JUMP", + "pc": 2546, "stack": [ "0x3aa18088", "0x149", @@ -1712,11 +1712,11 @@ ] }, { - "pc": 2564, - "op": "JUMPDEST", - "gas": 2078380, - "gasCost": 1, "depth": 1, + "gas": 2078068, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2564, "stack": [ "0x3aa18088", "0x149", @@ -1732,11 +1732,11 @@ ] }, { - "pc": 2565, - "op": "SWAP3", - "gas": 2078379, - "gasCost": 3, "depth": 1, + "gas": 2078067, + "gasCost": 3, + "op": "SWAP3", + "pc": 2565, "stack": [ "0x3aa18088", "0x149", @@ -1752,11 +1752,11 @@ ] }, { - "pc": 2566, - "op": "SWAP2", - "gas": 2078376, - "gasCost": 3, "depth": 1, + "gas": 2078064, + "gasCost": 3, + "op": "SWAP2", + "pc": 2566, "stack": [ "0x3aa18088", "0x149", @@ -1772,11 +1772,11 @@ ] }, { - "pc": 2567, - "op": "POP", - "gas": 2078373, - "gasCost": 2, "depth": 1, + "gas": 2078061, + "gasCost": 2, + "op": "POP", + "pc": 2567, "stack": [ "0x3aa18088", "0x149", @@ -1792,11 +1792,11 @@ ] }, { - "pc": 2568, - "op": "POP", - "gas": 2078371, - "gasCost": 2, "depth": 1, + "gas": 2078059, + "gasCost": 2, + "op": "POP", + "pc": 2568, "stack": [ "0x3aa18088", "0x149", @@ -1811,11 +1811,11 @@ ] }, { - "pc": 2569, - "op": "JUMP", - "gas": 2078369, - "gasCost": 8, "depth": 1, + "gas": 2078057, + "gasCost": 8, + "op": "JUMP", + "pc": 2569, "stack": [ "0x3aa18088", "0x149", @@ -1829,11 +1829,11 @@ ] }, { - "pc": 2611, - "op": "JUMPDEST", - "gas": 2078361, - "gasCost": 1, "depth": 1, + "gas": 2078049, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2611, "stack": [ "0x3aa18088", "0x149", @@ -1846,11 +1846,11 @@ ] }, { - "pc": 2612, - "op": "SWAP2", - "gas": 2078360, - "gasCost": 3, "depth": 1, + "gas": 2078048, + "gasCost": 3, + "op": "SWAP2", + "pc": 2612, "stack": [ "0x3aa18088", "0x149", @@ -1863,11 +1863,11 @@ ] }, { - "pc": 2613, - "op": "POP", - "gas": 2078357, - "gasCost": 2, "depth": 1, + "gas": 2078045, + "gasCost": 2, + "op": "POP", + "pc": 2613, "stack": [ "0x3aa18088", "0x149", @@ -1880,11 +1880,11 @@ ] }, { - "pc": 2614, - "op": "POP", - "gas": 2078355, - "gasCost": 2, "depth": 1, + "gas": 2078043, + "gasCost": 2, + "op": "POP", + "pc": 2614, "stack": [ "0x3aa18088", "0x149", @@ -1896,11 +1896,11 @@ ] }, { - "pc": 2615, - "op": "SWAP3", - "gas": 2078353, - "gasCost": 3, "depth": 1, + "gas": 2078041, + "gasCost": 3, + "op": "SWAP3", + "pc": 2615, "stack": [ "0x3aa18088", "0x149", @@ -1911,11 +1911,11 @@ ] }, { - "pc": 2616, - "op": "SWAP2", - "gas": 2078350, - "gasCost": 3, "depth": 1, + "gas": 2078038, + "gasCost": 3, + "op": "SWAP2", + "pc": 2616, "stack": [ "0x3aa18088", "0x149", @@ -1926,11 +1926,11 @@ ] }, { - "pc": 2617, - "op": "POP", - "gas": 2078347, - "gasCost": 2, "depth": 1, + "gas": 2078035, + "gasCost": 2, + "op": "POP", + "pc": 2617, "stack": [ "0x3aa18088", "0x149", @@ -1941,11 +1941,11 @@ ] }, { - "pc": 2618, - "op": "POP", - "gas": 2078345, - "gasCost": 2, "depth": 1, + "gas": 2078033, + "gasCost": 2, + "op": "POP", + "pc": 2618, "stack": [ "0x3aa18088", "0x149", @@ -1955,11 +1955,11 @@ ] }, { - "pc": 2619, - "op": "JUMP", - "gas": 2078343, - "gasCost": 8, "depth": 1, + "gas": 2078031, + "gasCost": 8, + "op": "JUMP", + "pc": 2619, "stack": [ "0x3aa18088", "0x149", @@ -1968,11 +1968,11 @@ ] }, { - "pc": 323, - "op": "JUMPDEST", - "gas": 2078335, - "gasCost": 1, "depth": 1, + "gas": 2078023, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 323, "stack": [ "0x3aa18088", "0x149", @@ -1980,11 +1980,11 @@ ] }, { - "pc": 324, - "op": "PUSH3", - "gas": 2078334, - "gasCost": 3, "depth": 1, + "gas": 2078022, + "gasCost": 3, + "op": "PUSH3", + "pc": 324, "stack": [ "0x3aa18088", "0x149", @@ -1992,11 +1992,11 @@ ] }, { - "pc": 328, - "op": "JUMP", - "gas": 2078331, - "gasCost": 8, "depth": 1, + "gas": 2078019, + "gasCost": 8, + "op": "JUMP", + "pc": 328, "stack": [ "0x3aa18088", "0x149", @@ -2005,11 +2005,11 @@ ] }, { - "pc": 758, - "op": "JUMPDEST", - "gas": 2078323, - "gasCost": 1, "depth": 1, + "gas": 2078011, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 758, "stack": [ "0x3aa18088", "0x149", @@ -2017,11 +2017,11 @@ ] }, { - "pc": 759, - "op": "PUSH1", - "gas": 2078322, - "gasCost": 3, "depth": 1, + "gas": 2078010, + "gasCost": 3, + "op": "PUSH1", + "pc": 759, "stack": [ "0x3aa18088", "0x149", @@ -2029,11 +2029,11 @@ ] }, { - "pc": 761, - "op": "CALLER", - "gas": 2078319, - "gasCost": 2, "depth": 1, + "gas": 2078007, + "gasCost": 2, + "op": "CALLER", + "pc": 761, "stack": [ "0x3aa18088", "0x149", @@ -2042,11 +2042,11 @@ ] }, { - "pc": 762, - "op": "PUSH20", - "gas": 2078317, - "gasCost": 3, "depth": 1, + "gas": 2078005, + "gasCost": 3, + "op": "PUSH20", + "pc": 762, "stack": [ "0x3aa18088", "0x149", @@ -2056,11 +2056,11 @@ ] }, { - "pc": 783, - "op": "AND", - "gas": 2078314, - "gasCost": 3, "depth": 1, + "gas": 2078002, + "gasCost": 3, + "op": "AND", + "pc": 783, "stack": [ "0x3aa18088", "0x149", @@ -2071,11 +2071,11 @@ ] }, { - "pc": 784, - "op": "PUSH32", - "gas": 2078311, - "gasCost": 3, "depth": 1, + "gas": 2077999, + "gasCost": 3, + "op": "PUSH32", + "pc": 784, "stack": [ "0x3aa18088", "0x149", @@ -2085,11 +2085,11 @@ ] }, { - "pc": 817, - "op": "DUP4", - "gas": 2078308, - "gasCost": 3, "depth": 1, + "gas": 2077996, + "gasCost": 3, + "op": "DUP4", + "pc": 817, "stack": [ "0x3aa18088", "0x149", @@ -2100,11 +2100,11 @@ ] }, { - "pc": 818, - "op": "PUSH1", - "gas": 2078305, - "gasCost": 3, "depth": 1, + "gas": 2077993, + "gasCost": 3, + "op": "PUSH1", + "pc": 818, "stack": [ "0x3aa18088", "0x149", @@ -2116,11 +2116,11 @@ ] }, { - "pc": 820, - "op": "MLOAD", - "gas": 2078302, - "gasCost": 3, "depth": 1, + "gas": 2077990, + "gasCost": 3, + "op": "MLOAD", + "pc": 820, "stack": [ "0x3aa18088", "0x149", @@ -2133,11 +2133,11 @@ ] }, { - "pc": 821, - "op": "PUSH3", - "gas": 2078299, - "gasCost": 3, "depth": 1, + "gas": 2077987, + "gasCost": 3, + "op": "PUSH3", + "pc": 821, "stack": [ "0x3aa18088", "0x149", @@ -2150,11 +2150,11 @@ ] }, { - "pc": 825, - "op": "SWAP2", - "gas": 2078296, - "gasCost": 3, "depth": 1, + "gas": 2077984, + "gasCost": 3, + "op": "SWAP2", + "pc": 825, "stack": [ "0x3aa18088", "0x149", @@ -2168,11 +2168,11 @@ ] }, { - "pc": 826, - "op": "SWAP1", - "gas": 2078293, - "gasCost": 3, "depth": 1, + "gas": 2077981, + "gasCost": 3, + "op": "SWAP1", + "pc": 826, "stack": [ "0x3aa18088", "0x149", @@ -2186,11 +2186,11 @@ ] }, { - "pc": 827, - "op": "PUSH3", - "gas": 2078290, - "gasCost": 3, "depth": 1, + "gas": 2077978, + "gasCost": 3, + "op": "PUSH3", + "pc": 827, "stack": [ "0x3aa18088", "0x149", @@ -2204,11 +2204,11 @@ ] }, { - "pc": 831, - "op": "JUMP", - "gas": 2078287, - "gasCost": 8, "depth": 1, + "gas": 2077975, + "gasCost": 8, + "op": "JUMP", + "pc": 831, "stack": [ "0x3aa18088", "0x149", @@ -2223,11 +2223,11 @@ ] }, { - "pc": 3104, - "op": "JUMPDEST", - "gas": 2078279, - "gasCost": 1, "depth": 1, + "gas": 2077967, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 3104, "stack": [ "0x3aa18088", "0x149", @@ -2241,11 +2241,11 @@ ] }, { - "pc": 3105, - "op": "PUSH1", - "gas": 2078278, - "gasCost": 3, "depth": 1, + "gas": 2077966, + "gasCost": 3, + "op": "PUSH1", + "pc": 3105, "stack": [ "0x3aa18088", "0x149", @@ -2259,11 +2259,11 @@ ] }, { - "pc": 3107, - "op": "PUSH1", - "gas": 2078275, - "gasCost": 3, "depth": 1, + "gas": 2077963, + "gasCost": 3, + "op": "PUSH1", + "pc": 3107, "stack": [ "0x3aa18088", "0x149", @@ -2278,11 +2278,11 @@ ] }, { - "pc": 3109, - "op": "DUP3", - "gas": 2078272, - "gasCost": 3, "depth": 1, + "gas": 2077960, + "gasCost": 3, + "op": "DUP3", + "pc": 3109, "stack": [ "0x3aa18088", "0x149", @@ -2298,11 +2298,11 @@ ] }, { - "pc": 3110, - "op": "ADD", - "gas": 2078269, - "gasCost": 3, "depth": 1, + "gas": 2077957, + "gasCost": 3, + "op": "ADD", + "pc": 3110, "stack": [ "0x3aa18088", "0x149", @@ -2319,11 +2319,11 @@ ] }, { - "pc": 3111, - "op": "SWAP1", - "gas": 2078266, - "gasCost": 3, "depth": 1, + "gas": 2077954, + "gasCost": 3, + "op": "SWAP1", + "pc": 3111, "stack": [ "0x3aa18088", "0x149", @@ -2339,11 +2339,11 @@ ] }, { - "pc": 3112, - "op": "POP", - "gas": 2078263, - "gasCost": 2, "depth": 1, + "gas": 2077951, + "gasCost": 2, + "op": "POP", + "pc": 3112, "stack": [ "0x3aa18088", "0x149", @@ -2359,11 +2359,11 @@ ] }, { - "pc": 3113, - "op": "PUSH3", - "gas": 2078261, - "gasCost": 3, "depth": 1, + "gas": 2077949, + "gasCost": 3, + "op": "PUSH3", + "pc": 3113, "stack": [ "0x3aa18088", "0x149", @@ -2378,11 +2378,11 @@ ] }, { - "pc": 3117, - "op": "PUSH1", - "gas": 2078258, - "gasCost": 3, "depth": 1, + "gas": 2077946, + "gasCost": 3, + "op": "PUSH1", + "pc": 3117, "stack": [ "0x3aa18088", "0x149", @@ -2398,11 +2398,11 @@ ] }, { - "pc": 3119, - "op": "DUP4", - "gas": 2078255, - "gasCost": 3, "depth": 1, + "gas": 2077943, + "gasCost": 3, + "op": "DUP4", + "pc": 3119, "stack": [ "0x3aa18088", "0x149", @@ -2419,11 +2419,11 @@ ] }, { - "pc": 3120, - "op": "ADD", - "gas": 2078252, - "gasCost": 3, "depth": 1, + "gas": 2077940, + "gasCost": 3, + "op": "ADD", + "pc": 3120, "stack": [ "0x3aa18088", "0x149", @@ -2441,11 +2441,11 @@ ] }, { - "pc": 3121, - "op": "DUP5", - "gas": 2078249, - "gasCost": 3, "depth": 1, + "gas": 2077937, + "gasCost": 3, + "op": "DUP5", + "pc": 3121, "stack": [ "0x3aa18088", "0x149", @@ -2462,11 +2462,11 @@ ] }, { - "pc": 3122, - "op": "PUSH3", - "gas": 2078246, - "gasCost": 3, "depth": 1, + "gas": 2077934, + "gasCost": 3, + "op": "PUSH3", + "pc": 3122, "stack": [ "0x3aa18088", "0x149", @@ -2484,11 +2484,11 @@ ] }, { - "pc": 3126, - "op": "JUMP", - "gas": 2078243, - "gasCost": 8, "depth": 1, + "gas": 2077931, + "gasCost": 8, + "op": "JUMP", + "pc": 3126, "stack": [ "0x3aa18088", "0x149", @@ -2507,11 +2507,11 @@ ] }, { - "pc": 2404, - "op": "JUMPDEST", - "gas": 2078235, - "gasCost": 1, "depth": 1, + "gas": 2077923, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2404, "stack": [ "0x3aa18088", "0x149", @@ -2529,11 +2529,11 @@ ] }, { - "pc": 2405, - "op": "PUSH3", - "gas": 2078234, - "gasCost": 3, "depth": 1, + "gas": 2077922, + "gasCost": 3, + "op": "PUSH3", + "pc": 2405, "stack": [ "0x3aa18088", "0x149", @@ -2551,11 +2551,11 @@ ] }, { - "pc": 2409, - "op": "DUP2", - "gas": 2078231, - "gasCost": 3, "depth": 1, + "gas": 2077919, + "gasCost": 3, + "op": "DUP2", + "pc": 2409, "stack": [ "0x3aa18088", "0x149", @@ -2574,11 +2574,11 @@ ] }, { - "pc": 2410, - "op": "PUSH3", - "gas": 2078228, - "gasCost": 3, "depth": 1, + "gas": 2077916, + "gasCost": 3, + "op": "PUSH3", + "pc": 2410, "stack": [ "0x3aa18088", "0x149", @@ -2598,11 +2598,11 @@ ] }, { - "pc": 2414, - "op": "JUMP", - "gas": 2078225, - "gasCost": 8, "depth": 1, + "gas": 2077913, + "gasCost": 8, + "op": "JUMP", + "pc": 2414, "stack": [ "0x3aa18088", "0x149", @@ -2623,11 +2623,11 @@ ] }, { - "pc": 2394, - "op": "JUMPDEST", - "gas": 2078217, - "gasCost": 1, "depth": 1, + "gas": 2077905, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2394, "stack": [ "0x3aa18088", "0x149", @@ -2647,11 +2647,11 @@ ] }, { - "pc": 2395, - "op": "PUSH1", - "gas": 2078216, - "gasCost": 3, "depth": 1, + "gas": 2077904, + "gasCost": 3, + "op": "PUSH1", + "pc": 2395, "stack": [ "0x3aa18088", "0x149", @@ -2671,11 +2671,11 @@ ] }, { - "pc": 2397, - "op": "DUP2", - "gas": 2078213, - "gasCost": 3, "depth": 1, + "gas": 2077901, + "gasCost": 3, + "op": "DUP2", + "pc": 2397, "stack": [ "0x3aa18088", "0x149", @@ -2696,11 +2696,11 @@ ] }, { - "pc": 2398, - "op": "SWAP1", - "gas": 2078210, - "gasCost": 3, "depth": 1, + "gas": 2077898, + "gasCost": 3, + "op": "SWAP1", + "pc": 2398, "stack": [ "0x3aa18088", "0x149", @@ -2722,11 +2722,11 @@ ] }, { - "pc": 2399, - "op": "POP", - "gas": 2078207, - "gasCost": 2, "depth": 1, + "gas": 2077895, + "gasCost": 2, + "op": "POP", + "pc": 2399, "stack": [ "0x3aa18088", "0x149", @@ -2748,11 +2748,11 @@ ] }, { - "pc": 2400, - "op": "SWAP2", - "gas": 2078205, - "gasCost": 3, "depth": 1, + "gas": 2077893, + "gasCost": 3, + "op": "SWAP2", + "pc": 2400, "stack": [ "0x3aa18088", "0x149", @@ -2773,11 +2773,11 @@ ] }, { - "pc": 2401, - "op": "SWAP1", - "gas": 2078202, - "gasCost": 3, "depth": 1, + "gas": 2077890, + "gasCost": 3, + "op": "SWAP1", + "pc": 2401, "stack": [ "0x3aa18088", "0x149", @@ -2798,11 +2798,11 @@ ] }, { - "pc": 2402, - "op": "POP", - "gas": 2078199, - "gasCost": 2, "depth": 1, + "gas": 2077887, + "gasCost": 2, + "op": "POP", + "pc": 2402, "stack": [ "0x3aa18088", "0x149", @@ -2823,11 +2823,11 @@ ] }, { - "pc": 2403, - "op": "JUMP", - "gas": 2078197, - "gasCost": 8, "depth": 1, + "gas": 2077885, + "gasCost": 8, + "op": "JUMP", + "pc": 2403, "stack": [ "0x3aa18088", "0x149", @@ -2847,11 +2847,11 @@ ] }, { - "pc": 2415, - "op": "JUMPDEST", - "gas": 2078189, - "gasCost": 1, "depth": 1, + "gas": 2077877, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2415, "stack": [ "0x3aa18088", "0x149", @@ -2870,11 +2870,11 @@ ] }, { - "pc": 2416, - "op": "DUP3", - "gas": 2078188, - "gasCost": 3, "depth": 1, + "gas": 2077876, + "gasCost": 3, + "op": "DUP3", + "pc": 2416, "stack": [ "0x3aa18088", "0x149", @@ -2893,11 +2893,11 @@ ] }, { - "pc": 2417, - "op": "MSTORE", - "gas": 2078185, - "gasCost": 9, "depth": 1, + "gas": 2077873, + "gasCost": 9, + "op": "MSTORE", + "pc": 2417, "stack": [ "0x3aa18088", "0x149", @@ -2917,11 +2917,11 @@ ] }, { - "pc": 2418, - "op": "POP", - "gas": 2078176, - "gasCost": 2, "depth": 1, + "gas": 2077864, + "gasCost": 2, + "op": "POP", + "pc": 2418, "stack": [ "0x3aa18088", "0x149", @@ -2939,11 +2939,11 @@ ] }, { - "pc": 2419, - "op": "POP", - "gas": 2078174, - "gasCost": 2, "depth": 1, + "gas": 2077862, + "gasCost": 2, + "op": "POP", + "pc": 2419, "stack": [ "0x3aa18088", "0x149", @@ -2960,11 +2960,11 @@ ] }, { - "pc": 2420, - "op": "JUMP", - "gas": 2078172, - "gasCost": 8, "depth": 1, + "gas": 2077860, + "gasCost": 8, + "op": "JUMP", + "pc": 2420, "stack": [ "0x3aa18088", "0x149", @@ -2980,11 +2980,11 @@ ] }, { - "pc": 3127, - "op": "JUMPDEST", - "gas": 2078164, - "gasCost": 1, "depth": 1, + "gas": 2077852, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 3127, "stack": [ "0x3aa18088", "0x149", @@ -2999,11 +2999,11 @@ ] }, { - "pc": 3128, - "op": "DUP2", - "gas": 2078163, - "gasCost": 3, "depth": 1, + "gas": 2077851, + "gasCost": 3, + "op": "DUP2", + "pc": 3128, "stack": [ "0x3aa18088", "0x149", @@ -3018,11 +3018,11 @@ ] }, { - "pc": 3129, - "op": "DUP2", - "gas": 2078160, - "gasCost": 3, "depth": 1, + "gas": 2077848, + "gasCost": 3, + "op": "DUP2", + "pc": 3129, "stack": [ "0x3aa18088", "0x149", @@ -3038,11 +3038,11 @@ ] }, { - "pc": 3130, - "op": "SUB", - "gas": 2078157, - "gasCost": 3, "depth": 1, + "gas": 2077845, + "gasCost": 3, + "op": "SUB", + "pc": 3130, "stack": [ "0x3aa18088", "0x149", @@ -3059,11 +3059,11 @@ ] }, { - "pc": 3131, - "op": "PUSH1", - "gas": 2078154, - "gasCost": 3, "depth": 1, + "gas": 2077842, + "gasCost": 3, + "op": "PUSH1", + "pc": 3131, "stack": [ "0x3aa18088", "0x149", @@ -3079,11 +3079,11 @@ ] }, { - "pc": 3133, - "op": "DUP4", - "gas": 2078151, - "gasCost": 3, "depth": 1, + "gas": 2077839, + "gasCost": 3, + "op": "DUP4", + "pc": 3133, "stack": [ "0x3aa18088", "0x149", @@ -3100,11 +3100,11 @@ ] }, { - "pc": 3134, - "op": "ADD", - "gas": 2078148, - "gasCost": 3, "depth": 1, + "gas": 2077836, + "gasCost": 3, + "op": "ADD", + "pc": 3134, "stack": [ "0x3aa18088", "0x149", @@ -3122,11 +3122,11 @@ ] }, { - "pc": 3135, - "op": "MSTORE", - "gas": 2078145, - "gasCost": 6, "depth": 1, + "gas": 2077833, + "gasCost": 6, + "op": "MSTORE", + "pc": 3135, "stack": [ "0x3aa18088", "0x149", @@ -3143,11 +3143,11 @@ ] }, { - "pc": 3136, - "op": "PUSH3", - "gas": 2078139, - "gasCost": 3, "depth": 1, + "gas": 2077827, + "gasCost": 3, + "op": "PUSH3", + "pc": 3136, "stack": [ "0x3aa18088", "0x149", @@ -3162,11 +3162,11 @@ ] }, { - "pc": 3140, - "op": "DUP2", - "gas": 2078136, - "gasCost": 3, "depth": 1, + "gas": 2077824, + "gasCost": 3, + "op": "DUP2", + "pc": 3140, "stack": [ "0x3aa18088", "0x149", @@ -3182,11 +3182,11 @@ ] }, { - "pc": 3141, - "op": "PUSH3", - "gas": 2078133, - "gasCost": 3, "depth": 1, + "gas": 2077821, + "gasCost": 3, + "op": "PUSH3", + "pc": 3141, "stack": [ "0x3aa18088", "0x149", @@ -3203,11 +3203,11 @@ ] }, { - "pc": 3145, - "op": "JUMP", - "gas": 2078130, - "gasCost": 8, "depth": 1, + "gas": 2077818, + "gasCost": 8, + "op": "JUMP", + "pc": 3145, "stack": [ "0x3aa18088", "0x149", @@ -3225,11 +3225,11 @@ ] }, { - "pc": 3065, - "op": "JUMPDEST", - "gas": 2078122, - "gasCost": 1, "depth": 1, + "gas": 2077810, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 3065, "stack": [ "0x3aa18088", "0x149", @@ -3246,11 +3246,11 @@ ] }, { - "pc": 3066, - "op": "PUSH1", - "gas": 2078121, - "gasCost": 3, "depth": 1, + "gas": 2077809, + "gasCost": 3, + "op": "PUSH1", + "pc": 3066, "stack": [ "0x3aa18088", "0x149", @@ -3267,11 +3267,11 @@ ] }, { - "pc": 3068, - "op": "PUSH3", - "gas": 2078118, - "gasCost": 3, "depth": 1, + "gas": 2077806, + "gasCost": 3, + "op": "PUSH3", + "pc": 3068, "stack": [ "0x3aa18088", "0x149", @@ -3289,11 +3289,11 @@ ] }, { - "pc": 3072, - "op": "PUSH1", - "gas": 2078115, - "gasCost": 3, "depth": 1, + "gas": 2077803, + "gasCost": 3, + "op": "PUSH1", + "pc": 3072, "stack": [ "0x3aa18088", "0x149", @@ -3312,11 +3312,11 @@ ] }, { - "pc": 3074, - "op": "DUP4", - "gas": 2078112, - "gasCost": 3, "depth": 1, + "gas": 2077800, + "gasCost": 3, + "op": "DUP4", + "pc": 3074, "stack": [ "0x3aa18088", "0x149", @@ -3336,11 +3336,11 @@ ] }, { - "pc": 3075, - "op": "PUSH3", - "gas": 2078109, - "gasCost": 3, "depth": 1, + "gas": 2077797, + "gasCost": 3, + "op": "PUSH3", + "pc": 3075, "stack": [ "0x3aa18088", "0x149", @@ -3361,11 +3361,11 @@ ] }, { - "pc": 3079, - "op": "JUMP", - "gas": 2078106, - "gasCost": 8, "depth": 1, + "gas": 2077794, + "gasCost": 8, + "op": "JUMP", + "pc": 3079, "stack": [ "0x3aa18088", "0x149", @@ -3387,11 +3387,11 @@ ] }, { - "pc": 2771, - "op": "JUMPDEST", - "gas": 2078098, - "gasCost": 1, "depth": 1, + "gas": 2077786, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2771, "stack": [ "0x3aa18088", "0x149", @@ -3412,11 +3412,11 @@ ] }, { - "pc": 2772, - "op": "PUSH1", - "gas": 2078097, - "gasCost": 3, "depth": 1, + "gas": 2077785, + "gasCost": 3, + "op": "PUSH1", + "pc": 2772, "stack": [ "0x3aa18088", "0x149", @@ -3437,11 +3437,11 @@ ] }, { - "pc": 2774, - "op": "DUP3", - "gas": 2078094, - "gasCost": 3, "depth": 1, + "gas": 2077782, + "gasCost": 3, + "op": "DUP3", + "pc": 2774, "stack": [ "0x3aa18088", "0x149", @@ -3463,11 +3463,11 @@ ] }, { - "pc": 2775, - "op": "DUP3", - "gas": 2078091, - "gasCost": 3, "depth": 1, + "gas": 2077779, + "gasCost": 3, + "op": "DUP3", + "pc": 2775, "stack": [ "0x3aa18088", "0x149", @@ -3490,11 +3490,11 @@ ] }, { - "pc": 2776, - "op": "MSTORE", - "gas": 2078088, - "gasCost": 6, "depth": 1, + "gas": 2077776, + "gasCost": 6, + "op": "MSTORE", + "pc": 2776, "stack": [ "0x3aa18088", "0x149", @@ -3518,11 +3518,11 @@ ] }, { - "pc": 2777, - "op": "PUSH1", - "gas": 2078082, - "gasCost": 3, "depth": 1, + "gas": 2077770, + "gasCost": 3, + "op": "PUSH1", + "pc": 2777, "stack": [ "0x3aa18088", "0x149", @@ -3544,11 +3544,11 @@ ] }, { - "pc": 2779, - "op": "DUP3", - "gas": 2078079, - "gasCost": 3, "depth": 1, + "gas": 2077767, + "gasCost": 3, + "op": "DUP3", + "pc": 2779, "stack": [ "0x3aa18088", "0x149", @@ -3571,11 +3571,11 @@ ] }, { - "pc": 2780, - "op": "ADD", - "gas": 2078076, - "gasCost": 3, "depth": 1, + "gas": 2077764, + "gasCost": 3, + "op": "ADD", + "pc": 2780, "stack": [ "0x3aa18088", "0x149", @@ -3599,11 +3599,11 @@ ] }, { - "pc": 2781, - "op": "SWAP1", - "gas": 2078073, - "gasCost": 3, "depth": 1, + "gas": 2077761, + "gasCost": 3, + "op": "SWAP1", + "pc": 2781, "stack": [ "0x3aa18088", "0x149", @@ -3626,11 +3626,11 @@ ] }, { - "pc": 2782, - "op": "POP", - "gas": 2078070, - "gasCost": 2, "depth": 1, + "gas": 2077758, + "gasCost": 2, + "op": "POP", + "pc": 2782, "stack": [ "0x3aa18088", "0x149", @@ -3653,11 +3653,11 @@ ] }, { - "pc": 2783, - "op": "SWAP3", - "gas": 2078068, - "gasCost": 3, "depth": 1, + "gas": 2077756, + "gasCost": 3, + "op": "SWAP3", + "pc": 2783, "stack": [ "0x3aa18088", "0x149", @@ -3679,11 +3679,11 @@ ] }, { - "pc": 2784, - "op": "SWAP2", - "gas": 2078065, - "gasCost": 3, "depth": 1, + "gas": 2077753, + "gasCost": 3, + "op": "SWAP2", + "pc": 2784, "stack": [ "0x3aa18088", "0x149", @@ -3705,11 +3705,11 @@ ] }, { - "pc": 2785, - "op": "POP", - "gas": 2078062, - "gasCost": 2, "depth": 1, + "gas": 2077750, + "gasCost": 2, + "op": "POP", + "pc": 2785, "stack": [ "0x3aa18088", "0x149", @@ -3731,11 +3731,11 @@ ] }, { - "pc": 2786, - "op": "POP", - "gas": 2078060, - "gasCost": 2, "depth": 1, + "gas": 2077748, + "gasCost": 2, + "op": "POP", + "pc": 2786, "stack": [ "0x3aa18088", "0x149", @@ -3756,11 +3756,11 @@ ] }, { - "pc": 2787, - "op": "JUMP", - "gas": 2078058, - "gasCost": 8, "depth": 1, + "gas": 2077746, + "gasCost": 8, + "op": "JUMP", + "pc": 2787, "stack": [ "0x3aa18088", "0x149", @@ -3780,11 +3780,11 @@ ] }, { - "pc": 3080, - "op": "JUMPDEST", - "gas": 2078050, - "gasCost": 1, "depth": 1, + "gas": 2077738, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 3080, "stack": [ "0x3aa18088", "0x149", @@ -3803,11 +3803,11 @@ ] }, { - "pc": 3081, - "op": "SWAP2", - "gas": 2078049, - "gasCost": 3, "depth": 1, + "gas": 2077737, + "gasCost": 3, + "op": "SWAP2", + "pc": 3081, "stack": [ "0x3aa18088", "0x149", @@ -3826,11 +3826,11 @@ ] }, { - "pc": 3082, - "op": "POP", - "gas": 2078046, - "gasCost": 2, "depth": 1, + "gas": 2077734, + "gasCost": 2, + "op": "POP", + "pc": 3082, "stack": [ "0x3aa18088", "0x149", @@ -3849,11 +3849,11 @@ ] }, { - "pc": 3083, - "op": "PUSH3", - "gas": 2078044, - "gasCost": 3, "depth": 1, + "gas": 2077732, + "gasCost": 3, + "op": "PUSH3", + "pc": 3083, "stack": [ "0x3aa18088", "0x149", @@ -3871,11 +3871,11 @@ ] }, { - "pc": 3087, - "op": "DUP3", - "gas": 2078041, - "gasCost": 3, "depth": 1, + "gas": 2077729, + "gasCost": 3, + "op": "DUP3", + "pc": 3087, "stack": [ "0x3aa18088", "0x149", @@ -3894,11 +3894,11 @@ ] }, { - "pc": 3088, - "op": "PUSH3", - "gas": 2078038, - "gasCost": 3, "depth": 1, + "gas": 2077726, + "gasCost": 3, + "op": "PUSH3", + "pc": 3088, "stack": [ "0x3aa18088", "0x149", @@ -3918,11 +3918,11 @@ ] }, { - "pc": 3092, - "op": "JUMP", - "gas": 2078035, - "gasCost": 8, "depth": 1, + "gas": 2077723, + "gasCost": 8, + "op": "JUMP", + "pc": 3092, "stack": [ "0x3aa18088", "0x149", @@ -3943,11 +3943,11 @@ ] }, { - "pc": 3024, - "op": "JUMPDEST", - "gas": 2078027, - "gasCost": 1, "depth": 1, + "gas": 2077715, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 3024, "stack": [ "0x3aa18088", "0x149", @@ -3967,11 +3967,11 @@ ] }, { - "pc": 3025, - "op": "PUSH32", - "gas": 2078026, - "gasCost": 3, "depth": 1, + "gas": 2077714, + "gasCost": 3, + "op": "PUSH32", + "pc": 3025, "stack": [ "0x3aa18088", "0x149", @@ -3991,11 +3991,11 @@ ] }, { - "pc": 3058, - "op": "PUSH1", - "gas": 2078023, - "gasCost": 3, "depth": 1, + "gas": 2077711, + "gasCost": 3, + "op": "PUSH1", + "pc": 3058, "stack": [ "0x3aa18088", "0x149", @@ -4016,11 +4016,11 @@ ] }, { - "pc": 3060, - "op": "DUP3", - "gas": 2078020, - "gasCost": 3, "depth": 1, + "gas": 2077708, + "gasCost": 3, + "op": "DUP3", + "pc": 3060, "stack": [ "0x3aa18088", "0x149", @@ -4042,11 +4042,11 @@ ] }, { - "pc": 3061, - "op": "ADD", - "gas": 2078017, - "gasCost": 3, "depth": 1, + "gas": 2077705, + "gasCost": 3, + "op": "ADD", + "pc": 3061, "stack": [ "0x3aa18088", "0x149", @@ -4069,11 +4069,11 @@ ] }, { - "pc": 3062, - "op": "MSTORE", - "gas": 2078014, - "gasCost": 6, "depth": 1, + "gas": 2077702, + "gasCost": 6, + "op": "MSTORE", + "pc": 3062, "stack": [ "0x3aa18088", "0x149", @@ -4095,11 +4095,11 @@ ] }, { - "pc": 3063, - "op": "POP", - "gas": 2078008, - "gasCost": 2, "depth": 1, + "gas": 2077696, + "gasCost": 2, + "op": "POP", + "pc": 3063, "stack": [ "0x3aa18088", "0x149", @@ -4119,11 +4119,11 @@ ] }, { - "pc": 3064, - "op": "JUMP", - "gas": 2078006, - "gasCost": 8, "depth": 1, + "gas": 2077694, + "gasCost": 8, + "op": "JUMP", + "pc": 3064, "stack": [ "0x3aa18088", "0x149", @@ -4142,11 +4142,11 @@ ] }, { - "pc": 3093, - "op": "JUMPDEST", - "gas": 2077998, - "gasCost": 1, "depth": 1, + "gas": 2077686, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 3093, "stack": [ "0x3aa18088", "0x149", @@ -4164,11 +4164,11 @@ ] }, { - "pc": 3094, - "op": "PUSH1", - "gas": 2077997, - "gasCost": 3, "depth": 1, + "gas": 2077685, + "gasCost": 3, + "op": "PUSH1", + "pc": 3094, "stack": [ "0x3aa18088", "0x149", @@ -4186,11 +4186,11 @@ ] }, { - "pc": 3096, - "op": "DUP3", - "gas": 2077994, - "gasCost": 3, "depth": 1, + "gas": 2077682, + "gasCost": 3, + "op": "DUP3", + "pc": 3096, "stack": [ "0x3aa18088", "0x149", @@ -4209,11 +4209,11 @@ ] }, { - "pc": 3097, - "op": "ADD", - "gas": 2077991, - "gasCost": 3, "depth": 1, + "gas": 2077679, + "gasCost": 3, + "op": "ADD", + "pc": 3097, "stack": [ "0x3aa18088", "0x149", @@ -4233,11 +4233,11 @@ ] }, { - "pc": 3098, - "op": "SWAP1", - "gas": 2077988, - "gasCost": 3, "depth": 1, + "gas": 2077676, + "gasCost": 3, + "op": "SWAP1", + "pc": 3098, "stack": [ "0x3aa18088", "0x149", @@ -4256,11 +4256,11 @@ ] }, { - "pc": 3099, - "op": "POP", - "gas": 2077985, - "gasCost": 2, "depth": 1, + "gas": 2077673, + "gasCost": 2, + "op": "POP", + "pc": 3099, "stack": [ "0x3aa18088", "0x149", @@ -4279,11 +4279,11 @@ ] }, { - "pc": 3100, - "op": "SWAP2", - "gas": 2077983, - "gasCost": 3, "depth": 1, + "gas": 2077671, + "gasCost": 3, + "op": "SWAP2", + "pc": 3100, "stack": [ "0x3aa18088", "0x149", @@ -4301,11 +4301,11 @@ ] }, { - "pc": 3101, - "op": "SWAP1", - "gas": 2077980, - "gasCost": 3, "depth": 1, + "gas": 2077668, + "gasCost": 3, + "op": "SWAP1", + "pc": 3101, "stack": [ "0x3aa18088", "0x149", @@ -4323,11 +4323,11 @@ ] }, { - "pc": 3102, - "op": "POP", - "gas": 2077977, - "gasCost": 2, "depth": 1, + "gas": 2077665, + "gasCost": 2, + "op": "POP", + "pc": 3102, "stack": [ "0x3aa18088", "0x149", @@ -4345,11 +4345,11 @@ ] }, { - "pc": 3103, - "op": "JUMP", - "gas": 2077975, - "gasCost": 8, "depth": 1, + "gas": 2077663, + "gasCost": 8, + "op": "JUMP", + "pc": 3103, "stack": [ "0x3aa18088", "0x149", @@ -4366,11 +4366,11 @@ ] }, { - "pc": 3146, - "op": "JUMPDEST", - "gas": 2077967, - "gasCost": 1, "depth": 1, + "gas": 2077655, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 3146, "stack": [ "0x3aa18088", "0x149", @@ -4386,11 +4386,11 @@ ] }, { - "pc": 3147, - "op": "SWAP1", - "gas": 2077966, - "gasCost": 3, "depth": 1, + "gas": 2077654, + "gasCost": 3, + "op": "SWAP1", + "pc": 3147, "stack": [ "0x3aa18088", "0x149", @@ -4406,11 +4406,11 @@ ] }, { - "pc": 3148, - "op": "POP", - "gas": 2077963, - "gasCost": 2, "depth": 1, + "gas": 2077651, + "gasCost": 2, + "op": "POP", + "pc": 3148, "stack": [ "0x3aa18088", "0x149", @@ -4426,11 +4426,11 @@ ] }, { - "pc": 3149, - "op": "SWAP3", - "gas": 2077961, - "gasCost": 3, "depth": 1, + "gas": 2077649, + "gasCost": 3, + "op": "SWAP3", + "pc": 3149, "stack": [ "0x3aa18088", "0x149", @@ -4445,11 +4445,11 @@ ] }, { - "pc": 3150, - "op": "SWAP2", - "gas": 2077958, - "gasCost": 3, "depth": 1, + "gas": 2077646, + "gasCost": 3, + "op": "SWAP2", + "pc": 3150, "stack": [ "0x3aa18088", "0x149", @@ -4464,11 +4464,11 @@ ] }, { - "pc": 3151, - "op": "POP", - "gas": 2077955, - "gasCost": 2, "depth": 1, + "gas": 2077643, + "gasCost": 2, + "op": "POP", + "pc": 3151, "stack": [ "0x3aa18088", "0x149", @@ -4483,11 +4483,11 @@ ] }, { - "pc": 3152, - "op": "POP", - "gas": 2077953, - "gasCost": 2, "depth": 1, + "gas": 2077641, + "gasCost": 2, + "op": "POP", + "pc": 3152, "stack": [ "0x3aa18088", "0x149", @@ -4501,11 +4501,11 @@ ] }, { - "pc": 3153, - "op": "JUMP", - "gas": 2077951, - "gasCost": 8, "depth": 1, + "gas": 2077639, + "gasCost": 8, + "op": "JUMP", + "pc": 3153, "stack": [ "0x3aa18088", "0x149", @@ -4518,11 +4518,11 @@ ] }, { - "pc": 832, - "op": "JUMPDEST", - "gas": 2077943, - "gasCost": 1, "depth": 1, + "gas": 2077631, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 832, "stack": [ "0x3aa18088", "0x149", @@ -4534,11 +4534,11 @@ ] }, { - "pc": 833, - "op": "PUSH1", - "gas": 2077942, - "gasCost": 3, "depth": 1, + "gas": 2077630, + "gasCost": 3, + "op": "PUSH1", + "pc": 833, "stack": [ "0x3aa18088", "0x149", @@ -4550,11 +4550,11 @@ ] }, { - "pc": 835, - "op": "MLOAD", - "gas": 2077939, - "gasCost": 3, "depth": 1, + "gas": 2077627, + "gasCost": 3, + "op": "MLOAD", + "pc": 835, "stack": [ "0x3aa18088", "0x149", @@ -4567,11 +4567,11 @@ ] }, { - "pc": 836, - "op": "DUP1", - "gas": 2077936, - "gasCost": 3, "depth": 1, + "gas": 2077624, + "gasCost": 3, + "op": "DUP1", + "pc": 836, "stack": [ "0x3aa18088", "0x149", @@ -4584,11 +4584,11 @@ ] }, { - "pc": 837, - "op": "SWAP2", - "gas": 2077933, - "gasCost": 3, "depth": 1, + "gas": 2077621, + "gasCost": 3, + "op": "SWAP2", + "pc": 837, "stack": [ "0x3aa18088", "0x149", @@ -4602,11 +4602,11 @@ ] }, { - "pc": 838, - "op": "SUB", - "gas": 2077930, - "gasCost": 3, "depth": 1, + "gas": 2077618, + "gasCost": 3, + "op": "SUB", + "pc": 838, "stack": [ "0x3aa18088", "0x149", @@ -4620,11 +4620,11 @@ ] }, { - "pc": 839, - "op": "SWAP1", - "gas": 2077927, - "gasCost": 3, "depth": 1, + "gas": 2077615, + "gasCost": 3, + "op": "SWAP1", + "pc": 839, "stack": [ "0x3aa18088", "0x149", @@ -4637,11 +4637,11 @@ ] }, { - "pc": 840, - "op": "LOG2", - "gas": 2077924, - "gasCost": 2149, "depth": 1, + "gas": 2077612, + "gasCost": 2149, + "op": "LOG2", + "pc": 840, "stack": [ "0x3aa18088", "0x149", @@ -4654,11 +4654,11 @@ ] }, { - "pc": 841, - "op": "PUSH1", - "gas": 2075775, - "gasCost": 3, "depth": 1, + "gas": 2075463, + "gasCost": 3, + "op": "PUSH1", + "pc": 841, "stack": [ "0x3aa18088", "0x149", @@ -4667,11 +4667,11 @@ ] }, { - "pc": 843, - "op": "MLOAD", - "gas": 2075772, - "gasCost": 3, "depth": 1, + "gas": 2075460, + "gasCost": 3, + "op": "MLOAD", + "pc": 843, "stack": [ "0x3aa18088", "0x149", @@ -4681,11 +4681,11 @@ ] }, { - "pc": 844, - "op": "PUSH3", - "gas": 2075769, - "gasCost": 3, "depth": 1, + "gas": 2075457, + "gasCost": 3, + "op": "PUSH3", + "pc": 844, "stack": [ "0x3aa18088", "0x149", @@ -4695,11 +4695,11 @@ ] }, { - "pc": 848, - "op": "SWAP1", - "gas": 2075766, - "gasCost": 3, "depth": 1, + "gas": 2075454, + "gasCost": 3, + "op": "SWAP1", + "pc": 848, "stack": [ "0x3aa18088", "0x149", @@ -4710,11 +4710,11 @@ ] }, { - "pc": 849, - "op": "PUSH3", - "gas": 2075763, - "gasCost": 3, "depth": 1, + "gas": 2075451, + "gasCost": 3, + "op": "PUSH3", + "pc": 849, "stack": [ "0x3aa18088", "0x149", @@ -4725,11 +4725,11 @@ ] }, { - "pc": 853, - "op": "JUMP", - "gas": 2075760, - "gasCost": 8, "depth": 1, + "gas": 2075448, + "gasCost": 8, + "op": "JUMP", + "pc": 853, "stack": [ "0x3aa18088", "0x149", @@ -4741,11 +4741,11 @@ ] }, { - "pc": 2380, - "op": "JUMPDEST", - "gas": 2075752, - "gasCost": 1, "depth": 1, + "gas": 2075440, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2380, "stack": [ "0x3aa18088", "0x149", @@ -4756,11 +4756,11 @@ ] }, { - "pc": 2381, - "op": "PUSH2", - "gas": 2075751, - "gasCost": 3, "depth": 1, + "gas": 2075439, + "gasCost": 3, + "op": "PUSH2", + "pc": 2381, "stack": [ "0x3aa18088", "0x149", @@ -4771,11 +4771,11 @@ ] }, { - "pc": 2384, - "op": "DUP1", - "gas": 2075748, - "gasCost": 3, "depth": 1, + "gas": 2075436, + "gasCost": 3, + "op": "DUP1", + "pc": 2384, "stack": [ "0x3aa18088", "0x149", @@ -4787,11 +4787,11 @@ ] }, { - "pc": 2385, - "op": "PUSH3", - "gas": 2075745, - "gasCost": 3, "depth": 1, + "gas": 2075433, + "gasCost": 3, + "op": "PUSH3", + "pc": 2385, "stack": [ "0x3aa18088", "0x149", @@ -4804,11 +4804,11 @@ ] }, { - "pc": 2389, - "op": "DUP4", - "gas": 2075742, - "gasCost": 3, "depth": 1, + "gas": 2075430, + "gasCost": 3, + "op": "DUP4", + "pc": 2389, "stack": [ "0x3aa18088", "0x149", @@ -4822,11 +4822,11 @@ ] }, { - "pc": 2390, - "op": "CODECOPY", - "gas": 2075739, - "gasCost": 516, "depth": 1, + "gas": 2075427, + "gasCost": 516, + "op": "CODECOPY", + "pc": 2390, "stack": [ "0x3aa18088", "0x149", @@ -4841,11 +4841,11 @@ ] }, { - "pc": 2391, - "op": "ADD", - "gas": 2075223, - "gasCost": 3, "depth": 1, + "gas": 2074911, + "gasCost": 3, + "op": "ADD", + "pc": 2391, "stack": [ "0x3aa18088", "0x149", @@ -4857,11 +4857,11 @@ ] }, { - "pc": 2392, - "op": "SWAP1", - "gas": 2075220, - "gasCost": 3, "depth": 1, + "gas": 2074908, + "gasCost": 3, + "op": "SWAP1", + "pc": 2392, "stack": [ "0x3aa18088", "0x149", @@ -4872,11 +4872,11 @@ ] }, { - "pc": 2393, - "op": "JUMP", - "gas": 2075217, - "gasCost": 8, "depth": 1, + "gas": 2074905, + "gasCost": 8, + "op": "JUMP", + "pc": 2393, "stack": [ "0x3aa18088", "0x149", @@ -4887,11 +4887,11 @@ ] }, { - "pc": 854, - "op": "JUMPDEST", - "gas": 2075209, - "gasCost": 1, "depth": 1, + "gas": 2074897, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 854, "stack": [ "0x3aa18088", "0x149", @@ -4901,11 +4901,11 @@ ] }, { - "pc": 855, - "op": "PUSH1", - "gas": 2075208, - "gasCost": 3, "depth": 1, + "gas": 2074896, + "gasCost": 3, + "op": "PUSH1", + "pc": 855, "stack": [ "0x3aa18088", "0x149", @@ -4915,11 +4915,11 @@ ] }, { - "pc": 857, - "op": "MLOAD", - "gas": 2075205, - "gasCost": 3, "depth": 1, + "gas": 2074893, + "gasCost": 3, + "op": "MLOAD", + "pc": 857, "stack": [ "0x3aa18088", "0x149", @@ -4930,11 +4930,11 @@ ] }, { - "pc": 858, - "op": "DUP1", - "gas": 2075202, - "gasCost": 3, "depth": 1, + "gas": 2074890, + "gasCost": 3, + "op": "DUP1", + "pc": 858, "stack": [ "0x3aa18088", "0x149", @@ -4945,11 +4945,11 @@ ] }, { - "pc": 859, - "op": "SWAP2", - "gas": 2075199, - "gasCost": 3, "depth": 1, + "gas": 2074887, + "gasCost": 3, + "op": "SWAP2", + "pc": 859, "stack": [ "0x3aa18088", "0x149", @@ -4961,11 +4961,11 @@ ] }, { - "pc": 860, - "op": "SUB", - "gas": 2075196, - "gasCost": 3, "depth": 1, + "gas": 2074884, + "gasCost": 3, + "op": "SUB", + "pc": 860, "stack": [ "0x3aa18088", "0x149", @@ -4977,11 +4977,11 @@ ] }, { - "pc": 861, - "op": "SWAP1", - "gas": 2075193, - "gasCost": 3, "depth": 1, + "gas": 2074881, + "gasCost": 3, + "op": "SWAP1", + "pc": 861, "stack": [ "0x3aa18088", "0x149", @@ -4992,11 +4992,11 @@ ] }, { - "pc": 862, - "op": "PUSH1", - "gas": 2075190, - "gasCost": 3, "depth": 1, + "gas": 2074878, + "gasCost": 3, + "op": "PUSH1", + "pc": 862, "stack": [ "0x3aa18088", "0x149", @@ -5007,11 +5007,11 @@ ] }, { - "pc": 864, - "op": "CREATE", - "gas": 2075187, - "gasCost": 32170, "depth": 1, + "gas": 2074875, + "gasCost": 32000, + "op": "CREATE", + "pc": 864, "stack": [ "0x3aa18088", "0x149", @@ -5023,69 +5023,69 @@ ] }, { - "pc": 0, - "op": "PUSH1", - "gas": 2011095, - "gasCost": 3, "depth": 2, + "gas": 2010956, + "gasCost": 3, + "op": "PUSH1", + "pc": 0, "stack": [] }, { - "pc": 2, - "op": "PUSH1", - "gas": 2011092, - "gasCost": 3, "depth": 2, + "gas": 2010953, + "gasCost": 3, + "op": "PUSH1", + "pc": 2, "stack": [ "0x80" ] }, { - "pc": 4, - "op": "MSTORE", - "gas": 2011089, - "gasCost": 12, "depth": 2, + "gas": 2010950, + "gasCost": 12, + "op": "MSTORE", + "pc": 4, "stack": [ "0x80", "0x40" ] }, { - "pc": 5, - "op": "PUSH1", - "gas": 2011077, - "gasCost": 3, "depth": 2, + "gas": 2010938, + "gasCost": 3, + "op": "PUSH1", + "pc": 5, "stack": [] }, { - "pc": 7, - "op": "PUSH1", - "gas": 2011074, - "gasCost": 3, "depth": 2, + "gas": 2010935, + "gasCost": 3, + "op": "PUSH1", + "pc": 7, "stack": [ "0x0" ] }, { - "pc": 9, - "op": "PUSH1", - "gas": 2011071, - "gasCost": 3, "depth": 2, + "gas": 2010932, + "gasCost": 3, + "op": "PUSH1", + "pc": 9, "stack": [ "0x0", "0x1" ] }, { - "pc": 11, - "op": "PUSH2", - "gas": 2011068, - "gasCost": 3, "depth": 2, + "gas": 2010929, + "gasCost": 3, + "op": "PUSH2", + "pc": 11, "stack": [ "0x0", "0x1", @@ -5093,11 +5093,11 @@ ] }, { - "pc": 14, - "op": "EXP", - "gas": 2011065, - "gasCost": 10, "depth": 2, + "gas": 2010926, + "gasCost": 10, + "op": "EXP", + "pc": 14, "stack": [ "0x0", "0x1", @@ -5106,11 +5106,11 @@ ] }, { - "pc": 15, - "op": "DUP2", - "gas": 2011055, - "gasCost": 3, "depth": 2, + "gas": 2010916, + "gasCost": 3, + "op": "DUP2", + "pc": 15, "stack": [ "0x0", "0x1", @@ -5118,11 +5118,11 @@ ] }, { - "pc": 16, - "op": "SLOAD", - "gas": 2011052, - "gasCost": 2100, "depth": 2, + "gas": 2010913, + "gasCost": 200, + "op": "SLOAD", + "pc": 16, "stack": [ "0x0", "0x1", @@ -5134,11 +5134,11 @@ } }, { - "pc": 17, - "op": "DUP2", - "gas": 2008952, - "gasCost": 3, "depth": 2, + "gas": 2010713, + "gasCost": 3, + "op": "DUP2", + "pc": 17, "stack": [ "0x0", "0x1", @@ -5147,11 +5147,11 @@ ] }, { - "pc": 18, - "op": "PUSH1", - "gas": 2008949, - "gasCost": 3, "depth": 2, + "gas": 2010710, + "gasCost": 3, + "op": "PUSH1", + "pc": 18, "stack": [ "0x0", "0x1", @@ -5161,11 +5161,11 @@ ] }, { - "pc": 20, - "op": "MUL", - "gas": 2008946, - "gasCost": 5, "depth": 2, + "gas": 2010707, + "gasCost": 5, + "op": "MUL", + "pc": 20, "stack": [ "0x0", "0x1", @@ -5176,11 +5176,11 @@ ] }, { - "pc": 21, - "op": "NOT", - "gas": 2008941, - "gasCost": 3, "depth": 2, + "gas": 2010702, + "gasCost": 3, + "op": "NOT", + "pc": 21, "stack": [ "0x0", "0x1", @@ -5190,11 +5190,11 @@ ] }, { - "pc": 22, - "op": "AND", - "gas": 2008938, - "gasCost": 3, "depth": 2, + "gas": 2010699, + "gasCost": 3, + "op": "AND", + "pc": 22, "stack": [ "0x0", "0x1", @@ -5204,11 +5204,11 @@ ] }, { - "pc": 23, - "op": "SWAP1", - "gas": 2008935, - "gasCost": 3, "depth": 2, + "gas": 2010696, + "gasCost": 3, + "op": "SWAP1", + "pc": 23, "stack": [ "0x0", "0x1", @@ -5217,11 +5217,11 @@ ] }, { - "pc": 24, - "op": "DUP4", - "gas": 2008932, - "gasCost": 3, "depth": 2, + "gas": 2010693, + "gasCost": 3, + "op": "DUP4", + "pc": 24, "stack": [ "0x0", "0x1", @@ -5230,11 +5230,11 @@ ] }, { - "pc": 25, - "op": "ISZERO", - "gas": 2008929, - "gasCost": 3, "depth": 2, + "gas": 2010690, + "gasCost": 3, + "op": "ISZERO", + "pc": 25, "stack": [ "0x0", "0x1", @@ -5244,11 +5244,11 @@ ] }, { - "pc": 26, - "op": "ISZERO", - "gas": 2008926, - "gasCost": 3, "depth": 2, + "gas": 2010687, + "gasCost": 3, + "op": "ISZERO", + "pc": 26, "stack": [ "0x0", "0x1", @@ -5258,11 +5258,11 @@ ] }, { - "pc": 27, - "op": "MUL", - "gas": 2008923, - "gasCost": 5, "depth": 2, + "gas": 2010684, + "gasCost": 5, + "op": "MUL", + "pc": 27, "stack": [ "0x0", "0x1", @@ -5272,11 +5272,11 @@ ] }, { - "pc": 28, - "op": "OR", - "gas": 2008918, - "gasCost": 3, "depth": 2, + "gas": 2010679, + "gasCost": 3, + "op": "OR", + "pc": 28, "stack": [ "0x0", "0x1", @@ -5285,11 +5285,11 @@ ] }, { - "pc": 29, - "op": "SWAP1", - "gas": 2008915, - "gasCost": 3, "depth": 2, + "gas": 2010676, + "gasCost": 3, + "op": "SWAP1", + "pc": 29, "stack": [ "0x0", "0x1", @@ -5297,11 +5297,11 @@ ] }, { - "pc": 30, - "op": "SSTORE", - "gas": 2008912, - "gasCost": 100, "depth": 2, + "gas": 2010673, + "gasCost": 200, + "op": "SSTORE", + "pc": 30, "stack": [ "0x0", "0x0", @@ -5312,61 +5312,61 @@ } }, { - "pc": 31, - "op": "POP", - "gas": 2008812, - "gasCost": 2, "depth": 2, + "gas": 2010473, + "gasCost": 2, + "op": "POP", + "pc": 31, "stack": [ "0x0" ] }, { - "pc": 32, - "op": "CALLVALUE", - "gas": 2008810, - "gasCost": 2, "depth": 2, + "gas": 2010471, + "gasCost": 2, + "op": "CALLVALUE", + "pc": 32, "stack": [] }, { - "pc": 33, - "op": "DUP1", - "gas": 2008808, - "gasCost": 3, "depth": 2, + "gas": 2010469, + "gasCost": 3, + "op": "DUP1", + "pc": 33, "stack": [ "0x0" ] }, { - "pc": 34, - "op": "ISZERO", - "gas": 2008805, - "gasCost": 3, "depth": 2, + "gas": 2010466, + "gasCost": 3, + "op": "ISZERO", + "pc": 34, "stack": [ "0x0", "0x0" ] }, { - "pc": 35, - "op": "PUSH3", - "gas": 2008802, - "gasCost": 3, "depth": 2, + "gas": 2010463, + "gasCost": 3, + "op": "PUSH3", + "pc": 35, "stack": [ "0x0", "0x1" ] }, { - "pc": 39, - "op": "JUMPI", - "gas": 2008799, - "gasCost": 10, "depth": 2, + "gas": 2010460, + "gasCost": 10, + "op": "JUMPI", + "pc": 39, "stack": [ "0x0", "0x1", @@ -5374,60 +5374,60 @@ ] }, { - "pc": 44, - "op": "JUMPDEST", - "gas": 2008789, - "gasCost": 1, "depth": 2, + "gas": 2010450, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 44, "stack": [ "0x0" ] }, { - "pc": 45, - "op": "POP", - "gas": 2008788, - "gasCost": 2, "depth": 2, + "gas": 2010449, + "gasCost": 2, + "op": "POP", + "pc": 45, "stack": [ "0x0" ] }, { - "pc": 46, - "op": "PUSH1", - "gas": 2008786, - "gasCost": 3, "depth": 2, + "gas": 2010447, + "gasCost": 3, + "op": "PUSH1", + "pc": 46, "stack": [] }, { - "pc": 48, - "op": "PUSH1", - "gas": 2008783, - "gasCost": 3, "depth": 2, + "gas": 2010444, + "gasCost": 3, + "op": "PUSH1", + "pc": 48, "stack": [ "0x1" ] }, { - "pc": 50, - "op": "SWAP1", - "gas": 2008780, - "gasCost": 3, "depth": 2, + "gas": 2010441, + "gasCost": 3, + "op": "SWAP1", + "pc": 50, "stack": [ "0x1", "0x0" ] }, { - "pc": 51, - "op": "SLOAD", - "gas": 2008777, - "gasCost": 100, "depth": 2, + "gas": 2010438, + "gasCost": 200, + "op": "SLOAD", + "pc": 51, "stack": [ "0x0", "0x1" @@ -5437,33 +5437,33 @@ } }, { - "pc": 52, - "op": "SWAP1", - "gas": 2008677, - "gasCost": 3, "depth": 2, + "gas": 2010238, + "gasCost": 3, + "op": "SWAP1", + "pc": 52, "stack": [ "0x0", "0x0" ] }, { - "pc": 53, - "op": "PUSH2", - "gas": 2008674, - "gasCost": 3, "depth": 2, + "gas": 2010235, + "gasCost": 3, + "op": "PUSH2", + "pc": 53, "stack": [ "0x0", "0x0" ] }, { - "pc": 56, - "op": "EXP", - "gas": 2008671, - "gasCost": 10, "depth": 2, + "gas": 2010232, + "gasCost": 10, + "op": "EXP", + "pc": 56, "stack": [ "0x0", "0x0", @@ -5471,122 +5471,122 @@ ] }, { - "pc": 57, - "op": "SWAP1", - "gas": 2008661, - "gasCost": 3, "depth": 2, + "gas": 2010222, + "gasCost": 3, + "op": "SWAP1", + "pc": 57, "stack": [ "0x0", "0x1" ] }, { - "pc": 58, - "op": "DIV", - "gas": 2008658, - "gasCost": 5, "depth": 2, + "gas": 2010219, + "gasCost": 5, + "op": "DIV", + "pc": 58, "stack": [ "0x1", "0x0" ] }, { - "pc": 59, - "op": "PUSH1", - "gas": 2008653, - "gasCost": 3, "depth": 2, + "gas": 2010214, + "gasCost": 3, + "op": "PUSH1", + "pc": 59, "stack": [ "0x0" ] }, { - "pc": 61, - "op": "AND", - "gas": 2008650, - "gasCost": 3, "depth": 2, + "gas": 2010211, + "gasCost": 3, + "op": "AND", + "pc": 61, "stack": [ "0x0", "0xff" ] }, { - "pc": 62, - "op": "ISZERO", - "gas": 2008647, - "gasCost": 3, "depth": 2, + "gas": 2010208, + "gasCost": 3, + "op": "ISZERO", + "pc": 62, "stack": [ "0x0" ] }, { - "pc": 63, - "op": "PUSH3", - "gas": 2008644, - "gasCost": 3, "depth": 2, + "gas": 2010205, + "gasCost": 3, + "op": "PUSH3", + "pc": 63, "stack": [ "0x1" ] }, { - "pc": 67, - "op": "JUMPI", - "gas": 2008641, - "gasCost": 10, "depth": 2, + "gas": 2010202, + "gasCost": 10, + "op": "JUMPI", + "pc": 67, "stack": [ "0x1", "0x80" ] }, { - "pc": 128, - "op": "JUMPDEST", - "gas": 2008631, - "gasCost": 1, "depth": 2, + "gas": 2010192, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 128, "stack": [] }, { - "pc": 129, - "op": "PUSH1", - "gas": 2008630, - "gasCost": 3, "depth": 2, + "gas": 2010191, + "gasCost": 3, + "op": "PUSH1", + "pc": 129, "stack": [] }, { - "pc": 131, - "op": "DUP1", - "gas": 2008627, - "gasCost": 3, "depth": 2, + "gas": 2010188, + "gasCost": 3, + "op": "DUP1", + "pc": 131, "stack": [ "0x1" ] }, { - "pc": 132, - "op": "PUSH1", - "gas": 2008624, - "gasCost": 3, "depth": 2, + "gas": 2010185, + "gasCost": 3, + "op": "PUSH1", + "pc": 132, "stack": [ "0x1", "0x1" ] }, { - "pc": 134, - "op": "PUSH2", - "gas": 2008621, - "gasCost": 3, "depth": 2, + "gas": 2010182, + "gasCost": 3, + "op": "PUSH2", + "pc": 134, "stack": [ "0x1", "0x1", @@ -5594,11 +5594,11 @@ ] }, { - "pc": 137, - "op": "EXP", - "gas": 2008618, - "gasCost": 10, "depth": 2, + "gas": 2010179, + "gasCost": 10, + "op": "EXP", + "pc": 137, "stack": [ "0x1", "0x1", @@ -5607,11 +5607,11 @@ ] }, { - "pc": 138, - "op": "DUP2", - "gas": 2008608, - "gasCost": 3, "depth": 2, + "gas": 2010169, + "gasCost": 3, + "op": "DUP2", + "pc": 138, "stack": [ "0x1", "0x1", @@ -5619,11 +5619,11 @@ ] }, { - "pc": 139, - "op": "SLOAD", - "gas": 2008605, - "gasCost": 100, "depth": 2, + "gas": 2010166, + "gasCost": 200, + "op": "SLOAD", + "pc": 139, "stack": [ "0x1", "0x1", @@ -5635,11 +5635,11 @@ } }, { - "pc": 140, - "op": "DUP2", - "gas": 2008505, - "gasCost": 3, "depth": 2, + "gas": 2009966, + "gasCost": 3, + "op": "DUP2", + "pc": 140, "stack": [ "0x1", "0x1", @@ -5648,11 +5648,11 @@ ] }, { - "pc": 141, - "op": "PUSH1", - "gas": 2008502, - "gasCost": 3, "depth": 2, + "gas": 2009963, + "gasCost": 3, + "op": "PUSH1", + "pc": 141, "stack": [ "0x1", "0x1", @@ -5662,11 +5662,11 @@ ] }, { - "pc": 143, - "op": "MUL", - "gas": 2008499, - "gasCost": 5, "depth": 2, + "gas": 2009960, + "gasCost": 5, + "op": "MUL", + "pc": 143, "stack": [ "0x1", "0x1", @@ -5677,11 +5677,11 @@ ] }, { - "pc": 144, - "op": "NOT", - "gas": 2008494, - "gasCost": 3, "depth": 2, + "gas": 2009955, + "gasCost": 3, + "op": "NOT", + "pc": 144, "stack": [ "0x1", "0x1", @@ -5691,11 +5691,11 @@ ] }, { - "pc": 145, - "op": "AND", - "gas": 2008491, - "gasCost": 3, "depth": 2, + "gas": 2009952, + "gasCost": 3, + "op": "AND", + "pc": 145, "stack": [ "0x1", "0x1", @@ -5705,11 +5705,11 @@ ] }, { - "pc": 146, - "op": "SWAP1", - "gas": 2008488, - "gasCost": 3, "depth": 2, + "gas": 2009949, + "gasCost": 3, + "op": "SWAP1", + "pc": 146, "stack": [ "0x1", "0x1", @@ -5718,11 +5718,11 @@ ] }, { - "pc": 147, - "op": "DUP4", - "gas": 2008485, - "gasCost": 3, "depth": 2, + "gas": 2009946, + "gasCost": 3, + "op": "DUP4", + "pc": 147, "stack": [ "0x1", "0x1", @@ -5731,11 +5731,11 @@ ] }, { - "pc": 148, - "op": "ISZERO", - "gas": 2008482, - "gasCost": 3, "depth": 2, + "gas": 2009943, + "gasCost": 3, + "op": "ISZERO", + "pc": 148, "stack": [ "0x1", "0x1", @@ -5745,11 +5745,11 @@ ] }, { - "pc": 149, - "op": "ISZERO", - "gas": 2008479, - "gasCost": 3, "depth": 2, + "gas": 2009940, + "gasCost": 3, + "op": "ISZERO", + "pc": 149, "stack": [ "0x1", "0x1", @@ -5759,11 +5759,11 @@ ] }, { - "pc": 150, - "op": "MUL", - "gas": 2008476, - "gasCost": 5, "depth": 2, + "gas": 2009937, + "gasCost": 5, + "op": "MUL", + "pc": 150, "stack": [ "0x1", "0x1", @@ -5773,11 +5773,11 @@ ] }, { - "pc": 151, - "op": "OR", - "gas": 2008471, - "gasCost": 3, "depth": 2, + "gas": 2009932, + "gasCost": 3, + "op": "OR", + "pc": 151, "stack": [ "0x1", "0x1", @@ -5786,11 +5786,11 @@ ] }, { - "pc": 152, - "op": "SWAP1", - "gas": 2008468, - "gasCost": 3, "depth": 2, + "gas": 2009929, + "gasCost": 3, + "op": "SWAP1", + "pc": 152, "stack": [ "0x1", "0x1", @@ -5798,11 +5798,11 @@ ] }, { - "pc": 153, - "op": "SSTORE", - "gas": 2008465, - "gasCost": 20000, "depth": 2, + "gas": 2009926, + "gasCost": 20000, + "op": "SSTORE", + "pc": 153, "stack": [ "0x1", "0x1", @@ -5813,50 +5813,50 @@ } }, { - "pc": 154, - "op": "POP", - "gas": 1988465, - "gasCost": 2, "depth": 2, + "gas": 1989926, + "gasCost": 2, + "op": "POP", + "pc": 154, "stack": [ "0x1" ] }, { - "pc": 155, - "op": "PUSH3", - "gas": 1988463, - "gasCost": 3, "depth": 2, + "gas": 1989924, + "gasCost": 3, + "op": "PUSH3", + "pc": 155, "stack": [] }, { - "pc": 159, - "op": "PUSH17", - "gas": 1988460, - "gasCost": 3, "depth": 2, + "gas": 1989921, + "gasCost": 3, + "op": "PUSH17", + "pc": 159, "stack": [ "0xbc" ] }, { - "pc": 177, - "op": "PUSH3", - "gas": 1988457, - "gasCost": 3, "depth": 2, + "gas": 1989918, + "gasCost": 3, + "op": "PUSH3", + "pc": 177, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000" ] }, { - "pc": 181, - "op": "PUSH1", - "gas": 1988454, - "gasCost": 3, "depth": 2, + "gas": 1989915, + "gasCost": 3, + "op": "PUSH1", + "pc": 181, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -5864,11 +5864,11 @@ ] }, { - "pc": 183, - "op": "SHL", - "gas": 1988451, - "gasCost": 3, "depth": 2, + "gas": 1989912, + "gasCost": 3, + "op": "SHL", + "pc": 183, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -5877,11 +5877,11 @@ ] }, { - "pc": 184, - "op": "PUSH1", - "gas": 1988448, - "gasCost": 3, "depth": 2, + "gas": 1989909, + "gasCost": 3, + "op": "PUSH1", + "pc": 184, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -5889,11 +5889,11 @@ ] }, { - "pc": 186, - "op": "SHR", - "gas": 1988445, - "gasCost": 3, "depth": 2, + "gas": 1989906, + "gasCost": 3, + "op": "SHR", + "pc": 186, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -5902,11 +5902,11 @@ ] }, { - "pc": 187, - "op": "JUMP", - "gas": 1988442, - "gasCost": 8, "depth": 2, + "gas": 1989903, + "gasCost": 8, + "op": "JUMP", + "pc": 187, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -5914,33 +5914,33 @@ ] }, { - "pc": 195, - "op": "JUMPDEST", - "gas": 1988434, - "gasCost": 1, "depth": 2, + "gas": 1989895, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 195, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000" ] }, { - "pc": 196, - "op": "PUSH1", - "gas": 1988433, - "gasCost": 3, "depth": 2, + "gas": 1989894, + "gasCost": 3, + "op": "PUSH1", + "pc": 196, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000" ] }, { - "pc": 198, - "op": "CALLER", - "gas": 1988430, - "gasCost": 2, "depth": 2, + "gas": 1989891, + "gasCost": 2, + "op": "CALLER", + "pc": 198, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -5948,11 +5948,11 @@ ] }, { - "pc": 199, - "op": "PUSH20", - "gas": 1988428, - "gasCost": 3, "depth": 2, + "gas": 1989889, + "gasCost": 3, + "op": "PUSH20", + "pc": 199, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -5961,11 +5961,11 @@ ] }, { - "pc": 220, - "op": "AND", - "gas": 1988425, - "gasCost": 3, "depth": 2, + "gas": 1989886, + "gasCost": 3, + "op": "AND", + "pc": 220, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -5975,11 +5975,11 @@ ] }, { - "pc": 221, - "op": "PUSH32", - "gas": 1988422, - "gasCost": 3, "depth": 2, + "gas": 1989883, + "gasCost": 3, + "op": "PUSH32", + "pc": 221, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -5988,11 +5988,11 @@ ] }, { - "pc": 254, - "op": "DUP4", - "gas": 1988419, - "gasCost": 3, "depth": 2, + "gas": 1989880, + "gasCost": 3, + "op": "DUP4", + "pc": 254, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6002,11 +6002,11 @@ ] }, { - "pc": 255, - "op": "PUSH1", - "gas": 1988416, - "gasCost": 3, "depth": 2, + "gas": 1989877, + "gasCost": 3, + "op": "PUSH1", + "pc": 255, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6017,11 +6017,11 @@ ] }, { - "pc": 257, - "op": "MLOAD", - "gas": 1988413, - "gasCost": 3, "depth": 2, + "gas": 1989874, + "gasCost": 3, + "op": "MLOAD", + "pc": 257, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6033,11 +6033,11 @@ ] }, { - "pc": 258, - "op": "PUSH3", - "gas": 1988410, - "gasCost": 3, "depth": 2, + "gas": 1989871, + "gasCost": 3, + "op": "PUSH3", + "pc": 258, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6049,11 +6049,11 @@ ] }, { - "pc": 262, - "op": "SWAP2", - "gas": 1988407, - "gasCost": 3, "depth": 2, + "gas": 1989868, + "gasCost": 3, + "op": "SWAP2", + "pc": 262, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6066,11 +6066,11 @@ ] }, { - "pc": 263, - "op": "SWAP1", - "gas": 1988404, - "gasCost": 3, "depth": 2, + "gas": 1989865, + "gasCost": 3, + "op": "SWAP1", + "pc": 263, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6083,11 +6083,11 @@ ] }, { - "pc": 264, - "op": "PUSH3", - "gas": 1988401, - "gasCost": 3, "depth": 2, + "gas": 1989862, + "gasCost": 3, + "op": "PUSH3", + "pc": 264, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6100,11 +6100,11 @@ ] }, { - "pc": 268, - "op": "JUMP", - "gas": 1988398, - "gasCost": 8, "depth": 2, + "gas": 1989859, + "gasCost": 8, + "op": "JUMP", + "pc": 268, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6118,11 +6118,11 @@ ] }, { - "pc": 834, - "op": "JUMPDEST", - "gas": 1988390, - "gasCost": 1, "depth": 2, + "gas": 1989851, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 834, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6135,11 +6135,11 @@ ] }, { - "pc": 835, - "op": "PUSH1", - "gas": 1988389, - "gasCost": 3, "depth": 2, + "gas": 1989850, + "gasCost": 3, + "op": "PUSH1", + "pc": 835, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6152,11 +6152,11 @@ ] }, { - "pc": 837, - "op": "PUSH1", - "gas": 1988386, - "gasCost": 3, "depth": 2, + "gas": 1989847, + "gasCost": 3, + "op": "PUSH1", + "pc": 837, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6170,11 +6170,11 @@ ] }, { - "pc": 839, - "op": "DUP3", - "gas": 1988383, - "gasCost": 3, "depth": 2, + "gas": 1989844, + "gasCost": 3, + "op": "DUP3", + "pc": 839, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6189,11 +6189,11 @@ ] }, { - "pc": 840, - "op": "ADD", - "gas": 1988380, - "gasCost": 3, "depth": 2, + "gas": 1989841, + "gasCost": 3, + "op": "ADD", + "pc": 840, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6209,11 +6209,11 @@ ] }, { - "pc": 841, - "op": "SWAP1", - "gas": 1988377, - "gasCost": 3, "depth": 2, + "gas": 1989838, + "gasCost": 3, + "op": "SWAP1", + "pc": 841, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6228,11 +6228,11 @@ ] }, { - "pc": 842, - "op": "POP", - "gas": 1988374, - "gasCost": 2, "depth": 2, + "gas": 1989835, + "gasCost": 2, + "op": "POP", + "pc": 842, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6247,11 +6247,11 @@ ] }, { - "pc": 843, - "op": "PUSH3", - "gas": 1988372, - "gasCost": 3, "depth": 2, + "gas": 1989833, + "gasCost": 3, + "op": "PUSH3", + "pc": 843, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6265,11 +6265,11 @@ ] }, { - "pc": 847, - "op": "PUSH1", - "gas": 1988369, - "gasCost": 3, "depth": 2, + "gas": 1989830, + "gasCost": 3, + "op": "PUSH1", + "pc": 847, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6284,11 +6284,11 @@ ] }, { - "pc": 849, - "op": "DUP4", - "gas": 1988366, - "gasCost": 3, "depth": 2, + "gas": 1989827, + "gasCost": 3, + "op": "DUP4", + "pc": 849, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6304,11 +6304,11 @@ ] }, { - "pc": 850, - "op": "ADD", - "gas": 1988363, - "gasCost": 3, "depth": 2, + "gas": 1989824, + "gasCost": 3, + "op": "ADD", + "pc": 850, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6325,11 +6325,11 @@ ] }, { - "pc": 851, - "op": "DUP5", - "gas": 1988360, - "gasCost": 3, "depth": 2, + "gas": 1989821, + "gasCost": 3, + "op": "DUP5", + "pc": 851, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6345,11 +6345,11 @@ ] }, { - "pc": 852, - "op": "PUSH3", - "gas": 1988357, - "gasCost": 3, "depth": 2, + "gas": 1989818, + "gasCost": 3, + "op": "PUSH3", + "pc": 852, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6366,11 +6366,11 @@ ] }, { - "pc": 856, - "op": "JUMP", - "gas": 1988354, - "gasCost": 8, "depth": 2, + "gas": 1989815, + "gasCost": 8, + "op": "JUMP", + "pc": 856, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6388,11 +6388,11 @@ ] }, { - "pc": 737, - "op": "JUMPDEST", - "gas": 1988346, - "gasCost": 1, "depth": 2, + "gas": 1989807, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 737, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6409,11 +6409,11 @@ ] }, { - "pc": 738, - "op": "PUSH3", - "gas": 1988345, - "gasCost": 3, "depth": 2, + "gas": 1989806, + "gasCost": 3, + "op": "PUSH3", + "pc": 738, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6430,11 +6430,11 @@ ] }, { - "pc": 742, - "op": "DUP2", - "gas": 1988342, - "gasCost": 3, "depth": 2, + "gas": 1989803, + "gasCost": 3, + "op": "DUP2", + "pc": 742, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6452,11 +6452,11 @@ ] }, { - "pc": 743, - "op": "PUSH3", - "gas": 1988339, - "gasCost": 3, "depth": 2, + "gas": 1989800, + "gasCost": 3, + "op": "PUSH3", + "pc": 743, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6475,11 +6475,11 @@ ] }, { - "pc": 747, - "op": "JUMP", - "gas": 1988336, - "gasCost": 8, "depth": 2, + "gas": 1989797, + "gasCost": 8, + "op": "JUMP", + "pc": 747, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6499,11 +6499,11 @@ ] }, { - "pc": 727, - "op": "JUMPDEST", - "gas": 1988328, - "gasCost": 1, "depth": 2, + "gas": 1989789, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 727, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6522,11 +6522,11 @@ ] }, { - "pc": 728, - "op": "PUSH1", - "gas": 1988327, - "gasCost": 3, "depth": 2, + "gas": 1989788, + "gasCost": 3, + "op": "PUSH1", + "pc": 728, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6545,11 +6545,11 @@ ] }, { - "pc": 730, - "op": "DUP2", - "gas": 1988324, - "gasCost": 3, "depth": 2, + "gas": 1989785, + "gasCost": 3, + "op": "DUP2", + "pc": 730, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6569,11 +6569,11 @@ ] }, { - "pc": 731, - "op": "SWAP1", - "gas": 1988321, - "gasCost": 3, "depth": 2, + "gas": 1989782, + "gasCost": 3, + "op": "SWAP1", + "pc": 731, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6594,11 +6594,11 @@ ] }, { - "pc": 732, - "op": "POP", - "gas": 1988318, - "gasCost": 2, "depth": 2, + "gas": 1989779, + "gasCost": 2, + "op": "POP", + "pc": 732, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6619,11 +6619,11 @@ ] }, { - "pc": 733, - "op": "SWAP2", - "gas": 1988316, - "gasCost": 3, "depth": 2, + "gas": 1989777, + "gasCost": 3, + "op": "SWAP2", + "pc": 733, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6643,11 +6643,11 @@ ] }, { - "pc": 734, - "op": "SWAP1", - "gas": 1988313, - "gasCost": 3, "depth": 2, + "gas": 1989774, + "gasCost": 3, + "op": "SWAP1", + "pc": 734, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6667,11 +6667,11 @@ ] }, { - "pc": 735, - "op": "POP", - "gas": 1988310, - "gasCost": 2, "depth": 2, + "gas": 1989771, + "gasCost": 2, + "op": "POP", + "pc": 735, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6691,11 +6691,11 @@ ] }, { - "pc": 736, - "op": "JUMP", - "gas": 1988308, - "gasCost": 8, "depth": 2, + "gas": 1989769, + "gasCost": 8, + "op": "JUMP", + "pc": 736, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6714,11 +6714,11 @@ ] }, { - "pc": 748, - "op": "JUMPDEST", - "gas": 1988300, - "gasCost": 1, "depth": 2, + "gas": 1989761, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 748, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6736,11 +6736,11 @@ ] }, { - "pc": 749, - "op": "DUP3", - "gas": 1988299, - "gasCost": 3, "depth": 2, + "gas": 1989760, + "gasCost": 3, + "op": "DUP3", + "pc": 749, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6758,11 +6758,11 @@ ] }, { - "pc": 750, - "op": "MSTORE", - "gas": 1988296, - "gasCost": 9, "depth": 2, + "gas": 1989757, + "gasCost": 9, + "op": "MSTORE", + "pc": 750, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6781,11 +6781,11 @@ ] }, { - "pc": 751, - "op": "POP", - "gas": 1988287, - "gasCost": 2, "depth": 2, + "gas": 1989748, + "gasCost": 2, + "op": "POP", + "pc": 751, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6802,11 +6802,11 @@ ] }, { - "pc": 752, - "op": "POP", - "gas": 1988285, - "gasCost": 2, "depth": 2, + "gas": 1989746, + "gasCost": 2, + "op": "POP", + "pc": 752, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6822,11 +6822,11 @@ ] }, { - "pc": 753, - "op": "JUMP", - "gas": 1988283, - "gasCost": 8, "depth": 2, + "gas": 1989744, + "gasCost": 8, + "op": "JUMP", + "pc": 753, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6841,11 +6841,11 @@ ] }, { - "pc": 857, - "op": "JUMPDEST", - "gas": 1988275, - "gasCost": 1, "depth": 2, + "gas": 1989736, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 857, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6859,11 +6859,11 @@ ] }, { - "pc": 858, - "op": "DUP2", - "gas": 1988274, - "gasCost": 3, "depth": 2, + "gas": 1989735, + "gasCost": 3, + "op": "DUP2", + "pc": 858, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6877,11 +6877,11 @@ ] }, { - "pc": 859, - "op": "DUP2", - "gas": 1988271, - "gasCost": 3, "depth": 2, + "gas": 1989732, + "gasCost": 3, + "op": "DUP2", + "pc": 859, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6896,11 +6896,11 @@ ] }, { - "pc": 860, - "op": "SUB", - "gas": 1988268, - "gasCost": 3, "depth": 2, + "gas": 1989729, + "gasCost": 3, + "op": "SUB", + "pc": 860, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6916,11 +6916,11 @@ ] }, { - "pc": 861, - "op": "PUSH1", - "gas": 1988265, - "gasCost": 3, "depth": 2, + "gas": 1989726, + "gasCost": 3, + "op": "PUSH1", + "pc": 861, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6935,11 +6935,11 @@ ] }, { - "pc": 863, - "op": "DUP4", - "gas": 1988262, - "gasCost": 3, "depth": 2, + "gas": 1989723, + "gasCost": 3, + "op": "DUP4", + "pc": 863, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6955,11 +6955,11 @@ ] }, { - "pc": 864, - "op": "ADD", - "gas": 1988259, - "gasCost": 3, "depth": 2, + "gas": 1989720, + "gasCost": 3, + "op": "ADD", + "pc": 864, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6976,11 +6976,11 @@ ] }, { - "pc": 865, - "op": "MSTORE", - "gas": 1988256, - "gasCost": 6, "depth": 2, + "gas": 1989717, + "gasCost": 6, + "op": "MSTORE", + "pc": 865, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6996,11 +6996,11 @@ ] }, { - "pc": 866, - "op": "PUSH3", - "gas": 1988250, - "gasCost": 3, "depth": 2, + "gas": 1989711, + "gasCost": 3, + "op": "PUSH3", + "pc": 866, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7014,11 +7014,11 @@ ] }, { - "pc": 870, - "op": "DUP2", - "gas": 1988247, - "gasCost": 3, "depth": 2, + "gas": 1989708, + "gasCost": 3, + "op": "DUP2", + "pc": 870, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7033,11 +7033,11 @@ ] }, { - "pc": 871, - "op": "PUSH3", - "gas": 1988244, - "gasCost": 3, "depth": 2, + "gas": 1989705, + "gasCost": 3, + "op": "PUSH3", + "pc": 871, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7053,11 +7053,11 @@ ] }, { - "pc": 875, - "op": "JUMP", - "gas": 1988241, - "gasCost": 8, "depth": 2, + "gas": 1989702, + "gasCost": 8, + "op": "JUMP", + "pc": 875, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7074,11 +7074,11 @@ ] }, { - "pc": 795, - "op": "JUMPDEST", - "gas": 1988233, - "gasCost": 1, "depth": 2, + "gas": 1989694, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 795, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7094,11 +7094,11 @@ ] }, { - "pc": 796, - "op": "PUSH1", - "gas": 1988232, - "gasCost": 3, "depth": 2, + "gas": 1989693, + "gasCost": 3, + "op": "PUSH1", + "pc": 796, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7114,11 +7114,11 @@ ] }, { - "pc": 798, - "op": "PUSH3", - "gas": 1988229, - "gasCost": 3, "depth": 2, + "gas": 1989690, + "gasCost": 3, + "op": "PUSH3", + "pc": 798, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7135,11 +7135,11 @@ ] }, { - "pc": 802, - "op": "PUSH1", - "gas": 1988226, - "gasCost": 3, "depth": 2, + "gas": 1989687, + "gasCost": 3, + "op": "PUSH1", + "pc": 802, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7157,11 +7157,11 @@ ] }, { - "pc": 804, - "op": "DUP4", - "gas": 1988223, - "gasCost": 3, "depth": 2, + "gas": 1989684, + "gasCost": 3, + "op": "DUP4", + "pc": 804, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7180,11 +7180,11 @@ ] }, { - "pc": 805, - "op": "PUSH3", - "gas": 1988220, - "gasCost": 3, "depth": 2, + "gas": 1989681, + "gasCost": 3, + "op": "PUSH3", + "pc": 805, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7204,11 +7204,11 @@ ] }, { - "pc": 809, - "op": "JUMP", - "gas": 1988217, - "gasCost": 8, "depth": 2, + "gas": 1989678, + "gasCost": 8, + "op": "JUMP", + "pc": 809, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7229,11 +7229,11 @@ ] }, { - "pc": 558, - "op": "JUMPDEST", - "gas": 1988209, - "gasCost": 1, "depth": 2, + "gas": 1989670, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 558, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7253,11 +7253,11 @@ ] }, { - "pc": 559, - "op": "PUSH1", - "gas": 1988208, - "gasCost": 3, "depth": 2, + "gas": 1989669, + "gasCost": 3, + "op": "PUSH1", + "pc": 559, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7277,11 +7277,11 @@ ] }, { - "pc": 561, - "op": "DUP3", - "gas": 1988205, - "gasCost": 3, "depth": 2, + "gas": 1989666, + "gasCost": 3, + "op": "DUP3", + "pc": 561, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7302,11 +7302,11 @@ ] }, { - "pc": 562, - "op": "DUP3", - "gas": 1988202, - "gasCost": 3, "depth": 2, + "gas": 1989663, + "gasCost": 3, + "op": "DUP3", + "pc": 562, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7328,11 +7328,11 @@ ] }, { - "pc": 563, - "op": "MSTORE", - "gas": 1988199, - "gasCost": 6, "depth": 2, + "gas": 1989660, + "gasCost": 6, + "op": "MSTORE", + "pc": 563, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7355,11 +7355,11 @@ ] }, { - "pc": 564, - "op": "PUSH1", - "gas": 1988193, - "gasCost": 3, "depth": 2, + "gas": 1989654, + "gasCost": 3, + "op": "PUSH1", + "pc": 564, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7380,11 +7380,11 @@ ] }, { - "pc": 566, - "op": "DUP3", - "gas": 1988190, - "gasCost": 3, "depth": 2, + "gas": 1989651, + "gasCost": 3, + "op": "DUP3", + "pc": 566, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7406,11 +7406,11 @@ ] }, { - "pc": 567, - "op": "ADD", - "gas": 1988187, - "gasCost": 3, "depth": 2, + "gas": 1989648, + "gasCost": 3, + "op": "ADD", + "pc": 567, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7433,11 +7433,11 @@ ] }, { - "pc": 568, - "op": "SWAP1", - "gas": 1988184, - "gasCost": 3, "depth": 2, + "gas": 1989645, + "gasCost": 3, + "op": "SWAP1", + "pc": 568, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7459,11 +7459,11 @@ ] }, { - "pc": 569, - "op": "POP", - "gas": 1988181, - "gasCost": 2, "depth": 2, + "gas": 1989642, + "gasCost": 2, + "op": "POP", + "pc": 569, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7485,11 +7485,11 @@ ] }, { - "pc": 570, - "op": "SWAP3", - "gas": 1988179, - "gasCost": 3, "depth": 2, + "gas": 1989640, + "gasCost": 3, + "op": "SWAP3", + "pc": 570, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7510,11 +7510,11 @@ ] }, { - "pc": 571, - "op": "SWAP2", - "gas": 1988176, - "gasCost": 3, "depth": 2, + "gas": 1989637, + "gasCost": 3, + "op": "SWAP2", + "pc": 571, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7535,11 +7535,11 @@ ] }, { - "pc": 572, - "op": "POP", - "gas": 1988173, - "gasCost": 2, "depth": 2, + "gas": 1989634, + "gasCost": 2, + "op": "POP", + "pc": 572, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7560,11 +7560,11 @@ ] }, { - "pc": 573, - "op": "POP", - "gas": 1988171, - "gasCost": 2, "depth": 2, + "gas": 1989632, + "gasCost": 2, + "op": "POP", + "pc": 573, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7584,11 +7584,11 @@ ] }, { - "pc": 574, - "op": "JUMP", - "gas": 1988169, - "gasCost": 8, "depth": 2, + "gas": 1989630, + "gasCost": 8, + "op": "JUMP", + "pc": 574, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7607,11 +7607,11 @@ ] }, { - "pc": 810, - "op": "JUMPDEST", - "gas": 1988161, - "gasCost": 1, "depth": 2, + "gas": 1989622, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 810, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7629,11 +7629,11 @@ ] }, { - "pc": 811, - "op": "SWAP2", - "gas": 1988160, - "gasCost": 3, "depth": 2, + "gas": 1989621, + "gasCost": 3, + "op": "SWAP2", + "pc": 811, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7651,11 +7651,11 @@ ] }, { - "pc": 812, - "op": "POP", - "gas": 1988157, - "gasCost": 2, "depth": 2, + "gas": 1989618, + "gasCost": 2, + "op": "POP", + "pc": 812, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7673,11 +7673,11 @@ ] }, { - "pc": 813, - "op": "PUSH3", - "gas": 1988155, - "gasCost": 3, "depth": 2, + "gas": 1989616, + "gasCost": 3, + "op": "PUSH3", + "pc": 813, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7694,11 +7694,11 @@ ] }, { - "pc": 817, - "op": "DUP3", - "gas": 1988152, - "gasCost": 3, "depth": 2, + "gas": 1989613, + "gasCost": 3, + "op": "DUP3", + "pc": 817, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7716,11 +7716,11 @@ ] }, { - "pc": 818, - "op": "PUSH3", - "gas": 1988149, - "gasCost": 3, "depth": 2, + "gas": 1989610, + "gasCost": 3, + "op": "PUSH3", + "pc": 818, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7739,11 +7739,11 @@ ] }, { - "pc": 822, - "op": "JUMP", - "gas": 1988146, - "gasCost": 8, "depth": 2, + "gas": 1989607, + "gasCost": 8, + "op": "JUMP", + "pc": 822, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7763,11 +7763,11 @@ ] }, { - "pc": 754, - "op": "JUMPDEST", - "gas": 1988138, - "gasCost": 1, "depth": 2, + "gas": 1989599, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 754, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7786,11 +7786,11 @@ ] }, { - "pc": 755, - "op": "PUSH32", - "gas": 1988137, - "gasCost": 3, "depth": 2, + "gas": 1989598, + "gasCost": 3, + "op": "PUSH32", + "pc": 755, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7809,11 +7809,11 @@ ] }, { - "pc": 788, - "op": "PUSH1", - "gas": 1988134, - "gasCost": 3, "depth": 2, + "gas": 1989595, + "gasCost": 3, + "op": "PUSH1", + "pc": 788, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7833,11 +7833,11 @@ ] }, { - "pc": 790, - "op": "DUP3", - "gas": 1988131, - "gasCost": 3, "depth": 2, + "gas": 1989592, + "gasCost": 3, + "op": "DUP3", + "pc": 790, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7858,11 +7858,11 @@ ] }, { - "pc": 791, - "op": "ADD", - "gas": 1988128, - "gasCost": 3, "depth": 2, + "gas": 1989589, + "gasCost": 3, + "op": "ADD", + "pc": 791, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7884,11 +7884,11 @@ ] }, { - "pc": 792, - "op": "MSTORE", - "gas": 1988125, - "gasCost": 6, "depth": 2, + "gas": 1989586, + "gasCost": 6, + "op": "MSTORE", + "pc": 792, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7909,11 +7909,11 @@ ] }, { - "pc": 793, - "op": "POP", - "gas": 1988119, - "gasCost": 2, "depth": 2, + "gas": 1989580, + "gasCost": 2, + "op": "POP", + "pc": 793, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7932,11 +7932,11 @@ ] }, { - "pc": 794, - "op": "JUMP", - "gas": 1988117, - "gasCost": 8, "depth": 2, + "gas": 1989578, + "gasCost": 8, + "op": "JUMP", + "pc": 794, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7954,11 +7954,11 @@ ] }, { - "pc": 823, - "op": "JUMPDEST", - "gas": 1988109, - "gasCost": 1, "depth": 2, + "gas": 1989570, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 823, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7975,11 +7975,11 @@ ] }, { - "pc": 824, - "op": "PUSH1", - "gas": 1988108, - "gasCost": 3, "depth": 2, + "gas": 1989569, + "gasCost": 3, + "op": "PUSH1", + "pc": 824, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7996,11 +7996,11 @@ ] }, { - "pc": 826, - "op": "DUP3", - "gas": 1988105, - "gasCost": 3, "depth": 2, + "gas": 1989566, + "gasCost": 3, + "op": "DUP3", + "pc": 826, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8018,11 +8018,11 @@ ] }, { - "pc": 827, - "op": "ADD", - "gas": 1988102, - "gasCost": 3, "depth": 2, + "gas": 1989563, + "gasCost": 3, + "op": "ADD", + "pc": 827, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8041,11 +8041,11 @@ ] }, { - "pc": 828, - "op": "SWAP1", - "gas": 1988099, - "gasCost": 3, "depth": 2, + "gas": 1989560, + "gasCost": 3, + "op": "SWAP1", + "pc": 828, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8063,11 +8063,11 @@ ] }, { - "pc": 829, - "op": "POP", - "gas": 1988096, - "gasCost": 2, "depth": 2, + "gas": 1989557, + "gasCost": 2, + "op": "POP", + "pc": 829, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8085,11 +8085,11 @@ ] }, { - "pc": 830, - "op": "SWAP2", - "gas": 1988094, - "gasCost": 3, "depth": 2, + "gas": 1989555, + "gasCost": 3, + "op": "SWAP2", + "pc": 830, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8106,11 +8106,11 @@ ] }, { - "pc": 831, - "op": "SWAP1", - "gas": 1988091, - "gasCost": 3, "depth": 2, + "gas": 1989552, + "gasCost": 3, + "op": "SWAP1", + "pc": 831, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8127,11 +8127,11 @@ ] }, { - "pc": 832, - "op": "POP", - "gas": 1988088, - "gasCost": 2, "depth": 2, + "gas": 1989549, + "gasCost": 2, + "op": "POP", + "pc": 832, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8148,11 +8148,11 @@ ] }, { - "pc": 833, - "op": "JUMP", - "gas": 1988086, - "gasCost": 8, "depth": 2, + "gas": 1989547, + "gasCost": 8, + "op": "JUMP", + "pc": 833, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8168,11 +8168,11 @@ ] }, { - "pc": 876, - "op": "JUMPDEST", - "gas": 1988078, - "gasCost": 1, "depth": 2, + "gas": 1989539, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 876, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8187,11 +8187,11 @@ ] }, { - "pc": 877, - "op": "SWAP1", - "gas": 1988077, - "gasCost": 3, "depth": 2, + "gas": 1989538, + "gasCost": 3, + "op": "SWAP1", + "pc": 877, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8206,11 +8206,11 @@ ] }, { - "pc": 878, - "op": "POP", - "gas": 1988074, - "gasCost": 2, "depth": 2, + "gas": 1989535, + "gasCost": 2, + "op": "POP", + "pc": 878, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8225,11 +8225,11 @@ ] }, { - "pc": 879, - "op": "SWAP3", - "gas": 1988072, - "gasCost": 3, "depth": 2, + "gas": 1989533, + "gasCost": 3, + "op": "SWAP3", + "pc": 879, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8243,11 +8243,11 @@ ] }, { - "pc": 880, - "op": "SWAP2", - "gas": 1988069, - "gasCost": 3, "depth": 2, + "gas": 1989530, + "gasCost": 3, + "op": "SWAP2", + "pc": 880, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8261,11 +8261,11 @@ ] }, { - "pc": 881, - "op": "POP", - "gas": 1988066, - "gasCost": 2, "depth": 2, + "gas": 1989527, + "gasCost": 2, + "op": "POP", + "pc": 881, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8279,11 +8279,11 @@ ] }, { - "pc": 882, - "op": "POP", - "gas": 1988064, - "gasCost": 2, "depth": 2, + "gas": 1989525, + "gasCost": 2, + "op": "POP", + "pc": 882, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8296,11 +8296,11 @@ ] }, { - "pc": 883, - "op": "JUMP", - "gas": 1988062, - "gasCost": 8, "depth": 2, + "gas": 1989523, + "gasCost": 8, + "op": "JUMP", + "pc": 883, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8312,11 +8312,11 @@ ] }, { - "pc": 269, - "op": "JUMPDEST", - "gas": 1988054, - "gasCost": 1, "depth": 2, + "gas": 1989515, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 269, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8327,11 +8327,11 @@ ] }, { - "pc": 270, - "op": "PUSH1", - "gas": 1988053, - "gasCost": 3, "depth": 2, + "gas": 1989514, + "gasCost": 3, + "op": "PUSH1", + "pc": 270, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8342,11 +8342,11 @@ ] }, { - "pc": 272, - "op": "MLOAD", - "gas": 1988050, - "gasCost": 3, "depth": 2, + "gas": 1989511, + "gasCost": 3, + "op": "MLOAD", + "pc": 272, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8358,11 +8358,11 @@ ] }, { - "pc": 273, - "op": "DUP1", - "gas": 1988047, - "gasCost": 3, "depth": 2, + "gas": 1989508, + "gasCost": 3, + "op": "DUP1", + "pc": 273, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8374,11 +8374,11 @@ ] }, { - "pc": 274, - "op": "SWAP2", - "gas": 1988044, - "gasCost": 3, "depth": 2, + "gas": 1989505, + "gasCost": 3, + "op": "SWAP2", + "pc": 274, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8391,11 +8391,11 @@ ] }, { - "pc": 275, - "op": "SUB", - "gas": 1988041, - "gasCost": 3, "depth": 2, + "gas": 1989502, + "gasCost": 3, + "op": "SUB", + "pc": 275, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8408,11 +8408,11 @@ ] }, { - "pc": 276, - "op": "SWAP1", - "gas": 1988038, - "gasCost": 3, "depth": 2, + "gas": 1989499, + "gasCost": 3, + "op": "SWAP1", + "pc": 276, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8424,11 +8424,11 @@ ] }, { - "pc": 277, - "op": "LOG2", - "gas": 1988035, - "gasCost": 2149, "depth": 2, + "gas": 1989496, + "gasCost": 2149, + "op": "LOG2", + "pc": 277, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8440,11 +8440,11 @@ ] }, { - "pc": 278, - "op": "DUP2", - "gas": 1985886, - "gasCost": 3, "depth": 2, + "gas": 1987347, + "gasCost": 3, + "op": "DUP2", + "pc": 278, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8452,11 +8452,11 @@ ] }, { - "pc": 279, - "op": "PUSH1", - "gas": 1985883, - "gasCost": 3, "depth": 2, + "gas": 1987344, + "gasCost": 3, + "op": "PUSH1", + "pc": 279, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8465,11 +8465,11 @@ ] }, { - "pc": 281, - "op": "DUP1", - "gas": 1985880, - "gasCost": 3, "depth": 2, + "gas": 1987341, + "gasCost": 3, + "op": "DUP1", + "pc": 281, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8479,11 +8479,11 @@ ] }, { - "pc": 282, - "op": "DUP3", - "gas": 1985877, - "gasCost": 3, "depth": 2, + "gas": 1987338, + "gasCost": 3, + "op": "DUP3", + "pc": 282, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8494,11 +8494,11 @@ ] }, { - "pc": 283, - "op": "DUP3", - "gas": 1985874, - "gasCost": 3, "depth": 2, + "gas": 1987335, + "gasCost": 3, + "op": "DUP3", + "pc": 283, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8510,11 +8510,11 @@ ] }, { - "pc": 284, - "op": "SLOAD", - "gas": 1985871, - "gasCost": 2100, "depth": 2, + "gas": 1987332, + "gasCost": 200, + "op": "SLOAD", + "pc": 284, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8531,11 +8531,11 @@ } }, { - "pc": 285, - "op": "PUSH3", - "gas": 1983771, - "gasCost": 3, "depth": 2, + "gas": 1987132, + "gasCost": 3, + "op": "PUSH3", + "pc": 285, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8548,11 +8548,11 @@ ] }, { - "pc": 289, - "op": "SWAP2", - "gas": 1983768, - "gasCost": 3, "depth": 2, + "gas": 1987129, + "gasCost": 3, + "op": "SWAP2", + "pc": 289, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8566,11 +8566,11 @@ ] }, { - "pc": 290, - "op": "SWAP1", - "gas": 1983765, - "gasCost": 3, "depth": 2, + "gas": 1987126, + "gasCost": 3, + "op": "SWAP1", + "pc": 290, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8584,11 +8584,11 @@ ] }, { - "pc": 291, - "op": "PUSH3", - "gas": 1983762, - "gasCost": 3, "depth": 2, + "gas": 1987123, + "gasCost": 3, + "op": "PUSH3", + "pc": 291, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8601,12 +8601,12 @@ "0x0" ] }, - { - "pc": 295, - "op": "JUMP", - "gas": 1983759, - "gasCost": 8, + { "depth": 2, + "gas": 1987120, + "gasCost": 8, + "op": "JUMP", + "pc": 295, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8621,11 +8621,11 @@ ] }, { - "pc": 931, - "op": "JUMPDEST", - "gas": 1983751, - "gasCost": 1, "depth": 2, + "gas": 1987112, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 931, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8639,11 +8639,11 @@ ] }, { - "pc": 932, - "op": "PUSH1", - "gas": 1983750, - "gasCost": 3, "depth": 2, + "gas": 1987111, + "gasCost": 3, + "op": "PUSH1", + "pc": 932, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8657,11 +8657,11 @@ ] }, { - "pc": 934, - "op": "PUSH3", - "gas": 1983747, - "gasCost": 3, "depth": 2, + "gas": 1987108, + "gasCost": 3, + "op": "PUSH3", + "pc": 934, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8676,11 +8676,11 @@ ] }, { - "pc": 938, - "op": "DUP3", - "gas": 1983744, - "gasCost": 3, "depth": 2, + "gas": 1987105, + "gasCost": 3, + "op": "DUP3", + "pc": 938, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8696,11 +8696,11 @@ ] }, { - "pc": 939, - "op": "PUSH3", - "gas": 1983741, - "gasCost": 3, "depth": 2, + "gas": 1987102, + "gasCost": 3, + "op": "PUSH3", + "pc": 939, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8717,11 +8717,11 @@ ] }, { - "pc": 943, - "op": "JUMP", - "gas": 1983738, - "gasCost": 8, "depth": 2, + "gas": 1987099, + "gasCost": 8, + "op": "JUMP", + "pc": 943, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8739,11 +8739,11 @@ ] }, { - "pc": 727, - "op": "JUMPDEST", - "gas": 1983730, - "gasCost": 1, "depth": 2, + "gas": 1987091, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 727, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8760,11 +8760,11 @@ ] }, { - "pc": 728, - "op": "PUSH1", - "gas": 1983729, - "gasCost": 3, "depth": 2, + "gas": 1987090, + "gasCost": 3, + "op": "PUSH1", + "pc": 728, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8781,11 +8781,11 @@ ] }, { - "pc": 730, - "op": "DUP2", - "gas": 1983726, - "gasCost": 3, "depth": 2, + "gas": 1987087, + "gasCost": 3, + "op": "DUP2", + "pc": 730, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8803,11 +8803,11 @@ ] }, { - "pc": 731, - "op": "SWAP1", - "gas": 1983723, - "gasCost": 3, "depth": 2, + "gas": 1987084, + "gasCost": 3, + "op": "SWAP1", + "pc": 731, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8826,11 +8826,11 @@ ] }, { - "pc": 732, - "op": "POP", - "gas": 1983720, - "gasCost": 2, "depth": 2, + "gas": 1987081, + "gasCost": 2, + "op": "POP", + "pc": 732, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8849,11 +8849,11 @@ ] }, { - "pc": 733, - "op": "SWAP2", - "gas": 1983718, - "gasCost": 3, "depth": 2, + "gas": 1987079, + "gasCost": 3, + "op": "SWAP2", + "pc": 733, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8871,11 +8871,11 @@ ] }, { - "pc": 734, - "op": "SWAP1", - "gas": 1983715, - "gasCost": 3, "depth": 2, + "gas": 1987076, + "gasCost": 3, + "op": "SWAP1", + "pc": 734, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8893,11 +8893,11 @@ ] }, { - "pc": 735, - "op": "POP", - "gas": 1983712, - "gasCost": 2, "depth": 2, + "gas": 1987073, + "gasCost": 2, + "op": "POP", + "pc": 735, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8915,11 +8915,11 @@ ] }, { - "pc": 736, - "op": "JUMP", - "gas": 1983710, - "gasCost": 8, "depth": 2, + "gas": 1987071, + "gasCost": 8, + "op": "JUMP", + "pc": 736, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8936,11 +8936,11 @@ ] }, { - "pc": 944, - "op": "JUMPDEST", - "gas": 1983702, - "gasCost": 1, "depth": 2, + "gas": 1987063, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 944, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8956,11 +8956,11 @@ ] }, { - "pc": 945, - "op": "SWAP2", - "gas": 1983701, - "gasCost": 3, "depth": 2, + "gas": 1987062, + "gasCost": 3, + "op": "SWAP2", + "pc": 945, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8976,11 +8976,11 @@ ] }, { - "pc": 946, - "op": "POP", - "gas": 1983698, - "gasCost": 2, "depth": 2, + "gas": 1987059, + "gasCost": 2, + "op": "POP", + "pc": 946, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8996,11 +8996,11 @@ ] }, { - "pc": 947, - "op": "PUSH3", - "gas": 1983696, - "gasCost": 3, "depth": 2, + "gas": 1987057, + "gasCost": 3, + "op": "PUSH3", + "pc": 947, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9015,11 +9015,11 @@ ] }, { - "pc": 951, - "op": "DUP4", - "gas": 1983693, - "gasCost": 3, "depth": 2, + "gas": 1987054, + "gasCost": 3, + "op": "DUP4", + "pc": 951, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9035,11 +9035,11 @@ ] }, { - "pc": 952, - "op": "PUSH3", - "gas": 1983690, - "gasCost": 3, "depth": 2, + "gas": 1987051, + "gasCost": 3, + "op": "PUSH3", + "pc": 952, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9056,11 +9056,11 @@ ] }, { - "pc": 956, - "op": "JUMP", - "gas": 1983687, - "gasCost": 8, "depth": 2, + "gas": 1987048, + "gasCost": 8, + "op": "JUMP", + "pc": 956, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9078,11 +9078,11 @@ ] }, { - "pc": 727, - "op": "JUMPDEST", - "gas": 1983679, - "gasCost": 1, "depth": 2, + "gas": 1987040, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 727, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9099,11 +9099,11 @@ ] }, { - "pc": 728, - "op": "PUSH1", - "gas": 1983678, - "gasCost": 3, "depth": 2, + "gas": 1987039, + "gasCost": 3, + "op": "PUSH1", + "pc": 728, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9120,11 +9120,11 @@ ] }, { - "pc": 730, - "op": "DUP2", - "gas": 1983675, - "gasCost": 3, "depth": 2, + "gas": 1987036, + "gasCost": 3, + "op": "DUP2", + "pc": 730, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9142,11 +9142,11 @@ ] }, { - "pc": 731, - "op": "SWAP1", - "gas": 1983672, - "gasCost": 3, "depth": 2, + "gas": 1987033, + "gasCost": 3, + "op": "SWAP1", + "pc": 731, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9165,11 +9165,11 @@ ] }, { - "pc": 732, - "op": "POP", - "gas": 1983669, - "gasCost": 2, "depth": 2, + "gas": 1987030, + "gasCost": 2, + "op": "POP", + "pc": 732, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9188,11 +9188,11 @@ ] }, { - "pc": 733, - "op": "SWAP2", - "gas": 1983667, - "gasCost": 3, "depth": 2, + "gas": 1987028, + "gasCost": 3, + "op": "SWAP2", + "pc": 733, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9210,11 +9210,11 @@ ] }, { - "pc": 734, - "op": "SWAP1", - "gas": 1983664, - "gasCost": 3, "depth": 2, + "gas": 1987025, + "gasCost": 3, + "op": "SWAP1", + "pc": 734, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9232,11 +9232,11 @@ ] }, { - "pc": 735, - "op": "POP", - "gas": 1983661, - "gasCost": 2, "depth": 2, + "gas": 1987022, + "gasCost": 2, + "op": "POP", + "pc": 735, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9254,11 +9254,11 @@ ] }, { - "pc": 736, - "op": "JUMP", - "gas": 1983659, - "gasCost": 8, "depth": 2, + "gas": 1987020, + "gasCost": 8, + "op": "JUMP", + "pc": 736, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9275,11 +9275,11 @@ ] }, { - "pc": 957, - "op": "JUMPDEST", - "gas": 1983651, - "gasCost": 1, "depth": 2, + "gas": 1987012, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 957, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9295,11 +9295,11 @@ ] }, { - "pc": 958, - "op": "SWAP3", - "gas": 1983650, - "gasCost": 3, "depth": 2, + "gas": 1987011, + "gasCost": 3, + "op": "SWAP3", + "pc": 958, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9315,11 +9315,11 @@ ] }, { - "pc": 959, - "op": "POP", - "gas": 1983647, - "gasCost": 2, "depth": 2, + "gas": 1987008, + "gasCost": 2, + "op": "POP", + "pc": 959, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9335,11 +9335,11 @@ ] }, { - "pc": 960, - "op": "DUP3", - "gas": 1983645, - "gasCost": 3, "depth": 2, + "gas": 1987006, + "gasCost": 3, + "op": "DUP3", + "pc": 960, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9354,11 +9354,11 @@ ] }, { - "pc": 961, - "op": "DUP3", - "gas": 1983642, - "gasCost": 3, "depth": 2, + "gas": 1987003, + "gasCost": 3, + "op": "DUP3", + "pc": 961, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9374,11 +9374,11 @@ ] }, { - "pc": 962, - "op": "ADD", - "gas": 1983639, - "gasCost": 3, "depth": 2, + "gas": 1987000, + "gasCost": 3, + "op": "ADD", + "pc": 962, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9395,11 +9395,11 @@ ] }, { - "pc": 963, - "op": "SWAP1", - "gas": 1983636, - "gasCost": 3, "depth": 2, + "gas": 1986997, + "gasCost": 3, + "op": "SWAP1", + "pc": 963, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9415,11 +9415,11 @@ ] }, { - "pc": 964, - "op": "POP", - "gas": 1983633, - "gasCost": 2, "depth": 2, + "gas": 1986994, + "gasCost": 2, + "op": "POP", + "pc": 964, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9435,11 +9435,11 @@ ] }, { - "pc": 965, - "op": "DUP1", - "gas": 1983631, - "gasCost": 3, "depth": 2, + "gas": 1986992, + "gasCost": 3, + "op": "DUP1", + "pc": 965, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9454,11 +9454,11 @@ ] }, { - "pc": 966, - "op": "DUP3", - "gas": 1983628, - "gasCost": 3, "depth": 2, + "gas": 1986989, + "gasCost": 3, + "op": "DUP3", + "pc": 966, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9474,11 +9474,11 @@ ] }, { - "pc": 967, - "op": "GT", - "gas": 1983625, - "gasCost": 3, "depth": 2, + "gas": 1986986, + "gasCost": 3, + "op": "GT", + "pc": 967, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9495,11 +9495,11 @@ ] }, { - "pc": 968, - "op": "ISZERO", - "gas": 1983622, - "gasCost": 3, "depth": 2, + "gas": 1986983, + "gasCost": 3, + "op": "ISZERO", + "pc": 968, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9515,11 +9515,11 @@ ] }, { - "pc": 969, - "op": "PUSH3", - "gas": 1983619, - "gasCost": 3, "depth": 2, + "gas": 1986980, + "gasCost": 3, + "op": "PUSH3", + "pc": 969, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9535,11 +9535,11 @@ ] }, { - "pc": 973, - "op": "JUMPI", - "gas": 1983616, - "gasCost": 10, "depth": 2, + "gas": 1986977, + "gasCost": 10, + "op": "JUMPI", + "pc": 973, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9556,11 +9556,11 @@ ] }, { - "pc": 984, - "op": "JUMPDEST", - "gas": 1983606, - "gasCost": 1, "depth": 2, + "gas": 1986967, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 984, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9575,11 +9575,11 @@ ] }, { - "pc": 985, - "op": "SWAP3", - "gas": 1983605, - "gasCost": 3, "depth": 2, + "gas": 1986966, + "gasCost": 3, + "op": "SWAP3", + "pc": 985, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9594,11 +9594,11 @@ ] }, { - "pc": 986, - "op": "SWAP2", - "gas": 1983602, - "gasCost": 3, "depth": 2, + "gas": 1986963, + "gasCost": 3, + "op": "SWAP2", + "pc": 986, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9613,11 +9613,11 @@ ] }, { - "pc": 987, - "op": "POP", - "gas": 1983599, - "gasCost": 2, "depth": 2, + "gas": 1986960, + "gasCost": 2, + "op": "POP", + "pc": 987, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9632,11 +9632,11 @@ ] }, { - "pc": 988, - "op": "POP", - "gas": 1983597, - "gasCost": 2, "depth": 2, + "gas": 1986958, + "gasCost": 2, + "op": "POP", + "pc": 988, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9650,11 +9650,11 @@ ] }, { - "pc": 989, - "op": "JUMP", - "gas": 1983595, - "gasCost": 8, "depth": 2, + "gas": 1986956, + "gasCost": 8, + "op": "JUMP", + "pc": 989, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9667,11 +9667,11 @@ ] }, { - "pc": 296, - "op": "JUMPDEST", - "gas": 1983587, - "gasCost": 1, "depth": 2, + "gas": 1986948, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 296, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9683,11 +9683,11 @@ ] }, { - "pc": 297, - "op": "SWAP3", - "gas": 1983586, - "gasCost": 3, "depth": 2, + "gas": 1986947, + "gasCost": 3, + "op": "SWAP3", + "pc": 297, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9699,11 +9699,11 @@ ] }, { - "pc": 298, - "op": "POP", - "gas": 1983583, - "gasCost": 2, "depth": 2, + "gas": 1986944, + "gasCost": 2, + "op": "POP", + "pc": 298, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9715,11 +9715,11 @@ ] }, { - "pc": 299, - "op": "POP", - "gas": 1983581, - "gasCost": 2, "depth": 2, + "gas": 1986942, + "gasCost": 2, + "op": "POP", + "pc": 299, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9730,11 +9730,11 @@ ] }, { - "pc": 300, - "op": "DUP2", - "gas": 1983579, - "gasCost": 3, "depth": 2, + "gas": 1986940, + "gasCost": 3, + "op": "DUP2", + "pc": 300, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9744,11 +9744,11 @@ ] }, { - "pc": 301, - "op": "SWAP1", - "gas": 1983576, - "gasCost": 3, "depth": 2, + "gas": 1986937, + "gasCost": 3, + "op": "SWAP1", + "pc": 301, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9759,11 +9759,11 @@ ] }, { - "pc": 302, - "op": "SSTORE", - "gas": 1983573, - "gasCost": 20000, "depth": 2, + "gas": 1986934, + "gasCost": 20000, + "op": "SSTORE", + "pc": 302, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9778,11 +9778,11 @@ } }, { - "pc": 303, - "op": "POP", - "gas": 1963573, - "gasCost": 2, "depth": 2, + "gas": 1966934, + "gasCost": 2, + "op": "POP", + "pc": 303, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9791,11 +9791,11 @@ ] }, { - "pc": 304, - "op": "PUSH3", - "gas": 1963571, - "gasCost": 3, "depth": 2, + "gas": 1966932, + "gasCost": 3, + "op": "PUSH3", + "pc": 304, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9803,11 +9803,11 @@ ] }, { - "pc": 308, - "op": "PUSH1", - "gas": 1963568, - "gasCost": 3, "depth": 2, + "gas": 1966929, + "gasCost": 3, + "op": "PUSH1", + "pc": 308, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9816,11 +9816,11 @@ ] }, { - "pc": 310, - "op": "DUP4", - "gas": 1963565, - "gasCost": 3, "depth": 2, + "gas": 1966926, + "gasCost": 3, + "op": "DUP4", + "pc": 310, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9830,11 +9830,11 @@ ] }, { - "pc": 311, - "op": "PUSH3", - "gas": 1963562, - "gasCost": 3, "depth": 2, + "gas": 1966923, + "gasCost": 3, + "op": "PUSH3", + "pc": 311, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9845,11 +9845,11 @@ ] }, { - "pc": 315, - "op": "SWAP2", - "gas": 1963559, - "gasCost": 3, "depth": 2, + "gas": 1966920, + "gasCost": 3, + "op": "SWAP2", + "pc": 315, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9861,11 +9861,11 @@ ] }, { - "pc": 316, - "op": "SWAP1", - "gas": 1963556, - "gasCost": 3, "depth": 2, + "gas": 1966917, + "gasCost": 3, + "op": "SWAP1", + "pc": 316, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9877,11 +9877,11 @@ ] }, { - "pc": 317, - "op": "PUSH3", - "gas": 1963553, - "gasCost": 3, "depth": 2, + "gas": 1966914, + "gasCost": 3, + "op": "PUSH3", + "pc": 317, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9893,11 +9893,11 @@ ] }, { - "pc": 321, - "op": "JUMP", - "gas": 1963550, - "gasCost": 8, "depth": 2, + "gas": 1966911, + "gasCost": 8, + "op": "JUMP", + "pc": 321, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9910,11 +9910,11 @@ ] }, { - "pc": 931, - "op": "JUMPDEST", - "gas": 1963542, - "gasCost": 1, "depth": 2, + "gas": 1966903, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 931, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9926,11 +9926,11 @@ ] }, { - "pc": 932, - "op": "PUSH1", - "gas": 1963541, - "gasCost": 3, "depth": 2, + "gas": 1966902, + "gasCost": 3, + "op": "PUSH1", + "pc": 932, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9942,11 +9942,11 @@ ] }, { - "pc": 934, - "op": "PUSH3", - "gas": 1963538, - "gasCost": 3, "depth": 2, + "gas": 1966899, + "gasCost": 3, + "op": "PUSH3", + "pc": 934, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9959,11 +9959,11 @@ ] }, { - "pc": 938, - "op": "DUP3", - "gas": 1963535, - "gasCost": 3, "depth": 2, + "gas": 1966896, + "gasCost": 3, + "op": "DUP3", + "pc": 938, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9977,11 +9977,11 @@ ] }, { - "pc": 939, - "op": "PUSH3", - "gas": 1963532, - "gasCost": 3, "depth": 2, + "gas": 1966893, + "gasCost": 3, + "op": "PUSH3", + "pc": 939, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9996,11 +9996,11 @@ ] }, { - "pc": 943, - "op": "JUMP", - "gas": 1963529, - "gasCost": 8, "depth": 2, + "gas": 1966890, + "gasCost": 8, + "op": "JUMP", + "pc": 943, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10016,11 +10016,11 @@ ] }, { - "pc": 727, - "op": "JUMPDEST", - "gas": 1963521, - "gasCost": 1, "depth": 2, + "gas": 1966882, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 727, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10035,11 +10035,11 @@ ] }, { - "pc": 728, - "op": "PUSH1", - "gas": 1963520, - "gasCost": 3, "depth": 2, + "gas": 1966881, + "gasCost": 3, + "op": "PUSH1", + "pc": 728, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10054,11 +10054,11 @@ ] }, { - "pc": 730, - "op": "DUP2", - "gas": 1963517, - "gasCost": 3, "depth": 2, + "gas": 1966878, + "gasCost": 3, + "op": "DUP2", + "pc": 730, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10074,11 +10074,11 @@ ] }, { - "pc": 731, - "op": "SWAP1", - "gas": 1963514, - "gasCost": 3, "depth": 2, + "gas": 1966875, + "gasCost": 3, + "op": "SWAP1", + "pc": 731, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10095,11 +10095,11 @@ ] }, { - "pc": 732, - "op": "POP", - "gas": 1963511, - "gasCost": 2, "depth": 2, + "gas": 1966872, + "gasCost": 2, + "op": "POP", + "pc": 732, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10116,11 +10116,11 @@ ] }, { - "pc": 733, - "op": "SWAP2", - "gas": 1963509, - "gasCost": 3, "depth": 2, + "gas": 1966870, + "gasCost": 3, + "op": "SWAP2", + "pc": 733, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10136,11 +10136,11 @@ ] }, { - "pc": 734, - "op": "SWAP1", - "gas": 1963506, - "gasCost": 3, "depth": 2, + "gas": 1966867, + "gasCost": 3, + "op": "SWAP1", + "pc": 734, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10156,11 +10156,11 @@ ] }, { - "pc": 735, - "op": "POP", - "gas": 1963503, - "gasCost": 2, "depth": 2, + "gas": 1966864, + "gasCost": 2, + "op": "POP", + "pc": 735, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10176,11 +10176,11 @@ ] }, { - "pc": 736, - "op": "JUMP", - "gas": 1963501, - "gasCost": 8, "depth": 2, + "gas": 1966862, + "gasCost": 8, + "op": "JUMP", + "pc": 736, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10195,11 +10195,11 @@ ] }, { - "pc": 944, - "op": "JUMPDEST", - "gas": 1963493, - "gasCost": 1, "depth": 2, + "gas": 1966854, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 944, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10213,11 +10213,11 @@ ] }, { - "pc": 945, - "op": "SWAP2", - "gas": 1963492, - "gasCost": 3, "depth": 2, + "gas": 1966853, + "gasCost": 3, + "op": "SWAP2", + "pc": 945, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10231,11 +10231,11 @@ ] }, { - "pc": 946, - "op": "POP", - "gas": 1963489, - "gasCost": 2, "depth": 2, + "gas": 1966850, + "gasCost": 2, + "op": "POP", + "pc": 946, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10249,11 +10249,11 @@ ] }, { - "pc": 947, - "op": "PUSH3", - "gas": 1963487, - "gasCost": 3, "depth": 2, + "gas": 1966848, + "gasCost": 3, + "op": "PUSH3", + "pc": 947, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10266,11 +10266,11 @@ ] }, { - "pc": 951, - "op": "DUP4", - "gas": 1963484, - "gasCost": 3, "depth": 2, + "gas": 1966845, + "gasCost": 3, + "op": "DUP4", + "pc": 951, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10284,11 +10284,11 @@ ] }, { - "pc": 952, - "op": "PUSH3", - "gas": 1963481, - "gasCost": 3, "depth": 2, + "gas": 1966842, + "gasCost": 3, + "op": "PUSH3", + "pc": 952, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10303,11 +10303,11 @@ ] }, { - "pc": 956, - "op": "JUMP", - "gas": 1963478, - "gasCost": 8, "depth": 2, + "gas": 1966839, + "gasCost": 8, + "op": "JUMP", + "pc": 956, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10323,11 +10323,11 @@ ] }, { - "pc": 727, - "op": "JUMPDEST", - "gas": 1963470, - "gasCost": 1, "depth": 2, + "gas": 1966831, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 727, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10342,11 +10342,11 @@ ] }, { - "pc": 728, - "op": "PUSH1", - "gas": 1963469, - "gasCost": 3, "depth": 2, + "gas": 1966830, + "gasCost": 3, + "op": "PUSH1", + "pc": 728, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10361,11 +10361,11 @@ ] }, { - "pc": 730, - "op": "DUP2", - "gas": 1963466, - "gasCost": 3, "depth": 2, + "gas": 1966827, + "gasCost": 3, + "op": "DUP2", + "pc": 730, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10381,11 +10381,11 @@ ] }, { - "pc": 731, - "op": "SWAP1", - "gas": 1963463, - "gasCost": 3, "depth": 2, + "gas": 1966824, + "gasCost": 3, + "op": "SWAP1", + "pc": 731, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10402,11 +10402,11 @@ ] }, { - "pc": 732, - "op": "POP", - "gas": 1963460, - "gasCost": 2, "depth": 2, + "gas": 1966821, + "gasCost": 2, + "op": "POP", + "pc": 732, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10423,11 +10423,11 @@ ] }, { - "pc": 733, - "op": "SWAP2", - "gas": 1963458, - "gasCost": 3, "depth": 2, + "gas": 1966819, + "gasCost": 3, + "op": "SWAP2", + "pc": 733, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10443,11 +10443,11 @@ ] }, { - "pc": 734, - "op": "SWAP1", - "gas": 1963455, - "gasCost": 3, "depth": 2, + "gas": 1966816, + "gasCost": 3, + "op": "SWAP1", + "pc": 734, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10463,11 +10463,11 @@ ] }, { - "pc": 735, - "op": "POP", - "gas": 1963452, - "gasCost": 2, "depth": 2, + "gas": 1966813, + "gasCost": 2, + "op": "POP", + "pc": 735, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10483,11 +10483,11 @@ ] }, { - "pc": 736, - "op": "JUMP", - "gas": 1963450, - "gasCost": 8, "depth": 2, + "gas": 1966811, + "gasCost": 8, + "op": "JUMP", + "pc": 736, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10502,11 +10502,11 @@ ] }, { - "pc": 957, - "op": "JUMPDEST", - "gas": 1963442, - "gasCost": 1, "depth": 2, + "gas": 1966803, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 957, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10520,11 +10520,11 @@ ] }, { - "pc": 958, - "op": "SWAP3", - "gas": 1963441, - "gasCost": 3, "depth": 2, + "gas": 1966802, + "gasCost": 3, + "op": "SWAP3", + "pc": 958, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10538,11 +10538,11 @@ ] }, { - "pc": 959, - "op": "POP", - "gas": 1963438, - "gasCost": 2, "depth": 2, + "gas": 1966799, + "gasCost": 2, + "op": "POP", + "pc": 959, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10556,11 +10556,11 @@ ] }, { - "pc": 960, - "op": "DUP3", - "gas": 1963436, - "gasCost": 3, "depth": 2, + "gas": 1966797, + "gasCost": 3, + "op": "DUP3", + "pc": 960, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10573,11 +10573,11 @@ ] }, { - "pc": 961, - "op": "DUP3", - "gas": 1963433, - "gasCost": 3, "depth": 2, + "gas": 1966794, + "gasCost": 3, + "op": "DUP3", + "pc": 961, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10591,11 +10591,11 @@ ] }, { - "pc": 962, - "op": "ADD", - "gas": 1963430, - "gasCost": 3, "depth": 2, + "gas": 1966791, + "gasCost": 3, + "op": "ADD", + "pc": 962, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10610,11 +10610,11 @@ ] }, { - "pc": 963, - "op": "SWAP1", - "gas": 1963427, - "gasCost": 3, "depth": 2, + "gas": 1966788, + "gasCost": 3, + "op": "SWAP1", + "pc": 963, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10628,11 +10628,11 @@ ] }, { - "pc": 964, - "op": "POP", - "gas": 1963424, - "gasCost": 2, "depth": 2, + "gas": 1966785, + "gasCost": 2, + "op": "POP", + "pc": 964, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10646,11 +10646,11 @@ ] }, { - "pc": 965, - "op": "DUP1", - "gas": 1963422, - "gasCost": 3, "depth": 2, + "gas": 1966783, + "gasCost": 3, + "op": "DUP1", + "pc": 965, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10663,11 +10663,11 @@ ] }, { - "pc": 966, - "op": "DUP3", - "gas": 1963419, - "gasCost": 3, "depth": 2, + "gas": 1966780, + "gasCost": 3, + "op": "DUP3", + "pc": 966, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10681,11 +10681,11 @@ ] }, { - "pc": 967, - "op": "GT", - "gas": 1963416, - "gasCost": 3, "depth": 2, + "gas": 1966777, + "gasCost": 3, + "op": "GT", + "pc": 967, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10700,11 +10700,11 @@ ] }, { - "pc": 968, - "op": "ISZERO", - "gas": 1963413, - "gasCost": 3, "depth": 2, + "gas": 1966774, + "gasCost": 3, + "op": "ISZERO", + "pc": 968, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10718,11 +10718,11 @@ ] }, { - "pc": 969, - "op": "PUSH3", - "gas": 1963410, - "gasCost": 3, "depth": 2, + "gas": 1966771, + "gasCost": 3, + "op": "PUSH3", + "pc": 969, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10736,11 +10736,11 @@ ] }, { - "pc": 973, - "op": "JUMPI", - "gas": 1963407, - "gasCost": 10, "depth": 2, + "gas": 1966768, + "gasCost": 10, + "op": "JUMPI", + "pc": 973, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10755,11 +10755,11 @@ ] }, { - "pc": 984, - "op": "JUMPDEST", - "gas": 1963397, - "gasCost": 1, "depth": 2, + "gas": 1966758, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 984, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10772,11 +10772,11 @@ ] }, { - "pc": 985, - "op": "SWAP3", - "gas": 1963396, - "gasCost": 3, "depth": 2, + "gas": 1966757, + "gasCost": 3, + "op": "SWAP3", + "pc": 985, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10789,11 +10789,11 @@ ] }, { - "pc": 986, - "op": "SWAP2", - "gas": 1963393, - "gasCost": 3, "depth": 2, + "gas": 1966754, + "gasCost": 3, + "op": "SWAP2", + "pc": 986, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10806,11 +10806,11 @@ ] }, { - "pc": 987, - "op": "POP", - "gas": 1963390, - "gasCost": 2, "depth": 2, + "gas": 1966751, + "gasCost": 2, + "op": "POP", + "pc": 987, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10823,11 +10823,11 @@ ] }, { - "pc": 988, - "op": "POP", - "gas": 1963388, - "gasCost": 2, "depth": 2, + "gas": 1966749, + "gasCost": 2, + "op": "POP", + "pc": 988, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10839,11 +10839,11 @@ ] }, { - "pc": 989, - "op": "JUMP", - "gas": 1963386, - "gasCost": 8, "depth": 2, + "gas": 1966747, + "gasCost": 8, + "op": "JUMP", + "pc": 989, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10854,11 +10854,11 @@ ] }, { - "pc": 322, - "op": "JUMPDEST", - "gas": 1963378, - "gasCost": 1, "depth": 2, + "gas": 1966739, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 322, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10868,11 +10868,11 @@ ] }, { - "pc": 323, - "op": "PUSH3", - "gas": 1963377, - "gasCost": 3, "depth": 2, + "gas": 1966738, + "gasCost": 3, + "op": "PUSH3", + "pc": 323, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10882,11 +10882,11 @@ ] }, { - "pc": 327, - "op": "PUSH1", - "gas": 1963374, - "gasCost": 3, "depth": 2, + "gas": 1966735, + "gasCost": 3, + "op": "PUSH1", + "pc": 327, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10897,11 +10897,11 @@ ] }, { - "pc": 329, - "op": "SHL", - "gas": 1963371, - "gasCost": 3, "depth": 2, + "gas": 1966732, + "gasCost": 3, + "op": "SHL", + "pc": 329, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10913,11 +10913,11 @@ ] }, { - "pc": 330, - "op": "PUSH1", - "gas": 1963368, - "gasCost": 3, "depth": 2, + "gas": 1966729, + "gasCost": 3, + "op": "PUSH1", + "pc": 330, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10928,11 +10928,11 @@ ] }, { - "pc": 332, - "op": "SHR", - "gas": 1963365, - "gasCost": 3, "depth": 2, + "gas": 1966726, + "gasCost": 3, + "op": "SHR", + "pc": 332, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10944,11 +10944,11 @@ ] }, { - "pc": 333, - "op": "JUMP", - "gas": 1963362, - "gasCost": 8, "depth": 2, + "gas": 1966723, + "gasCost": 8, + "op": "JUMP", + "pc": 333, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10959,11 +10959,11 @@ ] }, { - "pc": 361, - "op": "JUMPDEST", - "gas": 1963354, - "gasCost": 1, "depth": 2, + "gas": 1966715, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 361, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10973,11 +10973,11 @@ ] }, { - "pc": 362, - "op": "PUSH1", - "gas": 1963353, - "gasCost": 3, "depth": 2, + "gas": 1966714, + "gasCost": 3, + "op": "PUSH1", + "pc": 362, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10987,11 +10987,11 @@ ] }, { - "pc": 364, - "op": "CALLER", - "gas": 1963350, - "gasCost": 2, "depth": 2, + "gas": 1966711, + "gasCost": 2, + "op": "CALLER", + "pc": 364, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11002,11 +11002,11 @@ ] }, { - "pc": 365, - "op": "PUSH20", - "gas": 1963348, - "gasCost": 3, "depth": 2, + "gas": 1966709, + "gasCost": 3, + "op": "PUSH20", + "pc": 365, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11018,11 +11018,11 @@ ] }, { - "pc": 386, - "op": "AND", - "gas": 1963345, - "gasCost": 3, "depth": 2, + "gas": 1966706, + "gasCost": 3, + "op": "AND", + "pc": 386, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11035,11 +11035,11 @@ ] }, { - "pc": 387, - "op": "PUSH32", - "gas": 1963342, - "gasCost": 3, "depth": 2, + "gas": 1966703, + "gasCost": 3, + "op": "PUSH32", + "pc": 387, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11051,11 +11051,11 @@ ] }, { - "pc": 420, - "op": "DUP4", - "gas": 1963339, - "gasCost": 3, "depth": 2, + "gas": 1966700, + "gasCost": 3, + "op": "DUP4", + "pc": 420, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11068,11 +11068,11 @@ ] }, { - "pc": 421, - "op": "PUSH1", - "gas": 1963336, - "gasCost": 3, "depth": 2, + "gas": 1966697, + "gasCost": 3, + "op": "PUSH1", + "pc": 421, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11086,11 +11086,11 @@ ] }, { - "pc": 423, - "op": "MLOAD", - "gas": 1963333, - "gasCost": 3, "depth": 2, + "gas": 1966694, + "gasCost": 3, + "op": "MLOAD", + "pc": 423, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11105,11 +11105,11 @@ ] }, { - "pc": 424, - "op": "PUSH3", - "gas": 1963330, - "gasCost": 3, "depth": 2, + "gas": 1966691, + "gasCost": 3, + "op": "PUSH3", + "pc": 424, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11124,11 +11124,11 @@ ] }, { - "pc": 428, - "op": "SWAP2", - "gas": 1963327, - "gasCost": 3, "depth": 2, + "gas": 1966688, + "gasCost": 3, + "op": "SWAP2", + "pc": 428, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11144,11 +11144,11 @@ ] }, { - "pc": 429, - "op": "SWAP1", - "gas": 1963324, - "gasCost": 3, "depth": 2, + "gas": 1966685, + "gasCost": 3, + "op": "SWAP1", + "pc": 429, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11164,11 +11164,11 @@ ] }, { - "pc": 430, - "op": "PUSH3", - "gas": 1963321, - "gasCost": 3, "depth": 2, + "gas": 1966682, + "gasCost": 3, + "op": "PUSH3", + "pc": 430, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11184,11 +11184,11 @@ ] }, { - "pc": 434, - "op": "JUMP", - "gas": 1963318, - "gasCost": 8, "depth": 2, + "gas": 1966679, + "gasCost": 8, + "op": "JUMP", + "pc": 434, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11205,11 +11205,11 @@ ] }, { - "pc": 1070, - "op": "JUMPDEST", - "gas": 1963310, - "gasCost": 1, "depth": 2, + "gas": 1966671, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 1070, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11225,11 +11225,11 @@ ] }, { - "pc": 1071, - "op": "PUSH1", - "gas": 1963309, - "gasCost": 3, "depth": 2, + "gas": 1966670, + "gasCost": 3, + "op": "PUSH1", + "pc": 1071, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11245,11 +11245,11 @@ ] }, { - "pc": 1073, - "op": "PUSH1", - "gas": 1963306, - "gasCost": 3, "depth": 2, + "gas": 1966667, + "gasCost": 3, + "op": "PUSH1", + "pc": 1073, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11266,11 +11266,11 @@ ] }, { - "pc": 1075, - "op": "DUP3", - "gas": 1963303, - "gasCost": 3, "depth": 2, + "gas": 1966664, + "gasCost": 3, + "op": "DUP3", + "pc": 1075, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11288,11 +11288,11 @@ ] }, { - "pc": 1076, - "op": "ADD", - "gas": 1963300, - "gasCost": 3, "depth": 2, + "gas": 1966661, + "gasCost": 3, + "op": "ADD", + "pc": 1076, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11311,11 +11311,11 @@ ] }, { - "pc": 1077, - "op": "SWAP1", - "gas": 1963297, - "gasCost": 3, "depth": 2, + "gas": 1966658, + "gasCost": 3, + "op": "SWAP1", + "pc": 1077, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11333,11 +11333,11 @@ ] }, { - "pc": 1078, - "op": "POP", - "gas": 1963294, - "gasCost": 2, "depth": 2, + "gas": 1966655, + "gasCost": 2, + "op": "POP", + "pc": 1078, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11355,11 +11355,11 @@ ] }, { - "pc": 1079, - "op": "PUSH3", - "gas": 1963292, - "gasCost": 3, "depth": 2, + "gas": 1966653, + "gasCost": 3, + "op": "PUSH3", + "pc": 1079, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11376,11 +11376,11 @@ ] }, { - "pc": 1083, - "op": "PUSH1", - "gas": 1963289, - "gasCost": 3, "depth": 2, + "gas": 1966650, + "gasCost": 3, + "op": "PUSH1", + "pc": 1083, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11398,11 +11398,11 @@ ] }, { - "pc": 1085, - "op": "DUP4", - "gas": 1963286, - "gasCost": 3, "depth": 2, + "gas": 1966647, + "gasCost": 3, + "op": "DUP4", + "pc": 1085, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11421,11 +11421,11 @@ ] }, { - "pc": 1086, - "op": "ADD", - "gas": 1963283, - "gasCost": 3, "depth": 2, + "gas": 1966644, + "gasCost": 3, + "op": "ADD", + "pc": 1086, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11445,11 +11445,11 @@ ] }, { - "pc": 1087, - "op": "DUP5", - "gas": 1963280, - "gasCost": 3, "depth": 2, + "gas": 1966641, + "gasCost": 3, + "op": "DUP5", + "pc": 1087, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11468,11 +11468,11 @@ ] }, { - "pc": 1088, - "op": "PUSH3", - "gas": 1963277, - "gasCost": 3, "depth": 2, + "gas": 1966638, + "gasCost": 3, + "op": "PUSH3", + "pc": 1088, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11492,11 +11492,11 @@ ] }, { - "pc": 1092, - "op": "JUMP", - "gas": 1963274, - "gasCost": 8, "depth": 2, + "gas": 1966635, + "gasCost": 8, + "op": "JUMP", + "pc": 1092, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11517,11 +11517,11 @@ ] }, { - "pc": 737, - "op": "JUMPDEST", - "gas": 1963266, - "gasCost": 1, "depth": 2, + "gas": 1966627, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 737, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11541,11 +11541,11 @@ ] }, { - "pc": 738, - "op": "PUSH3", - "gas": 1963265, - "gasCost": 3, "depth": 2, + "gas": 1966626, + "gasCost": 3, + "op": "PUSH3", + "pc": 738, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11565,11 +11565,11 @@ ] }, { - "pc": 742, - "op": "DUP2", - "gas": 1963262, - "gasCost": 3, "depth": 2, + "gas": 1966623, + "gasCost": 3, + "op": "DUP2", + "pc": 742, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11590,11 +11590,11 @@ ] }, { - "pc": 743, - "op": "PUSH3", - "gas": 1963259, - "gasCost": 3, "depth": 2, + "gas": 1966620, + "gasCost": 3, + "op": "PUSH3", + "pc": 743, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11616,11 +11616,11 @@ ] }, { - "pc": 747, - "op": "JUMP", - "gas": 1963256, - "gasCost": 8, "depth": 2, + "gas": 1966617, + "gasCost": 8, + "op": "JUMP", + "pc": 747, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11643,11 +11643,11 @@ ] }, { - "pc": 727, - "op": "JUMPDEST", - "gas": 1963248, - "gasCost": 1, "depth": 2, + "gas": 1966609, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 727, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11669,11 +11669,11 @@ ] }, { - "pc": 728, - "op": "PUSH1", - "gas": 1963247, - "gasCost": 3, "depth": 2, + "gas": 1966608, + "gasCost": 3, + "op": "PUSH1", + "pc": 728, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11695,11 +11695,11 @@ ] }, { - "pc": 730, - "op": "DUP2", - "gas": 1963244, - "gasCost": 3, "depth": 2, + "gas": 1966605, + "gasCost": 3, + "op": "DUP2", + "pc": 730, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11722,11 +11722,11 @@ ] }, { - "pc": 731, - "op": "SWAP1", - "gas": 1963241, - "gasCost": 3, "depth": 2, + "gas": 1966602, + "gasCost": 3, + "op": "SWAP1", + "pc": 731, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11750,11 +11750,11 @@ ] }, { - "pc": 732, - "op": "POP", - "gas": 1963238, - "gasCost": 2, "depth": 2, + "gas": 1966599, + "gasCost": 2, + "op": "POP", + "pc": 732, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11778,11 +11778,11 @@ ] }, { - "pc": 733, - "op": "SWAP2", - "gas": 1963236, - "gasCost": 3, "depth": 2, + "gas": 1966597, + "gasCost": 3, + "op": "SWAP2", + "pc": 733, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11805,11 +11805,11 @@ ] }, { - "pc": 734, - "op": "SWAP1", - "gas": 1963233, - "gasCost": 3, "depth": 2, + "gas": 1966594, + "gasCost": 3, + "op": "SWAP1", + "pc": 734, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11832,11 +11832,11 @@ ] }, { - "pc": 735, - "op": "POP", - "gas": 1963230, - "gasCost": 2, "depth": 2, + "gas": 1966591, + "gasCost": 2, + "op": "POP", + "pc": 735, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11859,11 +11859,11 @@ ] }, { - "pc": 736, - "op": "JUMP", - "gas": 1963228, - "gasCost": 8, "depth": 2, + "gas": 1966589, + "gasCost": 8, + "op": "JUMP", + "pc": 736, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11885,11 +11885,11 @@ ] }, { - "pc": 748, - "op": "JUMPDEST", - "gas": 1963220, - "gasCost": 1, "depth": 2, + "gas": 1966581, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 748, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11910,11 +11910,11 @@ ] }, { - "pc": 749, - "op": "DUP3", - "gas": 1963219, - "gasCost": 3, "depth": 2, + "gas": 1966580, + "gasCost": 3, + "op": "DUP3", + "pc": 749, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11935,11 +11935,11 @@ ] }, { - "pc": 750, - "op": "MSTORE", - "gas": 1963216, - "gasCost": 3, "depth": 2, + "gas": 1966577, + "gasCost": 3, + "op": "MSTORE", + "pc": 750, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11961,11 +11961,11 @@ ] }, { - "pc": 751, - "op": "POP", - "gas": 1963213, - "gasCost": 2, "depth": 2, + "gas": 1966574, + "gasCost": 2, + "op": "POP", + "pc": 751, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11985,11 +11985,11 @@ ] }, { - "pc": 752, - "op": "POP", - "gas": 1963211, - "gasCost": 2, "depth": 2, + "gas": 1966572, + "gasCost": 2, + "op": "POP", + "pc": 752, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12008,11 +12008,11 @@ ] }, { - "pc": 753, - "op": "JUMP", - "gas": 1963209, - "gasCost": 8, "depth": 2, + "gas": 1966570, + "gasCost": 8, + "op": "JUMP", + "pc": 753, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12030,11 +12030,11 @@ ] }, { - "pc": 1093, - "op": "JUMPDEST", - "gas": 1963201, - "gasCost": 1, "depth": 2, + "gas": 1966562, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 1093, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12051,11 +12051,11 @@ ] }, { - "pc": 1094, - "op": "DUP2", - "gas": 1963200, - "gasCost": 3, "depth": 2, + "gas": 1966561, + "gasCost": 3, + "op": "DUP2", + "pc": 1094, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12072,11 +12072,11 @@ ] }, { - "pc": 1095, - "op": "DUP2", - "gas": 1963197, - "gasCost": 3, "depth": 2, + "gas": 1966558, + "gasCost": 3, + "op": "DUP2", + "pc": 1095, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12094,11 +12094,11 @@ ] }, { - "pc": 1096, - "op": "SUB", - "gas": 1963194, - "gasCost": 3, "depth": 2, + "gas": 1966555, + "gasCost": 3, + "op": "SUB", + "pc": 1096, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12117,11 +12117,11 @@ ] }, { - "pc": 1097, - "op": "PUSH1", - "gas": 1963191, - "gasCost": 3, "depth": 2, + "gas": 1966552, + "gasCost": 3, + "op": "PUSH1", + "pc": 1097, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12139,11 +12139,11 @@ ] }, { - "pc": 1099, - "op": "DUP4", - "gas": 1963188, - "gasCost": 3, "depth": 2, + "gas": 1966549, + "gasCost": 3, + "op": "DUP4", + "pc": 1099, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12162,11 +12162,11 @@ ] }, { - "pc": 1100, - "op": "ADD", - "gas": 1963185, - "gasCost": 3, "depth": 2, + "gas": 1966546, + "gasCost": 3, + "op": "ADD", + "pc": 1100, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12186,11 +12186,11 @@ ] }, { - "pc": 1101, - "op": "MSTORE", - "gas": 1963182, - "gasCost": 3, "depth": 2, + "gas": 1966543, + "gasCost": 3, + "op": "MSTORE", + "pc": 1101, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12209,11 +12209,11 @@ ] }, { - "pc": 1102, - "op": "PUSH3", - "gas": 1963179, - "gasCost": 3, "depth": 2, + "gas": 1966540, + "gasCost": 3, + "op": "PUSH3", + "pc": 1102, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12230,11 +12230,11 @@ ] }, { - "pc": 1106, - "op": "DUP2", - "gas": 1963176, - "gasCost": 3, "depth": 2, + "gas": 1966537, + "gasCost": 3, + "op": "DUP2", + "pc": 1106, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12252,11 +12252,11 @@ ] }, { - "pc": 1107, - "op": "PUSH3", - "gas": 1963173, - "gasCost": 3, "depth": 2, + "gas": 1966534, + "gasCost": 3, + "op": "PUSH3", + "pc": 1107, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12275,11 +12275,11 @@ ] }, { - "pc": 1111, - "op": "JUMP", - "gas": 1963170, - "gasCost": 8, "depth": 2, + "gas": 1966531, + "gasCost": 8, + "op": "JUMP", + "pc": 1111, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12299,11 +12299,11 @@ ] }, { - "pc": 1031, - "op": "JUMPDEST", - "gas": 1963162, - "gasCost": 1, "depth": 2, + "gas": 1966523, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 1031, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12322,11 +12322,11 @@ ] }, { - "pc": 1032, - "op": "PUSH1", - "gas": 1963161, - "gasCost": 3, "depth": 2, + "gas": 1966522, + "gasCost": 3, + "op": "PUSH1", + "pc": 1032, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12345,11 +12345,11 @@ ] }, { - "pc": 1034, - "op": "PUSH3", - "gas": 1963158, - "gasCost": 3, "depth": 2, + "gas": 1966519, + "gasCost": 3, + "op": "PUSH3", + "pc": 1034, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12369,11 +12369,11 @@ ] }, { - "pc": 1038, - "op": "PUSH1", - "gas": 1963155, - "gasCost": 3, "depth": 2, + "gas": 1966516, + "gasCost": 3, + "op": "PUSH1", + "pc": 1038, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12394,11 +12394,11 @@ ] }, { - "pc": 1040, - "op": "DUP4", - "gas": 1963152, - "gasCost": 3, "depth": 2, + "gas": 1966513, + "gasCost": 3, + "op": "DUP4", + "pc": 1040, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12420,11 +12420,11 @@ ] }, { - "pc": 1041, - "op": "PUSH3", - "gas": 1963149, - "gasCost": 3, "depth": 2, + "gas": 1966510, + "gasCost": 3, + "op": "PUSH3", + "pc": 1041, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12447,11 +12447,11 @@ ] }, { - "pc": 1045, - "op": "JUMP", - "gas": 1963146, - "gasCost": 8, "depth": 2, + "gas": 1966507, + "gasCost": 8, + "op": "JUMP", + "pc": 1045, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12475,11 +12475,11 @@ ] }, { - "pc": 558, - "op": "JUMPDEST", - "gas": 1963138, - "gasCost": 1, "depth": 2, + "gas": 1966499, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 558, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12502,11 +12502,11 @@ ] }, { - "pc": 559, - "op": "PUSH1", - "gas": 1963137, - "gasCost": 3, "depth": 2, + "gas": 1966498, + "gasCost": 3, + "op": "PUSH1", + "pc": 559, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12529,11 +12529,11 @@ ] }, { - "pc": 561, - "op": "DUP3", - "gas": 1963134, - "gasCost": 3, "depth": 2, + "gas": 1966495, + "gasCost": 3, + "op": "DUP3", + "pc": 561, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12557,11 +12557,11 @@ ] }, { - "pc": 562, - "op": "DUP3", - "gas": 1963131, - "gasCost": 3, "depth": 2, + "gas": 1966492, + "gasCost": 3, + "op": "DUP3", + "pc": 562, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12586,11 +12586,11 @@ ] }, { - "pc": 563, - "op": "MSTORE", - "gas": 1963128, - "gasCost": 3, "depth": 2, + "gas": 1966489, + "gasCost": 3, + "op": "MSTORE", + "pc": 563, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12616,11 +12616,11 @@ ] }, { - "pc": 564, - "op": "PUSH1", - "gas": 1963125, - "gasCost": 3, "depth": 2, + "gas": 1966486, + "gasCost": 3, + "op": "PUSH1", + "pc": 564, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12644,11 +12644,11 @@ ] }, { - "pc": 566, - "op": "DUP3", - "gas": 1963122, - "gasCost": 3, "depth": 2, + "gas": 1966483, + "gasCost": 3, + "op": "DUP3", + "pc": 566, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12673,11 +12673,11 @@ ] }, { - "pc": 567, - "op": "ADD", - "gas": 1963119, - "gasCost": 3, "depth": 2, + "gas": 1966480, + "gasCost": 3, + "op": "ADD", + "pc": 567, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12703,11 +12703,11 @@ ] }, { - "pc": 568, - "op": "SWAP1", - "gas": 1963116, - "gasCost": 3, "depth": 2, + "gas": 1966477, + "gasCost": 3, + "op": "SWAP1", + "pc": 568, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12732,11 +12732,11 @@ ] }, { - "pc": 569, - "op": "POP", - "gas": 1963113, - "gasCost": 2, "depth": 2, + "gas": 1966474, + "gasCost": 2, + "op": "POP", + "pc": 569, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12761,11 +12761,11 @@ ] }, { - "pc": 570, - "op": "SWAP3", - "gas": 1963111, - "gasCost": 3, "depth": 2, + "gas": 1966472, + "gasCost": 3, + "op": "SWAP3", + "pc": 570, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12789,11 +12789,11 @@ ] }, { - "pc": 571, - "op": "SWAP2", - "gas": 1963108, - "gasCost": 3, "depth": 2, + "gas": 1966469, + "gasCost": 3, + "op": "SWAP2", + "pc": 571, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12817,11 +12817,11 @@ ] }, { - "pc": 572, - "op": "POP", - "gas": 1963105, - "gasCost": 2, "depth": 2, + "gas": 1966466, + "gasCost": 2, + "op": "POP", + "pc": 572, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12845,11 +12845,11 @@ ] }, { - "pc": 573, - "op": "POP", - "gas": 1963103, - "gasCost": 2, "depth": 2, + "gas": 1966464, + "gasCost": 2, + "op": "POP", + "pc": 573, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12872,11 +12872,11 @@ ] }, { - "pc": 574, - "op": "JUMP", - "gas": 1963101, - "gasCost": 8, "depth": 2, + "gas": 1966462, + "gasCost": 8, + "op": "JUMP", + "pc": 574, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12898,11 +12898,11 @@ ] }, { - "pc": 1046, - "op": "JUMPDEST", - "gas": 1963093, - "gasCost": 1, "depth": 2, + "gas": 1966454, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 1046, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12923,11 +12923,11 @@ ] }, { - "pc": 1047, - "op": "SWAP2", - "gas": 1963092, - "gasCost": 3, "depth": 2, + "gas": 1966453, + "gasCost": 3, + "op": "SWAP2", + "pc": 1047, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12948,11 +12948,11 @@ ] }, { - "pc": 1048, - "op": "POP", - "gas": 1963089, - "gasCost": 2, "depth": 2, + "gas": 1966450, + "gasCost": 2, + "op": "POP", + "pc": 1048, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12973,11 +12973,11 @@ ] }, { - "pc": 1049, - "op": "PUSH3", - "gas": 1963087, - "gasCost": 3, "depth": 2, + "gas": 1966448, + "gasCost": 3, + "op": "PUSH3", + "pc": 1049, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12997,11 +12997,11 @@ ] }, { - "pc": 1053, - "op": "DUP3", - "gas": 1963084, - "gasCost": 3, "depth": 2, + "gas": 1966445, + "gasCost": 3, + "op": "DUP3", + "pc": 1053, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13022,11 +13022,11 @@ ] }, { - "pc": 1054, - "op": "PUSH3", - "gas": 1963081, - "gasCost": 3, "depth": 2, + "gas": 1966442, + "gasCost": 3, + "op": "PUSH3", + "pc": 1054, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13048,11 +13048,11 @@ ] }, { - "pc": 1058, - "op": "JUMP", - "gas": 1963078, - "gasCost": 8, "depth": 2, + "gas": 1966439, + "gasCost": 8, + "op": "JUMP", + "pc": 1058, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13075,11 +13075,11 @@ ] }, { - "pc": 990, - "op": "JUMPDEST", - "gas": 1963070, - "gasCost": 1, "depth": 2, + "gas": 1966431, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 990, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13101,11 +13101,11 @@ ] }, { - "pc": 991, - "op": "PUSH32", - "gas": 1963069, - "gasCost": 3, "depth": 2, + "gas": 1966430, + "gasCost": 3, + "op": "PUSH32", + "pc": 991, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13127,11 +13127,11 @@ ] }, { - "pc": 1024, - "op": "PUSH1", - "gas": 1963066, - "gasCost": 3, "depth": 2, + "gas": 1966427, + "gasCost": 3, + "op": "PUSH1", + "pc": 1024, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13154,11 +13154,11 @@ ] }, { - "pc": 1026, - "op": "DUP3", - "gas": 1963063, - "gasCost": 3, "depth": 2, + "gas": 1966424, + "gasCost": 3, + "op": "DUP3", + "pc": 1026, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13182,11 +13182,11 @@ ] }, { - "pc": 1027, - "op": "ADD", - "gas": 1963060, - "gasCost": 3, "depth": 2, + "gas": 1966421, + "gasCost": 3, + "op": "ADD", + "pc": 1027, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13211,11 +13211,11 @@ ] }, { - "pc": 1028, - "op": "MSTORE", - "gas": 1963057, - "gasCost": 3, "depth": 2, + "gas": 1966418, + "gasCost": 3, + "op": "MSTORE", + "pc": 1028, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13239,11 +13239,11 @@ ] }, { - "pc": 1029, - "op": "POP", - "gas": 1963054, - "gasCost": 2, "depth": 2, + "gas": 1966415, + "gasCost": 2, + "op": "POP", + "pc": 1029, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13265,11 +13265,11 @@ ] }, { - "pc": 1030, - "op": "JUMP", - "gas": 1963052, - "gasCost": 8, "depth": 2, + "gas": 1966413, + "gasCost": 8, + "op": "JUMP", + "pc": 1030, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13290,11 +13290,11 @@ ] }, { - "pc": 1059, - "op": "JUMPDEST", - "gas": 1963044, - "gasCost": 1, "depth": 2, + "gas": 1966405, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 1059, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13314,11 +13314,11 @@ ] }, { - "pc": 1060, - "op": "PUSH1", - "gas": 1963043, - "gasCost": 3, "depth": 2, + "gas": 1966404, + "gasCost": 3, + "op": "PUSH1", + "pc": 1060, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13338,11 +13338,11 @@ ] }, { - "pc": 1062, - "op": "DUP3", - "gas": 1963040, - "gasCost": 3, "depth": 2, + "gas": 1966401, + "gasCost": 3, + "op": "DUP3", + "pc": 1062, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13363,11 +13363,11 @@ ] }, { - "pc": 1063, - "op": "ADD", - "gas": 1963037, - "gasCost": 3, "depth": 2, + "gas": 1966398, + "gasCost": 3, + "op": "ADD", + "pc": 1063, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13389,11 +13389,11 @@ ] }, { - "pc": 1064, - "op": "SWAP1", - "gas": 1963034, - "gasCost": 3, "depth": 2, + "gas": 1966395, + "gasCost": 3, + "op": "SWAP1", + "pc": 1064, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13414,11 +13414,11 @@ ] }, { - "pc": 1065, - "op": "POP", - "gas": 1963031, - "gasCost": 2, "depth": 2, + "gas": 1966392, + "gasCost": 2, + "op": "POP", + "pc": 1065, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13439,11 +13439,11 @@ ] }, { - "pc": 1066, - "op": "SWAP2", - "gas": 1963029, - "gasCost": 3, "depth": 2, + "gas": 1966390, + "gasCost": 3, + "op": "SWAP2", + "pc": 1066, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13463,11 +13463,11 @@ ] }, { - "pc": 1067, - "op": "SWAP1", - "gas": 1963026, - "gasCost": 3, "depth": 2, + "gas": 1966387, + "gasCost": 3, + "op": "SWAP1", + "pc": 1067, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13487,11 +13487,11 @@ ] }, { - "pc": 1068, - "op": "POP", - "gas": 1963023, - "gasCost": 2, "depth": 2, + "gas": 1966384, + "gasCost": 2, + "op": "POP", + "pc": 1068, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13511,11 +13511,11 @@ ] }, { - "pc": 1069, - "op": "JUMP", - "gas": 1963021, - "gasCost": 8, "depth": 2, + "gas": 1966382, + "gasCost": 8, + "op": "JUMP", + "pc": 1069, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13534,11 +13534,11 @@ ] }, { - "pc": 1112, - "op": "JUMPDEST", - "gas": 1963013, - "gasCost": 1, "depth": 2, + "gas": 1966374, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 1112, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13556,11 +13556,11 @@ ] }, { - "pc": 1113, - "op": "SWAP1", - "gas": 1963012, - "gasCost": 3, "depth": 2, + "gas": 1966373, + "gasCost": 3, + "op": "SWAP1", + "pc": 1113, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13578,11 +13578,11 @@ ] }, { - "pc": 1114, - "op": "POP", - "gas": 1963009, - "gasCost": 2, "depth": 2, + "gas": 1966370, + "gasCost": 2, + "op": "POP", + "pc": 1114, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13600,11 +13600,11 @@ ] }, { - "pc": 1115, - "op": "SWAP3", - "gas": 1963007, - "gasCost": 3, "depth": 2, + "gas": 1966368, + "gasCost": 3, + "op": "SWAP3", + "pc": 1115, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13621,11 +13621,11 @@ ] }, { - "pc": 1116, - "op": "SWAP2", - "gas": 1963004, - "gasCost": 3, "depth": 2, + "gas": 1966365, + "gasCost": 3, + "op": "SWAP2", + "pc": 1116, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13642,11 +13642,11 @@ ] }, { - "pc": 1117, - "op": "POP", - "gas": 1963001, - "gasCost": 2, "depth": 2, + "gas": 1966362, + "gasCost": 2, + "op": "POP", + "pc": 1117, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13663,11 +13663,11 @@ ] }, { - "pc": 1118, - "op": "POP", - "gas": 1962999, - "gasCost": 2, "depth": 2, + "gas": 1966360, + "gasCost": 2, + "op": "POP", + "pc": 1118, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13683,11 +13683,11 @@ ] }, { - "pc": 1119, - "op": "JUMP", - "gas": 1962997, - "gasCost": 8, "depth": 2, + "gas": 1966358, + "gasCost": 8, + "op": "JUMP", + "pc": 1119, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13702,11 +13702,11 @@ ] }, { - "pc": 435, - "op": "JUMPDEST", - "gas": 1962989, - "gasCost": 1, "depth": 2, + "gas": 1966350, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 435, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13720,11 +13720,11 @@ ] }, { - "pc": 436, - "op": "PUSH1", - "gas": 1962988, - "gasCost": 3, "depth": 2, + "gas": 1966349, + "gasCost": 3, + "op": "PUSH1", + "pc": 436, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13738,11 +13738,11 @@ ] }, { - "pc": 438, - "op": "MLOAD", - "gas": 1962985, - "gasCost": 3, "depth": 2, + "gas": 1966346, + "gasCost": 3, + "op": "MLOAD", + "pc": 438, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13757,11 +13757,11 @@ ] }, { - "pc": 439, - "op": "DUP1", - "gas": 1962982, - "gasCost": 3, "depth": 2, + "gas": 1966343, + "gasCost": 3, + "op": "DUP1", + "pc": 439, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13776,11 +13776,11 @@ ] }, { - "pc": 440, - "op": "SWAP2", - "gas": 1962979, - "gasCost": 3, "depth": 2, + "gas": 1966340, + "gasCost": 3, + "op": "SWAP2", + "pc": 440, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13796,11 +13796,11 @@ ] }, { - "pc": 441, - "op": "SUB", - "gas": 1962976, - "gasCost": 3, "depth": 2, + "gas": 1966337, + "gasCost": 3, + "op": "SUB", + "pc": 441, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13816,11 +13816,11 @@ ] }, { - "pc": 442, - "op": "SWAP1", - "gas": 1962973, - "gasCost": 3, "depth": 2, + "gas": 1966334, + "gasCost": 3, + "op": "SWAP1", + "pc": 442, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13835,11 +13835,11 @@ ] }, { - "pc": 443, - "op": "LOG2", - "gas": 1962970, - "gasCost": 2149, "depth": 2, + "gas": 1966331, + "gasCost": 2149, + "op": "LOG2", + "pc": 443, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13854,11 +13854,11 @@ ] }, { - "pc": 444, - "op": "DUP2", - "gas": 1960821, - "gasCost": 3, "depth": 2, + "gas": 1964182, + "gasCost": 3, + "op": "DUP2", + "pc": 444, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13869,11 +13869,11 @@ ] }, { - "pc": 445, - "op": "PUSH1", - "gas": 1960818, - "gasCost": 3, "depth": 2, + "gas": 1964179, + "gasCost": 3, + "op": "PUSH1", + "pc": 445, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13885,11 +13885,11 @@ ] }, { - "pc": 447, - "op": "PUSH1", - "gas": 1960815, - "gasCost": 3, "depth": 2, + "gas": 1964176, + "gasCost": 3, + "op": "PUSH1", + "pc": 447, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13902,11 +13902,11 @@ ] }, { - "pc": 449, - "op": "DUP3", - "gas": 1960812, - "gasCost": 3, "depth": 2, + "gas": 1964173, + "gasCost": 3, + "op": "DUP3", + "pc": 449, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13920,11 +13920,11 @@ ] }, { - "pc": 450, - "op": "DUP3", - "gas": 1960809, - "gasCost": 3, "depth": 2, + "gas": 1964170, + "gasCost": 3, + "op": "DUP3", + "pc": 450, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13939,11 +13939,11 @@ ] }, { - "pc": 451, - "op": "SLOAD", - "gas": 1960806, - "gasCost": 2100, "depth": 2, + "gas": 1964167, + "gasCost": 200, + "op": "SLOAD", + "pc": 451, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13964,11 +13964,11 @@ } }, { - "pc": 452, - "op": "PUSH3", - "gas": 1958706, - "gasCost": 3, "depth": 2, + "gas": 1963967, + "gasCost": 3, + "op": "PUSH3", + "pc": 452, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13984,11 +13984,11 @@ ] }, { - "pc": 456, - "op": "SWAP2", - "gas": 1958703, - "gasCost": 3, "depth": 2, + "gas": 1963964, + "gasCost": 3, + "op": "SWAP2", + "pc": 456, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14005,11 +14005,11 @@ ] }, { - "pc": 457, - "op": "SWAP1", - "gas": 1958700, - "gasCost": 3, "depth": 2, + "gas": 1963961, + "gasCost": 3, + "op": "SWAP1", + "pc": 457, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14026,11 +14026,11 @@ ] }, { - "pc": 458, - "op": "PUSH3", - "gas": 1958697, - "gasCost": 3, "depth": 2, + "gas": 1963958, + "gasCost": 3, + "op": "PUSH3", + "pc": 458, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14047,11 +14047,11 @@ ] }, { - "pc": 462, - "op": "JUMP", - "gas": 1958694, - "gasCost": 8, "depth": 2, + "gas": 1963955, + "gasCost": 8, + "op": "JUMP", + "pc": 462, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14069,11 +14069,11 @@ ] }, { - "pc": 931, - "op": "JUMPDEST", - "gas": 1958686, - "gasCost": 1, "depth": 2, + "gas": 1963947, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 931, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14090,11 +14090,11 @@ ] }, { - "pc": 932, - "op": "PUSH1", - "gas": 1958685, - "gasCost": 3, "depth": 2, + "gas": 1963946, + "gasCost": 3, + "op": "PUSH1", + "pc": 932, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14111,11 +14111,11 @@ ] }, { - "pc": 934, - "op": "PUSH3", - "gas": 1958682, - "gasCost": 3, "depth": 2, + "gas": 1963943, + "gasCost": 3, + "op": "PUSH3", + "pc": 934, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14133,11 +14133,11 @@ ] }, { - "pc": 938, - "op": "DUP3", - "gas": 1958679, - "gasCost": 3, "depth": 2, + "gas": 1963940, + "gasCost": 3, + "op": "DUP3", + "pc": 938, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14156,11 +14156,11 @@ ] }, { - "pc": 939, - "op": "PUSH3", - "gas": 1958676, - "gasCost": 3, "depth": 2, + "gas": 1963937, + "gasCost": 3, + "op": "PUSH3", + "pc": 939, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14180,11 +14180,11 @@ ] }, { - "pc": 943, - "op": "JUMP", - "gas": 1958673, - "gasCost": 8, "depth": 2, + "gas": 1963934, + "gasCost": 8, + "op": "JUMP", + "pc": 943, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14205,11 +14205,11 @@ ] }, { - "pc": 727, - "op": "JUMPDEST", - "gas": 1958665, - "gasCost": 1, "depth": 2, + "gas": 1963926, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 727, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14229,11 +14229,11 @@ ] }, { - "pc": 728, - "op": "PUSH1", - "gas": 1958664, - "gasCost": 3, "depth": 2, + "gas": 1963925, + "gasCost": 3, + "op": "PUSH1", + "pc": 728, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14253,11 +14253,11 @@ ] }, { - "pc": 730, - "op": "DUP2", - "gas": 1958661, - "gasCost": 3, "depth": 2, + "gas": 1963922, + "gasCost": 3, + "op": "DUP2", + "pc": 730, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14278,11 +14278,11 @@ ] }, { - "pc": 731, - "op": "SWAP1", - "gas": 1958658, - "gasCost": 3, "depth": 2, + "gas": 1963919, + "gasCost": 3, + "op": "SWAP1", + "pc": 731, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14304,11 +14304,11 @@ ] }, { - "pc": 732, - "op": "POP", - "gas": 1958655, - "gasCost": 2, "depth": 2, + "gas": 1963916, + "gasCost": 2, + "op": "POP", + "pc": 732, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14330,11 +14330,11 @@ ] }, { - "pc": 733, - "op": "SWAP2", - "gas": 1958653, - "gasCost": 3, "depth": 2, + "gas": 1963914, + "gasCost": 3, + "op": "SWAP2", + "pc": 733, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14355,11 +14355,11 @@ ] }, { - "pc": 734, - "op": "SWAP1", - "gas": 1958650, - "gasCost": 3, "depth": 2, + "gas": 1963911, + "gasCost": 3, + "op": "SWAP1", + "pc": 734, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14380,11 +14380,11 @@ ] }, { - "pc": 735, - "op": "POP", - "gas": 1958647, - "gasCost": 2, "depth": 2, + "gas": 1963908, + "gasCost": 2, + "op": "POP", + "pc": 735, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14405,11 +14405,11 @@ ] }, { - "pc": 736, - "op": "JUMP", - "gas": 1958645, - "gasCost": 8, "depth": 2, + "gas": 1963906, + "gasCost": 8, + "op": "JUMP", + "pc": 736, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14429,11 +14429,11 @@ ] }, { - "pc": 944, - "op": "JUMPDEST", - "gas": 1958637, - "gasCost": 1, "depth": 2, + "gas": 1963898, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 944, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14452,11 +14452,11 @@ ] }, { - "pc": 945, - "op": "SWAP2", - "gas": 1958636, - "gasCost": 3, "depth": 2, + "gas": 1963897, + "gasCost": 3, + "op": "SWAP2", + "pc": 945, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14475,11 +14475,11 @@ ] }, { - "pc": 946, - "op": "POP", - "gas": 1958633, - "gasCost": 2, "depth": 2, + "gas": 1963894, + "gasCost": 2, + "op": "POP", + "pc": 946, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14498,11 +14498,11 @@ ] }, { - "pc": 947, - "op": "PUSH3", - "gas": 1958631, - "gasCost": 3, "depth": 2, + "gas": 1963892, + "gasCost": 3, + "op": "PUSH3", + "pc": 947, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14520,11 +14520,11 @@ ] }, { - "pc": 951, - "op": "DUP4", - "gas": 1958628, - "gasCost": 3, "depth": 2, + "gas": 1963889, + "gasCost": 3, + "op": "DUP4", + "pc": 951, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14543,11 +14543,11 @@ ] }, { - "pc": 952, - "op": "PUSH3", - "gas": 1958625, - "gasCost": 3, "depth": 2, + "gas": 1963886, + "gasCost": 3, + "op": "PUSH3", + "pc": 952, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14567,11 +14567,11 @@ ] }, { - "pc": 956, - "op": "JUMP", - "gas": 1958622, - "gasCost": 8, "depth": 2, + "gas": 1963883, + "gasCost": 8, + "op": "JUMP", + "pc": 956, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14592,11 +14592,11 @@ ] }, { - "pc": 727, - "op": "JUMPDEST", - "gas": 1958614, - "gasCost": 1, "depth": 2, + "gas": 1963875, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 727, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14616,11 +14616,11 @@ ] }, { - "pc": 728, - "op": "PUSH1", - "gas": 1958613, - "gasCost": 3, "depth": 2, + "gas": 1963874, + "gasCost": 3, + "op": "PUSH1", + "pc": 728, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14640,11 +14640,11 @@ ] }, { - "pc": 730, - "op": "DUP2", - "gas": 1958610, - "gasCost": 3, "depth": 2, + "gas": 1963871, + "gasCost": 3, + "op": "DUP2", + "pc": 730, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14665,11 +14665,11 @@ ] }, { - "pc": 731, - "op": "SWAP1", - "gas": 1958607, - "gasCost": 3, "depth": 2, + "gas": 1963868, + "gasCost": 3, + "op": "SWAP1", + "pc": 731, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14691,11 +14691,11 @@ ] }, { - "pc": 732, - "op": "POP", - "gas": 1958604, - "gasCost": 2, "depth": 2, + "gas": 1963865, + "gasCost": 2, + "op": "POP", + "pc": 732, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14717,11 +14717,11 @@ ] }, { - "pc": 733, - "op": "SWAP2", - "gas": 1958602, - "gasCost": 3, "depth": 2, + "gas": 1963863, + "gasCost": 3, + "op": "SWAP2", + "pc": 733, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14742,11 +14742,11 @@ ] }, { - "pc": 734, - "op": "SWAP1", - "gas": 1958599, - "gasCost": 3, "depth": 2, + "gas": 1963860, + "gasCost": 3, + "op": "SWAP1", + "pc": 734, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14767,11 +14767,11 @@ ] }, { - "pc": 735, - "op": "POP", - "gas": 1958596, - "gasCost": 2, "depth": 2, + "gas": 1963857, + "gasCost": 2, + "op": "POP", + "pc": 735, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14792,11 +14792,11 @@ ] }, { - "pc": 736, - "op": "JUMP", - "gas": 1958594, - "gasCost": 8, "depth": 2, + "gas": 1963855, + "gasCost": 8, + "op": "JUMP", + "pc": 736, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14816,11 +14816,11 @@ ] }, { - "pc": 957, - "op": "JUMPDEST", - "gas": 1958586, - "gasCost": 1, "depth": 2, + "gas": 1963847, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 957, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14839,11 +14839,11 @@ ] }, { - "pc": 958, - "op": "SWAP3", - "gas": 1958585, - "gasCost": 3, "depth": 2, + "gas": 1963846, + "gasCost": 3, + "op": "SWAP3", + "pc": 958, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14862,11 +14862,11 @@ ] }, { - "pc": 959, - "op": "POP", - "gas": 1958582, - "gasCost": 2, "depth": 2, + "gas": 1963843, + "gasCost": 2, + "op": "POP", + "pc": 959, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14885,11 +14885,11 @@ ] }, { - "pc": 960, - "op": "DUP3", - "gas": 1958580, - "gasCost": 3, "depth": 2, + "gas": 1963841, + "gasCost": 3, + "op": "DUP3", + "pc": 960, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14907,11 +14907,11 @@ ] }, { - "pc": 961, - "op": "DUP3", - "gas": 1958577, - "gasCost": 3, "depth": 2, + "gas": 1963838, + "gasCost": 3, + "op": "DUP3", + "pc": 961, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14930,11 +14930,11 @@ ] }, { - "pc": 962, - "op": "ADD", - "gas": 1958574, - "gasCost": 3, "depth": 2, + "gas": 1963835, + "gasCost": 3, + "op": "ADD", + "pc": 962, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14954,11 +14954,11 @@ ] }, { - "pc": 963, - "op": "SWAP1", - "gas": 1958571, - "gasCost": 3, "depth": 2, + "gas": 1963832, + "gasCost": 3, + "op": "SWAP1", + "pc": 963, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14977,11 +14977,11 @@ ] }, { - "pc": 964, - "op": "POP", - "gas": 1958568, - "gasCost": 2, "depth": 2, + "gas": 1963829, + "gasCost": 2, + "op": "POP", + "pc": 964, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15000,11 +15000,11 @@ ] }, { - "pc": 965, - "op": "DUP1", - "gas": 1958566, - "gasCost": 3, "depth": 2, + "gas": 1963827, + "gasCost": 3, + "op": "DUP1", + "pc": 965, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15022,11 +15022,11 @@ ] }, { - "pc": 966, - "op": "DUP3", - "gas": 1958563, - "gasCost": 3, "depth": 2, + "gas": 1963824, + "gasCost": 3, + "op": "DUP3", + "pc": 966, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15045,11 +15045,11 @@ ] }, { - "pc": 967, - "op": "GT", - "gas": 1958560, - "gasCost": 3, "depth": 2, + "gas": 1963821, + "gasCost": 3, + "op": "GT", + "pc": 967, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15069,11 +15069,11 @@ ] }, { - "pc": 968, - "op": "ISZERO", - "gas": 1958557, - "gasCost": 3, "depth": 2, + "gas": 1963818, + "gasCost": 3, + "op": "ISZERO", + "pc": 968, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15092,11 +15092,11 @@ ] }, { - "pc": 969, - "op": "PUSH3", - "gas": 1958554, - "gasCost": 3, "depth": 2, + "gas": 1963815, + "gasCost": 3, + "op": "PUSH3", + "pc": 969, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15115,11 +15115,11 @@ ] }, { - "pc": 973, - "op": "JUMPI", - "gas": 1958551, - "gasCost": 10, "depth": 2, + "gas": 1963812, + "gasCost": 10, + "op": "JUMPI", + "pc": 973, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15139,11 +15139,11 @@ ] }, { - "pc": 984, - "op": "JUMPDEST", - "gas": 1958541, - "gasCost": 1, "depth": 2, + "gas": 1963802, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 984, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15161,11 +15161,11 @@ ] }, { - "pc": 985, - "op": "SWAP3", - "gas": 1958540, - "gasCost": 3, "depth": 2, + "gas": 1963801, + "gasCost": 3, + "op": "SWAP3", + "pc": 985, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15183,11 +15183,11 @@ ] }, { - "pc": 986, - "op": "SWAP2", - "gas": 1958537, - "gasCost": 3, "depth": 2, + "gas": 1963798, + "gasCost": 3, + "op": "SWAP2", + "pc": 986, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15205,11 +15205,11 @@ ] }, { - "pc": 987, - "op": "POP", - "gas": 1958534, - "gasCost": 2, "depth": 2, + "gas": 1963795, + "gasCost": 2, + "op": "POP", + "pc": 987, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15227,11 +15227,11 @@ ] }, { - "pc": 988, - "op": "POP", - "gas": 1958532, - "gasCost": 2, "depth": 2, + "gas": 1963793, + "gasCost": 2, + "op": "POP", + "pc": 988, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15248,11 +15248,11 @@ ] }, { - "pc": 989, - "op": "JUMP", - "gas": 1958530, - "gasCost": 8, "depth": 2, + "gas": 1963791, + "gasCost": 8, + "op": "JUMP", + "pc": 989, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15268,11 +15268,11 @@ ] }, { - "pc": 463, - "op": "JUMPDEST", - "gas": 1958522, - "gasCost": 1, "depth": 2, + "gas": 1963783, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 463, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15287,11 +15287,11 @@ ] }, { - "pc": 464, - "op": "SWAP3", - "gas": 1958521, - "gasCost": 3, "depth": 2, + "gas": 1963782, + "gasCost": 3, + "op": "SWAP3", + "pc": 464, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15306,11 +15306,11 @@ ] }, { - "pc": 465, - "op": "POP", - "gas": 1958518, - "gasCost": 2, "depth": 2, + "gas": 1963779, + "gasCost": 2, + "op": "POP", + "pc": 465, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15325,11 +15325,11 @@ ] }, { - "pc": 466, - "op": "POP", - "gas": 1958516, - "gasCost": 2, "depth": 2, + "gas": 1963777, + "gasCost": 2, + "op": "POP", + "pc": 466, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15343,11 +15343,11 @@ ] }, { - "pc": 467, - "op": "DUP2", - "gas": 1958514, - "gasCost": 3, "depth": 2, + "gas": 1963775, + "gasCost": 3, + "op": "DUP2", + "pc": 467, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15360,11 +15360,11 @@ ] }, { - "pc": 468, - "op": "SWAP1", - "gas": 1958511, - "gasCost": 3, "depth": 2, + "gas": 1963772, + "gasCost": 3, + "op": "SWAP1", + "pc": 468, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15378,11 +15378,11 @@ ] }, { - "pc": 469, - "op": "SSTORE", - "gas": 1958508, - "gasCost": 20000, "depth": 2, + "gas": 1963769, + "gasCost": 20000, + "op": "SSTORE", + "pc": 469, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15401,11 +15401,11 @@ } }, { - "pc": 470, - "op": "POP", - "gas": 1938508, - "gasCost": 2, "depth": 2, + "gas": 1943769, + "gasCost": 2, + "op": "POP", + "pc": 470, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15417,11 +15417,11 @@ ] }, { - "pc": 471, - "op": "PUSH1", - "gas": 1938506, - "gasCost": 3, "depth": 2, + "gas": 1943767, + "gasCost": 3, + "op": "PUSH1", + "pc": 471, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15432,11 +15432,11 @@ ] }, { - "pc": 473, - "op": "SWAP1", - "gas": 1938503, - "gasCost": 3, "depth": 2, + "gas": 1943764, + "gasCost": 3, + "op": "SWAP1", + "pc": 473, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15448,11 +15448,11 @@ ] }, { - "pc": 474, - "op": "POP", - "gas": 1938500, - "gasCost": 2, "depth": 2, + "gas": 1943761, + "gasCost": 2, + "op": "POP", + "pc": 474, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15464,11 +15464,11 @@ ] }, { - "pc": 475, - "op": "SWAP2", - "gas": 1938498, - "gasCost": 3, "depth": 2, + "gas": 1943759, + "gasCost": 3, + "op": "SWAP2", + "pc": 475, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15479,11 +15479,11 @@ ] }, { - "pc": 476, - "op": "SWAP1", - "gas": 1938495, - "gasCost": 3, "depth": 2, + "gas": 1943756, + "gasCost": 3, + "op": "SWAP1", + "pc": 476, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15494,11 +15494,11 @@ ] }, { - "pc": 477, - "op": "POP", - "gas": 1938492, - "gasCost": 2, "depth": 2, + "gas": 1943753, + "gasCost": 2, + "op": "POP", + "pc": 477, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15509,11 +15509,11 @@ ] }, { - "pc": 478, - "op": "JUMP", - "gas": 1938490, - "gasCost": 8, "depth": 2, + "gas": 1943751, + "gasCost": 8, + "op": "JUMP", + "pc": 478, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15523,11 +15523,11 @@ ] }, { - "pc": 334, - "op": "JUMPDEST", - "gas": 1938482, - "gasCost": 1, "depth": 2, + "gas": 1943743, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 334, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15536,11 +15536,11 @@ ] }, { - "pc": 335, - "op": "POP", - "gas": 1938481, - "gasCost": 2, "depth": 2, + "gas": 1943742, + "gasCost": 2, + "op": "POP", + "pc": 335, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15549,11 +15549,11 @@ ] }, { - "pc": 336, - "op": "PUSH3", - "gas": 1938479, - "gasCost": 3, "depth": 2, + "gas": 1943740, + "gasCost": 3, + "op": "PUSH3", + "pc": 336, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15561,11 +15561,11 @@ ] }, { - "pc": 340, - "op": "PUSH3", - "gas": 1938476, - "gasCost": 3, "depth": 2, + "gas": 1943737, + "gasCost": 3, + "op": "PUSH3", + "pc": 340, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15573,12 +15573,12 @@ "0x15f" ] }, - { - "pc": 344, - "op": "PUSH1", - "gas": 1938473, - "gasCost": 3, + { "depth": 2, + "gas": 1943734, + "gasCost": 3, + "op": "PUSH1", + "pc": 344, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15588,11 +15588,11 @@ ] }, { - "pc": 346, - "op": "SHL", - "gas": 1938470, - "gasCost": 3, "depth": 2, + "gas": 1943731, + "gasCost": 3, + "op": "SHL", + "pc": 346, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15603,11 +15603,11 @@ ] }, { - "pc": 347, - "op": "PUSH1", - "gas": 1938467, - "gasCost": 3, "depth": 2, + "gas": 1943728, + "gasCost": 3, + "op": "PUSH1", + "pc": 347, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15617,11 +15617,11 @@ ] }, { - "pc": 349, - "op": "SHR", - "gas": 1938464, - "gasCost": 3, "depth": 2, + "gas": 1943725, + "gasCost": 3, + "op": "SHR", + "pc": 349, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15632,11 +15632,11 @@ ] }, { - "pc": 350, - "op": "JUMP", - "gas": 1938461, - "gasCost": 8, "depth": 2, + "gas": 1943722, + "gasCost": 8, + "op": "JUMP", + "pc": 350, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15646,11 +15646,11 @@ ] }, { - "pc": 479, - "op": "JUMPDEST", - "gas": 1938453, - "gasCost": 1, "depth": 2, + "gas": 1943714, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 479, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15659,11 +15659,11 @@ ] }, { - "pc": 480, - "op": "PUSH1", - "gas": 1938452, - "gasCost": 3, "depth": 2, + "gas": 1943713, + "gasCost": 3, + "op": "PUSH1", + "pc": 480, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15672,11 +15672,11 @@ ] }, { - "pc": 482, - "op": "DUP1", - "gas": 1938449, - "gasCost": 3, "depth": 2, + "gas": 1943710, + "gasCost": 3, + "op": "DUP1", + "pc": 482, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15686,11 +15686,11 @@ ] }, { - "pc": 483, - "op": "PUSH1", - "gas": 1938446, - "gasCost": 3, "depth": 2, + "gas": 1943707, + "gasCost": 3, + "op": "PUSH1", + "pc": 483, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15701,11 +15701,11 @@ ] }, { - "pc": 485, - "op": "MLOAD", - "gas": 1938443, - "gasCost": 3, "depth": 2, + "gas": 1943704, + "gasCost": 3, + "op": "MLOAD", + "pc": 485, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15717,11 +15717,11 @@ ] }, { - "pc": 486, - "op": "DUP1", - "gas": 1938440, - "gasCost": 3, "depth": 2, + "gas": 1943701, + "gasCost": 3, + "op": "DUP1", + "pc": 486, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15733,11 +15733,11 @@ ] }, { - "pc": 487, - "op": "PUSH1", - "gas": 1938437, - "gasCost": 3, "depth": 2, + "gas": 1943698, + "gasCost": 3, + "op": "PUSH1", + "pc": 487, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15750,11 +15750,11 @@ ] }, { - "pc": 489, - "op": "ADD", - "gas": 1938434, - "gasCost": 3, "depth": 2, + "gas": 1943695, + "gasCost": 3, + "op": "ADD", + "pc": 489, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15768,11 +15768,11 @@ ] }, { - "pc": 490, - "op": "PUSH1", - "gas": 1938431, - "gasCost": 3, "depth": 2, + "gas": 1943692, + "gasCost": 3, + "op": "PUSH1", + "pc": 490, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15785,11 +15785,11 @@ ] }, { - "pc": 492, - "op": "MSTORE", - "gas": 1938428, - "gasCost": 3, "depth": 2, + "gas": 1943689, + "gasCost": 3, + "op": "MSTORE", + "pc": 492, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15803,11 +15803,11 @@ ] }, { - "pc": 493, - "op": "DUP1", - "gas": 1938425, - "gasCost": 3, "depth": 2, + "gas": 1943686, + "gasCost": 3, + "op": "DUP1", + "pc": 493, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15819,11 +15819,11 @@ ] }, { - "pc": 494, - "op": "PUSH1", - "gas": 1938422, - "gasCost": 3, "depth": 2, + "gas": 1943683, + "gasCost": 3, + "op": "PUSH1", + "pc": 494, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15836,11 +15836,11 @@ ] }, { - "pc": 496, - "op": "DUP2", - "gas": 1938419, - "gasCost": 3, "depth": 2, + "gas": 1943680, + "gasCost": 3, + "op": "DUP2", + "pc": 496, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15854,11 +15854,11 @@ ] }, { - "pc": 497, - "op": "MSTORE", - "gas": 1938416, - "gasCost": 3, "depth": 2, + "gas": 1943677, + "gasCost": 3, + "op": "MSTORE", + "pc": 497, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15873,11 +15873,11 @@ ] }, { - "pc": 498, - "op": "PUSH1", - "gas": 1938413, - "gasCost": 3, "depth": 2, + "gas": 1943674, + "gasCost": 3, + "op": "PUSH1", + "pc": 498, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15890,11 +15890,11 @@ ] }, { - "pc": 500, - "op": "ADD", - "gas": 1938410, - "gasCost": 3, "depth": 2, + "gas": 1943671, + "gasCost": 3, + "op": "ADD", + "pc": 500, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15908,11 +15908,11 @@ ] }, { - "pc": 501, - "op": "PUSH32", - "gas": 1938407, - "gasCost": 3, "depth": 2, + "gas": 1943668, + "gasCost": 3, + "op": "PUSH32", + "pc": 501, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15925,11 +15925,11 @@ ] }, { - "pc": 534, - "op": "DUP2", - "gas": 1938404, - "gasCost": 3, "depth": 2, + "gas": 1943665, + "gasCost": 3, + "op": "DUP2", + "pc": 534, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15943,11 +15943,11 @@ ] }, { - "pc": 535, - "op": "MSTORE", - "gas": 1938401, - "gasCost": 3, "depth": 2, + "gas": 1943662, + "gasCost": 3, + "op": "MSTORE", + "pc": 535, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15962,11 +15962,11 @@ ] }, { - "pc": 536, - "op": "POP", - "gas": 1938398, - "gasCost": 2, "depth": 2, + "gas": 1943659, + "gasCost": 2, + "op": "POP", + "pc": 536, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15979,11 +15979,11 @@ ] }, { - "pc": 537, - "op": "SWAP1", - "gas": 1938396, - "gasCost": 3, "depth": 2, + "gas": 1943657, + "gasCost": 3, + "op": "SWAP1", + "pc": 537, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15995,11 +15995,11 @@ ] }, { - "pc": 538, - "op": "POP", - "gas": 1938393, - "gasCost": 2, "depth": 2, + "gas": 1943654, + "gasCost": 2, + "op": "POP", + "pc": 538, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -16011,11 +16011,11 @@ ] }, { - "pc": 539, - "op": "PUSH1", - "gas": 1938391, - "gasCost": 3, "depth": 2, + "gas": 1943652, + "gasCost": 3, + "op": "PUSH1", + "pc": 539, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -16026,11 +16026,11 @@ ] }, { - "pc": 541, - "op": "DUP2", - "gas": 1938388, - "gasCost": 3, "depth": 2, + "gas": 1943649, + "gasCost": 3, + "op": "DUP2", + "pc": 541, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -16042,11 +16042,11 @@ ] }, { - "pc": 542, - "op": "DUP1", - "gas": 1938385, - "gasCost": 3, "depth": 2, + "gas": 1943646, + "gasCost": 3, + "op": "DUP1", + "pc": 542, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -16059,11 +16059,11 @@ ] }, { - "pc": 543, - "op": "MLOAD", - "gas": 1938382, - "gasCost": 3, "depth": 2, + "gas": 1943643, + "gasCost": 3, + "op": "MLOAD", + "pc": 543, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -16077,11 +16077,11 @@ ] }, { - "pc": 544, - "op": "SWAP1", - "gas": 1938379, - "gasCost": 3, "depth": 2, + "gas": 1943640, + "gasCost": 3, + "op": "SWAP1", + "pc": 544, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -16095,11 +16095,11 @@ ] }, { - "pc": 545, - "op": "PUSH1", - "gas": 1938376, - "gasCost": 3, "depth": 2, + "gas": 1943637, + "gasCost": 3, + "op": "PUSH1", + "pc": 545, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -16113,11 +16113,11 @@ ] }, { - "pc": 547, - "op": "ADD", - "gas": 1938373, - "gasCost": 3, "depth": 2, + "gas": 1943634, + "gasCost": 3, + "op": "ADD", + "pc": 547, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -16132,11 +16132,11 @@ ] }, { - "pc": 548, - "op": "KECCAK256", - "gas": 1938370, - "gasCost": 36, "depth": 2, + "gas": 1943631, + "gasCost": 36, + "op": "KECCAK256", + "pc": 548, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -16150,11 +16150,11 @@ ] }, { - "pc": 549, - "op": "SWAP1", - "gas": 1938334, - "gasCost": 3, "depth": 2, + "gas": 1943595, + "gasCost": 3, + "op": "SWAP1", + "pc": 549, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -16167,11 +16167,11 @@ ] }, { - "pc": 550, - "op": "POP", - "gas": 1938331, - "gasCost": 2, "depth": 2, + "gas": 1943592, + "gasCost": 2, + "op": "POP", + "pc": 550, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -16184,11 +16184,11 @@ ] }, { - "pc": 551, - "op": "DUP1", - "gas": 1938329, - "gasCost": 3, "depth": 2, + "gas": 1943590, + "gasCost": 3, + "op": "DUP1", + "pc": 551, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -16200,11 +16200,11 @@ ] }, { - "pc": 552, - "op": "SWAP3", - "gas": 1938326, - "gasCost": 3, "depth": 2, + "gas": 1943587, + "gasCost": 3, + "op": "SWAP3", + "pc": 552, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -16217,11 +16217,11 @@ ] }, { - "pc": 553, - "op": "POP", - "gas": 1938323, - "gasCost": 2, "depth": 2, + "gas": 1943584, + "gasCost": 2, + "op": "POP", + "pc": 553, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -16234,11 +16234,11 @@ ] }, { - "pc": 554, - "op": "POP", - "gas": 1938321, - "gasCost": 2, "depth": 2, + "gas": 1943582, + "gasCost": 2, + "op": "POP", + "pc": 554, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -16250,11 +16250,11 @@ ] }, { - "pc": 555, - "op": "POP", - "gas": 1938319, - "gasCost": 2, "depth": 2, + "gas": 1943580, + "gasCost": 2, + "op": "POP", + "pc": 555, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -16265,11 +16265,11 @@ ] }, { - "pc": 556, - "op": "SWAP1", - "gas": 1938317, - "gasCost": 3, "depth": 2, + "gas": 1943578, + "gasCost": 3, + "op": "SWAP1", + "pc": 556, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -16279,11 +16279,11 @@ ] }, { - "pc": 557, - "op": "JUMP", - "gas": 1938314, - "gasCost": 8, "depth": 2, + "gas": 1943575, + "gasCost": 8, + "op": "JUMP", + "pc": 557, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -16293,11 +16293,11 @@ ] }, { - "pc": 351, - "op": "JUMPDEST", - "gas": 1938306, - "gasCost": 1, "depth": 2, + "gas": 1943567, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 351, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -16306,11 +16306,11 @@ ] }, { - "pc": 352, - "op": "POP", - "gas": 1938305, - "gasCost": 2, "depth": 2, + "gas": 1943566, + "gasCost": 2, + "op": "POP", + "pc": 352, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -16319,11 +16319,11 @@ ] }, { - "pc": 353, - "op": "PUSH1", - "gas": 1938303, - "gasCost": 3, "depth": 2, + "gas": 1943564, + "gasCost": 3, + "op": "PUSH1", + "pc": 353, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -16331,11 +16331,11 @@ ] }, { - "pc": 355, - "op": "SWAP1", - "gas": 1938300, - "gasCost": 3, "depth": 2, + "gas": 1943561, + "gasCost": 3, + "op": "SWAP1", + "pc": 355, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -16344,11 +16344,11 @@ ] }, { - "pc": 356, - "op": "POP", - "gas": 1938297, - "gasCost": 2, "depth": 2, + "gas": 1943558, + "gasCost": 2, + "op": "POP", + "pc": 356, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -16357,11 +16357,11 @@ ] }, { - "pc": 357, - "op": "SWAP2", - "gas": 1938295, - "gasCost": 3, "depth": 2, + "gas": 1943556, + "gasCost": 3, + "op": "SWAP2", + "pc": 357, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -16369,11 +16369,11 @@ ] }, { - "pc": 358, - "op": "SWAP1", - "gas": 1938292, - "gasCost": 3, "depth": 2, + "gas": 1943553, + "gasCost": 3, + "op": "SWAP1", + "pc": 358, "stack": [ "0x1", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -16381,11 +16381,11 @@ ] }, { - "pc": 359, - "op": "POP", - "gas": 1938289, - "gasCost": 2, "depth": 2, + "gas": 1943550, + "gasCost": 2, + "op": "POP", + "pc": 359, "stack": [ "0x1", "0xbc", @@ -16393,97 +16393,97 @@ ] }, { - "pc": 360, - "op": "JUMP", - "gas": 1938287, - "gasCost": 8, "depth": 2, + "gas": 1943548, + "gasCost": 8, + "op": "JUMP", + "pc": 360, "stack": [ "0x1", "0xbc" ] }, { - "pc": 188, - "op": "JUMPDEST", - "gas": 1938279, - "gasCost": 1, "depth": 2, + "gas": 1943540, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 188, "stack": [ "0x1" ] }, { - "pc": 189, - "op": "POP", - "gas": 1938278, - "gasCost": 2, "depth": 2, + "gas": 1943539, + "gasCost": 2, + "op": "POP", + "pc": 189, "stack": [ "0x1" ] }, { - "pc": 190, - "op": "PUSH3", - "gas": 1938276, - "gasCost": 3, "depth": 2, + "gas": 1943537, + "gasCost": 3, + "op": "PUSH3", + "pc": 190, "stack": [] }, { - "pc": 194, - "op": "JUMP", - "gas": 1938273, - "gasCost": 8, "depth": 2, + "gas": 1943534, + "gasCost": 8, + "op": "JUMP", + "pc": 194, "stack": [ "0x460" ] }, { - "pc": 1120, - "op": "JUMPDEST", - "gas": 1938265, - "gasCost": 1, "depth": 2, + "gas": 1943526, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 1120, "stack": [] }, { - "pc": 1121, - "op": "PUSH2", - "gas": 1938264, - "gasCost": 3, "depth": 2, + "gas": 1943525, + "gasCost": 3, + "op": "PUSH2", + "pc": 1121, "stack": [] }, { - "pc": 1124, - "op": "DUP1", - "gas": 1938261, - "gasCost": 3, "depth": 2, + "gas": 1943522, + "gasCost": 3, + "op": "DUP1", + "pc": 1124, "stack": [ "0x62f" ] }, { - "pc": 1125, - "op": "PUSH3", - "gas": 1938258, - "gasCost": 3, "depth": 2, + "gas": 1943519, + "gasCost": 3, + "op": "PUSH3", + "pc": 1125, "stack": [ "0x62f", "0x62f" ] }, { - "pc": 1129, - "op": "PUSH1", - "gas": 1938255, - "gasCost": 3, "depth": 2, + "gas": 1943516, + "gasCost": 3, + "op": "PUSH1", + "pc": 1129, "stack": [ "0x62f", "0x62f", @@ -16491,11 +16491,11 @@ ] }, { - "pc": 1131, - "op": "CODECOPY", - "gas": 1938252, - "gasCost": 283, "depth": 2, + "gas": 1943513, + "gasCost": 283, + "op": "CODECOPY", + "pc": 1131, "stack": [ "0x62f", "0x62f", @@ -16504,239 +16504,239 @@ ] }, { - "pc": 1132, - "op": "PUSH1", - "gas": 1937969, - "gasCost": 3, "depth": 2, + "gas": 1943230, + "gasCost": 3, + "op": "PUSH1", + "pc": 1132, "stack": [ "0x62f" ] }, { - "pc": 1134, - "op": "RETURN", - "gas": 1937966, - "gasCost": 0, "depth": 2, + "gas": 1943227, + "gasCost": 0, + "op": "RETURN", + "pc": 1134, "stack": [ "0x62f", "0x0" ] }, { - "pc": 865, - "op": "DUP1", - "gas": 1653288, - "gasCost": 3, "depth": 1, + "gas": 1658546, + "gasCost": 3, + "op": "DUP1", + "pc": 865, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585" + "0x5b659fd8bdc52879d0c3697038537da40832b759" ] }, { - "pc": 866, - "op": "ISZERO", - "gas": 1653285, - "gasCost": 3, "depth": 1, + "gas": 1658543, + "gasCost": 3, + "op": "ISZERO", + "pc": 866, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585" + "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x5b659fd8bdc52879d0c3697038537da40832b759" ] }, { - "pc": 867, - "op": "DUP1", - "gas": 1653282, - "gasCost": 3, "depth": 1, + "gas": 1658540, + "gasCost": 3, + "op": "DUP1", + "pc": 867, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0x0" ] }, { - "pc": 868, - "op": "ISZERO", - "gas": 1653279, - "gasCost": 3, "depth": 1, + "gas": 1658537, + "gasCost": 3, + "op": "ISZERO", + "pc": 868, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0x0", "0x0" ] }, { - "pc": 869, - "op": "PUSH3", - "gas": 1653276, - "gasCost": 3, "depth": 1, + "gas": 1658534, + "gasCost": 3, + "op": "PUSH3", + "pc": 869, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0x0", "0x1" ] }, { - "pc": 873, - "op": "JUMPI", - "gas": 1653273, - "gasCost": 10, "depth": 1, + "gas": 1658531, + "gasCost": 10, + "op": "JUMPI", + "pc": 873, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0x0", "0x1", "0x373" ] }, { - "pc": 883, - "op": "JUMPDEST", - "gas": 1653263, - "gasCost": 1, "depth": 1, + "gas": 1658521, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 883, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0x0" ] }, { - "pc": 884, - "op": "POP", - "gas": 1653262, - "gasCost": 2, "depth": 1, + "gas": 1658520, + "gasCost": 2, + "op": "POP", + "pc": 884, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0x0" ] }, { - "pc": 885, - "op": "PUSH1", - "gas": 1653260, - "gasCost": 3, "depth": 1, + "gas": 1658518, + "gasCost": 3, + "op": "PUSH1", + "pc": 885, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585" + "0x5b659fd8bdc52879d0c3697038537da40832b759" ] }, { - "pc": 887, - "op": "DUP1", - "gas": 1653257, - "gasCost": 3, "depth": 1, + "gas": 1658515, + "gasCost": 3, + "op": "DUP1", + "pc": 887, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0x0" ] }, { - "pc": 888, - "op": "PUSH2", - "gas": 1653254, - "gasCost": 3, "depth": 1, + "gas": 1658512, + "gasCost": 3, + "op": "PUSH2", + "pc": 888, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0x0", "0x0" ] }, { - "pc": 891, - "op": "EXP", - "gas": 1653251, - "gasCost": 10, "depth": 1, + "gas": 1658509, + "gasCost": 10, + "op": "EXP", + "pc": 891, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0x0", "0x0", "0x100" ] }, { - "pc": 892, - "op": "DUP2", - "gas": 1653241, - "gasCost": 3, "depth": 1, + "gas": 1658499, + "gasCost": 3, + "op": "DUP2", + "pc": 892, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0x0", "0x1" ] }, { - "pc": 893, - "op": "SLOAD", - "gas": 1653238, - "gasCost": 2100, "depth": 1, + "gas": 1658496, + "gasCost": 200, + "op": "SLOAD", + "pc": 893, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0x0", "0x1", "0x0" @@ -16746,34 +16746,34 @@ } }, { - "pc": 894, - "op": "DUP2", - "gas": 1651138, - "gasCost": 3, "depth": 1, + "gas": 1658296, + "gasCost": 3, + "op": "DUP2", + "pc": 894, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0x0", "0x1", "0x0" ] }, { - "pc": 895, - "op": "PUSH20", - "gas": 1651135, - "gasCost": 3, "depth": 1, + "gas": 1658293, + "gasCost": 3, + "op": "PUSH20", + "pc": 895, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0x0", "0x1", "0x0", @@ -16781,17 +16781,17 @@ ] }, { - "pc": 916, - "op": "MUL", - "gas": 1651132, - "gasCost": 5, "depth": 1, + "gas": 1658290, + "gasCost": 5, + "op": "MUL", + "pc": 916, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0x0", "0x1", "0x0", @@ -16800,17 +16800,17 @@ ] }, { - "pc": 917, - "op": "NOT", - "gas": 1651127, - "gasCost": 3, "depth": 1, + "gas": 1658285, + "gasCost": 3, + "op": "NOT", + "pc": 917, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0x0", "0x1", "0x0", @@ -16818,17 +16818,17 @@ ] }, { - "pc": 918, - "op": "AND", - "gas": 1651124, - "gasCost": 3, "depth": 1, + "gas": 1658282, + "gasCost": 3, + "op": "AND", + "pc": 918, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0x0", "0x1", "0x0", @@ -16836,166 +16836,166 @@ ] }, { - "pc": 919, - "op": "SWAP1", - "gas": 1651121, - "gasCost": 3, "depth": 1, + "gas": 1658279, + "gasCost": 3, + "op": "SWAP1", + "pc": 919, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0x0", "0x1", "0x0" ] }, { - "pc": 920, - "op": "DUP4", - "gas": 1651118, - "gasCost": 3, "depth": 1, + "gas": 1658276, + "gasCost": 3, + "op": "DUP4", + "pc": 920, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0x0", "0x0", "0x1" ] }, { - "pc": 921, - "op": "PUSH20", - "gas": 1651115, - "gasCost": 3, "depth": 1, + "gas": 1658273, + "gasCost": 3, + "op": "PUSH20", + "pc": 921, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0x0", "0x0", "0x1", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585" + "0x5b659fd8bdc52879d0c3697038537da40832b759" ] }, { - "pc": 942, - "op": "AND", - "gas": 1651112, - "gasCost": 3, "depth": 1, + "gas": 1658270, + "gasCost": 3, + "op": "AND", + "pc": 942, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0x0", "0x0", "0x1", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xffffffffffffffffffffffffffffffffffffffff" ] }, { - "pc": 943, - "op": "MUL", - "gas": 1651109, - "gasCost": 5, "depth": 1, + "gas": 1658267, + "gasCost": 5, + "op": "MUL", + "pc": 943, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0x0", "0x0", "0x1", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585" + "0x5b659fd8bdc52879d0c3697038537da40832b759" ] }, { - "pc": 944, - "op": "OR", - "gas": 1651104, - "gasCost": 3, "depth": 1, + "gas": 1658262, + "gasCost": 3, + "op": "OR", + "pc": 944, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0x0", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585" + "0x5b659fd8bdc52879d0c3697038537da40832b759" ] }, { - "pc": 945, - "op": "SWAP1", - "gas": 1651101, - "gasCost": 3, "depth": 1, + "gas": 1658259, + "gasCost": 3, + "op": "SWAP1", + "pc": 945, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585" + "0x5b659fd8bdc52879d0c3697038537da40832b759" ] }, { - "pc": 946, - "op": "SSTORE", - "gas": 1651098, - "gasCost": 20000, "depth": 1, + "gas": 1658256, + "gasCost": 20000, + "op": "SSTORE", + "pc": 946, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0x0" ], "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000ccbd01c355155c2b4e79d1bdbb43dfe43194a585" + "0000000000000000000000000000000000000000000000000000000000000000": "0000000000000000000000005b659fd8bdc52879d0c3697038537da40832b759" } }, { - "pc": 947, - "op": "POP", - "gas": 1631098, - "gasCost": 2, "depth": 1, + "gas": 1638256, + "gasCost": 2, + "op": "POP", + "pc": 947, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585" + "0x5b659fd8bdc52879d0c3697038537da40832b759" ] }, { - "pc": 948, - "op": "DUP2", - "gas": 1631096, - "gasCost": 3, "depth": 1, + "gas": 1638254, + "gasCost": 3, + "op": "DUP2", + "pc": 948, "stack": [ "0x3aa18088", "0x149", @@ -17004,11 +17004,11 @@ ] }, { - "pc": 949, - "op": "PUSH1", - "gas": 1631093, - "gasCost": 3, "depth": 1, + "gas": 1638251, + "gasCost": 3, + "op": "PUSH1", + "pc": 949, "stack": [ "0x3aa18088", "0x149", @@ -17018,11 +17018,11 @@ ] }, { - "pc": 951, - "op": "PUSH1", - "gas": 1631090, - "gasCost": 3, "depth": 1, + "gas": 1638248, + "gasCost": 3, + "op": "PUSH1", + "pc": 951, "stack": [ "0x3aa18088", "0x149", @@ -17033,11 +17033,11 @@ ] }, { - "pc": 953, - "op": "DUP3", - "gas": 1631087, - "gasCost": 3, "depth": 1, + "gas": 1638245, + "gasCost": 3, + "op": "DUP3", + "pc": 953, "stack": [ "0x3aa18088", "0x149", @@ -17049,11 +17049,11 @@ ] }, { - "pc": 954, - "op": "DUP3", - "gas": 1631084, - "gasCost": 3, "depth": 1, + "gas": 1638242, + "gasCost": 3, + "op": "DUP3", + "pc": 954, "stack": [ "0x3aa18088", "0x149", @@ -17066,11 +17066,11 @@ ] }, { - "pc": 955, - "op": "SLOAD", - "gas": 1631081, - "gasCost": 2100, "depth": 1, + "gas": 1638239, + "gasCost": 200, + "op": "SLOAD", + "pc": 955, "stack": [ "0x3aa18088", "0x149", @@ -17083,16 +17083,16 @@ "0x1" ], "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000ccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0000000000000000000000000000000000000000000000000000000000000000": "0000000000000000000000005b659fd8bdc52879d0c3697038537da40832b759", "0000000000000000000000000000000000000000000000000000000000000001": "0000000000000000000000000000000000000000000000000000000000000000" } }, { - "pc": 956, - "op": "PUSH3", - "gas": 1628981, - "gasCost": 3, "depth": 1, + "gas": 1638039, + "gasCost": 3, + "op": "PUSH3", + "pc": 956, "stack": [ "0x3aa18088", "0x149", @@ -17106,11 +17106,11 @@ ] }, { - "pc": 960, - "op": "SWAP2", - "gas": 1628978, - "gasCost": 3, "depth": 1, + "gas": 1638036, + "gasCost": 3, + "op": "SWAP2", + "pc": 960, "stack": [ "0x3aa18088", "0x149", @@ -17125,11 +17125,11 @@ ] }, { - "pc": 961, - "op": "SWAP1", - "gas": 1628975, - "gasCost": 3, "depth": 1, + "gas": 1638033, + "gasCost": 3, + "op": "SWAP1", + "pc": 961, "stack": [ "0x3aa18088", "0x149", @@ -17144,11 +17144,11 @@ ] }, { - "pc": 962, - "op": "PUSH3", - "gas": 1628972, - "gasCost": 3, "depth": 1, + "gas": 1638030, + "gasCost": 3, + "op": "PUSH3", + "pc": 962, "stack": [ "0x3aa18088", "0x149", @@ -17163,11 +17163,11 @@ ] }, { - "pc": 966, - "op": "JUMP", - "gas": 1628969, - "gasCost": 8, "depth": 1, + "gas": 1638027, + "gasCost": 8, + "op": "JUMP", + "pc": 966, "stack": [ "0x3aa18088", "0x149", @@ -17183,11 +17183,11 @@ ] }, { - "pc": 2965, - "op": "JUMPDEST", - "gas": 1628961, - "gasCost": 1, "depth": 1, + "gas": 1638019, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2965, "stack": [ "0x3aa18088", "0x149", @@ -17202,11 +17202,11 @@ ] }, { - "pc": 2966, - "op": "PUSH1", - "gas": 1628960, - "gasCost": 3, "depth": 1, + "gas": 1638018, + "gasCost": 3, + "op": "PUSH1", + "pc": 2966, "stack": [ "0x3aa18088", "0x149", @@ -17221,11 +17221,11 @@ ] }, { - "pc": 2968, - "op": "PUSH3", - "gas": 1628957, - "gasCost": 3, "depth": 1, + "gas": 1638015, + "gasCost": 3, + "op": "PUSH3", + "pc": 2968, "stack": [ "0x3aa18088", "0x149", @@ -17241,11 +17241,11 @@ ] }, { - "pc": 2972, - "op": "DUP3", - "gas": 1628954, - "gasCost": 3, "depth": 1, + "gas": 1638012, + "gasCost": 3, + "op": "DUP3", + "pc": 2972, "stack": [ "0x3aa18088", "0x149", @@ -17262,11 +17262,11 @@ ] }, { - "pc": 2973, - "op": "PUSH3", - "gas": 1628951, - "gasCost": 3, "depth": 1, + "gas": 1638009, + "gasCost": 3, + "op": "PUSH3", + "pc": 2973, "stack": [ "0x3aa18088", "0x149", @@ -17284,11 +17284,11 @@ ] }, { - "pc": 2977, - "op": "JUMP", - "gas": 1628948, - "gasCost": 8, "depth": 1, + "gas": 1638006, + "gasCost": 8, + "op": "JUMP", + "pc": 2977, "stack": [ "0x3aa18088", "0x149", @@ -17307,11 +17307,11 @@ ] }, { - "pc": 2394, - "op": "JUMPDEST", - "gas": 1628940, - "gasCost": 1, "depth": 1, + "gas": 1637998, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2394, "stack": [ "0x3aa18088", "0x149", @@ -17329,11 +17329,11 @@ ] }, { - "pc": 2395, - "op": "PUSH1", - "gas": 1628939, - "gasCost": 3, "depth": 1, + "gas": 1637997, + "gasCost": 3, + "op": "PUSH1", + "pc": 2395, "stack": [ "0x3aa18088", "0x149", @@ -17351,11 +17351,11 @@ ] }, { - "pc": 2397, - "op": "DUP2", - "gas": 1628936, - "gasCost": 3, "depth": 1, + "gas": 1637994, + "gasCost": 3, + "op": "DUP2", + "pc": 2397, "stack": [ "0x3aa18088", "0x149", @@ -17374,11 +17374,11 @@ ] }, { - "pc": 2398, - "op": "SWAP1", - "gas": 1628933, - "gasCost": 3, "depth": 1, + "gas": 1637991, + "gasCost": 3, + "op": "SWAP1", + "pc": 2398, "stack": [ "0x3aa18088", "0x149", @@ -17398,11 +17398,11 @@ ] }, { - "pc": 2399, - "op": "POP", - "gas": 1628930, - "gasCost": 2, "depth": 1, + "gas": 1637988, + "gasCost": 2, + "op": "POP", + "pc": 2399, "stack": [ "0x3aa18088", "0x149", @@ -17422,11 +17422,11 @@ ] }, { - "pc": 2400, - "op": "SWAP2", - "gas": 1628928, - "gasCost": 3, "depth": 1, + "gas": 1637986, + "gasCost": 3, + "op": "SWAP2", + "pc": 2400, "stack": [ "0x3aa18088", "0x149", @@ -17445,11 +17445,11 @@ ] }, { - "pc": 2401, - "op": "SWAP1", - "gas": 1628925, - "gasCost": 3, "depth": 1, + "gas": 1637983, + "gasCost": 3, + "op": "SWAP1", + "pc": 2401, "stack": [ "0x3aa18088", "0x149", @@ -17468,11 +17468,11 @@ ] }, { - "pc": 2402, - "op": "POP", - "gas": 1628922, - "gasCost": 2, "depth": 1, + "gas": 1637980, + "gasCost": 2, + "op": "POP", + "pc": 2402, "stack": [ "0x3aa18088", "0x149", @@ -17491,11 +17491,11 @@ ] }, { - "pc": 2403, - "op": "JUMP", - "gas": 1628920, - "gasCost": 8, "depth": 1, + "gas": 1637978, + "gasCost": 8, + "op": "JUMP", + "pc": 2403, "stack": [ "0x3aa18088", "0x149", @@ -17513,11 +17513,11 @@ ] }, { - "pc": 2978, - "op": "JUMPDEST", - "gas": 1628912, - "gasCost": 1, "depth": 1, + "gas": 1637970, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2978, "stack": [ "0x3aa18088", "0x149", @@ -17534,11 +17534,11 @@ ] }, { - "pc": 2979, - "op": "SWAP2", - "gas": 1628911, - "gasCost": 3, "depth": 1, + "gas": 1637969, + "gasCost": 3, + "op": "SWAP2", + "pc": 2979, "stack": [ "0x3aa18088", "0x149", @@ -17555,11 +17555,11 @@ ] }, { - "pc": 2980, - "op": "POP", - "gas": 1628908, - "gasCost": 2, "depth": 1, + "gas": 1637966, + "gasCost": 2, + "op": "POP", + "pc": 2980, "stack": [ "0x3aa18088", "0x149", @@ -17576,11 +17576,11 @@ ] }, { - "pc": 2981, - "op": "PUSH3", - "gas": 1628906, - "gasCost": 3, "depth": 1, + "gas": 1637964, + "gasCost": 3, + "op": "PUSH3", + "pc": 2981, "stack": [ "0x3aa18088", "0x149", @@ -17596,11 +17596,11 @@ ] }, { - "pc": 2985, - "op": "DUP4", - "gas": 1628903, - "gasCost": 3, "depth": 1, + "gas": 1637961, + "gasCost": 3, + "op": "DUP4", + "pc": 2985, "stack": [ "0x3aa18088", "0x149", @@ -17617,11 +17617,11 @@ ] }, { - "pc": 2986, - "op": "PUSH3", - "gas": 1628900, - "gasCost": 3, "depth": 1, + "gas": 1637958, + "gasCost": 3, + "op": "PUSH3", + "pc": 2986, "stack": [ "0x3aa18088", "0x149", @@ -17639,11 +17639,11 @@ ] }, { - "pc": 2990, - "op": "JUMP", - "gas": 1628897, - "gasCost": 8, "depth": 1, + "gas": 1637955, + "gasCost": 8, + "op": "JUMP", + "pc": 2990, "stack": [ "0x3aa18088", "0x149", @@ -17662,11 +17662,11 @@ ] }, { - "pc": 2394, - "op": "JUMPDEST", - "gas": 1628889, - "gasCost": 1, "depth": 1, + "gas": 1637947, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2394, "stack": [ "0x3aa18088", "0x149", @@ -17684,11 +17684,11 @@ ] }, { - "pc": 2395, - "op": "PUSH1", - "gas": 1628888, - "gasCost": 3, "depth": 1, + "gas": 1637946, + "gasCost": 3, + "op": "PUSH1", + "pc": 2395, "stack": [ "0x3aa18088", "0x149", @@ -17706,11 +17706,11 @@ ] }, { - "pc": 2397, - "op": "DUP2", - "gas": 1628885, - "gasCost": 3, "depth": 1, + "gas": 1637943, + "gasCost": 3, + "op": "DUP2", + "pc": 2397, "stack": [ "0x3aa18088", "0x149", @@ -17729,11 +17729,11 @@ ] }, { - "pc": 2398, - "op": "SWAP1", - "gas": 1628882, - "gasCost": 3, "depth": 1, + "gas": 1637940, + "gasCost": 3, + "op": "SWAP1", + "pc": 2398, "stack": [ "0x3aa18088", "0x149", @@ -17753,11 +17753,11 @@ ] }, { - "pc": 2399, - "op": "POP", - "gas": 1628879, - "gasCost": 2, "depth": 1, + "gas": 1637937, + "gasCost": 2, + "op": "POP", + "pc": 2399, "stack": [ "0x3aa18088", "0x149", @@ -17777,11 +17777,11 @@ ] }, { - "pc": 2400, - "op": "SWAP2", - "gas": 1628877, - "gasCost": 3, "depth": 1, + "gas": 1637935, + "gasCost": 3, + "op": "SWAP2", + "pc": 2400, "stack": [ "0x3aa18088", "0x149", @@ -17800,11 +17800,11 @@ ] }, { - "pc": 2401, - "op": "SWAP1", - "gas": 1628874, - "gasCost": 3, "depth": 1, + "gas": 1637932, + "gasCost": 3, + "op": "SWAP1", + "pc": 2401, "stack": [ "0x3aa18088", "0x149", @@ -17823,11 +17823,11 @@ ] }, { - "pc": 2402, - "op": "POP", - "gas": 1628871, - "gasCost": 2, "depth": 1, + "gas": 1637929, + "gasCost": 2, + "op": "POP", + "pc": 2402, "stack": [ "0x3aa18088", "0x149", @@ -17846,11 +17846,11 @@ ] }, { - "pc": 2403, - "op": "JUMP", - "gas": 1628869, - "gasCost": 8, "depth": 1, + "gas": 1637927, + "gasCost": 8, + "op": "JUMP", + "pc": 2403, "stack": [ "0x3aa18088", "0x149", @@ -17868,11 +17868,11 @@ ] }, { - "pc": 2991, - "op": "JUMPDEST", - "gas": 1628861, - "gasCost": 1, "depth": 1, + "gas": 1637919, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2991, "stack": [ "0x3aa18088", "0x149", @@ -17889,11 +17889,11 @@ ] }, { - "pc": 2992, - "op": "SWAP3", - "gas": 1628860, - "gasCost": 3, "depth": 1, + "gas": 1637918, + "gasCost": 3, + "op": "SWAP3", + "pc": 2992, "stack": [ "0x3aa18088", "0x149", @@ -17910,11 +17910,11 @@ ] }, { - "pc": 2993, - "op": "POP", - "gas": 1628857, - "gasCost": 2, "depth": 1, + "gas": 1637915, + "gasCost": 2, + "op": "POP", + "pc": 2993, "stack": [ "0x3aa18088", "0x149", @@ -17931,11 +17931,11 @@ ] }, { - "pc": 2994, - "op": "DUP3", - "gas": 1628855, - "gasCost": 3, "depth": 1, + "gas": 1637913, + "gasCost": 3, + "op": "DUP3", + "pc": 2994, "stack": [ "0x3aa18088", "0x149", @@ -17951,11 +17951,11 @@ ] }, { - "pc": 2995, - "op": "DUP3", - "gas": 1628852, - "gasCost": 3, "depth": 1, + "gas": 1637910, + "gasCost": 3, + "op": "DUP3", + "pc": 2995, "stack": [ "0x3aa18088", "0x149", @@ -17972,11 +17972,11 @@ ] }, { - "pc": 2996, - "op": "ADD", - "gas": 1628849, - "gasCost": 3, "depth": 1, + "gas": 1637907, + "gasCost": 3, + "op": "ADD", + "pc": 2996, "stack": [ "0x3aa18088", "0x149", @@ -17994,11 +17994,11 @@ ] }, { - "pc": 2997, - "op": "SWAP1", - "gas": 1628846, - "gasCost": 3, "depth": 1, + "gas": 1637904, + "gasCost": 3, + "op": "SWAP1", + "pc": 2997, "stack": [ "0x3aa18088", "0x149", @@ -18015,11 +18015,11 @@ ] }, { - "pc": 2998, - "op": "POP", - "gas": 1628843, - "gasCost": 2, "depth": 1, + "gas": 1637901, + "gasCost": 2, + "op": "POP", + "pc": 2998, "stack": [ "0x3aa18088", "0x149", @@ -18036,11 +18036,11 @@ ] }, { - "pc": 2999, - "op": "DUP1", - "gas": 1628841, - "gasCost": 3, "depth": 1, + "gas": 1637899, + "gasCost": 3, + "op": "DUP1", + "pc": 2999, "stack": [ "0x3aa18088", "0x149", @@ -18056,11 +18056,11 @@ ] }, { - "pc": 3000, - "op": "DUP3", - "gas": 1628838, - "gasCost": 3, "depth": 1, + "gas": 1637896, + "gasCost": 3, + "op": "DUP3", + "pc": 3000, "stack": [ "0x3aa18088", "0x149", @@ -18077,11 +18077,11 @@ ] }, { - "pc": 3001, - "op": "GT", - "gas": 1628835, - "gasCost": 3, "depth": 1, + "gas": 1637893, + "gasCost": 3, + "op": "GT", + "pc": 3001, "stack": [ "0x3aa18088", "0x149", @@ -18099,11 +18099,11 @@ ] }, { - "pc": 3002, - "op": "ISZERO", - "gas": 1628832, - "gasCost": 3, "depth": 1, + "gas": 1637890, + "gasCost": 3, + "op": "ISZERO", + "pc": 3002, "stack": [ "0x3aa18088", "0x149", @@ -18120,11 +18120,11 @@ ] }, { - "pc": 3003, - "op": "PUSH3", - "gas": 1628829, - "gasCost": 3, "depth": 1, + "gas": 1637887, + "gasCost": 3, + "op": "PUSH3", + "pc": 3003, "stack": [ "0x3aa18088", "0x149", @@ -18141,11 +18141,11 @@ ] }, { - "pc": 3007, - "op": "JUMPI", - "gas": 1628826, - "gasCost": 10, "depth": 1, + "gas": 1637884, + "gasCost": 10, + "op": "JUMPI", + "pc": 3007, "stack": [ "0x3aa18088", "0x149", @@ -18163,11 +18163,11 @@ ] }, { - "pc": 3018, - "op": "JUMPDEST", - "gas": 1628816, - "gasCost": 1, "depth": 1, + "gas": 1637874, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 3018, "stack": [ "0x3aa18088", "0x149", @@ -18183,11 +18183,11 @@ ] }, { - "pc": 3019, - "op": "SWAP3", - "gas": 1628815, - "gasCost": 3, "depth": 1, + "gas": 1637873, + "gasCost": 3, + "op": "SWAP3", + "pc": 3019, "stack": [ "0x3aa18088", "0x149", @@ -18203,11 +18203,11 @@ ] }, { - "pc": 3020, - "op": "SWAP2", - "gas": 1628812, - "gasCost": 3, "depth": 1, + "gas": 1637870, + "gasCost": 3, + "op": "SWAP2", + "pc": 3020, "stack": [ "0x3aa18088", "0x149", @@ -18223,11 +18223,11 @@ ] }, { - "pc": 3021, - "op": "POP", - "gas": 1628809, - "gasCost": 2, "depth": 1, + "gas": 1637867, + "gasCost": 2, + "op": "POP", + "pc": 3021, "stack": [ "0x3aa18088", "0x149", @@ -18243,11 +18243,11 @@ ] }, { - "pc": 3022, - "op": "POP", - "gas": 1628807, - "gasCost": 2, "depth": 1, + "gas": 1637865, + "gasCost": 2, + "op": "POP", + "pc": 3022, "stack": [ "0x3aa18088", "0x149", @@ -18262,11 +18262,11 @@ ] }, { - "pc": 3023, - "op": "JUMP", - "gas": 1628805, - "gasCost": 8, "depth": 1, + "gas": 1637863, + "gasCost": 8, + "op": "JUMP", + "pc": 3023, "stack": [ "0x3aa18088", "0x149", @@ -18280,11 +18280,11 @@ ] }, { - "pc": 967, - "op": "JUMPDEST", - "gas": 1628797, - "gasCost": 1, "depth": 1, + "gas": 1637855, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 967, "stack": [ "0x3aa18088", "0x149", @@ -18297,11 +18297,11 @@ ] }, { - "pc": 968, - "op": "SWAP3", - "gas": 1628796, - "gasCost": 3, "depth": 1, + "gas": 1637854, + "gasCost": 3, + "op": "SWAP3", + "pc": 968, "stack": [ "0x3aa18088", "0x149", @@ -18314,11 +18314,11 @@ ] }, { - "pc": 969, - "op": "POP", - "gas": 1628793, - "gasCost": 2, "depth": 1, + "gas": 1637851, + "gasCost": 2, + "op": "POP", + "pc": 969, "stack": [ "0x3aa18088", "0x149", @@ -18331,11 +18331,11 @@ ] }, { - "pc": 970, - "op": "POP", - "gas": 1628791, - "gasCost": 2, "depth": 1, + "gas": 1637849, + "gasCost": 2, + "op": "POP", + "pc": 970, "stack": [ "0x3aa18088", "0x149", @@ -18347,11 +18347,11 @@ ] }, { - "pc": 971, - "op": "DUP2", - "gas": 1628789, - "gasCost": 3, "depth": 1, + "gas": 1637847, + "gasCost": 3, + "op": "DUP2", + "pc": 971, "stack": [ "0x3aa18088", "0x149", @@ -18362,11 +18362,11 @@ ] }, { - "pc": 972, - "op": "SWAP1", - "gas": 1628786, - "gasCost": 3, "depth": 1, + "gas": 1637844, + "gasCost": 3, + "op": "SWAP1", + "pc": 972, "stack": [ "0x3aa18088", "0x149", @@ -18378,11 +18378,11 @@ ] }, { - "pc": 973, - "op": "SSTORE", - "gas": 1628783, - "gasCost": 20000, "depth": 1, + "gas": 1637841, + "gasCost": 20000, + "op": "SSTORE", + "pc": 973, "stack": [ "0x3aa18088", "0x149", @@ -18393,16 +18393,16 @@ "0x1" ], "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000ccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0000000000000000000000000000000000000000000000000000000000000000": "0000000000000000000000005b659fd8bdc52879d0c3697038537da40832b759", "0000000000000000000000000000000000000000000000000000000000000001": "00000000000000000000000000000000000000000000000000000000000003e8" } }, { - "pc": 974, - "op": "POP", - "gas": 1608783, - "gasCost": 2, "depth": 1, + "gas": 1617841, + "gasCost": 2, + "op": "POP", + "pc": 974, "stack": [ "0x3aa18088", "0x149", @@ -18412,11 +18412,11 @@ ] }, { - "pc": 975, - "op": "PUSH3", - "gas": 1608781, - "gasCost": 3, "depth": 1, + "gas": 1617839, + "gasCost": 3, + "op": "PUSH3", + "pc": 975, "stack": [ "0x3aa18088", "0x149", @@ -18425,11 +18425,11 @@ ] }, { - "pc": 979, - "op": "PUSH1", - "gas": 1608778, - "gasCost": 3, "depth": 1, + "gas": 1617836, + "gasCost": 3, + "op": "PUSH1", + "pc": 979, "stack": [ "0x3aa18088", "0x149", @@ -18439,11 +18439,11 @@ ] }, { - "pc": 981, - "op": "DUP4", - "gas": 1608775, - "gasCost": 3, "depth": 1, + "gas": 1617833, + "gasCost": 3, + "op": "DUP4", + "pc": 981, "stack": [ "0x3aa18088", "0x149", @@ -18454,11 +18454,11 @@ ] }, { - "pc": 982, - "op": "PUSH3", - "gas": 1608772, - "gasCost": 3, "depth": 1, + "gas": 1617830, + "gasCost": 3, + "op": "PUSH3", + "pc": 982, "stack": [ "0x3aa18088", "0x149", @@ -18470,11 +18470,11 @@ ] }, { - "pc": 986, - "op": "SWAP2", - "gas": 1608769, - "gasCost": 3, "depth": 1, + "gas": 1617827, + "gasCost": 3, + "op": "SWAP2", + "pc": 986, "stack": [ "0x3aa18088", "0x149", @@ -18487,11 +18487,11 @@ ] }, { - "pc": 987, - "op": "SWAP1", - "gas": 1608766, - "gasCost": 3, "depth": 1, + "gas": 1617824, + "gasCost": 3, + "op": "SWAP1", + "pc": 987, "stack": [ "0x3aa18088", "0x149", @@ -18504,11 +18504,11 @@ ] }, { - "pc": 988, - "op": "PUSH3", - "gas": 1608763, - "gasCost": 3, "depth": 1, + "gas": 1617821, + "gasCost": 3, + "op": "PUSH3", + "pc": 988, "stack": [ "0x3aa18088", "0x149", @@ -18521,11 +18521,11 @@ ] }, { - "pc": 992, - "op": "JUMP", - "gas": 1608760, - "gasCost": 8, "depth": 1, + "gas": 1617818, + "gasCost": 8, + "op": "JUMP", + "pc": 992, "stack": [ "0x3aa18088", "0x149", @@ -18539,11 +18539,11 @@ ] }, { - "pc": 2965, - "op": "JUMPDEST", - "gas": 1608752, - "gasCost": 1, "depth": 1, + "gas": 1617810, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2965, "stack": [ "0x3aa18088", "0x149", @@ -18556,11 +18556,11 @@ ] }, { - "pc": 2966, - "op": "PUSH1", - "gas": 1608751, - "gasCost": 3, "depth": 1, + "gas": 1617809, + "gasCost": 3, + "op": "PUSH1", + "pc": 2966, "stack": [ "0x3aa18088", "0x149", @@ -18573,11 +18573,11 @@ ] }, { - "pc": 2968, - "op": "PUSH3", - "gas": 1608748, - "gasCost": 3, "depth": 1, + "gas": 1617806, + "gasCost": 3, + "op": "PUSH3", + "pc": 2968, "stack": [ "0x3aa18088", "0x149", @@ -18591,11 +18591,11 @@ ] }, { - "pc": 2972, - "op": "DUP3", - "gas": 1608745, - "gasCost": 3, "depth": 1, + "gas": 1617803, + "gasCost": 3, + "op": "DUP3", + "pc": 2972, "stack": [ "0x3aa18088", "0x149", @@ -18610,11 +18610,11 @@ ] }, { - "pc": 2973, - "op": "PUSH3", - "gas": 1608742, - "gasCost": 3, "depth": 1, + "gas": 1617800, + "gasCost": 3, + "op": "PUSH3", + "pc": 2973, "stack": [ "0x3aa18088", "0x149", @@ -18630,11 +18630,11 @@ ] }, { - "pc": 2977, - "op": "JUMP", - "gas": 1608739, - "gasCost": 8, "depth": 1, + "gas": 1617797, + "gasCost": 8, + "op": "JUMP", + "pc": 2977, "stack": [ "0x3aa18088", "0x149", @@ -18651,11 +18651,11 @@ ] }, { - "pc": 2394, - "op": "JUMPDEST", - "gas": 1608731, - "gasCost": 1, "depth": 1, + "gas": 1617789, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2394, "stack": [ "0x3aa18088", "0x149", @@ -18671,11 +18671,11 @@ ] }, { - "pc": 2395, - "op": "PUSH1", - "gas": 1608730, - "gasCost": 3, "depth": 1, + "gas": 1617788, + "gasCost": 3, + "op": "PUSH1", + "pc": 2395, "stack": [ "0x3aa18088", "0x149", @@ -18691,11 +18691,11 @@ ] }, { - "pc": 2397, - "op": "DUP2", - "gas": 1608727, - "gasCost": 3, "depth": 1, + "gas": 1617785, + "gasCost": 3, + "op": "DUP2", + "pc": 2397, "stack": [ "0x3aa18088", "0x149", @@ -18712,11 +18712,11 @@ ] }, { - "pc": 2398, - "op": "SWAP1", - "gas": 1608724, - "gasCost": 3, "depth": 1, + "gas": 1617782, + "gasCost": 3, + "op": "SWAP1", + "pc": 2398, "stack": [ "0x3aa18088", "0x149", @@ -18734,11 +18734,11 @@ ] }, { - "pc": 2399, - "op": "POP", - "gas": 1608721, - "gasCost": 2, "depth": 1, + "gas": 1617779, + "gasCost": 2, + "op": "POP", + "pc": 2399, "stack": [ "0x3aa18088", "0x149", @@ -18756,11 +18756,11 @@ ] }, { - "pc": 2400, - "op": "SWAP2", - "gas": 1608719, - "gasCost": 3, "depth": 1, + "gas": 1617777, + "gasCost": 3, + "op": "SWAP2", + "pc": 2400, "stack": [ "0x3aa18088", "0x149", @@ -18777,11 +18777,11 @@ ] }, { - "pc": 2401, - "op": "SWAP1", - "gas": 1608716, - "gasCost": 3, "depth": 1, + "gas": 1617774, + "gasCost": 3, + "op": "SWAP1", + "pc": 2401, "stack": [ "0x3aa18088", "0x149", @@ -18798,11 +18798,11 @@ ] }, { - "pc": 2402, - "op": "POP", - "gas": 1608713, - "gasCost": 2, "depth": 1, + "gas": 1617771, + "gasCost": 2, + "op": "POP", + "pc": 2402, "stack": [ "0x3aa18088", "0x149", @@ -18819,11 +18819,11 @@ ] }, { - "pc": 2403, - "op": "JUMP", - "gas": 1608711, - "gasCost": 8, "depth": 1, + "gas": 1617769, + "gasCost": 8, + "op": "JUMP", + "pc": 2403, "stack": [ "0x3aa18088", "0x149", @@ -18839,11 +18839,11 @@ ] }, { - "pc": 2978, - "op": "JUMPDEST", - "gas": 1608703, - "gasCost": 1, "depth": 1, + "gas": 1617761, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2978, "stack": [ "0x3aa18088", "0x149", @@ -18858,11 +18858,11 @@ ] }, { - "pc": 2979, - "op": "SWAP2", - "gas": 1608702, - "gasCost": 3, "depth": 1, + "gas": 1617760, + "gasCost": 3, + "op": "SWAP2", + "pc": 2979, "stack": [ "0x3aa18088", "0x149", @@ -18877,11 +18877,11 @@ ] }, { - "pc": 2980, - "op": "POP", - "gas": 1608699, - "gasCost": 2, "depth": 1, + "gas": 1617757, + "gasCost": 2, + "op": "POP", + "pc": 2980, "stack": [ "0x3aa18088", "0x149", @@ -18896,11 +18896,11 @@ ] }, { - "pc": 2981, - "op": "PUSH3", - "gas": 1608697, - "gasCost": 3, "depth": 1, + "gas": 1617755, + "gasCost": 3, + "op": "PUSH3", + "pc": 2981, "stack": [ "0x3aa18088", "0x149", @@ -18914,11 +18914,11 @@ ] }, { - "pc": 2985, - "op": "DUP4", - "gas": 1608694, - "gasCost": 3, "depth": 1, + "gas": 1617752, + "gasCost": 3, + "op": "DUP4", + "pc": 2985, "stack": [ "0x3aa18088", "0x149", @@ -18933,11 +18933,11 @@ ] }, { - "pc": 2986, - "op": "PUSH3", - "gas": 1608691, - "gasCost": 3, "depth": 1, + "gas": 1617749, + "gasCost": 3, + "op": "PUSH3", + "pc": 2986, "stack": [ "0x3aa18088", "0x149", @@ -18953,11 +18953,11 @@ ] }, { - "pc": 2990, - "op": "JUMP", - "gas": 1608688, - "gasCost": 8, "depth": 1, + "gas": 1617746, + "gasCost": 8, + "op": "JUMP", + "pc": 2990, "stack": [ "0x3aa18088", "0x149", @@ -18974,11 +18974,11 @@ ] }, { - "pc": 2394, - "op": "JUMPDEST", - "gas": 1608680, - "gasCost": 1, "depth": 1, + "gas": 1617738, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2394, "stack": [ "0x3aa18088", "0x149", @@ -18994,11 +18994,11 @@ ] }, { - "pc": 2395, - "op": "PUSH1", - "gas": 1608679, - "gasCost": 3, "depth": 1, + "gas": 1617737, + "gasCost": 3, + "op": "PUSH1", + "pc": 2395, "stack": [ "0x3aa18088", "0x149", @@ -19014,11 +19014,11 @@ ] }, { - "pc": 2397, - "op": "DUP2", - "gas": 1608676, - "gasCost": 3, "depth": 1, + "gas": 1617734, + "gasCost": 3, + "op": "DUP2", + "pc": 2397, "stack": [ "0x3aa18088", "0x149", @@ -19035,11 +19035,11 @@ ] }, { - "pc": 2398, - "op": "SWAP1", - "gas": 1608673, - "gasCost": 3, "depth": 1, + "gas": 1617731, + "gasCost": 3, + "op": "SWAP1", + "pc": 2398, "stack": [ "0x3aa18088", "0x149", @@ -19057,11 +19057,11 @@ ] }, { - "pc": 2399, - "op": "POP", - "gas": 1608670, - "gasCost": 2, "depth": 1, + "gas": 1617728, + "gasCost": 2, + "op": "POP", + "pc": 2399, "stack": [ "0x3aa18088", "0x149", @@ -19079,11 +19079,11 @@ ] }, { - "pc": 2400, - "op": "SWAP2", - "gas": 1608668, - "gasCost": 3, "depth": 1, + "gas": 1617726, + "gasCost": 3, + "op": "SWAP2", + "pc": 2400, "stack": [ "0x3aa18088", "0x149", @@ -19100,11 +19100,11 @@ ] }, { - "pc": 2401, - "op": "SWAP1", - "gas": 1608665, - "gasCost": 3, "depth": 1, + "gas": 1617723, + "gasCost": 3, + "op": "SWAP1", + "pc": 2401, "stack": [ "0x3aa18088", "0x149", @@ -19121,11 +19121,11 @@ ] }, { - "pc": 2402, - "op": "POP", - "gas": 1608662, - "gasCost": 2, "depth": 1, + "gas": 1617720, + "gasCost": 2, + "op": "POP", + "pc": 2402, "stack": [ "0x3aa18088", "0x149", @@ -19142,11 +19142,11 @@ ] }, { - "pc": 2403, - "op": "JUMP", - "gas": 1608660, - "gasCost": 8, "depth": 1, + "gas": 1617718, + "gasCost": 8, + "op": "JUMP", + "pc": 2403, "stack": [ "0x3aa18088", "0x149", @@ -19162,11 +19162,11 @@ ] }, { - "pc": 2991, - "op": "JUMPDEST", - "gas": 1608652, - "gasCost": 1, "depth": 1, + "gas": 1617710, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2991, "stack": [ "0x3aa18088", "0x149", @@ -19181,11 +19181,11 @@ ] }, { - "pc": 2992, - "op": "SWAP3", - "gas": 1608651, - "gasCost": 3, "depth": 1, + "gas": 1617709, + "gasCost": 3, + "op": "SWAP3", + "pc": 2992, "stack": [ "0x3aa18088", "0x149", @@ -19200,11 +19200,11 @@ ] }, { - "pc": 2993, - "op": "POP", - "gas": 1608648, - "gasCost": 2, "depth": 1, + "gas": 1617706, + "gasCost": 2, + "op": "POP", + "pc": 2993, "stack": [ "0x3aa18088", "0x149", @@ -19219,11 +19219,11 @@ ] }, { - "pc": 2994, - "op": "DUP3", - "gas": 1608646, - "gasCost": 3, "depth": 1, + "gas": 1617704, + "gasCost": 3, + "op": "DUP3", + "pc": 2994, "stack": [ "0x3aa18088", "0x149", @@ -19237,11 +19237,11 @@ ] }, { - "pc": 2995, - "op": "DUP3", - "gas": 1608643, - "gasCost": 3, "depth": 1, + "gas": 1617701, + "gasCost": 3, + "op": "DUP3", + "pc": 2995, "stack": [ "0x3aa18088", "0x149", @@ -19256,11 +19256,11 @@ ] }, { - "pc": 2996, - "op": "ADD", - "gas": 1608640, - "gasCost": 3, "depth": 1, + "gas": 1617698, + "gasCost": 3, + "op": "ADD", + "pc": 2996, "stack": [ "0x3aa18088", "0x149", @@ -19276,11 +19276,11 @@ ] }, { - "pc": 2997, - "op": "SWAP1", - "gas": 1608637, - "gasCost": 3, "depth": 1, + "gas": 1617695, + "gasCost": 3, + "op": "SWAP1", + "pc": 2997, "stack": [ "0x3aa18088", "0x149", @@ -19295,11 +19295,11 @@ ] }, { - "pc": 2998, - "op": "POP", - "gas": 1608634, - "gasCost": 2, "depth": 1, + "gas": 1617692, + "gasCost": 2, + "op": "POP", + "pc": 2998, "stack": [ "0x3aa18088", "0x149", @@ -19314,11 +19314,11 @@ ] }, { - "pc": 2999, - "op": "DUP1", - "gas": 1608632, - "gasCost": 3, "depth": 1, + "gas": 1617690, + "gasCost": 3, + "op": "DUP1", + "pc": 2999, "stack": [ "0x3aa18088", "0x149", @@ -19332,11 +19332,11 @@ ] }, { - "pc": 3000, - "op": "DUP3", - "gas": 1608629, - "gasCost": 3, "depth": 1, + "gas": 1617687, + "gasCost": 3, + "op": "DUP3", + "pc": 3000, "stack": [ "0x3aa18088", "0x149", @@ -19351,11 +19351,11 @@ ] }, { - "pc": 3001, - "op": "GT", - "gas": 1608626, - "gasCost": 3, "depth": 1, + "gas": 1617684, + "gasCost": 3, + "op": "GT", + "pc": 3001, "stack": [ "0x3aa18088", "0x149", @@ -19371,11 +19371,11 @@ ] }, { - "pc": 3002, - "op": "ISZERO", - "gas": 1608623, - "gasCost": 3, "depth": 1, + "gas": 1617681, + "gasCost": 3, + "op": "ISZERO", + "pc": 3002, "stack": [ "0x3aa18088", "0x149", @@ -19390,11 +19390,11 @@ ] }, { - "pc": 3003, - "op": "PUSH3", - "gas": 1608620, - "gasCost": 3, "depth": 1, + "gas": 1617678, + "gasCost": 3, + "op": "PUSH3", + "pc": 3003, "stack": [ "0x3aa18088", "0x149", @@ -19409,11 +19409,11 @@ ] }, { - "pc": 3007, - "op": "JUMPI", - "gas": 1608617, - "gasCost": 10, "depth": 1, + "gas": 1617675, + "gasCost": 10, + "op": "JUMPI", + "pc": 3007, "stack": [ "0x3aa18088", "0x149", @@ -19429,11 +19429,11 @@ ] }, { - "pc": 3018, - "op": "JUMPDEST", - "gas": 1608607, - "gasCost": 1, "depth": 1, + "gas": 1617665, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 3018, "stack": [ "0x3aa18088", "0x149", @@ -19447,11 +19447,11 @@ ] }, { - "pc": 3019, - "op": "SWAP3", - "gas": 1608606, - "gasCost": 3, "depth": 1, + "gas": 1617664, + "gasCost": 3, + "op": "SWAP3", + "pc": 3019, "stack": [ "0x3aa18088", "0x149", @@ -19465,11 +19465,11 @@ ] }, { - "pc": 3020, - "op": "SWAP2", - "gas": 1608603, - "gasCost": 3, "depth": 1, + "gas": 1617661, + "gasCost": 3, + "op": "SWAP2", + "pc": 3020, "stack": [ "0x3aa18088", "0x149", @@ -19483,11 +19483,11 @@ ] }, { - "pc": 3021, - "op": "POP", - "gas": 1608600, - "gasCost": 2, "depth": 1, + "gas": 1617658, + "gasCost": 2, + "op": "POP", + "pc": 3021, "stack": [ "0x3aa18088", "0x149", @@ -19501,11 +19501,11 @@ ] }, { - "pc": 3022, - "op": "POP", - "gas": 1608598, - "gasCost": 2, "depth": 1, + "gas": 1617656, + "gasCost": 2, + "op": "POP", + "pc": 3022, "stack": [ "0x3aa18088", "0x149", @@ -19518,11 +19518,11 @@ ] }, { - "pc": 3023, - "op": "JUMP", - "gas": 1608596, - "gasCost": 8, "depth": 1, + "gas": 1617654, + "gasCost": 8, + "op": "JUMP", + "pc": 3023, "stack": [ "0x3aa18088", "0x149", @@ -19534,11 +19534,11 @@ ] }, { - "pc": 993, - "op": "JUMPDEST", - "gas": 1608588, - "gasCost": 1, "depth": 1, + "gas": 1617646, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 993, "stack": [ "0x3aa18088", "0x149", @@ -19549,11 +19549,11 @@ ] }, { - "pc": 994, - "op": "PUSH3", - "gas": 1608587, - "gasCost": 3, "depth": 1, + "gas": 1617645, + "gasCost": 3, + "op": "PUSH3", + "pc": 994, "stack": [ "0x3aa18088", "0x149", @@ -19564,11 +19564,11 @@ ] }, { - "pc": 998, - "op": "JUMP", - "gas": 1608584, - "gasCost": 8, "depth": 1, + "gas": 1617642, + "gasCost": 8, + "op": "JUMP", + "pc": 998, "stack": [ "0x3aa18088", "0x149", @@ -19580,11 +19580,11 @@ ] }, { - "pc": 640, - "op": "JUMPDEST", - "gas": 1608576, - "gasCost": 1, "depth": 1, + "gas": 1617634, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 640, "stack": [ "0x3aa18088", "0x149", @@ -19595,11 +19595,11 @@ ] }, { - "pc": 641, - "op": "PUSH1", - "gas": 1608575, - "gasCost": 3, "depth": 1, + "gas": 1617633, + "gasCost": 3, + "op": "PUSH1", + "pc": 641, "stack": [ "0x3aa18088", "0x149", @@ -19610,11 +19610,11 @@ ] }, { - "pc": 643, - "op": "CALLER", - "gas": 1608572, - "gasCost": 2, "depth": 1, + "gas": 1617630, + "gasCost": 2, + "op": "CALLER", + "pc": 643, "stack": [ "0x3aa18088", "0x149", @@ -19626,11 +19626,11 @@ ] }, { - "pc": 644, - "op": "PUSH20", - "gas": 1608570, - "gasCost": 3, "depth": 1, + "gas": 1617628, + "gasCost": 3, + "op": "PUSH20", + "pc": 644, "stack": [ "0x3aa18088", "0x149", @@ -19643,11 +19643,11 @@ ] }, { - "pc": 665, - "op": "AND", - "gas": 1608567, - "gasCost": 3, "depth": 1, + "gas": 1617625, + "gasCost": 3, + "op": "AND", + "pc": 665, "stack": [ "0x3aa18088", "0x149", @@ -19661,11 +19661,11 @@ ] }, { - "pc": 666, - "op": "PUSH32", - "gas": 1608564, - "gasCost": 3, "depth": 1, + "gas": 1617622, + "gasCost": 3, + "op": "PUSH32", + "pc": 666, "stack": [ "0x3aa18088", "0x149", @@ -19678,11 +19678,11 @@ ] }, { - "pc": 699, - "op": "DUP4", - "gas": 1608561, - "gasCost": 3, "depth": 1, + "gas": 1617619, + "gasCost": 3, + "op": "DUP4", + "pc": 699, "stack": [ "0x3aa18088", "0x149", @@ -19696,11 +19696,11 @@ ] }, { - "pc": 700, - "op": "PUSH1", - "gas": 1608558, - "gasCost": 3, "depth": 1, + "gas": 1617616, + "gasCost": 3, + "op": "PUSH1", + "pc": 700, "stack": [ "0x3aa18088", "0x149", @@ -19715,11 +19715,11 @@ ] }, { - "pc": 702, - "op": "MLOAD", - "gas": 1608555, - "gasCost": 3, "depth": 1, + "gas": 1617613, + "gasCost": 3, + "op": "MLOAD", + "pc": 702, "stack": [ "0x3aa18088", "0x149", @@ -19735,11 +19735,11 @@ ] }, { - "pc": 703, - "op": "PUSH3", - "gas": 1608552, - "gasCost": 3, "depth": 1, + "gas": 1617610, + "gasCost": 3, + "op": "PUSH3", + "pc": 703, "stack": [ "0x3aa18088", "0x149", @@ -19755,11 +19755,11 @@ ] }, { - "pc": 707, - "op": "SWAP2", - "gas": 1608549, - "gasCost": 3, "depth": 1, + "gas": 1617607, + "gasCost": 3, + "op": "SWAP2", + "pc": 707, "stack": [ "0x3aa18088", "0x149", @@ -19776,11 +19776,11 @@ ] }, { - "pc": 708, - "op": "SWAP1", - "gas": 1608546, - "gasCost": 3, "depth": 1, + "gas": 1617604, + "gasCost": 3, + "op": "SWAP1", + "pc": 708, "stack": [ "0x3aa18088", "0x149", @@ -19797,11 +19797,11 @@ ] }, { - "pc": 709, - "op": "PUSH3", - "gas": 1608543, - "gasCost": 3, "depth": 1, + "gas": 1617601, + "gasCost": 3, + "op": "PUSH3", + "pc": 709, "stack": [ "0x3aa18088", "0x149", @@ -19818,11 +19818,11 @@ ] }, { - "pc": 713, - "op": "JUMP", - "gas": 1608540, - "gasCost": 8, "depth": 1, + "gas": 1617598, + "gasCost": 8, + "op": "JUMP", + "pc": 713, "stack": [ "0x3aa18088", "0x149", @@ -19840,11 +19840,11 @@ ] }, { - "pc": 2868, - "op": "JUMPDEST", - "gas": 1608532, - "gasCost": 1, "depth": 1, + "gas": 1617590, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2868, "stack": [ "0x3aa18088", "0x149", @@ -19861,11 +19861,11 @@ ] }, { - "pc": 2869, - "op": "PUSH1", - "gas": 1608531, - "gasCost": 3, "depth": 1, + "gas": 1617589, + "gasCost": 3, + "op": "PUSH1", + "pc": 2869, "stack": [ "0x3aa18088", "0x149", @@ -19882,11 +19882,11 @@ ] }, { - "pc": 2871, - "op": "PUSH1", - "gas": 1608528, - "gasCost": 3, "depth": 1, + "gas": 1617586, + "gasCost": 3, + "op": "PUSH1", + "pc": 2871, "stack": [ "0x3aa18088", "0x149", @@ -19904,11 +19904,11 @@ ] }, { - "pc": 2873, - "op": "DUP3", - "gas": 1608525, - "gasCost": 3, "depth": 1, + "gas": 1617583, + "gasCost": 3, + "op": "DUP3", + "pc": 2873, "stack": [ "0x3aa18088", "0x149", @@ -19927,11 +19927,11 @@ ] }, { - "pc": 2874, - "op": "ADD", - "gas": 1608522, - "gasCost": 3, "depth": 1, + "gas": 1617580, + "gasCost": 3, + "op": "ADD", + "pc": 2874, "stack": [ "0x3aa18088", "0x149", @@ -19951,11 +19951,11 @@ ] }, { - "pc": 2875, - "op": "SWAP1", - "gas": 1608519, - "gasCost": 3, "depth": 1, + "gas": 1617577, + "gasCost": 3, + "op": "SWAP1", + "pc": 2875, "stack": [ "0x3aa18088", "0x149", @@ -19974,11 +19974,11 @@ ] }, { - "pc": 2876, - "op": "POP", - "gas": 1608516, - "gasCost": 2, "depth": 1, + "gas": 1617574, + "gasCost": 2, + "op": "POP", + "pc": 2876, "stack": [ "0x3aa18088", "0x149", @@ -19997,11 +19997,11 @@ ] }, { - "pc": 2877, - "op": "PUSH3", - "gas": 1608514, - "gasCost": 3, "depth": 1, + "gas": 1617572, + "gasCost": 3, + "op": "PUSH3", + "pc": 2877, "stack": [ "0x3aa18088", "0x149", @@ -20019,11 +20019,11 @@ ] }, { - "pc": 2881, - "op": "PUSH1", - "gas": 1608511, - "gasCost": 3, "depth": 1, + "gas": 1617569, + "gasCost": 3, + "op": "PUSH1", + "pc": 2881, "stack": [ "0x3aa18088", "0x149", @@ -20042,11 +20042,11 @@ ] }, { - "pc": 2883, - "op": "DUP4", - "gas": 1608508, - "gasCost": 3, "depth": 1, + "gas": 1617566, + "gasCost": 3, + "op": "DUP4", + "pc": 2883, "stack": [ "0x3aa18088", "0x149", @@ -20066,11 +20066,11 @@ ] }, { - "pc": 2884, - "op": "ADD", - "gas": 1608505, - "gasCost": 3, "depth": 1, + "gas": 1617563, + "gasCost": 3, + "op": "ADD", + "pc": 2884, "stack": [ "0x3aa18088", "0x149", @@ -20091,11 +20091,11 @@ ] }, { - "pc": 2885, - "op": "DUP5", - "gas": 1608502, - "gasCost": 3, "depth": 1, + "gas": 1617560, + "gasCost": 3, + "op": "DUP5", + "pc": 2885, "stack": [ "0x3aa18088", "0x149", @@ -20115,11 +20115,11 @@ ] }, { - "pc": 2886, - "op": "PUSH3", - "gas": 1608499, - "gasCost": 3, "depth": 1, + "gas": 1617557, + "gasCost": 3, + "op": "PUSH3", + "pc": 2886, "stack": [ "0x3aa18088", "0x149", @@ -20140,11 +20140,11 @@ ] }, { - "pc": 2890, - "op": "JUMP", - "gas": 1608496, - "gasCost": 8, "depth": 1, + "gas": 1617554, + "gasCost": 8, + "op": "JUMP", + "pc": 2890, "stack": [ "0x3aa18088", "0x149", @@ -20166,11 +20166,11 @@ ] }, { - "pc": 2404, - "op": "JUMPDEST", - "gas": 1608488, - "gasCost": 1, "depth": 1, + "gas": 1617546, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2404, "stack": [ "0x3aa18088", "0x149", @@ -20191,11 +20191,11 @@ ] }, { - "pc": 2405, - "op": "PUSH3", - "gas": 1608487, - "gasCost": 3, "depth": 1, + "gas": 1617545, + "gasCost": 3, + "op": "PUSH3", + "pc": 2405, "stack": [ "0x3aa18088", "0x149", @@ -20216,11 +20216,11 @@ ] }, { - "pc": 2409, - "op": "DUP2", - "gas": 1608484, - "gasCost": 3, "depth": 1, + "gas": 1617542, + "gasCost": 3, + "op": "DUP2", + "pc": 2409, "stack": [ "0x3aa18088", "0x149", @@ -20242,11 +20242,11 @@ ] }, { - "pc": 2410, - "op": "PUSH3", - "gas": 1608481, - "gasCost": 3, "depth": 1, + "gas": 1617539, + "gasCost": 3, + "op": "PUSH3", + "pc": 2410, "stack": [ "0x3aa18088", "0x149", @@ -20269,11 +20269,11 @@ ] }, { - "pc": 2414, - "op": "JUMP", - "gas": 1608478, - "gasCost": 8, "depth": 1, + "gas": 1617536, + "gasCost": 8, + "op": "JUMP", + "pc": 2414, "stack": [ "0x3aa18088", "0x149", @@ -20297,11 +20297,11 @@ ] }, { - "pc": 2394, - "op": "JUMPDEST", - "gas": 1608470, - "gasCost": 1, "depth": 1, + "gas": 1617528, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2394, "stack": [ "0x3aa18088", "0x149", @@ -20324,11 +20324,11 @@ ] }, { - "pc": 2395, - "op": "PUSH1", - "gas": 1608469, - "gasCost": 3, "depth": 1, + "gas": 1617527, + "gasCost": 3, + "op": "PUSH1", + "pc": 2395, "stack": [ "0x3aa18088", "0x149", @@ -20351,11 +20351,11 @@ ] }, { - "pc": 2397, - "op": "DUP2", - "gas": 1608466, - "gasCost": 3, "depth": 1, + "gas": 1617524, + "gasCost": 3, + "op": "DUP2", + "pc": 2397, "stack": [ "0x3aa18088", "0x149", @@ -20379,11 +20379,11 @@ ] }, { - "pc": 2398, - "op": "SWAP1", - "gas": 1608463, - "gasCost": 3, "depth": 1, + "gas": 1617521, + "gasCost": 3, + "op": "SWAP1", + "pc": 2398, "stack": [ "0x3aa18088", "0x149", @@ -20408,11 +20408,11 @@ ] }, { - "pc": 2399, - "op": "POP", - "gas": 1608460, - "gasCost": 2, "depth": 1, + "gas": 1617518, + "gasCost": 2, + "op": "POP", + "pc": 2399, "stack": [ "0x3aa18088", "0x149", @@ -20437,11 +20437,11 @@ ] }, { - "pc": 2400, - "op": "SWAP2", - "gas": 1608458, - "gasCost": 3, "depth": 1, + "gas": 1617516, + "gasCost": 3, + "op": "SWAP2", + "pc": 2400, "stack": [ "0x3aa18088", "0x149", @@ -20465,11 +20465,11 @@ ] }, { - "pc": 2401, - "op": "SWAP1", - "gas": 1608455, - "gasCost": 3, "depth": 1, + "gas": 1617513, + "gasCost": 3, + "op": "SWAP1", + "pc": 2401, "stack": [ "0x3aa18088", "0x149", @@ -20493,11 +20493,11 @@ ] }, { - "pc": 2402, - "op": "POP", - "gas": 1608452, - "gasCost": 2, "depth": 1, + "gas": 1617510, + "gasCost": 2, + "op": "POP", + "pc": 2402, "stack": [ "0x3aa18088", "0x149", @@ -20521,11 +20521,11 @@ ] }, { - "pc": 2403, - "op": "JUMP", - "gas": 1608450, - "gasCost": 8, "depth": 1, + "gas": 1617508, + "gasCost": 8, + "op": "JUMP", + "pc": 2403, "stack": [ "0x3aa18088", "0x149", @@ -20548,11 +20548,11 @@ ] }, { - "pc": 2415, - "op": "JUMPDEST", - "gas": 1608442, - "gasCost": 1, "depth": 1, + "gas": 1617500, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2415, "stack": [ "0x3aa18088", "0x149", @@ -20574,11 +20574,11 @@ ] }, { - "pc": 2416, - "op": "DUP3", - "gas": 1608441, - "gasCost": 3, "depth": 1, + "gas": 1617499, + "gasCost": 3, + "op": "DUP3", + "pc": 2416, "stack": [ "0x3aa18088", "0x149", @@ -20600,11 +20600,11 @@ ] }, { - "pc": 2417, - "op": "MSTORE", - "gas": 1608438, - "gasCost": 3, "depth": 1, + "gas": 1617496, + "gasCost": 3, + "op": "MSTORE", + "pc": 2417, "stack": [ "0x3aa18088", "0x149", @@ -20627,11 +20627,11 @@ ] }, { - "pc": 2418, - "op": "POP", - "gas": 1608435, - "gasCost": 2, "depth": 1, + "gas": 1617493, + "gasCost": 2, + "op": "POP", + "pc": 2418, "stack": [ "0x3aa18088", "0x149", @@ -20652,11 +20652,11 @@ ] }, { - "pc": 2419, - "op": "POP", - "gas": 1608433, - "gasCost": 2, "depth": 1, + "gas": 1617491, + "gasCost": 2, + "op": "POP", + "pc": 2419, "stack": [ "0x3aa18088", "0x149", @@ -20676,11 +20676,11 @@ ] }, { - "pc": 2420, - "op": "JUMP", - "gas": 1608431, - "gasCost": 8, "depth": 1, + "gas": 1617489, + "gasCost": 8, + "op": "JUMP", + "pc": 2420, "stack": [ "0x3aa18088", "0x149", @@ -20699,11 +20699,11 @@ ] }, { - "pc": 2891, - "op": "JUMPDEST", - "gas": 1608423, - "gasCost": 1, "depth": 1, + "gas": 1617481, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2891, "stack": [ "0x3aa18088", "0x149", @@ -20721,11 +20721,11 @@ ] }, { - "pc": 2892, - "op": "DUP2", - "gas": 1608422, - "gasCost": 3, "depth": 1, + "gas": 1617480, + "gasCost": 3, + "op": "DUP2", + "pc": 2892, "stack": [ "0x3aa18088", "0x149", @@ -20743,11 +20743,11 @@ ] }, { - "pc": 2893, - "op": "DUP2", - "gas": 1608419, - "gasCost": 3, "depth": 1, + "gas": 1617477, + "gasCost": 3, + "op": "DUP2", + "pc": 2893, "stack": [ "0x3aa18088", "0x149", @@ -20766,11 +20766,11 @@ ] }, { - "pc": 2894, - "op": "SUB", - "gas": 1608416, - "gasCost": 3, "depth": 1, + "gas": 1617474, + "gasCost": 3, + "op": "SUB", + "pc": 2894, "stack": [ "0x3aa18088", "0x149", @@ -20790,11 +20790,11 @@ ] }, { - "pc": 2895, - "op": "PUSH1", - "gas": 1608413, - "gasCost": 3, "depth": 1, + "gas": 1617471, + "gasCost": 3, + "op": "PUSH1", + "pc": 2895, "stack": [ "0x3aa18088", "0x149", @@ -20813,11 +20813,11 @@ ] }, { - "pc": 2897, - "op": "DUP4", - "gas": 1608410, - "gasCost": 3, "depth": 1, + "gas": 1617468, + "gasCost": 3, + "op": "DUP4", + "pc": 2897, "stack": [ "0x3aa18088", "0x149", @@ -20837,11 +20837,11 @@ ] }, { - "pc": 2898, - "op": "ADD", - "gas": 1608407, - "gasCost": 3, "depth": 1, + "gas": 1617465, + "gasCost": 3, + "op": "ADD", + "pc": 2898, "stack": [ "0x3aa18088", "0x149", @@ -20862,11 +20862,11 @@ ] }, { - "pc": 2899, - "op": "MSTORE", - "gas": 1608404, - "gasCost": 3, "depth": 1, + "gas": 1617462, + "gasCost": 3, + "op": "MSTORE", + "pc": 2899, "stack": [ "0x3aa18088", "0x149", @@ -20886,11 +20886,11 @@ ] }, { - "pc": 2900, - "op": "PUSH3", - "gas": 1608401, - "gasCost": 3, "depth": 1, + "gas": 1617459, + "gasCost": 3, + "op": "PUSH3", + "pc": 2900, "stack": [ "0x3aa18088", "0x149", @@ -20908,11 +20908,11 @@ ] }, { - "pc": 2904, - "op": "DUP2", - "gas": 1608398, - "gasCost": 3, "depth": 1, + "gas": 1617456, + "gasCost": 3, + "op": "DUP2", + "pc": 2904, "stack": [ "0x3aa18088", "0x149", @@ -20931,11 +20931,11 @@ ] }, { - "pc": 2905, - "op": "PUSH3", - "gas": 1608395, - "gasCost": 3, "depth": 1, + "gas": 1617453, + "gasCost": 3, + "op": "PUSH3", + "pc": 2905, "stack": [ "0x3aa18088", "0x149", @@ -20955,11 +20955,11 @@ ] }, { - "pc": 2909, - "op": "JUMP", - "gas": 1608392, - "gasCost": 8, "depth": 1, + "gas": 1617450, + "gasCost": 8, + "op": "JUMP", + "pc": 2909, "stack": [ "0x3aa18088", "0x149", @@ -20980,11 +20980,11 @@ ] }, { - "pc": 2829, - "op": "JUMPDEST", - "gas": 1608384, - "gasCost": 1, "depth": 1, + "gas": 1617442, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2829, "stack": [ "0x3aa18088", "0x149", @@ -21004,11 +21004,11 @@ ] }, { - "pc": 2830, - "op": "PUSH1", - "gas": 1608383, - "gasCost": 3, "depth": 1, + "gas": 1617441, + "gasCost": 3, + "op": "PUSH1", + "pc": 2830, "stack": [ "0x3aa18088", "0x149", @@ -21028,11 +21028,11 @@ ] }, { - "pc": 2832, - "op": "PUSH3", - "gas": 1608380, - "gasCost": 3, "depth": 1, + "gas": 1617438, + "gasCost": 3, + "op": "PUSH3", + "pc": 2832, "stack": [ "0x3aa18088", "0x149", @@ -21053,11 +21053,11 @@ ] }, { - "pc": 2836, - "op": "PUSH1", - "gas": 1608377, - "gasCost": 3, "depth": 1, + "gas": 1617435, + "gasCost": 3, + "op": "PUSH1", + "pc": 2836, "stack": [ "0x3aa18088", "0x149", @@ -21079,66 +21079,11 @@ ] }, { - "pc": 2838, - "op": "DUP4", - "gas": 1608374, - "gasCost": 3, "depth": 1, - "stack": [ - "0x3aa18088", - "0x149", - "0x3e8", - "0x0", - "0x3e7", - "0x3e9", - "0x0", - "OWNER.address", - "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x2ca", - "0x3e9", - "0x80", - "0xc0", - "0xb5e", - "0xc0", - "0x0", - "0xb1c", - "0xe" - ] - }, - { - "pc": 2839, - "op": "PUSH3", - "gas": 1608371, + "gas": 1617432, "gasCost": 3, - "depth": 1, - "stack": [ - "0x3aa18088", - "0x149", - "0x3e8", - "0x0", - "0x3e7", - "0x3e9", - "0x0", - "OWNER.address", - "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x2ca", - "0x3e9", - "0x80", - "0xc0", - "0xb5e", - "0xc0", - "0x0", - "0xb1c", - "0xe", - "0xc0" - ] - }, - { - "pc": 2843, - "op": "JUMP", - "gas": 1608368, - "gasCost": 8, - "depth": 1, + "op": "DUP4", + "pc": 2838, "stack": [ "0x3aa18088", "0x149", @@ -21157,17 +21102,15 @@ "0xc0", "0x0", "0xb1c", - "0xe", - "0xc0", - "0xad3" + "0xe" ] }, { - "pc": 2771, - "op": "JUMPDEST", - "gas": 1608360, - "gasCost": 1, "depth": 1, + "gas": 1617429, + "gasCost": 3, + "op": "PUSH3", + "pc": 2839, "stack": [ "0x3aa18088", "0x149", @@ -21191,11 +21134,40 @@ ] }, { - "pc": 2772, - "op": "PUSH1", - "gas": 1608359, - "gasCost": 3, "depth": 1, + "gas": 1617426, + "gasCost": 8, + "op": "JUMP", + "pc": 2843, + "stack": [ + "0x3aa18088", + "0x149", + "0x3e8", + "0x0", + "0x3e7", + "0x3e9", + "0x0", + "OWNER.address", + "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", + "0x2ca", + "0x3e9", + "0x80", + "0xc0", + "0xb5e", + "0xc0", + "0x0", + "0xb1c", + "0xe", + "0xc0", + "0xad3" + ] + }, + { + "depth": 1, + "gas": 1617418, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2771, "stack": [ "0x3aa18088", "0x149", @@ -21219,11 +21191,39 @@ ] }, { - "pc": 2774, - "op": "DUP3", - "gas": 1608356, + "depth": 1, + "gas": 1617417, "gasCost": 3, + "op": "PUSH1", + "pc": 2772, + "stack": [ + "0x3aa18088", + "0x149", + "0x3e8", + "0x0", + "0x3e7", + "0x3e9", + "0x0", + "OWNER.address", + "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", + "0x2ca", + "0x3e9", + "0x80", + "0xc0", + "0xb5e", + "0xc0", + "0x0", + "0xb1c", + "0xe", + "0xc0" + ] + }, + { "depth": 1, + "gas": 1617414, + "gasCost": 3, + "op": "DUP3", + "pc": 2774, "stack": [ "0x3aa18088", "0x149", @@ -21248,11 +21248,11 @@ ] }, { - "pc": 2775, - "op": "DUP3", - "gas": 1608353, - "gasCost": 3, "depth": 1, + "gas": 1617411, + "gasCost": 3, + "op": "DUP3", + "pc": 2775, "stack": [ "0x3aa18088", "0x149", @@ -21278,11 +21278,11 @@ ] }, { - "pc": 2776, - "op": "MSTORE", - "gas": 1608350, - "gasCost": 3, "depth": 1, + "gas": 1617408, + "gasCost": 3, + "op": "MSTORE", + "pc": 2776, "stack": [ "0x3aa18088", "0x149", @@ -21309,11 +21309,11 @@ ] }, { - "pc": 2777, - "op": "PUSH1", - "gas": 1608347, - "gasCost": 3, "depth": 1, + "gas": 1617405, + "gasCost": 3, + "op": "PUSH1", + "pc": 2777, "stack": [ "0x3aa18088", "0x149", @@ -21338,11 +21338,11 @@ ] }, { - "pc": 2779, - "op": "DUP3", - "gas": 1608344, - "gasCost": 3, "depth": 1, + "gas": 1617402, + "gasCost": 3, + "op": "DUP3", + "pc": 2779, "stack": [ "0x3aa18088", "0x149", @@ -21368,11 +21368,11 @@ ] }, { - "pc": 2780, - "op": "ADD", - "gas": 1608341, - "gasCost": 3, "depth": 1, + "gas": 1617399, + "gasCost": 3, + "op": "ADD", + "pc": 2780, "stack": [ "0x3aa18088", "0x149", @@ -21399,11 +21399,11 @@ ] }, { - "pc": 2781, - "op": "SWAP1", - "gas": 1608338, - "gasCost": 3, "depth": 1, + "gas": 1617396, + "gasCost": 3, + "op": "SWAP1", + "pc": 2781, "stack": [ "0x3aa18088", "0x149", @@ -21429,11 +21429,11 @@ ] }, { - "pc": 2782, - "op": "POP", - "gas": 1608335, - "gasCost": 2, "depth": 1, + "gas": 1617393, + "gasCost": 2, + "op": "POP", + "pc": 2782, "stack": [ "0x3aa18088", "0x149", @@ -21459,11 +21459,11 @@ ] }, { - "pc": 2783, - "op": "SWAP3", - "gas": 1608333, - "gasCost": 3, "depth": 1, + "gas": 1617391, + "gasCost": 3, + "op": "SWAP3", + "pc": 2783, "stack": [ "0x3aa18088", "0x149", @@ -21488,11 +21488,11 @@ ] }, { - "pc": 2784, - "op": "SWAP2", - "gas": 1608330, - "gasCost": 3, "depth": 1, + "gas": 1617388, + "gasCost": 3, + "op": "SWAP2", + "pc": 2784, "stack": [ "0x3aa18088", "0x149", @@ -21517,11 +21517,11 @@ ] }, { - "pc": 2785, - "op": "POP", - "gas": 1608327, - "gasCost": 2, "depth": 1, + "gas": 1617385, + "gasCost": 2, + "op": "POP", + "pc": 2785, "stack": [ "0x3aa18088", "0x149", @@ -21546,11 +21546,11 @@ ] }, { - "pc": 2786, - "op": "POP", - "gas": 1608325, - "gasCost": 2, "depth": 1, + "gas": 1617383, + "gasCost": 2, + "op": "POP", + "pc": 2786, "stack": [ "0x3aa18088", "0x149", @@ -21574,11 +21574,11 @@ ] }, { - "pc": 2787, - "op": "JUMP", - "gas": 1608323, - "gasCost": 8, "depth": 1, + "gas": 1617381, + "gasCost": 8, + "op": "JUMP", + "pc": 2787, "stack": [ "0x3aa18088", "0x149", @@ -21601,11 +21601,11 @@ ] }, { - "pc": 2844, - "op": "JUMPDEST", - "gas": 1608315, - "gasCost": 1, "depth": 1, + "gas": 1617373, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2844, "stack": [ "0x3aa18088", "0x149", @@ -21627,11 +21627,11 @@ ] }, { - "pc": 2845, - "op": "SWAP2", - "gas": 1608314, - "gasCost": 3, "depth": 1, + "gas": 1617372, + "gasCost": 3, + "op": "SWAP2", + "pc": 2845, "stack": [ "0x3aa18088", "0x149", @@ -21653,11 +21653,11 @@ ] }, { - "pc": 2846, - "op": "POP", - "gas": 1608311, - "gasCost": 2, "depth": 1, + "gas": 1617369, + "gasCost": 2, + "op": "POP", + "pc": 2846, "stack": [ "0x3aa18088", "0x149", @@ -21679,11 +21679,11 @@ ] }, { - "pc": 2847, - "op": "PUSH3", - "gas": 1608309, - "gasCost": 3, "depth": 1, + "gas": 1617367, + "gasCost": 3, + "op": "PUSH3", + "pc": 2847, "stack": [ "0x3aa18088", "0x149", @@ -21704,11 +21704,11 @@ ] }, { - "pc": 2851, - "op": "DUP3", - "gas": 1608306, - "gasCost": 3, "depth": 1, + "gas": 1617364, + "gasCost": 3, + "op": "DUP3", + "pc": 2851, "stack": [ "0x3aa18088", "0x149", @@ -21730,11 +21730,11 @@ ] }, { - "pc": 2852, - "op": "PUSH3", - "gas": 1608303, - "gasCost": 3, "depth": 1, + "gas": 1617361, + "gasCost": 3, + "op": "PUSH3", + "pc": 2852, "stack": [ "0x3aa18088", "0x149", @@ -21757,11 +21757,11 @@ ] }, { - "pc": 2856, - "op": "JUMP", - "gas": 1608300, - "gasCost": 8, "depth": 1, + "gas": 1617358, + "gasCost": 8, + "op": "JUMP", + "pc": 2856, "stack": [ "0x3aa18088", "0x149", @@ -21785,11 +21785,11 @@ ] }, { - "pc": 2788, - "op": "JUMPDEST", - "gas": 1608292, - "gasCost": 1, "depth": 1, + "gas": 1617350, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2788, "stack": [ "0x3aa18088", "0x149", @@ -21812,11 +21812,11 @@ ] }, { - "pc": 2789, - "op": "PUSH32", - "gas": 1608291, - "gasCost": 3, "depth": 1, + "gas": 1617349, + "gasCost": 3, + "op": "PUSH32", + "pc": 2789, "stack": [ "0x3aa18088", "0x149", @@ -21839,11 +21839,11 @@ ] }, { - "pc": 2822, - "op": "PUSH1", - "gas": 1608288, - "gasCost": 3, "depth": 1, + "gas": 1617346, + "gasCost": 3, + "op": "PUSH1", + "pc": 2822, "stack": [ "0x3aa18088", "0x149", @@ -21867,11 +21867,11 @@ ] }, { - "pc": 2824, - "op": "DUP3", - "gas": 1608285, - "gasCost": 3, "depth": 1, + "gas": 1617343, + "gasCost": 3, + "op": "DUP3", + "pc": 2824, "stack": [ "0x3aa18088", "0x149", @@ -21896,11 +21896,11 @@ ] }, { - "pc": 2825, - "op": "ADD", - "gas": 1608282, - "gasCost": 3, "depth": 1, + "gas": 1617340, + "gasCost": 3, + "op": "ADD", + "pc": 2825, "stack": [ "0x3aa18088", "0x149", @@ -21926,11 +21926,11 @@ ] }, { - "pc": 2826, - "op": "MSTORE", - "gas": 1608279, - "gasCost": 3, "depth": 1, + "gas": 1617337, + "gasCost": 3, + "op": "MSTORE", + "pc": 2826, "stack": [ "0x3aa18088", "0x149", @@ -21955,11 +21955,11 @@ ] }, { - "pc": 2827, - "op": "POP", - "gas": 1608276, - "gasCost": 2, "depth": 1, + "gas": 1617334, + "gasCost": 2, + "op": "POP", + "pc": 2827, "stack": [ "0x3aa18088", "0x149", @@ -21982,11 +21982,11 @@ ] }, { - "pc": 2828, - "op": "JUMP", - "gas": 1608274, - "gasCost": 8, "depth": 1, + "gas": 1617332, + "gasCost": 8, + "op": "JUMP", + "pc": 2828, "stack": [ "0x3aa18088", "0x149", @@ -22008,11 +22008,11 @@ ] }, { - "pc": 2857, - "op": "JUMPDEST", - "gas": 1608266, - "gasCost": 1, "depth": 1, + "gas": 1617324, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2857, "stack": [ "0x3aa18088", "0x149", @@ -22033,11 +22033,11 @@ ] }, { - "pc": 2858, - "op": "PUSH1", - "gas": 1608265, - "gasCost": 3, "depth": 1, + "gas": 1617323, + "gasCost": 3, + "op": "PUSH1", + "pc": 2858, "stack": [ "0x3aa18088", "0x149", @@ -22058,11 +22058,11 @@ ] }, { - "pc": 2860, - "op": "DUP3", - "gas": 1608262, - "gasCost": 3, "depth": 1, + "gas": 1617320, + "gasCost": 3, + "op": "DUP3", + "pc": 2860, "stack": [ "0x3aa18088", "0x149", @@ -22084,11 +22084,11 @@ ] }, { - "pc": 2861, - "op": "ADD", - "gas": 1608259, - "gasCost": 3, "depth": 1, + "gas": 1617317, + "gasCost": 3, + "op": "ADD", + "pc": 2861, "stack": [ "0x3aa18088", "0x149", @@ -22111,11 +22111,11 @@ ] }, { - "pc": 2862, - "op": "SWAP1", - "gas": 1608256, - "gasCost": 3, "depth": 1, + "gas": 1617314, + "gasCost": 3, + "op": "SWAP1", + "pc": 2862, "stack": [ "0x3aa18088", "0x149", @@ -22137,11 +22137,11 @@ ] }, { - "pc": 2863, - "op": "POP", - "gas": 1608253, - "gasCost": 2, "depth": 1, + "gas": 1617311, + "gasCost": 2, + "op": "POP", + "pc": 2863, "stack": [ "0x3aa18088", "0x149", @@ -22163,11 +22163,11 @@ ] }, { - "pc": 2864, - "op": "SWAP2", - "gas": 1608251, - "gasCost": 3, "depth": 1, + "gas": 1617309, + "gasCost": 3, + "op": "SWAP2", + "pc": 2864, "stack": [ "0x3aa18088", "0x149", @@ -22188,11 +22188,11 @@ ] }, { - "pc": 2865, - "op": "SWAP1", - "gas": 1608248, - "gasCost": 3, "depth": 1, + "gas": 1617306, + "gasCost": 3, + "op": "SWAP1", + "pc": 2865, "stack": [ "0x3aa18088", "0x149", @@ -22213,11 +22213,11 @@ ] }, { - "pc": 2866, - "op": "POP", - "gas": 1608245, - "gasCost": 2, "depth": 1, + "gas": 1617303, + "gasCost": 2, + "op": "POP", + "pc": 2866, "stack": [ "0x3aa18088", "0x149", @@ -22238,11 +22238,11 @@ ] }, { - "pc": 2867, - "op": "JUMP", - "gas": 1608243, - "gasCost": 8, "depth": 1, + "gas": 1617301, + "gasCost": 8, + "op": "JUMP", + "pc": 2867, "stack": [ "0x3aa18088", "0x149", @@ -22262,11 +22262,11 @@ ] }, { - "pc": 2910, - "op": "JUMPDEST", - "gas": 1608235, - "gasCost": 1, "depth": 1, + "gas": 1617293, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2910, "stack": [ "0x3aa18088", "0x149", @@ -22285,11 +22285,11 @@ ] }, { - "pc": 2911, - "op": "SWAP1", - "gas": 1608234, - "gasCost": 3, "depth": 1, + "gas": 1617292, + "gasCost": 3, + "op": "SWAP1", + "pc": 2911, "stack": [ "0x3aa18088", "0x149", @@ -22308,11 +22308,11 @@ ] }, { - "pc": 2912, - "op": "POP", - "gas": 1608231, - "gasCost": 2, "depth": 1, + "gas": 1617289, + "gasCost": 2, + "op": "POP", + "pc": 2912, "stack": [ "0x3aa18088", "0x149", @@ -22331,11 +22331,11 @@ ] }, { - "pc": 2913, - "op": "SWAP3", - "gas": 1608229, - "gasCost": 3, "depth": 1, + "gas": 1617287, + "gasCost": 3, + "op": "SWAP3", + "pc": 2913, "stack": [ "0x3aa18088", "0x149", @@ -22353,11 +22353,11 @@ ] }, { - "pc": 2914, - "op": "SWAP2", - "gas": 1608226, - "gasCost": 3, "depth": 1, + "gas": 1617284, + "gasCost": 3, + "op": "SWAP2", + "pc": 2914, "stack": [ "0x3aa18088", "0x149", @@ -22375,11 +22375,11 @@ ] }, { - "pc": 2915, - "op": "POP", - "gas": 1608223, - "gasCost": 2, "depth": 1, + "gas": 1617281, + "gasCost": 2, + "op": "POP", + "pc": 2915, "stack": [ "0x3aa18088", "0x149", @@ -22397,11 +22397,11 @@ ] }, { - "pc": 2916, - "op": "POP", - "gas": 1608221, - "gasCost": 2, "depth": 1, + "gas": 1617279, + "gasCost": 2, + "op": "POP", + "pc": 2916, "stack": [ "0x3aa18088", "0x149", @@ -22418,11 +22418,11 @@ ] }, { - "pc": 2917, - "op": "JUMP", - "gas": 1608219, - "gasCost": 8, "depth": 1, + "gas": 1617277, + "gasCost": 8, + "op": "JUMP", + "pc": 2917, "stack": [ "0x3aa18088", "0x149", @@ -22438,11 +22438,11 @@ ] }, { - "pc": 714, - "op": "JUMPDEST", - "gas": 1608211, - "gasCost": 1, "depth": 1, + "gas": 1617269, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 714, "stack": [ "0x3aa18088", "0x149", @@ -22457,11 +22457,11 @@ ] }, { - "pc": 715, - "op": "PUSH1", - "gas": 1608210, - "gasCost": 3, "depth": 1, + "gas": 1617268, + "gasCost": 3, + "op": "PUSH1", + "pc": 715, "stack": [ "0x3aa18088", "0x149", @@ -22476,11 +22476,11 @@ ] }, { - "pc": 717, - "op": "MLOAD", - "gas": 1608207, - "gasCost": 3, "depth": 1, + "gas": 1617265, + "gasCost": 3, + "op": "MLOAD", + "pc": 717, "stack": [ "0x3aa18088", "0x149", @@ -22496,11 +22496,11 @@ ] }, { - "pc": 718, - "op": "DUP1", - "gas": 1608204, - "gasCost": 3, "depth": 1, + "gas": 1617262, + "gasCost": 3, + "op": "DUP1", + "pc": 718, "stack": [ "0x3aa18088", "0x149", @@ -22516,11 +22516,11 @@ ] }, { - "pc": 719, - "op": "SWAP2", - "gas": 1608201, - "gasCost": 3, "depth": 1, + "gas": 1617259, + "gasCost": 3, + "op": "SWAP2", + "pc": 719, "stack": [ "0x3aa18088", "0x149", @@ -22537,11 +22537,11 @@ ] }, { - "pc": 720, - "op": "SUB", - "gas": 1608198, - "gasCost": 3, "depth": 1, + "gas": 1617256, + "gasCost": 3, + "op": "SUB", + "pc": 720, "stack": [ "0x3aa18088", "0x149", @@ -22558,11 +22558,11 @@ ] }, { - "pc": 721, - "op": "SWAP1", - "gas": 1608195, - "gasCost": 3, "depth": 1, + "gas": 1617253, + "gasCost": 3, + "op": "SWAP1", + "pc": 721, "stack": [ "0x3aa18088", "0x149", @@ -22578,11 +22578,11 @@ ] }, { - "pc": 722, - "op": "LOG2", - "gas": 1608192, - "gasCost": 2149, "depth": 1, + "gas": 1617250, + "gasCost": 2149, + "op": "LOG2", + "pc": 722, "stack": [ "0x3aa18088", "0x149", @@ -22598,11 +22598,11 @@ ] }, { - "pc": 723, - "op": "DUP2", - "gas": 1606043, - "gasCost": 3, "depth": 1, + "gas": 1615101, + "gasCost": 3, + "op": "DUP2", + "pc": 723, "stack": [ "0x3aa18088", "0x149", @@ -22614,11 +22614,11 @@ ] }, { - "pc": 724, - "op": "PUSH1", - "gas": 1606040, - "gasCost": 3, "depth": 1, + "gas": 1615098, + "gasCost": 3, + "op": "PUSH1", + "pc": 724, "stack": [ "0x3aa18088", "0x149", @@ -22631,11 +22631,11 @@ ] }, { - "pc": 726, - "op": "PUSH1", - "gas": 1606037, - "gasCost": 3, "depth": 1, + "gas": 1615095, + "gasCost": 3, + "op": "PUSH1", + "pc": 726, "stack": [ "0x3aa18088", "0x149", @@ -22649,11 +22649,11 @@ ] }, { - "pc": 728, - "op": "DUP3", - "gas": 1606034, - "gasCost": 3, "depth": 1, + "gas": 1615092, + "gasCost": 3, + "op": "DUP3", + "pc": 728, "stack": [ "0x3aa18088", "0x149", @@ -22668,11 +22668,11 @@ ] }, { - "pc": 729, - "op": "DUP3", - "gas": 1606031, - "gasCost": 3, "depth": 1, + "gas": 1615089, + "gasCost": 3, + "op": "DUP3", + "pc": 729, "stack": [ "0x3aa18088", "0x149", @@ -22688,11 +22688,11 @@ ] }, { - "pc": 730, - "op": "SLOAD", - "gas": 1606028, - "gasCost": 2100, "depth": 1, + "gas": 1615086, + "gasCost": 200, + "op": "SLOAD", + "pc": 730, "stack": [ "0x3aa18088", "0x149", @@ -22708,17 +22708,17 @@ "0x3" ], "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000ccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0000000000000000000000000000000000000000000000000000000000000000": "0000000000000000000000005b659fd8bdc52879d0c3697038537da40832b759", "0000000000000000000000000000000000000000000000000000000000000001": "00000000000000000000000000000000000000000000000000000000000003e8", "0000000000000000000000000000000000000000000000000000000000000003": "0000000000000000000000000000000000000000000000000000000000000000" } }, { - "pc": 731, - "op": "PUSH3", - "gas": 1603928, - "gasCost": 3, "depth": 1, + "gas": 1614886, + "gasCost": 3, + "op": "PUSH3", + "pc": 731, "stack": [ "0x3aa18088", "0x149", @@ -22735,11 +22735,11 @@ ] }, { - "pc": 735, - "op": "SWAP2", - "gas": 1603925, - "gasCost": 3, "depth": 1, + "gas": 1614883, + "gasCost": 3, + "op": "SWAP2", + "pc": 735, "stack": [ "0x3aa18088", "0x149", @@ -22757,11 +22757,11 @@ ] }, { - "pc": 736, - "op": "SWAP1", - "gas": 1603922, - "gasCost": 3, "depth": 1, + "gas": 1614880, + "gasCost": 3, + "op": "SWAP1", + "pc": 736, "stack": [ "0x3aa18088", "0x149", @@ -22779,11 +22779,11 @@ ] }, { - "pc": 737, - "op": "PUSH3", - "gas": 1603919, - "gasCost": 3, "depth": 1, + "gas": 1614877, + "gasCost": 3, + "op": "PUSH3", + "pc": 737, "stack": [ "0x3aa18088", "0x149", @@ -22801,11 +22801,11 @@ ] }, { - "pc": 741, - "op": "JUMP", - "gas": 1603916, - "gasCost": 8, "depth": 1, + "gas": 1614874, + "gasCost": 8, + "op": "JUMP", + "pc": 741, "stack": [ "0x3aa18088", "0x149", @@ -22824,11 +22824,11 @@ ] }, { - "pc": 2965, - "op": "JUMPDEST", - "gas": 1603908, - "gasCost": 1, "depth": 1, + "gas": 1614866, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2965, "stack": [ "0x3aa18088", "0x149", @@ -22846,11 +22846,11 @@ ] }, { - "pc": 2966, - "op": "PUSH1", - "gas": 1603907, - "gasCost": 3, "depth": 1, + "gas": 1614865, + "gasCost": 3, + "op": "PUSH1", + "pc": 2966, "stack": [ "0x3aa18088", "0x149", @@ -22868,11 +22868,11 @@ ] }, { - "pc": 2968, - "op": "PUSH3", - "gas": 1603904, - "gasCost": 3, "depth": 1, + "gas": 1614862, + "gasCost": 3, + "op": "PUSH3", + "pc": 2968, "stack": [ "0x3aa18088", "0x149", @@ -22891,11 +22891,11 @@ ] }, { - "pc": 2972, - "op": "DUP3", - "gas": 1603901, - "gasCost": 3, "depth": 1, + "gas": 1614859, + "gasCost": 3, + "op": "DUP3", + "pc": 2972, "stack": [ "0x3aa18088", "0x149", @@ -22915,11 +22915,11 @@ ] }, { - "pc": 2973, - "op": "PUSH3", - "gas": 1603898, - "gasCost": 3, "depth": 1, + "gas": 1614856, + "gasCost": 3, + "op": "PUSH3", + "pc": 2973, "stack": [ "0x3aa18088", "0x149", @@ -22940,11 +22940,11 @@ ] }, { - "pc": 2977, - "op": "JUMP", - "gas": 1603895, - "gasCost": 8, "depth": 1, + "gas": 1614853, + "gasCost": 8, + "op": "JUMP", + "pc": 2977, "stack": [ "0x3aa18088", "0x149", @@ -22966,36 +22966,11 @@ ] }, { - "pc": 2394, - "op": "JUMPDEST", - "gas": 1603887, - "gasCost": 1, - "depth": 1, - "stack": [ - "0x3aa18088", - "0x149", - "0x3e8", - "0x0", - "0x3e7", - "0x3e9", - "0x0", - "0x3e9", - "0x3", - "0x0", - "0x2e6", - "0x3e9", - "0x0", - "0x0", - "0xba2", - "0x0" - ] - }, - { - "pc": 2395, - "op": "PUSH1", - "gas": 1603886, - "gasCost": 3, "depth": 1, + "gas": 1614845, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2394, "stack": [ "0x3aa18088", "0x149", @@ -23016,37 +22991,11 @@ ] }, { - "pc": 2397, - "op": "DUP2", - "gas": 1603883, - "gasCost": 3, "depth": 1, - "stack": [ - "0x3aa18088", - "0x149", - "0x3e8", - "0x0", - "0x3e7", - "0x3e9", - "0x0", - "0x3e9", - "0x3", - "0x0", - "0x2e6", - "0x3e9", - "0x0", - "0x0", - "0xba2", - "0x0", - "0x0" - ] - }, - { - "pc": 2398, - "op": "SWAP1", - "gas": 1603880, + "gas": 1614844, "gasCost": 3, - "depth": 1, + "op": "PUSH1", + "pc": 2395, "stack": [ "0x3aa18088", "0x149", @@ -23063,44 +23012,15 @@ "0x0", "0x0", "0xba2", - "0x0", - "0x0", "0x0" ] }, { - "pc": 2399, - "op": "POP", - "gas": 1603877, - "gasCost": 2, "depth": 1, - "stack": [ - "0x3aa18088", - "0x149", - "0x3e8", - "0x0", - "0x3e7", - "0x3e9", - "0x0", - "0x3e9", - "0x3", - "0x0", - "0x2e6", - "0x3e9", - "0x0", - "0x0", - "0xba2", - "0x0", - "0x0", - "0x0" - ] - }, - { - "pc": 2400, - "op": "SWAP2", - "gas": 1603875, + "gas": 1614841, "gasCost": 3, - "depth": 1, + "op": "DUP2", + "pc": 2397, "stack": [ "0x3aa18088", "0x149", @@ -23122,11 +23042,91 @@ ] }, { - "pc": 2401, + "depth": 1, + "gas": 1614838, + "gasCost": 3, "op": "SWAP1", - "gas": 1603872, + "pc": 2398, + "stack": [ + "0x3aa18088", + "0x149", + "0x3e8", + "0x0", + "0x3e7", + "0x3e9", + "0x0", + "0x3e9", + "0x3", + "0x0", + "0x2e6", + "0x3e9", + "0x0", + "0x0", + "0xba2", + "0x0", + "0x0", + "0x0" + ] + }, + { + "depth": 1, + "gas": 1614835, + "gasCost": 2, + "op": "POP", + "pc": 2399, + "stack": [ + "0x3aa18088", + "0x149", + "0x3e8", + "0x0", + "0x3e7", + "0x3e9", + "0x0", + "0x3e9", + "0x3", + "0x0", + "0x2e6", + "0x3e9", + "0x0", + "0x0", + "0xba2", + "0x0", + "0x0", + "0x0" + ] + }, + { + "depth": 1, + "gas": 1614833, "gasCost": 3, + "op": "SWAP2", + "pc": 2400, + "stack": [ + "0x3aa18088", + "0x149", + "0x3e8", + "0x0", + "0x3e7", + "0x3e9", + "0x0", + "0x3e9", + "0x3", + "0x0", + "0x2e6", + "0x3e9", + "0x0", + "0x0", + "0xba2", + "0x0", + "0x0" + ] + }, + { "depth": 1, + "gas": 1614830, + "gasCost": 3, + "op": "SWAP1", + "pc": 2401, "stack": [ "0x3aa18088", "0x149", @@ -23148,11 +23148,11 @@ ] }, { - "pc": 2402, - "op": "POP", - "gas": 1603869, - "gasCost": 2, "depth": 1, + "gas": 1614827, + "gasCost": 2, + "op": "POP", + "pc": 2402, "stack": [ "0x3aa18088", "0x149", @@ -23174,11 +23174,11 @@ ] }, { - "pc": 2403, - "op": "JUMP", - "gas": 1603867, - "gasCost": 8, "depth": 1, + "gas": 1614825, + "gasCost": 8, + "op": "JUMP", + "pc": 2403, "stack": [ "0x3aa18088", "0x149", @@ -23199,11 +23199,11 @@ ] }, { - "pc": 2978, - "op": "JUMPDEST", - "gas": 1603859, - "gasCost": 1, "depth": 1, + "gas": 1614817, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2978, "stack": [ "0x3aa18088", "0x149", @@ -23223,11 +23223,11 @@ ] }, { - "pc": 2979, - "op": "SWAP2", - "gas": 1603858, - "gasCost": 3, "depth": 1, + "gas": 1614816, + "gasCost": 3, + "op": "SWAP2", + "pc": 2979, "stack": [ "0x3aa18088", "0x149", @@ -23247,11 +23247,11 @@ ] }, { - "pc": 2980, - "op": "POP", - "gas": 1603855, - "gasCost": 2, "depth": 1, + "gas": 1614813, + "gasCost": 2, + "op": "POP", + "pc": 2980, "stack": [ "0x3aa18088", "0x149", @@ -23271,11 +23271,11 @@ ] }, { - "pc": 2981, - "op": "PUSH3", - "gas": 1603853, - "gasCost": 3, "depth": 1, + "gas": 1614811, + "gasCost": 3, + "op": "PUSH3", + "pc": 2981, "stack": [ "0x3aa18088", "0x149", @@ -23294,11 +23294,11 @@ ] }, { - "pc": 2985, - "op": "DUP4", - "gas": 1603850, - "gasCost": 3, "depth": 1, + "gas": 1614808, + "gasCost": 3, + "op": "DUP4", + "pc": 2985, "stack": [ "0x3aa18088", "0x149", @@ -23318,11 +23318,11 @@ ] }, { - "pc": 2986, - "op": "PUSH3", - "gas": 1603847, - "gasCost": 3, "depth": 1, + "gas": 1614805, + "gasCost": 3, + "op": "PUSH3", + "pc": 2986, "stack": [ "0x3aa18088", "0x149", @@ -23343,11 +23343,11 @@ ] }, { - "pc": 2990, - "op": "JUMP", - "gas": 1603844, - "gasCost": 8, "depth": 1, + "gas": 1614802, + "gasCost": 8, + "op": "JUMP", + "pc": 2990, "stack": [ "0x3aa18088", "0x149", @@ -23369,11 +23369,11 @@ ] }, { - "pc": 2394, - "op": "JUMPDEST", - "gas": 1603836, - "gasCost": 1, "depth": 1, + "gas": 1614794, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2394, "stack": [ "0x3aa18088", "0x149", @@ -23394,11 +23394,11 @@ ] }, { - "pc": 2395, - "op": "PUSH1", - "gas": 1603835, - "gasCost": 3, "depth": 1, + "gas": 1614793, + "gasCost": 3, + "op": "PUSH1", + "pc": 2395, "stack": [ "0x3aa18088", "0x149", @@ -23419,11 +23419,11 @@ ] }, { - "pc": 2397, - "op": "DUP2", - "gas": 1603832, - "gasCost": 3, "depth": 1, + "gas": 1614790, + "gasCost": 3, + "op": "DUP2", + "pc": 2397, "stack": [ "0x3aa18088", "0x149", @@ -23445,11 +23445,11 @@ ] }, { - "pc": 2398, - "op": "SWAP1", - "gas": 1603829, - "gasCost": 3, "depth": 1, + "gas": 1614787, + "gasCost": 3, + "op": "SWAP1", + "pc": 2398, "stack": [ "0x3aa18088", "0x149", @@ -23472,11 +23472,11 @@ ] }, { - "pc": 2399, - "op": "POP", - "gas": 1603826, - "gasCost": 2, "depth": 1, + "gas": 1614784, + "gasCost": 2, + "op": "POP", + "pc": 2399, "stack": [ "0x3aa18088", "0x149", @@ -23499,11 +23499,11 @@ ] }, { - "pc": 2400, - "op": "SWAP2", - "gas": 1603824, - "gasCost": 3, "depth": 1, + "gas": 1614782, + "gasCost": 3, + "op": "SWAP2", + "pc": 2400, "stack": [ "0x3aa18088", "0x149", @@ -23525,11 +23525,11 @@ ] }, { - "pc": 2401, - "op": "SWAP1", - "gas": 1603821, - "gasCost": 3, "depth": 1, + "gas": 1614779, + "gasCost": 3, + "op": "SWAP1", + "pc": 2401, "stack": [ "0x3aa18088", "0x149", @@ -23551,11 +23551,11 @@ ] }, { - "pc": 2402, - "op": "POP", - "gas": 1603818, - "gasCost": 2, "depth": 1, + "gas": 1614776, + "gasCost": 2, + "op": "POP", + "pc": 2402, "stack": [ "0x3aa18088", "0x149", @@ -23577,11 +23577,11 @@ ] }, { - "pc": 2403, - "op": "JUMP", - "gas": 1603816, - "gasCost": 8, "depth": 1, + "gas": 1614774, + "gasCost": 8, + "op": "JUMP", + "pc": 2403, "stack": [ "0x3aa18088", "0x149", @@ -23602,11 +23602,11 @@ ] }, { - "pc": 2991, - "op": "JUMPDEST", - "gas": 1603808, - "gasCost": 1, "depth": 1, + "gas": 1614766, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2991, "stack": [ "0x3aa18088", "0x149", @@ -23626,11 +23626,11 @@ ] }, { - "pc": 2992, - "op": "SWAP3", - "gas": 1603807, - "gasCost": 3, "depth": 1, + "gas": 1614765, + "gasCost": 3, + "op": "SWAP3", + "pc": 2992, "stack": [ "0x3aa18088", "0x149", @@ -23650,11 +23650,11 @@ ] }, { - "pc": 2993, - "op": "POP", - "gas": 1603804, - "gasCost": 2, "depth": 1, + "gas": 1614762, + "gasCost": 2, + "op": "POP", + "pc": 2993, "stack": [ "0x3aa18088", "0x149", @@ -23674,11 +23674,11 @@ ] }, { - "pc": 2994, - "op": "DUP3", - "gas": 1603802, - "gasCost": 3, "depth": 1, + "gas": 1614760, + "gasCost": 3, + "op": "DUP3", + "pc": 2994, "stack": [ "0x3aa18088", "0x149", @@ -23697,11 +23697,11 @@ ] }, { - "pc": 2995, - "op": "DUP3", - "gas": 1603799, - "gasCost": 3, "depth": 1, + "gas": 1614757, + "gasCost": 3, + "op": "DUP3", + "pc": 2995, "stack": [ "0x3aa18088", "0x149", @@ -23721,11 +23721,11 @@ ] }, { - "pc": 2996, - "op": "ADD", - "gas": 1603796, - "gasCost": 3, "depth": 1, + "gas": 1614754, + "gasCost": 3, + "op": "ADD", + "pc": 2996, "stack": [ "0x3aa18088", "0x149", @@ -23746,11 +23746,11 @@ ] }, { - "pc": 2997, - "op": "SWAP1", - "gas": 1603793, - "gasCost": 3, "depth": 1, + "gas": 1614751, + "gasCost": 3, + "op": "SWAP1", + "pc": 2997, "stack": [ "0x3aa18088", "0x149", @@ -23770,11 +23770,11 @@ ] }, { - "pc": 2998, - "op": "POP", - "gas": 1603790, - "gasCost": 2, "depth": 1, + "gas": 1614748, + "gasCost": 2, + "op": "POP", + "pc": 2998, "stack": [ "0x3aa18088", "0x149", @@ -23794,11 +23794,11 @@ ] }, { - "pc": 2999, - "op": "DUP1", - "gas": 1603788, - "gasCost": 3, "depth": 1, + "gas": 1614746, + "gasCost": 3, + "op": "DUP1", + "pc": 2999, "stack": [ "0x3aa18088", "0x149", @@ -23817,11 +23817,11 @@ ] }, { - "pc": 3000, - "op": "DUP3", - "gas": 1603785, - "gasCost": 3, "depth": 1, + "gas": 1614743, + "gasCost": 3, + "op": "DUP3", + "pc": 3000, "stack": [ "0x3aa18088", "0x149", @@ -23841,11 +23841,11 @@ ] }, { - "pc": 3001, - "op": "GT", - "gas": 1603782, - "gasCost": 3, "depth": 1, + "gas": 1614740, + "gasCost": 3, + "op": "GT", + "pc": 3001, "stack": [ "0x3aa18088", "0x149", @@ -23866,11 +23866,11 @@ ] }, { - "pc": 3002, - "op": "ISZERO", - "gas": 1603779, - "gasCost": 3, "depth": 1, + "gas": 1614737, + "gasCost": 3, + "op": "ISZERO", + "pc": 3002, "stack": [ "0x3aa18088", "0x149", @@ -23890,11 +23890,11 @@ ] }, { - "pc": 3003, - "op": "PUSH3", - "gas": 1603776, - "gasCost": 3, "depth": 1, + "gas": 1614734, + "gasCost": 3, + "op": "PUSH3", + "pc": 3003, "stack": [ "0x3aa18088", "0x149", @@ -23914,11 +23914,11 @@ ] }, { - "pc": 3007, - "op": "JUMPI", - "gas": 1603773, - "gasCost": 10, "depth": 1, + "gas": 1614731, + "gasCost": 10, + "op": "JUMPI", + "pc": 3007, "stack": [ "0x3aa18088", "0x149", @@ -23939,11 +23939,11 @@ ] }, { - "pc": 3018, - "op": "JUMPDEST", - "gas": 1603763, - "gasCost": 1, "depth": 1, + "gas": 1614721, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 3018, "stack": [ "0x3aa18088", "0x149", @@ -23961,12 +23961,12 @@ "0x3e9" ] }, - { - "pc": 3019, - "op": "SWAP3", - "gas": 1603762, - "gasCost": 3, + { "depth": 1, + "gas": 1614720, + "gasCost": 3, + "op": "SWAP3", + "pc": 3019, "stack": [ "0x3aa18088", "0x149", @@ -23985,11 +23985,11 @@ ] }, { - "pc": 3020, - "op": "SWAP2", - "gas": 1603759, - "gasCost": 3, "depth": 1, + "gas": 1614717, + "gasCost": 3, + "op": "SWAP2", + "pc": 3020, "stack": [ "0x3aa18088", "0x149", @@ -24008,11 +24008,11 @@ ] }, { - "pc": 3021, - "op": "POP", - "gas": 1603756, - "gasCost": 2, "depth": 1, + "gas": 1614714, + "gasCost": 2, + "op": "POP", + "pc": 3021, "stack": [ "0x3aa18088", "0x149", @@ -24031,11 +24031,11 @@ ] }, { - "pc": 3022, - "op": "POP", - "gas": 1603754, - "gasCost": 2, "depth": 1, + "gas": 1614712, + "gasCost": 2, + "op": "POP", + "pc": 3022, "stack": [ "0x3aa18088", "0x149", @@ -24053,11 +24053,11 @@ ] }, { - "pc": 3023, - "op": "JUMP", - "gas": 1603752, - "gasCost": 8, "depth": 1, + "gas": 1614710, + "gasCost": 8, + "op": "JUMP", + "pc": 3023, "stack": [ "0x3aa18088", "0x149", @@ -24074,11 +24074,11 @@ ] }, { - "pc": 742, - "op": "JUMPDEST", - "gas": 1603744, - "gasCost": 1, "depth": 1, + "gas": 1614702, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 742, "stack": [ "0x3aa18088", "0x149", @@ -24094,11 +24094,11 @@ ] }, { - "pc": 743, - "op": "SWAP3", - "gas": 1603743, - "gasCost": 3, "depth": 1, + "gas": 1614701, + "gasCost": 3, + "op": "SWAP3", + "pc": 743, "stack": [ "0x3aa18088", "0x149", @@ -24114,11 +24114,11 @@ ] }, { - "pc": 744, - "op": "POP", - "gas": 1603740, - "gasCost": 2, "depth": 1, + "gas": 1614698, + "gasCost": 2, + "op": "POP", + "pc": 744, "stack": [ "0x3aa18088", "0x149", @@ -24134,11 +24134,11 @@ ] }, { - "pc": 745, - "op": "POP", - "gas": 1603738, - "gasCost": 2, "depth": 1, + "gas": 1614696, + "gasCost": 2, + "op": "POP", + "pc": 745, "stack": [ "0x3aa18088", "0x149", @@ -24153,11 +24153,11 @@ ] }, { - "pc": 746, - "op": "DUP2", - "gas": 1603736, - "gasCost": 3, "depth": 1, + "gas": 1614694, + "gasCost": 3, + "op": "DUP2", + "pc": 746, "stack": [ "0x3aa18088", "0x149", @@ -24171,11 +24171,11 @@ ] }, { - "pc": 747, - "op": "SWAP1", - "gas": 1603733, - "gasCost": 3, "depth": 1, + "gas": 1614691, + "gasCost": 3, + "op": "SWAP1", + "pc": 747, "stack": [ "0x3aa18088", "0x149", @@ -24190,11 +24190,11 @@ ] }, { - "pc": 748, - "op": "SSTORE", - "gas": 1603730, - "gasCost": 20000, "depth": 1, + "gas": 1614688, + "gasCost": 20000, + "op": "SSTORE", + "pc": 748, "stack": [ "0x3aa18088", "0x149", @@ -24208,17 +24208,17 @@ "0x3" ], "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000ccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0000000000000000000000000000000000000000000000000000000000000000": "0000000000000000000000005b659fd8bdc52879d0c3697038537da40832b759", "0000000000000000000000000000000000000000000000000000000000000001": "00000000000000000000000000000000000000000000000000000000000003e8", "0000000000000000000000000000000000000000000000000000000000000003": "00000000000000000000000000000000000000000000000000000000000003e9" } }, { - "pc": 749, - "op": "POP", - "gas": 1583730, - "gasCost": 2, "depth": 1, + "gas": 1594688, + "gasCost": 2, + "op": "POP", + "pc": 749, "stack": [ "0x3aa18088", "0x149", @@ -24231,11 +24231,11 @@ ] }, { - "pc": 750, - "op": "PUSH1", - "gas": 1583728, - "gasCost": 3, "depth": 1, + "gas": 1594686, + "gasCost": 3, + "op": "PUSH1", + "pc": 750, "stack": [ "0x3aa18088", "0x149", @@ -24247,11 +24247,11 @@ ] }, { - "pc": 752, - "op": "SWAP1", - "gas": 1583725, - "gasCost": 3, "depth": 1, + "gas": 1594683, + "gasCost": 3, + "op": "SWAP1", + "pc": 752, "stack": [ "0x3aa18088", "0x149", @@ -24264,11 +24264,11 @@ ] }, { - "pc": 753, - "op": "POP", - "gas": 1583722, - "gasCost": 2, "depth": 1, + "gas": 1594680, + "gasCost": 2, + "op": "POP", + "pc": 753, "stack": [ "0x3aa18088", "0x149", @@ -24281,11 +24281,11 @@ ] }, { - "pc": 754, - "op": "SWAP2", - "gas": 1583720, - "gasCost": 3, "depth": 1, + "gas": 1594678, + "gasCost": 3, + "op": "SWAP2", + "pc": 754, "stack": [ "0x3aa18088", "0x149", @@ -24297,11 +24297,11 @@ ] }, { - "pc": 755, - "op": "SWAP1", - "gas": 1583717, - "gasCost": 3, "depth": 1, + "gas": 1594675, + "gasCost": 3, + "op": "SWAP1", + "pc": 755, "stack": [ "0x3aa18088", "0x149", @@ -24313,11 +24313,11 @@ ] }, { - "pc": 756, - "op": "POP", - "gas": 1583714, - "gasCost": 2, "depth": 1, + "gas": 1594672, + "gasCost": 2, + "op": "POP", + "pc": 756, "stack": [ "0x3aa18088", "0x149", @@ -24329,11 +24329,11 @@ ] }, { - "pc": 757, - "op": "JUMP", - "gas": 1583712, - "gasCost": 8, "depth": 1, + "gas": 1594670, + "gasCost": 8, + "op": "JUMP", + "pc": 757, "stack": [ "0x3aa18088", "0x149", @@ -24344,11 +24344,11 @@ ] }, { - "pc": 999, - "op": "JUMPDEST", - "gas": 1583704, - "gasCost": 1, "depth": 1, + "gas": 1594662, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 999, "stack": [ "0x3aa18088", "0x149", @@ -24358,11 +24358,11 @@ ] }, { - "pc": 1000, - "op": "POP", - "gas": 1583703, - "gasCost": 2, "depth": 1, + "gas": 1594661, + "gasCost": 2, + "op": "POP", + "pc": 1000, "stack": [ "0x3aa18088", "0x149", @@ -24372,11 +24372,11 @@ ] }, { - "pc": 1001, - "op": "PUSH3", - "gas": 1583701, - "gasCost": 3, "depth": 1, + "gas": 1594659, + "gasCost": 3, + "op": "PUSH3", + "pc": 1001, "stack": [ "0x3aa18088", "0x149", @@ -24385,11 +24385,11 @@ ] }, { - "pc": 1005, - "op": "PUSH3", - "gas": 1583698, - "gasCost": 3, "depth": 1, + "gas": 1594656, + "gasCost": 3, + "op": "PUSH3", + "pc": 1005, "stack": [ "0x3aa18088", "0x149", @@ -24399,11 +24399,11 @@ ] }, { - "pc": 1009, - "op": "JUMP", - "gas": 1583695, - "gasCost": 8, "depth": 1, + "gas": 1594653, + "gasCost": 8, + "op": "JUMP", + "pc": 1009, "stack": [ "0x3aa18088", "0x149", @@ -24414,11 +24414,11 @@ ] }, { - "pc": 561, - "op": "JUMPDEST", - "gas": 1583687, - "gasCost": 1, "depth": 1, + "gas": 1594645, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 561, "stack": [ "0x3aa18088", "0x149", @@ -24428,11 +24428,11 @@ ] }, { - "pc": 562, - "op": "PUSH1", - "gas": 1583686, - "gasCost": 3, "depth": 1, + "gas": 1594644, + "gasCost": 3, + "op": "PUSH1", + "pc": 562, "stack": [ "0x3aa18088", "0x149", @@ -24442,11 +24442,11 @@ ] }, { - "pc": 564, - "op": "DUP1", - "gas": 1583683, - "gasCost": 3, "depth": 1, + "gas": 1594641, + "gasCost": 3, + "op": "DUP1", + "pc": 564, "stack": [ "0x3aa18088", "0x149", @@ -24457,11 +24457,11 @@ ] }, { - "pc": 565, - "op": "PUSH1", - "gas": 1583680, - "gasCost": 3, "depth": 1, + "gas": 1594638, + "gasCost": 3, + "op": "PUSH1", + "pc": 565, "stack": [ "0x3aa18088", "0x149", @@ -24473,11 +24473,11 @@ ] }, { - "pc": 567, - "op": "MLOAD", - "gas": 1583677, - "gasCost": 3, "depth": 1, + "gas": 1594635, + "gasCost": 3, + "op": "MLOAD", + "pc": 567, "stack": [ "0x3aa18088", "0x149", @@ -24490,11 +24490,11 @@ ] }, { - "pc": 568, - "op": "DUP1", - "gas": 1583674, - "gasCost": 3, "depth": 1, + "gas": 1594632, + "gasCost": 3, + "op": "DUP1", + "pc": 568, "stack": [ "0x3aa18088", "0x149", @@ -24507,11 +24507,11 @@ ] }, { - "pc": 569, - "op": "PUSH1", - "gas": 1583671, - "gasCost": 3, "depth": 1, + "gas": 1594629, + "gasCost": 3, + "op": "PUSH1", + "pc": 569, "stack": [ "0x3aa18088", "0x149", @@ -24525,11 +24525,11 @@ ] }, { - "pc": 571, - "op": "ADD", - "gas": 1583668, - "gasCost": 3, "depth": 1, + "gas": 1594626, + "gasCost": 3, + "op": "ADD", + "pc": 571, "stack": [ "0x3aa18088", "0x149", @@ -24544,11 +24544,11 @@ ] }, { - "pc": 572, - "op": "PUSH1", - "gas": 1583665, - "gasCost": 3, "depth": 1, + "gas": 1594623, + "gasCost": 3, + "op": "PUSH1", + "pc": 572, "stack": [ "0x3aa18088", "0x149", @@ -24562,11 +24562,11 @@ ] }, { - "pc": 574, - "op": "MSTORE", - "gas": 1583662, - "gasCost": 3, "depth": 1, + "gas": 1594620, + "gasCost": 3, + "op": "MSTORE", + "pc": 574, "stack": [ "0x3aa18088", "0x149", @@ -24581,11 +24581,11 @@ ] }, { - "pc": 575, - "op": "DUP1", - "gas": 1583659, - "gasCost": 3, "depth": 1, + "gas": 1594617, + "gasCost": 3, + "op": "DUP1", + "pc": 575, "stack": [ "0x3aa18088", "0x149", @@ -24598,11 +24598,11 @@ ] }, { - "pc": 576, - "op": "PUSH1", - "gas": 1583656, - "gasCost": 3, "depth": 1, + "gas": 1594614, + "gasCost": 3, + "op": "PUSH1", + "pc": 576, "stack": [ "0x3aa18088", "0x149", @@ -24616,11 +24616,11 @@ ] }, { - "pc": 578, - "op": "DUP2", - "gas": 1583653, - "gasCost": 3, "depth": 1, + "gas": 1594611, + "gasCost": 3, + "op": "DUP2", + "pc": 578, "stack": [ "0x3aa18088", "0x149", @@ -24635,11 +24635,11 @@ ] }, { - "pc": 579, - "op": "MSTORE", - "gas": 1583650, - "gasCost": 3, "depth": 1, + "gas": 1594608, + "gasCost": 3, + "op": "MSTORE", + "pc": 579, "stack": [ "0x3aa18088", "0x149", @@ -24655,11 +24655,11 @@ ] }, { - "pc": 580, - "op": "PUSH1", - "gas": 1583647, - "gasCost": 3, "depth": 1, + "gas": 1594605, + "gasCost": 3, + "op": "PUSH1", + "pc": 580, "stack": [ "0x3aa18088", "0x149", @@ -24673,11 +24673,11 @@ ] }, { - "pc": 582, - "op": "ADD", - "gas": 1583644, - "gasCost": 3, "depth": 1, + "gas": 1594602, + "gasCost": 3, + "op": "ADD", + "pc": 582, "stack": [ "0x3aa18088", "0x149", @@ -24692,11 +24692,11 @@ ] }, { - "pc": 583, - "op": "PUSH32", - "gas": 1583641, - "gasCost": 3, "depth": 1, + "gas": 1594599, + "gasCost": 3, + "op": "PUSH32", + "pc": 583, "stack": [ "0x3aa18088", "0x149", @@ -24710,11 +24710,11 @@ ] }, { - "pc": 616, - "op": "DUP2", - "gas": 1583638, - "gasCost": 3, "depth": 1, + "gas": 1594596, + "gasCost": 3, + "op": "DUP2", + "pc": 616, "stack": [ "0x3aa18088", "0x149", @@ -24729,11 +24729,11 @@ ] }, { - "pc": 617, - "op": "MSTORE", - "gas": 1583635, - "gasCost": 3, "depth": 1, + "gas": 1594593, + "gasCost": 3, + "op": "MSTORE", + "pc": 617, "stack": [ "0x3aa18088", "0x149", @@ -24749,11 +24749,11 @@ ] }, { - "pc": 618, - "op": "POP", - "gas": 1583632, - "gasCost": 2, "depth": 1, + "gas": 1594590, + "gasCost": 2, + "op": "POP", + "pc": 618, "stack": [ "0x3aa18088", "0x149", @@ -24767,11 +24767,11 @@ ] }, { - "pc": 619, - "op": "SWAP1", - "gas": 1583630, - "gasCost": 3, "depth": 1, + "gas": 1594588, + "gasCost": 3, + "op": "SWAP1", + "pc": 619, "stack": [ "0x3aa18088", "0x149", @@ -24784,11 +24784,11 @@ ] }, { - "pc": 620, - "op": "POP", - "gas": 1583627, - "gasCost": 2, "depth": 1, + "gas": 1594585, + "gasCost": 2, + "op": "POP", + "pc": 620, "stack": [ "0x3aa18088", "0x149", @@ -24801,11 +24801,11 @@ ] }, { - "pc": 621, - "op": "PUSH1", - "gas": 1583625, - "gasCost": 3, "depth": 1, + "gas": 1594583, + "gasCost": 3, + "op": "PUSH1", + "pc": 621, "stack": [ "0x3aa18088", "0x149", @@ -24817,11 +24817,11 @@ ] }, { - "pc": 623, - "op": "DUP2", - "gas": 1583622, - "gasCost": 3, "depth": 1, + "gas": 1594580, + "gasCost": 3, + "op": "DUP2", + "pc": 623, "stack": [ "0x3aa18088", "0x149", @@ -24834,11 +24834,11 @@ ] }, { - "pc": 624, - "op": "DUP1", - "gas": 1583619, - "gasCost": 3, "depth": 1, + "gas": 1594577, + "gasCost": 3, + "op": "DUP1", + "pc": 624, "stack": [ "0x3aa18088", "0x149", @@ -24852,11 +24852,11 @@ ] }, { - "pc": 625, - "op": "MLOAD", - "gas": 1583616, - "gasCost": 3, "depth": 1, + "gas": 1594574, + "gasCost": 3, + "op": "MLOAD", + "pc": 625, "stack": [ "0x3aa18088", "0x149", @@ -24871,11 +24871,11 @@ ] }, { - "pc": 626, - "op": "SWAP1", - "gas": 1583613, - "gasCost": 3, "depth": 1, + "gas": 1594571, + "gasCost": 3, + "op": "SWAP1", + "pc": 626, "stack": [ "0x3aa18088", "0x149", @@ -24890,11 +24890,11 @@ ] }, { - "pc": 627, - "op": "PUSH1", - "gas": 1583610, - "gasCost": 3, "depth": 1, + "gas": 1594568, + "gasCost": 3, + "op": "PUSH1", + "pc": 627, "stack": [ "0x3aa18088", "0x149", @@ -24909,11 +24909,11 @@ ] }, { - "pc": 629, - "op": "ADD", - "gas": 1583607, - "gasCost": 3, "depth": 1, + "gas": 1594565, + "gasCost": 3, + "op": "ADD", + "pc": 629, "stack": [ "0x3aa18088", "0x149", @@ -24929,11 +24929,11 @@ ] }, { - "pc": 630, - "op": "KECCAK256", - "gas": 1583604, - "gasCost": 36, "depth": 1, + "gas": 1594562, + "gasCost": 36, + "op": "KECCAK256", + "pc": 630, "stack": [ "0x3aa18088", "0x149", @@ -24948,11 +24948,11 @@ ] }, { - "pc": 631, - "op": "SWAP1", - "gas": 1583568, - "gasCost": 3, "depth": 1, + "gas": 1594526, + "gasCost": 3, + "op": "SWAP1", + "pc": 631, "stack": [ "0x3aa18088", "0x149", @@ -24966,11 +24966,11 @@ ] }, { - "pc": 632, - "op": "POP", - "gas": 1583565, - "gasCost": 2, "depth": 1, + "gas": 1594523, + "gasCost": 2, + "op": "POP", + "pc": 632, "stack": [ "0x3aa18088", "0x149", @@ -24984,11 +24984,11 @@ ] }, { - "pc": 633, - "op": "DUP1", - "gas": 1583563, - "gasCost": 3, "depth": 1, + "gas": 1594521, + "gasCost": 3, + "op": "DUP1", + "pc": 633, "stack": [ "0x3aa18088", "0x149", @@ -25001,11 +25001,11 @@ ] }, { - "pc": 634, - "op": "SWAP3", - "gas": 1583560, - "gasCost": 3, "depth": 1, + "gas": 1594518, + "gasCost": 3, + "op": "SWAP3", + "pc": 634, "stack": [ "0x3aa18088", "0x149", @@ -25019,11 +25019,11 @@ ] }, { - "pc": 635, - "op": "POP", - "gas": 1583557, - "gasCost": 2, "depth": 1, + "gas": 1594515, + "gasCost": 2, + "op": "POP", + "pc": 635, "stack": [ "0x3aa18088", "0x149", @@ -25037,11 +25037,11 @@ ] }, { - "pc": 636, - "op": "POP", - "gas": 1583555, - "gasCost": 2, "depth": 1, + "gas": 1594513, + "gasCost": 2, + "op": "POP", + "pc": 636, "stack": [ "0x3aa18088", "0x149", @@ -25054,11 +25054,11 @@ ] }, { - "pc": 637, - "op": "POP", - "gas": 1583553, - "gasCost": 2, "depth": 1, + "gas": 1594511, + "gasCost": 2, + "op": "POP", + "pc": 637, "stack": [ "0x3aa18088", "0x149", @@ -25070,11 +25070,11 @@ ] }, { - "pc": 638, - "op": "SWAP1", - "gas": 1583551, - "gasCost": 3, "depth": 1, + "gas": 1594509, + "gasCost": 3, + "op": "SWAP1", + "pc": 638, "stack": [ "0x3aa18088", "0x149", @@ -25085,11 +25085,11 @@ ] }, { - "pc": 639, - "op": "JUMP", - "gas": 1583548, - "gasCost": 8, "depth": 1, + "gas": 1594506, + "gasCost": 8, + "op": "JUMP", + "pc": 639, "stack": [ "0x3aa18088", "0x149", @@ -25100,11 +25100,11 @@ ] }, { - "pc": 1010, - "op": "JUMPDEST", - "gas": 1583540, - "gasCost": 1, "depth": 1, + "gas": 1594498, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 1010, "stack": [ "0x3aa18088", "0x149", @@ -25114,11 +25114,11 @@ ] }, { - "pc": 1011, - "op": "POP", - "gas": 1583539, - "gasCost": 2, "depth": 1, + "gas": 1594497, + "gasCost": 2, + "op": "POP", + "pc": 1011, "stack": [ "0x3aa18088", "0x149", @@ -25128,11 +25128,11 @@ ] }, { - "pc": 1012, - "op": "PUSH1", - "gas": 1583537, - "gasCost": 3, "depth": 1, + "gas": 1594495, + "gasCost": 3, + "op": "PUSH1", + "pc": 1012, "stack": [ "0x3aa18088", "0x149", @@ -25141,11 +25141,11 @@ ] }, { - "pc": 1014, - "op": "DUP1", - "gas": 1583534, - "gasCost": 3, "depth": 1, + "gas": 1594492, + "gasCost": 3, + "op": "DUP1", + "pc": 1014, "stack": [ "0x3aa18088", "0x149", @@ -25155,11 +25155,11 @@ ] }, { - "pc": 1015, - "op": "SLOAD", - "gas": 1583531, - "gasCost": 100, "depth": 1, + "gas": 1594489, + "gasCost": 200, + "op": "SLOAD", + "pc": 1015, "stack": [ "0x3aa18088", "0x149", @@ -25169,236 +25169,236 @@ "0x0" ], "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000ccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0000000000000000000000000000000000000000000000000000000000000000": "0000000000000000000000005b659fd8bdc52879d0c3697038537da40832b759", "0000000000000000000000000000000000000000000000000000000000000001": "00000000000000000000000000000000000000000000000000000000000003e8", "0000000000000000000000000000000000000000000000000000000000000003": "00000000000000000000000000000000000000000000000000000000000003e9" } }, { - "pc": 1016, - "op": "SWAP1", - "gas": 1583431, - "gasCost": 3, "depth": 1, + "gas": 1594289, + "gasCost": 3, + "op": "SWAP1", + "pc": 1016, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585" + "0x5b659fd8bdc52879d0c3697038537da40832b759" ] }, { - "pc": 1017, - "op": "PUSH2", - "gas": 1583428, - "gasCost": 3, "depth": 1, + "gas": 1594286, + "gasCost": 3, + "op": "PUSH2", + "pc": 1017, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0x0" ] }, { - "pc": 1020, - "op": "EXP", - "gas": 1583425, - "gasCost": 10, "depth": 1, + "gas": 1594283, + "gasCost": 10, + "op": "EXP", + "pc": 1020, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0x0", "0x100" ] }, { - "pc": 1021, - "op": "SWAP1", - "gas": 1583415, - "gasCost": 3, "depth": 1, + "gas": 1594273, + "gasCost": 3, + "op": "SWAP1", + "pc": 1021, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0x1" ] }, { - "pc": 1022, - "op": "DIV", - "gas": 1583412, - "gasCost": 5, "depth": 1, + "gas": 1594270, + "gasCost": 5, + "op": "DIV", + "pc": 1022, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", "0x1", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585" + "0x5b659fd8bdc52879d0c3697038537da40832b759" ] }, { - "pc": 1023, - "op": "PUSH20", - "gas": 1583407, - "gasCost": 3, "depth": 1, + "gas": 1594265, + "gasCost": 3, + "op": "PUSH20", + "pc": 1023, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585" + "0x5b659fd8bdc52879d0c3697038537da40832b759" ] }, { - "pc": 1044, - "op": "AND", - "gas": 1583404, - "gasCost": 3, "depth": 1, + "gas": 1594262, + "gasCost": 3, + "op": "AND", + "pc": 1044, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xffffffffffffffffffffffffffffffffffffffff" ] }, { - "pc": 1045, - "op": "PUSH20", - "gas": 1583401, - "gasCost": 3, "depth": 1, + "gas": 1594259, + "gasCost": 3, + "op": "PUSH20", + "pc": 1045, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585" + "0x5b659fd8bdc52879d0c3697038537da40832b759" ] }, { - "pc": 1066, - "op": "AND", - "gas": 1583398, - "gasCost": 3, "depth": 1, + "gas": 1594256, + "gasCost": 3, + "op": "AND", + "pc": 1066, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xffffffffffffffffffffffffffffffffffffffff" ] }, { - "pc": 1067, - "op": "PUSH4", - "gas": 1583395, - "gasCost": 3, "depth": 1, + "gas": 1594253, + "gasCost": 3, + "op": "PUSH4", + "pc": 1067, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585" + "0x5b659fd8bdc52879d0c3697038537da40832b759" ] }, { - "pc": 1072, - "op": "DUP4", - "gas": 1583392, - "gasCost": 3, "depth": 1, + "gas": 1594250, + "gasCost": 3, + "op": "DUP4", + "pc": 1072, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xa0712d68" ] }, { - "pc": 1073, - "op": "PUSH1", - "gas": 1583389, - "gasCost": 3, "depth": 1, + "gas": 1594247, + "gasCost": 3, + "op": "PUSH1", + "pc": 1073, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xa0712d68", "0x3e8" ] }, { - "pc": 1075, - "op": "MLOAD", - "gas": 1583386, - "gasCost": 3, "depth": 1, + "gas": 1594244, + "gasCost": 3, + "op": "MLOAD", + "pc": 1075, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xa0712d68", "0x3e8", "0x40" ] }, { - "pc": 1076, - "op": "DUP3", - "gas": 1583383, - "gasCost": 3, "depth": 1, + "gas": 1594241, + "gasCost": 3, + "op": "DUP3", + "pc": 1076, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xa0712d68", "0x3e8", "0xc0" ] }, { - "pc": 1077, - "op": "PUSH4", - "gas": 1583380, - "gasCost": 3, "depth": 1, + "gas": 1594238, + "gasCost": 3, + "op": "PUSH4", + "pc": 1077, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xa0712d68", "0x3e8", "0xc0", @@ -25406,17 +25406,17 @@ ] }, { - "pc": 1082, - "op": "AND", - "gas": 1583377, - "gasCost": 3, "depth": 1, + "gas": 1594235, + "gasCost": 3, + "op": "AND", + "pc": 1082, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xa0712d68", "0x3e8", "0xc0", @@ -25425,17 +25425,17 @@ ] }, { - "pc": 1083, - "op": "PUSH1", - "gas": 1583374, - "gasCost": 3, "depth": 1, + "gas": 1594232, + "gasCost": 3, + "op": "PUSH1", + "pc": 1083, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xa0712d68", "0x3e8", "0xc0", @@ -25443,17 +25443,17 @@ ] }, { - "pc": 1085, - "op": "SHL", - "gas": 1583371, - "gasCost": 3, "depth": 1, + "gas": 1594229, + "gasCost": 3, + "op": "SHL", + "pc": 1085, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xa0712d68", "0x3e8", "0xc0", @@ -25462,17 +25462,17 @@ ] }, { - "pc": 1086, - "op": "DUP2", - "gas": 1583368, - "gasCost": 3, "depth": 1, + "gas": 1594226, + "gasCost": 3, + "op": "DUP2", + "pc": 1086, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xa0712d68", "0x3e8", "0xc0", @@ -25480,17 +25480,17 @@ ] }, { - "pc": 1087, - "op": "MSTORE", - "gas": 1583365, - "gasCost": 3, "depth": 1, + "gas": 1594223, + "gasCost": 3, + "op": "MSTORE", + "pc": 1087, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xa0712d68", "0x3e8", "0xc0", @@ -25499,34 +25499,34 @@ ] }, { - "pc": 1088, - "op": "PUSH1", - "gas": 1583362, - "gasCost": 3, "depth": 1, + "gas": 1594220, + "gasCost": 3, + "op": "PUSH1", + "pc": 1088, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xa0712d68", "0x3e8", "0xc0" ] }, { - "pc": 1090, - "op": "ADD", - "gas": 1583359, - "gasCost": 3, "depth": 1, + "gas": 1594217, + "gasCost": 3, + "op": "ADD", + "pc": 1090, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xa0712d68", "0x3e8", "0xc0", @@ -25534,34 +25534,34 @@ ] }, { - "pc": 1091, - "op": "PUSH3", - "gas": 1583356, - "gasCost": 3, "depth": 1, + "gas": 1594214, + "gasCost": 3, + "op": "PUSH3", + "pc": 1091, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xa0712d68", "0x3e8", "0xc4" ] }, { - "pc": 1095, - "op": "SWAP2", - "gas": 1583353, - "gasCost": 3, "depth": 1, + "gas": 1594211, + "gasCost": 3, + "op": "SWAP2", + "pc": 1095, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xa0712d68", "0x3e8", "0xc4", @@ -25569,17 +25569,17 @@ ] }, { - "pc": 1096, - "op": "SWAP1", - "gas": 1583350, - "gasCost": 3, "depth": 1, + "gas": 1594208, + "gasCost": 3, + "op": "SWAP1", + "pc": 1096, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xa0712d68", "0x44e", "0xc4", @@ -25587,17 +25587,17 @@ ] }, { - "pc": 1097, - "op": "PUSH3", - "gas": 1583347, - "gasCost": 3, "depth": 1, + "gas": 1594205, + "gasCost": 3, + "op": "PUSH3", + "pc": 1097, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xa0712d68", "0x44e", "0x3e8", @@ -25605,17 +25605,17 @@ ] }, { - "pc": 1101, - "op": "JUMP", - "gas": 1583344, - "gasCost": 8, "depth": 1, + "gas": 1594202, + "gasCost": 8, + "op": "JUMP", + "pc": 1101, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xa0712d68", "0x44e", "0x3e8", @@ -25624,17 +25624,17 @@ ] }, { - "pc": 2421, - "op": "JUMPDEST", - "gas": 1583336, - "gasCost": 1, "depth": 1, + "gas": 1594194, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2421, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xa0712d68", "0x44e", "0x3e8", @@ -25642,17 +25642,17 @@ ] }, { - "pc": 2422, - "op": "PUSH1", - "gas": 1583335, - "gasCost": 3, "depth": 1, + "gas": 1594193, + "gasCost": 3, + "op": "PUSH1", + "pc": 2422, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xa0712d68", "0x44e", "0x3e8", @@ -25660,17 +25660,17 @@ ] }, { - "pc": 2424, - "op": "PUSH1", - "gas": 1583332, - "gasCost": 3, "depth": 1, + "gas": 1594190, + "gasCost": 3, + "op": "PUSH1", + "pc": 2424, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xa0712d68", "0x44e", "0x3e8", @@ -25679,17 +25679,17 @@ ] }, { - "pc": 2426, - "op": "DUP3", - "gas": 1583329, - "gasCost": 3, "depth": 1, + "gas": 1594187, + "gasCost": 3, + "op": "DUP3", + "pc": 2426, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xa0712d68", "0x44e", "0x3e8", @@ -25699,17 +25699,17 @@ ] }, { - "pc": 2427, - "op": "ADD", - "gas": 1583326, - "gasCost": 3, "depth": 1, + "gas": 1594184, + "gasCost": 3, + "op": "ADD", + "pc": 2427, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xa0712d68", "0x44e", "0x3e8", @@ -25720,17 +25720,17 @@ ] }, { - "pc": 2428, - "op": "SWAP1", - "gas": 1583323, - "gasCost": 3, "depth": 1, + "gas": 1594181, + "gasCost": 3, + "op": "SWAP1", + "pc": 2428, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xa0712d68", "0x44e", "0x3e8", @@ -25740,17 +25740,17 @@ ] }, { - "pc": 2429, - "op": "POP", - "gas": 1583320, - "gasCost": 2, "depth": 1, + "gas": 1594178, + "gasCost": 2, + "op": "POP", + "pc": 2429, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xa0712d68", "0x44e", "0x3e8", @@ -25760,17 +25760,17 @@ ] }, { - "pc": 2430, - "op": "PUSH3", - "gas": 1583318, - "gasCost": 3, "depth": 1, + "gas": 1594176, + "gasCost": 3, + "op": "PUSH3", + "pc": 2430, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xa0712d68", "0x44e", "0x3e8", @@ -25779,17 +25779,17 @@ ] }, { - "pc": 2434, - "op": "PUSH1", - "gas": 1583315, - "gasCost": 3, "depth": 1, + "gas": 1594173, + "gasCost": 3, + "op": "PUSH1", + "pc": 2434, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xa0712d68", "0x44e", "0x3e8", @@ -25799,17 +25799,17 @@ ] }, { - "pc": 2436, - "op": "DUP4", - "gas": 1583312, - "gasCost": 3, "depth": 1, + "gas": 1594170, + "gasCost": 3, + "op": "DUP4", + "pc": 2436, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xa0712d68", "0x44e", "0x3e8", @@ -25820,17 +25820,17 @@ ] }, { - "pc": 2437, - "op": "ADD", - "gas": 1583309, - "gasCost": 3, "depth": 1, + "gas": 1594167, + "gasCost": 3, + "op": "ADD", + "pc": 2437, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xa0712d68", "0x44e", "0x3e8", @@ -25842,17 +25842,17 @@ ] }, { - "pc": 2438, - "op": "DUP5", - "gas": 1583306, - "gasCost": 3, "depth": 1, + "gas": 1594164, + "gasCost": 3, + "op": "DUP5", + "pc": 2438, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xa0712d68", "0x44e", "0x3e8", @@ -25863,17 +25863,17 @@ ] }, { - "pc": 2439, - "op": "PUSH3", - "gas": 1583303, - "gasCost": 3, "depth": 1, + "gas": 1594161, + "gasCost": 3, + "op": "PUSH3", + "pc": 2439, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xa0712d68", "0x44e", "0x3e8", @@ -25885,17 +25885,17 @@ ] }, { - "pc": 2443, - "op": "JUMP", - "gas": 1583300, - "gasCost": 8, "depth": 1, + "gas": 1594158, + "gasCost": 8, + "op": "JUMP", + "pc": 2443, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xa0712d68", "0x44e", "0x3e8", @@ -25908,17 +25908,17 @@ ] }, { - "pc": 2404, - "op": "JUMPDEST", - "gas": 1583292, - "gasCost": 1, "depth": 1, + "gas": 1594150, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2404, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xa0712d68", "0x44e", "0x3e8", @@ -25930,17 +25930,17 @@ ] }, { - "pc": 2405, - "op": "PUSH3", - "gas": 1583291, - "gasCost": 3, "depth": 1, + "gas": 1594149, + "gasCost": 3, + "op": "PUSH3", + "pc": 2405, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xa0712d68", "0x44e", "0x3e8", @@ -25952,17 +25952,17 @@ ] }, { - "pc": 2409, - "op": "DUP2", - "gas": 1583288, - "gasCost": 3, "depth": 1, + "gas": 1594146, + "gasCost": 3, + "op": "DUP2", + "pc": 2409, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xa0712d68", "0x44e", "0x3e8", @@ -25975,17 +25975,17 @@ ] }, { - "pc": 2410, - "op": "PUSH3", - "gas": 1583285, - "gasCost": 3, "depth": 1, + "gas": 1594143, + "gasCost": 3, + "op": "PUSH3", + "pc": 2410, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xa0712d68", "0x44e", "0x3e8", @@ -25999,17 +25999,17 @@ ] }, { - "pc": 2414, - "op": "JUMP", - "gas": 1583282, - "gasCost": 8, "depth": 1, + "gas": 1594140, + "gasCost": 8, + "op": "JUMP", + "pc": 2414, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xa0712d68", "0x44e", "0x3e8", @@ -26024,17 +26024,17 @@ ] }, { - "pc": 2394, - "op": "JUMPDEST", - "gas": 1583274, - "gasCost": 1, "depth": 1, + "gas": 1594132, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2394, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xa0712d68", "0x44e", "0x3e8", @@ -26048,17 +26048,17 @@ ] }, { - "pc": 2395, - "op": "PUSH1", - "gas": 1583273, - "gasCost": 3, "depth": 1, + "gas": 1594131, + "gasCost": 3, + "op": "PUSH1", + "pc": 2395, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xa0712d68", "0x44e", "0x3e8", @@ -26072,17 +26072,17 @@ ] }, { - "pc": 2397, - "op": "DUP2", - "gas": 1583270, - "gasCost": 3, "depth": 1, + "gas": 1594128, + "gasCost": 3, + "op": "DUP2", + "pc": 2397, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xa0712d68", "0x44e", "0x3e8", @@ -26097,17 +26097,17 @@ ] }, { - "pc": 2398, - "op": "SWAP1", - "gas": 1583267, - "gasCost": 3, "depth": 1, + "gas": 1594125, + "gasCost": 3, + "op": "SWAP1", + "pc": 2398, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xa0712d68", "0x44e", "0x3e8", @@ -26123,17 +26123,17 @@ ] }, { - "pc": 2399, - "op": "POP", - "gas": 1583264, - "gasCost": 2, "depth": 1, + "gas": 1594122, + "gasCost": 2, + "op": "POP", + "pc": 2399, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xa0712d68", "0x44e", "0x3e8", @@ -26149,17 +26149,17 @@ ] }, { - "pc": 2400, - "op": "SWAP2", - "gas": 1583262, - "gasCost": 3, "depth": 1, + "gas": 1594120, + "gasCost": 3, + "op": "SWAP2", + "pc": 2400, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xa0712d68", "0x44e", "0x3e8", @@ -26174,17 +26174,17 @@ ] }, { - "pc": 2401, - "op": "SWAP1", - "gas": 1583259, - "gasCost": 3, "depth": 1, + "gas": 1594117, + "gasCost": 3, + "op": "SWAP1", + "pc": 2401, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xa0712d68", "0x44e", "0x3e8", @@ -26199,17 +26199,17 @@ ] }, { - "pc": 2402, - "op": "POP", - "gas": 1583256, - "gasCost": 2, "depth": 1, + "gas": 1594114, + "gasCost": 2, + "op": "POP", + "pc": 2402, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xa0712d68", "0x44e", "0x3e8", @@ -26224,17 +26224,17 @@ ] }, { - "pc": 2403, - "op": "JUMP", - "gas": 1583254, - "gasCost": 8, "depth": 1, + "gas": 1594112, + "gasCost": 8, + "op": "JUMP", + "pc": 2403, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xa0712d68", "0x44e", "0x3e8", @@ -26248,17 +26248,17 @@ ] }, { - "pc": 2415, - "op": "JUMPDEST", - "gas": 1583246, - "gasCost": 1, "depth": 1, + "gas": 1594104, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2415, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xa0712d68", "0x44e", "0x3e8", @@ -26271,17 +26271,17 @@ ] }, { - "pc": 2416, - "op": "DUP3", - "gas": 1583245, - "gasCost": 3, "depth": 1, + "gas": 1594103, + "gasCost": 3, + "op": "DUP3", + "pc": 2416, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xa0712d68", "0x44e", "0x3e8", @@ -26294,17 +26294,17 @@ ] }, { - "pc": 2417, - "op": "MSTORE", - "gas": 1583242, - "gasCost": 3, "depth": 1, + "gas": 1594100, + "gasCost": 3, + "op": "MSTORE", + "pc": 2417, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xa0712d68", "0x44e", "0x3e8", @@ -26318,17 +26318,17 @@ ] }, { - "pc": 2418, - "op": "POP", - "gas": 1583239, - "gasCost": 2, "depth": 1, + "gas": 1594097, + "gasCost": 2, + "op": "POP", + "pc": 2418, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xa0712d68", "0x44e", "0x3e8", @@ -26340,17 +26340,17 @@ ] }, { - "pc": 2419, - "op": "POP", - "gas": 1583237, - "gasCost": 2, "depth": 1, + "gas": 1594095, + "gasCost": 2, + "op": "POP", + "pc": 2419, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xa0712d68", "0x44e", "0x3e8", @@ -26361,17 +26361,17 @@ ] }, { - "pc": 2420, - "op": "JUMP", - "gas": 1583235, - "gasCost": 8, "depth": 1, + "gas": 1594093, + "gasCost": 8, + "op": "JUMP", + "pc": 2420, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xa0712d68", "0x44e", "0x3e8", @@ -26381,17 +26381,17 @@ ] }, { - "pc": 2444, - "op": "JUMPDEST", - "gas": 1583227, - "gasCost": 1, "depth": 1, + "gas": 1594085, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2444, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xa0712d68", "0x44e", "0x3e8", @@ -26400,17 +26400,17 @@ ] }, { - "pc": 2445, - "op": "SWAP3", - "gas": 1583226, - "gasCost": 3, "depth": 1, + "gas": 1594084, + "gasCost": 3, + "op": "SWAP3", + "pc": 2445, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xa0712d68", "0x44e", "0x3e8", @@ -26419,17 +26419,17 @@ ] }, { - "pc": 2446, - "op": "SWAP2", - "gas": 1583223, - "gasCost": 3, "depth": 1, + "gas": 1594081, + "gasCost": 3, + "op": "SWAP2", + "pc": 2446, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xa0712d68", "0xe4", "0x3e8", @@ -26438,17 +26438,17 @@ ] }, { - "pc": 2447, - "op": "POP", - "gas": 1583220, - "gasCost": 2, "depth": 1, + "gas": 1594078, + "gasCost": 2, + "op": "POP", + "pc": 2447, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xa0712d68", "0xe4", "0x44e", @@ -26457,17 +26457,17 @@ ] }, { - "pc": 2448, - "op": "POP", - "gas": 1583218, - "gasCost": 2, "depth": 1, + "gas": 1594076, + "gasCost": 2, + "op": "POP", + "pc": 2448, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xa0712d68", "0xe4", "0x44e", @@ -26475,83 +26475,83 @@ ] }, { - "pc": 2449, - "op": "JUMP", - "gas": 1583216, - "gasCost": 8, "depth": 1, + "gas": 1594074, + "gasCost": 8, + "op": "JUMP", + "pc": 2449, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xa0712d68", "0xe4", "0x44e" ] }, { - "pc": 1102, - "op": "JUMPDEST", - "gas": 1583208, - "gasCost": 1, "depth": 1, + "gas": 1594066, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 1102, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xa0712d68", "0xe4" ] }, { - "pc": 1103, - "op": "PUSH1", - "gas": 1583207, - "gasCost": 3, "depth": 1, + "gas": 1594065, + "gasCost": 3, + "op": "PUSH1", + "pc": 1103, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xa0712d68", "0xe4" ] }, { - "pc": 1105, - "op": "PUSH1", - "gas": 1583204, - "gasCost": 3, "depth": 1, + "gas": 1594062, + "gasCost": 3, + "op": "PUSH1", + "pc": 1105, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xa0712d68", "0xe4", "0x20" ] }, { - "pc": 1107, - "op": "MLOAD", - "gas": 1583201, - "gasCost": 3, "depth": 1, + "gas": 1594059, + "gasCost": 3, + "op": "MLOAD", + "pc": 1107, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xa0712d68", "0xe4", "0x20", @@ -26559,17 +26559,17 @@ ] }, { - "pc": 1108, - "op": "DUP1", - "gas": 1583198, - "gasCost": 3, "depth": 1, + "gas": 1594056, + "gasCost": 3, + "op": "DUP1", + "pc": 1108, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xa0712d68", "0xe4", "0x20", @@ -26577,17 +26577,17 @@ ] }, { - "pc": 1109, - "op": "DUP4", - "gas": 1583195, - "gasCost": 3, "depth": 1, + "gas": 1594053, + "gasCost": 3, + "op": "DUP4", + "pc": 1109, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xa0712d68", "0xe4", "0x20", @@ -26596,17 +26596,17 @@ ] }, { - "pc": 1110, - "op": "SUB", - "gas": 1583192, - "gasCost": 3, "depth": 1, + "gas": 1594050, + "gasCost": 3, + "op": "SUB", + "pc": 1110, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xa0712d68", "0xe4", "0x20", @@ -26616,17 +26616,17 @@ ] }, { - "pc": 1111, - "op": "DUP2", - "gas": 1583189, - "gasCost": 3, "depth": 1, + "gas": 1594047, + "gasCost": 3, + "op": "DUP2", + "pc": 1111, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xa0712d68", "0xe4", "0x20", @@ -26635,17 +26635,17 @@ ] }, { - "pc": 1112, - "op": "PUSH1", - "gas": 1583186, - "gasCost": 3, "depth": 1, + "gas": 1594044, + "gasCost": 3, + "op": "PUSH1", + "pc": 1112, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xa0712d68", "0xe4", "0x20", @@ -26655,17 +26655,17 @@ ] }, { - "pc": 1114, - "op": "DUP8", - "gas": 1583183, - "gasCost": 3, "depth": 1, + "gas": 1594041, + "gasCost": 3, + "op": "DUP8", + "pc": 1114, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xa0712d68", "0xe4", "0x20", @@ -26676,17 +26676,17 @@ ] }, { - "pc": 1115, - "op": "GAS", - "gas": 1583180, - "gasCost": 2, "depth": 1, + "gas": 1594038, + "gasCost": 2, + "op": "GAS", + "pc": 1115, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xa0712d68", "0xe4", "0x20", @@ -26694,21 +26694,21 @@ "0x24", "0xc0", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585" + "0x5b659fd8bdc52879d0c3697038537da40832b759" ] }, { - "pc": 1116, - "op": "CALL", - "gas": 1583178, - "gasCost": 1558443, "depth": 1, + "gas": 1594036, + "gasCost": 8043, + "op": "CALL", + "pc": 1116, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xa0712d68", "0xe4", "0x20", @@ -26716,85 +26716,85 @@ "0x24", "0xc0", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", - "0x18284a" + "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x1852b4" ] }, { - "pc": 0, - "op": "PUSH1", - "gas": 1558343, - "gasCost": 3, "depth": 2, + "gas": 1568441, + "gasCost": 3, + "op": "PUSH1", + "pc": 0, "stack": [] }, { - "pc": 2, - "op": "PUSH1", - "gas": 1558340, - "gasCost": 3, "depth": 2, + "gas": 1568438, + "gasCost": 3, + "op": "PUSH1", + "pc": 2, "stack": [ "0x80" ] }, { - "pc": 4, - "op": "MSTORE", - "gas": 1558337, - "gasCost": 12, "depth": 2, + "gas": 1568435, + "gasCost": 12, + "op": "MSTORE", + "pc": 4, "stack": [ "0x80", "0x40" ] }, { - "pc": 5, - "op": "CALLVALUE", - "gas": 1558325, - "gasCost": 2, "depth": 2, + "gas": 1568423, + "gasCost": 2, + "op": "CALLVALUE", + "pc": 5, "stack": [] }, { - "pc": 6, - "op": "DUP1", - "gas": 1558323, - "gasCost": 3, "depth": 2, + "gas": 1568421, + "gasCost": 3, + "op": "DUP1", + "pc": 6, "stack": [ "0x0" ] }, { - "pc": 7, - "op": "ISZERO", - "gas": 1558320, - "gasCost": 3, "depth": 2, + "gas": 1568418, + "gasCost": 3, + "op": "ISZERO", + "pc": 7, "stack": [ "0x0", "0x0" ] }, { - "pc": 8, - "op": "PUSH2", - "gas": 1558317, - "gasCost": 3, "depth": 2, + "gas": 1568415, + "gasCost": 3, + "op": "PUSH2", + "pc": 8, "stack": [ "0x0", "0x1" ] }, { - "pc": 11, - "op": "JUMPI", - "gas": 1558314, - "gasCost": 10, "depth": 2, + "gas": 1568412, + "gasCost": 10, + "op": "JUMPI", + "pc": 11, "stack": [ "0x0", "0x1", @@ -26802,141 +26802,141 @@ ] }, { - "pc": 16, - "op": "JUMPDEST", - "gas": 1558304, - "gasCost": 1, "depth": 2, + "gas": 1568402, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 16, "stack": [ "0x0" ] }, { - "pc": 17, - "op": "POP", - "gas": 1558303, - "gasCost": 2, "depth": 2, + "gas": 1568401, + "gasCost": 2, + "op": "POP", + "pc": 17, "stack": [ "0x0" ] }, { - "pc": 18, - "op": "PUSH1", - "gas": 1558301, - "gasCost": 3, "depth": 2, + "gas": 1568399, + "gasCost": 3, + "op": "PUSH1", + "pc": 18, "stack": [] }, { - "pc": 20, - "op": "CALLDATASIZE", - "gas": 1558298, - "gasCost": 2, "depth": 2, + "gas": 1568396, + "gasCost": 2, + "op": "CALLDATASIZE", + "pc": 20, "stack": [ "0x4" ] }, { - "pc": 21, - "op": "LT", - "gas": 1558296, - "gasCost": 3, "depth": 2, + "gas": 1568394, + "gasCost": 3, + "op": "LT", + "pc": 21, "stack": [ "0x4", "0x24" ] }, { - "pc": 22, - "op": "PUSH2", - "gas": 1558293, - "gasCost": 3, "depth": 2, + "gas": 1568391, + "gasCost": 3, + "op": "PUSH2", + "pc": 22, "stack": [ "0x0" ] }, { - "pc": 25, - "op": "JUMPI", - "gas": 1558290, - "gasCost": 10, "depth": 2, + "gas": 1568388, + "gasCost": 10, + "op": "JUMPI", + "pc": 25, "stack": [ "0x0", "0x62" ] }, { - "pc": 26, - "op": "PUSH1", - "gas": 1558280, - "gasCost": 3, "depth": 2, + "gas": 1568378, + "gasCost": 3, + "op": "PUSH1", + "pc": 26, "stack": [] }, { - "pc": 28, - "op": "CALLDATALOAD", - "gas": 1558277, - "gasCost": 3, "depth": 2, + "gas": 1568375, + "gasCost": 3, + "op": "CALLDATALOAD", + "pc": 28, "stack": [ "0x0" ] }, { - "pc": 29, - "op": "PUSH1", - "gas": 1558274, - "gasCost": 3, "depth": 2, + "gas": 1568372, + "gasCost": 3, + "op": "PUSH1", + "pc": 29, "stack": [ "0xa0712d6800000000000000000000000000000000000000000000000000000000" ] }, { - "pc": 31, - "op": "SHR", - "gas": 1558271, - "gasCost": 3, "depth": 2, + "gas": 1568369, + "gasCost": 3, + "op": "SHR", + "pc": 31, "stack": [ "0xa0712d6800000000000000000000000000000000000000000000000000000000", "0xe0" ] }, { - "pc": 32, - "op": "DUP1", - "gas": 1558268, - "gasCost": 3, "depth": 2, + "gas": 1568366, + "gasCost": 3, + "op": "DUP1", + "pc": 32, "stack": [ "0xa0712d68" ] }, { - "pc": 33, - "op": "PUSH4", - "gas": 1558265, - "gasCost": 3, "depth": 2, + "gas": 1568363, + "gasCost": 3, + "op": "PUSH4", + "pc": 33, "stack": [ "0xa0712d68", "0xa0712d68" ] }, { - "pc": 38, - "op": "EQ", - "gas": 1558262, - "gasCost": 3, "depth": 2, + "gas": 1568360, + "gasCost": 3, + "op": "EQ", + "pc": 38, "stack": [ "0xa0712d68", "0xa0712d68", @@ -26944,22 +26944,22 @@ ] }, { - "pc": 39, - "op": "PUSH2", - "gas": 1558259, - "gasCost": 3, "depth": 2, + "gas": 1568357, + "gasCost": 3, + "op": "PUSH2", + "pc": 39, "stack": [ "0xa0712d68", "0x0" ] }, - { - "pc": 42, - "op": "JUMPI", - "gas": 1558256, - "gasCost": 10, + { "depth": 2, + "gas": 1568354, + "gasCost": 10, + "op": "JUMPI", + "pc": 42, "stack": [ "0xa0712d68", "0x0", @@ -26967,32 +26967,32 @@ ] }, { - "pc": 43, - "op": "DUP1", - "gas": 1558246, - "gasCost": 3, "depth": 2, + "gas": 1568344, + "gasCost": 3, + "op": "DUP1", + "pc": 43, "stack": [ "0xa0712d68" ] }, { - "pc": 44, - "op": "PUSH4", - "gas": 1558243, - "gasCost": 3, "depth": 2, + "gas": 1568341, + "gasCost": 3, + "op": "PUSH4", + "pc": 44, "stack": [ "0xa0712d68", "0xa0712d68" ] }, { - "pc": 49, - "op": "EQ", - "gas": 1558240, - "gasCost": 3, "depth": 2, + "gas": 1568338, + "gasCost": 3, + "op": "EQ", + "pc": 49, "stack": [ "0xa0712d68", "0xa0712d68", @@ -27000,22 +27000,22 @@ ] }, { - "pc": 50, - "op": "PUSH2", - "gas": 1558237, - "gasCost": 3, "depth": 2, + "gas": 1568335, + "gasCost": 3, + "op": "PUSH2", + "pc": 50, "stack": [ "0xa0712d68", "0x0" ] }, { - "pc": 53, - "op": "JUMPI", - "gas": 1558234, - "gasCost": 10, "depth": 2, + "gas": 1568332, + "gasCost": 10, + "op": "JUMPI", + "pc": 53, "stack": [ "0xa0712d68", "0x0", @@ -27023,32 +27023,32 @@ ] }, { - "pc": 54, - "op": "DUP1", - "gas": 1558224, - "gasCost": 3, "depth": 2, + "gas": 1568322, + "gasCost": 3, + "op": "DUP1", + "pc": 54, "stack": [ "0xa0712d68" ] }, { - "pc": 55, - "op": "PUSH4", - "gas": 1558221, - "gasCost": 3, "depth": 2, + "gas": 1568319, + "gasCost": 3, + "op": "PUSH4", + "pc": 55, "stack": [ "0xa0712d68", "0xa0712d68" ] }, { - "pc": 60, - "op": "EQ", - "gas": 1558218, - "gasCost": 3, "depth": 2, + "gas": 1568316, + "gasCost": 3, + "op": "EQ", + "pc": 60, "stack": [ "0xa0712d68", "0xa0712d68", @@ -27056,22 +27056,22 @@ ] }, { - "pc": 61, - "op": "PUSH2", - "gas": 1558215, - "gasCost": 3, "depth": 2, + "gas": 1568313, + "gasCost": 3, + "op": "PUSH2", + "pc": 61, "stack": [ "0xa0712d68", "0x0" ] }, { - "pc": 64, - "op": "JUMPI", - "gas": 1558212, - "gasCost": 10, "depth": 2, + "gas": 1568310, + "gasCost": 10, + "op": "JUMPI", + "pc": 64, "stack": [ "0xa0712d68", "0x0", @@ -27079,32 +27079,32 @@ ] }, { - "pc": 65, - "op": "DUP1", - "gas": 1558202, - "gasCost": 3, "depth": 2, + "gas": 1568300, + "gasCost": 3, + "op": "DUP1", + "pc": 65, "stack": [ "0xa0712d68" ] }, { - "pc": 66, - "op": "PUSH4", - "gas": 1558199, - "gasCost": 3, "depth": 2, + "gas": 1568297, + "gasCost": 3, + "op": "PUSH4", + "pc": 66, "stack": [ "0xa0712d68", "0xa0712d68" ] }, { - "pc": 71, - "op": "EQ", - "gas": 1558196, - "gasCost": 3, "depth": 2, + "gas": 1568294, + "gasCost": 3, + "op": "EQ", + "pc": 71, "stack": [ "0xa0712d68", "0xa0712d68", @@ -27112,22 +27112,22 @@ ] }, { - "pc": 72, - "op": "PUSH2", - "gas": 1558193, - "gasCost": 3, "depth": 2, + "gas": 1568291, + "gasCost": 3, + "op": "PUSH2", + "pc": 72, "stack": [ "0xa0712d68", "0x1" ] }, { - "pc": 75, - "op": "JUMPI", - "gas": 1558190, - "gasCost": 10, "depth": 2, + "gas": 1568288, + "gasCost": 10, + "op": "JUMPI", + "pc": 75, "stack": [ "0xa0712d68", "0x1", @@ -27135,42 +27135,42 @@ ] }, { - "pc": 191, - "op": "JUMPDEST", - "gas": 1558180, - "gasCost": 1, "depth": 2, + "gas": 1568278, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 191, "stack": [ "0xa0712d68" ] }, { - "pc": 192, - "op": "PUSH2", - "gas": 1558179, - "gasCost": 3, "depth": 2, + "gas": 1568277, + "gasCost": 3, + "op": "PUSH2", + "pc": 192, "stack": [ "0xa0712d68" ] }, { - "pc": 195, - "op": "PUSH1", - "gas": 1558176, - "gasCost": 3, "depth": 2, + "gas": 1568274, + "gasCost": 3, + "op": "PUSH1", + "pc": 195, "stack": [ "0xa0712d68", "0xd9" ] }, { - "pc": 197, - "op": "DUP1", - "gas": 1558173, - "gasCost": 3, "depth": 2, + "gas": 1568271, + "gasCost": 3, + "op": "DUP1", + "pc": 197, "stack": [ "0xa0712d68", "0xd9", @@ -27178,11 +27178,11 @@ ] }, { - "pc": 198, - "op": "CALLDATASIZE", - "gas": 1558170, - "gasCost": 2, "depth": 2, + "gas": 1568268, + "gasCost": 2, + "op": "CALLDATASIZE", + "pc": 198, "stack": [ "0xa0712d68", "0xd9", @@ -27191,11 +27191,11 @@ ] }, { - "pc": 199, - "op": "SUB", - "gas": 1558168, - "gasCost": 3, "depth": 2, + "gas": 1568266, + "gasCost": 3, + "op": "SUB", + "pc": 199, "stack": [ "0xa0712d68", "0xd9", @@ -27205,11 +27205,11 @@ ] }, { - "pc": 200, - "op": "DUP2", - "gas": 1558165, - "gasCost": 3, "depth": 2, + "gas": 1568263, + "gasCost": 3, + "op": "DUP2", + "pc": 200, "stack": [ "0xa0712d68", "0xd9", @@ -27218,11 +27218,11 @@ ] }, { - "pc": 201, - "op": "ADD", - "gas": 1558162, - "gasCost": 3, "depth": 2, + "gas": 1568260, + "gasCost": 3, + "op": "ADD", + "pc": 201, "stack": [ "0xa0712d68", "0xd9", @@ -27232,11 +27232,11 @@ ] }, { - "pc": 202, - "op": "SWAP1", - "gas": 1558159, - "gasCost": 3, "depth": 2, + "gas": 1568257, + "gasCost": 3, + "op": "SWAP1", + "pc": 202, "stack": [ "0xa0712d68", "0xd9", @@ -27245,11 +27245,11 @@ ] }, { - "pc": 203, - "op": "PUSH2", - "gas": 1558156, - "gasCost": 3, "depth": 2, + "gas": 1568254, + "gasCost": 3, + "op": "PUSH2", + "pc": 203, "stack": [ "0xa0712d68", "0xd9", @@ -27258,11 +27258,11 @@ ] }, { - "pc": 206, - "op": "SWAP2", - "gas": 1558153, - "gasCost": 3, "depth": 2, + "gas": 1568251, + "gasCost": 3, + "op": "SWAP2", + "pc": 206, "stack": [ "0xa0712d68", "0xd9", @@ -27272,11 +27272,11 @@ ] }, { - "pc": 207, - "op": "SWAP1", - "gas": 1558150, - "gasCost": 3, "depth": 2, + "gas": 1568248, + "gasCost": 3, + "op": "SWAP1", + "pc": 207, "stack": [ "0xa0712d68", "0xd9", @@ -27286,11 +27286,11 @@ ] }, { - "pc": 208, - "op": "PUSH2", - "gas": 1558147, - "gasCost": 3, "depth": 2, + "gas": 1568245, + "gasCost": 3, + "op": "PUSH2", + "pc": 208, "stack": [ "0xa0712d68", "0xd9", @@ -27300,11 +27300,11 @@ ] }, { - "pc": 211, - "op": "JUMP", - "gas": 1558144, - "gasCost": 8, "depth": 2, + "gas": 1568242, + "gasCost": 8, + "op": "JUMP", + "pc": 211, "stack": [ "0xa0712d68", "0xd9", @@ -27315,11 +27315,11 @@ ] }, { - "pc": 835, - "op": "JUMPDEST", - "gas": 1558136, - "gasCost": 1, "depth": 2, + "gas": 1568234, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 835, "stack": [ "0xa0712d68", "0xd9", @@ -27329,11 +27329,11 @@ ] }, { - "pc": 836, - "op": "PUSH1", - "gas": 1558135, - "gasCost": 3, "depth": 2, + "gas": 1568233, + "gasCost": 3, + "op": "PUSH1", + "pc": 836, "stack": [ "0xa0712d68", "0xd9", @@ -27343,11 +27343,11 @@ ] }, { - "pc": 838, - "op": "PUSH1", - "gas": 1558132, - "gasCost": 3, "depth": 2, + "gas": 1568230, + "gasCost": 3, + "op": "PUSH1", + "pc": 838, "stack": [ "0xa0712d68", "0xd9", @@ -27358,11 +27358,11 @@ ] }, { - "pc": 840, - "op": "DUP3", - "gas": 1558129, - "gasCost": 3, "depth": 2, + "gas": 1568227, + "gasCost": 3, + "op": "DUP3", + "pc": 840, "stack": [ "0xa0712d68", "0xd9", @@ -27374,11 +27374,11 @@ ] }, { - "pc": 841, - "op": "DUP5", - "gas": 1558126, - "gasCost": 3, "depth": 2, + "gas": 1568224, + "gasCost": 3, + "op": "DUP5", + "pc": 841, "stack": [ "0xa0712d68", "0xd9", @@ -27391,11 +27391,11 @@ ] }, { - "pc": 842, - "op": "SUB", - "gas": 1558123, - "gasCost": 3, "depth": 2, + "gas": 1568221, + "gasCost": 3, + "op": "SUB", + "pc": 842, "stack": [ "0xa0712d68", "0xd9", @@ -27409,11 +27409,11 @@ ] }, { - "pc": 843, - "op": "SLT", - "gas": 1558120, - "gasCost": 3, "depth": 2, + "gas": 1568218, + "gasCost": 3, + "op": "SLT", + "pc": 843, "stack": [ "0xa0712d68", "0xd9", @@ -27426,11 +27426,11 @@ ] }, { - "pc": 844, - "op": "ISZERO", - "gas": 1558117, - "gasCost": 3, "depth": 2, + "gas": 1568215, + "gasCost": 3, + "op": "ISZERO", + "pc": 844, "stack": [ "0xa0712d68", "0xd9", @@ -27442,11 +27442,11 @@ ] }, { - "pc": 845, - "op": "PUSH2", - "gas": 1558114, - "gasCost": 3, "depth": 2, + "gas": 1568212, + "gasCost": 3, + "op": "PUSH2", + "pc": 845, "stack": [ "0xa0712d68", "0xd9", @@ -27458,11 +27458,11 @@ ] }, { - "pc": 848, - "op": "JUMPI", - "gas": 1558111, - "gasCost": 10, "depth": 2, + "gas": 1568209, + "gasCost": 10, + "op": "JUMPI", + "pc": 848, "stack": [ "0xa0712d68", "0xd9", @@ -27475,11 +27475,11 @@ ] }, { - "pc": 857, - "op": "JUMPDEST", - "gas": 1558101, - "gasCost": 1, "depth": 2, + "gas": 1568199, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 857, "stack": [ "0xa0712d68", "0xd9", @@ -27490,11 +27490,11 @@ ] }, { - "pc": 858, - "op": "PUSH1", - "gas": 1558100, - "gasCost": 3, "depth": 2, + "gas": 1568198, + "gasCost": 3, + "op": "PUSH1", + "pc": 858, "stack": [ "0xa0712d68", "0xd9", @@ -27505,11 +27505,11 @@ ] }, { - "pc": 860, - "op": "PUSH2", - "gas": 1558097, - "gasCost": 3, "depth": 2, + "gas": 1568195, + "gasCost": 3, + "op": "PUSH2", + "pc": 860, "stack": [ "0xa0712d68", "0xd9", @@ -27521,11 +27521,11 @@ ] }, { - "pc": 863, - "op": "DUP5", - "gas": 1558094, - "gasCost": 3, "depth": 2, + "gas": 1568192, + "gasCost": 3, + "op": "DUP5", + "pc": 863, "stack": [ "0xa0712d68", "0xd9", @@ -27538,11 +27538,11 @@ ] }, { - "pc": 864, - "op": "DUP3", - "gas": 1558091, - "gasCost": 3, "depth": 2, + "gas": 1568189, + "gasCost": 3, + "op": "DUP3", + "pc": 864, "stack": [ "0xa0712d68", "0xd9", @@ -27556,11 +27556,11 @@ ] }, { - "pc": 865, - "op": "DUP6", - "gas": 1558088, - "gasCost": 3, "depth": 2, + "gas": 1568186, + "gasCost": 3, + "op": "DUP6", + "pc": 865, "stack": [ "0xa0712d68", "0xd9", @@ -27575,11 +27575,11 @@ ] }, { - "pc": 866, - "op": "ADD", - "gas": 1558085, - "gasCost": 3, "depth": 2, + "gas": 1568183, + "gasCost": 3, + "op": "ADD", + "pc": 866, "stack": [ "0xa0712d68", "0xd9", @@ -27595,11 +27595,11 @@ ] }, { - "pc": 867, - "op": "PUSH2", - "gas": 1558082, - "gasCost": 3, "depth": 2, + "gas": 1568180, + "gasCost": 3, + "op": "PUSH2", + "pc": 867, "stack": [ "0xa0712d68", "0xd9", @@ -27614,11 +27614,11 @@ ] }, { - "pc": 870, - "op": "JUMP", - "gas": 1558079, - "gasCost": 8, "depth": 2, + "gas": 1568177, + "gasCost": 8, + "op": "JUMP", + "pc": 870, "stack": [ "0xa0712d68", "0xd9", @@ -27634,11 +27634,11 @@ ] }, { - "pc": 814, - "op": "JUMPDEST", - "gas": 1558071, - "gasCost": 1, "depth": 2, + "gas": 1568169, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 814, "stack": [ "0xa0712d68", "0xd9", @@ -27653,11 +27653,11 @@ ] }, { - "pc": 815, - "op": "PUSH1", - "gas": 1558070, - "gasCost": 3, "depth": 2, + "gas": 1568168, + "gasCost": 3, + "op": "PUSH1", + "pc": 815, "stack": [ "0xa0712d68", "0xd9", @@ -27672,11 +27672,11 @@ ] }, { - "pc": 817, - "op": "DUP2", - "gas": 1558067, - "gasCost": 3, "depth": 2, + "gas": 1568165, + "gasCost": 3, + "op": "DUP2", + "pc": 817, "stack": [ "0xa0712d68", "0xd9", @@ -27692,11 +27692,11 @@ ] }, { - "pc": 818, - "op": "CALLDATALOAD", - "gas": 1558064, - "gasCost": 3, "depth": 2, + "gas": 1568162, + "gasCost": 3, + "op": "CALLDATALOAD", + "pc": 818, "stack": [ "0xa0712d68", "0xd9", @@ -27713,11 +27713,11 @@ ] }, { - "pc": 819, - "op": "SWAP1", - "gas": 1558061, - "gasCost": 3, "depth": 2, + "gas": 1568159, + "gasCost": 3, + "op": "SWAP1", + "pc": 819, "stack": [ "0xa0712d68", "0xd9", @@ -27734,11 +27734,11 @@ ] }, { - "pc": 820, - "op": "POP", - "gas": 1558058, - "gasCost": 2, "depth": 2, + "gas": 1568156, + "gasCost": 2, + "op": "POP", + "pc": 820, "stack": [ "0xa0712d68", "0xd9", @@ -27755,11 +27755,11 @@ ] }, { - "pc": 821, - "op": "PUSH2", - "gas": 1558056, - "gasCost": 3, "depth": 2, + "gas": 1568154, + "gasCost": 3, + "op": "PUSH2", + "pc": 821, "stack": [ "0xa0712d68", "0xd9", @@ -27775,11 +27775,11 @@ ] }, { - "pc": 824, - "op": "DUP2", - "gas": 1558053, - "gasCost": 3, "depth": 2, + "gas": 1568151, + "gasCost": 3, + "op": "DUP2", + "pc": 824, "stack": [ "0xa0712d68", "0xd9", @@ -27796,11 +27796,11 @@ ] }, { - "pc": 825, - "op": "PUSH2", - "gas": 1558050, - "gasCost": 3, "depth": 2, + "gas": 1568148, + "gasCost": 3, + "op": "PUSH2", + "pc": 825, "stack": [ "0xa0712d68", "0xd9", @@ -27818,11 +27818,11 @@ ] }, { - "pc": 828, - "op": "JUMP", - "gas": 1558047, - "gasCost": 8, "depth": 2, + "gas": 1568145, + "gasCost": 8, + "op": "JUMP", + "pc": 828, "stack": [ "0xa0712d68", "0xd9", @@ -27841,11 +27841,11 @@ ] }, { - "pc": 791, - "op": "JUMPDEST", - "gas": 1558039, - "gasCost": 1, "depth": 2, + "gas": 1568137, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 791, "stack": [ "0xa0712d68", "0xd9", @@ -27863,11 +27863,11 @@ ] }, { - "pc": 792, - "op": "PUSH2", - "gas": 1558038, - "gasCost": 3, "depth": 2, + "gas": 1568136, + "gasCost": 3, + "op": "PUSH2", + "pc": 792, "stack": [ "0xa0712d68", "0xd9", @@ -27885,11 +27885,11 @@ ] }, { - "pc": 795, - "op": "DUP2", - "gas": 1558035, - "gasCost": 3, "depth": 2, + "gas": 1568133, + "gasCost": 3, + "op": "DUP2", + "pc": 795, "stack": [ "0xa0712d68", "0xd9", @@ -27908,11 +27908,11 @@ ] }, { - "pc": 796, - "op": "PUSH2", - "gas": 1558032, - "gasCost": 3, "depth": 2, + "gas": 1568130, + "gasCost": 3, + "op": "PUSH2", + "pc": 796, "stack": [ "0xa0712d68", "0xd9", @@ -27932,11 +27932,11 @@ ] }, { - "pc": 799, - "op": "JUMP", - "gas": 1558029, - "gasCost": 8, "depth": 2, + "gas": 1568127, + "gasCost": 8, + "op": "JUMP", + "pc": 799, "stack": [ "0xa0712d68", "0xd9", @@ -27957,11 +27957,11 @@ ] }, { - "pc": 781, - "op": "JUMPDEST", - "gas": 1558021, - "gasCost": 1, "depth": 2, + "gas": 1568119, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 781, "stack": [ "0xa0712d68", "0xd9", @@ -27981,11 +27981,11 @@ ] }, { - "pc": 782, - "op": "PUSH1", - "gas": 1558020, - "gasCost": 3, "depth": 2, + "gas": 1568118, + "gasCost": 3, + "op": "PUSH1", + "pc": 782, "stack": [ "0xa0712d68", "0xd9", @@ -28005,11 +28005,11 @@ ] }, { - "pc": 784, - "op": "DUP2", - "gas": 1558017, - "gasCost": 3, "depth": 2, + "gas": 1568115, + "gasCost": 3, + "op": "DUP2", + "pc": 784, "stack": [ "0xa0712d68", "0xd9", @@ -28030,11 +28030,11 @@ ] }, { - "pc": 785, - "op": "SWAP1", - "gas": 1558014, - "gasCost": 3, "depth": 2, + "gas": 1568112, + "gasCost": 3, + "op": "SWAP1", + "pc": 785, "stack": [ "0xa0712d68", "0xd9", @@ -28056,11 +28056,11 @@ ] }, { - "pc": 786, - "op": "POP", - "gas": 1558011, - "gasCost": 2, "depth": 2, + "gas": 1568109, + "gasCost": 2, + "op": "POP", + "pc": 786, "stack": [ "0xa0712d68", "0xd9", @@ -28082,11 +28082,11 @@ ] }, { - "pc": 787, - "op": "SWAP2", - "gas": 1558009, - "gasCost": 3, "depth": 2, + "gas": 1568107, + "gasCost": 3, + "op": "SWAP2", + "pc": 787, "stack": [ "0xa0712d68", "0xd9", @@ -28107,11 +28107,11 @@ ] }, { - "pc": 788, - "op": "SWAP1", - "gas": 1558006, - "gasCost": 3, "depth": 2, + "gas": 1568104, + "gasCost": 3, + "op": "SWAP1", + "pc": 788, "stack": [ "0xa0712d68", "0xd9", @@ -28132,11 +28132,11 @@ ] }, { - "pc": 789, - "op": "POP", - "gas": 1558003, - "gasCost": 2, "depth": 2, + "gas": 1568101, + "gasCost": 2, + "op": "POP", + "pc": 789, "stack": [ "0xa0712d68", "0xd9", @@ -28157,11 +28157,11 @@ ] }, { - "pc": 790, - "op": "JUMP", - "gas": 1558001, - "gasCost": 8, "depth": 2, + "gas": 1568099, + "gasCost": 8, + "op": "JUMP", + "pc": 790, "stack": [ "0xa0712d68", "0xd9", @@ -28181,11 +28181,11 @@ ] }, { - "pc": 800, - "op": "JUMPDEST", - "gas": 1557993, - "gasCost": 1, "depth": 2, + "gas": 1568091, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 800, "stack": [ "0xa0712d68", "0xd9", @@ -28204,11 +28204,11 @@ ] }, { - "pc": 801, - "op": "DUP2", - "gas": 1557992, - "gasCost": 3, "depth": 2, + "gas": 1568090, + "gasCost": 3, + "op": "DUP2", + "pc": 801, "stack": [ "0xa0712d68", "0xd9", @@ -28227,11 +28227,11 @@ ] }, { - "pc": 802, - "op": "EQ", - "gas": 1557989, - "gasCost": 3, "depth": 2, + "gas": 1568087, + "gasCost": 3, + "op": "EQ", + "pc": 802, "stack": [ "0xa0712d68", "0xd9", @@ -28251,11 +28251,11 @@ ] }, { - "pc": 803, - "op": "PUSH2", - "gas": 1557986, - "gasCost": 3, "depth": 2, + "gas": 1568084, + "gasCost": 3, + "op": "PUSH2", + "pc": 803, "stack": [ "0xa0712d68", "0xd9", @@ -28274,11 +28274,11 @@ ] }, { - "pc": 806, - "op": "JUMPI", - "gas": 1557983, - "gasCost": 10, "depth": 2, + "gas": 1568081, + "gasCost": 10, + "op": "JUMPI", + "pc": 806, "stack": [ "0xa0712d68", "0xd9", @@ -28298,11 +28298,11 @@ ] }, { - "pc": 811, - "op": "JUMPDEST", - "gas": 1557973, - "gasCost": 1, "depth": 2, + "gas": 1568071, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 811, "stack": [ "0xa0712d68", "0xd9", @@ -28320,11 +28320,11 @@ ] }, { - "pc": 812, - "op": "POP", - "gas": 1557972, - "gasCost": 2, "depth": 2, + "gas": 1568070, + "gasCost": 2, + "op": "POP", + "pc": 812, "stack": [ "0xa0712d68", "0xd9", @@ -28342,11 +28342,11 @@ ] }, { - "pc": 813, - "op": "JUMP", - "gas": 1557970, - "gasCost": 8, "depth": 2, + "gas": 1568068, + "gasCost": 8, + "op": "JUMP", + "pc": 813, "stack": [ "0xa0712d68", "0xd9", @@ -28363,11 +28363,11 @@ ] }, { - "pc": 829, - "op": "JUMPDEST", - "gas": 1557962, - "gasCost": 1, "depth": 2, + "gas": 1568060, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 829, "stack": [ "0xa0712d68", "0xd9", @@ -28383,11 +28383,11 @@ ] }, { - "pc": 830, - "op": "SWAP3", - "gas": 1557961, - "gasCost": 3, "depth": 2, + "gas": 1568059, + "gasCost": 3, + "op": "SWAP3", + "pc": 830, "stack": [ "0xa0712d68", "0xd9", @@ -28403,11 +28403,11 @@ ] }, { - "pc": 831, - "op": "SWAP2", - "gas": 1557958, - "gasCost": 3, "depth": 2, + "gas": 1568056, + "gasCost": 3, + "op": "SWAP2", + "pc": 831, "stack": [ "0xa0712d68", "0xd9", @@ -28423,11 +28423,11 @@ ] }, { - "pc": 832, - "op": "POP", - "gas": 1557955, - "gasCost": 2, "depth": 2, + "gas": 1568053, + "gasCost": 2, + "op": "POP", + "pc": 832, "stack": [ "0xa0712d68", "0xd9", @@ -28443,11 +28443,11 @@ ] }, { - "pc": 833, - "op": "POP", - "gas": 1557953, - "gasCost": 2, "depth": 2, + "gas": 1568051, + "gasCost": 2, + "op": "POP", + "pc": 833, "stack": [ "0xa0712d68", "0xd9", @@ -28462,11 +28462,11 @@ ] }, { - "pc": 834, - "op": "JUMP", - "gas": 1557951, - "gasCost": 8, "depth": 2, + "gas": 1568049, + "gasCost": 8, + "op": "JUMP", + "pc": 834, "stack": [ "0xa0712d68", "0xd9", @@ -28480,11 +28480,11 @@ ] }, { - "pc": 871, - "op": "JUMPDEST", - "gas": 1557943, - "gasCost": 1, "depth": 2, + "gas": 1568041, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 871, "stack": [ "0xa0712d68", "0xd9", @@ -28497,11 +28497,11 @@ ] }, { - "pc": 872, - "op": "SWAP2", - "gas": 1557942, - "gasCost": 3, "depth": 2, + "gas": 1568040, + "gasCost": 3, + "op": "SWAP2", + "pc": 872, "stack": [ "0xa0712d68", "0xd9", @@ -28514,11 +28514,11 @@ ] }, { - "pc": 873, - "op": "POP", - "gas": 1557939, - "gasCost": 2, "depth": 2, + "gas": 1568037, + "gasCost": 2, + "op": "POP", + "pc": 873, "stack": [ "0xa0712d68", "0xd9", @@ -28531,11 +28531,11 @@ ] }, { - "pc": 874, - "op": "POP", - "gas": 1557937, - "gasCost": 2, "depth": 2, + "gas": 1568035, + "gasCost": 2, + "op": "POP", + "pc": 874, "stack": [ "0xa0712d68", "0xd9", @@ -28547,11 +28547,11 @@ ] }, { - "pc": 875, - "op": "SWAP3", - "gas": 1557935, - "gasCost": 3, "depth": 2, + "gas": 1568033, + "gasCost": 3, + "op": "SWAP3", + "pc": 875, "stack": [ "0xa0712d68", "0xd9", @@ -28562,11 +28562,11 @@ ] }, { - "pc": 876, - "op": "SWAP2", - "gas": 1557932, - "gasCost": 3, "depth": 2, + "gas": 1568030, + "gasCost": 3, + "op": "SWAP2", + "pc": 876, "stack": [ "0xa0712d68", "0xd9", @@ -28577,11 +28577,11 @@ ] }, { - "pc": 877, - "op": "POP", - "gas": 1557929, - "gasCost": 2, "depth": 2, + "gas": 1568027, + "gasCost": 2, + "op": "POP", + "pc": 877, "stack": [ "0xa0712d68", "0xd9", @@ -28592,11 +28592,11 @@ ] }, { - "pc": 878, - "op": "POP", - "gas": 1557927, - "gasCost": 2, "depth": 2, + "gas": 1568025, + "gasCost": 2, + "op": "POP", + "pc": 878, "stack": [ "0xa0712d68", "0xd9", @@ -28606,11 +28606,11 @@ ] }, { - "pc": 879, - "op": "JUMP", - "gas": 1557925, - "gasCost": 8, "depth": 2, + "gas": 1568023, + "gasCost": 8, + "op": "JUMP", + "pc": 879, "stack": [ "0xa0712d68", "0xd9", @@ -28619,11 +28619,11 @@ ] }, { - "pc": 212, - "op": "JUMPDEST", - "gas": 1557917, - "gasCost": 1, "depth": 2, + "gas": 1568015, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 212, "stack": [ "0xa0712d68", "0xd9", @@ -28631,11 +28631,11 @@ ] }, { - "pc": 213, - "op": "PUSH2", - "gas": 1557916, - "gasCost": 3, "depth": 2, + "gas": 1568014, + "gasCost": 3, + "op": "PUSH2", + "pc": 213, "stack": [ "0xa0712d68", "0xd9", @@ -28643,11 +28643,11 @@ ] }, { - "pc": 216, - "op": "JUMP", - "gas": 1557913, - "gasCost": 8, "depth": 2, + "gas": 1568011, + "gasCost": 8, + "op": "JUMP", + "pc": 216, "stack": [ "0xa0712d68", "0xd9", @@ -28656,11 +28656,11 @@ ] }, { - "pc": 549, - "op": "JUMPDEST", - "gas": 1557905, - "gasCost": 1, "depth": 2, + "gas": 1568003, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 549, "stack": [ "0xa0712d68", "0xd9", @@ -28668,11 +28668,11 @@ ] }, { - "pc": 550, - "op": "PUSH1", - "gas": 1557904, - "gasCost": 3, "depth": 2, + "gas": 1568002, + "gasCost": 3, + "op": "PUSH1", + "pc": 550, "stack": [ "0xa0712d68", "0xd9", @@ -28680,11 +28680,11 @@ ] }, { - "pc": 552, - "op": "CALLER", - "gas": 1557901, - "gasCost": 2, "depth": 2, + "gas": 1567999, + "gasCost": 2, + "op": "CALLER", + "pc": 552, "stack": [ "0xa0712d68", "0xd9", @@ -28693,11 +28693,11 @@ ] }, { - "pc": 553, - "op": "PUSH20", - "gas": 1557899, - "gasCost": 3, "depth": 2, + "gas": 1567997, + "gasCost": 3, + "op": "PUSH20", + "pc": 553, "stack": [ "0xa0712d68", "0xd9", @@ -28707,11 +28707,11 @@ ] }, { - "pc": 574, - "op": "AND", - "gas": 1557896, - "gasCost": 3, "depth": 2, + "gas": 1567994, + "gasCost": 3, + "op": "AND", + "pc": 574, "stack": [ "0xa0712d68", "0xd9", @@ -28722,11 +28722,11 @@ ] }, { - "pc": 575, - "op": "PUSH32", - "gas": 1557893, - "gasCost": 3, "depth": 2, + "gas": 1567991, + "gasCost": 3, + "op": "PUSH32", + "pc": 575, "stack": [ "0xa0712d68", "0xd9", @@ -28736,11 +28736,11 @@ ] }, { - "pc": 608, - "op": "DUP4", - "gas": 1557890, - "gasCost": 3, "depth": 2, + "gas": 1567988, + "gasCost": 3, + "op": "DUP4", + "pc": 608, "stack": [ "0xa0712d68", "0xd9", @@ -28751,11 +28751,11 @@ ] }, { - "pc": 609, - "op": "PUSH1", - "gas": 1557887, - "gasCost": 3, "depth": 2, + "gas": 1567985, + "gasCost": 3, + "op": "PUSH1", + "pc": 609, "stack": [ "0xa0712d68", "0xd9", @@ -28767,11 +28767,11 @@ ] }, { - "pc": 611, - "op": "MLOAD", - "gas": 1557884, - "gasCost": 3, "depth": 2, + "gas": 1567982, + "gasCost": 3, + "op": "MLOAD", + "pc": 611, "stack": [ "0xa0712d68", "0xd9", @@ -28784,11 +28784,11 @@ ] }, { - "pc": 612, - "op": "PUSH2", - "gas": 1557881, - "gasCost": 3, "depth": 2, + "gas": 1567979, + "gasCost": 3, + "op": "PUSH2", + "pc": 612, "stack": [ "0xa0712d68", "0xd9", @@ -28801,11 +28801,11 @@ ] }, { - "pc": 615, - "op": "SWAP2", - "gas": 1557878, - "gasCost": 3, "depth": 2, + "gas": 1567976, + "gasCost": 3, + "op": "SWAP2", + "pc": 615, "stack": [ "0xa0712d68", "0xd9", @@ -28819,11 +28819,11 @@ ] }, { - "pc": 616, - "op": "SWAP1", - "gas": 1557875, - "gasCost": 3, "depth": 2, + "gas": 1567973, + "gasCost": 3, + "op": "SWAP1", + "pc": 616, "stack": [ "0xa0712d68", "0xd9", @@ -28837,11 +28837,11 @@ ] }, { - "pc": 617, - "op": "PUSH2", - "gas": 1557872, - "gasCost": 3, "depth": 2, + "gas": 1567970, + "gasCost": 3, + "op": "PUSH2", + "pc": 617, "stack": [ "0xa0712d68", "0xd9", @@ -28855,11 +28855,11 @@ ] }, { - "pc": 620, - "op": "JUMP", - "gas": 1557869, - "gasCost": 8, "depth": 2, + "gas": 1567967, + "gasCost": 8, + "op": "JUMP", + "pc": 620, "stack": [ "0xa0712d68", "0xd9", @@ -28874,11 +28874,11 @@ ] }, { - "pc": 1483, - "op": "JUMPDEST", - "gas": 1557861, - "gasCost": 1, "depth": 2, + "gas": 1567959, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 1483, "stack": [ "0xa0712d68", "0xd9", @@ -28892,11 +28892,11 @@ ] }, { - "pc": 1484, - "op": "PUSH1", - "gas": 1557860, - "gasCost": 3, "depth": 2, + "gas": 1567958, + "gasCost": 3, + "op": "PUSH1", + "pc": 1484, "stack": [ "0xa0712d68", "0xd9", @@ -28910,11 +28910,11 @@ ] }, { - "pc": 1486, - "op": "PUSH1", - "gas": 1557857, - "gasCost": 3, "depth": 2, + "gas": 1567955, + "gasCost": 3, + "op": "PUSH1", + "pc": 1486, "stack": [ "0xa0712d68", "0xd9", @@ -28929,11 +28929,11 @@ ] }, { - "pc": 1488, - "op": "DUP3", - "gas": 1557854, - "gasCost": 3, "depth": 2, + "gas": 1567952, + "gasCost": 3, + "op": "DUP3", + "pc": 1488, "stack": [ "0xa0712d68", "0xd9", @@ -28949,11 +28949,11 @@ ] }, { - "pc": 1489, - "op": "ADD", - "gas": 1557851, - "gasCost": 3, "depth": 2, + "gas": 1567949, + "gasCost": 3, + "op": "ADD", + "pc": 1489, "stack": [ "0xa0712d68", "0xd9", @@ -28970,11 +28970,11 @@ ] }, { - "pc": 1490, - "op": "SWAP1", - "gas": 1557848, - "gasCost": 3, "depth": 2, + "gas": 1567946, + "gasCost": 3, + "op": "SWAP1", + "pc": 1490, "stack": [ "0xa0712d68", "0xd9", @@ -28990,11 +28990,11 @@ ] }, { - "pc": 1491, - "op": "POP", - "gas": 1557845, - "gasCost": 2, "depth": 2, + "gas": 1567943, + "gasCost": 2, + "op": "POP", + "pc": 1491, "stack": [ "0xa0712d68", "0xd9", @@ -29010,11 +29010,11 @@ ] }, { - "pc": 1492, - "op": "PUSH2", - "gas": 1557843, - "gasCost": 3, "depth": 2, + "gas": 1567941, + "gasCost": 3, + "op": "PUSH2", + "pc": 1492, "stack": [ "0xa0712d68", "0xd9", @@ -29029,11 +29029,11 @@ ] }, { - "pc": 1495, - "op": "PUSH1", - "gas": 1557840, - "gasCost": 3, "depth": 2, + "gas": 1567938, + "gasCost": 3, + "op": "PUSH1", + "pc": 1495, "stack": [ "0xa0712d68", "0xd9", @@ -29049,11 +29049,11 @@ ] }, { - "pc": 1497, - "op": "DUP4", - "gas": 1557837, - "gasCost": 3, "depth": 2, + "gas": 1567935, + "gasCost": 3, + "op": "DUP4", + "pc": 1497, "stack": [ "0xa0712d68", "0xd9", @@ -29070,11 +29070,11 @@ ] }, { - "pc": 1498, - "op": "ADD", - "gas": 1557834, - "gasCost": 3, "depth": 2, + "gas": 1567932, + "gasCost": 3, + "op": "ADD", + "pc": 1498, "stack": [ "0xa0712d68", "0xd9", @@ -29092,11 +29092,11 @@ ] }, { - "pc": 1499, - "op": "DUP5", - "gas": 1557831, - "gasCost": 3, "depth": 2, + "gas": 1567929, + "gasCost": 3, + "op": "DUP5", + "pc": 1499, "stack": [ "0xa0712d68", "0xd9", @@ -29113,11 +29113,11 @@ ] }, { - "pc": 1500, - "op": "PUSH2", - "gas": 1557828, - "gasCost": 3, "depth": 2, + "gas": 1567926, + "gasCost": 3, + "op": "PUSH2", + "pc": 1500, "stack": [ "0xa0712d68", "0xd9", @@ -29135,11 +29135,11 @@ ] }, { - "pc": 1503, - "op": "JUMP", - "gas": 1557825, - "gasCost": 8, "depth": 2, + "gas": 1567923, + "gasCost": 8, + "op": "JUMP", + "pc": 1503, "stack": [ "0xa0712d68", "0xd9", @@ -29158,11 +29158,11 @@ ] }, { - "pc": 880, - "op": "JUMPDEST", - "gas": 1557817, - "gasCost": 1, "depth": 2, + "gas": 1567915, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 880, "stack": [ "0xa0712d68", "0xd9", @@ -29180,11 +29180,11 @@ ] }, { - "pc": 881, - "op": "PUSH2", - "gas": 1557816, - "gasCost": 3, "depth": 2, + "gas": 1567914, + "gasCost": 3, + "op": "PUSH2", + "pc": 881, "stack": [ "0xa0712d68", "0xd9", @@ -29202,11 +29202,11 @@ ] }, { - "pc": 884, - "op": "DUP2", - "gas": 1557813, - "gasCost": 3, "depth": 2, + "gas": 1567911, + "gasCost": 3, + "op": "DUP2", + "pc": 884, "stack": [ "0xa0712d68", "0xd9", @@ -29225,11 +29225,11 @@ ] }, { - "pc": 885, - "op": "PUSH2", - "gas": 1557810, - "gasCost": 3, "depth": 2, + "gas": 1567908, + "gasCost": 3, + "op": "PUSH2", + "pc": 885, "stack": [ "0xa0712d68", "0xd9", @@ -29249,11 +29249,11 @@ ] }, { - "pc": 888, - "op": "JUMP", - "gas": 1557807, - "gasCost": 8, "depth": 2, + "gas": 1567905, + "gasCost": 8, + "op": "JUMP", + "pc": 888, "stack": [ "0xa0712d68", "0xd9", @@ -29274,11 +29274,11 @@ ] }, { - "pc": 781, - "op": "JUMPDEST", - "gas": 1557799, - "gasCost": 1, "depth": 2, + "gas": 1567897, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 781, "stack": [ "0xa0712d68", "0xd9", @@ -29298,11 +29298,11 @@ ] }, { - "pc": 782, - "op": "PUSH1", - "gas": 1557798, - "gasCost": 3, "depth": 2, + "gas": 1567896, + "gasCost": 3, + "op": "PUSH1", + "pc": 782, "stack": [ "0xa0712d68", "0xd9", @@ -29322,11 +29322,11 @@ ] }, { - "pc": 784, - "op": "DUP2", - "gas": 1557795, - "gasCost": 3, "depth": 2, + "gas": 1567893, + "gasCost": 3, + "op": "DUP2", + "pc": 784, "stack": [ "0xa0712d68", "0xd9", @@ -29347,11 +29347,11 @@ ] }, { - "pc": 785, - "op": "SWAP1", - "gas": 1557792, - "gasCost": 3, "depth": 2, + "gas": 1567890, + "gasCost": 3, + "op": "SWAP1", + "pc": 785, "stack": [ "0xa0712d68", "0xd9", @@ -29373,11 +29373,11 @@ ] }, { - "pc": 786, - "op": "POP", - "gas": 1557789, - "gasCost": 2, "depth": 2, + "gas": 1567887, + "gasCost": 2, + "op": "POP", + "pc": 786, "stack": [ "0xa0712d68", "0xd9", @@ -29399,11 +29399,11 @@ ] }, { - "pc": 787, - "op": "SWAP2", - "gas": 1557787, - "gasCost": 3, "depth": 2, + "gas": 1567885, + "gasCost": 3, + "op": "SWAP2", + "pc": 787, "stack": [ "0xa0712d68", "0xd9", @@ -29424,11 +29424,11 @@ ] }, { - "pc": 788, - "op": "SWAP1", - "gas": 1557784, - "gasCost": 3, "depth": 2, + "gas": 1567882, + "gasCost": 3, + "op": "SWAP1", + "pc": 788, "stack": [ "0xa0712d68", "0xd9", @@ -29449,11 +29449,11 @@ ] }, { - "pc": 789, - "op": "POP", - "gas": 1557781, - "gasCost": 2, "depth": 2, + "gas": 1567879, + "gasCost": 2, + "op": "POP", + "pc": 789, "stack": [ "0xa0712d68", "0xd9", @@ -29474,11 +29474,11 @@ ] }, { - "pc": 790, - "op": "JUMP", - "gas": 1557779, - "gasCost": 8, "depth": 2, + "gas": 1567877, + "gasCost": 8, + "op": "JUMP", + "pc": 790, "stack": [ "0xa0712d68", "0xd9", @@ -29498,11 +29498,11 @@ ] }, { - "pc": 889, - "op": "JUMPDEST", - "gas": 1557771, - "gasCost": 1, "depth": 2, + "gas": 1567869, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 889, "stack": [ "0xa0712d68", "0xd9", @@ -29521,11 +29521,11 @@ ] }, { - "pc": 890, - "op": "DUP3", - "gas": 1557770, - "gasCost": 3, "depth": 2, + "gas": 1567868, + "gasCost": 3, + "op": "DUP3", + "pc": 890, "stack": [ "0xa0712d68", "0xd9", @@ -29544,11 +29544,11 @@ ] }, { - "pc": 891, - "op": "MSTORE", - "gas": 1557767, - "gasCost": 9, "depth": 2, + "gas": 1567865, + "gasCost": 9, + "op": "MSTORE", + "pc": 891, "stack": [ "0xa0712d68", "0xd9", @@ -29568,11 +29568,11 @@ ] }, { - "pc": 892, - "op": "POP", - "gas": 1557758, - "gasCost": 2, "depth": 2, + "gas": 1567856, + "gasCost": 2, + "op": "POP", + "pc": 892, "stack": [ "0xa0712d68", "0xd9", @@ -29590,11 +29590,11 @@ ] }, { - "pc": 893, - "op": "POP", - "gas": 1557756, - "gasCost": 2, "depth": 2, + "gas": 1567854, + "gasCost": 2, + "op": "POP", + "pc": 893, "stack": [ "0xa0712d68", "0xd9", @@ -29611,11 +29611,11 @@ ] }, { - "pc": 894, - "op": "JUMP", - "gas": 1557754, - "gasCost": 8, "depth": 2, + "gas": 1567852, + "gasCost": 8, + "op": "JUMP", + "pc": 894, "stack": [ "0xa0712d68", "0xd9", @@ -29631,11 +29631,11 @@ ] }, { - "pc": 1504, - "op": "JUMPDEST", - "gas": 1557746, - "gasCost": 1, "depth": 2, + "gas": 1567844, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 1504, "stack": [ "0xa0712d68", "0xd9", @@ -29650,11 +29650,11 @@ ] }, { - "pc": 1505, - "op": "DUP2", - "gas": 1557745, - "gasCost": 3, "depth": 2, + "gas": 1567843, + "gasCost": 3, + "op": "DUP2", + "pc": 1505, "stack": [ "0xa0712d68", "0xd9", @@ -29669,11 +29669,11 @@ ] }, { - "pc": 1506, - "op": "DUP2", - "gas": 1557742, - "gasCost": 3, "depth": 2, + "gas": 1567840, + "gasCost": 3, + "op": "DUP2", + "pc": 1506, "stack": [ "0xa0712d68", "0xd9", @@ -29689,11 +29689,11 @@ ] }, { - "pc": 1507, - "op": "SUB", - "gas": 1557739, - "gasCost": 3, "depth": 2, + "gas": 1567837, + "gasCost": 3, + "op": "SUB", + "pc": 1507, "stack": [ "0xa0712d68", "0xd9", @@ -29710,11 +29710,11 @@ ] }, { - "pc": 1508, - "op": "PUSH1", - "gas": 1557736, - "gasCost": 3, "depth": 2, + "gas": 1567834, + "gasCost": 3, + "op": "PUSH1", + "pc": 1508, "stack": [ "0xa0712d68", "0xd9", @@ -29730,11 +29730,11 @@ ] }, { - "pc": 1510, - "op": "DUP4", - "gas": 1557733, - "gasCost": 3, "depth": 2, + "gas": 1567831, + "gasCost": 3, + "op": "DUP4", + "pc": 1510, "stack": [ "0xa0712d68", "0xd9", @@ -29751,11 +29751,11 @@ ] }, { - "pc": 1511, - "op": "ADD", - "gas": 1557730, - "gasCost": 3, "depth": 2, + "gas": 1567828, + "gasCost": 3, + "op": "ADD", + "pc": 1511, "stack": [ "0xa0712d68", "0xd9", @@ -29773,11 +29773,11 @@ ] }, { - "pc": 1512, - "op": "MSTORE", - "gas": 1557727, - "gasCost": 6, "depth": 2, + "gas": 1567825, + "gasCost": 6, + "op": "MSTORE", + "pc": 1512, "stack": [ "0xa0712d68", "0xd9", @@ -29794,11 +29794,11 @@ ] }, { - "pc": 1513, - "op": "PUSH2", - "gas": 1557721, - "gasCost": 3, "depth": 2, + "gas": 1567819, + "gasCost": 3, + "op": "PUSH2", + "pc": 1513, "stack": [ "0xa0712d68", "0xd9", @@ -29813,11 +29813,11 @@ ] }, { - "pc": 1516, - "op": "DUP2", - "gas": 1557718, - "gasCost": 3, "depth": 2, + "gas": 1567816, + "gasCost": 3, + "op": "DUP2", + "pc": 1516, "stack": [ "0xa0712d68", "0xd9", @@ -29833,11 +29833,11 @@ ] }, { - "pc": 1517, - "op": "PUSH2", - "gas": 1557715, - "gasCost": 3, "depth": 2, + "gas": 1567813, + "gasCost": 3, + "op": "PUSH2", + "pc": 1517, "stack": [ "0xa0712d68", "0xd9", @@ -29854,11 +29854,11 @@ ] }, { - "pc": 1520, - "op": "JUMP", - "gas": 1557712, - "gasCost": 8, "depth": 2, + "gas": 1567810, + "gasCost": 8, + "op": "JUMP", + "pc": 1520, "stack": [ "0xa0712d68", "0xd9", @@ -29876,11 +29876,11 @@ ] }, { - "pc": 1448, - "op": "JUMPDEST", - "gas": 1557704, - "gasCost": 1, "depth": 2, + "gas": 1567802, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 1448, "stack": [ "0xa0712d68", "0xd9", @@ -29897,11 +29897,11 @@ ] }, { - "pc": 1449, - "op": "PUSH1", - "gas": 1557703, - "gasCost": 3, "depth": 2, + "gas": 1567801, + "gasCost": 3, + "op": "PUSH1", + "pc": 1449, "stack": [ "0xa0712d68", "0xd9", @@ -29918,11 +29918,11 @@ ] }, { - "pc": 1451, - "op": "PUSH2", - "gas": 1557700, - "gasCost": 3, "depth": 2, + "gas": 1567798, + "gasCost": 3, + "op": "PUSH2", + "pc": 1451, "stack": [ "0xa0712d68", "0xd9", @@ -29940,11 +29940,11 @@ ] }, { - "pc": 1454, - "op": "PUSH1", - "gas": 1557697, - "gasCost": 3, "depth": 2, + "gas": 1567795, + "gasCost": 3, + "op": "PUSH1", + "pc": 1454, "stack": [ "0xa0712d68", "0xd9", @@ -29963,11 +29963,11 @@ ] }, { - "pc": 1456, - "op": "DUP4", - "gas": 1557694, - "gasCost": 3, "depth": 2, + "gas": 1567792, + "gasCost": 3, + "op": "DUP4", + "pc": 1456, "stack": [ "0xa0712d68", "0xd9", @@ -29987,11 +29987,11 @@ ] }, { - "pc": 1457, - "op": "PUSH2", - "gas": 1557691, - "gasCost": 3, "depth": 2, + "gas": 1567789, + "gasCost": 3, + "op": "PUSH2", + "pc": 1457, "stack": [ "0xa0712d68", "0xd9", @@ -30012,11 +30012,11 @@ ] }, { - "pc": 1460, - "op": "JUMP", - "gas": 1557688, - "gasCost": 8, "depth": 2, + "gas": 1567786, + "gasCost": 8, + "op": "JUMP", + "pc": 1460, "stack": [ "0xa0712d68", "0xd9", @@ -30038,11 +30038,11 @@ ] }, { - "pc": 1061, - "op": "JUMPDEST", - "gas": 1557680, - "gasCost": 1, "depth": 2, + "gas": 1567778, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 1061, "stack": [ "0xa0712d68", "0xd9", @@ -30063,11 +30063,11 @@ ] }, { - "pc": 1062, - "op": "PUSH1", - "gas": 1557679, - "gasCost": 3, "depth": 2, + "gas": 1567777, + "gasCost": 3, + "op": "PUSH1", + "pc": 1062, "stack": [ "0xa0712d68", "0xd9", @@ -30088,11 +30088,11 @@ ] }, { - "pc": 1064, - "op": "DUP3", - "gas": 1557676, - "gasCost": 3, "depth": 2, + "gas": 1567774, + "gasCost": 3, + "op": "DUP3", + "pc": 1064, "stack": [ "0xa0712d68", "0xd9", @@ -30114,11 +30114,11 @@ ] }, { - "pc": 1065, - "op": "DUP3", - "gas": 1557673, - "gasCost": 3, "depth": 2, + "gas": 1567771, + "gasCost": 3, + "op": "DUP3", + "pc": 1065, "stack": [ "0xa0712d68", "0xd9", @@ -30141,11 +30141,11 @@ ] }, { - "pc": 1066, - "op": "MSTORE", - "gas": 1557670, - "gasCost": 6, "depth": 2, + "gas": 1567768, + "gasCost": 6, + "op": "MSTORE", + "pc": 1066, "stack": [ "0xa0712d68", "0xd9", @@ -30169,11 +30169,11 @@ ] }, { - "pc": 1067, - "op": "PUSH1", - "gas": 1557664, - "gasCost": 3, "depth": 2, + "gas": 1567762, + "gasCost": 3, + "op": "PUSH1", + "pc": 1067, "stack": [ "0xa0712d68", "0xd9", @@ -30195,11 +30195,11 @@ ] }, { - "pc": 1069, - "op": "DUP3", - "gas": 1557661, - "gasCost": 3, "depth": 2, + "gas": 1567759, + "gasCost": 3, + "op": "DUP3", + "pc": 1069, "stack": [ "0xa0712d68", "0xd9", @@ -30222,11 +30222,11 @@ ] }, { - "pc": 1070, - "op": "ADD", - "gas": 1557658, - "gasCost": 3, "depth": 2, + "gas": 1567756, + "gasCost": 3, + "op": "ADD", + "pc": 1070, "stack": [ "0xa0712d68", "0xd9", @@ -30250,11 +30250,11 @@ ] }, { - "pc": 1071, - "op": "SWAP1", - "gas": 1557655, - "gasCost": 3, "depth": 2, + "gas": 1567753, + "gasCost": 3, + "op": "SWAP1", + "pc": 1071, "stack": [ "0xa0712d68", "0xd9", @@ -30277,11 +30277,11 @@ ] }, { - "pc": 1072, - "op": "POP", - "gas": 1557652, - "gasCost": 2, "depth": 2, + "gas": 1567750, + "gasCost": 2, + "op": "POP", + "pc": 1072, "stack": [ "0xa0712d68", "0xd9", @@ -30304,11 +30304,11 @@ ] }, { - "pc": 1073, - "op": "SWAP3", - "gas": 1557650, - "gasCost": 3, "depth": 2, + "gas": 1567748, + "gasCost": 3, + "op": "SWAP3", + "pc": 1073, "stack": [ "0xa0712d68", "0xd9", @@ -30330,11 +30330,11 @@ ] }, { - "pc": 1074, - "op": "SWAP2", - "gas": 1557647, - "gasCost": 3, "depth": 2, + "gas": 1567745, + "gasCost": 3, + "op": "SWAP2", + "pc": 1074, "stack": [ "0xa0712d68", "0xd9", @@ -30356,11 +30356,11 @@ ] }, { - "pc": 1075, - "op": "POP", - "gas": 1557644, - "gasCost": 2, "depth": 2, + "gas": 1567742, + "gasCost": 2, + "op": "POP", + "pc": 1075, "stack": [ "0xa0712d68", "0xd9", @@ -30382,11 +30382,11 @@ ] }, { - "pc": 1076, - "op": "POP", - "gas": 1557642, - "gasCost": 2, "depth": 2, + "gas": 1567740, + "gasCost": 2, + "op": "POP", + "pc": 1076, "stack": [ "0xa0712d68", "0xd9", @@ -30407,11 +30407,11 @@ ] }, { - "pc": 1077, - "op": "JUMP", - "gas": 1557640, - "gasCost": 8, "depth": 2, + "gas": 1567738, + "gasCost": 8, + "op": "JUMP", + "pc": 1077, "stack": [ "0xa0712d68", "0xd9", @@ -30431,11 +30431,11 @@ ] }, { - "pc": 1461, - "op": "JUMPDEST", - "gas": 1557632, - "gasCost": 1, "depth": 2, + "gas": 1567730, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 1461, "stack": [ "0xa0712d68", "0xd9", @@ -30454,11 +30454,11 @@ ] }, { - "pc": 1462, - "op": "SWAP2", - "gas": 1557631, - "gasCost": 3, "depth": 2, + "gas": 1567729, + "gasCost": 3, + "op": "SWAP2", + "pc": 1462, "stack": [ "0xa0712d68", "0xd9", @@ -30477,11 +30477,11 @@ ] }, { - "pc": 1463, - "op": "POP", - "gas": 1557628, - "gasCost": 2, "depth": 2, + "gas": 1567726, + "gasCost": 2, + "op": "POP", + "pc": 1463, "stack": [ "0xa0712d68", "0xd9", @@ -30500,11 +30500,11 @@ ] }, { - "pc": 1464, - "op": "PUSH2", - "gas": 1557626, - "gasCost": 3, "depth": 2, + "gas": 1567724, + "gasCost": 3, + "op": "PUSH2", + "pc": 1464, "stack": [ "0xa0712d68", "0xd9", @@ -30522,11 +30522,11 @@ ] }, { - "pc": 1467, - "op": "DUP3", - "gas": 1557623, - "gasCost": 3, "depth": 2, + "gas": 1567721, + "gasCost": 3, + "op": "DUP3", + "pc": 1467, "stack": [ "0xa0712d68", "0xd9", @@ -30545,11 +30545,11 @@ ] }, { - "pc": 1468, - "op": "PUSH2", - "gas": 1557620, - "gasCost": 3, "depth": 2, + "gas": 1567718, + "gasCost": 3, + "op": "PUSH2", + "pc": 1468, "stack": [ "0xa0712d68", "0xd9", @@ -30569,11 +30569,11 @@ ] }, { - "pc": 1471, - "op": "JUMP", - "gas": 1557617, - "gasCost": 8, "depth": 2, + "gas": 1567715, + "gasCost": 8, + "op": "JUMP", + "pc": 1471, "stack": [ "0xa0712d68", "0xd9", @@ -30594,11 +30594,11 @@ ] }, { - "pc": 1407, - "op": "JUMPDEST", - "gas": 1557609, - "gasCost": 1, "depth": 2, + "gas": 1567707, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 1407, "stack": [ "0xa0712d68", "0xd9", @@ -30618,11 +30618,11 @@ ] }, { - "pc": 1408, - "op": "PUSH32", - "gas": 1557608, - "gasCost": 3, "depth": 2, + "gas": 1567706, + "gasCost": 3, + "op": "PUSH32", + "pc": 1408, "stack": [ "0xa0712d68", "0xd9", @@ -30642,11 +30642,11 @@ ] }, { - "pc": 1441, - "op": "PUSH1", - "gas": 1557605, - "gasCost": 3, "depth": 2, + "gas": 1567703, + "gasCost": 3, + "op": "PUSH1", + "pc": 1441, "stack": [ "0xa0712d68", "0xd9", @@ -30667,11 +30667,11 @@ ] }, { - "pc": 1443, - "op": "DUP3", - "gas": 1557602, - "gasCost": 3, "depth": 2, + "gas": 1567700, + "gasCost": 3, + "op": "DUP3", + "pc": 1443, "stack": [ "0xa0712d68", "0xd9", @@ -30693,11 +30693,11 @@ ] }, { - "pc": 1444, - "op": "ADD", - "gas": 1557599, - "gasCost": 3, "depth": 2, + "gas": 1567697, + "gasCost": 3, + "op": "ADD", + "pc": 1444, "stack": [ "0xa0712d68", "0xd9", @@ -30720,11 +30720,11 @@ ] }, { - "pc": 1445, - "op": "MSTORE", - "gas": 1557596, - "gasCost": 6, "depth": 2, + "gas": 1567694, + "gasCost": 6, + "op": "MSTORE", + "pc": 1445, "stack": [ "0xa0712d68", "0xd9", @@ -30746,11 +30746,11 @@ ] }, { - "pc": 1446, - "op": "POP", - "gas": 1557590, - "gasCost": 2, "depth": 2, + "gas": 1567688, + "gasCost": 2, + "op": "POP", + "pc": 1446, "stack": [ "0xa0712d68", "0xd9", @@ -30770,11 +30770,11 @@ ] }, { - "pc": 1447, - "op": "JUMP", - "gas": 1557588, - "gasCost": 8, "depth": 2, + "gas": 1567686, + "gasCost": 8, + "op": "JUMP", + "pc": 1447, "stack": [ "0xa0712d68", "0xd9", @@ -30793,11 +30793,11 @@ ] }, { - "pc": 1472, - "op": "JUMPDEST", - "gas": 1557580, - "gasCost": 1, "depth": 2, + "gas": 1567678, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 1472, "stack": [ "0xa0712d68", "0xd9", @@ -30815,11 +30815,11 @@ ] }, { - "pc": 1473, - "op": "PUSH1", - "gas": 1557579, - "gasCost": 3, "depth": 2, + "gas": 1567677, + "gasCost": 3, + "op": "PUSH1", + "pc": 1473, "stack": [ "0xa0712d68", "0xd9", @@ -30837,11 +30837,11 @@ ] }, { - "pc": 1475, - "op": "DUP3", - "gas": 1557576, - "gasCost": 3, "depth": 2, + "gas": 1567674, + "gasCost": 3, + "op": "DUP3", + "pc": 1475, "stack": [ "0xa0712d68", "0xd9", @@ -30860,11 +30860,11 @@ ] }, { - "pc": 1476, - "op": "ADD", - "gas": 1557573, - "gasCost": 3, "depth": 2, + "gas": 1567671, + "gasCost": 3, + "op": "ADD", + "pc": 1476, "stack": [ "0xa0712d68", "0xd9", @@ -30884,11 +30884,11 @@ ] }, { - "pc": 1477, - "op": "SWAP1", - "gas": 1557570, - "gasCost": 3, "depth": 2, + "gas": 1567668, + "gasCost": 3, + "op": "SWAP1", + "pc": 1477, "stack": [ "0xa0712d68", "0xd9", @@ -30907,11 +30907,11 @@ ] }, { - "pc": 1478, - "op": "POP", - "gas": 1557567, - "gasCost": 2, "depth": 2, + "gas": 1567665, + "gasCost": 2, + "op": "POP", + "pc": 1478, "stack": [ "0xa0712d68", "0xd9", @@ -30930,11 +30930,11 @@ ] }, { - "pc": 1479, - "op": "SWAP2", - "gas": 1557565, - "gasCost": 3, "depth": 2, + "gas": 1567663, + "gasCost": 3, + "op": "SWAP2", + "pc": 1479, "stack": [ "0xa0712d68", "0xd9", @@ -30952,11 +30952,11 @@ ] }, { - "pc": 1480, - "op": "SWAP1", - "gas": 1557562, - "gasCost": 3, "depth": 2, + "gas": 1567660, + "gasCost": 3, + "op": "SWAP1", + "pc": 1480, "stack": [ "0xa0712d68", "0xd9", @@ -30974,11 +30974,11 @@ ] }, { - "pc": 1481, - "op": "POP", - "gas": 1557559, - "gasCost": 2, "depth": 2, + "gas": 1567657, + "gasCost": 2, + "op": "POP", + "pc": 1481, "stack": [ "0xa0712d68", "0xd9", @@ -30996,11 +30996,11 @@ ] }, { - "pc": 1482, - "op": "JUMP", - "gas": 1557557, - "gasCost": 8, "depth": 2, + "gas": 1567655, + "gasCost": 8, + "op": "JUMP", + "pc": 1482, "stack": [ "0xa0712d68", "0xd9", @@ -31017,11 +31017,11 @@ ] }, { - "pc": 1521, - "op": "JUMPDEST", - "gas": 1557549, - "gasCost": 1, "depth": 2, + "gas": 1567647, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 1521, "stack": [ "0xa0712d68", "0xd9", @@ -31037,11 +31037,11 @@ ] }, { - "pc": 1522, - "op": "SWAP1", - "gas": 1557548, - "gasCost": 3, "depth": 2, + "gas": 1567646, + "gasCost": 3, + "op": "SWAP1", + "pc": 1522, "stack": [ "0xa0712d68", "0xd9", @@ -31057,11 +31057,11 @@ ] }, { - "pc": 1523, - "op": "POP", - "gas": 1557545, - "gasCost": 2, "depth": 2, + "gas": 1567643, + "gasCost": 2, + "op": "POP", + "pc": 1523, "stack": [ "0xa0712d68", "0xd9", @@ -31077,11 +31077,11 @@ ] }, { - "pc": 1524, - "op": "SWAP3", - "gas": 1557543, - "gasCost": 3, "depth": 2, + "gas": 1567641, + "gasCost": 3, + "op": "SWAP3", + "pc": 1524, "stack": [ "0xa0712d68", "0xd9", @@ -31096,11 +31096,11 @@ ] }, { - "pc": 1525, - "op": "SWAP2", - "gas": 1557540, - "gasCost": 3, "depth": 2, + "gas": 1567638, + "gasCost": 3, + "op": "SWAP2", + "pc": 1525, "stack": [ "0xa0712d68", "0xd9", @@ -31115,11 +31115,11 @@ ] }, { - "pc": 1526, - "op": "POP", - "gas": 1557537, - "gasCost": 2, "depth": 2, + "gas": 1567635, + "gasCost": 2, + "op": "POP", + "pc": 1526, "stack": [ "0xa0712d68", "0xd9", @@ -31134,11 +31134,11 @@ ] }, { - "pc": 1527, - "op": "POP", - "gas": 1557535, - "gasCost": 2, "depth": 2, + "gas": 1567633, + "gasCost": 2, + "op": "POP", + "pc": 1527, "stack": [ "0xa0712d68", "0xd9", @@ -31152,11 +31152,11 @@ ] }, { - "pc": 1528, - "op": "JUMP", - "gas": 1557533, - "gasCost": 8, "depth": 2, + "gas": 1567631, + "gasCost": 8, + "op": "JUMP", + "pc": 1528, "stack": [ "0xa0712d68", "0xd9", @@ -31169,11 +31169,11 @@ ] }, { - "pc": 621, - "op": "JUMPDEST", - "gas": 1557525, - "gasCost": 1, "depth": 2, + "gas": 1567623, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 621, "stack": [ "0xa0712d68", "0xd9", @@ -31185,11 +31185,11 @@ ] }, { - "pc": 622, - "op": "PUSH1", - "gas": 1557524, - "gasCost": 3, "depth": 2, + "gas": 1567622, + "gasCost": 3, + "op": "PUSH1", + "pc": 622, "stack": [ "0xa0712d68", "0xd9", @@ -31201,11 +31201,11 @@ ] }, { - "pc": 624, - "op": "MLOAD", - "gas": 1557521, - "gasCost": 3, "depth": 2, + "gas": 1567619, + "gasCost": 3, + "op": "MLOAD", + "pc": 624, "stack": [ "0xa0712d68", "0xd9", @@ -31218,11 +31218,11 @@ ] }, { - "pc": 625, - "op": "DUP1", - "gas": 1557518, - "gasCost": 3, "depth": 2, + "gas": 1567616, + "gasCost": 3, + "op": "DUP1", + "pc": 625, "stack": [ "0xa0712d68", "0xd9", @@ -31235,11 +31235,11 @@ ] }, { - "pc": 626, - "op": "SWAP2", - "gas": 1557515, - "gasCost": 3, "depth": 2, + "gas": 1567613, + "gasCost": 3, + "op": "SWAP2", + "pc": 626, "stack": [ "0xa0712d68", "0xd9", @@ -31253,11 +31253,11 @@ ] }, { - "pc": 627, - "op": "SUB", - "gas": 1557512, - "gasCost": 3, "depth": 2, + "gas": 1567610, + "gasCost": 3, + "op": "SUB", + "pc": 627, "stack": [ "0xa0712d68", "0xd9", @@ -31271,11 +31271,11 @@ ] }, { - "pc": 628, - "op": "SWAP1", - "gas": 1557509, - "gasCost": 3, "depth": 2, + "gas": 1567607, + "gasCost": 3, + "op": "SWAP1", + "pc": 628, "stack": [ "0xa0712d68", "0xd9", @@ -31288,11 +31288,11 @@ ] }, { - "pc": 629, - "op": "LOG2", - "gas": 1557506, - "gasCost": 2149, "depth": 2, + "gas": 1567604, + "gasCost": 2149, + "op": "LOG2", + "pc": 629, "stack": [ "0xa0712d68", "0xd9", @@ -31305,11 +31305,11 @@ ] }, { - "pc": 630, - "op": "DUP2", - "gas": 1555357, - "gasCost": 3, "depth": 2, + "gas": 1565455, + "gasCost": 3, + "op": "DUP2", + "pc": 630, "stack": [ "0xa0712d68", "0xd9", @@ -31318,11 +31318,11 @@ ] }, { - "pc": 631, - "op": "PUSH1", - "gas": 1555354, - "gasCost": 3, "depth": 2, + "gas": 1565452, + "gasCost": 3, + "op": "PUSH1", + "pc": 631, "stack": [ "0xa0712d68", "0xd9", @@ -31332,11 +31332,11 @@ ] }, { - "pc": 633, - "op": "DUP1", - "gas": 1555351, - "gasCost": 3, "depth": 2, + "gas": 1565449, + "gasCost": 3, + "op": "DUP1", + "pc": 633, "stack": [ "0xa0712d68", "0xd9", @@ -31347,11 +31347,11 @@ ] }, { - "pc": 634, - "op": "DUP3", - "gas": 1555348, - "gasCost": 3, "depth": 2, + "gas": 1565446, + "gasCost": 3, + "op": "DUP3", + "pc": 634, "stack": [ "0xa0712d68", "0xd9", @@ -31363,11 +31363,11 @@ ] }, { - "pc": 635, - "op": "DUP3", - "gas": 1555345, - "gasCost": 3, "depth": 2, + "gas": 1565443, + "gasCost": 3, + "op": "DUP3", + "pc": 635, "stack": [ "0xa0712d68", "0xd9", @@ -31380,11 +31380,11 @@ ] }, { - "pc": 636, - "op": "SLOAD", - "gas": 1555342, - "gasCost": 100, "depth": 2, + "gas": 1565440, + "gasCost": 200, + "op": "SLOAD", + "pc": 636, "stack": [ "0xa0712d68", "0xd9", @@ -31403,11 +31403,11 @@ } }, { - "pc": 637, - "op": "PUSH2", - "gas": 1555242, - "gasCost": 3, "depth": 2, + "gas": 1565240, + "gasCost": 3, + "op": "PUSH2", + "pc": 637, "stack": [ "0xa0712d68", "0xd9", @@ -31421,11 +31421,11 @@ ] }, { - "pc": 640, - "op": "SWAP2", - "gas": 1555239, - "gasCost": 3, "depth": 2, + "gas": 1565237, + "gasCost": 3, + "op": "SWAP2", + "pc": 640, "stack": [ "0xa0712d68", "0xd9", @@ -31440,11 +31440,11 @@ ] }, { - "pc": 641, - "op": "SWAP1", - "gas": 1555236, - "gasCost": 3, "depth": 2, + "gas": 1565234, + "gasCost": 3, + "op": "SWAP1", + "pc": 641, "stack": [ "0xa0712d68", "0xd9", @@ -31459,11 +31459,11 @@ ] }, { - "pc": 642, - "op": "PUSH2", - "gas": 1555233, - "gasCost": 3, "depth": 2, + "gas": 1565231, + "gasCost": 3, + "op": "PUSH2", + "pc": 642, "stack": [ "0xa0712d68", "0xd9", @@ -31478,11 +31478,11 @@ ] }, { - "pc": 645, - "op": "JUMP", - "gas": 1555230, - "gasCost": 8, "depth": 2, + "gas": 1565228, + "gasCost": 8, + "op": "JUMP", + "pc": 645, "stack": [ "0xa0712d68", "0xd9", @@ -31498,11 +31498,11 @@ ] }, { - "pc": 1247, - "op": "JUMPDEST", - "gas": 1555222, - "gasCost": 1, "depth": 2, + "gas": 1565220, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 1247, "stack": [ "0xa0712d68", "0xd9", @@ -31517,11 +31517,11 @@ ] }, { - "pc": 1248, - "op": "PUSH1", - "gas": 1555221, - "gasCost": 3, "depth": 2, + "gas": 1565219, + "gasCost": 3, + "op": "PUSH1", + "pc": 1248, "stack": [ "0xa0712d68", "0xd9", @@ -31536,11 +31536,11 @@ ] }, { - "pc": 1250, - "op": "PUSH2", - "gas": 1555218, - "gasCost": 3, "depth": 2, + "gas": 1565216, + "gasCost": 3, + "op": "PUSH2", + "pc": 1250, "stack": [ "0xa0712d68", "0xd9", @@ -31556,11 +31556,11 @@ ] }, { - "pc": 1253, - "op": "DUP3", - "gas": 1555215, - "gasCost": 3, "depth": 2, + "gas": 1565213, + "gasCost": 3, + "op": "DUP3", + "pc": 1253, "stack": [ "0xa0712d68", "0xd9", @@ -31577,11 +31577,11 @@ ] }, { - "pc": 1254, - "op": "PUSH2", - "gas": 1555212, - "gasCost": 3, "depth": 2, + "gas": 1565210, + "gasCost": 3, + "op": "PUSH2", + "pc": 1254, "stack": [ "0xa0712d68", "0xd9", @@ -31599,11 +31599,11 @@ ] }, { - "pc": 1257, - "op": "JUMP", - "gas": 1555209, - "gasCost": 8, "depth": 2, + "gas": 1565207, + "gasCost": 8, + "op": "JUMP", + "pc": 1257, "stack": [ "0xa0712d68", "0xd9", @@ -31622,11 +31622,11 @@ ] }, { - "pc": 781, - "op": "JUMPDEST", - "gas": 1555201, - "gasCost": 1, "depth": 2, + "gas": 1565199, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 781, "stack": [ "0xa0712d68", "0xd9", @@ -31644,11 +31644,11 @@ ] }, { - "pc": 782, - "op": "PUSH1", - "gas": 1555200, - "gasCost": 3, "depth": 2, + "gas": 1565198, + "gasCost": 3, + "op": "PUSH1", + "pc": 782, "stack": [ "0xa0712d68", "0xd9", @@ -31666,11 +31666,11 @@ ] }, { - "pc": 784, - "op": "DUP2", - "gas": 1555197, - "gasCost": 3, "depth": 2, + "gas": 1565195, + "gasCost": 3, + "op": "DUP2", + "pc": 784, "stack": [ "0xa0712d68", "0xd9", @@ -31689,11 +31689,11 @@ ] }, { - "pc": 785, - "op": "SWAP1", - "gas": 1555194, - "gasCost": 3, "depth": 2, + "gas": 1565192, + "gasCost": 3, + "op": "SWAP1", + "pc": 785, "stack": [ "0xa0712d68", "0xd9", @@ -31713,11 +31713,11 @@ ] }, { - "pc": 786, - "op": "POP", - "gas": 1555191, - "gasCost": 2, "depth": 2, + "gas": 1565189, + "gasCost": 2, + "op": "POP", + "pc": 786, "stack": [ "0xa0712d68", "0xd9", @@ -31737,11 +31737,11 @@ ] }, { - "pc": 787, - "op": "SWAP2", - "gas": 1555189, - "gasCost": 3, "depth": 2, + "gas": 1565187, + "gasCost": 3, + "op": "SWAP2", + "pc": 787, "stack": [ "0xa0712d68", "0xd9", @@ -31760,11 +31760,11 @@ ] }, { - "pc": 788, - "op": "SWAP1", - "gas": 1555186, - "gasCost": 3, "depth": 2, + "gas": 1565184, + "gasCost": 3, + "op": "SWAP1", + "pc": 788, "stack": [ "0xa0712d68", "0xd9", @@ -31783,11 +31783,11 @@ ] }, { - "pc": 789, - "op": "POP", - "gas": 1555183, - "gasCost": 2, "depth": 2, + "gas": 1565181, + "gasCost": 2, + "op": "POP", + "pc": 789, "stack": [ "0xa0712d68", "0xd9", @@ -31806,11 +31806,11 @@ ] }, { - "pc": 790, - "op": "JUMP", - "gas": 1555181, - "gasCost": 8, "depth": 2, + "gas": 1565179, + "gasCost": 8, + "op": "JUMP", + "pc": 790, "stack": [ "0xa0712d68", "0xd9", @@ -31828,11 +31828,11 @@ ] }, { - "pc": 1258, - "op": "JUMPDEST", - "gas": 1555173, - "gasCost": 1, "depth": 2, + "gas": 1565171, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 1258, "stack": [ "0xa0712d68", "0xd9", @@ -31849,11 +31849,11 @@ ] }, { - "pc": 1259, - "op": "SWAP2", - "gas": 1555172, - "gasCost": 3, "depth": 2, + "gas": 1565170, + "gasCost": 3, + "op": "SWAP2", + "pc": 1259, "stack": [ "0xa0712d68", "0xd9", @@ -31870,11 +31870,11 @@ ] }, { - "pc": 1260, - "op": "POP", - "gas": 1555169, - "gasCost": 2, "depth": 2, + "gas": 1565167, + "gasCost": 2, + "op": "POP", + "pc": 1260, "stack": [ "0xa0712d68", "0xd9", @@ -31891,11 +31891,11 @@ ] }, { - "pc": 1261, - "op": "PUSH2", - "gas": 1555167, - "gasCost": 3, "depth": 2, + "gas": 1565165, + "gasCost": 3, + "op": "PUSH2", + "pc": 1261, "stack": [ "0xa0712d68", "0xd9", @@ -31911,11 +31911,11 @@ ] }, { - "pc": 1264, - "op": "DUP4", - "gas": 1555164, - "gasCost": 3, "depth": 2, + "gas": 1565162, + "gasCost": 3, + "op": "DUP4", + "pc": 1264, "stack": [ "0xa0712d68", "0xd9", @@ -31932,11 +31932,11 @@ ] }, { - "pc": 1265, - "op": "PUSH2", - "gas": 1555161, - "gasCost": 3, "depth": 2, + "gas": 1565159, + "gasCost": 3, + "op": "PUSH2", + "pc": 1265, "stack": [ "0xa0712d68", "0xd9", @@ -31954,11 +31954,11 @@ ] }, { - "pc": 1268, - "op": "JUMP", - "gas": 1555158, - "gasCost": 8, "depth": 2, + "gas": 1565156, + "gasCost": 8, + "op": "JUMP", + "pc": 1268, "stack": [ "0xa0712d68", "0xd9", @@ -31977,11 +31977,11 @@ ] }, { - "pc": 781, - "op": "JUMPDEST", - "gas": 1555150, - "gasCost": 1, "depth": 2, + "gas": 1565148, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 781, "stack": [ "0xa0712d68", "0xd9", @@ -31999,11 +31999,11 @@ ] }, { - "pc": 782, - "op": "PUSH1", - "gas": 1555149, - "gasCost": 3, "depth": 2, + "gas": 1565147, + "gasCost": 3, + "op": "PUSH1", + "pc": 782, "stack": [ "0xa0712d68", "0xd9", @@ -32021,11 +32021,11 @@ ] }, { - "pc": 784, - "op": "DUP2", - "gas": 1555146, - "gasCost": 3, "depth": 2, + "gas": 1565144, + "gasCost": 3, + "op": "DUP2", + "pc": 784, "stack": [ "0xa0712d68", "0xd9", @@ -32044,11 +32044,11 @@ ] }, { - "pc": 785, - "op": "SWAP1", - "gas": 1555143, - "gasCost": 3, "depth": 2, + "gas": 1565141, + "gasCost": 3, + "op": "SWAP1", + "pc": 785, "stack": [ "0xa0712d68", "0xd9", @@ -32068,11 +32068,11 @@ ] }, { - "pc": 786, - "op": "POP", - "gas": 1555140, - "gasCost": 2, "depth": 2, + "gas": 1565138, + "gasCost": 2, + "op": "POP", + "pc": 786, "stack": [ "0xa0712d68", "0xd9", @@ -32092,11 +32092,11 @@ ] }, { - "pc": 787, - "op": "SWAP2", - "gas": 1555138, - "gasCost": 3, "depth": 2, + "gas": 1565136, + "gasCost": 3, + "op": "SWAP2", + "pc": 787, "stack": [ "0xa0712d68", "0xd9", @@ -32115,11 +32115,11 @@ ] }, { - "pc": 788, - "op": "SWAP1", - "gas": 1555135, - "gasCost": 3, "depth": 2, + "gas": 1565133, + "gasCost": 3, + "op": "SWAP1", + "pc": 788, "stack": [ "0xa0712d68", "0xd9", @@ -32138,11 +32138,11 @@ ] }, { - "pc": 789, - "op": "POP", - "gas": 1555132, - "gasCost": 2, "depth": 2, + "gas": 1565130, + "gasCost": 2, + "op": "POP", + "pc": 789, "stack": [ "0xa0712d68", "0xd9", @@ -32161,11 +32161,11 @@ ] }, { - "pc": 790, - "op": "JUMP", - "gas": 1555130, - "gasCost": 8, "depth": 2, + "gas": 1565128, + "gasCost": 8, + "op": "JUMP", + "pc": 790, "stack": [ "0xa0712d68", "0xd9", @@ -32183,11 +32183,11 @@ ] }, { - "pc": 1269, - "op": "JUMPDEST", - "gas": 1555122, - "gasCost": 1, "depth": 2, + "gas": 1565120, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 1269, "stack": [ "0xa0712d68", "0xd9", @@ -32204,11 +32204,11 @@ ] }, { - "pc": 1270, - "op": "SWAP3", - "gas": 1555121, - "gasCost": 3, "depth": 2, + "gas": 1565119, + "gasCost": 3, + "op": "SWAP3", + "pc": 1270, "stack": [ "0xa0712d68", "0xd9", @@ -32225,11 +32225,11 @@ ] }, { - "pc": 1271, - "op": "POP", - "gas": 1555118, - "gasCost": 2, "depth": 2, + "gas": 1565116, + "gasCost": 2, + "op": "POP", + "pc": 1271, "stack": [ "0xa0712d68", "0xd9", @@ -32246,11 +32246,11 @@ ] }, { - "pc": 1272, - "op": "DUP3", - "gas": 1555116, - "gasCost": 3, "depth": 2, + "gas": 1565114, + "gasCost": 3, + "op": "DUP3", + "pc": 1272, "stack": [ "0xa0712d68", "0xd9", @@ -32266,11 +32266,11 @@ ] }, { - "pc": 1273, - "op": "DUP3", - "gas": 1555113, - "gasCost": 3, "depth": 2, + "gas": 1565111, + "gasCost": 3, + "op": "DUP3", + "pc": 1273, "stack": [ "0xa0712d68", "0xd9", @@ -32287,11 +32287,11 @@ ] }, { - "pc": 1274, - "op": "ADD", - "gas": 1555110, - "gasCost": 3, "depth": 2, + "gas": 1565108, + "gasCost": 3, + "op": "ADD", + "pc": 1274, "stack": [ "0xa0712d68", "0xd9", @@ -32309,11 +32309,11 @@ ] }, { - "pc": 1275, - "op": "SWAP1", - "gas": 1555107, - "gasCost": 3, "depth": 2, + "gas": 1565105, + "gasCost": 3, + "op": "SWAP1", + "pc": 1275, "stack": [ "0xa0712d68", "0xd9", @@ -32330,11 +32330,11 @@ ] }, { - "pc": 1276, - "op": "POP", - "gas": 1555104, - "gasCost": 2, "depth": 2, + "gas": 1565102, + "gasCost": 2, + "op": "POP", + "pc": 1276, "stack": [ "0xa0712d68", "0xd9", @@ -32351,11 +32351,11 @@ ] }, { - "pc": 1277, - "op": "DUP1", - "gas": 1555102, - "gasCost": 3, "depth": 2, + "gas": 1565100, + "gasCost": 3, + "op": "DUP1", + "pc": 1277, "stack": [ "0xa0712d68", "0xd9", @@ -32371,11 +32371,11 @@ ] }, { - "pc": 1278, - "op": "DUP3", - "gas": 1555099, - "gasCost": 3, "depth": 2, + "gas": 1565097, + "gasCost": 3, + "op": "DUP3", + "pc": 1278, "stack": [ "0xa0712d68", "0xd9", @@ -32392,11 +32392,11 @@ ] }, { - "pc": 1279, - "op": "GT", - "gas": 1555096, - "gasCost": 3, "depth": 2, + "gas": 1565094, + "gasCost": 3, + "op": "GT", + "pc": 1279, "stack": [ "0xa0712d68", "0xd9", @@ -32414,11 +32414,11 @@ ] }, { - "pc": 1280, - "op": "ISZERO", - "gas": 1555093, - "gasCost": 3, "depth": 2, + "gas": 1565091, + "gasCost": 3, + "op": "ISZERO", + "pc": 1280, "stack": [ "0xa0712d68", "0xd9", @@ -32435,11 +32435,11 @@ ] }, { - "pc": 1281, - "op": "PUSH2", - "gas": 1555090, - "gasCost": 3, "depth": 2, + "gas": 1565088, + "gasCost": 3, + "op": "PUSH2", + "pc": 1281, "stack": [ "0xa0712d68", "0xd9", @@ -32456,11 +32456,11 @@ ] }, { - "pc": 1284, - "op": "JUMPI", - "gas": 1555087, - "gasCost": 10, "depth": 2, + "gas": 1565085, + "gasCost": 10, + "op": "JUMPI", + "pc": 1284, "stack": [ "0xa0712d68", "0xd9", @@ -32478,11 +32478,11 @@ ] }, { - "pc": 1293, - "op": "JUMPDEST", - "gas": 1555077, - "gasCost": 1, "depth": 2, + "gas": 1565075, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 1293, "stack": [ "0xa0712d68", "0xd9", @@ -32498,11 +32498,11 @@ ] }, { - "pc": 1294, - "op": "SWAP3", - "gas": 1555076, - "gasCost": 3, "depth": 2, + "gas": 1565074, + "gasCost": 3, + "op": "SWAP3", + "pc": 1294, "stack": [ "0xa0712d68", "0xd9", @@ -32518,11 +32518,11 @@ ] }, { - "pc": 1295, - "op": "SWAP2", - "gas": 1555073, - "gasCost": 3, "depth": 2, + "gas": 1565071, + "gasCost": 3, + "op": "SWAP2", + "pc": 1295, "stack": [ "0xa0712d68", "0xd9", @@ -32538,11 +32538,11 @@ ] }, { - "pc": 1296, - "op": "POP", - "gas": 1555070, - "gasCost": 2, "depth": 2, + "gas": 1565068, + "gasCost": 2, + "op": "POP", + "pc": 1296, "stack": [ "0xa0712d68", "0xd9", @@ -32558,11 +32558,11 @@ ] }, { - "pc": 1297, - "op": "POP", - "gas": 1555068, - "gasCost": 2, "depth": 2, + "gas": 1565066, + "gasCost": 2, + "op": "POP", + "pc": 1297, "stack": [ "0xa0712d68", "0xd9", @@ -32577,11 +32577,11 @@ ] }, { - "pc": 1298, - "op": "JUMP", - "gas": 1555066, - "gasCost": 8, "depth": 2, + "gas": 1565064, + "gasCost": 8, + "op": "JUMP", + "pc": 1298, "stack": [ "0xa0712d68", "0xd9", @@ -32595,11 +32595,11 @@ ] }, { - "pc": 646, - "op": "JUMPDEST", - "gas": 1555058, - "gasCost": 1, "depth": 2, + "gas": 1565056, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 646, "stack": [ "0xa0712d68", "0xd9", @@ -32612,11 +32612,11 @@ ] }, { - "pc": 647, - "op": "SWAP3", - "gas": 1555057, - "gasCost": 3, "depth": 2, + "gas": 1565055, + "gasCost": 3, + "op": "SWAP3", + "pc": 647, "stack": [ "0xa0712d68", "0xd9", @@ -32629,11 +32629,11 @@ ] }, { - "pc": 648, - "op": "POP", - "gas": 1555054, - "gasCost": 2, "depth": 2, + "gas": 1565052, + "gasCost": 2, + "op": "POP", + "pc": 648, "stack": [ "0xa0712d68", "0xd9", @@ -32646,11 +32646,11 @@ ] }, { - "pc": 649, - "op": "POP", - "gas": 1555052, - "gasCost": 2, "depth": 2, + "gas": 1565050, + "gasCost": 2, + "op": "POP", + "pc": 649, "stack": [ "0xa0712d68", "0xd9", @@ -32662,11 +32662,11 @@ ] }, { - "pc": 650, - "op": "DUP2", - "gas": 1555050, - "gasCost": 3, "depth": 2, + "gas": 1565048, + "gasCost": 3, + "op": "DUP2", + "pc": 650, "stack": [ "0xa0712d68", "0xd9", @@ -32677,11 +32677,11 @@ ] }, { - "pc": 651, - "op": "SWAP1", - "gas": 1555047, - "gasCost": 3, "depth": 2, + "gas": 1565045, + "gasCost": 3, + "op": "SWAP1", + "pc": 651, "stack": [ "0xa0712d68", "0xd9", @@ -32693,11 +32693,11 @@ ] }, { - "pc": 652, - "op": "SSTORE", - "gas": 1555044, - "gasCost": 100, "depth": 2, + "gas": 1565042, + "gasCost": 200, + "op": "SSTORE", + "pc": 652, "stack": [ "0xa0712d68", "0xd9", @@ -32714,11 +32714,11 @@ } }, { - "pc": 653, - "op": "POP", - "gas": 1554944, - "gasCost": 2, "depth": 2, + "gas": 1564842, + "gasCost": 2, + "op": "POP", + "pc": 653, "stack": [ "0xa0712d68", "0xd9", @@ -32728,11 +32728,11 @@ ] }, { - "pc": 654, - "op": "PUSH2", - "gas": 1554942, - "gasCost": 3, "depth": 2, + "gas": 1564840, + "gasCost": 3, + "op": "PUSH2", + "pc": 654, "stack": [ "0xa0712d68", "0xd9", @@ -32741,11 +32741,11 @@ ] }, { - "pc": 657, - "op": "PUSH1", - "gas": 1554939, - "gasCost": 3, "depth": 2, + "gas": 1564837, + "gasCost": 3, + "op": "PUSH1", + "pc": 657, "stack": [ "0xa0712d68", "0xd9", @@ -32755,11 +32755,11 @@ ] }, { - "pc": 659, - "op": "DUP4", - "gas": 1554936, - "gasCost": 3, "depth": 2, + "gas": 1564834, + "gasCost": 3, + "op": "DUP4", + "pc": 659, "stack": [ "0xa0712d68", "0xd9", @@ -32770,11 +32770,11 @@ ] }, { - "pc": 660, - "op": "PUSH2", - "gas": 1554933, - "gasCost": 3, "depth": 2, + "gas": 1564831, + "gasCost": 3, + "op": "PUSH2", + "pc": 660, "stack": [ "0xa0712d68", "0xd9", @@ -32786,11 +32786,11 @@ ] }, { - "pc": 663, - "op": "SWAP2", - "gas": 1554930, - "gasCost": 3, "depth": 2, + "gas": 1564828, + "gasCost": 3, + "op": "SWAP2", + "pc": 663, "stack": [ "0xa0712d68", "0xd9", @@ -32803,11 +32803,11 @@ ] }, { - "pc": 664, - "op": "SWAP1", - "gas": 1554927, - "gasCost": 3, "depth": 2, + "gas": 1564825, + "gasCost": 3, + "op": "SWAP1", + "pc": 664, "stack": [ "0xa0712d68", "0xd9", @@ -32820,11 +32820,11 @@ ] }, { - "pc": 665, - "op": "PUSH2", - "gas": 1554924, - "gasCost": 3, "depth": 2, + "gas": 1564822, + "gasCost": 3, + "op": "PUSH2", + "pc": 665, "stack": [ "0xa0712d68", "0xd9", @@ -32837,11 +32837,11 @@ ] }, { - "pc": 668, - "op": "JUMP", - "gas": 1554921, - "gasCost": 8, "depth": 2, + "gas": 1564819, + "gasCost": 8, + "op": "JUMP", + "pc": 668, "stack": [ "0xa0712d68", "0xd9", @@ -32855,11 +32855,11 @@ ] }, { - "pc": 1247, - "op": "JUMPDEST", - "gas": 1554913, - "gasCost": 1, "depth": 2, + "gas": 1564811, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 1247, "stack": [ "0xa0712d68", "0xd9", @@ -32872,11 +32872,11 @@ ] }, { - "pc": 1248, - "op": "PUSH1", - "gas": 1554912, - "gasCost": 3, "depth": 2, + "gas": 1564810, + "gasCost": 3, + "op": "PUSH1", + "pc": 1248, "stack": [ "0xa0712d68", "0xd9", @@ -32889,11 +32889,11 @@ ] }, { - "pc": 1250, - "op": "PUSH2", - "gas": 1554909, - "gasCost": 3, "depth": 2, + "gas": 1564807, + "gasCost": 3, + "op": "PUSH2", + "pc": 1250, "stack": [ "0xa0712d68", "0xd9", @@ -32907,11 +32907,11 @@ ] }, { - "pc": 1253, - "op": "DUP3", - "gas": 1554906, - "gasCost": 3, "depth": 2, + "gas": 1564804, + "gasCost": 3, + "op": "DUP3", + "pc": 1253, "stack": [ "0xa0712d68", "0xd9", @@ -32926,11 +32926,11 @@ ] }, { - "pc": 1254, - "op": "PUSH2", - "gas": 1554903, - "gasCost": 3, "depth": 2, + "gas": 1564801, + "gasCost": 3, + "op": "PUSH2", + "pc": 1254, "stack": [ "0xa0712d68", "0xd9", @@ -32946,11 +32946,11 @@ ] }, { - "pc": 1257, - "op": "JUMP", - "gas": 1554900, - "gasCost": 8, "depth": 2, + "gas": 1564798, + "gasCost": 8, + "op": "JUMP", + "pc": 1257, "stack": [ "0xa0712d68", "0xd9", @@ -32967,11 +32967,11 @@ ] }, { - "pc": 781, - "op": "JUMPDEST", - "gas": 1554892, - "gasCost": 1, "depth": 2, + "gas": 1564790, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 781, "stack": [ "0xa0712d68", "0xd9", @@ -32987,11 +32987,11 @@ ] }, { - "pc": 782, - "op": "PUSH1", - "gas": 1554891, - "gasCost": 3, "depth": 2, + "gas": 1564789, + "gasCost": 3, + "op": "PUSH1", + "pc": 782, "stack": [ "0xa0712d68", "0xd9", @@ -33007,11 +33007,11 @@ ] }, { - "pc": 784, - "op": "DUP2", - "gas": 1554888, - "gasCost": 3, "depth": 2, + "gas": 1564786, + "gasCost": 3, + "op": "DUP2", + "pc": 784, "stack": [ "0xa0712d68", "0xd9", @@ -33028,11 +33028,11 @@ ] }, { - "pc": 785, - "op": "SWAP1", - "gas": 1554885, - "gasCost": 3, "depth": 2, + "gas": 1564783, + "gasCost": 3, + "op": "SWAP1", + "pc": 785, "stack": [ "0xa0712d68", "0xd9", @@ -33050,11 +33050,11 @@ ] }, { - "pc": 786, - "op": "POP", - "gas": 1554882, - "gasCost": 2, "depth": 2, + "gas": 1564780, + "gasCost": 2, + "op": "POP", + "pc": 786, "stack": [ "0xa0712d68", "0xd9", @@ -33072,11 +33072,11 @@ ] }, { - "pc": 787, - "op": "SWAP2", - "gas": 1554880, - "gasCost": 3, "depth": 2, + "gas": 1564778, + "gasCost": 3, + "op": "SWAP2", + "pc": 787, "stack": [ "0xa0712d68", "0xd9", @@ -33093,11 +33093,11 @@ ] }, { - "pc": 788, - "op": "SWAP1", - "gas": 1554877, - "gasCost": 3, "depth": 2, + "gas": 1564775, + "gasCost": 3, + "op": "SWAP1", + "pc": 788, "stack": [ "0xa0712d68", "0xd9", @@ -33114,11 +33114,11 @@ ] }, { - "pc": 789, - "op": "POP", - "gas": 1554874, - "gasCost": 2, "depth": 2, + "gas": 1564772, + "gasCost": 2, + "op": "POP", + "pc": 789, "stack": [ "0xa0712d68", "0xd9", @@ -33135,11 +33135,11 @@ ] }, { - "pc": 790, - "op": "JUMP", - "gas": 1554872, - "gasCost": 8, "depth": 2, + "gas": 1564770, + "gasCost": 8, + "op": "JUMP", + "pc": 790, "stack": [ "0xa0712d68", "0xd9", @@ -33155,11 +33155,11 @@ ] }, { - "pc": 1258, - "op": "JUMPDEST", - "gas": 1554864, - "gasCost": 1, "depth": 2, + "gas": 1564762, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 1258, "stack": [ "0xa0712d68", "0xd9", @@ -33174,11 +33174,11 @@ ] }, { - "pc": 1259, - "op": "SWAP2", - "gas": 1554863, - "gasCost": 3, "depth": 2, + "gas": 1564761, + "gasCost": 3, + "op": "SWAP2", + "pc": 1259, "stack": [ "0xa0712d68", "0xd9", @@ -33193,11 +33193,11 @@ ] }, { - "pc": 1260, - "op": "POP", - "gas": 1554860, - "gasCost": 2, "depth": 2, + "gas": 1564758, + "gasCost": 2, + "op": "POP", + "pc": 1260, "stack": [ "0xa0712d68", "0xd9", @@ -33212,11 +33212,11 @@ ] }, { - "pc": 1261, - "op": "PUSH2", - "gas": 1554858, - "gasCost": 3, "depth": 2, + "gas": 1564756, + "gasCost": 3, + "op": "PUSH2", + "pc": 1261, "stack": [ "0xa0712d68", "0xd9", @@ -33230,11 +33230,11 @@ ] }, { - "pc": 1264, - "op": "DUP4", - "gas": 1554855, - "gasCost": 3, "depth": 2, + "gas": 1564753, + "gasCost": 3, + "op": "DUP4", + "pc": 1264, "stack": [ "0xa0712d68", "0xd9", @@ -33249,11 +33249,11 @@ ] }, { - "pc": 1265, - "op": "PUSH2", - "gas": 1554852, - "gasCost": 3, "depth": 2, + "gas": 1564750, + "gasCost": 3, + "op": "PUSH2", + "pc": 1265, "stack": [ "0xa0712d68", "0xd9", @@ -33269,11 +33269,11 @@ ] }, { - "pc": 1268, - "op": "JUMP", - "gas": 1554849, - "gasCost": 8, "depth": 2, + "gas": 1564747, + "gasCost": 8, + "op": "JUMP", + "pc": 1268, "stack": [ "0xa0712d68", "0xd9", @@ -33290,11 +33290,11 @@ ] }, { - "pc": 781, - "op": "JUMPDEST", - "gas": 1554841, - "gasCost": 1, "depth": 2, + "gas": 1564739, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 781, "stack": [ "0xa0712d68", "0xd9", @@ -33310,11 +33310,11 @@ ] }, { - "pc": 782, - "op": "PUSH1", - "gas": 1554840, - "gasCost": 3, "depth": 2, + "gas": 1564738, + "gasCost": 3, + "op": "PUSH1", + "pc": 782, "stack": [ "0xa0712d68", "0xd9", @@ -33330,11 +33330,11 @@ ] }, { - "pc": 784, - "op": "DUP2", - "gas": 1554837, - "gasCost": 3, "depth": 2, + "gas": 1564735, + "gasCost": 3, + "op": "DUP2", + "pc": 784, "stack": [ "0xa0712d68", "0xd9", @@ -33351,11 +33351,11 @@ ] }, { - "pc": 785, - "op": "SWAP1", - "gas": 1554834, - "gasCost": 3, "depth": 2, + "gas": 1564732, + "gasCost": 3, + "op": "SWAP1", + "pc": 785, "stack": [ "0xa0712d68", "0xd9", @@ -33373,11 +33373,11 @@ ] }, { - "pc": 786, - "op": "POP", - "gas": 1554831, - "gasCost": 2, "depth": 2, + "gas": 1564729, + "gasCost": 2, + "op": "POP", + "pc": 786, "stack": [ "0xa0712d68", "0xd9", @@ -33395,11 +33395,11 @@ ] }, { - "pc": 787, - "op": "SWAP2", - "gas": 1554829, - "gasCost": 3, "depth": 2, + "gas": 1564727, + "gasCost": 3, + "op": "SWAP2", + "pc": 787, "stack": [ "0xa0712d68", "0xd9", @@ -33416,11 +33416,11 @@ ] }, { - "pc": 788, - "op": "SWAP1", - "gas": 1554826, - "gasCost": 3, "depth": 2, + "gas": 1564724, + "gasCost": 3, + "op": "SWAP1", + "pc": 788, "stack": [ "0xa0712d68", "0xd9", @@ -33437,11 +33437,11 @@ ] }, { - "pc": 789, - "op": "POP", - "gas": 1554823, - "gasCost": 2, "depth": 2, + "gas": 1564721, + "gasCost": 2, + "op": "POP", + "pc": 789, "stack": [ "0xa0712d68", "0xd9", @@ -33458,11 +33458,11 @@ ] }, { - "pc": 790, - "op": "JUMP", - "gas": 1554821, - "gasCost": 8, "depth": 2, + "gas": 1564719, + "gasCost": 8, + "op": "JUMP", + "pc": 790, "stack": [ "0xa0712d68", "0xd9", @@ -33478,11 +33478,11 @@ ] }, { - "pc": 1269, - "op": "JUMPDEST", - "gas": 1554813, - "gasCost": 1, "depth": 2, + "gas": 1564711, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 1269, "stack": [ "0xa0712d68", "0xd9", @@ -33497,11 +33497,11 @@ ] }, { - "pc": 1270, - "op": "SWAP3", - "gas": 1554812, - "gasCost": 3, "depth": 2, + "gas": 1564710, + "gasCost": 3, + "op": "SWAP3", + "pc": 1270, "stack": [ "0xa0712d68", "0xd9", @@ -33516,11 +33516,11 @@ ] }, { - "pc": 1271, - "op": "POP", - "gas": 1554809, - "gasCost": 2, "depth": 2, + "gas": 1564707, + "gasCost": 2, + "op": "POP", + "pc": 1271, "stack": [ "0xa0712d68", "0xd9", @@ -33535,11 +33535,11 @@ ] }, { - "pc": 1272, - "op": "DUP3", - "gas": 1554807, - "gasCost": 3, "depth": 2, + "gas": 1564705, + "gasCost": 3, + "op": "DUP3", + "pc": 1272, "stack": [ "0xa0712d68", "0xd9", @@ -33553,11 +33553,11 @@ ] }, { - "pc": 1273, - "op": "DUP3", - "gas": 1554804, - "gasCost": 3, "depth": 2, + "gas": 1564702, + "gasCost": 3, + "op": "DUP3", + "pc": 1273, "stack": [ "0xa0712d68", "0xd9", @@ -33572,11 +33572,11 @@ ] }, { - "pc": 1274, - "op": "ADD", - "gas": 1554801, - "gasCost": 3, "depth": 2, + "gas": 1564699, + "gasCost": 3, + "op": "ADD", + "pc": 1274, "stack": [ "0xa0712d68", "0xd9", @@ -33592,11 +33592,11 @@ ] }, { - "pc": 1275, - "op": "SWAP1", - "gas": 1554798, - "gasCost": 3, "depth": 2, + "gas": 1564696, + "gasCost": 3, + "op": "SWAP1", + "pc": 1275, "stack": [ "0xa0712d68", "0xd9", @@ -33611,11 +33611,11 @@ ] }, { - "pc": 1276, - "op": "POP", - "gas": 1554795, - "gasCost": 2, "depth": 2, + "gas": 1564693, + "gasCost": 2, + "op": "POP", + "pc": 1276, "stack": [ "0xa0712d68", "0xd9", @@ -33630,11 +33630,11 @@ ] }, { - "pc": 1277, - "op": "DUP1", - "gas": 1554793, - "gasCost": 3, "depth": 2, + "gas": 1564691, + "gasCost": 3, + "op": "DUP1", + "pc": 1277, "stack": [ "0xa0712d68", "0xd9", @@ -33648,11 +33648,11 @@ ] }, { - "pc": 1278, - "op": "DUP3", - "gas": 1554790, - "gasCost": 3, "depth": 2, + "gas": 1564688, + "gasCost": 3, + "op": "DUP3", + "pc": 1278, "stack": [ "0xa0712d68", "0xd9", @@ -33667,11 +33667,11 @@ ] }, { - "pc": 1279, - "op": "GT", - "gas": 1554787, - "gasCost": 3, "depth": 2, + "gas": 1564685, + "gasCost": 3, + "op": "GT", + "pc": 1279, "stack": [ "0xa0712d68", "0xd9", @@ -33687,11 +33687,11 @@ ] }, { - "pc": 1280, - "op": "ISZERO", - "gas": 1554784, - "gasCost": 3, "depth": 2, + "gas": 1564682, + "gasCost": 3, + "op": "ISZERO", + "pc": 1280, "stack": [ "0xa0712d68", "0xd9", @@ -33706,11 +33706,11 @@ ] }, { - "pc": 1281, - "op": "PUSH2", - "gas": 1554781, - "gasCost": 3, "depth": 2, + "gas": 1564679, + "gasCost": 3, + "op": "PUSH2", + "pc": 1281, "stack": [ "0xa0712d68", "0xd9", @@ -33725,11 +33725,11 @@ ] }, { - "pc": 1284, - "op": "JUMPI", - "gas": 1554778, - "gasCost": 10, "depth": 2, + "gas": 1564676, + "gasCost": 10, + "op": "JUMPI", + "pc": 1284, "stack": [ "0xa0712d68", "0xd9", @@ -33745,11 +33745,11 @@ ] }, { - "pc": 1293, - "op": "JUMPDEST", - "gas": 1554768, - "gasCost": 1, "depth": 2, + "gas": 1564666, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 1293, "stack": [ "0xa0712d68", "0xd9", @@ -33763,11 +33763,11 @@ ] }, { - "pc": 1294, - "op": "SWAP3", - "gas": 1554767, - "gasCost": 3, "depth": 2, + "gas": 1564665, + "gasCost": 3, + "op": "SWAP3", + "pc": 1294, "stack": [ "0xa0712d68", "0xd9", @@ -33781,11 +33781,11 @@ ] }, { - "pc": 1295, - "op": "SWAP2", - "gas": 1554764, - "gasCost": 3, "depth": 2, + "gas": 1564662, + "gasCost": 3, + "op": "SWAP2", + "pc": 1295, "stack": [ "0xa0712d68", "0xd9", @@ -33799,11 +33799,11 @@ ] }, { - "pc": 1296, - "op": "POP", - "gas": 1554761, - "gasCost": 2, "depth": 2, + "gas": 1564659, + "gasCost": 2, + "op": "POP", + "pc": 1296, "stack": [ "0xa0712d68", "0xd9", @@ -33817,11 +33817,11 @@ ] }, { - "pc": 1297, - "op": "POP", - "gas": 1554759, - "gasCost": 2, "depth": 2, + "gas": 1564657, + "gasCost": 2, + "op": "POP", + "pc": 1297, "stack": [ "0xa0712d68", "0xd9", @@ -33834,11 +33834,11 @@ ] }, { - "pc": 1298, - "op": "JUMP", - "gas": 1554757, - "gasCost": 8, "depth": 2, + "gas": 1564655, + "gasCost": 8, + "op": "JUMP", + "pc": 1298, "stack": [ "0xa0712d68", "0xd9", @@ -33850,11 +33850,11 @@ ] }, { - "pc": 669, - "op": "JUMPDEST", - "gas": 1554749, - "gasCost": 1, "depth": 2, + "gas": 1564647, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 669, "stack": [ "0xa0712d68", "0xd9", @@ -33865,11 +33865,11 @@ ] }, { - "pc": 670, - "op": "PUSH2", - "gas": 1554748, - "gasCost": 3, "depth": 2, + "gas": 1564646, + "gasCost": 3, + "op": "PUSH2", + "pc": 670, "stack": [ "0xa0712d68", "0xd9", @@ -33880,11 +33880,11 @@ ] }, { - "pc": 673, - "op": "JUMP", - "gas": 1554745, - "gasCost": 8, "depth": 2, + "gas": 1564643, + "gasCost": 8, + "op": "JUMP", + "pc": 673, "stack": [ "0xa0712d68", "0xd9", @@ -33896,11 +33896,11 @@ ] }, { - "pc": 376, - "op": "JUMPDEST", - "gas": 1554737, - "gasCost": 1, "depth": 2, + "gas": 1564635, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 376, "stack": [ "0xa0712d68", "0xd9", @@ -33911,11 +33911,11 @@ ] }, { - "pc": 377, - "op": "PUSH1", - "gas": 1554736, - "gasCost": 3, "depth": 2, + "gas": 1564634, + "gasCost": 3, + "op": "PUSH1", + "pc": 377, "stack": [ "0xa0712d68", "0xd9", @@ -33926,11 +33926,11 @@ ] }, { - "pc": 379, - "op": "CALLER", - "gas": 1554733, - "gasCost": 2, "depth": 2, + "gas": 1564631, + "gasCost": 2, + "op": "CALLER", + "pc": 379, "stack": [ "0xa0712d68", "0xd9", @@ -33942,11 +33942,11 @@ ] }, { - "pc": 380, - "op": "PUSH20", - "gas": 1554731, - "gasCost": 3, "depth": 2, + "gas": 1564629, + "gasCost": 3, + "op": "PUSH20", + "pc": 380, "stack": [ "0xa0712d68", "0xd9", @@ -33959,11 +33959,11 @@ ] }, { - "pc": 401, - "op": "AND", - "gas": 1554728, - "gasCost": 3, "depth": 2, + "gas": 1564626, + "gasCost": 3, + "op": "AND", + "pc": 401, "stack": [ "0xa0712d68", "0xd9", @@ -33977,11 +33977,11 @@ ] }, { - "pc": 402, - "op": "PUSH32", - "gas": 1554725, - "gasCost": 3, "depth": 2, + "gas": 1564623, + "gasCost": 3, + "op": "PUSH32", + "pc": 402, "stack": [ "0xa0712d68", "0xd9", @@ -33994,11 +33994,11 @@ ] }, { - "pc": 435, - "op": "DUP4", - "gas": 1554722, - "gasCost": 3, "depth": 2, + "gas": 1564620, + "gasCost": 3, + "op": "DUP4", + "pc": 435, "stack": [ "0xa0712d68", "0xd9", @@ -34012,11 +34012,11 @@ ] }, { - "pc": 436, - "op": "PUSH1", - "gas": 1554719, - "gasCost": 3, "depth": 2, + "gas": 1564617, + "gasCost": 3, + "op": "PUSH1", + "pc": 436, "stack": [ "0xa0712d68", "0xd9", @@ -34031,11 +34031,11 @@ ] }, { - "pc": 438, - "op": "MLOAD", - "gas": 1554716, - "gasCost": 3, "depth": 2, + "gas": 1564614, + "gasCost": 3, + "op": "MLOAD", + "pc": 438, "stack": [ "0xa0712d68", "0xd9", @@ -34051,11 +34051,11 @@ ] }, { - "pc": 439, - "op": "PUSH2", - "gas": 1554713, - "gasCost": 3, "depth": 2, + "gas": 1564611, + "gasCost": 3, + "op": "PUSH2", + "pc": 439, "stack": [ "0xa0712d68", "0xd9", @@ -34071,11 +34071,11 @@ ] }, { - "pc": 442, - "op": "SWAP2", - "gas": 1554710, - "gasCost": 3, "depth": 2, + "gas": 1564608, + "gasCost": 3, + "op": "SWAP2", + "pc": 442, "stack": [ "0xa0712d68", "0xd9", @@ -34092,11 +34092,11 @@ ] }, { - "pc": 443, - "op": "SWAP1", - "gas": 1554707, - "gasCost": 3, "depth": 2, + "gas": 1564605, + "gasCost": 3, + "op": "SWAP1", + "pc": 443, "stack": [ "0xa0712d68", "0xd9", @@ -34113,11 +34113,11 @@ ] }, { - "pc": 444, - "op": "PUSH2", - "gas": 1554704, - "gasCost": 3, "depth": 2, + "gas": 1564602, + "gasCost": 3, + "op": "PUSH2", + "pc": 444, "stack": [ "0xa0712d68", "0xd9", @@ -34134,11 +34134,11 @@ ] }, { - "pc": 447, - "op": "JUMP", - "gas": 1554701, - "gasCost": 8, "depth": 2, + "gas": 1564599, + "gasCost": 8, + "op": "JUMP", + "pc": 447, "stack": [ "0xa0712d68", "0xd9", @@ -34156,11 +34156,11 @@ ] }, { - "pc": 1154, - "op": "JUMPDEST", - "gas": 1554693, - "gasCost": 1, "depth": 2, + "gas": 1564591, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 1154, "stack": [ "0xa0712d68", "0xd9", @@ -34177,11 +34177,11 @@ ] }, { - "pc": 1155, - "op": "PUSH1", - "gas": 1554692, - "gasCost": 3, "depth": 2, + "gas": 1564590, + "gasCost": 3, + "op": "PUSH1", + "pc": 1155, "stack": [ "0xa0712d68", "0xd9", @@ -34198,11 +34198,11 @@ ] }, { - "pc": 1157, - "op": "PUSH1", - "gas": 1554689, - "gasCost": 3, "depth": 2, + "gas": 1564587, + "gasCost": 3, + "op": "PUSH1", + "pc": 1157, "stack": [ "0xa0712d68", "0xd9", @@ -34220,11 +34220,11 @@ ] }, { - "pc": 1159, - "op": "DUP3", - "gas": 1554686, - "gasCost": 3, "depth": 2, + "gas": 1564584, + "gasCost": 3, + "op": "DUP3", + "pc": 1159, "stack": [ "0xa0712d68", "0xd9", @@ -34243,11 +34243,11 @@ ] }, { - "pc": 1160, - "op": "ADD", - "gas": 1554683, - "gasCost": 3, "depth": 2, + "gas": 1564581, + "gasCost": 3, + "op": "ADD", + "pc": 1160, "stack": [ "0xa0712d68", "0xd9", @@ -34267,11 +34267,11 @@ ] }, { - "pc": 1161, - "op": "SWAP1", - "gas": 1554680, - "gasCost": 3, "depth": 2, + "gas": 1564578, + "gasCost": 3, + "op": "SWAP1", + "pc": 1161, "stack": [ "0xa0712d68", "0xd9", @@ -34290,11 +34290,11 @@ ] }, { - "pc": 1162, - "op": "POP", - "gas": 1554677, - "gasCost": 2, "depth": 2, + "gas": 1564575, + "gasCost": 2, + "op": "POP", + "pc": 1162, "stack": [ "0xa0712d68", "0xd9", @@ -34313,11 +34313,11 @@ ] }, { - "pc": 1163, - "op": "PUSH2", - "gas": 1554675, - "gasCost": 3, "depth": 2, + "gas": 1564573, + "gasCost": 3, + "op": "PUSH2", + "pc": 1163, "stack": [ "0xa0712d68", "0xd9", @@ -34335,11 +34335,11 @@ ] }, { - "pc": 1166, - "op": "PUSH1", - "gas": 1554672, - "gasCost": 3, "depth": 2, + "gas": 1564570, + "gasCost": 3, + "op": "PUSH1", + "pc": 1166, "stack": [ "0xa0712d68", "0xd9", @@ -34358,11 +34358,11 @@ ] }, { - "pc": 1168, - "op": "DUP4", - "gas": 1554669, - "gasCost": 3, "depth": 2, + "gas": 1564567, + "gasCost": 3, + "op": "DUP4", + "pc": 1168, "stack": [ "0xa0712d68", "0xd9", @@ -34382,11 +34382,11 @@ ] }, { - "pc": 1169, - "op": "ADD", - "gas": 1554666, - "gasCost": 3, "depth": 2, + "gas": 1564564, + "gasCost": 3, + "op": "ADD", + "pc": 1169, "stack": [ "0xa0712d68", "0xd9", @@ -34407,11 +34407,11 @@ ] }, { - "pc": 1170, - "op": "DUP5", - "gas": 1554663, - "gasCost": 3, "depth": 2, + "gas": 1564561, + "gasCost": 3, + "op": "DUP5", + "pc": 1170, "stack": [ "0xa0712d68", "0xd9", @@ -34431,11 +34431,11 @@ ] }, { - "pc": 1171, - "op": "PUSH2", - "gas": 1554660, - "gasCost": 3, "depth": 2, + "gas": 1564558, + "gasCost": 3, + "op": "PUSH2", + "pc": 1171, "stack": [ "0xa0712d68", "0xd9", @@ -34456,11 +34456,11 @@ ] }, { - "pc": 1174, - "op": "JUMP", - "gas": 1554657, - "gasCost": 8, "depth": 2, + "gas": 1564555, + "gasCost": 8, + "op": "JUMP", + "pc": 1174, "stack": [ "0xa0712d68", "0xd9", @@ -34482,11 +34482,11 @@ ] }, { - "pc": 880, - "op": "JUMPDEST", - "gas": 1554649, - "gasCost": 1, "depth": 2, + "gas": 1564547, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 880, "stack": [ "0xa0712d68", "0xd9", @@ -34507,11 +34507,11 @@ ] }, { - "pc": 881, - "op": "PUSH2", - "gas": 1554648, - "gasCost": 3, "depth": 2, + "gas": 1564546, + "gasCost": 3, + "op": "PUSH2", + "pc": 881, "stack": [ "0xa0712d68", "0xd9", @@ -34532,11 +34532,11 @@ ] }, { - "pc": 884, - "op": "DUP2", - "gas": 1554645, - "gasCost": 3, "depth": 2, + "gas": 1564543, + "gasCost": 3, + "op": "DUP2", + "pc": 884, "stack": [ "0xa0712d68", "0xd9", @@ -34558,11 +34558,11 @@ ] }, { - "pc": 885, - "op": "PUSH2", - "gas": 1554642, - "gasCost": 3, "depth": 2, + "gas": 1564540, + "gasCost": 3, + "op": "PUSH2", + "pc": 885, "stack": [ "0xa0712d68", "0xd9", @@ -34585,11 +34585,11 @@ ] }, { - "pc": 888, - "op": "JUMP", - "gas": 1554639, - "gasCost": 8, "depth": 2, + "gas": 1564537, + "gasCost": 8, + "op": "JUMP", + "pc": 888, "stack": [ "0xa0712d68", "0xd9", @@ -34613,11 +34613,11 @@ ] }, { - "pc": 781, - "op": "JUMPDEST", - "gas": 1554631, - "gasCost": 1, "depth": 2, + "gas": 1564529, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 781, "stack": [ "0xa0712d68", "0xd9", @@ -34640,11 +34640,11 @@ ] }, { - "pc": 782, - "op": "PUSH1", - "gas": 1554630, - "gasCost": 3, "depth": 2, + "gas": 1564528, + "gasCost": 3, + "op": "PUSH1", + "pc": 782, "stack": [ "0xa0712d68", "0xd9", @@ -34667,11 +34667,11 @@ ] }, { - "pc": 784, - "op": "DUP2", - "gas": 1554627, - "gasCost": 3, "depth": 2, + "gas": 1564525, + "gasCost": 3, + "op": "DUP2", + "pc": 784, "stack": [ "0xa0712d68", "0xd9", @@ -34695,11 +34695,11 @@ ] }, { - "pc": 785, - "op": "SWAP1", - "gas": 1554624, - "gasCost": 3, "depth": 2, + "gas": 1564522, + "gasCost": 3, + "op": "SWAP1", + "pc": 785, "stack": [ "0xa0712d68", "0xd9", @@ -34724,11 +34724,11 @@ ] }, { - "pc": 786, - "op": "POP", - "gas": 1554621, - "gasCost": 2, "depth": 2, + "gas": 1564519, + "gasCost": 2, + "op": "POP", + "pc": 786, "stack": [ "0xa0712d68", "0xd9", @@ -34753,11 +34753,11 @@ ] }, { - "pc": 787, - "op": "SWAP2", - "gas": 1554619, - "gasCost": 3, "depth": 2, + "gas": 1564517, + "gasCost": 3, + "op": "SWAP2", + "pc": 787, "stack": [ "0xa0712d68", "0xd9", @@ -34781,11 +34781,11 @@ ] }, { - "pc": 788, - "op": "SWAP1", - "gas": 1554616, - "gasCost": 3, "depth": 2, + "gas": 1564514, + "gasCost": 3, + "op": "SWAP1", + "pc": 788, "stack": [ "0xa0712d68", "0xd9", @@ -34809,11 +34809,11 @@ ] }, { - "pc": 789, - "op": "POP", - "gas": 1554613, - "gasCost": 2, "depth": 2, + "gas": 1564511, + "gasCost": 2, + "op": "POP", + "pc": 789, "stack": [ "0xa0712d68", "0xd9", @@ -34837,11 +34837,11 @@ ] }, { - "pc": 790, - "op": "JUMP", - "gas": 1554611, - "gasCost": 8, "depth": 2, + "gas": 1564509, + "gasCost": 8, + "op": "JUMP", + "pc": 790, "stack": [ "0xa0712d68", "0xd9", @@ -34864,11 +34864,11 @@ ] }, { - "pc": 889, - "op": "JUMPDEST", - "gas": 1554603, - "gasCost": 1, "depth": 2, + "gas": 1564501, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 889, "stack": [ "0xa0712d68", "0xd9", @@ -34890,11 +34890,11 @@ ] }, { - "pc": 890, - "op": "DUP3", - "gas": 1554602, - "gasCost": 3, "depth": 2, + "gas": 1564500, + "gasCost": 3, + "op": "DUP3", + "pc": 890, "stack": [ "0xa0712d68", "0xd9", @@ -34916,11 +34916,11 @@ ] }, { - "pc": 891, - "op": "MSTORE", - "gas": 1554599, - "gasCost": 3, "depth": 2, + "gas": 1564497, + "gasCost": 3, + "op": "MSTORE", + "pc": 891, "stack": [ "0xa0712d68", "0xd9", @@ -34943,11 +34943,11 @@ ] }, { - "pc": 892, - "op": "POP", - "gas": 1554596, - "gasCost": 2, "depth": 2, + "gas": 1564494, + "gasCost": 2, + "op": "POP", + "pc": 892, "stack": [ "0xa0712d68", "0xd9", @@ -34968,11 +34968,11 @@ ] }, { - "pc": 893, - "op": "POP", - "gas": 1554594, - "gasCost": 2, "depth": 2, + "gas": 1564492, + "gasCost": 2, + "op": "POP", + "pc": 893, "stack": [ "0xa0712d68", "0xd9", @@ -34992,11 +34992,11 @@ ] }, { - "pc": 894, - "op": "JUMP", - "gas": 1554592, - "gasCost": 8, "depth": 2, + "gas": 1564490, + "gasCost": 8, + "op": "JUMP", + "pc": 894, "stack": [ "0xa0712d68", "0xd9", @@ -35015,11 +35015,11 @@ ] }, { - "pc": 1175, - "op": "JUMPDEST", - "gas": 1554584, - "gasCost": 1, "depth": 2, + "gas": 1564482, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 1175, "stack": [ "0xa0712d68", "0xd9", @@ -35037,11 +35037,11 @@ ] }, { - "pc": 1176, - "op": "DUP2", - "gas": 1554583, - "gasCost": 3, "depth": 2, + "gas": 1564481, + "gasCost": 3, + "op": "DUP2", + "pc": 1176, "stack": [ "0xa0712d68", "0xd9", @@ -35059,11 +35059,11 @@ ] }, { - "pc": 1177, - "op": "DUP2", - "gas": 1554580, - "gasCost": 3, "depth": 2, + "gas": 1564478, + "gasCost": 3, + "op": "DUP2", + "pc": 1177, "stack": [ "0xa0712d68", "0xd9", @@ -35082,11 +35082,11 @@ ] }, { - "pc": 1178, - "op": "SUB", - "gas": 1554577, - "gasCost": 3, "depth": 2, + "gas": 1564475, + "gasCost": 3, + "op": "SUB", + "pc": 1178, "stack": [ "0xa0712d68", "0xd9", @@ -35106,11 +35106,11 @@ ] }, { - "pc": 1179, - "op": "PUSH1", - "gas": 1554574, - "gasCost": 3, "depth": 2, + "gas": 1564472, + "gasCost": 3, + "op": "PUSH1", + "pc": 1179, "stack": [ "0xa0712d68", "0xd9", @@ -35129,11 +35129,11 @@ ] }, { - "pc": 1181, - "op": "DUP4", - "gas": 1554571, - "gasCost": 3, "depth": 2, + "gas": 1564469, + "gasCost": 3, + "op": "DUP4", + "pc": 1181, "stack": [ "0xa0712d68", "0xd9", @@ -35153,11 +35153,11 @@ ] }, { - "pc": 1182, - "op": "ADD", - "gas": 1554568, - "gasCost": 3, "depth": 2, + "gas": 1564466, + "gasCost": 3, + "op": "ADD", + "pc": 1182, "stack": [ "0xa0712d68", "0xd9", @@ -35178,11 +35178,11 @@ ] }, { - "pc": 1183, - "op": "MSTORE", - "gas": 1554565, - "gasCost": 3, "depth": 2, + "gas": 1564463, + "gasCost": 3, + "op": "MSTORE", + "pc": 1183, "stack": [ "0xa0712d68", "0xd9", @@ -35202,11 +35202,11 @@ ] }, { - "pc": 1184, - "op": "PUSH2", - "gas": 1554562, - "gasCost": 3, "depth": 2, + "gas": 1564460, + "gasCost": 3, + "op": "PUSH2", + "pc": 1184, "stack": [ "0xa0712d68", "0xd9", @@ -35224,11 +35224,11 @@ ] }, { - "pc": 1187, - "op": "DUP2", - "gas": 1554559, - "gasCost": 3, "depth": 2, + "gas": 1564457, + "gasCost": 3, + "op": "DUP2", + "pc": 1187, "stack": [ "0xa0712d68", "0xd9", @@ -35247,11 +35247,11 @@ ] }, { - "pc": 1188, - "op": "PUSH2", - "gas": 1554556, - "gasCost": 3, "depth": 2, + "gas": 1564454, + "gasCost": 3, + "op": "PUSH2", + "pc": 1188, "stack": [ "0xa0712d68", "0xd9", @@ -35271,11 +35271,11 @@ ] }, { - "pc": 1191, - "op": "JUMP", - "gas": 1554553, - "gasCost": 8, "depth": 2, + "gas": 1564451, + "gasCost": 8, + "op": "JUMP", + "pc": 1191, "stack": [ "0xa0712d68", "0xd9", @@ -35296,11 +35296,11 @@ ] }, { - "pc": 1119, - "op": "JUMPDEST", - "gas": 1554545, - "gasCost": 1, "depth": 2, + "gas": 1564443, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 1119, "stack": [ "0xa0712d68", "0xd9", @@ -35320,11 +35320,11 @@ ] }, { - "pc": 1120, - "op": "PUSH1", - "gas": 1554544, - "gasCost": 3, "depth": 2, + "gas": 1564442, + "gasCost": 3, + "op": "PUSH1", + "pc": 1120, "stack": [ "0xa0712d68", "0xd9", @@ -35344,11 +35344,11 @@ ] }, { - "pc": 1122, - "op": "PUSH2", - "gas": 1554541, - "gasCost": 3, "depth": 2, + "gas": 1564439, + "gasCost": 3, + "op": "PUSH2", + "pc": 1122, "stack": [ "0xa0712d68", "0xd9", @@ -35369,11 +35369,11 @@ ] }, { - "pc": 1125, - "op": "PUSH1", - "gas": 1554538, - "gasCost": 3, "depth": 2, + "gas": 1564436, + "gasCost": 3, + "op": "PUSH1", + "pc": 1125, "stack": [ "0xa0712d68", "0xd9", @@ -35395,66 +35395,11 @@ ] }, { - "pc": 1127, - "op": "DUP4", - "gas": 1554535, - "gasCost": 3, "depth": 2, - "stack": [ - "0xa0712d68", - "0xd9", - "0x3e8", - "0x0", - "0x2a2", - "0x3e9", - "0x0", - "Tracer.address", - "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x1c0", - "0x3e9", - "0x80", - "0xc0", - "0x4a8", - "0xc0", - "0x0", - "0x46c", - "0xe" - ] - }, - { - "pc": 1128, - "op": "PUSH2", - "gas": 1554532, + "gas": 1564433, "gasCost": 3, - "depth": 2, - "stack": [ - "0xa0712d68", - "0xd9", - "0x3e8", - "0x0", - "0x2a2", - "0x3e9", - "0x0", - "Tracer.address", - "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x1c0", - "0x3e9", - "0x80", - "0xc0", - "0x4a8", - "0xc0", - "0x0", - "0x46c", - "0xe", - "0xc0" - ] - }, - { - "pc": 1131, - "op": "JUMP", - "gas": 1554529, - "gasCost": 8, - "depth": 2, + "op": "DUP4", + "pc": 1127, "stack": [ "0xa0712d68", "0xd9", @@ -35473,17 +35418,15 @@ "0xc0", "0x0", "0x46c", - "0xe", - "0xc0", - "0x425" + "0xe" ] }, { - "pc": 1061, - "op": "JUMPDEST", - "gas": 1554521, - "gasCost": 1, "depth": 2, + "gas": 1564430, + "gasCost": 3, + "op": "PUSH2", + "pc": 1128, "stack": [ "0xa0712d68", "0xd9", @@ -35507,11 +35450,40 @@ ] }, { - "pc": 1062, - "op": "PUSH1", - "gas": 1554520, - "gasCost": 3, "depth": 2, + "gas": 1564427, + "gasCost": 8, + "op": "JUMP", + "pc": 1131, + "stack": [ + "0xa0712d68", + "0xd9", + "0x3e8", + "0x0", + "0x2a2", + "0x3e9", + "0x0", + "Tracer.address", + "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", + "0x1c0", + "0x3e9", + "0x80", + "0xc0", + "0x4a8", + "0xc0", + "0x0", + "0x46c", + "0xe", + "0xc0", + "0x425" + ] + }, + { + "depth": 2, + "gas": 1564419, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 1061, "stack": [ "0xa0712d68", "0xd9", @@ -35535,11 +35507,39 @@ ] }, { - "pc": 1064, - "op": "DUP3", - "gas": 1554517, + "depth": 2, + "gas": 1564418, "gasCost": 3, + "op": "PUSH1", + "pc": 1062, + "stack": [ + "0xa0712d68", + "0xd9", + "0x3e8", + "0x0", + "0x2a2", + "0x3e9", + "0x0", + "Tracer.address", + "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", + "0x1c0", + "0x3e9", + "0x80", + "0xc0", + "0x4a8", + "0xc0", + "0x0", + "0x46c", + "0xe", + "0xc0" + ] + }, + { "depth": 2, + "gas": 1564415, + "gasCost": 3, + "op": "DUP3", + "pc": 1064, "stack": [ "0xa0712d68", "0xd9", @@ -35564,11 +35564,11 @@ ] }, { - "pc": 1065, - "op": "DUP3", - "gas": 1554514, - "gasCost": 3, "depth": 2, + "gas": 1564412, + "gasCost": 3, + "op": "DUP3", + "pc": 1065, "stack": [ "0xa0712d68", "0xd9", @@ -35594,11 +35594,11 @@ ] }, { - "pc": 1066, - "op": "MSTORE", - "gas": 1554511, - "gasCost": 3, "depth": 2, + "gas": 1564409, + "gasCost": 3, + "op": "MSTORE", + "pc": 1066, "stack": [ "0xa0712d68", "0xd9", @@ -35625,11 +35625,11 @@ ] }, { - "pc": 1067, - "op": "PUSH1", - "gas": 1554508, - "gasCost": 3, "depth": 2, + "gas": 1564406, + "gasCost": 3, + "op": "PUSH1", + "pc": 1067, "stack": [ "0xa0712d68", "0xd9", @@ -35654,11 +35654,11 @@ ] }, { - "pc": 1069, - "op": "DUP3", - "gas": 1554505, - "gasCost": 3, "depth": 2, + "gas": 1564403, + "gasCost": 3, + "op": "DUP3", + "pc": 1069, "stack": [ "0xa0712d68", "0xd9", @@ -35684,11 +35684,11 @@ ] }, { - "pc": 1070, - "op": "ADD", - "gas": 1554502, - "gasCost": 3, "depth": 2, + "gas": 1564400, + "gasCost": 3, + "op": "ADD", + "pc": 1070, "stack": [ "0xa0712d68", "0xd9", @@ -35715,11 +35715,11 @@ ] }, { - "pc": 1071, - "op": "SWAP1", - "gas": 1554499, - "gasCost": 3, "depth": 2, + "gas": 1564397, + "gasCost": 3, + "op": "SWAP1", + "pc": 1071, "stack": [ "0xa0712d68", "0xd9", @@ -35745,11 +35745,11 @@ ] }, { - "pc": 1072, - "op": "POP", - "gas": 1554496, - "gasCost": 2, "depth": 2, + "gas": 1564394, + "gasCost": 2, + "op": "POP", + "pc": 1072, "stack": [ "0xa0712d68", "0xd9", @@ -35775,11 +35775,11 @@ ] }, { - "pc": 1073, - "op": "SWAP3", - "gas": 1554494, - "gasCost": 3, "depth": 2, + "gas": 1564392, + "gasCost": 3, + "op": "SWAP3", + "pc": 1073, "stack": [ "0xa0712d68", "0xd9", @@ -35804,11 +35804,11 @@ ] }, { - "pc": 1074, - "op": "SWAP2", - "gas": 1554491, - "gasCost": 3, "depth": 2, + "gas": 1564389, + "gasCost": 3, + "op": "SWAP2", + "pc": 1074, "stack": [ "0xa0712d68", "0xd9", @@ -35833,11 +35833,11 @@ ] }, { - "pc": 1075, - "op": "POP", - "gas": 1554488, - "gasCost": 2, "depth": 2, + "gas": 1564386, + "gasCost": 2, + "op": "POP", + "pc": 1075, "stack": [ "0xa0712d68", "0xd9", @@ -35862,11 +35862,11 @@ ] }, { - "pc": 1076, - "op": "POP", - "gas": 1554486, - "gasCost": 2, "depth": 2, + "gas": 1564384, + "gasCost": 2, + "op": "POP", + "pc": 1076, "stack": [ "0xa0712d68", "0xd9", @@ -35890,11 +35890,11 @@ ] }, { - "pc": 1077, - "op": "JUMP", - "gas": 1554484, - "gasCost": 8, "depth": 2, + "gas": 1564382, + "gasCost": 8, + "op": "JUMP", + "pc": 1077, "stack": [ "0xa0712d68", "0xd9", @@ -35917,11 +35917,11 @@ ] }, { - "pc": 1132, - "op": "JUMPDEST", - "gas": 1554476, - "gasCost": 1, "depth": 2, + "gas": 1564374, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 1132, "stack": [ "0xa0712d68", "0xd9", @@ -35943,11 +35943,11 @@ ] }, { - "pc": 1133, - "op": "SWAP2", - "gas": 1554475, - "gasCost": 3, "depth": 2, + "gas": 1564373, + "gasCost": 3, + "op": "SWAP2", + "pc": 1133, "stack": [ "0xa0712d68", "0xd9", @@ -35969,11 +35969,11 @@ ] }, { - "pc": 1134, - "op": "POP", - "gas": 1554472, - "gasCost": 2, "depth": 2, + "gas": 1564370, + "gasCost": 2, + "op": "POP", + "pc": 1134, "stack": [ "0xa0712d68", "0xd9", @@ -35995,11 +35995,11 @@ ] }, { - "pc": 1135, - "op": "PUSH2", - "gas": 1554470, - "gasCost": 3, "depth": 2, + "gas": 1564368, + "gasCost": 3, + "op": "PUSH2", + "pc": 1135, "stack": [ "0xa0712d68", "0xd9", @@ -36020,11 +36020,11 @@ ] }, { - "pc": 1138, - "op": "DUP3", - "gas": 1554467, - "gasCost": 3, "depth": 2, + "gas": 1564365, + "gasCost": 3, + "op": "DUP3", + "pc": 1138, "stack": [ "0xa0712d68", "0xd9", @@ -36046,11 +36046,11 @@ ] }, { - "pc": 1139, - "op": "PUSH2", - "gas": 1554464, - "gasCost": 3, "depth": 2, + "gas": 1564362, + "gasCost": 3, + "op": "PUSH2", + "pc": 1139, "stack": [ "0xa0712d68", "0xd9", @@ -36073,11 +36073,11 @@ ] }, { - "pc": 1142, - "op": "JUMP", - "gas": 1554461, - "gasCost": 8, "depth": 2, + "gas": 1564359, + "gasCost": 8, + "op": "JUMP", + "pc": 1142, "stack": [ "0xa0712d68", "0xd9", @@ -36101,11 +36101,11 @@ ] }, { - "pc": 1078, - "op": "JUMPDEST", - "gas": 1554453, - "gasCost": 1, "depth": 2, + "gas": 1564351, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 1078, "stack": [ "0xa0712d68", "0xd9", @@ -36128,11 +36128,11 @@ ] }, { - "pc": 1079, - "op": "PUSH32", - "gas": 1554452, - "gasCost": 3, "depth": 2, + "gas": 1564350, + "gasCost": 3, + "op": "PUSH32", + "pc": 1079, "stack": [ "0xa0712d68", "0xd9", @@ -36155,11 +36155,11 @@ ] }, { - "pc": 1112, - "op": "PUSH1", - "gas": 1554449, - "gasCost": 3, "depth": 2, + "gas": 1564347, + "gasCost": 3, + "op": "PUSH1", + "pc": 1112, "stack": [ "0xa0712d68", "0xd9", @@ -36183,11 +36183,11 @@ ] }, { - "pc": 1114, - "op": "DUP3", - "gas": 1554446, - "gasCost": 3, "depth": 2, + "gas": 1564344, + "gasCost": 3, + "op": "DUP3", + "pc": 1114, "stack": [ "0xa0712d68", "0xd9", @@ -36212,11 +36212,11 @@ ] }, { - "pc": 1115, - "op": "ADD", - "gas": 1554443, - "gasCost": 3, "depth": 2, + "gas": 1564341, + "gasCost": 3, + "op": "ADD", + "pc": 1115, "stack": [ "0xa0712d68", "0xd9", @@ -36242,11 +36242,11 @@ ] }, { - "pc": 1116, - "op": "MSTORE", - "gas": 1554440, - "gasCost": 3, "depth": 2, + "gas": 1564338, + "gasCost": 3, + "op": "MSTORE", + "pc": 1116, "stack": [ "0xa0712d68", "0xd9", @@ -36271,11 +36271,11 @@ ] }, { - "pc": 1117, - "op": "POP", - "gas": 1554437, - "gasCost": 2, "depth": 2, + "gas": 1564335, + "gasCost": 2, + "op": "POP", + "pc": 1117, "stack": [ "0xa0712d68", "0xd9", @@ -36298,11 +36298,11 @@ ] }, { - "pc": 1118, - "op": "JUMP", - "gas": 1554435, - "gasCost": 8, "depth": 2, + "gas": 1564333, + "gasCost": 8, + "op": "JUMP", + "pc": 1118, "stack": [ "0xa0712d68", "0xd9", @@ -36324,11 +36324,11 @@ ] }, { - "pc": 1143, - "op": "JUMPDEST", - "gas": 1554427, - "gasCost": 1, "depth": 2, + "gas": 1564325, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 1143, "stack": [ "0xa0712d68", "0xd9", @@ -36349,11 +36349,11 @@ ] }, { - "pc": 1144, - "op": "PUSH1", - "gas": 1554426, - "gasCost": 3, "depth": 2, + "gas": 1564324, + "gasCost": 3, + "op": "PUSH1", + "pc": 1144, "stack": [ "0xa0712d68", "0xd9", @@ -36374,11 +36374,11 @@ ] }, { - "pc": 1146, - "op": "DUP3", - "gas": 1554423, - "gasCost": 3, "depth": 2, + "gas": 1564321, + "gasCost": 3, + "op": "DUP3", + "pc": 1146, "stack": [ "0xa0712d68", "0xd9", @@ -36400,11 +36400,11 @@ ] }, { - "pc": 1147, - "op": "ADD", - "gas": 1554420, - "gasCost": 3, "depth": 2, + "gas": 1564318, + "gasCost": 3, + "op": "ADD", + "pc": 1147, "stack": [ "0xa0712d68", "0xd9", @@ -36427,11 +36427,11 @@ ] }, { - "pc": 1148, - "op": "SWAP1", - "gas": 1554417, - "gasCost": 3, "depth": 2, + "gas": 1564315, + "gasCost": 3, + "op": "SWAP1", + "pc": 1148, "stack": [ "0xa0712d68", "0xd9", @@ -36453,11 +36453,11 @@ ] }, { - "pc": 1149, - "op": "POP", - "gas": 1554414, - "gasCost": 2, "depth": 2, + "gas": 1564312, + "gasCost": 2, + "op": "POP", + "pc": 1149, "stack": [ "0xa0712d68", "0xd9", @@ -36479,11 +36479,11 @@ ] }, { - "pc": 1150, - "op": "SWAP2", - "gas": 1554412, - "gasCost": 3, "depth": 2, + "gas": 1564310, + "gasCost": 3, + "op": "SWAP2", + "pc": 1150, "stack": [ "0xa0712d68", "0xd9", @@ -36504,11 +36504,11 @@ ] }, { - "pc": 1151, - "op": "SWAP1", - "gas": 1554409, - "gasCost": 3, "depth": 2, + "gas": 1564307, + "gasCost": 3, + "op": "SWAP1", + "pc": 1151, "stack": [ "0xa0712d68", "0xd9", @@ -36529,11 +36529,11 @@ ] }, { - "pc": 1152, - "op": "POP", - "gas": 1554406, - "gasCost": 2, "depth": 2, + "gas": 1564304, + "gasCost": 2, + "op": "POP", + "pc": 1152, "stack": [ "0xa0712d68", "0xd9", @@ -36554,11 +36554,11 @@ ] }, { - "pc": 1153, - "op": "JUMP", - "gas": 1554404, - "gasCost": 8, "depth": 2, + "gas": 1564302, + "gasCost": 8, + "op": "JUMP", + "pc": 1153, "stack": [ "0xa0712d68", "0xd9", @@ -36578,11 +36578,11 @@ ] }, { - "pc": 1192, - "op": "JUMPDEST", - "gas": 1554396, - "gasCost": 1, "depth": 2, + "gas": 1564294, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 1192, "stack": [ "0xa0712d68", "0xd9", @@ -36601,11 +36601,11 @@ ] }, { - "pc": 1193, - "op": "SWAP1", - "gas": 1554395, - "gasCost": 3, "depth": 2, + "gas": 1564293, + "gasCost": 3, + "op": "SWAP1", + "pc": 1193, "stack": [ "0xa0712d68", "0xd9", @@ -36624,11 +36624,11 @@ ] }, { - "pc": 1194, - "op": "POP", - "gas": 1554392, - "gasCost": 2, "depth": 2, + "gas": 1564290, + "gasCost": 2, + "op": "POP", + "pc": 1194, "stack": [ "0xa0712d68", "0xd9", @@ -36647,11 +36647,11 @@ ] }, { - "pc": 1195, - "op": "SWAP3", - "gas": 1554390, - "gasCost": 3, "depth": 2, + "gas": 1564288, + "gasCost": 3, + "op": "SWAP3", + "pc": 1195, "stack": [ "0xa0712d68", "0xd9", @@ -36669,11 +36669,11 @@ ] }, { - "pc": 1196, - "op": "SWAP2", - "gas": 1554387, - "gasCost": 3, "depth": 2, + "gas": 1564285, + "gasCost": 3, + "op": "SWAP2", + "pc": 1196, "stack": [ "0xa0712d68", "0xd9", @@ -36691,11 +36691,11 @@ ] }, { - "pc": 1197, - "op": "POP", - "gas": 1554384, - "gasCost": 2, "depth": 2, + "gas": 1564282, + "gasCost": 2, + "op": "POP", + "pc": 1197, "stack": [ "0xa0712d68", "0xd9", @@ -36713,11 +36713,11 @@ ] }, { - "pc": 1198, - "op": "POP", - "gas": 1554382, - "gasCost": 2, "depth": 2, + "gas": 1564280, + "gasCost": 2, + "op": "POP", + "pc": 1198, "stack": [ "0xa0712d68", "0xd9", @@ -36734,11 +36734,11 @@ ] }, { - "pc": 1199, - "op": "JUMP", - "gas": 1554380, - "gasCost": 8, "depth": 2, + "gas": 1564278, + "gasCost": 8, + "op": "JUMP", + "pc": 1199, "stack": [ "0xa0712d68", "0xd9", @@ -36754,11 +36754,11 @@ ] }, { - "pc": 448, - "op": "JUMPDEST", - "gas": 1554372, - "gasCost": 1, "depth": 2, + "gas": 1564270, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 448, "stack": [ "0xa0712d68", "0xd9", @@ -36773,11 +36773,11 @@ ] }, { - "pc": 449, - "op": "PUSH1", - "gas": 1554371, - "gasCost": 3, "depth": 2, + "gas": 1564269, + "gasCost": 3, + "op": "PUSH1", + "pc": 449, "stack": [ "0xa0712d68", "0xd9", @@ -36792,11 +36792,11 @@ ] }, { - "pc": 451, - "op": "MLOAD", - "gas": 1554368, - "gasCost": 3, "depth": 2, + "gas": 1564266, + "gasCost": 3, + "op": "MLOAD", + "pc": 451, "stack": [ "0xa0712d68", "0xd9", @@ -36812,11 +36812,11 @@ ] }, { - "pc": 452, - "op": "DUP1", - "gas": 1554365, - "gasCost": 3, "depth": 2, + "gas": 1564263, + "gasCost": 3, + "op": "DUP1", + "pc": 452, "stack": [ "0xa0712d68", "0xd9", @@ -36832,11 +36832,11 @@ ] }, { - "pc": 453, - "op": "SWAP2", - "gas": 1554362, - "gasCost": 3, "depth": 2, + "gas": 1564260, + "gasCost": 3, + "op": "SWAP2", + "pc": 453, "stack": [ "0xa0712d68", "0xd9", @@ -36853,11 +36853,11 @@ ] }, { - "pc": 454, - "op": "SUB", - "gas": 1554359, - "gasCost": 3, "depth": 2, + "gas": 1564257, + "gasCost": 3, + "op": "SUB", + "pc": 454, "stack": [ "0xa0712d68", "0xd9", @@ -36874,11 +36874,11 @@ ] }, { - "pc": 455, - "op": "SWAP1", - "gas": 1554356, - "gasCost": 3, "depth": 2, + "gas": 1564254, + "gasCost": 3, + "op": "SWAP1", + "pc": 455, "stack": [ "0xa0712d68", "0xd9", @@ -36894,11 +36894,11 @@ ] }, { - "pc": 456, - "op": "LOG2", - "gas": 1554353, - "gasCost": 2149, "depth": 2, + "gas": 1564251, + "gasCost": 2149, + "op": "LOG2", + "pc": 456, "stack": [ "0xa0712d68", "0xd9", @@ -36914,11 +36914,11 @@ ] }, { - "pc": 457, - "op": "DUP2", - "gas": 1552204, - "gasCost": 3, "depth": 2, + "gas": 1562102, + "gasCost": 3, + "op": "DUP2", + "pc": 457, "stack": [ "0xa0712d68", "0xd9", @@ -36930,11 +36930,11 @@ ] }, { - "pc": 458, - "op": "PUSH1", - "gas": 1552201, - "gasCost": 3, "depth": 2, + "gas": 1562099, + "gasCost": 3, + "op": "PUSH1", + "pc": 458, "stack": [ "0xa0712d68", "0xd9", @@ -36947,11 +36947,11 @@ ] }, { - "pc": 460, - "op": "PUSH1", - "gas": 1552198, - "gasCost": 3, "depth": 2, + "gas": 1562096, + "gasCost": 3, + "op": "PUSH1", + "pc": 460, "stack": [ "0xa0712d68", "0xd9", @@ -36965,11 +36965,11 @@ ] }, { - "pc": 462, - "op": "DUP3", - "gas": 1552195, - "gasCost": 3, "depth": 2, + "gas": 1562093, + "gasCost": 3, + "op": "DUP3", + "pc": 462, "stack": [ "0xa0712d68", "0xd9", @@ -36984,11 +36984,11 @@ ] }, { - "pc": 463, - "op": "DUP3", - "gas": 1552192, - "gasCost": 3, "depth": 2, + "gas": 1562090, + "gasCost": 3, + "op": "DUP3", + "pc": 463, "stack": [ "0xa0712d68", "0xd9", @@ -37004,11 +37004,11 @@ ] }, { - "pc": 464, - "op": "SLOAD", - "gas": 1552189, - "gasCost": 100, "depth": 2, + "gas": 1562087, + "gasCost": 200, + "op": "SLOAD", + "pc": 464, "stack": [ "0xa0712d68", "0xd9", @@ -37030,11 +37030,11 @@ } }, { - "pc": 465, - "op": "PUSH2", - "gas": 1552089, - "gasCost": 3, "depth": 2, + "gas": 1561887, + "gasCost": 3, + "op": "PUSH2", + "pc": 465, "stack": [ "0xa0712d68", "0xd9", @@ -37051,11 +37051,11 @@ ] }, { - "pc": 468, - "op": "SWAP2", - "gas": 1552086, - "gasCost": 3, "depth": 2, + "gas": 1561884, + "gasCost": 3, + "op": "SWAP2", + "pc": 468, "stack": [ "0xa0712d68", "0xd9", @@ -37073,11 +37073,11 @@ ] }, { - "pc": 469, - "op": "SWAP1", - "gas": 1552083, - "gasCost": 3, "depth": 2, + "gas": 1561881, + "gasCost": 3, + "op": "SWAP1", + "pc": 469, "stack": [ "0xa0712d68", "0xd9", @@ -37095,11 +37095,11 @@ ] }, { - "pc": 470, - "op": "PUSH2", - "gas": 1552080, - "gasCost": 3, "depth": 2, + "gas": 1561878, + "gasCost": 3, + "op": "PUSH2", + "pc": 470, "stack": [ "0xa0712d68", "0xd9", @@ -37117,11 +37117,11 @@ ] }, { - "pc": 473, - "op": "JUMP", - "gas": 1552077, - "gasCost": 8, "depth": 2, + "gas": 1561875, + "gasCost": 8, + "op": "JUMP", + "pc": 473, "stack": [ "0xa0712d68", "0xd9", @@ -37140,11 +37140,11 @@ ] }, { - "pc": 1247, - "op": "JUMPDEST", - "gas": 1552069, - "gasCost": 1, "depth": 2, + "gas": 1561867, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 1247, "stack": [ "0xa0712d68", "0xd9", @@ -37162,11 +37162,11 @@ ] }, { - "pc": 1248, - "op": "PUSH1", - "gas": 1552068, - "gasCost": 3, "depth": 2, + "gas": 1561866, + "gasCost": 3, + "op": "PUSH1", + "pc": 1248, "stack": [ "0xa0712d68", "0xd9", @@ -37184,11 +37184,11 @@ ] }, { - "pc": 1250, - "op": "PUSH2", - "gas": 1552065, - "gasCost": 3, "depth": 2, + "gas": 1561863, + "gasCost": 3, + "op": "PUSH2", + "pc": 1250, "stack": [ "0xa0712d68", "0xd9", @@ -37207,11 +37207,11 @@ ] }, { - "pc": 1253, - "op": "DUP3", - "gas": 1552062, - "gasCost": 3, "depth": 2, + "gas": 1561860, + "gasCost": 3, + "op": "DUP3", + "pc": 1253, "stack": [ "0xa0712d68", "0xd9", @@ -37231,11 +37231,11 @@ ] }, { - "pc": 1254, - "op": "PUSH2", - "gas": 1552059, - "gasCost": 3, "depth": 2, + "gas": 1561857, + "gasCost": 3, + "op": "PUSH2", + "pc": 1254, "stack": [ "0xa0712d68", "0xd9", @@ -37256,11 +37256,11 @@ ] }, { - "pc": 1257, - "op": "JUMP", - "gas": 1552056, - "gasCost": 8, "depth": 2, + "gas": 1561854, + "gasCost": 8, + "op": "JUMP", + "pc": 1257, "stack": [ "0xa0712d68", "0xd9", @@ -37282,11 +37282,11 @@ ] }, { - "pc": 781, - "op": "JUMPDEST", - "gas": 1552048, - "gasCost": 1, "depth": 2, + "gas": 1561846, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 781, "stack": [ "0xa0712d68", "0xd9", @@ -37307,11 +37307,11 @@ ] }, { - "pc": 782, - "op": "PUSH1", - "gas": 1552047, - "gasCost": 3, "depth": 2, + "gas": 1561845, + "gasCost": 3, + "op": "PUSH1", + "pc": 782, "stack": [ "0xa0712d68", "0xd9", @@ -37332,11 +37332,11 @@ ] }, { - "pc": 784, - "op": "DUP2", - "gas": 1552044, - "gasCost": 3, "depth": 2, + "gas": 1561842, + "gasCost": 3, + "op": "DUP2", + "pc": 784, "stack": [ "0xa0712d68", "0xd9", @@ -37358,11 +37358,11 @@ ] }, { - "pc": 785, - "op": "SWAP1", - "gas": 1552041, - "gasCost": 3, "depth": 2, + "gas": 1561839, + "gasCost": 3, + "op": "SWAP1", + "pc": 785, "stack": [ "0xa0712d68", "0xd9", @@ -37385,11 +37385,11 @@ ] }, { - "pc": 786, - "op": "POP", - "gas": 1552038, - "gasCost": 2, "depth": 2, + "gas": 1561836, + "gasCost": 2, + "op": "POP", + "pc": 786, "stack": [ "0xa0712d68", "0xd9", @@ -37412,11 +37412,11 @@ ] }, { - "pc": 787, - "op": "SWAP2", - "gas": 1552036, - "gasCost": 3, "depth": 2, + "gas": 1561834, + "gasCost": 3, + "op": "SWAP2", + "pc": 787, "stack": [ "0xa0712d68", "0xd9", @@ -37438,11 +37438,11 @@ ] }, { - "pc": 788, - "op": "SWAP1", - "gas": 1552033, - "gasCost": 3, "depth": 2, + "gas": 1561831, + "gasCost": 3, + "op": "SWAP1", + "pc": 788, "stack": [ "0xa0712d68", "0xd9", @@ -37464,11 +37464,11 @@ ] }, { - "pc": 789, - "op": "POP", - "gas": 1552030, - "gasCost": 2, "depth": 2, + "gas": 1561828, + "gasCost": 2, + "op": "POP", + "pc": 789, "stack": [ "0xa0712d68", "0xd9", @@ -37490,11 +37490,11 @@ ] }, { - "pc": 790, - "op": "JUMP", - "gas": 1552028, - "gasCost": 8, "depth": 2, + "gas": 1561826, + "gasCost": 8, + "op": "JUMP", + "pc": 790, "stack": [ "0xa0712d68", "0xd9", @@ -37515,11 +37515,11 @@ ] }, { - "pc": 1258, - "op": "JUMPDEST", - "gas": 1552020, - "gasCost": 1, "depth": 2, + "gas": 1561818, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 1258, "stack": [ "0xa0712d68", "0xd9", @@ -37539,11 +37539,11 @@ ] }, { - "pc": 1259, - "op": "SWAP2", - "gas": 1552019, - "gasCost": 3, "depth": 2, + "gas": 1561817, + "gasCost": 3, + "op": "SWAP2", + "pc": 1259, "stack": [ "0xa0712d68", "0xd9", @@ -37563,11 +37563,11 @@ ] }, { - "pc": 1260, - "op": "POP", - "gas": 1552016, - "gasCost": 2, "depth": 2, + "gas": 1561814, + "gasCost": 2, + "op": "POP", + "pc": 1260, "stack": [ "0xa0712d68", "0xd9", @@ -37587,11 +37587,11 @@ ] }, { - "pc": 1261, - "op": "PUSH2", - "gas": 1552014, - "gasCost": 3, "depth": 2, + "gas": 1561812, + "gasCost": 3, + "op": "PUSH2", + "pc": 1261, "stack": [ "0xa0712d68", "0xd9", @@ -37610,11 +37610,11 @@ ] }, { - "pc": 1264, - "op": "DUP4", - "gas": 1552011, - "gasCost": 3, "depth": 2, + "gas": 1561809, + "gasCost": 3, + "op": "DUP4", + "pc": 1264, "stack": [ "0xa0712d68", "0xd9", @@ -37634,11 +37634,11 @@ ] }, { - "pc": 1265, - "op": "PUSH2", - "gas": 1552008, - "gasCost": 3, "depth": 2, + "gas": 1561806, + "gasCost": 3, + "op": "PUSH2", + "pc": 1265, "stack": [ "0xa0712d68", "0xd9", @@ -37659,11 +37659,11 @@ ] }, { - "pc": 1268, - "op": "JUMP", - "gas": 1552005, - "gasCost": 8, "depth": 2, + "gas": 1561803, + "gasCost": 8, + "op": "JUMP", + "pc": 1268, "stack": [ "0xa0712d68", "0xd9", @@ -37685,11 +37685,11 @@ ] }, { - "pc": 781, - "op": "JUMPDEST", - "gas": 1551997, - "gasCost": 1, "depth": 2, + "gas": 1561795, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 781, "stack": [ "0xa0712d68", "0xd9", @@ -37710,11 +37710,11 @@ ] }, { - "pc": 782, - "op": "PUSH1", - "gas": 1551996, - "gasCost": 3, "depth": 2, + "gas": 1561794, + "gasCost": 3, + "op": "PUSH1", + "pc": 782, "stack": [ "0xa0712d68", "0xd9", @@ -37735,11 +37735,11 @@ ] }, { - "pc": 784, - "op": "DUP2", - "gas": 1551993, - "gasCost": 3, "depth": 2, + "gas": 1561791, + "gasCost": 3, + "op": "DUP2", + "pc": 784, "stack": [ "0xa0712d68", "0xd9", @@ -37761,11 +37761,11 @@ ] }, { - "pc": 785, - "op": "SWAP1", - "gas": 1551990, - "gasCost": 3, "depth": 2, + "gas": 1561788, + "gasCost": 3, + "op": "SWAP1", + "pc": 785, "stack": [ "0xa0712d68", "0xd9", @@ -37788,11 +37788,11 @@ ] }, { - "pc": 786, - "op": "POP", - "gas": 1551987, - "gasCost": 2, "depth": 2, + "gas": 1561785, + "gasCost": 2, + "op": "POP", + "pc": 786, "stack": [ "0xa0712d68", "0xd9", @@ -37815,11 +37815,11 @@ ] }, { - "pc": 787, - "op": "SWAP2", - "gas": 1551985, - "gasCost": 3, "depth": 2, + "gas": 1561783, + "gasCost": 3, + "op": "SWAP2", + "pc": 787, "stack": [ "0xa0712d68", "0xd9", @@ -37841,11 +37841,11 @@ ] }, { - "pc": 788, - "op": "SWAP1", - "gas": 1551982, - "gasCost": 3, "depth": 2, + "gas": 1561780, + "gasCost": 3, + "op": "SWAP1", + "pc": 788, "stack": [ "0xa0712d68", "0xd9", @@ -37867,11 +37867,11 @@ ] }, { - "pc": 789, - "op": "POP", - "gas": 1551979, - "gasCost": 2, "depth": 2, + "gas": 1561777, + "gasCost": 2, + "op": "POP", + "pc": 789, "stack": [ "0xa0712d68", "0xd9", @@ -37893,11 +37893,11 @@ ] }, { - "pc": 790, - "op": "JUMP", - "gas": 1551977, - "gasCost": 8, "depth": 2, + "gas": 1561775, + "gasCost": 8, + "op": "JUMP", + "pc": 790, "stack": [ "0xa0712d68", "0xd9", @@ -37918,11 +37918,11 @@ ] }, { - "pc": 1269, - "op": "JUMPDEST", - "gas": 1551969, - "gasCost": 1, "depth": 2, + "gas": 1561767, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 1269, "stack": [ "0xa0712d68", "0xd9", @@ -37942,11 +37942,11 @@ ] }, { - "pc": 1270, - "op": "SWAP3", - "gas": 1551968, - "gasCost": 3, "depth": 2, + "gas": 1561766, + "gasCost": 3, + "op": "SWAP3", + "pc": 1270, "stack": [ "0xa0712d68", "0xd9", @@ -37966,11 +37966,11 @@ ] }, { - "pc": 1271, - "op": "POP", - "gas": 1551965, - "gasCost": 2, "depth": 2, + "gas": 1561763, + "gasCost": 2, + "op": "POP", + "pc": 1271, "stack": [ "0xa0712d68", "0xd9", @@ -37990,11 +37990,11 @@ ] }, { - "pc": 1272, - "op": "DUP3", - "gas": 1551963, - "gasCost": 3, "depth": 2, + "gas": 1561761, + "gasCost": 3, + "op": "DUP3", + "pc": 1272, "stack": [ "0xa0712d68", "0xd9", @@ -38013,11 +38013,11 @@ ] }, { - "pc": 1273, - "op": "DUP3", - "gas": 1551960, - "gasCost": 3, "depth": 2, + "gas": 1561758, + "gasCost": 3, + "op": "DUP3", + "pc": 1273, "stack": [ "0xa0712d68", "0xd9", @@ -38037,11 +38037,11 @@ ] }, { - "pc": 1274, - "op": "ADD", - "gas": 1551957, - "gasCost": 3, "depth": 2, + "gas": 1561755, + "gasCost": 3, + "op": "ADD", + "pc": 1274, "stack": [ "0xa0712d68", "0xd9", @@ -38062,11 +38062,11 @@ ] }, { - "pc": 1275, - "op": "SWAP1", - "gas": 1551954, - "gasCost": 3, "depth": 2, + "gas": 1561752, + "gasCost": 3, + "op": "SWAP1", + "pc": 1275, "stack": [ "0xa0712d68", "0xd9", @@ -38086,11 +38086,11 @@ ] }, { - "pc": 1276, - "op": "POP", - "gas": 1551951, - "gasCost": 2, "depth": 2, + "gas": 1561749, + "gasCost": 2, + "op": "POP", + "pc": 1276, "stack": [ "0xa0712d68", "0xd9", @@ -38110,11 +38110,11 @@ ] }, { - "pc": 1277, - "op": "DUP1", - "gas": 1551949, - "gasCost": 3, "depth": 2, + "gas": 1561747, + "gasCost": 3, + "op": "DUP1", + "pc": 1277, "stack": [ "0xa0712d68", "0xd9", @@ -38133,11 +38133,11 @@ ] }, { - "pc": 1278, - "op": "DUP3", - "gas": 1551946, - "gasCost": 3, "depth": 2, + "gas": 1561744, + "gasCost": 3, + "op": "DUP3", + "pc": 1278, "stack": [ "0xa0712d68", "0xd9", @@ -38157,11 +38157,11 @@ ] }, { - "pc": 1279, - "op": "GT", - "gas": 1551943, - "gasCost": 3, "depth": 2, + "gas": 1561741, + "gasCost": 3, + "op": "GT", + "pc": 1279, "stack": [ "0xa0712d68", "0xd9", @@ -38182,11 +38182,11 @@ ] }, { - "pc": 1280, - "op": "ISZERO", - "gas": 1551940, - "gasCost": 3, "depth": 2, + "gas": 1561738, + "gasCost": 3, + "op": "ISZERO", + "pc": 1280, "stack": [ "0xa0712d68", "0xd9", @@ -38206,11 +38206,11 @@ ] }, { - "pc": 1281, - "op": "PUSH2", - "gas": 1551937, - "gasCost": 3, "depth": 2, + "gas": 1561735, + "gasCost": 3, + "op": "PUSH2", + "pc": 1281, "stack": [ "0xa0712d68", "0xd9", @@ -38230,11 +38230,11 @@ ] }, { - "pc": 1284, - "op": "JUMPI", - "gas": 1551934, - "gasCost": 10, "depth": 2, + "gas": 1561732, + "gasCost": 10, + "op": "JUMPI", + "pc": 1284, "stack": [ "0xa0712d68", "0xd9", @@ -38255,11 +38255,11 @@ ] }, { - "pc": 1293, - "op": "JUMPDEST", - "gas": 1551924, - "gasCost": 1, "depth": 2, + "gas": 1561722, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 1293, "stack": [ "0xa0712d68", "0xd9", @@ -38278,11 +38278,11 @@ ] }, { - "pc": 1294, - "op": "SWAP3", - "gas": 1551923, - "gasCost": 3, "depth": 2, + "gas": 1561721, + "gasCost": 3, + "op": "SWAP3", + "pc": 1294, "stack": [ "0xa0712d68", "0xd9", @@ -38301,11 +38301,11 @@ ] }, { - "pc": 1295, - "op": "SWAP2", - "gas": 1551920, - "gasCost": 3, "depth": 2, + "gas": 1561718, + "gasCost": 3, + "op": "SWAP2", + "pc": 1295, "stack": [ "0xa0712d68", "0xd9", @@ -38324,11 +38324,11 @@ ] }, { - "pc": 1296, - "op": "POP", - "gas": 1551917, - "gasCost": 2, "depth": 2, + "gas": 1561715, + "gasCost": 2, + "op": "POP", + "pc": 1296, "stack": [ "0xa0712d68", "0xd9", @@ -38347,11 +38347,11 @@ ] }, { - "pc": 1297, - "op": "POP", - "gas": 1551915, - "gasCost": 2, "depth": 2, + "gas": 1561713, + "gasCost": 2, + "op": "POP", + "pc": 1297, "stack": [ "0xa0712d68", "0xd9", @@ -38369,11 +38369,11 @@ ] }, { - "pc": 1298, - "op": "JUMP", - "gas": 1551913, - "gasCost": 8, "depth": 2, + "gas": 1561711, + "gasCost": 8, + "op": "JUMP", + "pc": 1298, "stack": [ "0xa0712d68", "0xd9", @@ -38390,11 +38390,11 @@ ] }, { - "pc": 474, - "op": "JUMPDEST", - "gas": 1551905, - "gasCost": 1, "depth": 2, + "gas": 1561703, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 474, "stack": [ "0xa0712d68", "0xd9", @@ -38410,11 +38410,11 @@ ] }, { - "pc": 475, - "op": "SWAP3", - "gas": 1551904, - "gasCost": 3, "depth": 2, + "gas": 1561702, + "gasCost": 3, + "op": "SWAP3", + "pc": 475, "stack": [ "0xa0712d68", "0xd9", @@ -38430,11 +38430,11 @@ ] }, { - "pc": 476, - "op": "POP", - "gas": 1551901, - "gasCost": 2, "depth": 2, + "gas": 1561699, + "gasCost": 2, + "op": "POP", + "pc": 476, "stack": [ "0xa0712d68", "0xd9", @@ -38450,11 +38450,11 @@ ] }, { - "pc": 477, - "op": "POP", - "gas": 1551899, - "gasCost": 2, "depth": 2, + "gas": 1561697, + "gasCost": 2, + "op": "POP", + "pc": 477, "stack": [ "0xa0712d68", "0xd9", @@ -38469,11 +38469,11 @@ ] }, { - "pc": 478, - "op": "DUP2", - "gas": 1551897, - "gasCost": 3, "depth": 2, + "gas": 1561695, + "gasCost": 3, + "op": "DUP2", + "pc": 478, "stack": [ "0xa0712d68", "0xd9", @@ -38487,11 +38487,11 @@ ] }, { - "pc": 479, - "op": "SWAP1", - "gas": 1551894, - "gasCost": 3, "depth": 2, + "gas": 1561692, + "gasCost": 3, + "op": "SWAP1", + "pc": 479, "stack": [ "0xa0712d68", "0xd9", @@ -38506,11 +38506,11 @@ ] }, { - "pc": 480, - "op": "SSTORE", - "gas": 1551891, - "gasCost": 100, "depth": 2, + "gas": 1561689, + "gasCost": 200, + "op": "SSTORE", + "pc": 480, "stack": [ "0xa0712d68", "0xd9", @@ -38530,11 +38530,11 @@ } }, { - "pc": 481, - "op": "POP", - "gas": 1551791, - "gasCost": 2, "depth": 2, + "gas": 1561489, + "gasCost": 2, + "op": "POP", + "pc": 481, "stack": [ "0xa0712d68", "0xd9", @@ -38547,11 +38547,11 @@ ] }, { - "pc": 482, - "op": "PUSH1", - "gas": 1551789, - "gasCost": 3, "depth": 2, + "gas": 1561487, + "gasCost": 3, + "op": "PUSH1", + "pc": 482, "stack": [ "0xa0712d68", "0xd9", @@ -38563,11 +38563,11 @@ ] }, { - "pc": 484, - "op": "SWAP1", - "gas": 1551786, - "gasCost": 3, "depth": 2, + "gas": 1561484, + "gasCost": 3, + "op": "SWAP1", + "pc": 484, "stack": [ "0xa0712d68", "0xd9", @@ -38580,11 +38580,11 @@ ] }, { - "pc": 485, - "op": "POP", - "gas": 1551783, - "gasCost": 2, "depth": 2, + "gas": 1561481, + "gasCost": 2, + "op": "POP", + "pc": 485, "stack": [ "0xa0712d68", "0xd9", @@ -38597,11 +38597,11 @@ ] }, { - "pc": 486, - "op": "SWAP2", - "gas": 1551781, - "gasCost": 3, "depth": 2, + "gas": 1561479, + "gasCost": 3, + "op": "SWAP2", + "pc": 486, "stack": [ "0xa0712d68", "0xd9", @@ -38613,11 +38613,11 @@ ] }, { - "pc": 487, - "op": "SWAP1", - "gas": 1551778, - "gasCost": 3, "depth": 2, + "gas": 1561476, + "gasCost": 3, + "op": "SWAP1", + "pc": 487, "stack": [ "0xa0712d68", "0xd9", @@ -38629,11 +38629,11 @@ ] }, { - "pc": 488, - "op": "POP", - "gas": 1551775, - "gasCost": 2, "depth": 2, + "gas": 1561473, + "gasCost": 2, + "op": "POP", + "pc": 488, "stack": [ "0xa0712d68", "0xd9", @@ -38645,11 +38645,11 @@ ] }, { - "pc": 489, - "op": "JUMP", - "gas": 1551773, - "gasCost": 8, "depth": 2, + "gas": 1561471, + "gasCost": 8, + "op": "JUMP", + "pc": 489, "stack": [ "0xa0712d68", "0xd9", @@ -38660,11 +38660,11 @@ ] }, { - "pc": 674, - "op": "JUMPDEST", - "gas": 1551765, - "gasCost": 1, "depth": 2, + "gas": 1561463, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 674, "stack": [ "0xa0712d68", "0xd9", @@ -38674,11 +38674,11 @@ ] }, { - "pc": 675, - "op": "POP", - "gas": 1551764, - "gasCost": 2, "depth": 2, + "gas": 1561462, + "gasCost": 2, + "op": "POP", + "pc": 675, "stack": [ "0xa0712d68", "0xd9", @@ -38688,11 +38688,11 @@ ] }, { - "pc": 676, - "op": "PUSH2", - "gas": 1551762, - "gasCost": 3, "depth": 2, + "gas": 1561460, + "gasCost": 3, + "op": "PUSH2", + "pc": 676, "stack": [ "0xa0712d68", "0xd9", @@ -38701,11 +38701,11 @@ ] }, { - "pc": 679, - "op": "PUSH2", - "gas": 1551759, - "gasCost": 3, "depth": 2, + "gas": 1561457, + "gasCost": 3, + "op": "PUSH2", + "pc": 679, "stack": [ "0xa0712d68", "0xd9", @@ -38715,11 +38715,11 @@ ] }, { - "pc": 682, - "op": "JUMP", - "gas": 1551756, - "gasCost": 8, "depth": 2, + "gas": 1561454, + "gasCost": 8, + "op": "JUMP", + "pc": 682, "stack": [ "0xa0712d68", "0xd9", @@ -38730,11 +38730,11 @@ ] }, { - "pc": 297, - "op": "JUMPDEST", - "gas": 1551748, - "gasCost": 1, "depth": 2, + "gas": 1561446, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 297, "stack": [ "0xa0712d68", "0xd9", @@ -38744,11 +38744,11 @@ ] }, { - "pc": 298, - "op": "PUSH1", - "gas": 1551747, - "gasCost": 3, "depth": 2, + "gas": 1561445, + "gasCost": 3, + "op": "PUSH1", + "pc": 298, "stack": [ "0xa0712d68", "0xd9", @@ -38758,11 +38758,11 @@ ] }, { - "pc": 300, - "op": "DUP1", - "gas": 1551744, - "gasCost": 3, "depth": 2, + "gas": 1561442, + "gasCost": 3, + "op": "DUP1", + "pc": 300, "stack": [ "0xa0712d68", "0xd9", @@ -38773,11 +38773,11 @@ ] }, { - "pc": 301, - "op": "PUSH1", - "gas": 1551741, - "gasCost": 3, "depth": 2, + "gas": 1561439, + "gasCost": 3, + "op": "PUSH1", + "pc": 301, "stack": [ "0xa0712d68", "0xd9", @@ -38789,11 +38789,11 @@ ] }, { - "pc": 303, - "op": "MLOAD", - "gas": 1551738, - "gasCost": 3, "depth": 2, + "gas": 1561436, + "gasCost": 3, + "op": "MLOAD", + "pc": 303, "stack": [ "0xa0712d68", "0xd9", @@ -38806,11 +38806,11 @@ ] }, { - "pc": 304, - "op": "DUP1", - "gas": 1551735, - "gasCost": 3, "depth": 2, + "gas": 1561433, + "gasCost": 3, + "op": "DUP1", + "pc": 304, "stack": [ "0xa0712d68", "0xd9", @@ -38823,11 +38823,11 @@ ] }, { - "pc": 305, - "op": "PUSH1", - "gas": 1551732, - "gasCost": 3, "depth": 2, + "gas": 1561430, + "gasCost": 3, + "op": "PUSH1", + "pc": 305, "stack": [ "0xa0712d68", "0xd9", @@ -38841,11 +38841,11 @@ ] }, { - "pc": 307, - "op": "ADD", - "gas": 1551729, - "gasCost": 3, "depth": 2, + "gas": 1561427, + "gasCost": 3, + "op": "ADD", + "pc": 307, "stack": [ "0xa0712d68", "0xd9", @@ -38860,11 +38860,11 @@ ] }, { - "pc": 308, - "op": "PUSH1", - "gas": 1551726, - "gasCost": 3, "depth": 2, + "gas": 1561424, + "gasCost": 3, + "op": "PUSH1", + "pc": 308, "stack": [ "0xa0712d68", "0xd9", @@ -38878,11 +38878,11 @@ ] }, { - "pc": 310, - "op": "MSTORE", - "gas": 1551723, - "gasCost": 3, "depth": 2, + "gas": 1561421, + "gasCost": 3, + "op": "MSTORE", + "pc": 310, "stack": [ "0xa0712d68", "0xd9", @@ -38897,11 +38897,11 @@ ] }, { - "pc": 311, - "op": "DUP1", - "gas": 1551720, - "gasCost": 3, "depth": 2, + "gas": 1561418, + "gasCost": 3, + "op": "DUP1", + "pc": 311, "stack": [ "0xa0712d68", "0xd9", @@ -38914,11 +38914,11 @@ ] }, { - "pc": 312, - "op": "PUSH1", - "gas": 1551717, - "gasCost": 3, "depth": 2, + "gas": 1561415, + "gasCost": 3, + "op": "PUSH1", + "pc": 312, "stack": [ "0xa0712d68", "0xd9", @@ -38932,11 +38932,11 @@ ] }, { - "pc": 314, - "op": "DUP2", - "gas": 1551714, - "gasCost": 3, "depth": 2, + "gas": 1561412, + "gasCost": 3, + "op": "DUP2", + "pc": 314, "stack": [ "0xa0712d68", "0xd9", @@ -38951,11 +38951,11 @@ ] }, { - "pc": 315, - "op": "MSTORE", - "gas": 1551711, - "gasCost": 3, "depth": 2, + "gas": 1561409, + "gasCost": 3, + "op": "MSTORE", + "pc": 315, "stack": [ "0xa0712d68", "0xd9", @@ -38970,12 +38970,12 @@ "0x80" ] }, - { - "pc": 316, - "op": "PUSH1", - "gas": 1551708, - "gasCost": 3, + { "depth": 2, + "gas": 1561406, + "gasCost": 3, + "op": "PUSH1", + "pc": 316, "stack": [ "0xa0712d68", "0xd9", @@ -38989,11 +38989,11 @@ ] }, { - "pc": 318, - "op": "ADD", - "gas": 1551705, - "gasCost": 3, "depth": 2, + "gas": 1561403, + "gasCost": 3, + "op": "ADD", + "pc": 318, "stack": [ "0xa0712d68", "0xd9", @@ -39008,11 +39008,11 @@ ] }, { - "pc": 319, - "op": "PUSH32", - "gas": 1551702, - "gasCost": 3, "depth": 2, + "gas": 1561400, + "gasCost": 3, + "op": "PUSH32", + "pc": 319, "stack": [ "0xa0712d68", "0xd9", @@ -39026,11 +39026,11 @@ ] }, { - "pc": 352, - "op": "DUP2", - "gas": 1551699, - "gasCost": 3, "depth": 2, + "gas": 1561397, + "gasCost": 3, + "op": "DUP2", + "pc": 352, "stack": [ "0xa0712d68", "0xd9", @@ -39045,11 +39045,11 @@ ] }, { - "pc": 353, - "op": "MSTORE", - "gas": 1551696, - "gasCost": 3, "depth": 2, + "gas": 1561394, + "gasCost": 3, + "op": "MSTORE", + "pc": 353, "stack": [ "0xa0712d68", "0xd9", @@ -39065,11 +39065,11 @@ ] }, { - "pc": 354, - "op": "POP", - "gas": 1551693, - "gasCost": 2, "depth": 2, + "gas": 1561391, + "gasCost": 2, + "op": "POP", + "pc": 354, "stack": [ "0xa0712d68", "0xd9", @@ -39083,11 +39083,11 @@ ] }, { - "pc": 355, - "op": "SWAP1", - "gas": 1551691, - "gasCost": 3, "depth": 2, + "gas": 1561389, + "gasCost": 3, + "op": "SWAP1", + "pc": 355, "stack": [ "0xa0712d68", "0xd9", @@ -39100,11 +39100,11 @@ ] }, { - "pc": 356, - "op": "POP", - "gas": 1551688, - "gasCost": 2, "depth": 2, + "gas": 1561386, + "gasCost": 2, + "op": "POP", + "pc": 356, "stack": [ "0xa0712d68", "0xd9", @@ -39117,11 +39117,11 @@ ] }, { - "pc": 357, - "op": "PUSH1", - "gas": 1551686, - "gasCost": 3, "depth": 2, + "gas": 1561384, + "gasCost": 3, + "op": "PUSH1", + "pc": 357, "stack": [ "0xa0712d68", "0xd9", @@ -39133,11 +39133,11 @@ ] }, { - "pc": 359, - "op": "DUP2", - "gas": 1551683, - "gasCost": 3, "depth": 2, + "gas": 1561381, + "gasCost": 3, + "op": "DUP2", + "pc": 359, "stack": [ "0xa0712d68", "0xd9", @@ -39150,11 +39150,11 @@ ] }, { - "pc": 360, - "op": "DUP1", - "gas": 1551680, - "gasCost": 3, "depth": 2, + "gas": 1561378, + "gasCost": 3, + "op": "DUP1", + "pc": 360, "stack": [ "0xa0712d68", "0xd9", @@ -39168,11 +39168,11 @@ ] }, { - "pc": 361, - "op": "MLOAD", - "gas": 1551677, - "gasCost": 3, "depth": 2, + "gas": 1561375, + "gasCost": 3, + "op": "MLOAD", + "pc": 361, "stack": [ "0xa0712d68", "0xd9", @@ -39187,11 +39187,11 @@ ] }, { - "pc": 362, - "op": "SWAP1", - "gas": 1551674, - "gasCost": 3, "depth": 2, + "gas": 1561372, + "gasCost": 3, + "op": "SWAP1", + "pc": 362, "stack": [ "0xa0712d68", "0xd9", @@ -39206,11 +39206,11 @@ ] }, { - "pc": 363, - "op": "PUSH1", - "gas": 1551671, - "gasCost": 3, "depth": 2, + "gas": 1561369, + "gasCost": 3, + "op": "PUSH1", + "pc": 363, "stack": [ "0xa0712d68", "0xd9", @@ -39225,11 +39225,11 @@ ] }, { - "pc": 365, - "op": "ADD", - "gas": 1551668, - "gasCost": 3, "depth": 2, + "gas": 1561366, + "gasCost": 3, + "op": "ADD", + "pc": 365, "stack": [ "0xa0712d68", "0xd9", @@ -39245,11 +39245,11 @@ ] }, { - "pc": 366, - "op": "KECCAK256", - "gas": 1551665, - "gasCost": 36, "depth": 2, + "gas": 1561363, + "gasCost": 36, + "op": "KECCAK256", + "pc": 366, "stack": [ "0xa0712d68", "0xd9", @@ -39264,11 +39264,11 @@ ] }, { - "pc": 367, - "op": "SWAP1", - "gas": 1551629, - "gasCost": 3, "depth": 2, + "gas": 1561327, + "gasCost": 3, + "op": "SWAP1", + "pc": 367, "stack": [ "0xa0712d68", "0xd9", @@ -39282,11 +39282,11 @@ ] }, { - "pc": 368, - "op": "POP", - "gas": 1551626, - "gasCost": 2, "depth": 2, + "gas": 1561324, + "gasCost": 2, + "op": "POP", + "pc": 368, "stack": [ "0xa0712d68", "0xd9", @@ -39300,11 +39300,11 @@ ] }, { - "pc": 369, - "op": "DUP1", - "gas": 1551624, - "gasCost": 3, "depth": 2, + "gas": 1561322, + "gasCost": 3, + "op": "DUP1", + "pc": 369, "stack": [ "0xa0712d68", "0xd9", @@ -39317,11 +39317,11 @@ ] }, { - "pc": 370, - "op": "SWAP3", - "gas": 1551621, - "gasCost": 3, "depth": 2, + "gas": 1561319, + "gasCost": 3, + "op": "SWAP3", + "pc": 370, "stack": [ "0xa0712d68", "0xd9", @@ -39335,11 +39335,11 @@ ] }, { - "pc": 371, - "op": "POP", - "gas": 1551618, - "gasCost": 2, "depth": 2, + "gas": 1561316, + "gasCost": 2, + "op": "POP", + "pc": 371, "stack": [ "0xa0712d68", "0xd9", @@ -39353,11 +39353,11 @@ ] }, { - "pc": 372, - "op": "POP", - "gas": 1551616, - "gasCost": 2, "depth": 2, + "gas": 1561314, + "gasCost": 2, + "op": "POP", + "pc": 372, "stack": [ "0xa0712d68", "0xd9", @@ -39370,11 +39370,11 @@ ] }, { - "pc": 373, - "op": "POP", - "gas": 1551614, - "gasCost": 2, "depth": 2, + "gas": 1561312, + "gasCost": 2, + "op": "POP", + "pc": 373, "stack": [ "0xa0712d68", "0xd9", @@ -39386,11 +39386,11 @@ ] }, { - "pc": 374, - "op": "SWAP1", - "gas": 1551612, - "gasCost": 3, "depth": 2, + "gas": 1561310, + "gasCost": 3, + "op": "SWAP1", + "pc": 374, "stack": [ "0xa0712d68", "0xd9", @@ -39401,11 +39401,11 @@ ] }, { - "pc": 375, - "op": "JUMP", - "gas": 1551609, - "gasCost": 8, "depth": 2, + "gas": 1561307, + "gasCost": 8, + "op": "JUMP", + "pc": 375, "stack": [ "0xa0712d68", "0xd9", @@ -39416,11 +39416,11 @@ ] }, { - "pc": 683, - "op": "JUMPDEST", - "gas": 1551601, - "gasCost": 1, "depth": 2, + "gas": 1561299, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 683, "stack": [ "0xa0712d68", "0xd9", @@ -39430,11 +39430,11 @@ ] }, { - "pc": 684, - "op": "POP", - "gas": 1551600, - "gasCost": 2, "depth": 2, + "gas": 1561298, + "gasCost": 2, + "op": "POP", + "pc": 684, "stack": [ "0xa0712d68", "0xd9", @@ -39444,11 +39444,11 @@ ] }, { - "pc": 685, - "op": "PUSH1", - "gas": 1551598, - "gasCost": 3, "depth": 2, + "gas": 1561296, + "gasCost": 3, + "op": "PUSH1", + "pc": 685, "stack": [ "0xa0712d68", "0xd9", @@ -39457,11 +39457,11 @@ ] }, { - "pc": 687, - "op": "SWAP1", - "gas": 1551595, - "gasCost": 3, "depth": 2, + "gas": 1561293, + "gasCost": 3, + "op": "SWAP1", + "pc": 687, "stack": [ "0xa0712d68", "0xd9", @@ -39471,11 +39471,11 @@ ] }, { - "pc": 688, - "op": "POP", - "gas": 1551592, - "gasCost": 2, "depth": 2, + "gas": 1561290, + "gasCost": 2, + "op": "POP", + "pc": 688, "stack": [ "0xa0712d68", "0xd9", @@ -39485,11 +39485,11 @@ ] }, { - "pc": 689, - "op": "SWAP2", - "gas": 1551590, - "gasCost": 3, "depth": 2, + "gas": 1561288, + "gasCost": 3, + "op": "SWAP2", + "pc": 689, "stack": [ "0xa0712d68", "0xd9", @@ -39498,11 +39498,11 @@ ] }, { - "pc": 690, - "op": "SWAP1", - "gas": 1551587, - "gasCost": 3, "depth": 2, + "gas": 1561285, + "gasCost": 3, + "op": "SWAP1", + "pc": 690, "stack": [ "0xa0712d68", "0x1", @@ -39511,11 +39511,11 @@ ] }, { - "pc": 691, - "op": "POP", - "gas": 1551584, - "gasCost": 2, "depth": 2, + "gas": 1561282, + "gasCost": 2, + "op": "POP", + "pc": 691, "stack": [ "0xa0712d68", "0x1", @@ -39524,11 +39524,11 @@ ] }, { - "pc": 692, - "op": "JUMP", - "gas": 1551582, - "gasCost": 8, "depth": 2, + "gas": 1561280, + "gasCost": 8, + "op": "JUMP", + "pc": 692, "stack": [ "0xa0712d68", "0x1", @@ -39536,33 +39536,33 @@ ] }, { - "pc": 217, - "op": "JUMPDEST", - "gas": 1551574, - "gasCost": 1, "depth": 2, + "gas": 1561272, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 217, "stack": [ "0xa0712d68", "0x1" ] }, { - "pc": 218, - "op": "PUSH1", - "gas": 1551573, - "gasCost": 3, "depth": 2, + "gas": 1561271, + "gasCost": 3, + "op": "PUSH1", + "pc": 218, "stack": [ "0xa0712d68", "0x1" ] }, { - "pc": 220, - "op": "MLOAD", - "gas": 1551570, - "gasCost": 3, "depth": 2, + "gas": 1561268, + "gasCost": 3, + "op": "MLOAD", + "pc": 220, "stack": [ "0xa0712d68", "0x1", @@ -39570,11 +39570,11 @@ ] }, { - "pc": 221, - "op": "PUSH2", - "gas": 1551567, - "gasCost": 3, "depth": 2, + "gas": 1561265, + "gasCost": 3, + "op": "PUSH2", + "pc": 221, "stack": [ "0xa0712d68", "0x1", @@ -39582,11 +39582,11 @@ ] }, { - "pc": 224, - "op": "SWAP2", - "gas": 1551564, - "gasCost": 3, "depth": 2, + "gas": 1561262, + "gasCost": 3, + "op": "SWAP2", + "pc": 224, "stack": [ "0xa0712d68", "0x1", @@ -39595,11 +39595,11 @@ ] }, { - "pc": 225, - "op": "SWAP1", - "gas": 1551561, - "gasCost": 3, "depth": 2, + "gas": 1561259, + "gasCost": 3, + "op": "SWAP1", + "pc": 225, "stack": [ "0xa0712d68", "0xe6", @@ -39608,11 +39608,11 @@ ] }, { - "pc": 226, - "op": "PUSH2", - "gas": 1551558, - "gasCost": 3, "depth": 2, + "gas": 1561256, + "gasCost": 3, + "op": "PUSH2", + "pc": 226, "stack": [ "0xa0712d68", "0xe6", @@ -39621,11 +39621,11 @@ ] }, { - "pc": 229, - "op": "JUMP", - "gas": 1551555, - "gasCost": 8, "depth": 2, + "gas": 1561253, + "gasCost": 8, + "op": "JUMP", + "pc": 229, "stack": [ "0xa0712d68", "0xe6", @@ -39635,11 +39635,11 @@ ] }, { - "pc": 895, - "op": "JUMPDEST", - "gas": 1551547, - "gasCost": 1, "depth": 2, + "gas": 1561245, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 895, "stack": [ "0xa0712d68", "0xe6", @@ -39648,11 +39648,11 @@ ] }, { - "pc": 896, - "op": "PUSH1", - "gas": 1551546, - "gasCost": 3, "depth": 2, + "gas": 1561244, + "gasCost": 3, + "op": "PUSH1", + "pc": 896, "stack": [ "0xa0712d68", "0xe6", @@ -39661,11 +39661,11 @@ ] }, { - "pc": 898, - "op": "PUSH1", - "gas": 1551543, - "gasCost": 3, "depth": 2, + "gas": 1561241, + "gasCost": 3, + "op": "PUSH1", + "pc": 898, "stack": [ "0xa0712d68", "0xe6", @@ -39675,11 +39675,11 @@ ] }, { - "pc": 900, - "op": "DUP3", - "gas": 1551540, - "gasCost": 3, "depth": 2, + "gas": 1561238, + "gasCost": 3, + "op": "DUP3", + "pc": 900, "stack": [ "0xa0712d68", "0xe6", @@ -39690,11 +39690,11 @@ ] }, { - "pc": 901, - "op": "ADD", - "gas": 1551537, - "gasCost": 3, "depth": 2, + "gas": 1561235, + "gasCost": 3, + "op": "ADD", + "pc": 901, "stack": [ "0xa0712d68", "0xe6", @@ -39706,11 +39706,11 @@ ] }, { - "pc": 902, - "op": "SWAP1", - "gas": 1551534, - "gasCost": 3, "depth": 2, + "gas": 1561232, + "gasCost": 3, + "op": "SWAP1", + "pc": 902, "stack": [ "0xa0712d68", "0xe6", @@ -39721,11 +39721,11 @@ ] }, { - "pc": 903, - "op": "POP", - "gas": 1551531, - "gasCost": 2, "depth": 2, + "gas": 1561229, + "gasCost": 2, + "op": "POP", + "pc": 903, "stack": [ "0xa0712d68", "0xe6", @@ -39736,11 +39736,11 @@ ] }, { - "pc": 904, - "op": "PUSH2", - "gas": 1551529, - "gasCost": 3, "depth": 2, + "gas": 1561227, + "gasCost": 3, + "op": "PUSH2", + "pc": 904, "stack": [ "0xa0712d68", "0xe6", @@ -39750,11 +39750,11 @@ ] }, { - "pc": 907, - "op": "PUSH1", - "gas": 1551526, - "gasCost": 3, "depth": 2, + "gas": 1561224, + "gasCost": 3, + "op": "PUSH1", + "pc": 907, "stack": [ "0xa0712d68", "0xe6", @@ -39765,11 +39765,11 @@ ] }, { - "pc": 909, - "op": "DUP4", - "gas": 1551523, - "gasCost": 3, "depth": 2, + "gas": 1561221, + "gasCost": 3, + "op": "DUP4", + "pc": 909, "stack": [ "0xa0712d68", "0xe6", @@ -39781,11 +39781,11 @@ ] }, { - "pc": 910, - "op": "ADD", - "gas": 1551520, - "gasCost": 3, "depth": 2, + "gas": 1561218, + "gasCost": 3, + "op": "ADD", + "pc": 910, "stack": [ "0xa0712d68", "0xe6", @@ -39798,11 +39798,11 @@ ] }, { - "pc": 911, - "op": "DUP5", - "gas": 1551517, - "gasCost": 3, "depth": 2, + "gas": 1561215, + "gasCost": 3, + "op": "DUP5", + "pc": 911, "stack": [ "0xa0712d68", "0xe6", @@ -39814,11 +39814,11 @@ ] }, { - "pc": 912, - "op": "PUSH2", - "gas": 1551514, - "gasCost": 3, "depth": 2, + "gas": 1561212, + "gasCost": 3, + "op": "PUSH2", + "pc": 912, "stack": [ "0xa0712d68", "0xe6", @@ -39831,11 +39831,11 @@ ] }, { - "pc": 915, - "op": "JUMP", - "gas": 1551511, - "gasCost": 8, "depth": 2, + "gas": 1561209, + "gasCost": 8, + "op": "JUMP", + "pc": 915, "stack": [ "0xa0712d68", "0xe6", @@ -39849,11 +39849,11 @@ ] }, { - "pc": 880, - "op": "JUMPDEST", - "gas": 1551503, - "gasCost": 1, "depth": 2, + "gas": 1561201, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 880, "stack": [ "0xa0712d68", "0xe6", @@ -39866,11 +39866,11 @@ ] }, { - "pc": 881, - "op": "PUSH2", - "gas": 1551502, - "gasCost": 3, "depth": 2, + "gas": 1561200, + "gasCost": 3, + "op": "PUSH2", + "pc": 881, "stack": [ "0xa0712d68", "0xe6", @@ -39883,11 +39883,11 @@ ] }, { - "pc": 884, - "op": "DUP2", - "gas": 1551499, - "gasCost": 3, "depth": 2, + "gas": 1561197, + "gasCost": 3, + "op": "DUP2", + "pc": 884, "stack": [ "0xa0712d68", "0xe6", @@ -39901,11 +39901,11 @@ ] }, { - "pc": 885, - "op": "PUSH2", - "gas": 1551496, - "gasCost": 3, "depth": 2, + "gas": 1561194, + "gasCost": 3, + "op": "PUSH2", + "pc": 885, "stack": [ "0xa0712d68", "0xe6", @@ -39920,11 +39920,11 @@ ] }, { - "pc": 888, - "op": "JUMP", - "gas": 1551493, - "gasCost": 8, "depth": 2, + "gas": 1561191, + "gasCost": 8, + "op": "JUMP", + "pc": 888, "stack": [ "0xa0712d68", "0xe6", @@ -39940,11 +39940,11 @@ ] }, { - "pc": 781, - "op": "JUMPDEST", - "gas": 1551485, - "gasCost": 1, "depth": 2, + "gas": 1561183, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 781, "stack": [ "0xa0712d68", "0xe6", @@ -39959,11 +39959,11 @@ ] }, { - "pc": 782, - "op": "PUSH1", - "gas": 1551484, - "gasCost": 3, "depth": 2, + "gas": 1561182, + "gasCost": 3, + "op": "PUSH1", + "pc": 782, "stack": [ "0xa0712d68", "0xe6", @@ -39978,11 +39978,11 @@ ] }, { - "pc": 784, - "op": "DUP2", - "gas": 1551481, - "gasCost": 3, "depth": 2, + "gas": 1561179, + "gasCost": 3, + "op": "DUP2", + "pc": 784, "stack": [ "0xa0712d68", "0xe6", @@ -39998,11 +39998,11 @@ ] }, { - "pc": 785, - "op": "SWAP1", - "gas": 1551478, - "gasCost": 3, "depth": 2, + "gas": 1561176, + "gasCost": 3, + "op": "SWAP1", + "pc": 785, "stack": [ "0xa0712d68", "0xe6", @@ -40019,11 +40019,11 @@ ] }, { - "pc": 786, - "op": "POP", - "gas": 1551475, - "gasCost": 2, "depth": 2, + "gas": 1561173, + "gasCost": 2, + "op": "POP", + "pc": 786, "stack": [ "0xa0712d68", "0xe6", @@ -40040,11 +40040,11 @@ ] }, { - "pc": 787, - "op": "SWAP2", - "gas": 1551473, - "gasCost": 3, "depth": 2, + "gas": 1561171, + "gasCost": 3, + "op": "SWAP2", + "pc": 787, "stack": [ "0xa0712d68", "0xe6", @@ -40060,11 +40060,11 @@ ] }, { - "pc": 788, - "op": "SWAP1", - "gas": 1551470, - "gasCost": 3, "depth": 2, + "gas": 1561168, + "gasCost": 3, + "op": "SWAP1", + "pc": 788, "stack": [ "0xa0712d68", "0xe6", @@ -40080,11 +40080,11 @@ ] }, { - "pc": 789, - "op": "POP", - "gas": 1551467, - "gasCost": 2, "depth": 2, + "gas": 1561165, + "gasCost": 2, + "op": "POP", + "pc": 789, "stack": [ "0xa0712d68", "0xe6", @@ -40100,11 +40100,11 @@ ] }, { - "pc": 790, - "op": "JUMP", - "gas": 1551465, - "gasCost": 8, "depth": 2, + "gas": 1561163, + "gasCost": 8, + "op": "JUMP", + "pc": 790, "stack": [ "0xa0712d68", "0xe6", @@ -40119,11 +40119,11 @@ ] }, { - "pc": 889, - "op": "JUMPDEST", - "gas": 1551457, - "gasCost": 1, "depth": 2, + "gas": 1561155, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 889, "stack": [ "0xa0712d68", "0xe6", @@ -40137,11 +40137,11 @@ ] }, { - "pc": 890, - "op": "DUP3", - "gas": 1551456, - "gasCost": 3, "depth": 2, + "gas": 1561154, + "gasCost": 3, + "op": "DUP3", + "pc": 890, "stack": [ "0xa0712d68", "0xe6", @@ -40155,11 +40155,11 @@ ] }, { - "pc": 891, - "op": "MSTORE", - "gas": 1551453, - "gasCost": 3, "depth": 2, + "gas": 1561151, + "gasCost": 3, + "op": "MSTORE", + "pc": 891, "stack": [ "0xa0712d68", "0xe6", @@ -40174,11 +40174,11 @@ ] }, { - "pc": 892, - "op": "POP", - "gas": 1551450, - "gasCost": 2, "depth": 2, + "gas": 1561148, + "gasCost": 2, + "op": "POP", + "pc": 892, "stack": [ "0xa0712d68", "0xe6", @@ -40191,11 +40191,11 @@ ] }, { - "pc": 893, - "op": "POP", - "gas": 1551448, - "gasCost": 2, "depth": 2, + "gas": 1561146, + "gasCost": 2, + "op": "POP", + "pc": 893, "stack": [ "0xa0712d68", "0xe6", @@ -40207,11 +40207,11 @@ ] }, { - "pc": 894, - "op": "JUMP", - "gas": 1551446, - "gasCost": 8, "depth": 2, + "gas": 1561144, + "gasCost": 8, + "op": "JUMP", + "pc": 894, "stack": [ "0xa0712d68", "0xe6", @@ -40222,11 +40222,11 @@ ] }, { - "pc": 916, - "op": "JUMPDEST", - "gas": 1551438, - "gasCost": 1, "depth": 2, + "gas": 1561136, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 916, "stack": [ "0xa0712d68", "0xe6", @@ -40236,11 +40236,11 @@ ] }, { - "pc": 917, - "op": "SWAP3", - "gas": 1551437, - "gasCost": 3, "depth": 2, + "gas": 1561135, + "gasCost": 3, + "op": "SWAP3", + "pc": 917, "stack": [ "0xa0712d68", "0xe6", @@ -40250,11 +40250,11 @@ ] }, { - "pc": 918, - "op": "SWAP2", - "gas": 1551434, - "gasCost": 3, "depth": 2, + "gas": 1561132, + "gasCost": 3, + "op": "SWAP2", + "pc": 918, "stack": [ "0xa0712d68", "0xe0", @@ -40264,11 +40264,11 @@ ] }, { - "pc": 919, - "op": "POP", - "gas": 1551431, - "gasCost": 2, "depth": 2, + "gas": 1561129, + "gasCost": 2, + "op": "POP", + "pc": 919, "stack": [ "0xa0712d68", "0xe0", @@ -40278,11 +40278,11 @@ ] }, { - "pc": 920, - "op": "POP", - "gas": 1551429, - "gasCost": 2, "depth": 2, + "gas": 1561127, + "gasCost": 2, + "op": "POP", + "pc": 920, "stack": [ "0xa0712d68", "0xe0", @@ -40291,11 +40291,11 @@ ] }, { - "pc": 921, - "op": "JUMP", - "gas": 1551427, - "gasCost": 8, "depth": 2, + "gas": 1561125, + "gasCost": 8, + "op": "JUMP", + "pc": 921, "stack": [ "0xa0712d68", "0xe0", @@ -40303,33 +40303,33 @@ ] }, { - "pc": 230, - "op": "JUMPDEST", - "gas": 1551419, - "gasCost": 1, "depth": 2, + "gas": 1561117, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 230, "stack": [ "0xa0712d68", "0xe0" ] }, { - "pc": 231, - "op": "PUSH1", - "gas": 1551418, - "gasCost": 3, "depth": 2, + "gas": 1561116, + "gasCost": 3, + "op": "PUSH1", + "pc": 231, "stack": [ "0xa0712d68", "0xe0" ] }, { - "pc": 233, - "op": "MLOAD", - "gas": 1551415, - "gasCost": 3, "depth": 2, + "gas": 1561113, + "gasCost": 3, + "op": "MLOAD", + "pc": 233, "stack": [ "0xa0712d68", "0xe0", @@ -40337,11 +40337,11 @@ ] }, { - "pc": 234, - "op": "DUP1", - "gas": 1551412, - "gasCost": 3, "depth": 2, + "gas": 1561110, + "gasCost": 3, + "op": "DUP1", + "pc": 234, "stack": [ "0xa0712d68", "0xe0", @@ -40349,11 +40349,11 @@ ] }, { - "pc": 235, - "op": "SWAP2", - "gas": 1551409, - "gasCost": 3, "depth": 2, + "gas": 1561107, + "gasCost": 3, + "op": "SWAP2", + "pc": 235, "stack": [ "0xa0712d68", "0xe0", @@ -40362,11 +40362,11 @@ ] }, { - "pc": 236, - "op": "SUB", - "gas": 1551406, - "gasCost": 3, "depth": 2, + "gas": 1561104, + "gasCost": 3, + "op": "SUB", + "pc": 236, "stack": [ "0xa0712d68", "0xc0", @@ -40375,11 +40375,11 @@ ] }, { - "pc": 237, - "op": "SWAP1", - "gas": 1551403, - "gasCost": 3, "depth": 2, + "gas": 1561101, + "gasCost": 3, + "op": "SWAP1", + "pc": 237, "stack": [ "0xa0712d68", "0xc0", @@ -40387,11 +40387,11 @@ ] }, { - "pc": 238, - "op": "RETURN", - "gas": 1551400, - "gasCost": 0, "depth": 2, + "gas": 1561098, + "gasCost": 0, + "op": "RETURN", + "pc": 238, "stack": [ "0xa0712d68", "0x20", @@ -40399,51 +40399,51 @@ ] }, { - "pc": 1117, - "op": "ISZERO", - "gas": 1576135, - "gasCost": 3, "depth": 1, + "gas": 1585993, + "gasCost": 3, + "op": "ISZERO", + "pc": 1117, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xa0712d68", "0xe4", "0x1" ] }, { - "pc": 1118, - "op": "DUP1", - "gas": 1576132, - "gasCost": 3, "depth": 1, + "gas": 1585990, + "gasCost": 3, + "op": "DUP1", + "pc": 1118, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xa0712d68", "0xe4", "0x0" ] }, { - "pc": 1119, - "op": "ISZERO", - "gas": 1576129, - "gasCost": 3, "depth": 1, + "gas": 1585987, + "gasCost": 3, + "op": "ISZERO", + "pc": 1119, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xa0712d68", "0xe4", "0x0", @@ -40451,17 +40451,17 @@ ] }, { - "pc": 1120, - "op": "PUSH3", - "gas": 1576126, - "gasCost": 3, "depth": 1, + "gas": 1585984, + "gasCost": 3, + "op": "PUSH3", + "pc": 1120, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xa0712d68", "0xe4", "0x0", @@ -40469,17 +40469,17 @@ ] }, { - "pc": 1124, - "op": "JUMPI", - "gas": 1576123, - "gasCost": 10, "depth": 1, + "gas": 1585981, + "gasCost": 10, + "op": "JUMPI", + "pc": 1124, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xa0712d68", "0xe4", "0x0", @@ -40488,90 +40488,90 @@ ] }, { - "pc": 1134, - "op": "JUMPDEST", - "gas": 1576113, - "gasCost": 1, "depth": 1, + "gas": 1585971, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 1134, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xa0712d68", "0xe4", "0x0" ] }, { - "pc": 1135, - "op": "POP", - "gas": 1576112, - "gasCost": 2, "depth": 1, + "gas": 1585970, + "gasCost": 2, + "op": "POP", + "pc": 1135, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xa0712d68", "0xe4", "0x0" ] }, { - "pc": 1136, - "op": "POP", - "gas": 1576110, - "gasCost": 2, "depth": 1, + "gas": 1585968, + "gasCost": 2, + "op": "POP", + "pc": 1136, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xa0712d68", "0xe4" ] }, { - "pc": 1137, - "op": "POP", - "gas": 1576108, - "gasCost": 2, "depth": 1, + "gas": 1585966, + "gasCost": 2, + "op": "POP", + "pc": 1137, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585", + "0x5b659fd8bdc52879d0c3697038537da40832b759", "0xa0712d68" ] }, { - "pc": 1138, - "op": "POP", - "gas": 1576106, - "gasCost": 2, "depth": 1, + "gas": 1585964, + "gasCost": 2, + "op": "POP", + "pc": 1138, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585" + "0x5b659fd8bdc52879d0c3697038537da40832b759" ] }, { - "pc": 1139, - "op": "PUSH1", - "gas": 1576104, - "gasCost": 3, "depth": 1, + "gas": 1585962, + "gasCost": 3, + "op": "PUSH1", + "pc": 1139, "stack": [ "0x3aa18088", "0x149", @@ -40580,11 +40580,11 @@ ] }, { - "pc": 1141, - "op": "MLOAD", - "gas": 1576101, - "gasCost": 3, "depth": 1, + "gas": 1585959, + "gasCost": 3, + "op": "MLOAD", + "pc": 1141, "stack": [ "0x3aa18088", "0x149", @@ -40594,11 +40594,11 @@ ] }, { - "pc": 1142, - "op": "RETURNDATASIZE", - "gas": 1576098, - "gasCost": 2, "depth": 1, + "gas": 1585956, + "gasCost": 2, + "op": "RETURNDATASIZE", + "pc": 1142, "stack": [ "0x3aa18088", "0x149", @@ -40608,11 +40608,11 @@ ] }, { - "pc": 1143, - "op": "PUSH1", - "gas": 1576096, - "gasCost": 3, "depth": 1, + "gas": 1585954, + "gasCost": 3, + "op": "PUSH1", + "pc": 1143, "stack": [ "0x3aa18088", "0x149", @@ -40623,11 +40623,11 @@ ] }, { - "pc": 1145, - "op": "NOT", - "gas": 1576093, - "gasCost": 3, "depth": 1, + "gas": 1585951, + "gasCost": 3, + "op": "NOT", + "pc": 1145, "stack": [ "0x3aa18088", "0x149", @@ -40639,11 +40639,11 @@ ] }, { - "pc": 1146, - "op": "PUSH1", - "gas": 1576090, - "gasCost": 3, "depth": 1, + "gas": 1585948, + "gasCost": 3, + "op": "PUSH1", + "pc": 1146, "stack": [ "0x3aa18088", "0x149", @@ -40655,11 +40655,11 @@ ] }, { - "pc": 1148, - "op": "DUP3", - "gas": 1576087, - "gasCost": 3, "depth": 1, + "gas": 1585945, + "gasCost": 3, + "op": "DUP3", + "pc": 1148, "stack": [ "0x3aa18088", "0x149", @@ -40672,11 +40672,11 @@ ] }, { - "pc": 1149, - "op": "ADD", - "gas": 1576084, - "gasCost": 3, "depth": 1, + "gas": 1585942, + "gasCost": 3, + "op": "ADD", + "pc": 1149, "stack": [ "0x3aa18088", "0x149", @@ -40690,11 +40690,11 @@ ] }, { - "pc": 1150, - "op": "AND", - "gas": 1576081, - "gasCost": 3, "depth": 1, + "gas": 1585939, + "gasCost": 3, + "op": "AND", + "pc": 1150, "stack": [ "0x3aa18088", "0x149", @@ -40707,11 +40707,11 @@ ] }, { - "pc": 1151, - "op": "DUP3", - "gas": 1576078, - "gasCost": 3, "depth": 1, + "gas": 1585936, + "gasCost": 3, + "op": "DUP3", + "pc": 1151, "stack": [ "0x3aa18088", "0x149", @@ -40723,11 +40723,11 @@ ] }, { - "pc": 1152, - "op": "ADD", - "gas": 1576075, - "gasCost": 3, "depth": 1, + "gas": 1585933, + "gasCost": 3, + "op": "ADD", + "pc": 1152, "stack": [ "0x3aa18088", "0x149", @@ -40740,11 +40740,11 @@ ] }, { - "pc": 1153, - "op": "DUP1", - "gas": 1576072, - "gasCost": 3, "depth": 1, + "gas": 1585930, + "gasCost": 3, + "op": "DUP1", + "pc": 1153, "stack": [ "0x3aa18088", "0x149", @@ -40756,11 +40756,11 @@ ] }, { - "pc": 1154, - "op": "PUSH1", - "gas": 1576069, - "gasCost": 3, "depth": 1, + "gas": 1585927, + "gasCost": 3, + "op": "PUSH1", + "pc": 1154, "stack": [ "0x3aa18088", "0x149", @@ -40773,11 +40773,11 @@ ] }, { - "pc": 1156, - "op": "MSTORE", - "gas": 1576066, - "gasCost": 3, "depth": 1, + "gas": 1585924, + "gasCost": 3, + "op": "MSTORE", + "pc": 1156, "stack": [ "0x3aa18088", "0x149", @@ -40791,11 +40791,11 @@ ] }, { - "pc": 1157, - "op": "POP", - "gas": 1576063, - "gasCost": 2, "depth": 1, + "gas": 1585921, + "gasCost": 2, + "op": "POP", + "pc": 1157, "stack": [ "0x3aa18088", "0x149", @@ -40807,11 +40807,11 @@ ] }, { - "pc": 1158, - "op": "DUP2", - "gas": 1576061, - "gasCost": 3, "depth": 1, + "gas": 1585919, + "gasCost": 3, + "op": "DUP2", + "pc": 1158, "stack": [ "0x3aa18088", "0x149", @@ -40822,11 +40822,11 @@ ] }, { - "pc": 1159, - "op": "ADD", - "gas": 1576058, - "gasCost": 3, "depth": 1, + "gas": 1585916, + "gasCost": 3, + "op": "ADD", + "pc": 1159, "stack": [ "0x3aa18088", "0x149", @@ -40838,11 +40838,11 @@ ] }, { - "pc": 1160, - "op": "SWAP1", - "gas": 1576055, - "gasCost": 3, "depth": 1, + "gas": 1585913, + "gasCost": 3, + "op": "SWAP1", + "pc": 1160, "stack": [ "0x3aa18088", "0x149", @@ -40853,11 +40853,11 @@ ] }, { - "pc": 1161, - "op": "PUSH3", - "gas": 1576052, - "gasCost": 3, "depth": 1, + "gas": 1585910, + "gasCost": 3, + "op": "PUSH3", + "pc": 1161, "stack": [ "0x3aa18088", "0x149", @@ -40868,11 +40868,11 @@ ] }, { - "pc": 1165, - "op": "SWAP2", - "gas": 1576049, - "gasCost": 3, "depth": 1, + "gas": 1585907, + "gasCost": 3, + "op": "SWAP2", + "pc": 1165, "stack": [ "0x3aa18088", "0x149", @@ -40884,11 +40884,11 @@ ] }, { - "pc": 1166, - "op": "SWAP1", - "gas": 1576046, - "gasCost": 3, "depth": 1, + "gas": 1585904, + "gasCost": 3, + "op": "SWAP1", + "pc": 1166, "stack": [ "0x3aa18088", "0x149", @@ -40900,11 +40900,11 @@ ] }, { - "pc": 1167, - "op": "PUSH3", - "gas": 1576043, - "gasCost": 3, "depth": 1, + "gas": 1585901, + "gasCost": 3, + "op": "PUSH3", + "pc": 1167, "stack": [ "0x3aa18088", "0x149", @@ -40916,11 +40916,11 @@ ] }, { - "pc": 1171, - "op": "JUMP", - "gas": 1576040, - "gasCost": 8, "depth": 1, + "gas": 1585898, + "gasCost": 8, + "op": "JUMP", + "pc": 1171, "stack": [ "0x3aa18088", "0x149", @@ -40933,11 +40933,11 @@ ] }, { - "pc": 3177, - "op": "JUMPDEST", - "gas": 1576032, - "gasCost": 1, "depth": 1, + "gas": 1585890, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 3177, "stack": [ "0x3aa18088", "0x149", @@ -40949,11 +40949,11 @@ ] }, { - "pc": 3178, - "op": "PUSH1", - "gas": 1576031, - "gasCost": 3, "depth": 1, + "gas": 1585889, + "gasCost": 3, + "op": "PUSH1", + "pc": 3178, "stack": [ "0x3aa18088", "0x149", @@ -40965,11 +40965,11 @@ ] }, { - "pc": 3180, - "op": "PUSH1", - "gas": 1576028, - "gasCost": 3, "depth": 1, + "gas": 1585886, + "gasCost": 3, + "op": "PUSH1", + "pc": 3180, "stack": [ "0x3aa18088", "0x149", @@ -40982,11 +40982,11 @@ ] }, { - "pc": 3182, - "op": "DUP3", - "gas": 1576025, - "gasCost": 3, "depth": 1, + "gas": 1585883, + "gasCost": 3, + "op": "DUP3", + "pc": 3182, "stack": [ "0x3aa18088", "0x149", @@ -41000,11 +41000,11 @@ ] }, { - "pc": 3183, - "op": "DUP5", - "gas": 1576022, - "gasCost": 3, "depth": 1, + "gas": 1585880, + "gasCost": 3, + "op": "DUP5", + "pc": 3183, "stack": [ "0x3aa18088", "0x149", @@ -41019,11 +41019,11 @@ ] }, { - "pc": 3184, - "op": "SUB", - "gas": 1576019, - "gasCost": 3, "depth": 1, + "gas": 1585877, + "gasCost": 3, + "op": "SUB", + "pc": 3184, "stack": [ "0x3aa18088", "0x149", @@ -41039,11 +41039,11 @@ ] }, { - "pc": 3185, - "op": "SLT", - "gas": 1576016, - "gasCost": 3, "depth": 1, + "gas": 1585874, + "gasCost": 3, + "op": "SLT", + "pc": 3185, "stack": [ "0x3aa18088", "0x149", @@ -41058,11 +41058,11 @@ ] }, { - "pc": 3186, - "op": "ISZERO", - "gas": 1576013, - "gasCost": 3, "depth": 1, + "gas": 1585871, + "gasCost": 3, + "op": "ISZERO", + "pc": 3186, "stack": [ "0x3aa18088", "0x149", @@ -41076,11 +41076,11 @@ ] }, { - "pc": 3187, - "op": "PUSH3", - "gas": 1576010, - "gasCost": 3, "depth": 1, + "gas": 1585868, + "gasCost": 3, + "op": "PUSH3", + "pc": 3187, "stack": [ "0x3aa18088", "0x149", @@ -41094,11 +41094,11 @@ ] }, { - "pc": 3191, - "op": "JUMPI", - "gas": 1576007, - "gasCost": 10, "depth": 1, + "gas": 1585865, + "gasCost": 10, + "op": "JUMPI", + "pc": 3191, "stack": [ "0x3aa18088", "0x149", @@ -41113,11 +41113,11 @@ ] }, { - "pc": 3202, - "op": "JUMPDEST", - "gas": 1575997, - "gasCost": 1, "depth": 1, + "gas": 1585855, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 3202, "stack": [ "0x3aa18088", "0x149", @@ -41130,11 +41130,11 @@ ] }, { - "pc": 3203, - "op": "PUSH1", - "gas": 1575996, - "gasCost": 3, "depth": 1, + "gas": 1585854, + "gasCost": 3, + "op": "PUSH1", + "pc": 3203, "stack": [ "0x3aa18088", "0x149", @@ -41147,11 +41147,11 @@ ] }, { - "pc": 3205, - "op": "PUSH3", - "gas": 1575993, - "gasCost": 3, "depth": 1, + "gas": 1585851, + "gasCost": 3, + "op": "PUSH3", + "pc": 3205, "stack": [ "0x3aa18088", "0x149", @@ -41165,11 +41165,11 @@ ] }, { - "pc": 3209, - "op": "DUP5", - "gas": 1575990, - "gasCost": 3, "depth": 1, + "gas": 1585848, + "gasCost": 3, + "op": "DUP5", + "pc": 3209, "stack": [ "0x3aa18088", "0x149", @@ -41184,11 +41184,11 @@ ] }, { - "pc": 3210, - "op": "DUP3", - "gas": 1575987, - "gasCost": 3, "depth": 1, + "gas": 1585845, + "gasCost": 3, + "op": "DUP3", + "pc": 3210, "stack": [ "0x3aa18088", "0x149", @@ -41204,11 +41204,11 @@ ] }, { - "pc": 3211, - "op": "DUP6", - "gas": 1575984, - "gasCost": 3, "depth": 1, + "gas": 1585842, + "gasCost": 3, + "op": "DUP6", + "pc": 3211, "stack": [ "0x3aa18088", "0x149", @@ -41225,11 +41225,11 @@ ] }, { - "pc": 3212, - "op": "ADD", - "gas": 1575981, - "gasCost": 3, "depth": 1, + "gas": 1585839, + "gasCost": 3, + "op": "ADD", + "pc": 3212, "stack": [ "0x3aa18088", "0x149", @@ -41247,11 +41247,11 @@ ] }, { - "pc": 3213, - "op": "PUSH3", - "gas": 1575978, - "gasCost": 3, "depth": 1, + "gas": 1585836, + "gasCost": 3, + "op": "PUSH3", + "pc": 3213, "stack": [ "0x3aa18088", "0x149", @@ -41268,11 +41268,11 @@ ] }, { - "pc": 3217, - "op": "JUMP", - "gas": 1575975, - "gasCost": 8, "depth": 1, + "gas": 1585833, + "gasCost": 8, + "op": "JUMP", + "pc": 3217, "stack": [ "0x3aa18088", "0x149", @@ -41290,11 +41290,11 @@ ] }, { - "pc": 3154, - "op": "JUMPDEST", - "gas": 1575967, - "gasCost": 1, "depth": 1, + "gas": 1585825, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 3154, "stack": [ "0x3aa18088", "0x149", @@ -41311,11 +41311,11 @@ ] }, { - "pc": 3155, - "op": "PUSH1", - "gas": 1575966, - "gasCost": 3, "depth": 1, + "gas": 1585824, + "gasCost": 3, + "op": "PUSH1", + "pc": 3155, "stack": [ "0x3aa18088", "0x149", @@ -41332,11 +41332,11 @@ ] }, { - "pc": 3157, - "op": "DUP2", - "gas": 1575963, - "gasCost": 3, "depth": 1, + "gas": 1585821, + "gasCost": 3, + "op": "DUP2", + "pc": 3157, "stack": [ "0x3aa18088", "0x149", @@ -41354,11 +41354,11 @@ ] }, { - "pc": 3158, - "op": "MLOAD", - "gas": 1575960, - "gasCost": 3, "depth": 1, + "gas": 1585818, + "gasCost": 3, + "op": "MLOAD", + "pc": 3158, "stack": [ "0x3aa18088", "0x149", @@ -41377,11 +41377,11 @@ ] }, { - "pc": 3159, - "op": "SWAP1", - "gas": 1575957, - "gasCost": 3, "depth": 1, + "gas": 1585815, + "gasCost": 3, + "op": "SWAP1", + "pc": 3159, "stack": [ "0x3aa18088", "0x149", @@ -41400,11 +41400,11 @@ ] }, { - "pc": 3160, - "op": "POP", - "gas": 1575954, - "gasCost": 2, "depth": 1, + "gas": 1585812, + "gasCost": 2, + "op": "POP", + "pc": 3160, "stack": [ "0x3aa18088", "0x149", @@ -41423,11 +41423,11 @@ ] }, { - "pc": 3161, - "op": "PUSH3", - "gas": 1575952, - "gasCost": 3, "depth": 1, + "gas": 1585810, + "gasCost": 3, + "op": "PUSH3", + "pc": 3161, "stack": [ "0x3aa18088", "0x149", @@ -41445,11 +41445,11 @@ ] }, { - "pc": 3165, - "op": "DUP2", - "gas": 1575949, - "gasCost": 3, "depth": 1, + "gas": 1585807, + "gasCost": 3, + "op": "DUP2", + "pc": 3165, "stack": [ "0x3aa18088", "0x149", @@ -41468,11 +41468,11 @@ ] }, { - "pc": 3166, - "op": "PUSH3", - "gas": 1575946, - "gasCost": 3, "depth": 1, + "gas": 1585804, + "gasCost": 3, + "op": "PUSH3", + "pc": 3166, "stack": [ "0x3aa18088", "0x149", @@ -41492,11 +41492,11 @@ ] }, { - "pc": 3170, - "op": "JUMP", - "gas": 1575943, - "gasCost": 8, "depth": 1, + "gas": 1585801, + "gasCost": 8, + "op": "JUMP", + "pc": 3170, "stack": [ "0x3aa18088", "0x149", @@ -41517,11 +41517,11 @@ ] }, { - "pc": 2521, - "op": "JUMPDEST", - "gas": 1575935, - "gasCost": 1, "depth": 1, + "gas": 1585793, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2521, "stack": [ "0x3aa18088", "0x149", @@ -41541,11 +41541,11 @@ ] }, { - "pc": 2522, - "op": "PUSH3", - "gas": 1575934, - "gasCost": 3, "depth": 1, + "gas": 1585792, + "gasCost": 3, + "op": "PUSH3", + "pc": 2522, "stack": [ "0x3aa18088", "0x149", @@ -41565,11 +41565,11 @@ ] }, { - "pc": 2526, - "op": "DUP2", - "gas": 1575931, - "gasCost": 3, "depth": 1, + "gas": 1585789, + "gasCost": 3, + "op": "DUP2", + "pc": 2526, "stack": [ "0x3aa18088", "0x149", @@ -41590,11 +41590,11 @@ ] }, { - "pc": 2527, - "op": "PUSH3", - "gas": 1575928, - "gasCost": 3, "depth": 1, + "gas": 1585786, + "gasCost": 3, + "op": "PUSH3", + "pc": 2527, "stack": [ "0x3aa18088", "0x149", @@ -41616,11 +41616,11 @@ ] }, { - "pc": 2531, - "op": "JUMP", - "gas": 1575925, - "gasCost": 8, "depth": 1, + "gas": 1585783, + "gasCost": 8, + "op": "JUMP", + "pc": 2531, "stack": [ "0x3aa18088", "0x149", @@ -41643,11 +41643,11 @@ ] }, { - "pc": 2394, - "op": "JUMPDEST", - "gas": 1575917, - "gasCost": 1, "depth": 1, + "gas": 1585775, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2394, "stack": [ "0x3aa18088", "0x149", @@ -41669,11 +41669,11 @@ ] }, { - "pc": 2395, - "op": "PUSH1", - "gas": 1575916, - "gasCost": 3, "depth": 1, + "gas": 1585774, + "gasCost": 3, + "op": "PUSH1", + "pc": 2395, "stack": [ "0x3aa18088", "0x149", @@ -41695,11 +41695,11 @@ ] }, { - "pc": 2397, - "op": "DUP2", - "gas": 1575913, - "gasCost": 3, "depth": 1, + "gas": 1585771, + "gasCost": 3, + "op": "DUP2", + "pc": 2397, "stack": [ "0x3aa18088", "0x149", @@ -41722,11 +41722,11 @@ ] }, { - "pc": 2398, - "op": "SWAP1", - "gas": 1575910, - "gasCost": 3, "depth": 1, + "gas": 1585768, + "gasCost": 3, + "op": "SWAP1", + "pc": 2398, "stack": [ "0x3aa18088", "0x149", @@ -41750,11 +41750,11 @@ ] }, { - "pc": 2399, - "op": "POP", - "gas": 1575907, - "gasCost": 2, "depth": 1, + "gas": 1585765, + "gasCost": 2, + "op": "POP", + "pc": 2399, "stack": [ "0x3aa18088", "0x149", @@ -41778,11 +41778,11 @@ ] }, { - "pc": 2400, - "op": "SWAP2", - "gas": 1575905, - "gasCost": 3, "depth": 1, + "gas": 1585763, + "gasCost": 3, + "op": "SWAP2", + "pc": 2400, "stack": [ "0x3aa18088", "0x149", @@ -41805,11 +41805,11 @@ ] }, { - "pc": 2401, - "op": "SWAP1", - "gas": 1575902, - "gasCost": 3, "depth": 1, + "gas": 1585760, + "gasCost": 3, + "op": "SWAP1", + "pc": 2401, "stack": [ "0x3aa18088", "0x149", @@ -41832,11 +41832,11 @@ ] }, { - "pc": 2402, - "op": "POP", - "gas": 1575899, - "gasCost": 2, "depth": 1, + "gas": 1585757, + "gasCost": 2, + "op": "POP", + "pc": 2402, "stack": [ "0x3aa18088", "0x149", @@ -41859,11 +41859,11 @@ ] }, { - "pc": 2403, - "op": "JUMP", - "gas": 1575897, - "gasCost": 8, "depth": 1, + "gas": 1585755, + "gasCost": 8, + "op": "JUMP", + "pc": 2403, "stack": [ "0x3aa18088", "0x149", @@ -41885,11 +41885,11 @@ ] }, { - "pc": 2532, - "op": "JUMPDEST", - "gas": 1575889, - "gasCost": 1, "depth": 1, + "gas": 1585747, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2532, "stack": [ "0x3aa18088", "0x149", @@ -41910,11 +41910,11 @@ ] }, { - "pc": 2533, - "op": "DUP2", - "gas": 1575888, - "gasCost": 3, "depth": 1, + "gas": 1585746, + "gasCost": 3, + "op": "DUP2", + "pc": 2533, "stack": [ "0x3aa18088", "0x149", @@ -41935,11 +41935,11 @@ ] }, { - "pc": 2534, - "op": "EQ", - "gas": 1575885, - "gasCost": 3, "depth": 1, + "gas": 1585743, + "gasCost": 3, + "op": "EQ", + "pc": 2534, "stack": [ "0x3aa18088", "0x149", @@ -41961,11 +41961,11 @@ ] }, { - "pc": 2535, - "op": "PUSH3", - "gas": 1575882, - "gasCost": 3, "depth": 1, + "gas": 1585740, + "gasCost": 3, + "op": "PUSH3", + "pc": 2535, "stack": [ "0x3aa18088", "0x149", @@ -41986,11 +41986,11 @@ ] }, { - "pc": 2539, - "op": "JUMPI", - "gas": 1575879, - "gasCost": 10, "depth": 1, + "gas": 1585737, + "gasCost": 10, + "op": "JUMPI", + "pc": 2539, "stack": [ "0x3aa18088", "0x149", @@ -42012,11 +42012,11 @@ ] }, { - "pc": 2544, - "op": "JUMPDEST", - "gas": 1575869, - "gasCost": 1, "depth": 1, + "gas": 1585727, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2544, "stack": [ "0x3aa18088", "0x149", @@ -42036,11 +42036,11 @@ ] }, { - "pc": 2545, - "op": "POP", - "gas": 1575868, - "gasCost": 2, "depth": 1, + "gas": 1585726, + "gasCost": 2, + "op": "POP", + "pc": 2545, "stack": [ "0x3aa18088", "0x149", @@ -42060,11 +42060,11 @@ ] }, { - "pc": 2546, - "op": "JUMP", - "gas": 1575866, - "gasCost": 8, "depth": 1, + "gas": 1585724, + "gasCost": 8, + "op": "JUMP", + "pc": 2546, "stack": [ "0x3aa18088", "0x149", @@ -42083,11 +42083,11 @@ ] }, { - "pc": 3171, - "op": "JUMPDEST", - "gas": 1575858, - "gasCost": 1, "depth": 1, + "gas": 1585716, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 3171, "stack": [ "0x3aa18088", "0x149", @@ -42105,11 +42105,11 @@ ] }, { - "pc": 3172, - "op": "SWAP3", - "gas": 1575857, - "gasCost": 3, "depth": 1, + "gas": 1585715, + "gasCost": 3, + "op": "SWAP3", + "pc": 3172, "stack": [ "0x3aa18088", "0x149", @@ -42127,11 +42127,11 @@ ] }, { - "pc": 3173, - "op": "SWAP2", - "gas": 1575854, - "gasCost": 3, "depth": 1, + "gas": 1585712, + "gasCost": 3, + "op": "SWAP2", + "pc": 3173, "stack": [ "0x3aa18088", "0x149", @@ -42149,11 +42149,11 @@ ] }, { - "pc": 3174, - "op": "POP", - "gas": 1575851, - "gasCost": 2, "depth": 1, + "gas": 1585709, + "gasCost": 2, + "op": "POP", + "pc": 3174, "stack": [ "0x3aa18088", "0x149", @@ -42171,11 +42171,11 @@ ] }, { - "pc": 3175, - "op": "POP", - "gas": 1575849, - "gasCost": 2, "depth": 1, + "gas": 1585707, + "gasCost": 2, + "op": "POP", + "pc": 3175, "stack": [ "0x3aa18088", "0x149", @@ -42192,11 +42192,11 @@ ] }, { - "pc": 3176, - "op": "JUMP", - "gas": 1575847, - "gasCost": 8, "depth": 1, + "gas": 1585705, + "gasCost": 8, + "op": "JUMP", + "pc": 3176, "stack": [ "0x3aa18088", "0x149", @@ -42212,11 +42212,11 @@ ] }, { - "pc": 3218, - "op": "JUMPDEST", - "gas": 1575839, - "gasCost": 1, "depth": 1, + "gas": 1585697, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 3218, "stack": [ "0x3aa18088", "0x149", @@ -42231,11 +42231,11 @@ ] }, { - "pc": 3219, - "op": "SWAP2", - "gas": 1575838, - "gasCost": 3, "depth": 1, + "gas": 1585696, + "gasCost": 3, + "op": "SWAP2", + "pc": 3219, "stack": [ "0x3aa18088", "0x149", @@ -42250,11 +42250,11 @@ ] }, { - "pc": 3220, - "op": "POP", - "gas": 1575835, - "gasCost": 2, "depth": 1, + "gas": 1585693, + "gasCost": 2, + "op": "POP", + "pc": 3220, "stack": [ "0x3aa18088", "0x149", @@ -42269,11 +42269,11 @@ ] }, { - "pc": 3221, - "op": "POP", - "gas": 1575833, - "gasCost": 2, "depth": 1, + "gas": 1585691, + "gasCost": 2, + "op": "POP", + "pc": 3221, "stack": [ "0x3aa18088", "0x149", @@ -42287,11 +42287,11 @@ ] }, { - "pc": 3222, - "op": "SWAP3", - "gas": 1575831, - "gasCost": 3, "depth": 1, + "gas": 1585689, + "gasCost": 3, + "op": "SWAP3", + "pc": 3222, "stack": [ "0x3aa18088", "0x149", @@ -42304,11 +42304,11 @@ ] }, { - "pc": 3223, - "op": "SWAP2", - "gas": 1575828, - "gasCost": 3, "depth": 1, + "gas": 1585686, + "gasCost": 3, + "op": "SWAP2", + "pc": 3223, "stack": [ "0x3aa18088", "0x149", @@ -42321,11 +42321,11 @@ ] }, { - "pc": 3224, - "op": "POP", - "gas": 1575825, - "gasCost": 2, "depth": 1, + "gas": 1585683, + "gasCost": 2, + "op": "POP", + "pc": 3224, "stack": [ "0x3aa18088", "0x149", @@ -42338,11 +42338,11 @@ ] }, { - "pc": 3225, - "op": "POP", - "gas": 1575823, - "gasCost": 2, "depth": 1, + "gas": 1585681, + "gasCost": 2, + "op": "POP", + "pc": 3225, "stack": [ "0x3aa18088", "0x149", @@ -42354,11 +42354,11 @@ ] }, { - "pc": 3226, - "op": "JUMP", - "gas": 1575821, - "gasCost": 8, "depth": 1, + "gas": 1585679, + "gasCost": 8, + "op": "JUMP", + "pc": 3226, "stack": [ "0x3aa18088", "0x149", @@ -42369,11 +42369,11 @@ ] }, { - "pc": 1172, - "op": "JUMPDEST", - "gas": 1575813, - "gasCost": 1, "depth": 1, + "gas": 1585671, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 1172, "stack": [ "0x3aa18088", "0x149", @@ -42383,11 +42383,11 @@ ] }, { - "pc": 1173, - "op": "POP", - "gas": 1575812, - "gasCost": 2, "depth": 1, + "gas": 1585670, + "gasCost": 2, + "op": "POP", + "pc": 1173, "stack": [ "0x3aa18088", "0x149", @@ -42397,11 +42397,11 @@ ] }, { - "pc": 1174, - "op": "PUSH1", - "gas": 1575810, - "gasCost": 3, "depth": 1, + "gas": 1585668, + "gasCost": 3, + "op": "PUSH1", + "pc": 1174, "stack": [ "0x3aa18088", "0x149", @@ -42410,11 +42410,11 @@ ] }, { - "pc": 1176, - "op": "SWAP1", - "gas": 1575807, - "gasCost": 3, "depth": 1, + "gas": 1585665, + "gasCost": 3, + "op": "SWAP1", + "pc": 1176, "stack": [ "0x3aa18088", "0x149", @@ -42424,11 +42424,11 @@ ] }, { - "pc": 1177, - "op": "POP", - "gas": 1575804, - "gasCost": 2, "depth": 1, + "gas": 1585662, + "gasCost": 2, + "op": "POP", + "pc": 1177, "stack": [ "0x3aa18088", "0x149", @@ -42438,11 +42438,11 @@ ] }, { - "pc": 1178, - "op": "SWAP2", - "gas": 1575802, - "gasCost": 3, "depth": 1, + "gas": 1585660, + "gasCost": 3, + "op": "SWAP2", + "pc": 1178, "stack": [ "0x3aa18088", "0x149", @@ -42451,11 +42451,11 @@ ] }, { - "pc": 1179, - "op": "SWAP1", - "gas": 1575799, - "gasCost": 3, "depth": 1, + "gas": 1585657, + "gasCost": 3, + "op": "SWAP1", + "pc": 1179, "stack": [ "0x3aa18088", "0x1", @@ -42464,11 +42464,11 @@ ] }, { - "pc": 1180, - "op": "POP", - "gas": 1575796, - "gasCost": 2, "depth": 1, + "gas": 1585654, + "gasCost": 2, + "op": "POP", + "pc": 1180, "stack": [ "0x3aa18088", "0x1", @@ -42477,11 +42477,11 @@ ] }, { - "pc": 1181, - "op": "JUMP", - "gas": 1575794, - "gasCost": 8, "depth": 1, + "gas": 1585652, + "gasCost": 8, + "op": "JUMP", + "pc": 1181, "stack": [ "0x3aa18088", "0x1", @@ -42489,33 +42489,33 @@ ] }, { - "pc": 329, - "op": "JUMPDEST", - "gas": 1575786, - "gasCost": 1, "depth": 1, + "gas": 1585644, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 329, "stack": [ "0x3aa18088", "0x1" ] }, { - "pc": 330, - "op": "PUSH1", - "gas": 1575785, - "gasCost": 3, "depth": 1, + "gas": 1585643, + "gasCost": 3, + "op": "PUSH1", + "pc": 330, "stack": [ "0x3aa18088", "0x1" ] }, { - "pc": 332, - "op": "MLOAD", - "gas": 1575782, - "gasCost": 3, "depth": 1, + "gas": 1585640, + "gasCost": 3, + "op": "MLOAD", + "pc": 332, "stack": [ "0x3aa18088", "0x1", @@ -42523,11 +42523,11 @@ ] }, { - "pc": 333, - "op": "PUSH3", - "gas": 1575779, - "gasCost": 3, "depth": 1, + "gas": 1585637, + "gasCost": 3, + "op": "PUSH3", + "pc": 333, "stack": [ "0x3aa18088", "0x1", @@ -42535,11 +42535,11 @@ ] }, { - "pc": 337, - "op": "SWAP2", - "gas": 1575776, - "gasCost": 3, "depth": 1, + "gas": 1585634, + "gasCost": 3, + "op": "SWAP2", + "pc": 337, "stack": [ "0x3aa18088", "0x1", @@ -42548,11 +42548,11 @@ ] }, { - "pc": 338, - "op": "SWAP1", - "gas": 1575773, - "gasCost": 3, "depth": 1, + "gas": 1585631, + "gasCost": 3, + "op": "SWAP1", + "pc": 338, "stack": [ "0x3aa18088", "0x158", @@ -42561,11 +42561,11 @@ ] }, { - "pc": 339, - "op": "PUSH3", - "gas": 1575770, - "gasCost": 3, "depth": 1, + "gas": 1585628, + "gasCost": 3, + "op": "PUSH3", + "pc": 339, "stack": [ "0x3aa18088", "0x158", @@ -42574,11 +42574,11 @@ ] }, { - "pc": 343, - "op": "JUMP", - "gas": 1575767, - "gasCost": 8, "depth": 1, + "gas": 1585625, + "gasCost": 8, + "op": "JUMP", + "pc": 343, "stack": [ "0x3aa18088", "0x158", @@ -42588,11 +42588,11 @@ ] }, { - "pc": 2421, - "op": "JUMPDEST", - "gas": 1575759, - "gasCost": 1, "depth": 1, + "gas": 1585617, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2421, "stack": [ "0x3aa18088", "0x158", @@ -42601,11 +42601,11 @@ ] }, { - "pc": 2422, - "op": "PUSH1", - "gas": 1575758, - "gasCost": 3, "depth": 1, + "gas": 1585616, + "gasCost": 3, + "op": "PUSH1", + "pc": 2422, "stack": [ "0x3aa18088", "0x158", @@ -42614,11 +42614,11 @@ ] }, { - "pc": 2424, - "op": "PUSH1", - "gas": 1575755, - "gasCost": 3, "depth": 1, + "gas": 1585613, + "gasCost": 3, + "op": "PUSH1", + "pc": 2424, "stack": [ "0x3aa18088", "0x158", @@ -42628,11 +42628,11 @@ ] }, { - "pc": 2426, - "op": "DUP3", - "gas": 1575752, - "gasCost": 3, "depth": 1, + "gas": 1585610, + "gasCost": 3, + "op": "DUP3", + "pc": 2426, "stack": [ "0x3aa18088", "0x158", @@ -42643,11 +42643,11 @@ ] }, { - "pc": 2427, - "op": "ADD", - "gas": 1575749, - "gasCost": 3, "depth": 1, + "gas": 1585607, + "gasCost": 3, + "op": "ADD", + "pc": 2427, "stack": [ "0x3aa18088", "0x158", @@ -42659,11 +42659,11 @@ ] }, { - "pc": 2428, - "op": "SWAP1", - "gas": 1575746, - "gasCost": 3, "depth": 1, + "gas": 1585604, + "gasCost": 3, + "op": "SWAP1", + "pc": 2428, "stack": [ "0x3aa18088", "0x158", @@ -42674,11 +42674,11 @@ ] }, { - "pc": 2429, - "op": "POP", - "gas": 1575743, - "gasCost": 2, "depth": 1, + "gas": 1585601, + "gasCost": 2, + "op": "POP", + "pc": 2429, "stack": [ "0x3aa18088", "0x158", @@ -42689,11 +42689,11 @@ ] }, { - "pc": 2430, - "op": "PUSH3", - "gas": 1575741, - "gasCost": 3, "depth": 1, + "gas": 1585599, + "gasCost": 3, + "op": "PUSH3", + "pc": 2430, "stack": [ "0x3aa18088", "0x158", @@ -42703,11 +42703,11 @@ ] }, { - "pc": 2434, - "op": "PUSH1", - "gas": 1575738, - "gasCost": 3, "depth": 1, + "gas": 1585596, + "gasCost": 3, + "op": "PUSH1", + "pc": 2434, "stack": [ "0x3aa18088", "0x158", @@ -42718,11 +42718,11 @@ ] }, { - "pc": 2436, - "op": "DUP4", - "gas": 1575735, - "gasCost": 3, "depth": 1, + "gas": 1585593, + "gasCost": 3, + "op": "DUP4", + "pc": 2436, "stack": [ "0x3aa18088", "0x158", @@ -42734,11 +42734,11 @@ ] }, { - "pc": 2437, - "op": "ADD", - "gas": 1575732, - "gasCost": 3, "depth": 1, + "gas": 1585590, + "gasCost": 3, + "op": "ADD", + "pc": 2437, "stack": [ "0x3aa18088", "0x158", @@ -42751,11 +42751,11 @@ ] }, { - "pc": 2438, - "op": "DUP5", - "gas": 1575729, - "gasCost": 3, "depth": 1, + "gas": 1585587, + "gasCost": 3, + "op": "DUP5", + "pc": 2438, "stack": [ "0x3aa18088", "0x158", @@ -42767,11 +42767,11 @@ ] }, { - "pc": 2439, - "op": "PUSH3", - "gas": 1575726, - "gasCost": 3, "depth": 1, + "gas": 1585584, + "gasCost": 3, + "op": "PUSH3", + "pc": 2439, "stack": [ "0x3aa18088", "0x158", @@ -42784,11 +42784,11 @@ ] }, { - "pc": 2443, - "op": "JUMP", - "gas": 1575723, - "gasCost": 8, "depth": 1, + "gas": 1585581, + "gasCost": 8, + "op": "JUMP", + "pc": 2443, "stack": [ "0x3aa18088", "0x158", @@ -42802,11 +42802,11 @@ ] }, { - "pc": 2404, - "op": "JUMPDEST", - "gas": 1575715, - "gasCost": 1, "depth": 1, + "gas": 1585573, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2404, "stack": [ "0x3aa18088", "0x158", @@ -42819,11 +42819,11 @@ ] }, { - "pc": 2405, - "op": "PUSH3", - "gas": 1575714, - "gasCost": 3, "depth": 1, + "gas": 1585572, + "gasCost": 3, + "op": "PUSH3", + "pc": 2405, "stack": [ "0x3aa18088", "0x158", @@ -42836,11 +42836,11 @@ ] }, { - "pc": 2409, - "op": "DUP2", - "gas": 1575711, - "gasCost": 3, "depth": 1, + "gas": 1585569, + "gasCost": 3, + "op": "DUP2", + "pc": 2409, "stack": [ "0x3aa18088", "0x158", @@ -42854,11 +42854,11 @@ ] }, { - "pc": 2410, - "op": "PUSH3", - "gas": 1575708, - "gasCost": 3, "depth": 1, + "gas": 1585566, + "gasCost": 3, + "op": "PUSH3", + "pc": 2410, "stack": [ "0x3aa18088", "0x158", @@ -42873,11 +42873,11 @@ ] }, { - "pc": 2414, - "op": "JUMP", - "gas": 1575705, - "gasCost": 8, "depth": 1, + "gas": 1585563, + "gasCost": 8, + "op": "JUMP", + "pc": 2414, "stack": [ "0x3aa18088", "0x158", @@ -42893,11 +42893,11 @@ ] }, { - "pc": 2394, - "op": "JUMPDEST", - "gas": 1575697, - "gasCost": 1, "depth": 1, + "gas": 1585555, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2394, "stack": [ "0x3aa18088", "0x158", @@ -42912,11 +42912,11 @@ ] }, { - "pc": 2395, - "op": "PUSH1", - "gas": 1575696, - "gasCost": 3, "depth": 1, + "gas": 1585554, + "gasCost": 3, + "op": "PUSH1", + "pc": 2395, "stack": [ "0x3aa18088", "0x158", @@ -42931,11 +42931,11 @@ ] }, { - "pc": 2397, - "op": "DUP2", - "gas": 1575693, - "gasCost": 3, "depth": 1, + "gas": 1585551, + "gasCost": 3, + "op": "DUP2", + "pc": 2397, "stack": [ "0x3aa18088", "0x158", @@ -42951,11 +42951,11 @@ ] }, { - "pc": 2398, - "op": "SWAP1", - "gas": 1575690, - "gasCost": 3, "depth": 1, + "gas": 1585548, + "gasCost": 3, + "op": "SWAP1", + "pc": 2398, "stack": [ "0x3aa18088", "0x158", @@ -42972,11 +42972,11 @@ ] }, { - "pc": 2399, - "op": "POP", - "gas": 1575687, - "gasCost": 2, "depth": 1, + "gas": 1585545, + "gasCost": 2, + "op": "POP", + "pc": 2399, "stack": [ "0x3aa18088", "0x158", @@ -42993,11 +42993,11 @@ ] }, { - "pc": 2400, - "op": "SWAP2", - "gas": 1575685, - "gasCost": 3, "depth": 1, + "gas": 1585543, + "gasCost": 3, + "op": "SWAP2", + "pc": 2400, "stack": [ "0x3aa18088", "0x158", @@ -43013,11 +43013,11 @@ ] }, { - "pc": 2401, - "op": "SWAP1", - "gas": 1575682, - "gasCost": 3, "depth": 1, + "gas": 1585540, + "gasCost": 3, + "op": "SWAP1", + "pc": 2401, "stack": [ "0x3aa18088", "0x158", @@ -43033,11 +43033,11 @@ ] }, { - "pc": 2402, - "op": "POP", - "gas": 1575679, - "gasCost": 2, "depth": 1, + "gas": 1585537, + "gasCost": 2, + "op": "POP", + "pc": 2402, "stack": [ "0x3aa18088", "0x158", @@ -43053,11 +43053,11 @@ ] }, { - "pc": 2403, - "op": "JUMP", - "gas": 1575677, - "gasCost": 8, "depth": 1, + "gas": 1585535, + "gasCost": 8, + "op": "JUMP", + "pc": 2403, "stack": [ "0x3aa18088", "0x158", @@ -43072,11 +43072,11 @@ ] }, { - "pc": 2415, - "op": "JUMPDEST", - "gas": 1575669, - "gasCost": 1, "depth": 1, + "gas": 1585527, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2415, "stack": [ "0x3aa18088", "0x158", @@ -43090,11 +43090,11 @@ ] }, { - "pc": 2416, - "op": "DUP3", - "gas": 1575668, - "gasCost": 3, "depth": 1, + "gas": 1585526, + "gasCost": 3, + "op": "DUP3", + "pc": 2416, "stack": [ "0x3aa18088", "0x158", @@ -43108,11 +43108,11 @@ ] }, { - "pc": 2417, - "op": "MSTORE", - "gas": 1575665, - "gasCost": 3, "depth": 1, + "gas": 1585523, + "gasCost": 3, + "op": "MSTORE", + "pc": 2417, "stack": [ "0x3aa18088", "0x158", @@ -43127,11 +43127,11 @@ ] }, { - "pc": 2418, - "op": "POP", - "gas": 1575662, - "gasCost": 2, "depth": 1, + "gas": 1585520, + "gasCost": 2, + "op": "POP", + "pc": 2418, "stack": [ "0x3aa18088", "0x158", @@ -43144,11 +43144,11 @@ ] }, { - "pc": 2419, - "op": "POP", - "gas": 1575660, - "gasCost": 2, "depth": 1, + "gas": 1585518, + "gasCost": 2, + "op": "POP", + "pc": 2419, "stack": [ "0x3aa18088", "0x158", @@ -43160,11 +43160,11 @@ ] }, { - "pc": 2420, - "op": "JUMP", - "gas": 1575658, - "gasCost": 8, "depth": 1, + "gas": 1585516, + "gasCost": 8, + "op": "JUMP", + "pc": 2420, "stack": [ "0x3aa18088", "0x158", @@ -43175,11 +43175,11 @@ ] }, { - "pc": 2444, - "op": "JUMPDEST", - "gas": 1575650, - "gasCost": 1, "depth": 1, + "gas": 1585508, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2444, "stack": [ "0x3aa18088", "0x158", @@ -43189,11 +43189,11 @@ ] }, { - "pc": 2445, - "op": "SWAP3", - "gas": 1575649, - "gasCost": 3, "depth": 1, + "gas": 1585507, + "gasCost": 3, + "op": "SWAP3", + "pc": 2445, "stack": [ "0x3aa18088", "0x158", @@ -43203,11 +43203,11 @@ ] }, { - "pc": 2446, - "op": "SWAP2", - "gas": 1575646, - "gasCost": 3, "depth": 1, + "gas": 1585504, + "gasCost": 3, + "op": "SWAP2", + "pc": 2446, "stack": [ "0x3aa18088", "0x100", @@ -43217,11 +43217,11 @@ ] }, { - "pc": 2447, - "op": "POP", - "gas": 1575643, - "gasCost": 2, "depth": 1, + "gas": 1585501, + "gasCost": 2, + "op": "POP", + "pc": 2447, "stack": [ "0x3aa18088", "0x100", @@ -43231,11 +43231,11 @@ ] }, { - "pc": 2448, - "op": "POP", - "gas": 1575641, - "gasCost": 2, "depth": 1, + "gas": 1585499, + "gasCost": 2, + "op": "POP", + "pc": 2448, "stack": [ "0x3aa18088", "0x100", @@ -43244,11 +43244,11 @@ ] }, { - "pc": 2449, - "op": "JUMP", - "gas": 1575639, - "gasCost": 8, "depth": 1, + "gas": 1585497, + "gasCost": 8, + "op": "JUMP", + "pc": 2449, "stack": [ "0x3aa18088", "0x100", @@ -43256,33 +43256,33 @@ ] }, { - "pc": 344, - "op": "JUMPDEST", - "gas": 1575631, - "gasCost": 1, "depth": 1, + "gas": 1585489, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 344, "stack": [ "0x3aa18088", "0x100" ] }, { - "pc": 345, - "op": "PUSH1", - "gas": 1575630, - "gasCost": 3, "depth": 1, + "gas": 1585488, + "gasCost": 3, + "op": "PUSH1", + "pc": 345, "stack": [ "0x3aa18088", "0x100" ] }, { - "pc": 347, - "op": "MLOAD", - "gas": 1575627, - "gasCost": 3, "depth": 1, + "gas": 1585485, + "gasCost": 3, + "op": "MLOAD", + "pc": 347, "stack": [ "0x3aa18088", "0x100", @@ -43290,11 +43290,11 @@ ] }, { - "pc": 348, - "op": "DUP1", - "gas": 1575624, - "gasCost": 3, "depth": 1, + "gas": 1585482, + "gasCost": 3, + "op": "DUP1", + "pc": 348, "stack": [ "0x3aa18088", "0x100", @@ -43302,11 +43302,11 @@ ] }, { - "pc": 349, - "op": "SWAP2", - "gas": 1575621, - "gasCost": 3, "depth": 1, + "gas": 1585479, + "gasCost": 3, + "op": "SWAP2", + "pc": 349, "stack": [ "0x3aa18088", "0x100", @@ -43315,11 +43315,11 @@ ] }, { - "pc": 350, - "op": "SUB", - "gas": 1575618, - "gasCost": 3, "depth": 1, + "gas": 1585476, + "gasCost": 3, + "op": "SUB", + "pc": 350, "stack": [ "0x3aa18088", "0xe0", @@ -43328,11 +43328,11 @@ ] }, { - "pc": 351, - "op": "SWAP1", - "gas": 1575615, - "gasCost": 3, "depth": 1, + "gas": 1585473, + "gasCost": 3, + "op": "SWAP1", + "pc": 351, "stack": [ "0x3aa18088", "0xe0", @@ -43340,11 +43340,11 @@ ] }, { - "pc": 352, - "op": "RETURN", - "gas": 1575612, - "gasCost": 0, "depth": 1, + "gas": 1585470, + "gasCost": 0, + "op": "RETURN", + "pc": 352, "stack": [ "0x3aa18088", "0x20", diff --git a/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint2.prestateDiffTracer.json b/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint2.prestateDiffTracer.json index a1fb7f606..18c76fb6f 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint2.prestateDiffTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint2.prestateDiffTracer.json @@ -1,42 +1,41 @@ { "post": { "0x0000000000000000000000000000000000000000": { - "balance": "0x45bc45" + "balance": "0xbfad67940" }, - "Tracer.address": { - "nonce": 2, + "0x5b659fd8bdc52879d0c3697038537da40832b759": { + "code": "0x608060405234801561001057600080fd5b50600436106100625760003560e01c80631c717069146100675780631c93908c1461008557806392954362146100b5578063a0712d68146100bf578063b69ef8a8146100ef578063c9353cb51461010d575b600080fd5b61006f610129565b60405161007c91906102ed565b60405180910390f35b61009f600480360381019061009a9190610343565b610178565b6040516100ac919061037f565b60405180910390f35b6100bd6101ea565b005b6100d960048036038101906100d49190610343565b610225565b6040516100e6919061037f565b60405180910390f35b6100f76102b5565b604051610104919061037f565b60405180910390f35b610127600480360381019061012291906103f8565b6102bb565b005b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516101c09190610482565b60405180910390a281600260008282546101da91906104df565b9250508190555060029050919050565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161021c9061055f565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405161026d91906105cb565b60405180910390a28160008082825461028691906104df565b925050819055506102a260018361029d91906104df565b610178565b506102ab610129565b5060019050919050565b60005481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b6000819050919050565b6102e7816102d4565b82525050565b600060208201905061030260008301846102de565b92915050565b600080fd5b6000819050919050565b6103208161030d565b811461032b57600080fd5b50565b60008135905061033d81610317565b92915050565b60006020828403121561035957610358610308565b5b60006103678482850161032e565b91505092915050565b6103798161030d565b82525050565b60006020820190506103946000830184610370565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006103c58261039a565b9050919050565b6103d5816103ba565b81146103e057600080fd5b50565b6000813590506103f2816103cc565b92915050565b60006020828403121561040e5761040d610308565b5b600061041c848285016103e3565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600061046c600e83610425565b915061047782610436565b602082019050919050565b60006040820190506104976000830184610370565b81810360208301526104a88161045f565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006104ea8261030d565b91506104f58361030d565b925082820190508082111561050d5761050c6104b0565b5b92915050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b6000610549601783610425565b915061055482610513565b602082019050919050565b600060208201905081810360008301526105788161053c565b9050919050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006105b5600583610425565b91506105c08261057f565b602082019050919050565b60006040820190506105e06000830184610370565b81810360208301526105f1816105a8565b90509291505056fea26469706673582212202a0a0fa5842e91cc0c1e5b645f7286aad7193a83c3b2f8c8e4c1b35008af0d6f64736f6c63430008140033", "storage": { - "0x0000000000000000000000000000000000000000000000000000000000000000": "0x000000000000000000000000ccbd01c355155c2b4e79d1bdbb43dfe43194a585", - "0x0000000000000000000000000000000000000000000000000000000000000001": "0x00000000000000000000000000000000000000000000000000000000000003e8", - "0x0000000000000000000000000000000000000000000000000000000000000003": "0x00000000000000000000000000000000000000000000000000000000000003e9" + "0x0000000000000000000000000000000000000000000000000000000000000000": "0x0000000000000000000000000000001d6329f1c35ca4bfabb9f56100000003e8", + "0x0000000000000000000000000000000000000000000000000000000000000001": "0x0000000000000000000000000000000000000000000000000000000000000001", + "0x0000000000000000000000000000000000000000000000000000000000000002": "0x0000000000000000000000000000001d6329f1c35ca4bfabb9f56100000003ea" } }, "OWNER.address": { - "balance": "0x10f075e97d88a9daf8e", - "nonce": 11 + "balance": "0xc9f2c9ccfd8d27db9679386c0", + "nonce": 362 }, - "0xccbd01c355155c2b4e79d1bdbb43dfe43194a585": { - "code": "0x608060405234801561001057600080fd5b50600436106100625760003560e01c80631c717069146100675780631c93908c1461008557806392954362146100b5578063a0712d68146100bf578063b69ef8a8146100ef578063c9353cb51461010d575b600080fd5b61006f610129565b60405161007c91906102ed565b60405180910390f35b61009f600480360381019061009a9190610343565b610178565b6040516100ac919061037f565b60405180910390f35b6100bd6101ea565b005b6100d960048036038101906100d49190610343565b610225565b6040516100e6919061037f565b60405180910390f35b6100f76102b5565b604051610104919061037f565b60405180910390f35b610127600480360381019061012291906103f8565b6102bb565b005b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516101c09190610482565b60405180910390a281600260008282546101da91906104df565b9250508190555060029050919050565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161021c9061055f565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405161026d91906105cb565b60405180910390a28160008082825461028691906104df565b925050819055506102a260018361029d91906104df565b610178565b506102ab610129565b5060019050919050565b60005481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b6000819050919050565b6102e7816102d4565b82525050565b600060208201905061030260008301846102de565b92915050565b600080fd5b6000819050919050565b6103208161030d565b811461032b57600080fd5b50565b60008135905061033d81610317565b92915050565b60006020828403121561035957610358610308565b5b60006103678482850161032e565b91505092915050565b6103798161030d565b82525050565b60006020820190506103946000830184610370565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006103c58261039a565b9050919050565b6103d5816103ba565b81146103e057600080fd5b50565b6000813590506103f2816103cc565b92915050565b60006020828403121561040e5761040d610308565b5b600061041c848285016103e3565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600061046c600e83610425565b915061047782610436565b602082019050919050565b60006040820190506104976000830184610370565b81810360208301526104a88161045f565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006104ea8261030d565b91506104f58361030d565b925082820190508082111561050d5761050c6104b0565b5b92915050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b6000610549601783610425565b915061055482610513565b602082019050919050565b600060208201905081810360008301526105788161053c565b9050919050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006105b5600583610425565b91506105c08261057f565b602082019050919050565b60006040820190506105e06000830184610370565b81810360208301526105f1816105a8565b90509291505056fea26469706673582212202a0a0fa5842e91cc0c1e5b645f7286aad7193a83c3b2f8c8e4c1b35008af0d6f64736f6c63430008140033", - "nonce": 1, + "Tracer.address": { + "nonce": 2, "storage": { - "0x0000000000000000000000000000000000000000000000000000000000000000": "0x0000000000000000000000000000001d6329f1c35ca4bfabb9f56100000003e8", - "0x0000000000000000000000000000000000000000000000000000000000000001": "0x0000000000000000000000000000000000000000000000000000000000000001", - "0x0000000000000000000000000000000000000000000000000000000000000002": "0x0000000000000000000000000000001d6329f1c35ca4bfabb9f56100000003ea" + "0x0000000000000000000000000000000000000000000000000000000000000000": "0x0000000000000000000000005b659fd8bdc52879d0c3697038537da40832b759", + "0x0000000000000000000000000000000000000000000000000000000000000001": "0x00000000000000000000000000000000000000000000000000000000000003e8", + "0x0000000000000000000000000000000000000000000000000000000000000003": "0x00000000000000000000000000000000000000000000000000000000000003e9" } } }, "pre": { "0x0000000000000000000000000000000000000000": { - "balance": "0x3dbbe1" + "balance": "0x0" + }, + "OWNER.address": { + "balance": "0xc9f2c9ccfd8d27dc5626a0000", + "nonce": 361 }, "Tracer.address": { "balance": "0x0", "code": "0x60806040523480156200001157600080fd5b5060043610620000ac5760003560e01c80638bfe44ff116200006f5780638bfe44ff14620001975780639295436214620001a3578063a0712d6814620001af578063b69ef8a814620001e5578063c9353cb5146200020757620000ac565b806312065fe014620000b15780631c71706914620000d35780631c93908c14620000f55780633aa18088146200012b5780637f29c3941462000161575b600080fd5b620000bb62000227565b604051620000ca919062000975565b60405180910390f35b620000dd62000231565b604051620000ec9190620009ad565b60405180910390f35b6200011360048036038101906200010d919062000a0a565b62000280565b60405162000122919062000975565b60405180910390f35b62000149600480360381019062000143919062000a0a565b620002f6565b60405162000158919062000975565b60405180910390f35b6200017f600480360381019062000179919062000a0a565b6200049e565b6040516200018e919062000975565b60405180910390f35b620001a162000771565b005b620001ad620007b3565b005b620001cd6004803603810190620001c7919062000a0a565b620007f0565b604051620001dc919062000975565b60405180910390f35b620001ef6200092d565b604051620001fe919062000975565b60405180910390f35b6200022560048036038101906200021f919062000aa1565b62000933565b005b6000600154905090565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620002ca919062000b34565b60405180910390a28160036000828254620002e6919062000b95565b9250508190555060029050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405162000340919062000c20565b60405180910390a260405162000356906200094c565b604051809103906000f08015801562000373573d6000803e3d6000fd5b506000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508160016000828254620003c7919062000b95565b92505081905550620003e7600183620003e1919062000b95565b62000280565b50620003f262000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b81526004016200044e919062000975565b6020604051808303816000875af11580156200046e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000494919062000c69565b5060019050919050565b60003073ffffffffffffffffffffffffffffffffffffffff1663929543626040518163ffffffff1660e01b815260040160006040518083038186803b158015620004e757600080fd5b505afa925050508015620004f9575060015b620005e1576200050862000ca8565b806308c379a0036200056c57506200051f62000d43565b806200052c57506200056e565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a816040516200055d919062000e56565b60405180910390a150620005db565b505b3d80600081146200059c576040519150601f19603f3d011682016040523d82523d6000602084013e620005a1565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620005d19062000ef0565b60405180910390a1505b620005e2565b5b3073ffffffffffffffffffffffffffffffffffffffff16638bfe44ff6040518163ffffffff1660e01b815260040160006040518083038186803b1580156200062957600080fd5b505afa9250505080156200063b575060015b62000723576200064a62000ca8565b806308c379a003620006ae57506200066162000d43565b806200066e5750620006b0565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a816040516200069f919062000e56565b60405180910390a1506200071d565b505b3d8060008114620006de576040519150601f19603f3d011682016040523d82523d6000602084013e620006e3565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620007139062000ef0565b60405180910390a1505b62000724565b5b600062000768576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200075f9062000f62565b60405180910390fd5b60019050919050565b6001806040517fcf479181000000000000000000000000000000000000000000000000000000008152600401620007aa92919062000fd1565b60405180910390fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007e7906200104e565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200083a919062000c20565b60405180910390a2816001600082825462000856919062000b95565b925050819055506200087660018362000870919062000b95565b62000280565b506200088162000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b8152600401620008dd919062000975565b6020604051808303816000875af1158015620008fd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000923919062000c69565b5060019050919050565b60015481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b610a9f806200107183390190565b6000819050919050565b6200096f816200095a565b82525050565b60006020820190506200098c600083018462000964565b92915050565b6000819050919050565b620009a78162000992565b82525050565b6000602082019050620009c460008301846200099c565b92915050565b6000604051905090565b600080fd5b620009e4816200095a565b8114620009f057600080fd5b50565b60008135905062000a0481620009d9565b92915050565b60006020828403121562000a235762000a22620009d4565b5b600062000a3384828501620009f3565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000a698262000a3c565b9050919050565b62000a7b8162000a5c565b811462000a8757600080fd5b50565b60008135905062000a9b8162000a70565b92915050565b60006020828403121562000aba5762000ab9620009d4565b5b600062000aca8482850162000a8a565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000b1c600e8362000ad3565b915062000b298262000ae4565b602082019050919050565b600060408201905062000b4b600083018462000964565b818103602083015262000b5e8162000b0d565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000ba2826200095a565b915062000baf836200095a565b925082820190508082111562000bca5762000bc962000b66565b5b92915050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b600062000c0860058362000ad3565b915062000c158262000bd0565b602082019050919050565b600060408201905062000c37600083018462000964565b818103602083015262000c4a8162000bf9565b905092915050565b60008151905062000c6381620009d9565b92915050565b60006020828403121562000c825762000c81620009d4565b5b600062000c928482850162000c52565b91505092915050565b60008160e01c9050919050565b600060033d111562000cca5760046000803e62000cc760005162000c9b565b90505b90565b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000d188262000ccd565b810181811067ffffffffffffffff8211171562000d3a5762000d3962000cde565b5b80604052505050565b600060443d1062000ddb5762000d58620009ca565b60043d036004823e80513d602482011167ffffffffffffffff8211171562000d8257505062000ddb565b808201805167ffffffffffffffff81111562000da2575050505062000ddb565b80602083010160043d03850181111562000dc157505050505062000ddb565b62000dd28260200185018662000d0d565b82955050505050505b90565b600081519050919050565b60005b8381101562000e0957808201518184015260208101905062000dec565b60008484015250505050565b600062000e228262000dde565b62000e2e818562000ad3565b935062000e4081856020860162000de9565b62000e4b8162000ccd565b840191505092915050565b6000602082019050818103600083015262000e72818462000e15565b905092915050565b7f45787465726e616c2063616c6c206661696c656420776974686f757420616e2060008201527f6572726f72206d65737361676500000000000000000000000000000000000000602082015250565b600062000ed8602d8362000ad3565b915062000ee58262000e7a565b604082019050919050565b6000602082019050818103600083015262000f0b8162000ec9565b9050919050565b7f494e53554646494349454e542042414c414e4345000000000000000000000000600082015250565b600062000f4a60148362000ad3565b915062000f578262000f12565b602082019050919050565b6000602082019050818103600083015262000f7d8162000f3b565b9050919050565b6000819050919050565b6000819050919050565b600062000fb962000fb362000fad8462000f84565b62000f8e565b6200095a565b9050919050565b62000fcb8162000f98565b82525050565b600060408201905062000fe8600083018562000fc0565b62000ff7602083018462000fc0565b9392505050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b60006200103660178362000ad3565b9150620010438262000ffe565b602082019050919050565b60006020820190508181036000830152620010698162001027565b905091905056fe60806040526000600160006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b50600160009054906101000a900460ff161562000080576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200007790620002b5565b60405180910390fd5b60018060006101000a81548160ff021916908315150217905550620000bc701d6329f1c35ca4bfabb9f5610000000000620000c360201b60201c565b5062000460565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200010d919062000342565b60405180910390a281600080828254620001289190620003a3565b925050819055506200014e600183620001429190620003a3565b6200016960201b60201c565b506200015f620001df60201b60201c565b5060019050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620001b391906200042e565b60405180910390a28160026000828254620001cf9190620003a3565b9250508190555060029050919050565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b600082825260208201905092915050565b7f436f6e747261637420696e7374616e63652068617320616c726561647920626560008201527f656e20696e697469616c697a6564000000000000000000000000000000000000602082015250565b60006200029d602e836200022e565b9150620002aa826200023f565b604082019050919050565b60006020820190508181036000830152620002d0816200028e565b9050919050565b6000819050919050565b620002ec81620002d7565b82525050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006200032a6005836200022e565b91506200033782620002f2565b602082019050919050565b6000604082019050620003596000830184620002e1565b81810360208301526200036c816200031b565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620003b082620002d7565b9150620003bd83620002d7565b9250828201905080821115620003d857620003d762000374565b5b92915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000416600e836200022e565b91506200042382620003de565b602082019050919050565b6000604082019050620004456000830184620002e1565b8181036020830152620004588162000407565b905092915050565b61062f80620004706000396000f3fe608060405234801561001057600080fd5b50600436106100625760003560e01c80631c717069146100675780631c93908c1461008557806392954362146100b5578063a0712d68146100bf578063b69ef8a8146100ef578063c9353cb51461010d575b600080fd5b61006f610129565b60405161007c91906102ed565b60405180910390f35b61009f600480360381019061009a9190610343565b610178565b6040516100ac919061037f565b60405180910390f35b6100bd6101ea565b005b6100d960048036038101906100d49190610343565b610225565b6040516100e6919061037f565b60405180910390f35b6100f76102b5565b604051610104919061037f565b60405180910390f35b610127600480360381019061012291906103f8565b6102bb565b005b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516101c09190610482565b60405180910390a281600260008282546101da91906104df565b9250508190555060029050919050565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161021c9061055f565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405161026d91906105cb565b60405180910390a28160008082825461028691906104df565b925050819055506102a260018361029d91906104df565b610178565b506102ab610129565b5060019050919050565b60005481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b6000819050919050565b6102e7816102d4565b82525050565b600060208201905061030260008301846102de565b92915050565b600080fd5b6000819050919050565b6103208161030d565b811461032b57600080fd5b50565b60008135905061033d81610317565b92915050565b60006020828403121561035957610358610308565b5b60006103678482850161032e565b91505092915050565b6103798161030d565b82525050565b60006020820190506103946000830184610370565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006103c58261039a565b9050919050565b6103d5816103ba565b81146103e057600080fd5b50565b6000813590506103f2816103cc565b92915050565b60006020828403121561040e5761040d610308565b5b600061041c848285016103e3565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600061046c600e83610425565b915061047782610436565b602082019050919050565b60006040820190506104976000830184610370565b81810360208301526104a88161045f565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006104ea8261030d565b91506104f58361030d565b925082820190508082111561050d5761050c6104b0565b5b92915050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b6000610549601783610425565b915061055482610513565b602082019050919050565b600060208201905081810360008301526105788161053c565b9050919050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006105b5600583610425565b91506105c08261057f565b602082019050919050565b60006040820190506105e06000830184610370565b81810360208301526105f1816105a8565b90509291505056fea26469706673582212202a0a0fa5842e91cc0c1e5b645f7286aad7193a83c3b2f8c8e4c1b35008af0d6f64736f6c63430008140033a264697066735822122036f326b9881542090544d5d6e9f2ff18b13ec09bd4994f14891a84e97f4d6db964736f6c63430008140033", "nonce": 1 - }, - "OWNER.address": { - "balance": "0x10f075ed5f51d7cf45e", - "nonce": 10 } } } \ No newline at end of file diff --git a/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint2.prestateTracer.json b/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint2.prestateTracer.json index a35cf9ae8..2a8d067d0 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint2.prestateTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint2.prestateTracer.json @@ -1,6 +1,10 @@ { "0x0000000000000000000000000000000000000000": { - "balance": "0x3dbbe1" + "balance": "0x0" + }, + "OWNER.address": { + "balance": "0xc9f2c9ccfd8d27dc5626a0000", + "nonce": 361 }, "Tracer.address": { "balance": "0x0", @@ -11,9 +15,5 @@ "0x0000000000000000000000000000000000000000000000000000000000000001": "0x0000000000000000000000000000000000000000000000000000000000000000", "0x0000000000000000000000000000000000000000000000000000000000000003": "0x0000000000000000000000000000000000000000000000000000000000000000" } - }, - "OWNER.address": { - "balance": "0x10f075ed5f51d7cf45e", - "nonce": 10 } } \ No newline at end of file diff --git a/test/historicstate/hardhat/scripts/geth_traces/Tracer.readableRevert.callTracer.json b/test/historicstate/hardhat/scripts/geth_traces/Tracer.readableRevert.callTracer.json index ee002e2a8..703f1e4b9 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/Tracer.readableRevert.callTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/Tracer.readableRevert.callTracer.json @@ -1,35 +1,35 @@ { - "from": "OWNER.address", - "gas": "0x200b20", - "gasUsed": "0x70db", - "to": "Tracer.address", - "input": "0x7f29c39400000000000000000000000000000000000000000000000000000000000003e8", - "output": "0x08c379a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000014494e53554646494349454e542042414c414e4345000000000000000000000000", - "error": "execution reverted", - "revertReason": "INSUFFICIENT BALANCE", "calls": [ { + "error": "execution reverted", "from": "Tracer.address", - "gas": "0x1f3655", - "gasUsed": "0x1c8", - "to": "Tracer.address", + "gas": "0x1f3084", + "gasUsed": "0x484", "input": "0x92954362", "output": "0x08c379a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000017546869732066756e6374696f6e20726576657274656421000000000000000000", - "error": "execution reverted", "revertReason": "This function reverted!", + "to": "Tracer.address", "type": "STATICCALL" }, { + "error": "execution reverted", "from": "Tracer.address", - "gas": "0x1f28ec", - "gasUsed": "0x2b8", - "to": "Tracer.address", + "gas": "0x1f1e7f", + "gasUsed": "0x574", "input": "0x8bfe44ff", "output": "0xcf47918100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001", - "error": "execution reverted", + "to": "Tracer.address", "type": "STATICCALL" } ], - "value": "0x0", - "type": "CALL" + "error": "execution reverted", + "from": "OWNER.address", + "gas": "0x1fb708", + "gasUsed": "0x7b73", + "input": "0x7f29c39400000000000000000000000000000000000000000000000000000000000003e8", + "output": "0x08c379a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000014494e53554646494349454e542042414c414e4345000000000000000000000000", + "revertReason": "INSUFFICIENT BALANCE", + "to": "Tracer.address", + "type": "CALL", + "value": "0x0" } \ No newline at end of file diff --git a/test/historicstate/hardhat/scripts/geth_traces/Tracer.readableRevert.defaultTracer.json b/test/historicstate/hardhat/scripts/geth_traces/Tracer.readableRevert.defaultTracer.json index 4f306a68d..86c44ea42 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/Tracer.readableRevert.defaultTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/Tracer.readableRevert.defaultTracer.json @@ -1,83 +1,83 @@ { - "gas": 28891, "failed": true, - "returnValue": "", + "gas": 31603, + "returnValue": "08c379a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000014494e53554646494349454e542042414c414e4345000000000000000000000000", "structLogs": [ { - "pc": 0, - "op": "PUSH1", - "gas": 2078784, - "gasCost": 3, "depth": 1, + "gas": 2078472, + "gasCost": 3, + "op": "PUSH1", + "pc": 0, "stack": [] }, { - "pc": 2, - "op": "PUSH1", - "gas": 2078781, - "gasCost": 3, "depth": 1, + "gas": 2078469, + "gasCost": 3, + "op": "PUSH1", + "pc": 2, "stack": [ "0x80" ] }, { - "pc": 4, - "op": "MSTORE", - "gas": 2078778, - "gasCost": 12, "depth": 1, + "gas": 2078466, + "gasCost": 12, + "op": "MSTORE", + "pc": 4, "stack": [ "0x80", "0x40" ] }, { - "pc": 5, - "op": "CALLVALUE", - "gas": 2078766, - "gasCost": 2, "depth": 1, + "gas": 2078454, + "gasCost": 2, + "op": "CALLVALUE", + "pc": 5, "stack": [] }, { - "pc": 6, - "op": "DUP1", - "gas": 2078764, - "gasCost": 3, "depth": 1, + "gas": 2078452, + "gasCost": 3, + "op": "DUP1", + "pc": 6, "stack": [ "0x0" ] }, { - "pc": 7, - "op": "ISZERO", - "gas": 2078761, - "gasCost": 3, "depth": 1, + "gas": 2078449, + "gasCost": 3, + "op": "ISZERO", + "pc": 7, "stack": [ "0x0", "0x0" ] }, { - "pc": 8, - "op": "PUSH3", - "gas": 2078758, - "gasCost": 3, "depth": 1, + "gas": 2078446, + "gasCost": 3, + "op": "PUSH3", + "pc": 8, "stack": [ "0x0", "0x1" ] }, { - "pc": 12, - "op": "JUMPI", - "gas": 2078755, - "gasCost": 10, "depth": 1, + "gas": 2078443, + "gasCost": 10, + "op": "JUMPI", + "pc": 12, "stack": [ "0x0", "0x1", @@ -85,141 +85,141 @@ ] }, { - "pc": 17, - "op": "JUMPDEST", - "gas": 2078745, - "gasCost": 1, "depth": 1, + "gas": 2078433, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 17, "stack": [ "0x0" ] }, { - "pc": 18, - "op": "POP", - "gas": 2078744, - "gasCost": 2, "depth": 1, + "gas": 2078432, + "gasCost": 2, + "op": "POP", + "pc": 18, "stack": [ "0x0" ] }, { - "pc": 19, - "op": "PUSH1", - "gas": 2078742, - "gasCost": 3, "depth": 1, + "gas": 2078430, + "gasCost": 3, + "op": "PUSH1", + "pc": 19, "stack": [] }, { - "pc": 21, - "op": "CALLDATASIZE", - "gas": 2078739, - "gasCost": 2, "depth": 1, + "gas": 2078427, + "gasCost": 2, + "op": "CALLDATASIZE", + "pc": 21, "stack": [ "0x4" ] }, { - "pc": 22, - "op": "LT", - "gas": 2078737, - "gasCost": 3, "depth": 1, + "gas": 2078425, + "gasCost": 3, + "op": "LT", + "pc": 22, "stack": [ "0x4", "0x24" ] }, { - "pc": 23, - "op": "PUSH3", - "gas": 2078734, - "gasCost": 3, "depth": 1, + "gas": 2078422, + "gasCost": 3, + "op": "PUSH3", + "pc": 23, "stack": [ "0x0" ] }, { - "pc": 27, - "op": "JUMPI", - "gas": 2078731, - "gasCost": 10, "depth": 1, + "gas": 2078419, + "gasCost": 10, + "op": "JUMPI", + "pc": 27, "stack": [ "0x0", "0xac" ] }, { - "pc": 28, - "op": "PUSH1", - "gas": 2078721, - "gasCost": 3, "depth": 1, + "gas": 2078409, + "gasCost": 3, + "op": "PUSH1", + "pc": 28, "stack": [] }, { - "pc": 30, - "op": "CALLDATALOAD", - "gas": 2078718, - "gasCost": 3, "depth": 1, + "gas": 2078406, + "gasCost": 3, + "op": "CALLDATALOAD", + "pc": 30, "stack": [ "0x0" ] }, { - "pc": 31, - "op": "PUSH1", - "gas": 2078715, - "gasCost": 3, "depth": 1, + "gas": 2078403, + "gasCost": 3, + "op": "PUSH1", + "pc": 31, "stack": [ "0x7f29c39400000000000000000000000000000000000000000000000000000000" ] }, { - "pc": 33, - "op": "SHR", - "gas": 2078712, - "gasCost": 3, "depth": 1, + "gas": 2078400, + "gasCost": 3, + "op": "SHR", + "pc": 33, "stack": [ "0x7f29c39400000000000000000000000000000000000000000000000000000000", "0xe0" ] }, { - "pc": 34, - "op": "DUP1", - "gas": 2078709, - "gasCost": 3, "depth": 1, + "gas": 2078397, + "gasCost": 3, + "op": "DUP1", + "pc": 34, "stack": [ "0x7f29c394" ] }, { - "pc": 35, - "op": "PUSH4", - "gas": 2078706, - "gasCost": 3, "depth": 1, + "gas": 2078394, + "gasCost": 3, + "op": "PUSH4", + "pc": 35, "stack": [ "0x7f29c394", "0x7f29c394" ] }, { - "pc": 40, - "op": "GT", - "gas": 2078703, - "gasCost": 3, "depth": 1, + "gas": 2078391, + "gasCost": 3, + "op": "GT", + "pc": 40, "stack": [ "0x7f29c394", "0x7f29c394", @@ -227,22 +227,22 @@ ] }, { - "pc": 41, - "op": "PUSH3", - "gas": 2078700, - "gasCost": 3, "depth": 1, + "gas": 2078388, + "gasCost": 3, + "op": "PUSH3", + "pc": 41, "stack": [ "0x7f29c394", "0x1" ] }, { - "pc": 45, - "op": "JUMPI", - "gas": 2078697, - "gasCost": 10, "depth": 1, + "gas": 2078385, + "gasCost": 10, + "op": "JUMPI", + "pc": 45, "stack": [ "0x7f29c394", "0x1", @@ -250,42 +250,42 @@ ] }, { - "pc": 111, - "op": "JUMPDEST", - "gas": 2078687, - "gasCost": 1, "depth": 1, + "gas": 2078375, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 111, "stack": [ "0x7f29c394" ] }, { - "pc": 112, - "op": "DUP1", - "gas": 2078686, - "gasCost": 3, "depth": 1, + "gas": 2078374, + "gasCost": 3, + "op": "DUP1", + "pc": 112, "stack": [ "0x7f29c394" ] }, { - "pc": 113, - "op": "PUSH4", - "gas": 2078683, - "gasCost": 3, "depth": 1, + "gas": 2078371, + "gasCost": 3, + "op": "PUSH4", + "pc": 113, "stack": [ "0x7f29c394", "0x7f29c394" ] }, { - "pc": 118, - "op": "EQ", - "gas": 2078680, - "gasCost": 3, "depth": 1, + "gas": 2078368, + "gasCost": 3, + "op": "EQ", + "pc": 118, "stack": [ "0x7f29c394", "0x7f29c394", @@ -293,22 +293,22 @@ ] }, { - "pc": 119, - "op": "PUSH3", - "gas": 2078677, - "gasCost": 3, "depth": 1, + "gas": 2078365, + "gasCost": 3, + "op": "PUSH3", + "pc": 119, "stack": [ "0x7f29c394", "0x0" ] }, { - "pc": 123, - "op": "JUMPI", - "gas": 2078674, - "gasCost": 10, "depth": 1, + "gas": 2078362, + "gasCost": 10, + "op": "JUMPI", + "pc": 123, "stack": [ "0x7f29c394", "0x0", @@ -316,32 +316,32 @@ ] }, { - "pc": 124, - "op": "DUP1", - "gas": 2078664, - "gasCost": 3, "depth": 1, + "gas": 2078352, + "gasCost": 3, + "op": "DUP1", + "pc": 124, "stack": [ "0x7f29c394" ] }, { - "pc": 125, - "op": "PUSH4", - "gas": 2078661, - "gasCost": 3, "depth": 1, + "gas": 2078349, + "gasCost": 3, + "op": "PUSH4", + "pc": 125, "stack": [ "0x7f29c394", "0x7f29c394" ] }, { - "pc": 130, - "op": "EQ", - "gas": 2078658, - "gasCost": 3, "depth": 1, + "gas": 2078346, + "gasCost": 3, + "op": "EQ", + "pc": 130, "stack": [ "0x7f29c394", "0x7f29c394", @@ -349,22 +349,22 @@ ] }, { - "pc": 131, - "op": "PUSH3", - "gas": 2078655, - "gasCost": 3, "depth": 1, + "gas": 2078343, + "gasCost": 3, + "op": "PUSH3", + "pc": 131, "stack": [ "0x7f29c394", "0x0" ] }, { - "pc": 135, - "op": "JUMPI", - "gas": 2078652, - "gasCost": 10, "depth": 1, + "gas": 2078340, + "gasCost": 10, + "op": "JUMPI", + "pc": 135, "stack": [ "0x7f29c394", "0x0", @@ -372,32 +372,32 @@ ] }, { - "pc": 136, - "op": "DUP1", - "gas": 2078642, - "gasCost": 3, "depth": 1, + "gas": 2078330, + "gasCost": 3, + "op": "DUP1", + "pc": 136, "stack": [ "0x7f29c394" ] }, { - "pc": 137, - "op": "PUSH4", - "gas": 2078639, - "gasCost": 3, "depth": 1, + "gas": 2078327, + "gasCost": 3, + "op": "PUSH4", + "pc": 137, "stack": [ "0x7f29c394", "0x7f29c394" ] }, { - "pc": 142, - "op": "EQ", - "gas": 2078636, - "gasCost": 3, "depth": 1, + "gas": 2078324, + "gasCost": 3, + "op": "EQ", + "pc": 142, "stack": [ "0x7f29c394", "0x7f29c394", @@ -405,22 +405,22 @@ ] }, { - "pc": 143, - "op": "PUSH3", - "gas": 2078633, - "gasCost": 3, "depth": 1, + "gas": 2078321, + "gasCost": 3, + "op": "PUSH3", + "pc": 143, "stack": [ "0x7f29c394", "0x0" ] }, { - "pc": 147, - "op": "JUMPI", - "gas": 2078630, - "gasCost": 10, "depth": 1, + "gas": 2078318, + "gasCost": 10, + "op": "JUMPI", + "pc": 147, "stack": [ "0x7f29c394", "0x0", @@ -428,32 +428,32 @@ ] }, { - "pc": 148, - "op": "DUP1", - "gas": 2078620, - "gasCost": 3, "depth": 1, + "gas": 2078308, + "gasCost": 3, + "op": "DUP1", + "pc": 148, "stack": [ "0x7f29c394" ] }, { - "pc": 149, - "op": "PUSH4", - "gas": 2078617, - "gasCost": 3, "depth": 1, + "gas": 2078305, + "gasCost": 3, + "op": "PUSH4", + "pc": 149, "stack": [ "0x7f29c394", "0x7f29c394" ] }, { - "pc": 154, - "op": "EQ", - "gas": 2078614, - "gasCost": 3, "depth": 1, + "gas": 2078302, + "gasCost": 3, + "op": "EQ", + "pc": 154, "stack": [ "0x7f29c394", "0x7f29c394", @@ -461,55 +461,55 @@ ] }, { - "pc": 155, - "op": "PUSH3", - "gas": 2078611, - "gasCost": 3, "depth": 1, + "gas": 2078299, + "gasCost": 3, + "op": "PUSH3", + "pc": 155, "stack": [ "0x7f29c394", "0x0" ] }, { - "pc": 159, - "op": "JUMPI", - "gas": 2078608, - "gasCost": 10, "depth": 1, + "gas": 2078296, + "gasCost": 10, + "op": "JUMPI", + "pc": 159, "stack": [ "0x7f29c394", "0x0", "0x12b" ] - }, - { - "pc": 160, - "op": "DUP1", - "gas": 2078598, - "gasCost": 3, + }, + { "depth": 1, + "gas": 2078286, + "gasCost": 3, + "op": "DUP1", + "pc": 160, "stack": [ "0x7f29c394" ] }, { - "pc": 161, - "op": "PUSH4", - "gas": 2078595, - "gasCost": 3, "depth": 1, + "gas": 2078283, + "gasCost": 3, + "op": "PUSH4", + "pc": 161, "stack": [ "0x7f29c394", "0x7f29c394" ] }, { - "pc": 166, - "op": "EQ", - "gas": 2078592, - "gasCost": 3, "depth": 1, + "gas": 2078280, + "gasCost": 3, + "op": "EQ", + "pc": 166, "stack": [ "0x7f29c394", "0x7f29c394", @@ -517,22 +517,22 @@ ] }, { - "pc": 167, - "op": "PUSH3", - "gas": 2078589, - "gasCost": 3, "depth": 1, + "gas": 2078277, + "gasCost": 3, + "op": "PUSH3", + "pc": 167, "stack": [ "0x7f29c394", "0x1" ] }, { - "pc": 171, - "op": "JUMPI", - "gas": 2078586, - "gasCost": 10, "depth": 1, + "gas": 2078274, + "gasCost": 10, + "op": "JUMPI", + "pc": 171, "stack": [ "0x7f29c394", "0x1", @@ -540,42 +540,42 @@ ] }, { - "pc": 353, - "op": "JUMPDEST", - "gas": 2078576, - "gasCost": 1, "depth": 1, + "gas": 2078264, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 353, "stack": [ "0x7f29c394" ] }, { - "pc": 354, - "op": "PUSH3", - "gas": 2078575, - "gasCost": 3, "depth": 1, + "gas": 2078263, + "gasCost": 3, + "op": "PUSH3", + "pc": 354, "stack": [ "0x7f29c394" ] }, { - "pc": 358, - "op": "PUSH1", - "gas": 2078572, - "gasCost": 3, "depth": 1, + "gas": 2078260, + "gasCost": 3, + "op": "PUSH1", + "pc": 358, "stack": [ "0x7f29c394", "0x17f" ] }, { - "pc": 360, - "op": "DUP1", - "gas": 2078569, - "gasCost": 3, "depth": 1, + "gas": 2078257, + "gasCost": 3, + "op": "DUP1", + "pc": 360, "stack": [ "0x7f29c394", "0x17f", @@ -583,11 +583,11 @@ ] }, { - "pc": 361, - "op": "CALLDATASIZE", - "gas": 2078566, - "gasCost": 2, "depth": 1, + "gas": 2078254, + "gasCost": 2, + "op": "CALLDATASIZE", + "pc": 361, "stack": [ "0x7f29c394", "0x17f", @@ -596,11 +596,11 @@ ] }, { - "pc": 362, - "op": "SUB", - "gas": 2078564, - "gasCost": 3, "depth": 1, + "gas": 2078252, + "gasCost": 3, + "op": "SUB", + "pc": 362, "stack": [ "0x7f29c394", "0x17f", @@ -610,11 +610,11 @@ ] }, { - "pc": 363, - "op": "DUP2", - "gas": 2078561, - "gasCost": 3, "depth": 1, + "gas": 2078249, + "gasCost": 3, + "op": "DUP2", + "pc": 363, "stack": [ "0x7f29c394", "0x17f", @@ -623,11 +623,11 @@ ] }, { - "pc": 364, - "op": "ADD", - "gas": 2078558, - "gasCost": 3, "depth": 1, + "gas": 2078246, + "gasCost": 3, + "op": "ADD", + "pc": 364, "stack": [ "0x7f29c394", "0x17f", @@ -637,11 +637,11 @@ ] }, { - "pc": 365, - "op": "SWAP1", - "gas": 2078555, - "gasCost": 3, "depth": 1, + "gas": 2078243, + "gasCost": 3, + "op": "SWAP1", + "pc": 365, "stack": [ "0x7f29c394", "0x17f", @@ -650,11 +650,11 @@ ] }, { - "pc": 366, - "op": "PUSH3", - "gas": 2078552, - "gasCost": 3, "depth": 1, + "gas": 2078240, + "gasCost": 3, + "op": "PUSH3", + "pc": 366, "stack": [ "0x7f29c394", "0x17f", @@ -663,11 +663,11 @@ ] }, { - "pc": 370, - "op": "SWAP2", - "gas": 2078549, - "gasCost": 3, "depth": 1, + "gas": 2078237, + "gasCost": 3, + "op": "SWAP2", + "pc": 370, "stack": [ "0x7f29c394", "0x17f", @@ -677,11 +677,11 @@ ] }, { - "pc": 371, - "op": "SWAP1", - "gas": 2078546, - "gasCost": 3, "depth": 1, + "gas": 2078234, + "gasCost": 3, + "op": "SWAP1", + "pc": 371, "stack": [ "0x7f29c394", "0x17f", @@ -691,11 +691,11 @@ ] }, { - "pc": 372, - "op": "PUSH3", - "gas": 2078543, - "gasCost": 3, "depth": 1, + "gas": 2078231, + "gasCost": 3, + "op": "PUSH3", + "pc": 372, "stack": [ "0x7f29c394", "0x17f", @@ -705,11 +705,11 @@ ] }, { - "pc": 376, - "op": "JUMP", - "gas": 2078540, - "gasCost": 8, "depth": 1, + "gas": 2078228, + "gasCost": 8, + "op": "JUMP", + "pc": 376, "stack": [ "0x7f29c394", "0x17f", @@ -720,11 +720,11 @@ ] }, { - "pc": 2570, - "op": "JUMPDEST", - "gas": 2078532, - "gasCost": 1, "depth": 1, + "gas": 2078220, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2570, "stack": [ "0x7f29c394", "0x17f", @@ -734,11 +734,11 @@ ] }, { - "pc": 2571, - "op": "PUSH1", - "gas": 2078531, - "gasCost": 3, "depth": 1, + "gas": 2078219, + "gasCost": 3, + "op": "PUSH1", + "pc": 2571, "stack": [ "0x7f29c394", "0x17f", @@ -748,11 +748,11 @@ ] }, { - "pc": 2573, - "op": "PUSH1", - "gas": 2078528, - "gasCost": 3, "depth": 1, + "gas": 2078216, + "gasCost": 3, + "op": "PUSH1", + "pc": 2573, "stack": [ "0x7f29c394", "0x17f", @@ -763,11 +763,11 @@ ] }, { - "pc": 2575, - "op": "DUP3", - "gas": 2078525, - "gasCost": 3, "depth": 1, + "gas": 2078213, + "gasCost": 3, + "op": "DUP3", + "pc": 2575, "stack": [ "0x7f29c394", "0x17f", @@ -779,11 +779,11 @@ ] }, { - "pc": 2576, - "op": "DUP5", - "gas": 2078522, - "gasCost": 3, "depth": 1, + "gas": 2078210, + "gasCost": 3, + "op": "DUP5", + "pc": 2576, "stack": [ "0x7f29c394", "0x17f", @@ -796,11 +796,11 @@ ] }, { - "pc": 2577, - "op": "SUB", - "gas": 2078519, - "gasCost": 3, "depth": 1, + "gas": 2078207, + "gasCost": 3, + "op": "SUB", + "pc": 2577, "stack": [ "0x7f29c394", "0x17f", @@ -814,11 +814,11 @@ ] }, { - "pc": 2578, - "op": "SLT", - "gas": 2078516, - "gasCost": 3, "depth": 1, + "gas": 2078204, + "gasCost": 3, + "op": "SLT", + "pc": 2578, "stack": [ "0x7f29c394", "0x17f", @@ -831,11 +831,11 @@ ] }, { - "pc": 2579, - "op": "ISZERO", - "gas": 2078513, - "gasCost": 3, "depth": 1, + "gas": 2078201, + "gasCost": 3, + "op": "ISZERO", + "pc": 2579, "stack": [ "0x7f29c394", "0x17f", @@ -847,11 +847,11 @@ ] }, { - "pc": 2580, - "op": "PUSH3", - "gas": 2078510, - "gasCost": 3, "depth": 1, + "gas": 2078198, + "gasCost": 3, + "op": "PUSH3", + "pc": 2580, "stack": [ "0x7f29c394", "0x17f", @@ -863,11 +863,11 @@ ] }, { - "pc": 2584, - "op": "JUMPI", - "gas": 2078507, - "gasCost": 10, "depth": 1, + "gas": 2078195, + "gasCost": 10, + "op": "JUMPI", + "pc": 2584, "stack": [ "0x7f29c394", "0x17f", @@ -880,11 +880,11 @@ ] }, { - "pc": 2595, - "op": "JUMPDEST", - "gas": 2078497, - "gasCost": 1, "depth": 1, + "gas": 2078185, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2595, "stack": [ "0x7f29c394", "0x17f", @@ -895,11 +895,11 @@ ] }, { - "pc": 2596, - "op": "PUSH1", - "gas": 2078496, - "gasCost": 3, "depth": 1, + "gas": 2078184, + "gasCost": 3, + "op": "PUSH1", + "pc": 2596, "stack": [ "0x7f29c394", "0x17f", @@ -910,11 +910,11 @@ ] }, { - "pc": 2598, - "op": "PUSH3", - "gas": 2078493, - "gasCost": 3, "depth": 1, + "gas": 2078181, + "gasCost": 3, + "op": "PUSH3", + "pc": 2598, "stack": [ "0x7f29c394", "0x17f", @@ -926,11 +926,11 @@ ] }, { - "pc": 2602, - "op": "DUP5", - "gas": 2078490, - "gasCost": 3, "depth": 1, + "gas": 2078178, + "gasCost": 3, + "op": "DUP5", + "pc": 2602, "stack": [ "0x7f29c394", "0x17f", @@ -943,11 +943,11 @@ ] }, { - "pc": 2603, - "op": "DUP3", - "gas": 2078487, - "gasCost": 3, "depth": 1, + "gas": 2078175, + "gasCost": 3, + "op": "DUP3", + "pc": 2603, "stack": [ "0x7f29c394", "0x17f", @@ -961,11 +961,11 @@ ] }, { - "pc": 2604, - "op": "DUP6", - "gas": 2078484, - "gasCost": 3, "depth": 1, + "gas": 2078172, + "gasCost": 3, + "op": "DUP6", + "pc": 2604, "stack": [ "0x7f29c394", "0x17f", @@ -980,11 +980,11 @@ ] }, { - "pc": 2605, - "op": "ADD", - "gas": 2078481, - "gasCost": 3, "depth": 1, + "gas": 2078169, + "gasCost": 3, + "op": "ADD", + "pc": 2605, "stack": [ "0x7f29c394", "0x17f", @@ -1000,11 +1000,11 @@ ] }, { - "pc": 2606, - "op": "PUSH3", - "gas": 2078478, - "gasCost": 3, "depth": 1, + "gas": 2078166, + "gasCost": 3, + "op": "PUSH3", + "pc": 2606, "stack": [ "0x7f29c394", "0x17f", @@ -1019,11 +1019,11 @@ ] }, { - "pc": 2610, - "op": "JUMP", - "gas": 2078475, - "gasCost": 8, "depth": 1, + "gas": 2078163, + "gasCost": 8, + "op": "JUMP", + "pc": 2610, "stack": [ "0x7f29c394", "0x17f", @@ -1039,11 +1039,11 @@ ] }, { - "pc": 2547, - "op": "JUMPDEST", - "gas": 2078467, - "gasCost": 1, "depth": 1, + "gas": 2078155, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2547, "stack": [ "0x7f29c394", "0x17f", @@ -1058,11 +1058,11 @@ ] }, { - "pc": 2548, - "op": "PUSH1", - "gas": 2078466, - "gasCost": 3, "depth": 1, + "gas": 2078154, + "gasCost": 3, + "op": "PUSH1", + "pc": 2548, "stack": [ "0x7f29c394", "0x17f", @@ -1077,11 +1077,11 @@ ] }, { - "pc": 2550, - "op": "DUP2", - "gas": 2078463, - "gasCost": 3, "depth": 1, + "gas": 2078151, + "gasCost": 3, + "op": "DUP2", + "pc": 2550, "stack": [ "0x7f29c394", "0x17f", @@ -1096,12 +1096,12 @@ "0x0" ] }, - { - "pc": 2551, - "op": "CALLDATALOAD", - "gas": 2078460, - "gasCost": 3, + { "depth": 1, + "gas": 2078148, + "gasCost": 3, + "op": "CALLDATALOAD", + "pc": 2551, "stack": [ "0x7f29c394", "0x17f", @@ -1118,11 +1118,11 @@ ] }, { - "pc": 2552, - "op": "SWAP1", - "gas": 2078457, - "gasCost": 3, "depth": 1, + "gas": 2078145, + "gasCost": 3, + "op": "SWAP1", + "pc": 2552, "stack": [ "0x7f29c394", "0x17f", @@ -1139,11 +1139,11 @@ ] }, { - "pc": 2553, - "op": "POP", - "gas": 2078454, - "gasCost": 2, "depth": 1, + "gas": 2078142, + "gasCost": 2, + "op": "POP", + "pc": 2553, "stack": [ "0x7f29c394", "0x17f", @@ -1160,11 +1160,11 @@ ] }, { - "pc": 2554, - "op": "PUSH3", - "gas": 2078452, - "gasCost": 3, "depth": 1, + "gas": 2078140, + "gasCost": 3, + "op": "PUSH3", + "pc": 2554, "stack": [ "0x7f29c394", "0x17f", @@ -1180,11 +1180,11 @@ ] }, { - "pc": 2558, - "op": "DUP2", - "gas": 2078449, - "gasCost": 3, "depth": 1, + "gas": 2078137, + "gasCost": 3, + "op": "DUP2", + "pc": 2558, "stack": [ "0x7f29c394", "0x17f", @@ -1201,11 +1201,11 @@ ] }, { - "pc": 2559, - "op": "PUSH3", - "gas": 2078446, - "gasCost": 3, "depth": 1, + "gas": 2078134, + "gasCost": 3, + "op": "PUSH3", + "pc": 2559, "stack": [ "0x7f29c394", "0x17f", @@ -1223,11 +1223,11 @@ ] }, { - "pc": 2563, - "op": "JUMP", - "gas": 2078443, - "gasCost": 8, "depth": 1, + "gas": 2078131, + "gasCost": 8, + "op": "JUMP", + "pc": 2563, "stack": [ "0x7f29c394", "0x17f", @@ -1246,11 +1246,11 @@ ] }, { - "pc": 2521, - "op": "JUMPDEST", - "gas": 2078435, - "gasCost": 1, "depth": 1, + "gas": 2078123, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2521, "stack": [ "0x7f29c394", "0x17f", @@ -1268,11 +1268,11 @@ ] }, { - "pc": 2522, - "op": "PUSH3", - "gas": 2078434, - "gasCost": 3, "depth": 1, + "gas": 2078122, + "gasCost": 3, + "op": "PUSH3", + "pc": 2522, "stack": [ "0x7f29c394", "0x17f", @@ -1290,11 +1290,11 @@ ] }, { - "pc": 2526, - "op": "DUP2", - "gas": 2078431, - "gasCost": 3, "depth": 1, + "gas": 2078119, + "gasCost": 3, + "op": "DUP2", + "pc": 2526, "stack": [ "0x7f29c394", "0x17f", @@ -1313,11 +1313,11 @@ ] }, { - "pc": 2527, - "op": "PUSH3", - "gas": 2078428, - "gasCost": 3, "depth": 1, + "gas": 2078116, + "gasCost": 3, + "op": "PUSH3", + "pc": 2527, "stack": [ "0x7f29c394", "0x17f", @@ -1337,11 +1337,11 @@ ] }, { - "pc": 2531, - "op": "JUMP", - "gas": 2078425, - "gasCost": 8, "depth": 1, + "gas": 2078113, + "gasCost": 8, + "op": "JUMP", + "pc": 2531, "stack": [ "0x7f29c394", "0x17f", @@ -1362,11 +1362,11 @@ ] }, { - "pc": 2394, - "op": "JUMPDEST", - "gas": 2078417, - "gasCost": 1, "depth": 1, + "gas": 2078105, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2394, "stack": [ "0x7f29c394", "0x17f", @@ -1386,11 +1386,11 @@ ] }, { - "pc": 2395, - "op": "PUSH1", - "gas": 2078416, - "gasCost": 3, "depth": 1, + "gas": 2078104, + "gasCost": 3, + "op": "PUSH1", + "pc": 2395, "stack": [ "0x7f29c394", "0x17f", @@ -1410,11 +1410,11 @@ ] }, { - "pc": 2397, - "op": "DUP2", - "gas": 2078413, - "gasCost": 3, "depth": 1, + "gas": 2078101, + "gasCost": 3, + "op": "DUP2", + "pc": 2397, "stack": [ "0x7f29c394", "0x17f", @@ -1435,11 +1435,11 @@ ] }, { - "pc": 2398, - "op": "SWAP1", - "gas": 2078410, - "gasCost": 3, "depth": 1, + "gas": 2078098, + "gasCost": 3, + "op": "SWAP1", + "pc": 2398, "stack": [ "0x7f29c394", "0x17f", @@ -1461,11 +1461,11 @@ ] }, { - "pc": 2399, - "op": "POP", - "gas": 2078407, - "gasCost": 2, "depth": 1, + "gas": 2078095, + "gasCost": 2, + "op": "POP", + "pc": 2399, "stack": [ "0x7f29c394", "0x17f", @@ -1487,11 +1487,11 @@ ] }, { - "pc": 2400, - "op": "SWAP2", - "gas": 2078405, - "gasCost": 3, "depth": 1, + "gas": 2078093, + "gasCost": 3, + "op": "SWAP2", + "pc": 2400, "stack": [ "0x7f29c394", "0x17f", @@ -1512,11 +1512,11 @@ ] }, { - "pc": 2401, - "op": "SWAP1", - "gas": 2078402, - "gasCost": 3, "depth": 1, + "gas": 2078090, + "gasCost": 3, + "op": "SWAP1", + "pc": 2401, "stack": [ "0x7f29c394", "0x17f", @@ -1537,11 +1537,11 @@ ] }, { - "pc": 2402, - "op": "POP", - "gas": 2078399, - "gasCost": 2, "depth": 1, + "gas": 2078087, + "gasCost": 2, + "op": "POP", + "pc": 2402, "stack": [ "0x7f29c394", "0x17f", @@ -1562,11 +1562,11 @@ ] }, { - "pc": 2403, - "op": "JUMP", - "gas": 2078397, - "gasCost": 8, "depth": 1, + "gas": 2078085, + "gasCost": 8, + "op": "JUMP", + "pc": 2403, "stack": [ "0x7f29c394", "0x17f", @@ -1586,11 +1586,11 @@ ] }, { - "pc": 2532, - "op": "JUMPDEST", - "gas": 2078389, - "gasCost": 1, "depth": 1, + "gas": 2078077, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2532, "stack": [ "0x7f29c394", "0x17f", @@ -1609,11 +1609,11 @@ ] }, { - "pc": 2533, - "op": "DUP2", - "gas": 2078388, - "gasCost": 3, "depth": 1, + "gas": 2078076, + "gasCost": 3, + "op": "DUP2", + "pc": 2533, "stack": [ "0x7f29c394", "0x17f", @@ -1632,11 +1632,11 @@ ] }, { - "pc": 2534, - "op": "EQ", - "gas": 2078385, - "gasCost": 3, "depth": 1, + "gas": 2078073, + "gasCost": 3, + "op": "EQ", + "pc": 2534, "stack": [ "0x7f29c394", "0x17f", @@ -1656,11 +1656,11 @@ ] }, { - "pc": 2535, - "op": "PUSH3", - "gas": 2078382, - "gasCost": 3, "depth": 1, + "gas": 2078070, + "gasCost": 3, + "op": "PUSH3", + "pc": 2535, "stack": [ "0x7f29c394", "0x17f", @@ -1679,11 +1679,11 @@ ] }, { - "pc": 2539, - "op": "JUMPI", - "gas": 2078379, - "gasCost": 10, "depth": 1, + "gas": 2078067, + "gasCost": 10, + "op": "JUMPI", + "pc": 2539, "stack": [ "0x7f29c394", "0x17f", @@ -1703,11 +1703,11 @@ ] }, { - "pc": 2544, - "op": "JUMPDEST", - "gas": 2078369, - "gasCost": 1, "depth": 1, + "gas": 2078057, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2544, "stack": [ "0x7f29c394", "0x17f", @@ -1725,11 +1725,11 @@ ] }, { - "pc": 2545, - "op": "POP", - "gas": 2078368, - "gasCost": 2, "depth": 1, + "gas": 2078056, + "gasCost": 2, + "op": "POP", + "pc": 2545, "stack": [ "0x7f29c394", "0x17f", @@ -1747,11 +1747,11 @@ ] }, { - "pc": 2546, - "op": "JUMP", - "gas": 2078366, - "gasCost": 8, "depth": 1, + "gas": 2078054, + "gasCost": 8, + "op": "JUMP", + "pc": 2546, "stack": [ "0x7f29c394", "0x17f", @@ -1768,11 +1768,11 @@ ] }, { - "pc": 2564, - "op": "JUMPDEST", - "gas": 2078358, - "gasCost": 1, "depth": 1, + "gas": 2078046, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2564, "stack": [ "0x7f29c394", "0x17f", @@ -1788,11 +1788,11 @@ ] }, { - "pc": 2565, - "op": "SWAP3", - "gas": 2078357, - "gasCost": 3, "depth": 1, + "gas": 2078045, + "gasCost": 3, + "op": "SWAP3", + "pc": 2565, "stack": [ "0x7f29c394", "0x17f", @@ -1808,11 +1808,11 @@ ] }, { - "pc": 2566, - "op": "SWAP2", - "gas": 2078354, - "gasCost": 3, "depth": 1, + "gas": 2078042, + "gasCost": 3, + "op": "SWAP2", + "pc": 2566, "stack": [ "0x7f29c394", "0x17f", @@ -1828,11 +1828,11 @@ ] }, { - "pc": 2567, - "op": "POP", - "gas": 2078351, - "gasCost": 2, "depth": 1, + "gas": 2078039, + "gasCost": 2, + "op": "POP", + "pc": 2567, "stack": [ "0x7f29c394", "0x17f", @@ -1848,11 +1848,11 @@ ] }, { - "pc": 2568, - "op": "POP", - "gas": 2078349, - "gasCost": 2, "depth": 1, + "gas": 2078037, + "gasCost": 2, + "op": "POP", + "pc": 2568, "stack": [ "0x7f29c394", "0x17f", @@ -1867,11 +1867,11 @@ ] }, { - "pc": 2569, - "op": "JUMP", - "gas": 2078347, - "gasCost": 8, "depth": 1, + "gas": 2078035, + "gasCost": 8, + "op": "JUMP", + "pc": 2569, "stack": [ "0x7f29c394", "0x17f", @@ -1885,11 +1885,11 @@ ] }, { - "pc": 2611, - "op": "JUMPDEST", - "gas": 2078339, - "gasCost": 1, "depth": 1, + "gas": 2078027, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2611, "stack": [ "0x7f29c394", "0x17f", @@ -1902,11 +1902,11 @@ ] }, { - "pc": 2612, - "op": "SWAP2", - "gas": 2078338, - "gasCost": 3, "depth": 1, + "gas": 2078026, + "gasCost": 3, + "op": "SWAP2", + "pc": 2612, "stack": [ "0x7f29c394", "0x17f", @@ -1919,11 +1919,11 @@ ] }, { - "pc": 2613, - "op": "POP", - "gas": 2078335, - "gasCost": 2, "depth": 1, + "gas": 2078023, + "gasCost": 2, + "op": "POP", + "pc": 2613, "stack": [ "0x7f29c394", "0x17f", @@ -1936,11 +1936,11 @@ ] }, { - "pc": 2614, - "op": "POP", - "gas": 2078333, - "gasCost": 2, "depth": 1, + "gas": 2078021, + "gasCost": 2, + "op": "POP", + "pc": 2614, "stack": [ "0x7f29c394", "0x17f", @@ -1952,11 +1952,11 @@ ] }, { - "pc": 2615, - "op": "SWAP3", - "gas": 2078331, - "gasCost": 3, "depth": 1, + "gas": 2078019, + "gasCost": 3, + "op": "SWAP3", + "pc": 2615, "stack": [ "0x7f29c394", "0x17f", @@ -1966,12 +1966,12 @@ "0x3e8" ] }, - { - "pc": 2616, - "op": "SWAP2", - "gas": 2078328, - "gasCost": 3, + { "depth": 1, + "gas": 2078016, + "gasCost": 3, + "op": "SWAP2", + "pc": 2616, "stack": [ "0x7f29c394", "0x17f", @@ -1982,11 +1982,11 @@ ] }, { - "pc": 2617, - "op": "POP", - "gas": 2078325, - "gasCost": 2, "depth": 1, + "gas": 2078013, + "gasCost": 2, + "op": "POP", + "pc": 2617, "stack": [ "0x7f29c394", "0x17f", @@ -1997,11 +1997,11 @@ ] }, { - "pc": 2618, - "op": "POP", - "gas": 2078323, - "gasCost": 2, "depth": 1, + "gas": 2078011, + "gasCost": 2, + "op": "POP", + "pc": 2618, "stack": [ "0x7f29c394", "0x17f", @@ -2011,11 +2011,11 @@ ] }, { - "pc": 2619, - "op": "JUMP", - "gas": 2078321, - "gasCost": 8, "depth": 1, + "gas": 2078009, + "gasCost": 8, + "op": "JUMP", + "pc": 2619, "stack": [ "0x7f29c394", "0x17f", @@ -2024,11 +2024,11 @@ ] }, { - "pc": 377, - "op": "JUMPDEST", - "gas": 2078313, - "gasCost": 1, "depth": 1, + "gas": 2078001, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 377, "stack": [ "0x7f29c394", "0x17f", @@ -2036,11 +2036,11 @@ ] }, { - "pc": 378, - "op": "PUSH3", - "gas": 2078312, - "gasCost": 3, "depth": 1, + "gas": 2078000, + "gasCost": 3, + "op": "PUSH3", + "pc": 378, "stack": [ "0x7f29c394", "0x17f", @@ -2048,11 +2048,11 @@ ] }, { - "pc": 382, - "op": "JUMP", - "gas": 2078309, - "gasCost": 8, "depth": 1, + "gas": 2077997, + "gasCost": 8, + "op": "JUMP", + "pc": 382, "stack": [ "0x7f29c394", "0x17f", @@ -2061,11 +2061,11 @@ ] }, { - "pc": 1182, - "op": "JUMPDEST", - "gas": 2078301, - "gasCost": 1, "depth": 1, + "gas": 2077989, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 1182, "stack": [ "0x7f29c394", "0x17f", @@ -2073,11 +2073,11 @@ ] }, { - "pc": 1183, - "op": "PUSH1", - "gas": 2078300, - "gasCost": 3, "depth": 1, + "gas": 2077988, + "gasCost": 3, + "op": "PUSH1", + "pc": 1183, "stack": [ "0x7f29c394", "0x17f", @@ -2085,11 +2085,11 @@ ] }, { - "pc": 1185, - "op": "ADDRESS", - "gas": 2078297, - "gasCost": 2, "depth": 1, + "gas": 2077985, + "gasCost": 2, + "op": "ADDRESS", + "pc": 1185, "stack": [ "0x7f29c394", "0x17f", @@ -2098,11 +2098,11 @@ ] }, { - "pc": 1186, - "op": "PUSH20", - "gas": 2078295, - "gasCost": 3, "depth": 1, + "gas": 2077983, + "gasCost": 3, + "op": "PUSH20", + "pc": 1186, "stack": [ "0x7f29c394", "0x17f", @@ -2112,11 +2112,11 @@ ] }, { - "pc": 1207, - "op": "AND", - "gas": 2078292, - "gasCost": 3, "depth": 1, + "gas": 2077980, + "gasCost": 3, + "op": "AND", + "pc": 1207, "stack": [ "0x7f29c394", "0x17f", @@ -2127,11 +2127,11 @@ ] }, { - "pc": 1208, - "op": "PUSH4", - "gas": 2078289, - "gasCost": 3, "depth": 1, + "gas": 2077977, + "gasCost": 3, + "op": "PUSH4", + "pc": 1208, "stack": [ "0x7f29c394", "0x17f", @@ -2141,11 +2141,11 @@ ] }, { - "pc": 1213, - "op": "PUSH1", - "gas": 2078286, - "gasCost": 3, "depth": 1, + "gas": 2077974, + "gasCost": 3, + "op": "PUSH1", + "pc": 1213, "stack": [ "0x7f29c394", "0x17f", @@ -2156,11 +2156,11 @@ ] }, { - "pc": 1215, - "op": "MLOAD", - "gas": 2078283, - "gasCost": 3, "depth": 1, + "gas": 2077971, + "gasCost": 3, + "op": "MLOAD", + "pc": 1215, "stack": [ "0x7f29c394", "0x17f", @@ -2172,11 +2172,11 @@ ] }, { - "pc": 1216, - "op": "DUP2", - "gas": 2078280, - "gasCost": 3, "depth": 1, + "gas": 2077968, + "gasCost": 3, + "op": "DUP2", + "pc": 1216, "stack": [ "0x7f29c394", "0x17f", @@ -2188,11 +2188,11 @@ ] }, { - "pc": 1217, - "op": "PUSH4", - "gas": 2078277, - "gasCost": 3, "depth": 1, + "gas": 2077965, + "gasCost": 3, + "op": "PUSH4", + "pc": 1217, "stack": [ "0x7f29c394", "0x17f", @@ -2205,11 +2205,11 @@ ] }, { - "pc": 1222, - "op": "AND", - "gas": 2078274, - "gasCost": 3, "depth": 1, + "gas": 2077962, + "gasCost": 3, + "op": "AND", + "pc": 1222, "stack": [ "0x7f29c394", "0x17f", @@ -2223,11 +2223,11 @@ ] }, { - "pc": 1223, - "op": "PUSH1", - "gas": 2078271, - "gasCost": 3, "depth": 1, + "gas": 2077959, + "gasCost": 3, + "op": "PUSH1", + "pc": 1223, "stack": [ "0x7f29c394", "0x17f", @@ -2240,11 +2240,11 @@ ] }, { - "pc": 1225, - "op": "SHL", - "gas": 2078268, - "gasCost": 3, "depth": 1, + "gas": 2077956, + "gasCost": 3, + "op": "SHL", + "pc": 1225, "stack": [ "0x7f29c394", "0x17f", @@ -2258,11 +2258,11 @@ ] }, { - "pc": 1226, - "op": "DUP2", - "gas": 2078265, - "gasCost": 3, "depth": 1, + "gas": 2077953, + "gasCost": 3, + "op": "DUP2", + "pc": 1226, "stack": [ "0x7f29c394", "0x17f", @@ -2275,11 +2275,11 @@ ] }, { - "pc": 1227, - "op": "MSTORE", - "gas": 2078262, - "gasCost": 9, "depth": 1, + "gas": 2077950, + "gasCost": 9, + "op": "MSTORE", + "pc": 1227, "stack": [ "0x7f29c394", "0x17f", @@ -2293,11 +2293,11 @@ ] }, { - "pc": 1228, - "op": "PUSH1", - "gas": 2078253, - "gasCost": 3, "depth": 1, + "gas": 2077941, + "gasCost": 3, + "op": "PUSH1", + "pc": 1228, "stack": [ "0x7f29c394", "0x17f", @@ -2309,11 +2309,11 @@ ] }, { - "pc": 1230, - "op": "ADD", - "gas": 2078250, - "gasCost": 3, "depth": 1, + "gas": 2077938, + "gasCost": 3, + "op": "ADD", + "pc": 1230, "stack": [ "0x7f29c394", "0x17f", @@ -2326,11 +2326,11 @@ ] }, { - "pc": 1231, - "op": "PUSH1", - "gas": 2078247, - "gasCost": 3, "depth": 1, + "gas": 2077935, + "gasCost": 3, + "op": "PUSH1", + "pc": 1231, "stack": [ "0x7f29c394", "0x17f", @@ -2342,11 +2342,11 @@ ] }, { - "pc": 1233, - "op": "PUSH1", - "gas": 2078244, - "gasCost": 3, "depth": 1, + "gas": 2077932, + "gasCost": 3, + "op": "PUSH1", + "pc": 1233, "stack": [ "0x7f29c394", "0x17f", @@ -2359,11 +2359,11 @@ ] }, { - "pc": 1235, - "op": "MLOAD", - "gas": 2078241, - "gasCost": 3, "depth": 1, + "gas": 2077929, + "gasCost": 3, + "op": "MLOAD", + "pc": 1235, "stack": [ "0x7f29c394", "0x17f", @@ -2377,11 +2377,11 @@ ] }, { - "pc": 1236, - "op": "DUP1", - "gas": 2078238, - "gasCost": 3, "depth": 1, + "gas": 2077926, + "gasCost": 3, + "op": "DUP1", + "pc": 1236, "stack": [ "0x7f29c394", "0x17f", @@ -2395,11 +2395,11 @@ ] }, { - "pc": 1237, - "op": "DUP4", - "gas": 2078235, - "gasCost": 3, "depth": 1, + "gas": 2077923, + "gasCost": 3, + "op": "DUP4", + "pc": 1237, "stack": [ "0x7f29c394", "0x17f", @@ -2414,11 +2414,11 @@ ] }, { - "pc": 1238, - "op": "SUB", - "gas": 2078232, - "gasCost": 3, "depth": 1, + "gas": 2077920, + "gasCost": 3, + "op": "SUB", + "pc": 1238, "stack": [ "0x7f29c394", "0x17f", @@ -2434,11 +2434,11 @@ ] }, { - "pc": 1239, - "op": "DUP2", - "gas": 2078229, - "gasCost": 3, "depth": 1, + "gas": 2077917, + "gasCost": 3, + "op": "DUP2", + "pc": 1239, "stack": [ "0x7f29c394", "0x17f", @@ -2453,11 +2453,11 @@ ] }, { - "pc": 1240, - "op": "DUP7", - "gas": 2078226, - "gasCost": 3, "depth": 1, + "gas": 2077914, + "gasCost": 3, + "op": "DUP7", + "pc": 1240, "stack": [ "0x7f29c394", "0x17f", @@ -2473,11 +2473,11 @@ ] }, { - "pc": 1241, - "op": "DUP1", - "gas": 2078223, - "gasCost": 3, "depth": 1, + "gas": 2077911, + "gasCost": 3, + "op": "DUP1", + "pc": 1241, "stack": [ "0x7f29c394", "0x17f", @@ -2494,11 +2494,11 @@ ] }, { - "pc": 1242, - "op": "EXTCODESIZE", - "gas": 2078220, - "gasCost": 100, "depth": 1, + "gas": 2077908, + "gasCost": 700, + "op": "EXTCODESIZE", + "pc": 1242, "stack": [ "0x7f29c394", "0x17f", @@ -2516,11 +2516,11 @@ ] }, { - "pc": 1243, - "op": "ISZERO", - "gas": 2078120, - "gasCost": 3, "depth": 1, + "gas": 2077208, + "gasCost": 3, + "op": "ISZERO", + "pc": 1243, "stack": [ "0x7f29c394", "0x17f", @@ -2538,11 +2538,11 @@ ] }, { - "pc": 1244, - "op": "DUP1", - "gas": 2078117, - "gasCost": 3, "depth": 1, + "gas": 2077205, + "gasCost": 3, + "op": "DUP1", + "pc": 1244, "stack": [ "0x7f29c394", "0x17f", @@ -2560,11 +2560,11 @@ ] }, { - "pc": 1245, - "op": "ISZERO", - "gas": 2078114, - "gasCost": 3, "depth": 1, + "gas": 2077202, + "gasCost": 3, + "op": "ISZERO", + "pc": 1245, "stack": [ "0x7f29c394", "0x17f", @@ -2583,11 +2583,11 @@ ] }, { - "pc": 1246, - "op": "PUSH3", - "gas": 2078111, - "gasCost": 3, "depth": 1, + "gas": 2077199, + "gasCost": 3, + "op": "PUSH3", + "pc": 1246, "stack": [ "0x7f29c394", "0x17f", @@ -2606,11 +2606,11 @@ ] }, { - "pc": 1250, - "op": "JUMPI", - "gas": 2078108, - "gasCost": 10, "depth": 1, + "gas": 2077196, + "gasCost": 10, + "op": "JUMPI", + "pc": 1250, "stack": [ "0x7f29c394", "0x17f", @@ -2630,11 +2630,11 @@ ] }, { - "pc": 1255, - "op": "JUMPDEST", - "gas": 2078098, - "gasCost": 1, "depth": 1, + "gas": 2077186, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 1255, "stack": [ "0x7f29c394", "0x17f", @@ -2652,11 +2652,11 @@ ] }, { - "pc": 1256, - "op": "POP", - "gas": 2078097, - "gasCost": 2, "depth": 1, + "gas": 2077185, + "gasCost": 2, + "op": "POP", + "pc": 1256, "stack": [ "0x7f29c394", "0x17f", @@ -2672,13 +2672,13 @@ "Tracer.address", "0x0" ] - }, - { - "pc": 1257, - "op": "GAS", - "gas": 2078095, - "gasCost": 2, + }, + { "depth": 1, + "gas": 2077183, + "gasCost": 2, + "op": "GAS", + "pc": 1257, "stack": [ "0x7f29c394", "0x17f", @@ -2695,11 +2695,11 @@ ] }, { - "pc": 1258, - "op": "STATICCALL", - "gas": 2078093, - "gasCost": 2045625, "depth": 1, + "gas": 2077181, + "gasCost": 1156, + "op": "STATICCALL", + "pc": 1258, "stack": [ "0x7f29c394", "0x17f", @@ -2713,84 +2713,84 @@ "0x4", "0x80", "Tracer.address", - "0x1fb58d" + "0x1fb1fd" ] }, { - "pc": 0, - "op": "PUSH1", - "gas": 2045525, - "gasCost": 3, "depth": 2, + "gas": 2044036, + "gasCost": 3, + "op": "PUSH1", + "pc": 0, "stack": [] }, { - "pc": 2, - "op": "PUSH1", - "gas": 2045522, - "gasCost": 3, "depth": 2, + "gas": 2044033, + "gasCost": 3, + "op": "PUSH1", + "pc": 2, "stack": [ "0x80" ] }, { - "pc": 4, - "op": "MSTORE", - "gas": 2045519, - "gasCost": 12, "depth": 2, + "gas": 2044030, + "gasCost": 12, + "op": "MSTORE", + "pc": 4, "stack": [ "0x80", "0x40" ] }, { - "pc": 5, - "op": "CALLVALUE", - "gas": 2045507, - "gasCost": 2, "depth": 2, + "gas": 2044018, + "gasCost": 2, + "op": "CALLVALUE", + "pc": 5, "stack": [] }, { - "pc": 6, - "op": "DUP1", - "gas": 2045505, - "gasCost": 3, "depth": 2, + "gas": 2044016, + "gasCost": 3, + "op": "DUP1", + "pc": 6, "stack": [ "0x0" ] }, { - "pc": 7, - "op": "ISZERO", - "gas": 2045502, - "gasCost": 3, "depth": 2, + "gas": 2044013, + "gasCost": 3, + "op": "ISZERO", + "pc": 7, "stack": [ "0x0", "0x0" ] }, { - "pc": 8, - "op": "PUSH3", - "gas": 2045499, - "gasCost": 3, "depth": 2, + "gas": 2044010, + "gasCost": 3, + "op": "PUSH3", + "pc": 8, "stack": [ "0x0", "0x1" ] }, { - "pc": 12, - "op": "JUMPI", - "gas": 2045496, - "gasCost": 10, "depth": 2, + "gas": 2044007, + "gasCost": 10, + "op": "JUMPI", + "pc": 12, "stack": [ "0x0", "0x1", @@ -2798,141 +2798,141 @@ ] }, { - "pc": 17, - "op": "JUMPDEST", - "gas": 2045486, - "gasCost": 1, "depth": 2, + "gas": 2043997, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 17, "stack": [ "0x0" ] }, { - "pc": 18, - "op": "POP", - "gas": 2045485, - "gasCost": 2, "depth": 2, + "gas": 2043996, + "gasCost": 2, + "op": "POP", + "pc": 18, "stack": [ "0x0" ] }, { - "pc": 19, - "op": "PUSH1", - "gas": 2045483, - "gasCost": 3, "depth": 2, + "gas": 2043994, + "gasCost": 3, + "op": "PUSH1", + "pc": 19, "stack": [] }, { - "pc": 21, - "op": "CALLDATASIZE", - "gas": 2045480, - "gasCost": 2, "depth": 2, + "gas": 2043991, + "gasCost": 2, + "op": "CALLDATASIZE", + "pc": 21, "stack": [ "0x4" ] }, { - "pc": 22, - "op": "LT", - "gas": 2045478, - "gasCost": 3, "depth": 2, + "gas": 2043989, + "gasCost": 3, + "op": "LT", + "pc": 22, "stack": [ "0x4", "0x4" ] }, { - "pc": 23, - "op": "PUSH3", - "gas": 2045475, - "gasCost": 3, "depth": 2, + "gas": 2043986, + "gasCost": 3, + "op": "PUSH3", + "pc": 23, "stack": [ "0x0" ] }, { - "pc": 27, - "op": "JUMPI", - "gas": 2045472, - "gasCost": 10, "depth": 2, + "gas": 2043983, + "gasCost": 10, + "op": "JUMPI", + "pc": 27, "stack": [ "0x0", "0xac" ] }, { - "pc": 28, - "op": "PUSH1", - "gas": 2045462, - "gasCost": 3, "depth": 2, + "gas": 2043973, + "gasCost": 3, + "op": "PUSH1", + "pc": 28, "stack": [] }, { - "pc": 30, - "op": "CALLDATALOAD", - "gas": 2045459, - "gasCost": 3, "depth": 2, + "gas": 2043970, + "gasCost": 3, + "op": "CALLDATALOAD", + "pc": 30, "stack": [ "0x0" ] }, { - "pc": 31, - "op": "PUSH1", - "gas": 2045456, - "gasCost": 3, "depth": 2, + "gas": 2043967, + "gasCost": 3, + "op": "PUSH1", + "pc": 31, "stack": [ "0x9295436200000000000000000000000000000000000000000000000000000000" ] }, { - "pc": 33, - "op": "SHR", - "gas": 2045453, - "gasCost": 3, "depth": 2, + "gas": 2043964, + "gasCost": 3, + "op": "SHR", + "pc": 33, "stack": [ "0x9295436200000000000000000000000000000000000000000000000000000000", "0xe0" ] }, { - "pc": 34, - "op": "DUP1", - "gas": 2045450, - "gasCost": 3, "depth": 2, + "gas": 2043961, + "gasCost": 3, + "op": "DUP1", + "pc": 34, "stack": [ "0x92954362" ] }, { - "pc": 35, - "op": "PUSH4", - "gas": 2045447, - "gasCost": 3, "depth": 2, + "gas": 2043958, + "gasCost": 3, + "op": "PUSH4", + "pc": 35, "stack": [ "0x92954362", "0x92954362" ] }, { - "pc": 40, - "op": "GT", - "gas": 2045444, - "gasCost": 3, "depth": 2, + "gas": 2043955, + "gasCost": 3, + "op": "GT", + "pc": 40, "stack": [ "0x92954362", "0x92954362", @@ -2940,22 +2940,22 @@ ] }, { - "pc": 41, - "op": "PUSH3", - "gas": 2045441, - "gasCost": 3, "depth": 2, + "gas": 2043952, + "gasCost": 3, + "op": "PUSH3", + "pc": 41, "stack": [ "0x92954362", "0x0" ] }, { - "pc": 45, - "op": "JUMPI", - "gas": 2045438, - "gasCost": 10, "depth": 2, + "gas": 2043949, + "gasCost": 10, + "op": "JUMPI", + "pc": 45, "stack": [ "0x92954362", "0x0", @@ -2963,32 +2963,32 @@ ] }, { - "pc": 46, - "op": "DUP1", - "gas": 2045428, - "gasCost": 3, "depth": 2, + "gas": 2043939, + "gasCost": 3, + "op": "DUP1", + "pc": 46, "stack": [ "0x92954362" ] }, { - "pc": 47, - "op": "PUSH4", - "gas": 2045425, - "gasCost": 3, "depth": 2, + "gas": 2043936, + "gasCost": 3, + "op": "PUSH4", + "pc": 47, "stack": [ "0x92954362", "0x92954362" ] }, { - "pc": 52, - "op": "EQ", - "gas": 2045422, - "gasCost": 3, "depth": 2, + "gas": 2043933, + "gasCost": 3, + "op": "EQ", + "pc": 52, "stack": [ "0x92954362", "0x92954362", @@ -2996,22 +2996,22 @@ ] }, { - "pc": 53, - "op": "PUSH3", - "gas": 2045419, - "gasCost": 3, "depth": 2, + "gas": 2043930, + "gasCost": 3, + "op": "PUSH3", + "pc": 53, "stack": [ "0x92954362", "0x0" ] }, { - "pc": 57, - "op": "JUMPI", - "gas": 2045416, - "gasCost": 10, "depth": 2, + "gas": 2043927, + "gasCost": 10, + "op": "JUMPI", + "pc": 57, "stack": [ "0x92954362", "0x0", @@ -3019,32 +3019,32 @@ ] }, { - "pc": 58, - "op": "DUP1", - "gas": 2045406, - "gasCost": 3, "depth": 2, + "gas": 2043917, + "gasCost": 3, + "op": "DUP1", + "pc": 58, "stack": [ "0x92954362" ] }, { - "pc": 59, - "op": "PUSH4", - "gas": 2045403, - "gasCost": 3, "depth": 2, + "gas": 2043914, + "gasCost": 3, + "op": "PUSH4", + "pc": 59, "stack": [ "0x92954362", "0x92954362" ] }, { - "pc": 64, - "op": "EQ", - "gas": 2045400, - "gasCost": 3, "depth": 2, + "gas": 2043911, + "gasCost": 3, + "op": "EQ", + "pc": 64, "stack": [ "0x92954362", "0x92954362", @@ -3052,22 +3052,22 @@ ] }, { - "pc": 65, - "op": "PUSH3", - "gas": 2045397, - "gasCost": 3, "depth": 2, + "gas": 2043908, + "gasCost": 3, + "op": "PUSH3", + "pc": 65, "stack": [ "0x92954362", "0x1" ] }, { - "pc": 69, - "op": "JUMPI", - "gas": 2045394, - "gasCost": 10, "depth": 2, + "gas": 2043905, + "gasCost": 10, + "op": "JUMPI", + "pc": 69, "stack": [ "0x92954362", "0x1", @@ -3075,42 +3075,42 @@ ] }, { - "pc": 419, - "op": "JUMPDEST", - "gas": 2045384, - "gasCost": 1, "depth": 2, + "gas": 2043895, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 419, "stack": [ "0x92954362" ] }, { - "pc": 420, - "op": "PUSH3", - "gas": 2045383, - "gasCost": 3, "depth": 2, + "gas": 2043894, + "gasCost": 3, + "op": "PUSH3", + "pc": 420, "stack": [ "0x92954362" ] }, { - "pc": 424, - "op": "PUSH3", - "gas": 2045380, - "gasCost": 3, "depth": 2, + "gas": 2043891, + "gasCost": 3, + "op": "PUSH3", + "pc": 424, "stack": [ "0x92954362", "0x1ad" ] }, { - "pc": 428, - "op": "JUMP", - "gas": 2045377, - "gasCost": 8, "depth": 2, + "gas": 2043888, + "gasCost": 8, + "op": "JUMP", + "pc": 428, "stack": [ "0x92954362", "0x1ad", @@ -3118,33 +3118,33 @@ ] }, { - "pc": 1971, - "op": "JUMPDEST", - "gas": 2045369, - "gasCost": 1, "depth": 2, + "gas": 2043880, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 1971, "stack": [ "0x92954362", "0x1ad" ] }, { - "pc": 1972, - "op": "PUSH1", - "gas": 2045368, - "gasCost": 3, "depth": 2, + "gas": 2043879, + "gasCost": 3, + "op": "PUSH1", + "pc": 1972, "stack": [ "0x92954362", "0x1ad" ] - }, - { - "pc": 1974, - "op": "MLOAD", - "gas": 2045365, - "gasCost": 3, + }, + { "depth": 2, + "gas": 2043876, + "gasCost": 3, + "op": "MLOAD", + "pc": 1974, "stack": [ "0x92954362", "0x1ad", @@ -3152,11 +3152,11 @@ ] }, { - "pc": 1975, - "op": "PUSH32", - "gas": 2045362, - "gasCost": 3, "depth": 2, + "gas": 2043873, + "gasCost": 3, + "op": "PUSH32", + "pc": 1975, "stack": [ "0x92954362", "0x1ad", @@ -3164,11 +3164,11 @@ ] }, { - "pc": 2008, - "op": "DUP2", - "gas": 2045359, - "gasCost": 3, "depth": 2, + "gas": 2043870, + "gasCost": 3, + "op": "DUP2", + "pc": 2008, "stack": [ "0x92954362", "0x1ad", @@ -3177,11 +3177,11 @@ ] }, { - "pc": 2009, - "op": "MSTORE", - "gas": 2045356, - "gasCost": 9, "depth": 2, + "gas": 2043867, + "gasCost": 9, + "op": "MSTORE", + "pc": 2009, "stack": [ "0x92954362", "0x1ad", @@ -3191,11 +3191,11 @@ ] }, { - "pc": 2010, - "op": "PUSH1", - "gas": 2045347, - "gasCost": 3, "depth": 2, + "gas": 2043858, + "gasCost": 3, + "op": "PUSH1", + "pc": 2010, "stack": [ "0x92954362", "0x1ad", @@ -3203,11 +3203,11 @@ ] }, { - "pc": 2012, - "op": "ADD", - "gas": 2045344, - "gasCost": 3, "depth": 2, + "gas": 2043855, + "gasCost": 3, + "op": "ADD", + "pc": 2012, "stack": [ "0x92954362", "0x1ad", @@ -3216,11 +3216,11 @@ ] }, { - "pc": 2013, - "op": "PUSH3", - "gas": 2045341, - "gasCost": 3, "depth": 2, + "gas": 2043852, + "gasCost": 3, + "op": "PUSH3", + "pc": 2013, "stack": [ "0x92954362", "0x1ad", @@ -3228,11 +3228,11 @@ ] }, { - "pc": 2017, - "op": "SWAP1", - "gas": 2045338, - "gasCost": 3, "depth": 2, + "gas": 2043849, + "gasCost": 3, + "op": "SWAP1", + "pc": 2017, "stack": [ "0x92954362", "0x1ad", @@ -3241,11 +3241,11 @@ ] }, { - "pc": 2018, - "op": "PUSH3", - "gas": 2045335, - "gasCost": 3, "depth": 2, + "gas": 2043846, + "gasCost": 3, + "op": "PUSH3", + "pc": 2018, "stack": [ "0x92954362", "0x1ad", @@ -3254,11 +3254,11 @@ ] }, { - "pc": 2022, - "op": "JUMP", - "gas": 2045332, - "gasCost": 8, "depth": 2, + "gas": 2043843, + "gasCost": 8, + "op": "JUMP", + "pc": 2022, "stack": [ "0x92954362", "0x1ad", @@ -3268,11 +3268,11 @@ ] }, { - "pc": 4174, - "op": "JUMPDEST", - "gas": 2045324, - "gasCost": 1, "depth": 2, + "gas": 2043835, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 4174, "stack": [ "0x92954362", "0x1ad", @@ -3281,11 +3281,11 @@ ] }, { - "pc": 4175, - "op": "PUSH1", - "gas": 2045323, - "gasCost": 3, "depth": 2, + "gas": 2043834, + "gasCost": 3, + "op": "PUSH1", + "pc": 4175, "stack": [ "0x92954362", "0x1ad", @@ -3294,11 +3294,11 @@ ] }, { - "pc": 4177, - "op": "PUSH1", - "gas": 2045320, - "gasCost": 3, "depth": 2, + "gas": 2043831, + "gasCost": 3, + "op": "PUSH1", + "pc": 4177, "stack": [ "0x92954362", "0x1ad", @@ -3308,11 +3308,11 @@ ] }, { - "pc": 4179, - "op": "DUP3", - "gas": 2045317, - "gasCost": 3, "depth": 2, + "gas": 2043828, + "gasCost": 3, + "op": "DUP3", + "pc": 4179, "stack": [ "0x92954362", "0x1ad", @@ -3323,11 +3323,11 @@ ] }, { - "pc": 4180, - "op": "ADD", - "gas": 2045314, - "gasCost": 3, "depth": 2, + "gas": 2043825, + "gasCost": 3, + "op": "ADD", + "pc": 4180, "stack": [ "0x92954362", "0x1ad", @@ -3339,11 +3339,11 @@ ] }, { - "pc": 4181, - "op": "SWAP1", - "gas": 2045311, - "gasCost": 3, "depth": 2, + "gas": 2043822, + "gasCost": 3, + "op": "SWAP1", + "pc": 4181, "stack": [ "0x92954362", "0x1ad", @@ -3354,11 +3354,11 @@ ] }, { - "pc": 4182, - "op": "POP", - "gas": 2045308, - "gasCost": 2, "depth": 2, + "gas": 2043819, + "gasCost": 2, + "op": "POP", + "pc": 4182, "stack": [ "0x92954362", "0x1ad", @@ -3369,11 +3369,11 @@ ] }, { - "pc": 4183, - "op": "DUP2", - "gas": 2045306, - "gasCost": 3, "depth": 2, + "gas": 2043817, + "gasCost": 3, + "op": "DUP2", + "pc": 4183, "stack": [ "0x92954362", "0x1ad", @@ -3383,11 +3383,11 @@ ] }, { - "pc": 4184, - "op": "DUP2", - "gas": 2045303, - "gasCost": 3, "depth": 2, + "gas": 2043814, + "gasCost": 3, + "op": "DUP2", + "pc": 4184, "stack": [ "0x92954362", "0x1ad", @@ -3398,11 +3398,11 @@ ] }, { - "pc": 4185, - "op": "SUB", - "gas": 2045300, - "gasCost": 3, "depth": 2, + "gas": 2043811, + "gasCost": 3, + "op": "SUB", + "pc": 4185, "stack": [ "0x92954362", "0x1ad", @@ -3414,11 +3414,11 @@ ] }, { - "pc": 4186, - "op": "PUSH1", - "gas": 2045297, - "gasCost": 3, "depth": 2, + "gas": 2043808, + "gasCost": 3, + "op": "PUSH1", + "pc": 4186, "stack": [ "0x92954362", "0x1ad", @@ -3429,11 +3429,11 @@ ] }, { - "pc": 4188, - "op": "DUP4", - "gas": 2045294, - "gasCost": 3, "depth": 2, + "gas": 2043805, + "gasCost": 3, + "op": "DUP4", + "pc": 4188, "stack": [ "0x92954362", "0x1ad", @@ -3445,11 +3445,11 @@ ] }, { - "pc": 4189, - "op": "ADD", - "gas": 2045291, - "gasCost": 3, "depth": 2, + "gas": 2043802, + "gasCost": 3, + "op": "ADD", + "pc": 4189, "stack": [ "0x92954362", "0x1ad", @@ -3462,11 +3462,11 @@ ] }, { - "pc": 4190, - "op": "MSTORE", - "gas": 2045288, - "gasCost": 6, "depth": 2, + "gas": 2043799, + "gasCost": 6, + "op": "MSTORE", + "pc": 4190, "stack": [ "0x92954362", "0x1ad", @@ -3478,11 +3478,11 @@ ] }, { - "pc": 4191, - "op": "PUSH3", - "gas": 2045282, - "gasCost": 3, "depth": 2, + "gas": 2043793, + "gasCost": 3, + "op": "PUSH3", + "pc": 4191, "stack": [ "0x92954362", "0x1ad", @@ -3492,11 +3492,11 @@ ] }, { - "pc": 4195, - "op": "DUP2", - "gas": 2045279, - "gasCost": 3, "depth": 2, + "gas": 2043790, + "gasCost": 3, + "op": "DUP2", + "pc": 4195, "stack": [ "0x92954362", "0x1ad", @@ -3507,11 +3507,11 @@ ] }, { - "pc": 4196, - "op": "PUSH3", - "gas": 2045276, - "gasCost": 3, "depth": 2, + "gas": 2043787, + "gasCost": 3, + "op": "PUSH3", + "pc": 4196, "stack": [ "0x92954362", "0x1ad", @@ -3523,11 +3523,11 @@ ] }, { - "pc": 4200, - "op": "JUMP", - "gas": 2045273, - "gasCost": 8, "depth": 2, + "gas": 2043784, + "gasCost": 8, + "op": "JUMP", + "pc": 4200, "stack": [ "0x92954362", "0x1ad", @@ -3540,11 +3540,11 @@ ] }, { - "pc": 4135, - "op": "JUMPDEST", - "gas": 2045265, - "gasCost": 1, "depth": 2, + "gas": 2043776, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 4135, "stack": [ "0x92954362", "0x1ad", @@ -3556,11 +3556,11 @@ ] }, { - "pc": 4136, - "op": "PUSH1", - "gas": 2045264, - "gasCost": 3, "depth": 2, + "gas": 2043775, + "gasCost": 3, + "op": "PUSH1", + "pc": 4136, "stack": [ "0x92954362", "0x1ad", @@ -3572,11 +3572,11 @@ ] }, { - "pc": 4138, - "op": "PUSH3", - "gas": 2045261, - "gasCost": 3, "depth": 2, + "gas": 2043772, + "gasCost": 3, + "op": "PUSH3", + "pc": 4138, "stack": [ "0x92954362", "0x1ad", @@ -3589,11 +3589,11 @@ ] }, { - "pc": 4142, - "op": "PUSH1", - "gas": 2045258, - "gasCost": 3, "depth": 2, + "gas": 2043769, + "gasCost": 3, + "op": "PUSH1", + "pc": 4142, "stack": [ "0x92954362", "0x1ad", @@ -3607,11 +3607,11 @@ ] }, { - "pc": 4144, - "op": "DUP4", - "gas": 2045255, - "gasCost": 3, "depth": 2, + "gas": 2043766, + "gasCost": 3, + "op": "DUP4", + "pc": 4144, "stack": [ "0x92954362", "0x1ad", @@ -3626,11 +3626,11 @@ ] }, { - "pc": 4145, - "op": "PUSH3", - "gas": 2045252, - "gasCost": 3, "depth": 2, + "gas": 2043763, + "gasCost": 3, + "op": "PUSH3", + "pc": 4145, "stack": [ "0x92954362", "0x1ad", @@ -3646,11 +3646,11 @@ ] }, { - "pc": 4149, - "op": "JUMP", - "gas": 2045249, - "gasCost": 8, "depth": 2, + "gas": 2043760, + "gasCost": 8, + "op": "JUMP", + "pc": 4149, "stack": [ "0x92954362", "0x1ad", @@ -3667,11 +3667,11 @@ ] }, { - "pc": 2771, - "op": "JUMPDEST", - "gas": 2045241, - "gasCost": 1, "depth": 2, + "gas": 2043752, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2771, "stack": [ "0x92954362", "0x1ad", @@ -3687,11 +3687,11 @@ ] }, { - "pc": 2772, - "op": "PUSH1", - "gas": 2045240, - "gasCost": 3, "depth": 2, + "gas": 2043751, + "gasCost": 3, + "op": "PUSH1", + "pc": 2772, "stack": [ "0x92954362", "0x1ad", @@ -3707,11 +3707,11 @@ ] }, { - "pc": 2774, - "op": "DUP3", - "gas": 2045237, - "gasCost": 3, "depth": 2, + "gas": 2043748, + "gasCost": 3, + "op": "DUP3", + "pc": 2774, "stack": [ "0x92954362", "0x1ad", @@ -3728,11 +3728,11 @@ ] }, { - "pc": 2775, - "op": "DUP3", - "gas": 2045234, - "gasCost": 3, "depth": 2, + "gas": 2043745, + "gasCost": 3, + "op": "DUP3", + "pc": 2775, "stack": [ "0x92954362", "0x1ad", @@ -3750,11 +3750,11 @@ ] }, { - "pc": 2776, - "op": "MSTORE", - "gas": 2045231, - "gasCost": 6, "depth": 2, + "gas": 2043742, + "gasCost": 6, + "op": "MSTORE", + "pc": 2776, "stack": [ "0x92954362", "0x1ad", @@ -3773,11 +3773,11 @@ ] }, { - "pc": 2777, - "op": "PUSH1", - "gas": 2045225, - "gasCost": 3, "depth": 2, + "gas": 2043736, + "gasCost": 3, + "op": "PUSH1", + "pc": 2777, "stack": [ "0x92954362", "0x1ad", @@ -3794,11 +3794,11 @@ ] }, { - "pc": 2779, - "op": "DUP3", - "gas": 2045222, - "gasCost": 3, "depth": 2, + "gas": 2043733, + "gasCost": 3, + "op": "DUP3", + "pc": 2779, "stack": [ "0x92954362", "0x1ad", @@ -3814,13 +3814,13 @@ "0x0", "0x20" ] - }, - { - "pc": 2780, - "op": "ADD", - "gas": 2045219, - "gasCost": 3, + }, + { "depth": 2, + "gas": 2043730, + "gasCost": 3, + "op": "ADD", + "pc": 2780, "stack": [ "0x92954362", "0x1ad", @@ -3839,11 +3839,11 @@ ] }, { - "pc": 2781, - "op": "SWAP1", - "gas": 2045216, - "gasCost": 3, "depth": 2, + "gas": 2043727, + "gasCost": 3, + "op": "SWAP1", + "pc": 2781, "stack": [ "0x92954362", "0x1ad", @@ -3861,11 +3861,11 @@ ] }, { - "pc": 2782, - "op": "POP", - "gas": 2045213, - "gasCost": 2, "depth": 2, + "gas": 2043724, + "gasCost": 2, + "op": "POP", + "pc": 2782, "stack": [ "0x92954362", "0x1ad", @@ -3883,11 +3883,11 @@ ] }, { - "pc": 2783, - "op": "SWAP3", - "gas": 2045211, - "gasCost": 3, "depth": 2, + "gas": 2043722, + "gasCost": 3, + "op": "SWAP3", + "pc": 2783, "stack": [ "0x92954362", "0x1ad", @@ -3904,11 +3904,11 @@ ] }, { - "pc": 2784, - "op": "SWAP2", - "gas": 2045208, - "gasCost": 3, "depth": 2, + "gas": 2043719, + "gasCost": 3, + "op": "SWAP2", + "pc": 2784, "stack": [ "0x92954362", "0x1ad", @@ -3925,11 +3925,11 @@ ] }, { - "pc": 2785, - "op": "POP", - "gas": 2045205, - "gasCost": 2, "depth": 2, + "gas": 2043716, + "gasCost": 2, + "op": "POP", + "pc": 2785, "stack": [ "0x92954362", "0x1ad", @@ -3946,11 +3946,11 @@ ] }, { - "pc": 2786, - "op": "POP", - "gas": 2045203, - "gasCost": 2, "depth": 2, + "gas": 2043714, + "gasCost": 2, + "op": "POP", + "pc": 2786, "stack": [ "0x92954362", "0x1ad", @@ -3966,11 +3966,11 @@ ] }, { - "pc": 2787, - "op": "JUMP", - "gas": 2045201, - "gasCost": 8, "depth": 2, + "gas": 2043712, + "gasCost": 8, + "op": "JUMP", + "pc": 2787, "stack": [ "0x92954362", "0x1ad", @@ -3985,11 +3985,11 @@ ] }, { - "pc": 4150, - "op": "JUMPDEST", - "gas": 2045193, - "gasCost": 1, "depth": 2, + "gas": 2043704, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 4150, "stack": [ "0x92954362", "0x1ad", @@ -4003,11 +4003,11 @@ ] }, { - "pc": 4151, - "op": "SWAP2", - "gas": 2045192, - "gasCost": 3, "depth": 2, + "gas": 2043703, + "gasCost": 3, + "op": "SWAP2", + "pc": 4151, "stack": [ "0x92954362", "0x1ad", @@ -4021,11 +4021,11 @@ ] }, { - "pc": 4152, - "op": "POP", - "gas": 2045189, - "gasCost": 2, "depth": 2, + "gas": 2043700, + "gasCost": 2, + "op": "POP", + "pc": 4152, "stack": [ "0x92954362", "0x1ad", @@ -4039,11 +4039,11 @@ ] }, { - "pc": 4153, - "op": "PUSH3", - "gas": 2045187, - "gasCost": 3, "depth": 2, + "gas": 2043698, + "gasCost": 3, + "op": "PUSH3", + "pc": 4153, "stack": [ "0x92954362", "0x1ad", @@ -4056,11 +4056,11 @@ ] }, { - "pc": 4157, - "op": "DUP3", - "gas": 2045184, - "gasCost": 3, "depth": 2, + "gas": 2043695, + "gasCost": 3, + "op": "DUP3", + "pc": 4157, "stack": [ "0x92954362", "0x1ad", @@ -4074,11 +4074,11 @@ ] }, { - "pc": 4158, - "op": "PUSH3", - "gas": 2045181, - "gasCost": 3, "depth": 2, + "gas": 2043692, + "gasCost": 3, + "op": "PUSH3", + "pc": 4158, "stack": [ "0x92954362", "0x1ad", @@ -4093,11 +4093,11 @@ ] }, { - "pc": 4162, - "op": "JUMP", - "gas": 2045178, - "gasCost": 8, "depth": 2, + "gas": 2043689, + "gasCost": 8, + "op": "JUMP", + "pc": 4162, "stack": [ "0x92954362", "0x1ad", @@ -4113,11 +4113,11 @@ ] }, { - "pc": 4094, - "op": "JUMPDEST", - "gas": 2045170, - "gasCost": 1, "depth": 2, + "gas": 2043681, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 4094, "stack": [ "0x92954362", "0x1ad", @@ -4132,11 +4132,11 @@ ] }, { - "pc": 4095, - "op": "PUSH32", - "gas": 2045169, - "gasCost": 3, "depth": 2, + "gas": 2043680, + "gasCost": 3, + "op": "PUSH32", + "pc": 4095, "stack": [ "0x92954362", "0x1ad", @@ -4151,11 +4151,11 @@ ] }, { - "pc": 4128, - "op": "PUSH1", - "gas": 2045166, - "gasCost": 3, "depth": 2, + "gas": 2043677, + "gasCost": 3, + "op": "PUSH1", + "pc": 4128, "stack": [ "0x92954362", "0x1ad", @@ -4171,11 +4171,11 @@ ] }, { - "pc": 4130, - "op": "DUP3", - "gas": 2045163, - "gasCost": 3, "depth": 2, + "gas": 2043674, + "gasCost": 3, + "op": "DUP3", + "pc": 4130, "stack": [ "0x92954362", "0x1ad", @@ -4192,11 +4192,11 @@ ] }, { - "pc": 4131, - "op": "ADD", - "gas": 2045160, - "gasCost": 3, "depth": 2, + "gas": 2043671, + "gasCost": 3, + "op": "ADD", + "pc": 4131, "stack": [ "0x92954362", "0x1ad", @@ -4214,11 +4214,11 @@ ] }, { - "pc": 4132, - "op": "MSTORE", - "gas": 2045157, - "gasCost": 6, "depth": 2, + "gas": 2043668, + "gasCost": 6, + "op": "MSTORE", + "pc": 4132, "stack": [ "0x92954362", "0x1ad", @@ -4235,11 +4235,11 @@ ] }, { - "pc": 4133, - "op": "POP", - "gas": 2045151, - "gasCost": 2, "depth": 2, + "gas": 2043662, + "gasCost": 2, + "op": "POP", + "pc": 4133, "stack": [ "0x92954362", "0x1ad", @@ -4254,11 +4254,11 @@ ] }, { - "pc": 4134, - "op": "JUMP", - "gas": 2045149, - "gasCost": 8, "depth": 2, + "gas": 2043660, + "gasCost": 8, + "op": "JUMP", + "pc": 4134, "stack": [ "0x92954362", "0x1ad", @@ -4272,11 +4272,11 @@ ] }, { - "pc": 4163, - "op": "JUMPDEST", - "gas": 2045141, - "gasCost": 1, "depth": 2, + "gas": 2043652, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 4163, "stack": [ "0x92954362", "0x1ad", @@ -4289,11 +4289,11 @@ ] }, { - "pc": 4164, - "op": "PUSH1", - "gas": 2045140, - "gasCost": 3, "depth": 2, + "gas": 2043651, + "gasCost": 3, + "op": "PUSH1", + "pc": 4164, "stack": [ "0x92954362", "0x1ad", @@ -4306,11 +4306,11 @@ ] }, { - "pc": 4166, - "op": "DUP3", - "gas": 2045137, - "gasCost": 3, "depth": 2, + "gas": 2043648, + "gasCost": 3, + "op": "DUP3", + "pc": 4166, "stack": [ "0x92954362", "0x1ad", @@ -4324,11 +4324,11 @@ ] }, { - "pc": 4167, - "op": "ADD", - "gas": 2045134, - "gasCost": 3, "depth": 2, + "gas": 2043645, + "gasCost": 3, + "op": "ADD", + "pc": 4167, "stack": [ "0x92954362", "0x1ad", @@ -4343,11 +4343,11 @@ ] }, { - "pc": 4168, - "op": "SWAP1", - "gas": 2045131, - "gasCost": 3, "depth": 2, + "gas": 2043642, + "gasCost": 3, + "op": "SWAP1", + "pc": 4168, "stack": [ "0x92954362", "0x1ad", @@ -4361,11 +4361,11 @@ ] }, { - "pc": 4169, - "op": "POP", - "gas": 2045128, - "gasCost": 2, "depth": 2, + "gas": 2043639, + "gasCost": 2, + "op": "POP", + "pc": 4169, "stack": [ "0x92954362", "0x1ad", @@ -4379,11 +4379,11 @@ ] }, { - "pc": 4170, - "op": "SWAP2", - "gas": 2045126, - "gasCost": 3, "depth": 2, + "gas": 2043637, + "gasCost": 3, + "op": "SWAP2", + "pc": 4170, "stack": [ "0x92954362", "0x1ad", @@ -4396,11 +4396,11 @@ ] }, { - "pc": 4171, - "op": "SWAP1", - "gas": 2045123, - "gasCost": 3, "depth": 2, + "gas": 2043634, + "gasCost": 3, + "op": "SWAP1", + "pc": 4171, "stack": [ "0x92954362", "0x1ad", @@ -4413,11 +4413,11 @@ ] }, { - "pc": 4172, - "op": "POP", - "gas": 2045120, - "gasCost": 2, "depth": 2, + "gas": 2043631, + "gasCost": 2, + "op": "POP", + "pc": 4172, "stack": [ "0x92954362", "0x1ad", @@ -4430,11 +4430,11 @@ ] }, { - "pc": 4173, - "op": "JUMP", - "gas": 2045118, - "gasCost": 8, "depth": 2, + "gas": 2043629, + "gasCost": 8, + "op": "JUMP", + "pc": 4173, "stack": [ "0x92954362", "0x1ad", @@ -4446,11 +4446,11 @@ ] }, { - "pc": 4201, - "op": "JUMPDEST", - "gas": 2045110, - "gasCost": 1, "depth": 2, + "gas": 2043621, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 4201, "stack": [ "0x92954362", "0x1ad", @@ -4461,11 +4461,11 @@ ] }, { - "pc": 4202, - "op": "SWAP1", - "gas": 2045109, - "gasCost": 3, "depth": 2, + "gas": 2043620, + "gasCost": 3, + "op": "SWAP1", + "pc": 4202, "stack": [ "0x92954362", "0x1ad", @@ -4476,11 +4476,11 @@ ] }, { - "pc": 4203, - "op": "POP", - "gas": 2045106, - "gasCost": 2, "depth": 2, + "gas": 2043617, + "gasCost": 2, + "op": "POP", + "pc": 4203, "stack": [ "0x92954362", "0x1ad", @@ -4491,11 +4491,11 @@ ] }, { - "pc": 4204, - "op": "SWAP2", - "gas": 2045104, - "gasCost": 3, "depth": 2, + "gas": 2043615, + "gasCost": 3, + "op": "SWAP2", + "pc": 4204, "stack": [ "0x92954362", "0x1ad", @@ -4505,11 +4505,11 @@ ] }, { - "pc": 4205, - "op": "SWAP1", - "gas": 2045101, - "gasCost": 3, "depth": 2, + "gas": 2043612, + "gasCost": 3, + "op": "SWAP1", + "pc": 4205, "stack": [ "0x92954362", "0x1ad", @@ -4519,11 +4519,11 @@ ] }, { - "pc": 4206, - "op": "POP", - "gas": 2045098, - "gasCost": 2, "depth": 2, + "gas": 2043609, + "gasCost": 2, + "op": "POP", + "pc": 4206, "stack": [ "0x92954362", "0x1ad", @@ -4533,11 +4533,11 @@ ] }, { - "pc": 4207, - "op": "JUMP", - "gas": 2045096, - "gasCost": 8, "depth": 2, + "gas": 2043607, + "gasCost": 8, + "op": "JUMP", + "pc": 4207, "stack": [ "0x92954362", "0x1ad", @@ -4546,11 +4546,11 @@ ] }, { - "pc": 2023, - "op": "JUMPDEST", - "gas": 2045088, - "gasCost": 1, "depth": 2, + "gas": 2043599, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2023, "stack": [ "0x92954362", "0x1ad", @@ -4558,23 +4558,23 @@ ] }, { - "pc": 2024, - "op": "PUSH1", - "gas": 2045087, - "gasCost": 3, "depth": 2, + "gas": 2043598, + "gasCost": 3, + "op": "PUSH1", + "pc": 2024, "stack": [ "0x92954362", "0x1ad", "0xe4" ] - }, - { - "pc": 2026, - "op": "MLOAD", - "gas": 2045084, - "gasCost": 3, + }, + { "depth": 2, + "gas": 2043595, + "gasCost": 3, + "op": "MLOAD", + "pc": 2026, "stack": [ "0x92954362", "0x1ad", @@ -4583,11 +4583,11 @@ ] }, { - "pc": 2027, - "op": "DUP1", - "gas": 2045081, - "gasCost": 3, "depth": 2, + "gas": 2043592, + "gasCost": 3, + "op": "DUP1", + "pc": 2027, "stack": [ "0x92954362", "0x1ad", @@ -4596,11 +4596,11 @@ ] }, { - "pc": 2028, - "op": "SWAP2", - "gas": 2045078, - "gasCost": 3, "depth": 2, + "gas": 2043589, + "gasCost": 3, + "op": "SWAP2", + "pc": 2028, "stack": [ "0x92954362", "0x1ad", @@ -4610,11 +4610,11 @@ ] }, { - "pc": 2029, - "op": "SUB", - "gas": 2045075, - "gasCost": 3, "depth": 2, + "gas": 2043586, + "gasCost": 3, + "op": "SUB", + "pc": 2029, "stack": [ "0x92954362", "0x1ad", @@ -4624,11 +4624,11 @@ ] }, { - "pc": 2030, - "op": "SWAP1", - "gas": 2045072, - "gasCost": 3, "depth": 2, + "gas": 2043583, + "gasCost": 3, + "op": "SWAP1", + "pc": 2030, "stack": [ "0x92954362", "0x1ad", @@ -4637,11 +4637,11 @@ ] }, { - "pc": 2031, - "op": "REVERT", - "gas": 2045069, - "gasCost": 0, "depth": 2, + "gas": 2043580, + "gasCost": 0, + "op": "REVERT", + "pc": 2031, "stack": [ "0x92954362", "0x1ad", @@ -4650,11 +4650,11 @@ ] }, { - "pc": 1259, - "op": "SWAP3", - "gas": 2077537, - "gasCost": 3, "depth": 1, + "gas": 2076025, + "gasCost": 3, + "op": "SWAP3", + "pc": 1259, "stack": [ "0x7f29c394", "0x17f", @@ -4667,11 +4667,11 @@ ] }, { - "pc": 1260, - "op": "POP", - "gas": 2077534, - "gasCost": 2, "depth": 1, + "gas": 2076022, + "gasCost": 2, + "op": "POP", + "pc": 1260, "stack": [ "0x7f29c394", "0x17f", @@ -4684,11 +4684,11 @@ ] }, { - "pc": 1261, - "op": "POP", - "gas": 2077532, - "gasCost": 2, "depth": 1, + "gas": 2076020, + "gasCost": 2, + "op": "POP", + "pc": 1261, "stack": [ "0x7f29c394", "0x17f", @@ -4700,11 +4700,11 @@ ] }, { - "pc": 1262, - "op": "POP", - "gas": 2077530, - "gasCost": 2, "depth": 1, + "gas": 2076018, + "gasCost": 2, + "op": "POP", + "pc": 1262, "stack": [ "0x7f29c394", "0x17f", @@ -4715,11 +4715,11 @@ ] }, { - "pc": 1263, - "op": "DUP1", - "gas": 2077528, - "gasCost": 3, "depth": 1, + "gas": 2076016, + "gasCost": 3, + "op": "DUP1", + "pc": 1263, "stack": [ "0x7f29c394", "0x17f", @@ -4729,11 +4729,11 @@ ] }, { - "pc": 1264, - "op": "ISZERO", - "gas": 2077525, - "gasCost": 3, "depth": 1, + "gas": 2076013, + "gasCost": 3, + "op": "ISZERO", + "pc": 1264, "stack": [ "0x7f29c394", "0x17f", @@ -4744,11 +4744,11 @@ ] }, { - "pc": 1265, - "op": "PUSH3", - "gas": 2077522, - "gasCost": 3, "depth": 1, + "gas": 2076010, + "gasCost": 3, + "op": "PUSH3", + "pc": 1265, "stack": [ "0x7f29c394", "0x17f", @@ -4759,11 +4759,11 @@ ] }, { - "pc": 1269, - "op": "JUMPI", - "gas": 2077519, - "gasCost": 10, "depth": 1, + "gas": 2076007, + "gasCost": 10, + "op": "JUMPI", + "pc": 1269, "stack": [ "0x7f29c394", "0x17f", @@ -4775,11 +4775,11 @@ ] }, { - "pc": 1273, - "op": "JUMPDEST", - "gas": 2077509, - "gasCost": 1, "depth": 1, + "gas": 2075997, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 1273, "stack": [ "0x7f29c394", "0x17f", @@ -4789,11 +4789,11 @@ ] }, { - "pc": 1274, - "op": "PUSH3", - "gas": 2077508, - "gasCost": 3, "depth": 1, + "gas": 2075996, + "gasCost": 3, + "op": "PUSH3", + "pc": 1274, "stack": [ "0x7f29c394", "0x17f", @@ -4803,11 +4803,11 @@ ] }, { - "pc": 1278, - "op": "JUMPI", - "gas": 2077505, - "gasCost": 10, "depth": 1, + "gas": 2075993, + "gasCost": 10, + "op": "JUMPI", + "pc": 1278, "stack": [ "0x7f29c394", "0x17f", @@ -4818,11 +4818,11 @@ ] }, { - "pc": 1279, - "op": "PUSH3", - "gas": 2077495, - "gasCost": 3, "depth": 1, + "gas": 2075983, + "gasCost": 3, + "op": "PUSH3", + "pc": 1279, "stack": [ "0x7f29c394", "0x17f", @@ -4831,11 +4831,11 @@ ] }, { - "pc": 1283, - "op": "PUSH3", - "gas": 2077492, - "gasCost": 3, "depth": 1, + "gas": 2075980, + "gasCost": 3, + "op": "PUSH3", + "pc": 1283, "stack": [ "0x7f29c394", "0x17f", @@ -4845,11 +4845,11 @@ ] }, { - "pc": 1287, - "op": "JUMP", - "gas": 2077489, - "gasCost": 8, "depth": 1, + "gas": 2075977, + "gasCost": 8, + "op": "JUMP", + "pc": 1287, "stack": [ "0x7f29c394", "0x17f", @@ -4860,11 +4860,11 @@ ] }, { - "pc": 3240, - "op": "JUMPDEST", - "gas": 2077481, - "gasCost": 1, "depth": 1, + "gas": 2075969, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 3240, "stack": [ "0x7f29c394", "0x17f", @@ -4874,11 +4874,11 @@ ] }, { - "pc": 3241, - "op": "PUSH1", - "gas": 2077480, - "gasCost": 3, "depth": 1, + "gas": 2075968, + "gasCost": 3, + "op": "PUSH1", + "pc": 3241, "stack": [ "0x7f29c394", "0x17f", @@ -4888,11 +4888,11 @@ ] }, { - "pc": 3243, - "op": "PUSH1", - "gas": 2077477, - "gasCost": 3, "depth": 1, + "gas": 2075965, + "gasCost": 3, + "op": "PUSH1", + "pc": 3243, "stack": [ "0x7f29c394", "0x17f", @@ -4903,11 +4903,11 @@ ] }, { - "pc": 3245, - "op": "RETURNDATASIZE", - "gas": 2077474, - "gasCost": 2, "depth": 1, + "gas": 2075962, + "gasCost": 2, + "op": "RETURNDATASIZE", + "pc": 3245, "stack": [ "0x7f29c394", "0x17f", @@ -4919,11 +4919,11 @@ ] }, { - "pc": 3246, - "op": "GT", - "gas": 2077472, - "gasCost": 3, "depth": 1, + "gas": 2075960, + "gasCost": 3, + "op": "GT", + "pc": 3246, "stack": [ "0x7f29c394", "0x17f", @@ -4936,11 +4936,11 @@ ] }, { - "pc": 3247, - "op": "ISZERO", - "gas": 2077469, - "gasCost": 3, "depth": 1, + "gas": 2075957, + "gasCost": 3, + "op": "ISZERO", + "pc": 3247, "stack": [ "0x7f29c394", "0x17f", @@ -4952,11 +4952,11 @@ ] }, { - "pc": 3248, - "op": "PUSH3", - "gas": 2077466, - "gasCost": 3, "depth": 1, + "gas": 2075954, + "gasCost": 3, + "op": "PUSH3", + "pc": 3248, "stack": [ "0x7f29c394", "0x17f", @@ -4968,11 +4968,11 @@ ] }, { - "pc": 3252, - "op": "JUMPI", - "gas": 2077463, - "gasCost": 10, "depth": 1, + "gas": 2075951, + "gasCost": 10, + "op": "JUMPI", + "pc": 3252, "stack": [ "0x7f29c394", "0x17f", @@ -4985,11 +4985,11 @@ ] }, { - "pc": 3253, - "op": "PUSH1", - "gas": 2077453, - "gasCost": 3, "depth": 1, + "gas": 2075941, + "gasCost": 3, + "op": "PUSH1", + "pc": 3253, "stack": [ "0x7f29c394", "0x17f", @@ -5000,11 +5000,11 @@ ] }, { - "pc": 3255, - "op": "PUSH1", - "gas": 2077450, - "gasCost": 3, "depth": 1, + "gas": 2075938, + "gasCost": 3, + "op": "PUSH1", + "pc": 3255, "stack": [ "0x7f29c394", "0x17f", @@ -5016,11 +5016,11 @@ ] }, { - "pc": 3257, - "op": "DUP1", - "gas": 2077447, - "gasCost": 3, "depth": 1, + "gas": 2075935, + "gasCost": 3, + "op": "DUP1", + "pc": 3257, "stack": [ "0x7f29c394", "0x17f", @@ -5033,11 +5033,11 @@ ] }, { - "pc": 3258, - "op": "RETURNDATACOPY", - "gas": 2077444, - "gasCost": 6, "depth": 1, + "gas": 2075932, + "gasCost": 6, + "op": "RETURNDATACOPY", + "pc": 3258, "stack": [ "0x7f29c394", "0x17f", @@ -5051,11 +5051,11 @@ ] }, { - "pc": 3259, - "op": "PUSH3", - "gas": 2077438, - "gasCost": 3, "depth": 1, + "gas": 2075926, + "gasCost": 3, + "op": "PUSH3", + "pc": 3259, "stack": [ "0x7f29c394", "0x17f", @@ -5066,11 +5066,11 @@ ] }, { - "pc": 3263, - "op": "PUSH1", - "gas": 2077435, - "gasCost": 3, "depth": 1, + "gas": 2075923, + "gasCost": 3, + "op": "PUSH1", + "pc": 3263, "stack": [ "0x7f29c394", "0x17f", @@ -5082,11 +5082,11 @@ ] }, { - "pc": 3265, - "op": "MLOAD", - "gas": 2077432, - "gasCost": 3, "depth": 1, + "gas": 2075920, + "gasCost": 3, + "op": "MLOAD", + "pc": 3265, "stack": [ "0x7f29c394", "0x17f", @@ -5099,11 +5099,11 @@ ] }, { - "pc": 3266, - "op": "PUSH3", - "gas": 2077429, - "gasCost": 3, "depth": 1, + "gas": 2075917, + "gasCost": 3, + "op": "PUSH3", + "pc": 3266, "stack": [ "0x7f29c394", "0x17f", @@ -5116,11 +5116,11 @@ ] }, { - "pc": 3270, - "op": "JUMP", - "gas": 2077426, - "gasCost": 8, "depth": 1, + "gas": 2075914, + "gasCost": 8, + "op": "JUMP", + "pc": 3270, "stack": [ "0x7f29c394", "0x17f", @@ -5134,11 +5134,11 @@ ] }, { - "pc": 3227, - "op": "JUMPDEST", - "gas": 2077418, - "gasCost": 1, "depth": 1, + "gas": 2075906, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 3227, "stack": [ "0x7f29c394", "0x17f", @@ -5151,11 +5151,11 @@ ] }, { - "pc": 3228, - "op": "PUSH1", - "gas": 2077417, - "gasCost": 3, "depth": 1, + "gas": 2075905, + "gasCost": 3, + "op": "PUSH1", + "pc": 3228, "stack": [ "0x7f29c394", "0x17f", @@ -5168,11 +5168,11 @@ ] }, { - "pc": 3230, - "op": "DUP2", - "gas": 2077414, - "gasCost": 3, "depth": 1, + "gas": 2075902, + "gasCost": 3, + "op": "DUP2", + "pc": 3230, "stack": [ "0x7f29c394", "0x17f", @@ -5186,11 +5186,11 @@ ] }, { - "pc": 3231, - "op": "PUSH1", - "gas": 2077411, - "gasCost": 3, "depth": 1, + "gas": 2075899, + "gasCost": 3, + "op": "PUSH1", + "pc": 3231, "stack": [ "0x7f29c394", "0x17f", @@ -5205,11 +5205,11 @@ ] }, { - "pc": 3233, - "op": "SHR", - "gas": 2077408, - "gasCost": 3, "depth": 1, + "gas": 2075896, + "gasCost": 3, + "op": "SHR", + "pc": 3233, "stack": [ "0x7f29c394", "0x17f", @@ -5225,11 +5225,11 @@ ] }, { - "pc": 3234, - "op": "SWAP1", - "gas": 2077405, - "gasCost": 3, "depth": 1, + "gas": 2075893, + "gasCost": 3, + "op": "SWAP1", + "pc": 3234, "stack": [ "0x7f29c394", "0x17f", @@ -5244,11 +5244,11 @@ ] }, { - "pc": 3235, - "op": "POP", - "gas": 2077402, - "gasCost": 2, "depth": 1, + "gas": 2075890, + "gasCost": 2, + "op": "POP", + "pc": 3235, "stack": [ "0x7f29c394", "0x17f", @@ -5263,11 +5263,11 @@ ] }, { - "pc": 3236, - "op": "SWAP2", - "gas": 2077400, - "gasCost": 3, "depth": 1, + "gas": 2075888, + "gasCost": 3, + "op": "SWAP2", + "pc": 3236, "stack": [ "0x7f29c394", "0x17f", @@ -5281,11 +5281,11 @@ ] }, { - "pc": 3237, - "op": "SWAP1", - "gas": 2077397, - "gasCost": 3, "depth": 1, + "gas": 2075885, + "gasCost": 3, + "op": "SWAP1", + "pc": 3237, "stack": [ "0x7f29c394", "0x17f", @@ -5299,11 +5299,11 @@ ] }, { - "pc": 3238, - "op": "POP", - "gas": 2077394, - "gasCost": 2, "depth": 1, + "gas": 2075882, + "gasCost": 2, + "op": "POP", + "pc": 3238, "stack": [ "0x7f29c394", "0x17f", @@ -5317,11 +5317,11 @@ ] }, { - "pc": 3239, - "op": "JUMP", - "gas": 2077392, - "gasCost": 8, "depth": 1, + "gas": 2075880, + "gasCost": 8, + "op": "JUMP", + "pc": 3239, "stack": [ "0x7f29c394", "0x17f", @@ -5334,11 +5334,11 @@ ] }, { - "pc": 3271, - "op": "JUMPDEST", - "gas": 2077384, - "gasCost": 1, "depth": 1, + "gas": 2075872, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 3271, "stack": [ "0x7f29c394", "0x17f", @@ -5350,11 +5350,11 @@ ] }, { - "pc": 3272, - "op": "SWAP1", - "gas": 2077383, - "gasCost": 3, "depth": 1, + "gas": 2075871, + "gasCost": 3, + "op": "SWAP1", + "pc": 3272, "stack": [ "0x7f29c394", "0x17f", @@ -5366,11 +5366,11 @@ ] }, { - "pc": 3273, - "op": "POP", - "gas": 2077380, - "gasCost": 2, "depth": 1, + "gas": 2075868, + "gasCost": 2, + "op": "POP", + "pc": 3273, "stack": [ "0x7f29c394", "0x17f", @@ -5382,11 +5382,11 @@ ] }, { - "pc": 3274, - "op": "JUMPDEST", - "gas": 2077378, - "gasCost": 1, "depth": 1, + "gas": 2075866, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 3274, "stack": [ "0x7f29c394", "0x17f", @@ -5397,11 +5397,11 @@ ] }, { - "pc": 3275, - "op": "SWAP1", - "gas": 2077377, - "gasCost": 3, "depth": 1, + "gas": 2075865, + "gasCost": 3, + "op": "SWAP1", + "pc": 3275, "stack": [ "0x7f29c394", "0x17f", @@ -5412,11 +5412,11 @@ ] }, { - "pc": 3276, - "op": "JUMP", - "gas": 2077374, - "gasCost": 8, "depth": 1, + "gas": 2075862, + "gasCost": 8, + "op": "JUMP", + "pc": 3276, "stack": [ "0x7f29c394", "0x17f", @@ -5427,11 +5427,11 @@ ] }, { - "pc": 1288, - "op": "JUMPDEST", - "gas": 2077366, - "gasCost": 1, "depth": 1, + "gas": 2075854, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 1288, "stack": [ "0x7f29c394", "0x17f", @@ -5441,11 +5441,11 @@ ] }, { - "pc": 1289, - "op": "DUP1", - "gas": 2077365, - "gasCost": 3, "depth": 1, + "gas": 2075853, + "gasCost": 3, + "op": "DUP1", + "pc": 1289, "stack": [ "0x7f29c394", "0x17f", @@ -5455,11 +5455,11 @@ ] }, { - "pc": 1290, - "op": "PUSH4", - "gas": 2077362, - "gasCost": 3, "depth": 1, + "gas": 2075850, + "gasCost": 3, + "op": "PUSH4", + "pc": 1290, "stack": [ "0x7f29c394", "0x17f", @@ -5470,11 +5470,11 @@ ] }, { - "pc": 1295, - "op": "SUB", - "gas": 2077359, - "gasCost": 3, "depth": 1, + "gas": 2075847, + "gasCost": 3, + "op": "SUB", + "pc": 1295, "stack": [ "0x7f29c394", "0x17f", @@ -5486,11 +5486,11 @@ ] }, { - "pc": 1296, - "op": "PUSH3", - "gas": 2077356, - "gasCost": 3, "depth": 1, + "gas": 2075844, + "gasCost": 3, + "op": "PUSH3", + "pc": 1296, "stack": [ "0x7f29c394", "0x17f", @@ -5501,11 +5501,11 @@ ] }, { - "pc": 1300, - "op": "JUMPI", - "gas": 2077353, - "gasCost": 10, "depth": 1, + "gas": 2075841, + "gasCost": 10, + "op": "JUMPI", + "pc": 1300, "stack": [ "0x7f29c394", "0x17f", @@ -5517,11 +5517,11 @@ ] }, { - "pc": 1301, - "op": "POP", - "gas": 2077343, - "gasCost": 2, "depth": 1, + "gas": 2075831, + "gasCost": 2, + "op": "POP", + "pc": 1301, "stack": [ "0x7f29c394", "0x17f", @@ -5531,11 +5531,11 @@ ] }, { - "pc": 1302, - "op": "PUSH3", - "gas": 2077341, - "gasCost": 3, "depth": 1, + "gas": 2075829, + "gasCost": 3, + "op": "PUSH3", + "pc": 1302, "stack": [ "0x7f29c394", "0x17f", @@ -5544,11 +5544,11 @@ ] }, { - "pc": 1306, - "op": "PUSH3", - "gas": 2077338, - "gasCost": 3, "depth": 1, + "gas": 2075826, + "gasCost": 3, + "op": "PUSH3", + "pc": 1306, "stack": [ "0x7f29c394", "0x17f", @@ -5558,11 +5558,11 @@ ] }, { - "pc": 1310, - "op": "JUMP", - "gas": 2077335, - "gasCost": 8, "depth": 1, + "gas": 2075823, + "gasCost": 8, + "op": "JUMP", + "pc": 1310, "stack": [ "0x7f29c394", "0x17f", @@ -5573,11 +5573,11 @@ ] }, { - "pc": 3395, - "op": "JUMPDEST", - "gas": 2077327, - "gasCost": 1, "depth": 1, + "gas": 2075815, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 3395, "stack": [ "0x7f29c394", "0x17f", @@ -5587,11 +5587,11 @@ ] }, { - "pc": 3396, - "op": "PUSH1", - "gas": 2077326, - "gasCost": 3, "depth": 1, + "gas": 2075814, + "gasCost": 3, + "op": "PUSH1", + "pc": 3396, "stack": [ "0x7f29c394", "0x17f", @@ -5601,11 +5601,11 @@ ] }, { - "pc": 3398, - "op": "PUSH1", - "gas": 2077323, - "gasCost": 3, "depth": 1, + "gas": 2075811, + "gasCost": 3, + "op": "PUSH1", + "pc": 3398, "stack": [ "0x7f29c394", "0x17f", @@ -5616,11 +5616,11 @@ ] }, { - "pc": 3400, - "op": "RETURNDATASIZE", - "gas": 2077320, - "gasCost": 2, "depth": 1, + "gas": 2075808, + "gasCost": 2, + "op": "RETURNDATASIZE", + "pc": 3400, "stack": [ "0x7f29c394", "0x17f", @@ -5632,11 +5632,11 @@ ] }, { - "pc": 3401, - "op": "LT", - "gas": 2077318, - "gasCost": 3, "depth": 1, + "gas": 2075806, + "gasCost": 3, + "op": "LT", + "pc": 3401, "stack": [ "0x7f29c394", "0x17f", @@ -5649,11 +5649,11 @@ ] }, { - "pc": 3402, - "op": "PUSH3", - "gas": 2077315, - "gasCost": 3, "depth": 1, + "gas": 2075803, + "gasCost": 3, + "op": "PUSH3", + "pc": 3402, "stack": [ "0x7f29c394", "0x17f", @@ -5665,11 +5665,11 @@ ] }, { - "pc": 3406, - "op": "JUMPI", - "gas": 2077312, - "gasCost": 10, "depth": 1, + "gas": 2075800, + "gasCost": 10, + "op": "JUMPI", + "pc": 3406, "stack": [ "0x7f29c394", "0x17f", @@ -5682,11 +5682,11 @@ ] }, { - "pc": 3407, - "op": "PUSH3", - "gas": 2077302, - "gasCost": 3, "depth": 1, + "gas": 2075790, + "gasCost": 3, + "op": "PUSH3", + "pc": 3407, "stack": [ "0x7f29c394", "0x17f", @@ -5697,11 +5697,11 @@ ] }, { - "pc": 3411, - "op": "PUSH3", - "gas": 2077299, - "gasCost": 3, "depth": 1, + "gas": 2075787, + "gasCost": 3, + "op": "PUSH3", + "pc": 3411, "stack": [ "0x7f29c394", "0x17f", @@ -5713,11 +5713,11 @@ ] }, { - "pc": 3415, - "op": "JUMP", - "gas": 2077296, - "gasCost": 8, "depth": 1, + "gas": 2075784, + "gasCost": 8, + "op": "JUMP", + "pc": 3415, "stack": [ "0x7f29c394", "0x17f", @@ -5730,11 +5730,11 @@ ] }, { - "pc": 2506, - "op": "JUMPDEST", - "gas": 2077288, - "gasCost": 1, "depth": 1, + "gas": 2075776, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2506, "stack": [ "0x7f29c394", "0x17f", @@ -5746,11 +5746,11 @@ ] }, { - "pc": 2507, - "op": "PUSH1", - "gas": 2077287, - "gasCost": 3, "depth": 1, + "gas": 2075775, + "gasCost": 3, + "op": "PUSH1", + "pc": 2507, "stack": [ "0x7f29c394", "0x17f", @@ -5762,11 +5762,11 @@ ] }, { - "pc": 2509, - "op": "PUSH1", - "gas": 2077284, - "gasCost": 3, "depth": 1, + "gas": 2075772, + "gasCost": 3, + "op": "PUSH1", + "pc": 2509, "stack": [ "0x7f29c394", "0x17f", @@ -5779,11 +5779,11 @@ ] }, { - "pc": 2511, - "op": "MLOAD", - "gas": 2077281, - "gasCost": 3, "depth": 1, + "gas": 2075769, + "gasCost": 3, + "op": "MLOAD", + "pc": 2511, "stack": [ "0x7f29c394", "0x17f", @@ -5797,11 +5797,11 @@ ] }, { - "pc": 2512, - "op": "SWAP1", - "gas": 2077278, - "gasCost": 3, "depth": 1, + "gas": 2075766, + "gasCost": 3, + "op": "SWAP1", + "pc": 2512, "stack": [ "0x7f29c394", "0x17f", @@ -5815,11 +5815,11 @@ ] }, { - "pc": 2513, - "op": "POP", - "gas": 2077275, - "gasCost": 2, "depth": 1, + "gas": 2075763, + "gasCost": 2, + "op": "POP", + "pc": 2513, "stack": [ "0x7f29c394", "0x17f", @@ -5833,11 +5833,11 @@ ] }, { - "pc": 2514, - "op": "SWAP1", - "gas": 2077273, - "gasCost": 3, "depth": 1, + "gas": 2075761, + "gasCost": 3, + "op": "SWAP1", + "pc": 2514, "stack": [ "0x7f29c394", "0x17f", @@ -5850,11 +5850,11 @@ ] }, { - "pc": 2515, - "op": "JUMP", - "gas": 2077270, - "gasCost": 8, "depth": 1, + "gas": 2075758, + "gasCost": 8, + "op": "JUMP", + "pc": 2515, "stack": [ "0x7f29c394", "0x17f", @@ -5867,11 +5867,11 @@ ] }, { - "pc": 3416, - "op": "JUMPDEST", - "gas": 2077262, - "gasCost": 1, "depth": 1, + "gas": 2075750, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 3416, "stack": [ "0x7f29c394", "0x17f", @@ -5883,11 +5883,11 @@ ] }, { - "pc": 3417, - "op": "PUSH1", - "gas": 2077261, - "gasCost": 3, "depth": 1, + "gas": 2075749, + "gasCost": 3, + "op": "PUSH1", + "pc": 3417, "stack": [ "0x7f29c394", "0x17f", @@ -5899,11 +5899,11 @@ ] }, { - "pc": 3419, - "op": "RETURNDATASIZE", - "gas": 2077258, - "gasCost": 2, "depth": 1, + "gas": 2075746, + "gasCost": 2, + "op": "RETURNDATASIZE", + "pc": 3419, "stack": [ "0x7f29c394", "0x17f", @@ -5916,11 +5916,11 @@ ] }, { - "pc": 3420, - "op": "SUB", - "gas": 2077256, - "gasCost": 3, "depth": 1, + "gas": 2075744, + "gasCost": 3, + "op": "SUB", + "pc": 3420, "stack": [ "0x7f29c394", "0x17f", @@ -5934,11 +5934,11 @@ ] }, { - "pc": 3421, - "op": "PUSH1", - "gas": 2077253, - "gasCost": 3, "depth": 1, + "gas": 2075741, + "gasCost": 3, + "op": "PUSH1", + "pc": 3421, "stack": [ "0x7f29c394", "0x17f", @@ -5951,11 +5951,11 @@ ] }, { - "pc": 3423, - "op": "DUP3", - "gas": 2077250, - "gasCost": 3, "depth": 1, + "gas": 2075738, + "gasCost": 3, + "op": "DUP3", + "pc": 3423, "stack": [ "0x7f29c394", "0x17f", @@ -5969,11 +5969,11 @@ ] }, { - "pc": 3424, - "op": "RETURNDATACOPY", - "gas": 2077247, - "gasCost": 18, "depth": 1, + "gas": 2075735, + "gasCost": 18, + "op": "RETURNDATACOPY", + "pc": 3424, "stack": [ "0x7f29c394", "0x17f", @@ -5988,11 +5988,11 @@ ] }, { - "pc": 3425, - "op": "DUP1", - "gas": 2077229, - "gasCost": 3, "depth": 1, + "gas": 2075717, + "gasCost": 3, + "op": "DUP1", + "pc": 3425, "stack": [ "0x7f29c394", "0x17f", @@ -6004,11 +6004,11 @@ ] }, { - "pc": 3426, - "op": "MLOAD", - "gas": 2077226, - "gasCost": 3, "depth": 1, + "gas": 2075714, + "gasCost": 3, + "op": "MLOAD", + "pc": 3426, "stack": [ "0x7f29c394", "0x17f", @@ -6021,11 +6021,11 @@ ] }, { - "pc": 3427, - "op": "RETURNDATASIZE", - "gas": 2077223, - "gasCost": 2, "depth": 1, + "gas": 2075711, + "gasCost": 2, + "op": "RETURNDATASIZE", + "pc": 3427, "stack": [ "0x7f29c394", "0x17f", @@ -6038,11 +6038,11 @@ ] }, { - "pc": 3428, - "op": "PUSH1", - "gas": 2077221, - "gasCost": 3, "depth": 1, + "gas": 2075709, + "gasCost": 3, + "op": "PUSH1", + "pc": 3428, "stack": [ "0x7f29c394", "0x17f", @@ -6056,11 +6056,11 @@ ] }, { - "pc": 3430, - "op": "DUP3", - "gas": 2077218, - "gasCost": 3, "depth": 1, + "gas": 2075706, + "gasCost": 3, + "op": "DUP3", + "pc": 3430, "stack": [ "0x7f29c394", "0x17f", @@ -6075,11 +6075,11 @@ ] }, { - "pc": 3431, - "op": "ADD", - "gas": 2077215, - "gasCost": 3, "depth": 1, + "gas": 2075703, + "gasCost": 3, + "op": "ADD", + "pc": 3431, "stack": [ "0x7f29c394", "0x17f", @@ -6095,11 +6095,11 @@ ] }, { - "pc": 3432, - "op": "GT", - "gas": 2077212, - "gasCost": 3, "depth": 1, + "gas": 2075700, + "gasCost": 3, + "op": "GT", + "pc": 3432, "stack": [ "0x7f29c394", "0x17f", @@ -6114,11 +6114,11 @@ ] }, { - "pc": 3433, - "op": "PUSH8", - "gas": 2077209, - "gasCost": 3, "depth": 1, + "gas": 2075697, + "gasCost": 3, + "op": "PUSH8", + "pc": 3433, "stack": [ "0x7f29c394", "0x17f", @@ -6132,11 +6132,11 @@ ] }, { - "pc": 3442, - "op": "DUP3", - "gas": 2077206, - "gasCost": 3, "depth": 1, + "gas": 2075694, + "gasCost": 3, + "op": "DUP3", + "pc": 3442, "stack": [ "0x7f29c394", "0x17f", @@ -6151,11 +6151,11 @@ ] }, { - "pc": 3443, - "op": "GT", - "gas": 2077203, - "gasCost": 3, "depth": 1, + "gas": 2075691, + "gasCost": 3, + "op": "GT", + "pc": 3443, "stack": [ "0x7f29c394", "0x17f", @@ -6171,11 +6171,11 @@ ] }, { - "pc": 3444, - "op": "OR", - "gas": 2077200, - "gasCost": 3, "depth": 1, + "gas": 2075688, + "gasCost": 3, + "op": "OR", + "pc": 3444, "stack": [ "0x7f29c394", "0x17f", @@ -6190,11 +6190,11 @@ ] }, { - "pc": 3445, - "op": "ISZERO", - "gas": 2077197, - "gasCost": 3, "depth": 1, + "gas": 2075685, + "gasCost": 3, + "op": "ISZERO", + "pc": 3445, "stack": [ "0x7f29c394", "0x17f", @@ -6208,11 +6208,11 @@ ] }, { - "pc": 3446, - "op": "PUSH3", - "gas": 2077194, - "gasCost": 3, "depth": 1, + "gas": 2075682, + "gasCost": 3, + "op": "PUSH3", + "pc": 3446, "stack": [ "0x7f29c394", "0x17f", @@ -6226,11 +6226,11 @@ ] }, { - "pc": 3450, - "op": "JUMPI", - "gas": 2077191, - "gasCost": 10, "depth": 1, + "gas": 2075679, + "gasCost": 10, + "op": "JUMPI", + "pc": 3450, "stack": [ "0x7f29c394", "0x17f", @@ -6245,11 +6245,11 @@ ] }, { - "pc": 3458, - "op": "JUMPDEST", - "gas": 2077181, - "gasCost": 1, "depth": 1, + "gas": 2075669, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 3458, "stack": [ "0x7f29c394", "0x17f", @@ -6262,11 +6262,11 @@ ] }, { - "pc": 3459, - "op": "DUP1", - "gas": 2077180, - "gasCost": 3, "depth": 1, + "gas": 2075668, + "gasCost": 3, + "op": "DUP1", + "pc": 3459, "stack": [ "0x7f29c394", "0x17f", @@ -6279,11 +6279,11 @@ ] }, { - "pc": 3460, - "op": "DUP3", - "gas": 2077177, - "gasCost": 3, "depth": 1, + "gas": 2075665, + "gasCost": 3, + "op": "DUP3", + "pc": 3460, "stack": [ "0x7f29c394", "0x17f", @@ -6297,11 +6297,11 @@ ] }, { - "pc": 3461, - "op": "ADD", - "gas": 2077174, - "gasCost": 3, "depth": 1, + "gas": 2075662, + "gasCost": 3, + "op": "ADD", + "pc": 3461, "stack": [ "0x7f29c394", "0x17f", @@ -6316,11 +6316,11 @@ ] }, { - "pc": 3462, - "op": "DUP1", - "gas": 2077171, - "gasCost": 3, "depth": 1, + "gas": 2075659, + "gasCost": 3, + "op": "DUP1", + "pc": 3462, "stack": [ "0x7f29c394", "0x17f", @@ -6334,11 +6334,11 @@ ] }, { - "pc": 3463, - "op": "MLOAD", - "gas": 2077168, - "gasCost": 3, "depth": 1, + "gas": 2075656, + "gasCost": 3, + "op": "MLOAD", + "pc": 3463, "stack": [ "0x7f29c394", "0x17f", @@ -6353,11 +6353,11 @@ ] }, { - "pc": 3464, - "op": "PUSH8", - "gas": 2077165, - "gasCost": 3, "depth": 1, + "gas": 2075653, + "gasCost": 3, + "op": "PUSH8", + "pc": 3464, "stack": [ "0x7f29c394", "0x17f", @@ -6372,11 +6372,11 @@ ] }, { - "pc": 3473, - "op": "DUP2", - "gas": 2077162, - "gasCost": 3, "depth": 1, + "gas": 2075650, + "gasCost": 3, + "op": "DUP2", + "pc": 3473, "stack": [ "0x7f29c394", "0x17f", @@ -6392,11 +6392,11 @@ ] }, { - "pc": 3474, - "op": "GT", - "gas": 2077159, - "gasCost": 3, "depth": 1, + "gas": 2075647, + "gasCost": 3, + "op": "GT", + "pc": 3474, "stack": [ "0x7f29c394", "0x17f", @@ -6413,11 +6413,11 @@ ] }, { - "pc": 3475, - "op": "ISZERO", - "gas": 2077156, - "gasCost": 3, "depth": 1, + "gas": 2075644, + "gasCost": 3, + "op": "ISZERO", + "pc": 3475, "stack": [ "0x7f29c394", "0x17f", @@ -6433,11 +6433,11 @@ ] }, { - "pc": 3476, - "op": "PUSH3", - "gas": 2077153, - "gasCost": 3, "depth": 1, + "gas": 2075641, + "gasCost": 3, + "op": "PUSH3", + "pc": 3476, "stack": [ "0x7f29c394", "0x17f", @@ -6453,11 +6453,11 @@ ] }, { - "pc": 3480, - "op": "JUMPI", - "gas": 2077150, - "gasCost": 10, "depth": 1, + "gas": 2075638, + "gasCost": 10, + "op": "JUMPI", + "pc": 3480, "stack": [ "0x7f29c394", "0x17f", @@ -6474,11 +6474,11 @@ ] }, { - "pc": 3490, - "op": "JUMPDEST", - "gas": 2077140, - "gasCost": 1, "depth": 1, + "gas": 2075628, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 3490, "stack": [ "0x7f29c394", "0x17f", @@ -6493,11 +6493,11 @@ ] }, { - "pc": 3491, - "op": "DUP1", - "gas": 2077139, - "gasCost": 3, "depth": 1, + "gas": 2075627, + "gasCost": 3, + "op": "DUP1", + "pc": 3491, "stack": [ "0x7f29c394", "0x17f", @@ -6512,11 +6512,11 @@ ] }, { - "pc": 3492, - "op": "PUSH1", - "gas": 2077136, - "gasCost": 3, "depth": 1, + "gas": 2075624, + "gasCost": 3, + "op": "PUSH1", + "pc": 3492, "stack": [ "0x7f29c394", "0x17f", @@ -6532,11 +6532,11 @@ ] }, { - "pc": 3494, - "op": "DUP4", - "gas": 2077133, - "gasCost": 3, "depth": 1, + "gas": 2075621, + "gasCost": 3, + "op": "DUP4", + "pc": 3494, "stack": [ "0x7f29c394", "0x17f", @@ -6553,11 +6553,11 @@ ] }, { - "pc": 3495, - "op": "ADD", - "gas": 2077130, - "gasCost": 3, "depth": 1, + "gas": 2075618, + "gasCost": 3, + "op": "ADD", + "pc": 3495, "stack": [ "0x7f29c394", "0x17f", @@ -6575,11 +6575,11 @@ ] }, { - "pc": 3496, - "op": "ADD", - "gas": 2077127, - "gasCost": 3, "depth": 1, + "gas": 2075615, + "gasCost": 3, + "op": "ADD", + "pc": 3496, "stack": [ "0x7f29c394", "0x17f", @@ -6596,11 +6596,11 @@ ] }, { - "pc": 3497, - "op": "PUSH1", - "gas": 2077124, - "gasCost": 3, "depth": 1, + "gas": 2075612, + "gasCost": 3, + "op": "PUSH1", + "pc": 3497, "stack": [ "0x7f29c394", "0x17f", @@ -6616,11 +6616,11 @@ ] }, { - "pc": 3499, - "op": "RETURNDATASIZE", - "gas": 2077121, - "gasCost": 2, "depth": 1, + "gas": 2075609, + "gasCost": 2, + "op": "RETURNDATASIZE", + "pc": 3499, "stack": [ "0x7f29c394", "0x17f", @@ -6637,11 +6637,11 @@ ] }, { - "pc": 3500, - "op": "SUB", - "gas": 2077119, - "gasCost": 3, "depth": 1, + "gas": 2075607, + "gasCost": 3, + "op": "SUB", + "pc": 3500, "stack": [ "0x7f29c394", "0x17f", @@ -6659,11 +6659,11 @@ ] }, { - "pc": 3501, - "op": "DUP6", - "gas": 2077116, - "gasCost": 3, "depth": 1, + "gas": 2075604, + "gasCost": 3, + "op": "DUP6", + "pc": 3501, "stack": [ "0x7f29c394", "0x17f", @@ -6680,11 +6680,11 @@ ] }, { - "pc": 3502, - "op": "ADD", - "gas": 2077113, - "gasCost": 3, "depth": 1, + "gas": 2075601, + "gasCost": 3, + "op": "ADD", + "pc": 3502, "stack": [ "0x7f29c394", "0x17f", @@ -6702,11 +6702,11 @@ ] }, { - "pc": 3503, - "op": "DUP2", - "gas": 2077110, - "gasCost": 3, "depth": 1, + "gas": 2075598, + "gasCost": 3, + "op": "DUP2", + "pc": 3503, "stack": [ "0x7f29c394", "0x17f", @@ -6723,11 +6723,11 @@ ] }, { - "pc": 3504, - "op": "GT", - "gas": 2077107, - "gasCost": 3, "depth": 1, + "gas": 2075595, + "gasCost": 3, + "op": "GT", + "pc": 3504, "stack": [ "0x7f29c394", "0x17f", @@ -6745,11 +6745,11 @@ ] }, { - "pc": 3505, - "op": "ISZERO", - "gas": 2077104, - "gasCost": 3, "depth": 1, + "gas": 2075592, + "gasCost": 3, + "op": "ISZERO", + "pc": 3505, "stack": [ "0x7f29c394", "0x17f", @@ -6766,11 +6766,11 @@ ] }, { - "pc": 3506, - "op": "PUSH3", - "gas": 2077101, - "gasCost": 3, "depth": 1, + "gas": 2075589, + "gasCost": 3, + "op": "PUSH3", + "pc": 3506, "stack": [ "0x7f29c394", "0x17f", @@ -6787,11 +6787,11 @@ ] }, { - "pc": 3510, - "op": "JUMPI", - "gas": 2077098, - "gasCost": 10, "depth": 1, + "gas": 2075586, + "gasCost": 10, + "op": "JUMPI", + "pc": 3510, "stack": [ "0x7f29c394", "0x17f", @@ -6809,11 +6809,11 @@ ] }, { - "pc": 3521, - "op": "JUMPDEST", - "gas": 2077088, - "gasCost": 1, "depth": 1, + "gas": 2075576, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 3521, "stack": [ "0x7f29c394", "0x17f", @@ -6829,11 +6829,11 @@ ] }, { - "pc": 3522, - "op": "PUSH3", - "gas": 2077087, - "gasCost": 3, "depth": 1, + "gas": 2075575, + "gasCost": 3, + "op": "PUSH3", + "pc": 3522, "stack": [ "0x7f29c394", "0x17f", @@ -6849,11 +6849,11 @@ ] }, { - "pc": 3526, - "op": "DUP3", - "gas": 2077084, - "gasCost": 3, "depth": 1, + "gas": 2075572, + "gasCost": 3, + "op": "DUP3", + "pc": 3526, "stack": [ "0x7f29c394", "0x17f", @@ -6870,11 +6870,11 @@ ] }, { - "pc": 3527, - "op": "PUSH1", - "gas": 2077081, - "gasCost": 3, "depth": 1, + "gas": 2075569, + "gasCost": 3, + "op": "PUSH1", + "pc": 3527, "stack": [ "0x7f29c394", "0x17f", @@ -6892,11 +6892,11 @@ ] }, { - "pc": 3529, - "op": "ADD", - "gas": 2077078, - "gasCost": 3, "depth": 1, + "gas": 2075566, + "gasCost": 3, + "op": "ADD", + "pc": 3529, "stack": [ "0x7f29c394", "0x17f", @@ -6915,11 +6915,11 @@ ] }, { - "pc": 3530, - "op": "DUP6", - "gas": 2077075, - "gasCost": 3, "depth": 1, + "gas": 2075563, + "gasCost": 3, + "op": "DUP6", + "pc": 3530, "stack": [ "0x7f29c394", "0x17f", @@ -6937,11 +6937,11 @@ ] }, { - "pc": 3531, - "op": "ADD", - "gas": 2077072, - "gasCost": 3, "depth": 1, + "gas": 2075560, + "gasCost": 3, + "op": "ADD", + "pc": 3531, "stack": [ "0x7f29c394", "0x17f", @@ -6960,11 +6960,11 @@ ] }, { - "pc": 3532, - "op": "DUP7", - "gas": 2077069, - "gasCost": 3, "depth": 1, + "gas": 2075557, + "gasCost": 3, + "op": "DUP7", + "pc": 3532, "stack": [ "0x7f29c394", "0x17f", @@ -6982,11 +6982,11 @@ ] }, { - "pc": 3533, - "op": "PUSH3", - "gas": 2077066, - "gasCost": 3, "depth": 1, + "gas": 2075554, + "gasCost": 3, + "op": "PUSH3", + "pc": 3533, "stack": [ "0x7f29c394", "0x17f", @@ -7005,11 +7005,11 @@ ] }, { - "pc": 3537, - "op": "JUMP", - "gas": 2077063, - "gasCost": 8, "depth": 1, + "gas": 2075551, + "gasCost": 8, + "op": "JUMP", + "pc": 3537, "stack": [ "0x7f29c394", "0x17f", @@ -7029,11 +7029,11 @@ ] }, { - "pc": 3341, - "op": "JUMPDEST", - "gas": 2077055, - "gasCost": 1, "depth": 1, + "gas": 2075543, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 3341, "stack": [ "0x7f29c394", "0x17f", @@ -7052,11 +7052,11 @@ ] }, { - "pc": 3342, - "op": "PUSH3", - "gas": 2077054, - "gasCost": 3, "depth": 1, + "gas": 2075542, + "gasCost": 3, + "op": "PUSH3", + "pc": 3342, "stack": [ "0x7f29c394", "0x17f", @@ -7075,11 +7075,11 @@ ] }, { - "pc": 3346, - "op": "DUP3", - "gas": 2077051, - "gasCost": 3, "depth": 1, + "gas": 2075539, + "gasCost": 3, + "op": "DUP3", + "pc": 3346, "stack": [ "0x7f29c394", "0x17f", @@ -7099,11 +7099,11 @@ ] }, { - "pc": 3347, - "op": "PUSH3", - "gas": 2077048, - "gasCost": 3, "depth": 1, + "gas": 2075536, + "gasCost": 3, + "op": "PUSH3", + "pc": 3347, "stack": [ "0x7f29c394", "0x17f", @@ -7124,11 +7124,11 @@ ] }, { - "pc": 3351, - "op": "JUMP", - "gas": 2077045, - "gasCost": 8, "depth": 1, + "gas": 2075533, + "gasCost": 8, + "op": "JUMP", + "pc": 3351, "stack": [ "0x7f29c394", "0x17f", @@ -7150,11 +7150,11 @@ ] }, { - "pc": 3277, - "op": "JUMPDEST", - "gas": 2077037, - "gasCost": 1, "depth": 1, + "gas": 2075525, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 3277, "stack": [ "0x7f29c394", "0x17f", @@ -7175,11 +7175,11 @@ ] }, { - "pc": 3278, - "op": "PUSH1", - "gas": 2077036, - "gasCost": 3, "depth": 1, + "gas": 2075524, + "gasCost": 3, + "op": "PUSH1", + "pc": 3278, "stack": [ "0x7f29c394", "0x17f", @@ -7200,11 +7200,11 @@ ] }, { - "pc": 3280, - "op": "PUSH1", - "gas": 2077033, - "gasCost": 3, "depth": 1, + "gas": 2075521, + "gasCost": 3, + "op": "PUSH1", + "pc": 3280, "stack": [ "0x7f29c394", "0x17f", @@ -7226,11 +7226,11 @@ ] }, { - "pc": 3282, - "op": "NOT", - "gas": 2077030, - "gasCost": 3, "depth": 1, + "gas": 2075518, + "gasCost": 3, + "op": "NOT", + "pc": 3282, "stack": [ "0x7f29c394", "0x17f", @@ -7253,11 +7253,11 @@ ] }, { - "pc": 3283, - "op": "PUSH1", - "gas": 2077027, - "gasCost": 3, "depth": 1, + "gas": 2075515, + "gasCost": 3, + "op": "PUSH1", + "pc": 3283, "stack": [ "0x7f29c394", "0x17f", @@ -7280,11 +7280,11 @@ ] }, { - "pc": 3285, - "op": "DUP4", - "gas": 2077024, - "gasCost": 3, "depth": 1, + "gas": 2075512, + "gasCost": 3, + "op": "DUP4", + "pc": 3285, "stack": [ "0x7f29c394", "0x17f", @@ -7308,11 +7308,11 @@ ] }, { - "pc": 3286, - "op": "ADD", - "gas": 2077021, - "gasCost": 3, "depth": 1, + "gas": 2075509, + "gasCost": 3, + "op": "ADD", + "pc": 3286, "stack": [ "0x7f29c394", "0x17f", @@ -7337,11 +7337,11 @@ ] }, { - "pc": 3287, - "op": "AND", - "gas": 2077018, - "gasCost": 3, "depth": 1, + "gas": 2075506, + "gasCost": 3, + "op": "AND", + "pc": 3287, "stack": [ "0x7f29c394", "0x17f", @@ -7365,11 +7365,11 @@ ] }, { - "pc": 3288, - "op": "SWAP1", - "gas": 2077015, - "gasCost": 3, "depth": 1, + "gas": 2075503, + "gasCost": 3, + "op": "SWAP1", + "pc": 3288, "stack": [ "0x7f29c394", "0x17f", @@ -7392,11 +7392,11 @@ ] }, { - "pc": 3289, - "op": "POP", - "gas": 2077012, - "gasCost": 2, "depth": 1, + "gas": 2075500, + "gasCost": 2, + "op": "POP", + "pc": 3289, "stack": [ "0x7f29c394", "0x17f", @@ -7419,11 +7419,11 @@ ] }, { - "pc": 3290, - "op": "SWAP2", - "gas": 2077010, - "gasCost": 3, "depth": 1, + "gas": 2075498, + "gasCost": 3, + "op": "SWAP2", + "pc": 3290, "stack": [ "0x7f29c394", "0x17f", @@ -7445,11 +7445,11 @@ ] }, { - "pc": 3291, - "op": "SWAP1", - "gas": 2077007, - "gasCost": 3, "depth": 1, + "gas": 2075495, + "gasCost": 3, + "op": "SWAP1", + "pc": 3291, "stack": [ "0x7f29c394", "0x17f", @@ -7471,11 +7471,11 @@ ] }, { - "pc": 3292, - "op": "POP", - "gas": 2077004, - "gasCost": 2, "depth": 1, + "gas": 2075492, + "gasCost": 2, + "op": "POP", + "pc": 3292, "stack": [ "0x7f29c394", "0x17f", @@ -7497,11 +7497,11 @@ ] }, { - "pc": 3293, - "op": "JUMP", - "gas": 2077002, - "gasCost": 8, "depth": 1, + "gas": 2075490, + "gasCost": 8, + "op": "JUMP", + "pc": 3293, "stack": [ "0x7f29c394", "0x17f", @@ -7522,11 +7522,11 @@ ] }, { - "pc": 3352, - "op": "JUMPDEST", - "gas": 2076994, - "gasCost": 1, "depth": 1, + "gas": 2075482, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 3352, "stack": [ "0x7f29c394", "0x17f", @@ -7546,11 +7546,11 @@ ] }, { - "pc": 3353, - "op": "DUP2", - "gas": 2076993, - "gasCost": 3, "depth": 1, + "gas": 2075481, + "gasCost": 3, + "op": "DUP2", + "pc": 3353, "stack": [ "0x7f29c394", "0x17f", @@ -7570,11 +7570,11 @@ ] }, { - "pc": 3354, - "op": "ADD", - "gas": 2076990, - "gasCost": 3, "depth": 1, + "gas": 2075478, + "gasCost": 3, + "op": "ADD", + "pc": 3354, "stack": [ "0x7f29c394", "0x17f", @@ -7595,11 +7595,11 @@ ] }, { - "pc": 3355, - "op": "DUP2", - "gas": 2076987, - "gasCost": 3, "depth": 1, + "gas": 2075475, + "gasCost": 3, + "op": "DUP2", + "pc": 3355, "stack": [ "0x7f29c394", "0x17f", @@ -7619,11 +7619,11 @@ ] }, { - "pc": 3356, - "op": "DUP2", - "gas": 2076984, - "gasCost": 3, "depth": 1, + "gas": 2075472, + "gasCost": 3, + "op": "DUP2", + "pc": 3356, "stack": [ "0x7f29c394", "0x17f", @@ -7644,11 +7644,11 @@ ] }, { - "pc": 3357, - "op": "LT", - "gas": 2076981, - "gasCost": 3, "depth": 1, + "gas": 2075469, + "gasCost": 3, + "op": "LT", + "pc": 3357, "stack": [ "0x7f29c394", "0x17f", @@ -7670,11 +7670,11 @@ ] }, { - "pc": 3358, - "op": "PUSH8", - "gas": 2076978, - "gasCost": 3, "depth": 1, + "gas": 2075466, + "gasCost": 3, + "op": "PUSH8", + "pc": 3358, "stack": [ "0x7f29c394", "0x17f", @@ -7695,11 +7695,11 @@ ] }, { - "pc": 3367, - "op": "DUP3", - "gas": 2076975, - "gasCost": 3, "depth": 1, + "gas": 2075463, + "gasCost": 3, + "op": "DUP3", + "pc": 3367, "stack": [ "0x7f29c394", "0x17f", @@ -7721,11 +7721,11 @@ ] }, { - "pc": 3368, - "op": "GT", - "gas": 2076972, - "gasCost": 3, "depth": 1, + "gas": 2075460, + "gasCost": 3, + "op": "GT", + "pc": 3368, "stack": [ "0x7f29c394", "0x17f", @@ -7748,11 +7748,11 @@ ] }, { - "pc": 3369, - "op": "OR", - "gas": 2076969, - "gasCost": 3, "depth": 1, + "gas": 2075457, + "gasCost": 3, + "op": "OR", + "pc": 3369, "stack": [ "0x7f29c394", "0x17f", @@ -7773,12 +7773,12 @@ "0x0" ] }, - { - "pc": 3370, - "op": "ISZERO", - "gas": 2076966, - "gasCost": 3, + { "depth": 1, + "gas": 2075454, + "gasCost": 3, + "op": "ISZERO", + "pc": 3370, "stack": [ "0x7f29c394", "0x17f", @@ -7799,11 +7799,11 @@ ] }, { - "pc": 3371, - "op": "PUSH3", - "gas": 2076963, - "gasCost": 3, "depth": 1, + "gas": 2075451, + "gasCost": 3, + "op": "PUSH3", + "pc": 3371, "stack": [ "0x7f29c394", "0x17f", @@ -7824,11 +7824,11 @@ ] }, { - "pc": 3375, - "op": "JUMPI", - "gas": 2076960, - "gasCost": 10, "depth": 1, + "gas": 2075448, + "gasCost": 10, + "op": "JUMPI", + "pc": 3375, "stack": [ "0x7f29c394", "0x17f", @@ -7850,11 +7850,11 @@ ] }, { - "pc": 3386, - "op": "JUMPDEST", - "gas": 2076950, - "gasCost": 1, "depth": 1, + "gas": 2075438, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 3386, "stack": [ "0x7f29c394", "0x17f", @@ -7874,11 +7874,11 @@ ] }, { - "pc": 3387, - "op": "DUP1", - "gas": 2076949, - "gasCost": 3, "depth": 1, + "gas": 2075437, + "gasCost": 3, + "op": "DUP1", + "pc": 3387, "stack": [ "0x7f29c394", "0x17f", @@ -7898,11 +7898,11 @@ ] }, { - "pc": 3388, - "op": "PUSH1", - "gas": 2076946, - "gasCost": 3, "depth": 1, + "gas": 2075434, + "gasCost": 3, + "op": "PUSH1", + "pc": 3388, "stack": [ "0x7f29c394", "0x17f", @@ -7923,11 +7923,11 @@ ] }, { - "pc": 3390, - "op": "MSTORE", - "gas": 2076943, - "gasCost": 3, "depth": 1, + "gas": 2075431, + "gasCost": 3, + "op": "MSTORE", + "pc": 3390, "stack": [ "0x7f29c394", "0x17f", @@ -7949,11 +7949,11 @@ ] }, { - "pc": 3391, - "op": "POP", - "gas": 2076940, - "gasCost": 2, "depth": 1, + "gas": 2075428, + "gasCost": 2, + "op": "POP", + "pc": 3391, "stack": [ "0x7f29c394", "0x17f", @@ -7973,11 +7973,11 @@ ] }, { - "pc": 3392, - "op": "POP", - "gas": 2076938, - "gasCost": 2, "depth": 1, + "gas": 2075426, + "gasCost": 2, + "op": "POP", + "pc": 3392, "stack": [ "0x7f29c394", "0x17f", @@ -7996,11 +7996,11 @@ ] }, { - "pc": 3393, - "op": "POP", - "gas": 2076936, - "gasCost": 2, "depth": 1, + "gas": 2075424, + "gasCost": 2, + "op": "POP", + "pc": 3393, "stack": [ "0x7f29c394", "0x17f", @@ -8018,11 +8018,11 @@ ] }, { - "pc": 3394, - "op": "JUMP", - "gas": 2076934, - "gasCost": 8, "depth": 1, + "gas": 2075422, + "gasCost": 8, + "op": "JUMP", + "pc": 3394, "stack": [ "0x7f29c394", "0x17f", @@ -8039,11 +8039,11 @@ ] }, { - "pc": 3538, - "op": "JUMPDEST", - "gas": 2076926, - "gasCost": 1, "depth": 1, + "gas": 2075414, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 3538, "stack": [ "0x7f29c394", "0x17f", @@ -8059,11 +8059,11 @@ ] }, { - "pc": 3539, - "op": "DUP3", - "gas": 2076925, - "gasCost": 3, "depth": 1, + "gas": 2075413, + "gasCost": 3, + "op": "DUP3", + "pc": 3539, "stack": [ "0x7f29c394", "0x17f", @@ -8079,11 +8079,11 @@ ] }, { - "pc": 3540, - "op": "SWAP6", - "gas": 2076922, - "gasCost": 3, "depth": 1, + "gas": 2075410, + "gasCost": 3, + "op": "SWAP6", + "pc": 3540, "stack": [ "0x7f29c394", "0x17f", @@ -8100,11 +8100,11 @@ ] }, { - "pc": 3541, - "op": "POP", - "gas": 2076919, - "gasCost": 2, "depth": 1, + "gas": 2075407, + "gasCost": 2, + "op": "POP", + "pc": 3541, "stack": [ "0x7f29c394", "0x17f", @@ -8121,11 +8121,11 @@ ] }, { - "pc": 3542, - "op": "POP", - "gas": 2076917, - "gasCost": 2, "depth": 1, + "gas": 2075405, + "gasCost": 2, + "op": "POP", + "pc": 3542, "stack": [ "0x7f29c394", "0x17f", @@ -8141,11 +8141,11 @@ ] }, { - "pc": 3543, - "op": "POP", - "gas": 2076915, - "gasCost": 2, "depth": 1, + "gas": 2075403, + "gasCost": 2, + "op": "POP", + "pc": 3543, "stack": [ "0x7f29c394", "0x17f", @@ -8160,11 +8160,11 @@ ] }, { - "pc": 3544, - "op": "POP", - "gas": 2076913, - "gasCost": 2, "depth": 1, + "gas": 2075401, + "gasCost": 2, + "op": "POP", + "pc": 3544, "stack": [ "0x7f29c394", "0x17f", @@ -8178,11 +8178,11 @@ ] }, { - "pc": 3545, - "op": "POP", - "gas": 2076911, - "gasCost": 2, "depth": 1, + "gas": 2075399, + "gasCost": 2, + "op": "POP", + "pc": 3545, "stack": [ "0x7f29c394", "0x17f", @@ -8195,11 +8195,11 @@ ] }, { - "pc": 3546, - "op": "POP", - "gas": 2076909, - "gasCost": 2, "depth": 1, + "gas": 2075397, + "gasCost": 2, + "op": "POP", + "pc": 3546, "stack": [ "0x7f29c394", "0x17f", @@ -8211,11 +8211,11 @@ ] }, { - "pc": 3547, - "op": "JUMPDEST", - "gas": 2076907, - "gasCost": 1, "depth": 1, + "gas": 2075395, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 3547, "stack": [ "0x7f29c394", "0x17f", @@ -8226,11 +8226,11 @@ ] }, { - "pc": 3548, - "op": "SWAP1", - "gas": 2076906, - "gasCost": 3, "depth": 1, + "gas": 2075394, + "gasCost": 3, + "op": "SWAP1", + "pc": 3548, "stack": [ "0x7f29c394", "0x17f", @@ -8241,11 +8241,11 @@ ] }, { - "pc": 3549, - "op": "JUMP", - "gas": 2076903, - "gasCost": 8, "depth": 1, + "gas": 2075391, + "gasCost": 8, + "op": "JUMP", + "pc": 3549, "stack": [ "0x7f29c394", "0x17f", @@ -8256,11 +8256,11 @@ ] }, { - "pc": 1311, - "op": "JUMPDEST", - "gas": 2076895, - "gasCost": 1, "depth": 1, + "gas": 2075383, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 1311, "stack": [ "0x7f29c394", "0x17f", @@ -8270,11 +8270,11 @@ ] }, { - "pc": 1312, - "op": "DUP1", - "gas": 2076894, - "gasCost": 3, "depth": 1, + "gas": 2075382, + "gasCost": 3, + "op": "DUP1", + "pc": 1312, "stack": [ "0x7f29c394", "0x17f", @@ -8284,11 +8284,11 @@ ] }, { - "pc": 1313, - "op": "PUSH3", - "gas": 2076891, - "gasCost": 3, "depth": 1, + "gas": 2075379, + "gasCost": 3, + "op": "PUSH3", + "pc": 1313, "stack": [ "0x7f29c394", "0x17f", @@ -8299,11 +8299,11 @@ ] }, { - "pc": 1317, - "op": "JUMPI", - "gas": 2076888, - "gasCost": 10, "depth": 1, + "gas": 2075376, + "gasCost": 10, + "op": "JUMPI", + "pc": 1317, "stack": [ "0x7f29c394", "0x17f", @@ -8315,11 +8315,11 @@ ] }, { - "pc": 1324, - "op": "JUMPDEST", - "gas": 2076878, - "gasCost": 1, "depth": 1, + "gas": 2075366, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 1324, "stack": [ "0x7f29c394", "0x17f", @@ -8329,11 +8329,11 @@ ] }, { - "pc": 1325, - "op": "PUSH32", - "gas": 2076877, - "gasCost": 3, "depth": 1, + "gas": 2075365, + "gasCost": 3, + "op": "PUSH32", + "pc": 1325, "stack": [ "0x7f29c394", "0x17f", @@ -8343,11 +8343,11 @@ ] }, { - "pc": 1358, - "op": "DUP2", - "gas": 2076874, - "gasCost": 3, "depth": 1, + "gas": 2075362, + "gasCost": 3, + "op": "DUP2", + "pc": 1358, "stack": [ "0x7f29c394", "0x17f", @@ -8358,11 +8358,11 @@ ] }, { - "pc": 1359, - "op": "PUSH1", - "gas": 2076871, - "gasCost": 3, "depth": 1, + "gas": 2075359, + "gasCost": 3, + "op": "PUSH1", + "pc": 1359, "stack": [ "0x7f29c394", "0x17f", @@ -8374,11 +8374,11 @@ ] }, { - "pc": 1361, - "op": "MLOAD", - "gas": 2076868, - "gasCost": 3, "depth": 1, + "gas": 2075356, + "gasCost": 3, + "op": "MLOAD", + "pc": 1361, "stack": [ "0x7f29c394", "0x17f", @@ -8391,11 +8391,11 @@ ] }, { - "pc": 1362, - "op": "PUSH3", - "gas": 2076865, - "gasCost": 3, "depth": 1, + "gas": 2075353, + "gasCost": 3, + "op": "PUSH3", + "pc": 1362, "stack": [ "0x7f29c394", "0x17f", @@ -8408,11 +8408,11 @@ ] }, { - "pc": 1366, - "op": "SWAP2", - "gas": 2076862, - "gasCost": 3, "depth": 1, + "gas": 2075350, + "gasCost": 3, + "op": "SWAP2", + "pc": 1366, "stack": [ "0x7f29c394", "0x17f", @@ -8426,11 +8426,11 @@ ] }, { - "pc": 1367, - "op": "SWAP1", - "gas": 2076859, - "gasCost": 3, "depth": 1, + "gas": 2075347, + "gasCost": 3, + "op": "SWAP1", + "pc": 1367, "stack": [ "0x7f29c394", "0x17f", @@ -8444,11 +8444,11 @@ ] }, { - "pc": 1368, - "op": "PUSH3", - "gas": 2076856, - "gasCost": 3, "depth": 1, + "gas": 2075344, + "gasCost": 3, + "op": "PUSH3", + "pc": 1368, "stack": [ "0x7f29c394", "0x17f", @@ -8462,11 +8462,11 @@ ] }, { - "pc": 1372, - "op": "JUMP", - "gas": 2076853, - "gasCost": 8, "depth": 1, + "gas": 2075341, + "gasCost": 8, + "op": "JUMP", + "pc": 1372, "stack": [ "0x7f29c394", "0x17f", @@ -8481,11 +8481,11 @@ ] }, { - "pc": 3670, - "op": "JUMPDEST", - "gas": 2076845, - "gasCost": 1, "depth": 1, + "gas": 2075333, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 3670, "stack": [ "0x7f29c394", "0x17f", @@ -8499,11 +8499,11 @@ ] }, { - "pc": 3671, - "op": "PUSH1", - "gas": 2076844, - "gasCost": 3, "depth": 1, + "gas": 2075332, + "gasCost": 3, + "op": "PUSH1", + "pc": 3671, "stack": [ "0x7f29c394", "0x17f", @@ -8517,11 +8517,11 @@ ] }, { - "pc": 3673, - "op": "PUSH1", - "gas": 2076841, - "gasCost": 3, "depth": 1, + "gas": 2075329, + "gasCost": 3, + "op": "PUSH1", + "pc": 3673, "stack": [ "0x7f29c394", "0x17f", @@ -8536,11 +8536,11 @@ ] }, { - "pc": 3675, - "op": "DUP3", - "gas": 2076838, - "gasCost": 3, "depth": 1, + "gas": 2075326, + "gasCost": 3, + "op": "DUP3", + "pc": 3675, "stack": [ "0x7f29c394", "0x17f", @@ -8556,11 +8556,11 @@ ] }, { - "pc": 3676, - "op": "ADD", - "gas": 2076835, - "gasCost": 3, "depth": 1, + "gas": 2075323, + "gasCost": 3, + "op": "ADD", + "pc": 3676, "stack": [ "0x7f29c394", "0x17f", @@ -8577,11 +8577,11 @@ ] }, { - "pc": 3677, - "op": "SWAP1", - "gas": 2076832, - "gasCost": 3, "depth": 1, + "gas": 2075320, + "gasCost": 3, + "op": "SWAP1", + "pc": 3677, "stack": [ "0x7f29c394", "0x17f", @@ -8597,11 +8597,11 @@ ] }, { - "pc": 3678, - "op": "POP", - "gas": 2076829, - "gasCost": 2, "depth": 1, + "gas": 2075317, + "gasCost": 2, + "op": "POP", + "pc": 3678, "stack": [ "0x7f29c394", "0x17f", @@ -8617,11 +8617,11 @@ ] }, { - "pc": 3679, - "op": "DUP2", - "gas": 2076827, - "gasCost": 3, "depth": 1, + "gas": 2075315, + "gasCost": 3, + "op": "DUP2", + "pc": 3679, "stack": [ "0x7f29c394", "0x17f", @@ -8636,11 +8636,11 @@ ] }, { - "pc": 3680, - "op": "DUP2", - "gas": 2076824, - "gasCost": 3, "depth": 1, + "gas": 2075312, + "gasCost": 3, + "op": "DUP2", + "pc": 3680, "stack": [ "0x7f29c394", "0x17f", @@ -8656,11 +8656,11 @@ ] }, { - "pc": 3681, - "op": "SUB", - "gas": 2076821, - "gasCost": 3, "depth": 1, + "gas": 2075309, + "gasCost": 3, + "op": "SUB", + "pc": 3681, "stack": [ "0x7f29c394", "0x17f", @@ -8677,11 +8677,11 @@ ] }, { - "pc": 3682, - "op": "PUSH1", - "gas": 2076818, - "gasCost": 3, "depth": 1, + "gas": 2075306, + "gasCost": 3, + "op": "PUSH1", + "pc": 3682, "stack": [ "0x7f29c394", "0x17f", @@ -8697,11 +8697,11 @@ ] }, { - "pc": 3684, - "op": "DUP4", - "gas": 2076815, - "gasCost": 3, "depth": 1, + "gas": 2075303, + "gasCost": 3, + "op": "DUP4", + "pc": 3684, "stack": [ "0x7f29c394", "0x17f", @@ -8718,11 +8718,11 @@ ] }, { - "pc": 3685, - "op": "ADD", - "gas": 2076812, - "gasCost": 3, "depth": 1, + "gas": 2075300, + "gasCost": 3, + "op": "ADD", + "pc": 3685, "stack": [ "0x7f29c394", "0x17f", @@ -8740,11 +8740,11 @@ ] }, { - "pc": 3686, - "op": "MSTORE", - "gas": 2076809, - "gasCost": 6, "depth": 1, + "gas": 2075297, + "gasCost": 6, + "op": "MSTORE", + "pc": 3686, "stack": [ "0x7f29c394", "0x17f", @@ -8761,11 +8761,11 @@ ] }, { - "pc": 3687, - "op": "PUSH3", - "gas": 2076803, - "gasCost": 3, "depth": 1, + "gas": 2075291, + "gasCost": 3, + "op": "PUSH3", + "pc": 3687, "stack": [ "0x7f29c394", "0x17f", @@ -8780,11 +8780,11 @@ ] }, { - "pc": 3691, - "op": "DUP2", - "gas": 2076800, - "gasCost": 3, "depth": 1, + "gas": 2075288, + "gasCost": 3, + "op": "DUP2", + "pc": 3691, "stack": [ "0x7f29c394", "0x17f", @@ -8800,11 +8800,11 @@ ] }, { - "pc": 3692, - "op": "DUP5", - "gas": 2076797, - "gasCost": 3, "depth": 1, + "gas": 2075285, + "gasCost": 3, + "op": "DUP5", + "pc": 3692, "stack": [ "0x7f29c394", "0x17f", @@ -8821,11 +8821,11 @@ ] }, { - "pc": 3693, - "op": "PUSH3", - "gas": 2076794, - "gasCost": 3, "depth": 1, + "gas": 2075282, + "gasCost": 3, + "op": "PUSH3", + "pc": 3693, "stack": [ "0x7f29c394", "0x17f", @@ -8843,11 +8843,11 @@ ] }, { - "pc": 3697, - "op": "JUMP", - "gas": 2076791, - "gasCost": 8, "depth": 1, + "gas": 2075279, + "gasCost": 8, + "op": "JUMP", + "pc": 3697, "stack": [ "0x7f29c394", "0x17f", @@ -8866,11 +8866,11 @@ ] }, { - "pc": 3605, - "op": "JUMPDEST", - "gas": 2076783, - "gasCost": 1, "depth": 1, + "gas": 2075271, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 3605, "stack": [ "0x7f29c394", "0x17f", @@ -8888,11 +8888,11 @@ ] }, { - "pc": 3606, - "op": "PUSH1", - "gas": 2076782, - "gasCost": 3, "depth": 1, + "gas": 2075270, + "gasCost": 3, + "op": "PUSH1", + "pc": 3606, "stack": [ "0x7f29c394", "0x17f", @@ -8910,11 +8910,11 @@ ] }, { - "pc": 3608, - "op": "PUSH3", - "gas": 2076779, - "gasCost": 3, "depth": 1, + "gas": 2075267, + "gasCost": 3, + "op": "PUSH3", + "pc": 3608, "stack": [ "0x7f29c394", "0x17f", @@ -8933,11 +8933,11 @@ ] }, { - "pc": 3612, - "op": "DUP3", - "gas": 2076776, - "gasCost": 3, "depth": 1, + "gas": 2075264, + "gasCost": 3, + "op": "DUP3", + "pc": 3612, "stack": [ "0x7f29c394", "0x17f", @@ -8957,11 +8957,11 @@ ] }, { - "pc": 3613, - "op": "PUSH3", - "gas": 2076773, - "gasCost": 3, "depth": 1, + "gas": 2075261, + "gasCost": 3, + "op": "PUSH3", + "pc": 3613, "stack": [ "0x7f29c394", "0x17f", @@ -8982,11 +8982,11 @@ ] }, { - "pc": 3617, - "op": "JUMP", - "gas": 2076770, - "gasCost": 8, "depth": 1, + "gas": 2075258, + "gasCost": 8, + "op": "JUMP", + "pc": 3617, "stack": [ "0x7f29c394", "0x17f", @@ -9008,11 +9008,11 @@ ] }, { - "pc": 3550, - "op": "JUMPDEST", - "gas": 2076762, - "gasCost": 1, "depth": 1, + "gas": 2075250, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 3550, "stack": [ "0x7f29c394", "0x17f", @@ -9033,11 +9033,11 @@ ] }, { - "pc": 3551, - "op": "PUSH1", - "gas": 2076761, - "gasCost": 3, "depth": 1, + "gas": 2075249, + "gasCost": 3, + "op": "PUSH1", + "pc": 3551, "stack": [ "0x7f29c394", "0x17f", @@ -9058,11 +9058,11 @@ ] }, { - "pc": 3553, - "op": "DUP2", - "gas": 2076758, - "gasCost": 3, "depth": 1, + "gas": 2075246, + "gasCost": 3, + "op": "DUP2", + "pc": 3553, "stack": [ "0x7f29c394", "0x17f", @@ -9084,11 +9084,11 @@ ] }, { - "pc": 3554, - "op": "MLOAD", - "gas": 2076755, - "gasCost": 3, "depth": 1, + "gas": 2075243, + "gasCost": 3, + "op": "MLOAD", + "pc": 3554, "stack": [ "0x7f29c394", "0x17f", @@ -9111,11 +9111,11 @@ ] }, { - "pc": 3555, - "op": "SWAP1", - "gas": 2076752, - "gasCost": 3, "depth": 1, + "gas": 2075240, + "gasCost": 3, + "op": "SWAP1", + "pc": 3555, "stack": [ "0x7f29c394", "0x17f", @@ -9138,11 +9138,11 @@ ] }, { - "pc": 3556, - "op": "POP", - "gas": 2076749, - "gasCost": 2, "depth": 1, + "gas": 2075237, + "gasCost": 2, + "op": "POP", + "pc": 3556, "stack": [ "0x7f29c394", "0x17f", @@ -9165,11 +9165,11 @@ ] }, { - "pc": 3557, - "op": "SWAP2", - "gas": 2076747, - "gasCost": 3, "depth": 1, + "gas": 2075235, + "gasCost": 3, + "op": "SWAP2", + "pc": 3557, "stack": [ "0x7f29c394", "0x17f", @@ -9191,11 +9191,11 @@ ] }, { - "pc": 3558, - "op": "SWAP1", - "gas": 2076744, - "gasCost": 3, "depth": 1, + "gas": 2075232, + "gasCost": 3, + "op": "SWAP1", + "pc": 3558, "stack": [ "0x7f29c394", "0x17f", @@ -9217,11 +9217,11 @@ ] }, { - "pc": 3559, - "op": "POP", - "gas": 2076741, - "gasCost": 2, "depth": 1, + "gas": 2075229, + "gasCost": 2, + "op": "POP", + "pc": 3559, "stack": [ "0x7f29c394", "0x17f", @@ -9243,11 +9243,11 @@ ] }, { - "pc": 3560, - "op": "JUMP", - "gas": 2076739, - "gasCost": 8, "depth": 1, + "gas": 2075227, + "gasCost": 8, + "op": "JUMP", + "pc": 3560, "stack": [ "0x7f29c394", "0x17f", @@ -9268,11 +9268,11 @@ ] }, { - "pc": 3618, - "op": "JUMPDEST", - "gas": 2076731, - "gasCost": 1, "depth": 1, + "gas": 2075219, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 3618, "stack": [ "0x7f29c394", "0x17f", @@ -9292,11 +9292,11 @@ ] }, { - "pc": 3619, - "op": "PUSH3", - "gas": 2076730, - "gasCost": 3, "depth": 1, + "gas": 2075218, + "gasCost": 3, + "op": "PUSH3", + "pc": 3619, "stack": [ "0x7f29c394", "0x17f", @@ -9316,11 +9316,11 @@ ] }, { - "pc": 3623, - "op": "DUP2", - "gas": 2076727, - "gasCost": 3, "depth": 1, + "gas": 2075215, + "gasCost": 3, + "op": "DUP2", + "pc": 3623, "stack": [ "0x7f29c394", "0x17f", @@ -9341,11 +9341,11 @@ ] }, { - "pc": 3624, - "op": "DUP6", - "gas": 2076724, - "gasCost": 3, "depth": 1, + "gas": 2075212, + "gasCost": 3, + "op": "DUP6", + "pc": 3624, "stack": [ "0x7f29c394", "0x17f", @@ -9367,11 +9367,11 @@ ] }, { - "pc": 3625, - "op": "PUSH3", - "gas": 2076721, - "gasCost": 3, "depth": 1, + "gas": 2075209, + "gasCost": 3, + "op": "PUSH3", + "pc": 3625, "stack": [ "0x7f29c394", "0x17f", @@ -9394,11 +9394,11 @@ ] }, { - "pc": 3629, - "op": "JUMP", - "gas": 2076718, - "gasCost": 8, "depth": 1, + "gas": 2075206, + "gasCost": 8, + "op": "JUMP", + "pc": 3629, "stack": [ "0x7f29c394", "0x17f", @@ -9422,11 +9422,11 @@ ] }, { - "pc": 2771, - "op": "JUMPDEST", - "gas": 2076710, - "gasCost": 1, "depth": 1, + "gas": 2075198, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2771, "stack": [ "0x7f29c394", "0x17f", @@ -9449,11 +9449,11 @@ ] }, { - "pc": 2772, - "op": "PUSH1", - "gas": 2076709, - "gasCost": 3, "depth": 1, + "gas": 2075197, + "gasCost": 3, + "op": "PUSH1", + "pc": 2772, "stack": [ "0x7f29c394", "0x17f", @@ -9476,11 +9476,11 @@ ] }, { - "pc": 2774, - "op": "DUP3", - "gas": 2076706, - "gasCost": 3, "depth": 1, + "gas": 2075194, + "gasCost": 3, + "op": "DUP3", + "pc": 2774, "stack": [ "0x7f29c394", "0x17f", @@ -9504,11 +9504,11 @@ ] }, { - "pc": 2775, - "op": "DUP3", - "gas": 2076703, - "gasCost": 3, "depth": 1, + "gas": 2075191, + "gasCost": 3, + "op": "DUP3", + "pc": 2775, "stack": [ "0x7f29c394", "0x17f", @@ -9533,11 +9533,11 @@ ] }, { - "pc": 2776, - "op": "MSTORE", - "gas": 2076700, - "gasCost": 6, "depth": 1, + "gas": 2075188, + "gasCost": 6, + "op": "MSTORE", + "pc": 2776, "stack": [ "0x7f29c394", "0x17f", @@ -9563,11 +9563,11 @@ ] }, { - "pc": 2777, - "op": "PUSH1", - "gas": 2076694, - "gasCost": 3, "depth": 1, + "gas": 2075182, + "gasCost": 3, + "op": "PUSH1", + "pc": 2777, "stack": [ "0x7f29c394", "0x17f", @@ -9591,11 +9591,11 @@ ] }, { - "pc": 2779, - "op": "DUP3", - "gas": 2076691, - "gasCost": 3, "depth": 1, + "gas": 2075179, + "gasCost": 3, + "op": "DUP3", + "pc": 2779, "stack": [ "0x7f29c394", "0x17f", @@ -9619,12 +9619,12 @@ "0x20" ] }, - { - "pc": 2780, - "op": "ADD", - "gas": 2076688, - "gasCost": 3, + { "depth": 1, + "gas": 2075176, + "gasCost": 3, + "op": "ADD", + "pc": 2780, "stack": [ "0x7f29c394", "0x17f", @@ -9650,11 +9650,11 @@ ] }, { - "pc": 2781, - "op": "SWAP1", - "gas": 2076685, - "gasCost": 3, "depth": 1, + "gas": 2075173, + "gasCost": 3, + "op": "SWAP1", + "pc": 2781, "stack": [ "0x7f29c394", "0x17f", @@ -9679,11 +9679,11 @@ ] }, { - "pc": 2782, - "op": "POP", - "gas": 2076682, - "gasCost": 2, "depth": 1, + "gas": 2075170, + "gasCost": 2, + "op": "POP", + "pc": 2782, "stack": [ "0x7f29c394", "0x17f", @@ -9708,11 +9708,11 @@ ] }, { - "pc": 2783, - "op": "SWAP3", - "gas": 2076680, - "gasCost": 3, "depth": 1, + "gas": 2075168, + "gasCost": 3, + "op": "SWAP3", + "pc": 2783, "stack": [ "0x7f29c394", "0x17f", @@ -9736,11 +9736,11 @@ ] }, { - "pc": 2784, - "op": "SWAP2", - "gas": 2076677, - "gasCost": 3, "depth": 1, + "gas": 2075165, + "gasCost": 3, + "op": "SWAP2", + "pc": 2784, "stack": [ "0x7f29c394", "0x17f", @@ -9764,11 +9764,11 @@ ] }, { - "pc": 2785, - "op": "POP", - "gas": 2076674, - "gasCost": 2, "depth": 1, + "gas": 2075162, + "gasCost": 2, + "op": "POP", + "pc": 2785, "stack": [ "0x7f29c394", "0x17f", @@ -9792,11 +9792,11 @@ ] }, { - "pc": 2786, - "op": "POP", - "gas": 2076672, - "gasCost": 2, "depth": 1, + "gas": 2075160, + "gasCost": 2, + "op": "POP", + "pc": 2786, "stack": [ "0x7f29c394", "0x17f", @@ -9819,11 +9819,11 @@ ] }, { - "pc": 2787, - "op": "JUMP", - "gas": 2076670, - "gasCost": 8, "depth": 1, + "gas": 2075158, + "gasCost": 8, + "op": "JUMP", + "pc": 2787, "stack": [ "0x7f29c394", "0x17f", @@ -9845,11 +9845,11 @@ ] }, { - "pc": 3630, - "op": "JUMPDEST", - "gas": 2076662, - "gasCost": 1, "depth": 1, + "gas": 2075150, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 3630, "stack": [ "0x7f29c394", "0x17f", @@ -9870,11 +9870,11 @@ ] }, { - "pc": 3631, - "op": "SWAP4", - "gas": 2076661, - "gasCost": 3, "depth": 1, + "gas": 2075149, + "gasCost": 3, + "op": "SWAP4", + "pc": 3631, "stack": [ "0x7f29c394", "0x17f", @@ -9895,11 +9895,11 @@ ] }, { - "pc": 3632, - "op": "POP", - "gas": 2076658, - "gasCost": 2, "depth": 1, + "gas": 2075146, + "gasCost": 2, + "op": "POP", + "pc": 3632, "stack": [ "0x7f29c394", "0x17f", @@ -9920,11 +9920,11 @@ ] }, { - "pc": 3633, - "op": "PUSH3", - "gas": 2076656, - "gasCost": 3, "depth": 1, + "gas": 2075144, + "gasCost": 3, + "op": "PUSH3", + "pc": 3633, "stack": [ "0x7f29c394", "0x17f", @@ -9944,11 +9944,11 @@ ] }, { - "pc": 3637, - "op": "DUP2", - "gas": 2076653, - "gasCost": 3, "depth": 1, + "gas": 2075141, + "gasCost": 3, + "op": "DUP2", + "pc": 3637, "stack": [ "0x7f29c394", "0x17f", @@ -9969,11 +9969,11 @@ ] }, { - "pc": 3638, - "op": "DUP6", - "gas": 2076650, - "gasCost": 3, "depth": 1, + "gas": 2075138, + "gasCost": 3, + "op": "DUP6", + "pc": 3638, "stack": [ "0x7f29c394", "0x17f", @@ -9995,11 +9995,11 @@ ] }, { - "pc": 3639, - "op": "PUSH1", - "gas": 2076647, - "gasCost": 3, "depth": 1, + "gas": 2075135, + "gasCost": 3, + "op": "PUSH1", + "pc": 3639, "stack": [ "0x7f29c394", "0x17f", @@ -10022,11 +10022,11 @@ ] }, { - "pc": 3641, - "op": "DUP7", - "gas": 2076644, - "gasCost": 3, "depth": 1, + "gas": 2075132, + "gasCost": 3, + "op": "DUP7", + "pc": 3641, "stack": [ "0x7f29c394", "0x17f", @@ -10050,11 +10050,11 @@ ] }, { - "pc": 3642, - "op": "ADD", - "gas": 2076641, - "gasCost": 3, "depth": 1, + "gas": 2075129, + "gasCost": 3, + "op": "ADD", + "pc": 3642, "stack": [ "0x7f29c394", "0x17f", @@ -10079,11 +10079,11 @@ ] }, { - "pc": 3643, - "op": "PUSH3", - "gas": 2076638, - "gasCost": 3, "depth": 1, + "gas": 2075126, + "gasCost": 3, + "op": "PUSH3", + "pc": 3643, "stack": [ "0x7f29c394", "0x17f", @@ -10107,11 +10107,11 @@ ] }, { - "pc": 3647, - "op": "JUMP", - "gas": 2076635, - "gasCost": 8, "depth": 1, + "gas": 2075123, + "gasCost": 8, + "op": "JUMP", + "pc": 3647, "stack": [ "0x7f29c394", "0x17f", @@ -10136,11 +10136,11 @@ ] }, { - "pc": 3561, - "op": "JUMPDEST", - "gas": 2076627, - "gasCost": 1, "depth": 1, + "gas": 2075115, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 3561, "stack": [ "0x7f29c394", "0x17f", @@ -10164,11 +10164,11 @@ ] }, { - "pc": 3562, - "op": "PUSH1", - "gas": 2076626, - "gasCost": 3, "depth": 1, + "gas": 2075114, + "gasCost": 3, + "op": "PUSH1", + "pc": 3562, "stack": [ "0x7f29c394", "0x17f", @@ -10192,11 +10192,11 @@ ] }, { - "pc": 3564, - "op": "JUMPDEST", - "gas": 2076623, - "gasCost": 1, "depth": 1, + "gas": 2075111, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 3564, "stack": [ "0x7f29c394", "0x17f", @@ -10221,11 +10221,11 @@ ] }, { - "pc": 3565, - "op": "DUP4", - "gas": 2076622, - "gasCost": 3, "depth": 1, + "gas": 2075110, + "gasCost": 3, + "op": "DUP4", + "pc": 3565, "stack": [ "0x7f29c394", "0x17f", @@ -10250,11 +10250,11 @@ ] }, { - "pc": 3566, - "op": "DUP2", - "gas": 2076619, - "gasCost": 3, "depth": 1, + "gas": 2075107, + "gasCost": 3, + "op": "DUP2", + "pc": 3566, "stack": [ "0x7f29c394", "0x17f", @@ -10280,11 +10280,11 @@ ] }, { - "pc": 3567, - "op": "LT", - "gas": 2076616, - "gasCost": 3, "depth": 1, + "gas": 2075104, + "gasCost": 3, + "op": "LT", + "pc": 3567, "stack": [ "0x7f29c394", "0x17f", @@ -10311,11 +10311,11 @@ ] }, { - "pc": 3568, - "op": "ISZERO", - "gas": 2076613, - "gasCost": 3, "depth": 1, + "gas": 2075101, + "gasCost": 3, + "op": "ISZERO", + "pc": 3568, "stack": [ "0x7f29c394", "0x17f", @@ -10341,11 +10341,11 @@ ] }, { - "pc": 3569, - "op": "PUSH3", - "gas": 2076610, - "gasCost": 3, "depth": 1, + "gas": 2075098, + "gasCost": 3, + "op": "PUSH3", + "pc": 3569, "stack": [ "0x7f29c394", "0x17f", @@ -10371,11 +10371,11 @@ ] }, { - "pc": 3573, - "op": "JUMPI", - "gas": 2076607, - "gasCost": 10, "depth": 1, + "gas": 2075095, + "gasCost": 10, + "op": "JUMPI", + "pc": 3573, "stack": [ "0x7f29c394", "0x17f", @@ -10402,11 +10402,11 @@ ] }, { - "pc": 3574, - "op": "DUP1", - "gas": 2076597, - "gasCost": 3, "depth": 1, + "gas": 2075085, + "gasCost": 3, + "op": "DUP1", + "pc": 3574, "stack": [ "0x7f29c394", "0x17f", @@ -10431,11 +10431,11 @@ ] }, { - "pc": 3575, - "op": "DUP3", - "gas": 2076594, - "gasCost": 3, "depth": 1, + "gas": 2075082, + "gasCost": 3, + "op": "DUP3", + "pc": 3575, "stack": [ "0x7f29c394", "0x17f", @@ -10461,11 +10461,11 @@ ] }, { - "pc": 3576, - "op": "ADD", - "gas": 2076591, - "gasCost": 3, "depth": 1, + "gas": 2075079, + "gasCost": 3, + "op": "ADD", + "pc": 3576, "stack": [ "0x7f29c394", "0x17f", @@ -10492,11 +10492,11 @@ ] }, { - "pc": 3577, - "op": "MLOAD", - "gas": 2076588, - "gasCost": 3, "depth": 1, + "gas": 2075076, + "gasCost": 3, + "op": "MLOAD", + "pc": 3577, "stack": [ "0x7f29c394", "0x17f", @@ -10522,11 +10522,11 @@ ] }, { - "pc": 3578, - "op": "DUP2", - "gas": 2076585, - "gasCost": 3, "depth": 1, + "gas": 2075073, + "gasCost": 3, + "op": "DUP2", + "pc": 3578, "stack": [ "0x7f29c394", "0x17f", @@ -10552,11 +10552,11 @@ ] }, { - "pc": 3579, - "op": "DUP5", - "gas": 2076582, - "gasCost": 3, "depth": 1, + "gas": 2075070, + "gasCost": 3, + "op": "DUP5", + "pc": 3579, "stack": [ "0x7f29c394", "0x17f", @@ -10583,11 +10583,11 @@ ] }, { - "pc": 3580, - "op": "ADD", - "gas": 2076579, - "gasCost": 3, "depth": 1, + "gas": 2075067, + "gasCost": 3, + "op": "ADD", + "pc": 3580, "stack": [ "0x7f29c394", "0x17f", @@ -10615,11 +10615,11 @@ ] }, { - "pc": 3581, - "op": "MSTORE", - "gas": 2076576, - "gasCost": 6, "depth": 1, + "gas": 2075064, + "gasCost": 6, + "op": "MSTORE", + "pc": 3581, "stack": [ "0x7f29c394", "0x17f", @@ -10646,11 +10646,11 @@ ] }, { - "pc": 3582, - "op": "PUSH1", - "gas": 2076570, - "gasCost": 3, "depth": 1, + "gas": 2075058, + "gasCost": 3, + "op": "PUSH1", + "pc": 3582, "stack": [ "0x7f29c394", "0x17f", @@ -10675,11 +10675,11 @@ ] }, { - "pc": 3584, - "op": "DUP2", - "gas": 2076567, - "gasCost": 3, "depth": 1, + "gas": 2075055, + "gasCost": 3, + "op": "DUP2", + "pc": 3584, "stack": [ "0x7f29c394", "0x17f", @@ -10705,11 +10705,11 @@ ] }, { - "pc": 3585, - "op": "ADD", - "gas": 2076564, - "gasCost": 3, "depth": 1, + "gas": 2075052, + "gasCost": 3, + "op": "ADD", + "pc": 3585, "stack": [ "0x7f29c394", "0x17f", @@ -10736,11 +10736,11 @@ ] }, { - "pc": 3586, - "op": "SWAP1", - "gas": 2076561, - "gasCost": 3, "depth": 1, + "gas": 2075049, + "gasCost": 3, + "op": "SWAP1", + "pc": 3586, "stack": [ "0x7f29c394", "0x17f", @@ -10766,11 +10766,11 @@ ] }, { - "pc": 3587, - "op": "POP", - "gas": 2076558, - "gasCost": 2, "depth": 1, + "gas": 2075046, + "gasCost": 2, + "op": "POP", + "pc": 3587, "stack": [ "0x7f29c394", "0x17f", @@ -10796,11 +10796,11 @@ ] }, { - "pc": 3588, - "op": "PUSH3", - "gas": 2076556, - "gasCost": 3, "depth": 1, + "gas": 2075044, + "gasCost": 3, + "op": "PUSH3", + "pc": 3588, "stack": [ "0x7f29c394", "0x17f", @@ -10825,11 +10825,11 @@ ] }, { - "pc": 3592, - "op": "JUMP", - "gas": 2076553, - "gasCost": 8, "depth": 1, + "gas": 2075041, + "gasCost": 8, + "op": "JUMP", + "pc": 3592, "stack": [ "0x7f29c394", "0x17f", @@ -10855,11 +10855,11 @@ ] }, { - "pc": 3564, - "op": "JUMPDEST", - "gas": 2076545, - "gasCost": 1, "depth": 1, + "gas": 2075033, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 3564, "stack": [ "0x7f29c394", "0x17f", @@ -10884,11 +10884,11 @@ ] }, { - "pc": 3565, - "op": "DUP4", - "gas": 2076544, - "gasCost": 3, "depth": 1, + "gas": 2075032, + "gasCost": 3, + "op": "DUP4", + "pc": 3565, "stack": [ "0x7f29c394", "0x17f", @@ -10913,11 +10913,11 @@ ] }, { - "pc": 3566, - "op": "DUP2", - "gas": 2076541, - "gasCost": 3, "depth": 1, + "gas": 2075029, + "gasCost": 3, + "op": "DUP2", + "pc": 3566, "stack": [ "0x7f29c394", "0x17f", @@ -10943,11 +10943,11 @@ ] }, { - "pc": 3567, - "op": "LT", - "gas": 2076538, - "gasCost": 3, "depth": 1, + "gas": 2075026, + "gasCost": 3, + "op": "LT", + "pc": 3567, "stack": [ "0x7f29c394", "0x17f", @@ -10974,11 +10974,11 @@ ] }, { - "pc": 3568, - "op": "ISZERO", - "gas": 2076535, - "gasCost": 3, "depth": 1, + "gas": 2075023, + "gasCost": 3, + "op": "ISZERO", + "pc": 3568, "stack": [ "0x7f29c394", "0x17f", @@ -11004,11 +11004,11 @@ ] }, { - "pc": 3569, - "op": "PUSH3", - "gas": 2076532, - "gasCost": 3, "depth": 1, + "gas": 2075020, + "gasCost": 3, + "op": "PUSH3", + "pc": 3569, "stack": [ "0x7f29c394", "0x17f", @@ -11034,11 +11034,11 @@ ] }, { - "pc": 3573, - "op": "JUMPI", - "gas": 2076529, - "gasCost": 10, "depth": 1, + "gas": 2075017, + "gasCost": 10, + "op": "JUMPI", + "pc": 3573, "stack": [ "0x7f29c394", "0x17f", @@ -11065,11 +11065,11 @@ ] }, { - "pc": 3593, - "op": "JUMPDEST", - "gas": 2076519, - "gasCost": 1, "depth": 1, + "gas": 2075007, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 3593, "stack": [ "0x7f29c394", "0x17f", @@ -11094,11 +11094,11 @@ ] }, { - "pc": 3594, - "op": "PUSH1", - "gas": 2076518, - "gasCost": 3, "depth": 1, + "gas": 2075006, + "gasCost": 3, + "op": "PUSH1", + "pc": 3594, "stack": [ "0x7f29c394", "0x17f", @@ -11123,11 +11123,11 @@ ] }, { - "pc": 3596, - "op": "DUP5", - "gas": 2076515, - "gasCost": 3, "depth": 1, + "gas": 2075003, + "gasCost": 3, + "op": "DUP5", + "pc": 3596, "stack": [ "0x7f29c394", "0x17f", @@ -11153,11 +11153,11 @@ ] }, { - "pc": 3597, - "op": "DUP5", - "gas": 2076512, - "gasCost": 3, "depth": 1, + "gas": 2075000, + "gasCost": 3, + "op": "DUP5", + "pc": 3597, "stack": [ "0x7f29c394", "0x17f", @@ -11184,11 +11184,11 @@ ] }, { - "pc": 3598, - "op": "ADD", - "gas": 2076509, - "gasCost": 3, "depth": 1, + "gas": 2074997, + "gasCost": 3, + "op": "ADD", + "pc": 3598, "stack": [ "0x7f29c394", "0x17f", @@ -11216,11 +11216,11 @@ ] }, { - "pc": 3599, - "op": "MSTORE", - "gas": 2076506, - "gasCost": 6, "depth": 1, + "gas": 2074994, + "gasCost": 6, + "op": "MSTORE", + "pc": 3599, "stack": [ "0x7f29c394", "0x17f", @@ -11247,11 +11247,11 @@ ] }, { - "pc": 3600, - "op": "POP", - "gas": 2076500, - "gasCost": 2, "depth": 1, + "gas": 2074988, + "gasCost": 2, + "op": "POP", + "pc": 3600, "stack": [ "0x7f29c394", "0x17f", @@ -11276,11 +11276,11 @@ ] }, { - "pc": 3601, - "op": "POP", - "gas": 2076498, - "gasCost": 2, "depth": 1, + "gas": 2074986, + "gasCost": 2, + "op": "POP", + "pc": 3601, "stack": [ "0x7f29c394", "0x17f", @@ -11304,11 +11304,11 @@ ] }, { - "pc": 3602, - "op": "POP", - "gas": 2076496, - "gasCost": 2, "depth": 1, + "gas": 2074984, + "gasCost": 2, + "op": "POP", + "pc": 3602, "stack": [ "0x7f29c394", "0x17f", @@ -11331,11 +11331,11 @@ ] }, { - "pc": 3603, - "op": "POP", - "gas": 2076494, - "gasCost": 2, "depth": 1, + "gas": 2074982, + "gasCost": 2, + "op": "POP", + "pc": 3603, "stack": [ "0x7f29c394", "0x17f", @@ -11357,11 +11357,11 @@ ] }, { - "pc": 3604, - "op": "JUMP", - "gas": 2076492, - "gasCost": 8, "depth": 1, + "gas": 2074980, + "gasCost": 8, + "op": "JUMP", + "pc": 3604, "stack": [ "0x7f29c394", "0x17f", @@ -11382,11 +11382,11 @@ ] }, { - "pc": 3648, - "op": "JUMPDEST", - "gas": 2076484, - "gasCost": 1, "depth": 1, + "gas": 2074972, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 3648, "stack": [ "0x7f29c394", "0x17f", @@ -11406,11 +11406,11 @@ ] }, { - "pc": 3649, - "op": "PUSH3", - "gas": 2076483, - "gasCost": 3, "depth": 1, + "gas": 2074971, + "gasCost": 3, + "op": "PUSH3", + "pc": 3649, "stack": [ "0x7f29c394", "0x17f", @@ -11430,11 +11430,11 @@ ] }, { - "pc": 3653, - "op": "DUP2", - "gas": 2076480, - "gasCost": 3, "depth": 1, + "gas": 2074968, + "gasCost": 3, + "op": "DUP2", + "pc": 3653, "stack": [ "0x7f29c394", "0x17f", @@ -11455,11 +11455,11 @@ ] }, { - "pc": 3654, - "op": "PUSH3", - "gas": 2076477, - "gasCost": 3, "depth": 1, + "gas": 2074965, + "gasCost": 3, + "op": "PUSH3", + "pc": 3654, "stack": [ "0x7f29c394", "0x17f", @@ -11481,11 +11481,11 @@ ] }, { - "pc": 3658, - "op": "JUMP", - "gas": 2076474, - "gasCost": 8, "depth": 1, + "gas": 2074962, + "gasCost": 8, + "op": "JUMP", + "pc": 3658, "stack": [ "0x7f29c394", "0x17f", @@ -11508,11 +11508,11 @@ ] }, { - "pc": 3277, - "op": "JUMPDEST", - "gas": 2076466, - "gasCost": 1, "depth": 1, + "gas": 2074954, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 3277, "stack": [ "0x7f29c394", "0x17f", @@ -11534,11 +11534,11 @@ ] }, { - "pc": 3278, - "op": "PUSH1", - "gas": 2076465, - "gasCost": 3, "depth": 1, + "gas": 2074953, + "gasCost": 3, + "op": "PUSH1", + "pc": 3278, "stack": [ "0x7f29c394", "0x17f", @@ -11560,11 +11560,11 @@ ] }, { - "pc": 3280, - "op": "PUSH1", - "gas": 2076462, - "gasCost": 3, "depth": 1, + "gas": 2074950, + "gasCost": 3, + "op": "PUSH1", + "pc": 3280, "stack": [ "0x7f29c394", "0x17f", @@ -11587,11 +11587,11 @@ ] }, { - "pc": 3282, - "op": "NOT", - "gas": 2076459, - "gasCost": 3, "depth": 1, + "gas": 2074947, + "gasCost": 3, + "op": "NOT", + "pc": 3282, "stack": [ "0x7f29c394", "0x17f", @@ -11615,11 +11615,11 @@ ] }, { - "pc": 3283, - "op": "PUSH1", - "gas": 2076456, - "gasCost": 3, "depth": 1, + "gas": 2074944, + "gasCost": 3, + "op": "PUSH1", + "pc": 3283, "stack": [ "0x7f29c394", "0x17f", @@ -11643,11 +11643,11 @@ ] }, { - "pc": 3285, - "op": "DUP4", - "gas": 2076453, - "gasCost": 3, "depth": 1, + "gas": 2074941, + "gasCost": 3, + "op": "DUP4", + "pc": 3285, "stack": [ "0x7f29c394", "0x17f", @@ -11672,11 +11672,11 @@ ] }, { - "pc": 3286, - "op": "ADD", - "gas": 2076450, - "gasCost": 3, "depth": 1, + "gas": 2074938, + "gasCost": 3, + "op": "ADD", + "pc": 3286, "stack": [ "0x7f29c394", "0x17f", @@ -11702,11 +11702,11 @@ ] }, { - "pc": 3287, - "op": "AND", - "gas": 2076447, - "gasCost": 3, "depth": 1, + "gas": 2074935, + "gasCost": 3, + "op": "AND", + "pc": 3287, "stack": [ "0x7f29c394", "0x17f", @@ -11731,11 +11731,11 @@ ] }, { - "pc": 3288, - "op": "SWAP1", - "gas": 2076444, - "gasCost": 3, "depth": 1, + "gas": 2074932, + "gasCost": 3, + "op": "SWAP1", + "pc": 3288, "stack": [ "0x7f29c394", "0x17f", @@ -11759,11 +11759,11 @@ ] }, { - "pc": 3289, - "op": "POP", - "gas": 2076441, - "gasCost": 2, "depth": 1, + "gas": 2074929, + "gasCost": 2, + "op": "POP", + "pc": 3289, "stack": [ "0x7f29c394", "0x17f", @@ -11787,11 +11787,11 @@ ] }, { - "pc": 3290, - "op": "SWAP2", - "gas": 2076439, - "gasCost": 3, "depth": 1, + "gas": 2074927, + "gasCost": 3, + "op": "SWAP2", + "pc": 3290, "stack": [ "0x7f29c394", "0x17f", @@ -11814,11 +11814,11 @@ ] }, { - "pc": 3291, - "op": "SWAP1", - "gas": 2076436, - "gasCost": 3, "depth": 1, + "gas": 2074924, + "gasCost": 3, + "op": "SWAP1", + "pc": 3291, "stack": [ "0x7f29c394", "0x17f", @@ -11841,11 +11841,11 @@ ] }, { - "pc": 3292, - "op": "POP", - "gas": 2076433, - "gasCost": 2, "depth": 1, + "gas": 2074921, + "gasCost": 2, + "op": "POP", + "pc": 3292, "stack": [ "0x7f29c394", "0x17f", @@ -11868,11 +11868,11 @@ ] }, { - "pc": 3293, - "op": "JUMP", - "gas": 2076431, - "gasCost": 8, "depth": 1, + "gas": 2074919, + "gasCost": 8, + "op": "JUMP", + "pc": 3293, "stack": [ "0x7f29c394", "0x17f", @@ -11894,11 +11894,11 @@ ] }, { - "pc": 3659, - "op": "JUMPDEST", - "gas": 2076423, - "gasCost": 1, "depth": 1, + "gas": 2074911, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 3659, "stack": [ "0x7f29c394", "0x17f", @@ -11919,11 +11919,11 @@ ] }, { - "pc": 3660, - "op": "DUP5", - "gas": 2076422, - "gasCost": 3, "depth": 1, + "gas": 2074910, + "gasCost": 3, + "op": "DUP5", + "pc": 3660, "stack": [ "0x7f29c394", "0x17f", @@ -11944,11 +11944,11 @@ ] }, { - "pc": 3661, - "op": "ADD", - "gas": 2076419, - "gasCost": 3, "depth": 1, + "gas": 2074907, + "gasCost": 3, + "op": "ADD", + "pc": 3661, "stack": [ "0x7f29c394", "0x17f", @@ -11970,11 +11970,11 @@ ] }, { - "pc": 3662, - "op": "SWAP2", - "gas": 2076416, - "gasCost": 3, "depth": 1, + "gas": 2074904, + "gasCost": 3, + "op": "SWAP2", + "pc": 3662, "stack": [ "0x7f29c394", "0x17f", @@ -11995,11 +11995,11 @@ ] }, { - "pc": 3663, - "op": "POP", - "gas": 2076413, - "gasCost": 2, "depth": 1, + "gas": 2074901, + "gasCost": 2, + "op": "POP", + "pc": 3663, "stack": [ "0x7f29c394", "0x17f", @@ -12020,11 +12020,11 @@ ] }, { - "pc": 3664, - "op": "POP", - "gas": 2076411, - "gasCost": 2, "depth": 1, + "gas": 2074899, + "gasCost": 2, + "op": "POP", + "pc": 3664, "stack": [ "0x7f29c394", "0x17f", @@ -12044,11 +12044,11 @@ ] }, { - "pc": 3665, - "op": "SWAP3", - "gas": 2076409, - "gasCost": 3, "depth": 1, + "gas": 2074897, + "gasCost": 3, + "op": "SWAP3", + "pc": 3665, "stack": [ "0x7f29c394", "0x17f", @@ -12067,11 +12067,11 @@ ] }, { - "pc": 3666, - "op": "SWAP2", - "gas": 2076406, - "gasCost": 3, "depth": 1, + "gas": 2074894, + "gasCost": 3, + "op": "SWAP2", + "pc": 3666, "stack": [ "0x7f29c394", "0x17f", @@ -12090,11 +12090,11 @@ ] }, { - "pc": 3667, - "op": "POP", - "gas": 2076403, - "gasCost": 2, "depth": 1, + "gas": 2074891, + "gasCost": 2, + "op": "POP", + "pc": 3667, "stack": [ "0x7f29c394", "0x17f", @@ -12113,11 +12113,11 @@ ] }, { - "pc": 3668, - "op": "POP", - "gas": 2076401, - "gasCost": 2, "depth": 1, + "gas": 2074889, + "gasCost": 2, + "op": "POP", + "pc": 3668, "stack": [ "0x7f29c394", "0x17f", @@ -12135,11 +12135,11 @@ ] }, { - "pc": 3669, - "op": "JUMP", - "gas": 2076399, - "gasCost": 8, "depth": 1, + "gas": 2074887, + "gasCost": 8, + "op": "JUMP", + "pc": 3669, "stack": [ "0x7f29c394", "0x17f", @@ -12156,11 +12156,11 @@ ] }, { - "pc": 3698, - "op": "JUMPDEST", - "gas": 2076391, - "gasCost": 1, "depth": 1, + "gas": 2074879, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 3698, "stack": [ "0x7f29c394", "0x17f", @@ -12176,11 +12176,11 @@ ] }, { - "pc": 3699, - "op": "SWAP1", - "gas": 2076390, - "gasCost": 3, "depth": 1, + "gas": 2074878, + "gasCost": 3, + "op": "SWAP1", + "pc": 3699, "stack": [ "0x7f29c394", "0x17f", @@ -12196,11 +12196,11 @@ ] }, { - "pc": 3700, - "op": "POP", - "gas": 2076387, - "gasCost": 2, "depth": 1, + "gas": 2074875, + "gasCost": 2, + "op": "POP", + "pc": 3700, "stack": [ "0x7f29c394", "0x17f", @@ -12216,11 +12216,11 @@ ] }, { - "pc": 3701, - "op": "SWAP3", - "gas": 2076385, - "gasCost": 3, "depth": 1, + "gas": 2074873, + "gasCost": 3, + "op": "SWAP3", + "pc": 3701, "stack": [ "0x7f29c394", "0x17f", @@ -12235,11 +12235,11 @@ ] }, { - "pc": 3702, - "op": "SWAP2", - "gas": 2076382, - "gasCost": 3, "depth": 1, + "gas": 2074870, + "gasCost": 3, + "op": "SWAP2", + "pc": 3702, "stack": [ "0x7f29c394", "0x17f", @@ -12254,11 +12254,11 @@ ] }, { - "pc": 3703, - "op": "POP", - "gas": 2076379, - "gasCost": 2, "depth": 1, + "gas": 2074867, + "gasCost": 2, + "op": "POP", + "pc": 3703, "stack": [ "0x7f29c394", "0x17f", @@ -12273,11 +12273,11 @@ ] }, { - "pc": 3704, - "op": "POP", - "gas": 2076377, - "gasCost": 2, "depth": 1, + "gas": 2074865, + "gasCost": 2, + "op": "POP", + "pc": 3704, "stack": [ "0x7f29c394", "0x17f", @@ -12291,11 +12291,11 @@ ] }, { - "pc": 3705, - "op": "JUMP", - "gas": 2076375, - "gasCost": 8, "depth": 1, + "gas": 2074863, + "gasCost": 8, + "op": "JUMP", + "pc": 3705, "stack": [ "0x7f29c394", "0x17f", @@ -12308,11 +12308,11 @@ ] }, { - "pc": 1373, - "op": "JUMPDEST", - "gas": 2076367, - "gasCost": 1, "depth": 1, + "gas": 2074855, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 1373, "stack": [ "0x7f29c394", "0x17f", @@ -12324,11 +12324,11 @@ ] }, { - "pc": 1374, - "op": "PUSH1", - "gas": 2076366, - "gasCost": 3, "depth": 1, + "gas": 2074854, + "gasCost": 3, + "op": "PUSH1", + "pc": 1374, "stack": [ "0x7f29c394", "0x17f", @@ -12340,11 +12340,11 @@ ] }, { - "pc": 1376, - "op": "MLOAD", - "gas": 2076363, - "gasCost": 3, "depth": 1, + "gas": 2074851, + "gasCost": 3, + "op": "MLOAD", + "pc": 1376, "stack": [ "0x7f29c394", "0x17f", @@ -12357,11 +12357,11 @@ ] }, { - "pc": 1377, - "op": "DUP1", - "gas": 2076360, - "gasCost": 3, "depth": 1, + "gas": 2074848, + "gasCost": 3, + "op": "DUP1", + "pc": 1377, "stack": [ "0x7f29c394", "0x17f", @@ -12374,11 +12374,11 @@ ] }, { - "pc": 1378, - "op": "SWAP2", - "gas": 2076357, - "gasCost": 3, "depth": 1, + "gas": 2074845, + "gasCost": 3, + "op": "SWAP2", + "pc": 1378, "stack": [ "0x7f29c394", "0x17f", @@ -12392,11 +12392,11 @@ ] }, { - "pc": 1379, - "op": "SUB", - "gas": 2076354, - "gasCost": 3, "depth": 1, + "gas": 2074842, + "gasCost": 3, + "op": "SUB", + "pc": 1379, "stack": [ "0x7f29c394", "0x17f", @@ -12410,11 +12410,11 @@ ] }, { - "pc": 1380, - "op": "SWAP1", - "gas": 2076351, - "gasCost": 3, "depth": 1, + "gas": 2074839, + "gasCost": 3, + "op": "SWAP1", + "pc": 1380, "stack": [ "0x7f29c394", "0x17f", @@ -12427,11 +12427,11 @@ ] }, { - "pc": 1381, - "op": "LOG1", - "gas": 2076348, - "gasCost": 1518, "depth": 1, + "gas": 2074836, + "gasCost": 1518, + "op": "LOG1", + "pc": 1381, "stack": [ "0x7f29c394", "0x17f", @@ -12444,11 +12444,11 @@ ] }, { - "pc": 1382, - "op": "POP", - "gas": 2074830, - "gasCost": 2, "depth": 1, + "gas": 2073318, + "gasCost": 2, + "op": "POP", + "pc": 1382, "stack": [ "0x7f29c394", "0x17f", @@ -12458,11 +12458,11 @@ ] }, { - "pc": 1383, - "op": "PUSH3", - "gas": 2074828, - "gasCost": 3, "depth": 1, + "gas": 2073316, + "gasCost": 3, + "op": "PUSH3", + "pc": 1383, "stack": [ "0x7f29c394", "0x17f", @@ -12471,11 +12471,11 @@ ] }, { - "pc": 1387, - "op": "JUMP", - "gas": 2074825, - "gasCost": 8, "depth": 1, + "gas": 2073313, + "gasCost": 8, + "op": "JUMP", + "pc": 1387, "stack": [ "0x7f29c394", "0x17f", @@ -12485,11 +12485,11 @@ ] }, { - "pc": 1499, - "op": "JUMPDEST", - "gas": 2074817, - "gasCost": 1, "depth": 1, + "gas": 2073305, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 1499, "stack": [ "0x7f29c394", "0x17f", @@ -12498,11 +12498,11 @@ ] }, { - "pc": 1500, - "op": "PUSH3", - "gas": 2074816, - "gasCost": 3, "depth": 1, + "gas": 2073304, + "gasCost": 3, + "op": "PUSH3", + "pc": 1500, "stack": [ "0x7f29c394", "0x17f", @@ -12511,11 +12511,11 @@ ] }, { - "pc": 1504, - "op": "JUMP", - "gas": 2074813, - "gasCost": 8, "depth": 1, + "gas": 2073301, + "gasCost": 8, + "op": "JUMP", + "pc": 1504, "stack": [ "0x7f29c394", "0x17f", @@ -12525,11 +12525,11 @@ ] }, { - "pc": 1506, - "op": "JUMPDEST", - "gas": 2074805, - "gasCost": 1, "depth": 1, + "gas": 2073293, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 1506, "stack": [ "0x7f29c394", "0x17f", @@ -12538,11 +12538,11 @@ ] }, { - "pc": 1507, - "op": "ADDRESS", - "gas": 2074804, - "gasCost": 2, "depth": 1, + "gas": 2073292, + "gasCost": 2, + "op": "ADDRESS", + "pc": 1507, "stack": [ "0x7f29c394", "0x17f", @@ -12551,11 +12551,11 @@ ] }, { - "pc": 1508, - "op": "PUSH20", - "gas": 2074802, - "gasCost": 3, "depth": 1, + "gas": 2073290, + "gasCost": 3, + "op": "PUSH20", + "pc": 1508, "stack": [ "0x7f29c394", "0x17f", @@ -12565,11 +12565,11 @@ ] }, { - "pc": 1529, - "op": "AND", - "gas": 2074799, - "gasCost": 3, "depth": 1, + "gas": 2073287, + "gasCost": 3, + "op": "AND", + "pc": 1529, "stack": [ "0x7f29c394", "0x17f", @@ -12580,11 +12580,11 @@ ] }, { - "pc": 1530, - "op": "PUSH4", - "gas": 2074796, - "gasCost": 3, "depth": 1, + "gas": 2073284, + "gasCost": 3, + "op": "PUSH4", + "pc": 1530, "stack": [ "0x7f29c394", "0x17f", @@ -12594,11 +12594,11 @@ ] }, { - "pc": 1535, - "op": "PUSH1", - "gas": 2074793, - "gasCost": 3, "depth": 1, + "gas": 2073281, + "gasCost": 3, + "op": "PUSH1", + "pc": 1535, "stack": [ "0x7f29c394", "0x17f", @@ -12609,11 +12609,11 @@ ] }, { - "pc": 1537, - "op": "MLOAD", - "gas": 2074790, - "gasCost": 3, "depth": 1, + "gas": 2073278, + "gasCost": 3, + "op": "MLOAD", + "pc": 1537, "stack": [ "0x7f29c394", "0x17f", @@ -12625,11 +12625,11 @@ ] }, { - "pc": 1538, - "op": "DUP2", - "gas": 2074787, - "gasCost": 3, "depth": 1, + "gas": 2073275, + "gasCost": 3, + "op": "DUP2", + "pc": 1538, "stack": [ "0x7f29c394", "0x17f", @@ -12641,11 +12641,11 @@ ] }, { - "pc": 1539, - "op": "PUSH4", - "gas": 2074784, - "gasCost": 3, "depth": 1, + "gas": 2073272, + "gasCost": 3, + "op": "PUSH4", + "pc": 1539, "stack": [ "0x7f29c394", "0x17f", @@ -12658,11 +12658,11 @@ ] }, { - "pc": 1544, - "op": "AND", - "gas": 2074781, - "gasCost": 3, "depth": 1, + "gas": 2073269, + "gasCost": 3, + "op": "AND", + "pc": 1544, "stack": [ "0x7f29c394", "0x17f", @@ -12676,11 +12676,11 @@ ] }, { - "pc": 1545, - "op": "PUSH1", - "gas": 2074778, - "gasCost": 3, "depth": 1, + "gas": 2073266, + "gasCost": 3, + "op": "PUSH1", + "pc": 1545, "stack": [ "0x7f29c394", "0x17f", @@ -12693,11 +12693,11 @@ ] }, { - "pc": 1547, - "op": "SHL", - "gas": 2074775, - "gasCost": 3, "depth": 1, + "gas": 2073263, + "gasCost": 3, + "op": "SHL", + "pc": 1547, "stack": [ "0x7f29c394", "0x17f", @@ -12711,11 +12711,11 @@ ] }, { - "pc": 1548, - "op": "DUP2", - "gas": 2074772, - "gasCost": 3, "depth": 1, + "gas": 2073260, + "gasCost": 3, + "op": "DUP2", + "pc": 1548, "stack": [ "0x7f29c394", "0x17f", @@ -12726,13 +12726,13 @@ "0xe0", "0x8bfe44ff00000000000000000000000000000000000000000000000000000000" ] - }, - { - "pc": 1549, - "op": "MSTORE", - "gas": 2074769, - "gasCost": 3, + }, + { "depth": 1, + "gas": 2073257, + "gasCost": 3, + "op": "MSTORE", + "pc": 1549, "stack": [ "0x7f29c394", "0x17f", @@ -12746,11 +12746,11 @@ ] }, { - "pc": 1550, - "op": "PUSH1", - "gas": 2074766, - "gasCost": 3, "depth": 1, + "gas": 2073254, + "gasCost": 3, + "op": "PUSH1", + "pc": 1550, "stack": [ "0x7f29c394", "0x17f", @@ -12762,11 +12762,11 @@ ] }, { - "pc": 1552, - "op": "ADD", - "gas": 2074763, - "gasCost": 3, "depth": 1, + "gas": 2073251, + "gasCost": 3, + "op": "ADD", + "pc": 1552, "stack": [ "0x7f29c394", "0x17f", @@ -12779,11 +12779,11 @@ ] }, { - "pc": 1553, - "op": "PUSH1", - "gas": 2074760, - "gasCost": 3, "depth": 1, + "gas": 2073248, + "gasCost": 3, + "op": "PUSH1", + "pc": 1553, "stack": [ "0x7f29c394", "0x17f", @@ -12795,11 +12795,11 @@ ] }, { - "pc": 1555, - "op": "PUSH1", - "gas": 2074757, - "gasCost": 3, "depth": 1, + "gas": 2073245, + "gasCost": 3, + "op": "PUSH1", + "pc": 1555, "stack": [ "0x7f29c394", "0x17f", @@ -12812,11 +12812,11 @@ ] }, { - "pc": 1557, - "op": "MLOAD", - "gas": 2074754, - "gasCost": 3, "depth": 1, + "gas": 2073242, + "gasCost": 3, + "op": "MLOAD", + "pc": 1557, "stack": [ "0x7f29c394", "0x17f", @@ -12830,11 +12830,11 @@ ] }, { - "pc": 1558, - "op": "DUP1", - "gas": 2074751, - "gasCost": 3, "depth": 1, + "gas": 2073239, + "gasCost": 3, + "op": "DUP1", + "pc": 1558, "stack": [ "0x7f29c394", "0x17f", @@ -12848,11 +12848,11 @@ ] }, { - "pc": 1559, - "op": "DUP4", - "gas": 2074748, - "gasCost": 3, "depth": 1, + "gas": 2073236, + "gasCost": 3, + "op": "DUP4", + "pc": 1559, "stack": [ "0x7f29c394", "0x17f", @@ -12867,11 +12867,11 @@ ] }, { - "pc": 1560, - "op": "SUB", - "gas": 2074745, - "gasCost": 3, "depth": 1, + "gas": 2073233, + "gasCost": 3, + "op": "SUB", + "pc": 1560, "stack": [ "0x7f29c394", "0x17f", @@ -12887,11 +12887,11 @@ ] }, { - "pc": 1561, - "op": "DUP2", - "gas": 2074742, - "gasCost": 3, "depth": 1, + "gas": 2073230, + "gasCost": 3, + "op": "DUP2", + "pc": 1561, "stack": [ "0x7f29c394", "0x17f", @@ -12906,11 +12906,11 @@ ] }, { - "pc": 1562, - "op": "DUP7", - "gas": 2074739, - "gasCost": 3, "depth": 1, + "gas": 2073227, + "gasCost": 3, + "op": "DUP7", + "pc": 1562, "stack": [ "0x7f29c394", "0x17f", @@ -12926,11 +12926,11 @@ ] }, { - "pc": 1563, - "op": "DUP1", - "gas": 2074736, - "gasCost": 3, "depth": 1, + "gas": 2073224, + "gasCost": 3, + "op": "DUP1", + "pc": 1563, "stack": [ "0x7f29c394", "0x17f", @@ -12947,11 +12947,11 @@ ] }, { - "pc": 1564, - "op": "EXTCODESIZE", - "gas": 2074733, - "gasCost": 100, "depth": 1, + "gas": 2073221, + "gasCost": 700, + "op": "EXTCODESIZE", + "pc": 1564, "stack": [ "0x7f29c394", "0x17f", @@ -12969,11 +12969,11 @@ ] }, { - "pc": 1565, - "op": "ISZERO", - "gas": 2074633, - "gasCost": 3, "depth": 1, + "gas": 2072521, + "gasCost": 3, + "op": "ISZERO", + "pc": 1565, "stack": [ "0x7f29c394", "0x17f", @@ -12991,11 +12991,11 @@ ] }, { - "pc": 1566, - "op": "DUP1", - "gas": 2074630, - "gasCost": 3, "depth": 1, + "gas": 2072518, + "gasCost": 3, + "op": "DUP1", + "pc": 1566, "stack": [ "0x7f29c394", "0x17f", @@ -13013,11 +13013,11 @@ ] }, { - "pc": 1567, - "op": "ISZERO", - "gas": 2074627, - "gasCost": 3, "depth": 1, + "gas": 2072515, + "gasCost": 3, + "op": "ISZERO", + "pc": 1567, "stack": [ "0x7f29c394", "0x17f", @@ -13036,11 +13036,11 @@ ] }, { - "pc": 1568, - "op": "PUSH3", - "gas": 2074624, - "gasCost": 3, "depth": 1, + "gas": 2072512, + "gasCost": 3, + "op": "PUSH3", + "pc": 1568, "stack": [ "0x7f29c394", "0x17f", @@ -13059,11 +13059,11 @@ ] }, { - "pc": 1572, - "op": "JUMPI", - "gas": 2074621, - "gasCost": 10, "depth": 1, + "gas": 2072509, + "gasCost": 10, + "op": "JUMPI", + "pc": 1572, "stack": [ "0x7f29c394", "0x17f", @@ -13083,11 +13083,11 @@ ] }, { - "pc": 1577, - "op": "JUMPDEST", - "gas": 2074611, - "gasCost": 1, "depth": 1, + "gas": 2072499, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 1577, "stack": [ "0x7f29c394", "0x17f", @@ -13105,11 +13105,11 @@ ] }, { - "pc": 1578, - "op": "POP", - "gas": 2074610, - "gasCost": 2, "depth": 1, + "gas": 2072498, + "gasCost": 2, + "op": "POP", + "pc": 1578, "stack": [ "0x7f29c394", "0x17f", @@ -13127,11 +13127,11 @@ ] }, { - "pc": 1579, - "op": "GAS", - "gas": 2074608, - "gasCost": 2, "depth": 1, + "gas": 2072496, + "gasCost": 2, + "op": "GAS", + "pc": 1579, "stack": [ "0x7f29c394", "0x17f", @@ -13148,11 +13148,11 @@ ] }, { - "pc": 1580, - "op": "STATICCALL", - "gas": 2074606, - "gasCost": 2042192, "depth": 1, + "gas": 2072494, + "gasCost": 1396, + "op": "STATICCALL", + "pc": 1580, "stack": [ "0x7f29c394", "0x17f", @@ -13166,84 +13166,84 @@ "0x4", "0xe0", "Tracer.address", - "0x1fa7ee" + "0x1f9fae" ] }, { - "pc": 0, - "op": "PUSH1", - "gas": 2042092, - "gasCost": 3, "depth": 2, + "gas": 2039423, + "gasCost": 3, + "op": "PUSH1", + "pc": 0, "stack": [] }, { - "pc": 2, - "op": "PUSH1", - "gas": 2042089, - "gasCost": 3, "depth": 2, + "gas": 2039420, + "gasCost": 3, + "op": "PUSH1", + "pc": 2, "stack": [ "0x80" ] }, { - "pc": 4, - "op": "MSTORE", - "gas": 2042086, - "gasCost": 12, "depth": 2, + "gas": 2039417, + "gasCost": 12, + "op": "MSTORE", + "pc": 4, "stack": [ "0x80", "0x40" ] }, { - "pc": 5, - "op": "CALLVALUE", - "gas": 2042074, - "gasCost": 2, "depth": 2, + "gas": 2039405, + "gasCost": 2, + "op": "CALLVALUE", + "pc": 5, "stack": [] }, { - "pc": 6, - "op": "DUP1", - "gas": 2042072, - "gasCost": 3, "depth": 2, + "gas": 2039403, + "gasCost": 3, + "op": "DUP1", + "pc": 6, "stack": [ "0x0" ] }, { - "pc": 7, - "op": "ISZERO", - "gas": 2042069, - "gasCost": 3, "depth": 2, + "gas": 2039400, + "gasCost": 3, + "op": "ISZERO", + "pc": 7, "stack": [ "0x0", "0x0" ] }, { - "pc": 8, - "op": "PUSH3", - "gas": 2042066, - "gasCost": 3, "depth": 2, + "gas": 2039397, + "gasCost": 3, + "op": "PUSH3", + "pc": 8, "stack": [ "0x0", "0x1" ] }, { - "pc": 12, - "op": "JUMPI", - "gas": 2042063, - "gasCost": 10, "depth": 2, + "gas": 2039394, + "gasCost": 10, + "op": "JUMPI", + "pc": 12, "stack": [ "0x0", "0x1", @@ -13251,141 +13251,141 @@ ] }, { - "pc": 17, - "op": "JUMPDEST", - "gas": 2042053, - "gasCost": 1, "depth": 2, + "gas": 2039384, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 17, "stack": [ "0x0" ] }, { - "pc": 18, - "op": "POP", - "gas": 2042052, - "gasCost": 2, "depth": 2, + "gas": 2039383, + "gasCost": 2, + "op": "POP", + "pc": 18, "stack": [ "0x0" ] }, { - "pc": 19, - "op": "PUSH1", - "gas": 2042050, - "gasCost": 3, "depth": 2, + "gas": 2039381, + "gasCost": 3, + "op": "PUSH1", + "pc": 19, "stack": [] }, { - "pc": 21, - "op": "CALLDATASIZE", - "gas": 2042047, - "gasCost": 2, "depth": 2, + "gas": 2039378, + "gasCost": 2, + "op": "CALLDATASIZE", + "pc": 21, "stack": [ "0x4" ] }, { - "pc": 22, - "op": "LT", - "gas": 2042045, - "gasCost": 3, "depth": 2, + "gas": 2039376, + "gasCost": 3, + "op": "LT", + "pc": 22, "stack": [ "0x4", "0x4" ] }, { - "pc": 23, - "op": "PUSH3", - "gas": 2042042, - "gasCost": 3, "depth": 2, + "gas": 2039373, + "gasCost": 3, + "op": "PUSH3", + "pc": 23, "stack": [ "0x0" ] }, { - "pc": 27, - "op": "JUMPI", - "gas": 2042039, - "gasCost": 10, "depth": 2, + "gas": 2039370, + "gasCost": 10, + "op": "JUMPI", + "pc": 27, "stack": [ "0x0", "0xac" ] }, { - "pc": 28, - "op": "PUSH1", - "gas": 2042029, - "gasCost": 3, "depth": 2, + "gas": 2039360, + "gasCost": 3, + "op": "PUSH1", + "pc": 28, "stack": [] }, { - "pc": 30, - "op": "CALLDATALOAD", - "gas": 2042026, - "gasCost": 3, "depth": 2, + "gas": 2039357, + "gasCost": 3, + "op": "CALLDATALOAD", + "pc": 30, "stack": [ "0x0" ] }, { - "pc": 31, - "op": "PUSH1", - "gas": 2042023, - "gasCost": 3, "depth": 2, + "gas": 2039354, + "gasCost": 3, + "op": "PUSH1", + "pc": 31, "stack": [ "0x8bfe44ff00000000000000000000000000000000000000000000000000000000" ] }, { - "pc": 33, - "op": "SHR", - "gas": 2042020, - "gasCost": 3, "depth": 2, + "gas": 2039351, + "gasCost": 3, + "op": "SHR", + "pc": 33, "stack": [ "0x8bfe44ff00000000000000000000000000000000000000000000000000000000", "0xe0" ] }, { - "pc": 34, - "op": "DUP1", - "gas": 2042017, - "gasCost": 3, "depth": 2, + "gas": 2039348, + "gasCost": 3, + "op": "DUP1", + "pc": 34, "stack": [ "0x8bfe44ff" ] }, - { - "pc": 35, - "op": "PUSH4", - "gas": 2042014, - "gasCost": 3, + { "depth": 2, + "gas": 2039345, + "gasCost": 3, + "op": "PUSH4", + "pc": 35, "stack": [ "0x8bfe44ff", "0x8bfe44ff" ] }, { - "pc": 40, - "op": "GT", - "gas": 2042011, - "gasCost": 3, "depth": 2, + "gas": 2039342, + "gasCost": 3, + "op": "GT", + "pc": 40, "stack": [ "0x8bfe44ff", "0x8bfe44ff", @@ -13393,22 +13393,22 @@ ] }, { - "pc": 41, - "op": "PUSH3", - "gas": 2042008, - "gasCost": 3, "depth": 2, + "gas": 2039339, + "gasCost": 3, + "op": "PUSH3", + "pc": 41, "stack": [ "0x8bfe44ff", "0x0" ] }, { - "pc": 45, - "op": "JUMPI", - "gas": 2042005, - "gasCost": 10, "depth": 2, + "gas": 2039336, + "gasCost": 10, + "op": "JUMPI", + "pc": 45, "stack": [ "0x8bfe44ff", "0x0", @@ -13416,32 +13416,32 @@ ] }, { - "pc": 46, - "op": "DUP1", - "gas": 2041995, - "gasCost": 3, "depth": 2, + "gas": 2039326, + "gasCost": 3, + "op": "DUP1", + "pc": 46, "stack": [ "0x8bfe44ff" ] }, { - "pc": 47, - "op": "PUSH4", - "gas": 2041992, - "gasCost": 3, "depth": 2, + "gas": 2039323, + "gasCost": 3, + "op": "PUSH4", + "pc": 47, "stack": [ "0x8bfe44ff", "0x8bfe44ff" ] }, { - "pc": 52, - "op": "EQ", - "gas": 2041989, - "gasCost": 3, "depth": 2, + "gas": 2039320, + "gasCost": 3, + "op": "EQ", + "pc": 52, "stack": [ "0x8bfe44ff", "0x8bfe44ff", @@ -13449,22 +13449,22 @@ ] }, { - "pc": 53, - "op": "PUSH3", - "gas": 2041986, - "gasCost": 3, "depth": 2, + "gas": 2039317, + "gasCost": 3, + "op": "PUSH3", + "pc": 53, "stack": [ "0x8bfe44ff", "0x1" ] }, { - "pc": 57, - "op": "JUMPI", - "gas": 2041983, - "gasCost": 10, "depth": 2, + "gas": 2039314, + "gasCost": 10, + "op": "JUMPI", + "pc": 57, "stack": [ "0x8bfe44ff", "0x1", @@ -13472,42 +13472,42 @@ ] }, { - "pc": 407, - "op": "JUMPDEST", - "gas": 2041973, - "gasCost": 1, "depth": 2, + "gas": 2039304, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 407, "stack": [ "0x8bfe44ff" ] }, { - "pc": 408, - "op": "PUSH3", - "gas": 2041972, - "gasCost": 3, "depth": 2, + "gas": 2039303, + "gasCost": 3, + "op": "PUSH3", + "pc": 408, "stack": [ "0x8bfe44ff" ] }, { - "pc": 412, - "op": "PUSH3", - "gas": 2041969, - "gasCost": 3, "depth": 2, + "gas": 2039300, + "gasCost": 3, + "op": "PUSH3", + "pc": 412, "stack": [ "0x8bfe44ff", "0x1a1" ] }, { - "pc": 416, - "op": "JUMP", - "gas": 2041966, - "gasCost": 8, "depth": 2, + "gas": 2039297, + "gasCost": 8, + "op": "JUMP", + "pc": 416, "stack": [ "0x8bfe44ff", "0x1a1", @@ -13515,33 +13515,33 @@ ] }, { - "pc": 1905, - "op": "JUMPDEST", - "gas": 2041958, - "gasCost": 1, "depth": 2, + "gas": 2039289, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 1905, "stack": [ "0x8bfe44ff", "0x1a1" ] }, { - "pc": 1906, - "op": "PUSH1", - "gas": 2041957, - "gasCost": 3, "depth": 2, + "gas": 2039288, + "gasCost": 3, + "op": "PUSH1", + "pc": 1906, "stack": [ "0x8bfe44ff", "0x1a1" ] }, { - "pc": 1908, - "op": "DUP1", - "gas": 2041954, - "gasCost": 3, "depth": 2, + "gas": 2039285, + "gasCost": 3, + "op": "DUP1", + "pc": 1908, "stack": [ "0x8bfe44ff", "0x1a1", @@ -13549,11 +13549,11 @@ ] }, { - "pc": 1909, - "op": "PUSH1", - "gas": 2041951, - "gasCost": 3, "depth": 2, + "gas": 2039282, + "gasCost": 3, + "op": "PUSH1", + "pc": 1909, "stack": [ "0x8bfe44ff", "0x1a1", @@ -13562,11 +13562,11 @@ ] }, { - "pc": 1911, - "op": "MLOAD", - "gas": 2041948, - "gasCost": 3, "depth": 2, + "gas": 2039279, + "gasCost": 3, + "op": "MLOAD", + "pc": 1911, "stack": [ "0x8bfe44ff", "0x1a1", @@ -13576,11 +13576,11 @@ ] }, { - "pc": 1912, - "op": "PUSH32", - "gas": 2041945, - "gasCost": 3, "depth": 2, + "gas": 2039276, + "gasCost": 3, + "op": "PUSH32", + "pc": 1912, "stack": [ "0x8bfe44ff", "0x1a1", @@ -13590,11 +13590,11 @@ ] }, { - "pc": 1945, - "op": "DUP2", - "gas": 2041942, - "gasCost": 3, "depth": 2, + "gas": 2039273, + "gasCost": 3, + "op": "DUP2", + "pc": 1945, "stack": [ "0x8bfe44ff", "0x1a1", @@ -13605,11 +13605,11 @@ ] }, { - "pc": 1946, - "op": "MSTORE", - "gas": 2041939, - "gasCost": 9, "depth": 2, + "gas": 2039270, + "gasCost": 9, + "op": "MSTORE", + "pc": 1946, "stack": [ "0x8bfe44ff", "0x1a1", @@ -13621,11 +13621,11 @@ ] }, { - "pc": 1947, - "op": "PUSH1", - "gas": 2041930, - "gasCost": 3, "depth": 2, + "gas": 2039261, + "gasCost": 3, + "op": "PUSH1", + "pc": 1947, "stack": [ "0x8bfe44ff", "0x1a1", @@ -13635,11 +13635,11 @@ ] }, { - "pc": 1949, - "op": "ADD", - "gas": 2041927, - "gasCost": 3, "depth": 2, + "gas": 2039258, + "gasCost": 3, + "op": "ADD", + "pc": 1949, "stack": [ "0x8bfe44ff", "0x1a1", @@ -13650,11 +13650,11 @@ ] }, { - "pc": 1950, - "op": "PUSH3", - "gas": 2041924, - "gasCost": 3, "depth": 2, + "gas": 2039255, + "gasCost": 3, + "op": "PUSH3", + "pc": 1950, "stack": [ "0x8bfe44ff", "0x1a1", @@ -13664,11 +13664,11 @@ ] }, { - "pc": 1954, - "op": "SWAP3", - "gas": 2041921, - "gasCost": 3, "depth": 2, + "gas": 2039252, + "gasCost": 3, + "op": "SWAP3", + "pc": 1954, "stack": [ "0x8bfe44ff", "0x1a1", @@ -13679,11 +13679,11 @@ ] }, { - "pc": 1955, - "op": "SWAP2", - "gas": 2041918, - "gasCost": 3, "depth": 2, + "gas": 2039249, + "gasCost": 3, + "op": "SWAP2", + "pc": 1955, "stack": [ "0x8bfe44ff", "0x1a1", @@ -13694,11 +13694,11 @@ ] }, { - "pc": 1956, - "op": "SWAP1", - "gas": 2041915, - "gasCost": 3, "depth": 2, + "gas": 2039246, + "gasCost": 3, + "op": "SWAP1", + "pc": 1956, "stack": [ "0x8bfe44ff", "0x1a1", @@ -13709,11 +13709,11 @@ ] }, { - "pc": 1957, - "op": "PUSH3", - "gas": 2041912, - "gasCost": 3, "depth": 2, + "gas": 2039243, + "gasCost": 3, + "op": "PUSH3", + "pc": 1957, "stack": [ "0x8bfe44ff", "0x1a1", @@ -13724,11 +13724,11 @@ ] }, { - "pc": 1961, - "op": "JUMP", - "gas": 2041909, - "gasCost": 8, "depth": 2, + "gas": 2039240, + "gasCost": 8, + "op": "JUMP", + "pc": 1961, "stack": [ "0x8bfe44ff", "0x1a1", @@ -13740,11 +13740,11 @@ ] }, { - "pc": 4049, - "op": "JUMPDEST", - "gas": 2041901, - "gasCost": 1, "depth": 2, + "gas": 2039232, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 4049, "stack": [ "0x8bfe44ff", "0x1a1", @@ -13755,11 +13755,11 @@ ] }, { - "pc": 4050, - "op": "PUSH1", - "gas": 2041900, - "gasCost": 3, "depth": 2, + "gas": 2039231, + "gasCost": 3, + "op": "PUSH1", + "pc": 4050, "stack": [ "0x8bfe44ff", "0x1a1", @@ -13770,11 +13770,11 @@ ] }, { - "pc": 4052, - "op": "PUSH1", - "gas": 2041897, - "gasCost": 3, "depth": 2, + "gas": 2039228, + "gasCost": 3, + "op": "PUSH1", + "pc": 4052, "stack": [ "0x8bfe44ff", "0x1a1", @@ -13786,11 +13786,11 @@ ] }, { - "pc": 4054, - "op": "DUP3", - "gas": 2041894, - "gasCost": 3, "depth": 2, + "gas": 2039225, + "gasCost": 3, + "op": "DUP3", + "pc": 4054, "stack": [ "0x8bfe44ff", "0x1a1", @@ -13803,11 +13803,11 @@ ] }, { - "pc": 4055, - "op": "ADD", - "gas": 2041891, - "gasCost": 3, "depth": 2, + "gas": 2039222, + "gasCost": 3, + "op": "ADD", + "pc": 4055, "stack": [ "0x8bfe44ff", "0x1a1", @@ -13821,11 +13821,11 @@ ] }, { - "pc": 4056, - "op": "SWAP1", - "gas": 2041888, - "gasCost": 3, "depth": 2, + "gas": 2039219, + "gasCost": 3, + "op": "SWAP1", + "pc": 4056, "stack": [ "0x8bfe44ff", "0x1a1", @@ -13838,11 +13838,11 @@ ] }, { - "pc": 4057, - "op": "POP", - "gas": 2041885, - "gasCost": 2, "depth": 2, + "gas": 2039216, + "gasCost": 2, + "op": "POP", + "pc": 4057, "stack": [ "0x8bfe44ff", "0x1a1", @@ -13855,11 +13855,11 @@ ] }, { - "pc": 4058, - "op": "PUSH3", - "gas": 2041883, - "gasCost": 3, "depth": 2, + "gas": 2039214, + "gasCost": 3, + "op": "PUSH3", + "pc": 4058, "stack": [ "0x8bfe44ff", "0x1a1", @@ -13871,11 +13871,11 @@ ] }, { - "pc": 4062, - "op": "PUSH1", - "gas": 2041880, - "gasCost": 3, "depth": 2, + "gas": 2039211, + "gasCost": 3, + "op": "PUSH1", + "pc": 4062, "stack": [ "0x8bfe44ff", "0x1a1", @@ -13888,11 +13888,11 @@ ] }, { - "pc": 4064, - "op": "DUP4", - "gas": 2041877, - "gasCost": 3, "depth": 2, + "gas": 2039208, + "gasCost": 3, + "op": "DUP4", + "pc": 4064, "stack": [ "0x8bfe44ff", "0x1a1", @@ -13906,11 +13906,11 @@ ] }, { - "pc": 4065, - "op": "ADD", - "gas": 2041874, - "gasCost": 3, "depth": 2, + "gas": 2039205, + "gasCost": 3, + "op": "ADD", + "pc": 4065, "stack": [ "0x8bfe44ff", "0x1a1", @@ -13925,11 +13925,11 @@ ] }, { - "pc": 4066, - "op": "DUP6", - "gas": 2041871, - "gasCost": 3, "depth": 2, + "gas": 2039202, + "gasCost": 3, + "op": "DUP6", + "pc": 4066, "stack": [ "0x8bfe44ff", "0x1a1", @@ -13943,11 +13943,11 @@ ] }, { - "pc": 4067, - "op": "PUSH3", - "gas": 2041868, - "gasCost": 3, "depth": 2, + "gas": 2039199, + "gasCost": 3, + "op": "PUSH3", + "pc": 4067, "stack": [ "0x8bfe44ff", "0x1a1", @@ -13962,11 +13962,11 @@ ] }, { - "pc": 4071, - "op": "JUMP", - "gas": 2041865, - "gasCost": 8, "depth": 2, + "gas": 2039196, + "gasCost": 8, + "op": "JUMP", + "pc": 4071, "stack": [ "0x8bfe44ff", "0x1a1", @@ -13982,11 +13982,11 @@ ] }, { - "pc": 4032, - "op": "JUMPDEST", - "gas": 2041857, - "gasCost": 1, "depth": 2, + "gas": 2039188, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 4032, "stack": [ "0x8bfe44ff", "0x1a1", @@ -14001,11 +14001,11 @@ ] }, { - "pc": 4033, - "op": "PUSH3", - "gas": 2041856, - "gasCost": 3, "depth": 2, + "gas": 2039187, + "gasCost": 3, + "op": "PUSH3", + "pc": 4033, "stack": [ "0x8bfe44ff", "0x1a1", @@ -14020,11 +14020,11 @@ ] }, { - "pc": 4037, - "op": "DUP2", - "gas": 2041853, - "gasCost": 3, "depth": 2, + "gas": 2039184, + "gasCost": 3, + "op": "DUP2", + "pc": 4037, "stack": [ "0x8bfe44ff", "0x1a1", @@ -14040,11 +14040,11 @@ ] }, { - "pc": 4038, - "op": "PUSH3", - "gas": 2041850, - "gasCost": 3, "depth": 2, + "gas": 2039181, + "gasCost": 3, + "op": "PUSH3", + "pc": 4038, "stack": [ "0x8bfe44ff", "0x1a1", @@ -14061,11 +14061,11 @@ ] }, { - "pc": 4042, - "op": "JUMP", - "gas": 2041847, - "gasCost": 8, "depth": 2, + "gas": 2039178, + "gasCost": 8, + "op": "JUMP", + "pc": 4042, "stack": [ "0x8bfe44ff", "0x1a1", @@ -14083,11 +14083,11 @@ ] }, { - "pc": 3992, - "op": "JUMPDEST", - "gas": 2041839, - "gasCost": 1, "depth": 2, + "gas": 2039170, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 3992, "stack": [ "0x8bfe44ff", "0x1a1", @@ -14104,11 +14104,11 @@ ] }, { - "pc": 3993, - "op": "PUSH1", - "gas": 2041838, - "gasCost": 3, "depth": 2, + "gas": 2039169, + "gasCost": 3, + "op": "PUSH1", + "pc": 3993, "stack": [ "0x8bfe44ff", "0x1a1", @@ -14125,11 +14125,11 @@ ] }, { - "pc": 3995, - "op": "PUSH3", - "gas": 2041835, - "gasCost": 3, "depth": 2, + "gas": 2039166, + "gasCost": 3, + "op": "PUSH3", + "pc": 3995, "stack": [ "0x8bfe44ff", "0x1a1", @@ -14147,11 +14147,11 @@ ] }, { - "pc": 3999, - "op": "PUSH3", - "gas": 2041832, - "gasCost": 3, "depth": 2, + "gas": 2039163, + "gasCost": 3, + "op": "PUSH3", + "pc": 3999, "stack": [ "0x8bfe44ff", "0x1a1", @@ -14170,11 +14170,11 @@ ] }, { - "pc": 4003, - "op": "PUSH3", - "gas": 2041829, - "gasCost": 3, "depth": 2, + "gas": 2039160, + "gasCost": 3, + "op": "PUSH3", + "pc": 4003, "stack": [ "0x8bfe44ff", "0x1a1", @@ -14194,11 +14194,11 @@ ] }, { - "pc": 4007, - "op": "DUP5", - "gas": 2041826, - "gasCost": 3, "depth": 2, + "gas": 2039157, + "gasCost": 3, + "op": "DUP5", + "pc": 4007, "stack": [ "0x8bfe44ff", "0x1a1", @@ -14219,11 +14219,11 @@ ] }, { - "pc": 4008, - "op": "PUSH3", - "gas": 2041823, - "gasCost": 3, "depth": 2, + "gas": 2039154, + "gasCost": 3, + "op": "PUSH3", + "pc": 4008, "stack": [ "0x8bfe44ff", "0x1a1", @@ -14245,11 +14245,11 @@ ] }, { - "pc": 4012, - "op": "JUMP", - "gas": 2041820, - "gasCost": 8, "depth": 2, + "gas": 2039151, + "gasCost": 8, + "op": "JUMP", + "pc": 4012, "stack": [ "0x8bfe44ff", "0x1a1", @@ -14272,11 +14272,11 @@ ] }, { - "pc": 3972, - "op": "JUMPDEST", - "gas": 2041812, - "gasCost": 1, "depth": 2, + "gas": 2039143, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 3972, "stack": [ "0x8bfe44ff", "0x1a1", @@ -14298,11 +14298,11 @@ ] }, { - "pc": 3973, - "op": "PUSH1", - "gas": 2041811, - "gasCost": 3, "depth": 2, + "gas": 2039142, + "gasCost": 3, + "op": "PUSH1", + "pc": 3973, "stack": [ "0x8bfe44ff", "0x1a1", @@ -14324,11 +14324,11 @@ ] }, { - "pc": 3975, - "op": "DUP2", - "gas": 2041808, - "gasCost": 3, "depth": 2, + "gas": 2039139, + "gasCost": 3, + "op": "DUP2", + "pc": 3975, "stack": [ "0x8bfe44ff", "0x1a1", @@ -14351,11 +14351,11 @@ ] }, { - "pc": 3976, - "op": "SWAP1", - "gas": 2041805, - "gasCost": 3, "depth": 2, + "gas": 2039136, + "gasCost": 3, + "op": "SWAP1", + "pc": 3976, "stack": [ "0x8bfe44ff", "0x1a1", @@ -14379,11 +14379,11 @@ ] }, { - "pc": 3977, - "op": "POP", - "gas": 2041802, - "gasCost": 2, "depth": 2, + "gas": 2039133, + "gasCost": 2, + "op": "POP", + "pc": 3977, "stack": [ "0x8bfe44ff", "0x1a1", @@ -14407,11 +14407,11 @@ ] }, { - "pc": 3978, - "op": "SWAP2", - "gas": 2041800, - "gasCost": 3, "depth": 2, + "gas": 2039131, + "gasCost": 3, + "op": "SWAP2", + "pc": 3978, "stack": [ "0x8bfe44ff", "0x1a1", @@ -14434,11 +14434,11 @@ ] }, { - "pc": 3979, - "op": "SWAP1", - "gas": 2041797, - "gasCost": 3, "depth": 2, + "gas": 2039128, + "gasCost": 3, + "op": "SWAP1", + "pc": 3979, "stack": [ "0x8bfe44ff", "0x1a1", @@ -14461,11 +14461,11 @@ ] }, { - "pc": 3980, - "op": "POP", - "gas": 2041794, - "gasCost": 2, "depth": 2, + "gas": 2039125, + "gasCost": 2, + "op": "POP", + "pc": 3980, "stack": [ "0x8bfe44ff", "0x1a1", @@ -14488,11 +14488,11 @@ ] }, { - "pc": 3981, - "op": "JUMP", - "gas": 2041792, - "gasCost": 8, "depth": 2, + "gas": 2039123, + "gasCost": 8, + "op": "JUMP", + "pc": 3981, "stack": [ "0x8bfe44ff", "0x1a1", @@ -14514,11 +14514,11 @@ ] }, { - "pc": 4013, - "op": "JUMPDEST", - "gas": 2041784, - "gasCost": 1, "depth": 2, + "gas": 2039115, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 4013, "stack": [ "0x8bfe44ff", "0x1a1", @@ -14539,11 +14539,11 @@ ] }, { - "pc": 4014, - "op": "PUSH3", - "gas": 2041783, - "gasCost": 3, "depth": 2, + "gas": 2039114, + "gasCost": 3, + "op": "PUSH3", + "pc": 4014, "stack": [ "0x8bfe44ff", "0x1a1", @@ -14564,11 +14564,11 @@ ] }, { - "pc": 4018, - "op": "JUMP", - "gas": 2041780, - "gasCost": 8, "depth": 2, + "gas": 2039111, + "gasCost": 8, + "op": "JUMP", + "pc": 4018, "stack": [ "0x8bfe44ff", "0x1a1", @@ -14590,11 +14590,11 @@ ] }, { - "pc": 3982, - "op": "JUMPDEST", - "gas": 2041772, - "gasCost": 1, "depth": 2, + "gas": 2039103, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 3982, "stack": [ "0x8bfe44ff", "0x1a1", @@ -14615,11 +14615,11 @@ ] }, { - "pc": 3983, - "op": "PUSH1", - "gas": 2041771, - "gasCost": 3, "depth": 2, + "gas": 2039102, + "gasCost": 3, + "op": "PUSH1", + "pc": 3983, "stack": [ "0x8bfe44ff", "0x1a1", @@ -14640,11 +14640,11 @@ ] }, { - "pc": 3985, - "op": "DUP2", - "gas": 2041768, - "gasCost": 3, "depth": 2, + "gas": 2039099, + "gasCost": 3, + "op": "DUP2", + "pc": 3985, "stack": [ "0x8bfe44ff", "0x1a1", @@ -14666,11 +14666,11 @@ ] }, { - "pc": 3986, - "op": "SWAP1", - "gas": 2041765, - "gasCost": 3, "depth": 2, + "gas": 2039096, + "gasCost": 3, + "op": "SWAP1", + "pc": 3986, "stack": [ "0x8bfe44ff", "0x1a1", @@ -14693,11 +14693,11 @@ ] }, { - "pc": 3987, - "op": "POP", - "gas": 2041762, - "gasCost": 2, "depth": 2, + "gas": 2039093, + "gasCost": 2, + "op": "POP", + "pc": 3987, "stack": [ "0x8bfe44ff", "0x1a1", @@ -14720,11 +14720,11 @@ ] }, { - "pc": 3988, - "op": "SWAP2", - "gas": 2041760, - "gasCost": 3, "depth": 2, + "gas": 2039091, + "gasCost": 3, + "op": "SWAP2", + "pc": 3988, "stack": [ "0x8bfe44ff", "0x1a1", @@ -14746,11 +14746,11 @@ ] }, { - "pc": 3989, - "op": "SWAP1", - "gas": 2041757, - "gasCost": 3, "depth": 2, + "gas": 2039088, + "gasCost": 3, + "op": "SWAP1", + "pc": 3989, "stack": [ "0x8bfe44ff", "0x1a1", @@ -14772,11 +14772,11 @@ ] }, { - "pc": 3990, - "op": "POP", - "gas": 2041754, - "gasCost": 2, "depth": 2, + "gas": 2039085, + "gasCost": 2, + "op": "POP", + "pc": 3990, "stack": [ "0x8bfe44ff", "0x1a1", @@ -14798,11 +14798,11 @@ ] }, { - "pc": 3991, - "op": "JUMP", - "gas": 2041752, - "gasCost": 8, "depth": 2, + "gas": 2039083, + "gasCost": 8, + "op": "JUMP", + "pc": 3991, "stack": [ "0x8bfe44ff", "0x1a1", @@ -14823,11 +14823,11 @@ ] }, { - "pc": 4019, - "op": "JUMPDEST", - "gas": 2041744, - "gasCost": 1, "depth": 2, + "gas": 2039075, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 4019, "stack": [ "0x8bfe44ff", "0x1a1", @@ -14847,11 +14847,11 @@ ] }, { - "pc": 4020, - "op": "PUSH3", - "gas": 2041743, - "gasCost": 3, "depth": 2, + "gas": 2039074, + "gasCost": 3, + "op": "PUSH3", + "pc": 4020, "stack": [ "0x8bfe44ff", "0x1a1", @@ -14871,11 +14871,11 @@ ] }, { - "pc": 4024, - "op": "JUMP", - "gas": 2041740, - "gasCost": 8, "depth": 2, + "gas": 2039071, + "gasCost": 8, + "op": "JUMP", + "pc": 4024, "stack": [ "0x8bfe44ff", "0x1a1", @@ -14896,11 +14896,11 @@ ] }, { - "pc": 2394, - "op": "JUMPDEST", - "gas": 2041732, - "gasCost": 1, "depth": 2, + "gas": 2039063, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2394, "stack": [ "0x8bfe44ff", "0x1a1", @@ -14920,11 +14920,11 @@ ] }, { - "pc": 2395, - "op": "PUSH1", - "gas": 2041731, - "gasCost": 3, "depth": 2, + "gas": 2039062, + "gasCost": 3, + "op": "PUSH1", + "pc": 2395, "stack": [ "0x8bfe44ff", "0x1a1", @@ -14944,11 +14944,11 @@ ] }, { - "pc": 2397, - "op": "DUP2", - "gas": 2041728, - "gasCost": 3, "depth": 2, + "gas": 2039059, + "gasCost": 3, + "op": "DUP2", + "pc": 2397, "stack": [ "0x8bfe44ff", "0x1a1", @@ -14969,11 +14969,11 @@ ] }, { - "pc": 2398, - "op": "SWAP1", - "gas": 2041725, - "gasCost": 3, "depth": 2, + "gas": 2039056, + "gasCost": 3, + "op": "SWAP1", + "pc": 2398, "stack": [ "0x8bfe44ff", "0x1a1", @@ -14995,11 +14995,11 @@ ] }, { - "pc": 2399, - "op": "POP", - "gas": 2041722, - "gasCost": 2, "depth": 2, + "gas": 2039053, + "gasCost": 2, + "op": "POP", + "pc": 2399, "stack": [ "0x8bfe44ff", "0x1a1", @@ -15020,12 +15020,12 @@ "0x0" ] }, - { - "pc": 2400, - "op": "SWAP2", - "gas": 2041720, - "gasCost": 3, + { "depth": 2, + "gas": 2039051, + "gasCost": 3, + "op": "SWAP2", + "pc": 2400, "stack": [ "0x8bfe44ff", "0x1a1", @@ -15046,11 +15046,11 @@ ] }, { - "pc": 2401, - "op": "SWAP1", - "gas": 2041717, - "gasCost": 3, "depth": 2, + "gas": 2039048, + "gasCost": 3, + "op": "SWAP1", + "pc": 2401, "stack": [ "0x8bfe44ff", "0x1a1", @@ -15071,11 +15071,11 @@ ] }, { - "pc": 2402, - "op": "POP", - "gas": 2041714, - "gasCost": 2, "depth": 2, + "gas": 2039045, + "gasCost": 2, + "op": "POP", + "pc": 2402, "stack": [ "0x8bfe44ff", "0x1a1", @@ -15096,11 +15096,11 @@ ] }, { - "pc": 2403, - "op": "JUMP", - "gas": 2041712, - "gasCost": 8, "depth": 2, + "gas": 2039043, + "gasCost": 8, + "op": "JUMP", + "pc": 2403, "stack": [ "0x8bfe44ff", "0x1a1", @@ -15120,11 +15120,11 @@ ] }, { - "pc": 4025, - "op": "JUMPDEST", - "gas": 2041704, - "gasCost": 1, "depth": 2, + "gas": 2039035, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 4025, "stack": [ "0x8bfe44ff", "0x1a1", @@ -15143,11 +15143,11 @@ ] }, { - "pc": 4026, - "op": "SWAP1", - "gas": 2041703, - "gasCost": 3, "depth": 2, + "gas": 2039034, + "gasCost": 3, + "op": "SWAP1", + "pc": 4026, "stack": [ "0x8bfe44ff", "0x1a1", @@ -15166,11 +15166,11 @@ ] }, { - "pc": 4027, - "op": "POP", - "gas": 2041700, - "gasCost": 2, "depth": 2, + "gas": 2039031, + "gasCost": 2, + "op": "POP", + "pc": 4027, "stack": [ "0x8bfe44ff", "0x1a1", @@ -15189,11 +15189,11 @@ ] }, { - "pc": 4028, - "op": "SWAP2", - "gas": 2041698, - "gasCost": 3, "depth": 2, + "gas": 2039029, + "gasCost": 3, + "op": "SWAP2", + "pc": 4028, "stack": [ "0x8bfe44ff", "0x1a1", @@ -15211,11 +15211,11 @@ ] }, { - "pc": 4029, - "op": "SWAP1", - "gas": 2041695, - "gasCost": 3, "depth": 2, + "gas": 2039026, + "gasCost": 3, + "op": "SWAP1", + "pc": 4029, "stack": [ "0x8bfe44ff", "0x1a1", @@ -15233,11 +15233,11 @@ ] }, { - "pc": 4030, - "op": "POP", - "gas": 2041692, - "gasCost": 2, "depth": 2, + "gas": 2039023, + "gasCost": 2, + "op": "POP", + "pc": 4030, "stack": [ "0x8bfe44ff", "0x1a1", @@ -15255,11 +15255,11 @@ ] }, { - "pc": 4031, - "op": "JUMP", - "gas": 2041690, - "gasCost": 8, "depth": 2, + "gas": 2039021, + "gasCost": 8, + "op": "JUMP", + "pc": 4031, "stack": [ "0x8bfe44ff", "0x1a1", @@ -15276,11 +15276,11 @@ ] }, { - "pc": 4043, - "op": "JUMPDEST", - "gas": 2041682, - "gasCost": 1, "depth": 2, + "gas": 2039013, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 4043, "stack": [ "0x8bfe44ff", "0x1a1", @@ -15296,11 +15296,11 @@ ] }, { - "pc": 4044, - "op": "DUP3", - "gas": 2041681, - "gasCost": 3, "depth": 2, + "gas": 2039012, + "gasCost": 3, + "op": "DUP3", + "pc": 4044, "stack": [ "0x8bfe44ff", "0x1a1", @@ -15316,11 +15316,11 @@ ] }, { - "pc": 4045, - "op": "MSTORE", - "gas": 2041678, - "gasCost": 6, "depth": 2, + "gas": 2039009, + "gasCost": 6, + "op": "MSTORE", + "pc": 4045, "stack": [ "0x8bfe44ff", "0x1a1", @@ -15337,11 +15337,11 @@ ] }, { - "pc": 4046, - "op": "POP", - "gas": 2041672, - "gasCost": 2, "depth": 2, + "gas": 2039003, + "gasCost": 2, + "op": "POP", + "pc": 4046, "stack": [ "0x8bfe44ff", "0x1a1", @@ -15356,11 +15356,11 @@ ] }, { - "pc": 4047, - "op": "POP", - "gas": 2041670, - "gasCost": 2, "depth": 2, + "gas": 2039001, + "gasCost": 2, + "op": "POP", + "pc": 4047, "stack": [ "0x8bfe44ff", "0x1a1", @@ -15374,11 +15374,11 @@ ] }, { - "pc": 4048, - "op": "JUMP", - "gas": 2041668, - "gasCost": 8, "depth": 2, + "gas": 2038999, + "gasCost": 8, + "op": "JUMP", + "pc": 4048, "stack": [ "0x8bfe44ff", "0x1a1", @@ -15391,11 +15391,11 @@ ] }, { - "pc": 4072, - "op": "JUMPDEST", - "gas": 2041660, - "gasCost": 1, "depth": 2, + "gas": 2038991, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 4072, "stack": [ "0x8bfe44ff", "0x1a1", @@ -15407,11 +15407,11 @@ ] }, { - "pc": 4073, - "op": "PUSH3", - "gas": 2041659, - "gasCost": 3, "depth": 2, + "gas": 2038990, + "gasCost": 3, + "op": "PUSH3", + "pc": 4073, "stack": [ "0x8bfe44ff", "0x1a1", @@ -15423,11 +15423,11 @@ ] }, { - "pc": 4077, - "op": "PUSH1", - "gas": 2041656, - "gasCost": 3, "depth": 2, + "gas": 2038987, + "gasCost": 3, + "op": "PUSH1", + "pc": 4077, "stack": [ "0x8bfe44ff", "0x1a1", @@ -15440,11 +15440,11 @@ ] }, { - "pc": 4079, - "op": "DUP4", - "gas": 2041653, - "gasCost": 3, "depth": 2, + "gas": 2038984, + "gasCost": 3, + "op": "DUP4", + "pc": 4079, "stack": [ "0x8bfe44ff", "0x1a1", @@ -15458,11 +15458,11 @@ ] }, { - "pc": 4080, - "op": "ADD", - "gas": 2041650, - "gasCost": 3, "depth": 2, + "gas": 2038981, + "gasCost": 3, + "op": "ADD", + "pc": 4080, "stack": [ "0x8bfe44ff", "0x1a1", @@ -15477,11 +15477,11 @@ ] }, { - "pc": 4081, - "op": "DUP5", - "gas": 2041647, - "gasCost": 3, "depth": 2, + "gas": 2038978, + "gasCost": 3, + "op": "DUP5", + "pc": 4081, "stack": [ "0x8bfe44ff", "0x1a1", @@ -15495,11 +15495,11 @@ ] }, { - "pc": 4082, - "op": "PUSH3", - "gas": 2041644, - "gasCost": 3, "depth": 2, + "gas": 2038975, + "gasCost": 3, + "op": "PUSH3", + "pc": 4082, "stack": [ "0x8bfe44ff", "0x1a1", @@ -15514,11 +15514,11 @@ ] }, { - "pc": 4086, - "op": "JUMP", - "gas": 2041641, - "gasCost": 8, "depth": 2, + "gas": 2038972, + "gasCost": 8, + "op": "JUMP", + "pc": 4086, "stack": [ "0x8bfe44ff", "0x1a1", @@ -15534,11 +15534,11 @@ ] }, { - "pc": 4032, - "op": "JUMPDEST", - "gas": 2041633, - "gasCost": 1, "depth": 2, + "gas": 2038964, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 4032, "stack": [ "0x8bfe44ff", "0x1a1", @@ -15553,11 +15553,11 @@ ] }, { - "pc": 4033, - "op": "PUSH3", - "gas": 2041632, - "gasCost": 3, "depth": 2, + "gas": 2038963, + "gasCost": 3, + "op": "PUSH3", + "pc": 4033, "stack": [ "0x8bfe44ff", "0x1a1", @@ -15572,11 +15572,11 @@ ] }, { - "pc": 4037, - "op": "DUP2", - "gas": 2041629, - "gasCost": 3, "depth": 2, + "gas": 2038960, + "gasCost": 3, + "op": "DUP2", + "pc": 4037, "stack": [ "0x8bfe44ff", "0x1a1", @@ -15592,11 +15592,11 @@ ] }, { - "pc": 4038, - "op": "PUSH3", - "gas": 2041626, - "gasCost": 3, "depth": 2, + "gas": 2038957, + "gasCost": 3, + "op": "PUSH3", + "pc": 4038, "stack": [ "0x8bfe44ff", "0x1a1", @@ -15613,11 +15613,11 @@ ] }, { - "pc": 4042, - "op": "JUMP", - "gas": 2041623, - "gasCost": 8, "depth": 2, + "gas": 2038954, + "gasCost": 8, + "op": "JUMP", + "pc": 4042, "stack": [ "0x8bfe44ff", "0x1a1", @@ -15635,11 +15635,11 @@ ] }, { - "pc": 3992, - "op": "JUMPDEST", - "gas": 2041615, - "gasCost": 1, "depth": 2, + "gas": 2038946, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 3992, "stack": [ "0x8bfe44ff", "0x1a1", @@ -15656,11 +15656,11 @@ ] }, { - "pc": 3993, - "op": "PUSH1", - "gas": 2041614, - "gasCost": 3, "depth": 2, + "gas": 2038945, + "gasCost": 3, + "op": "PUSH1", + "pc": 3993, "stack": [ "0x8bfe44ff", "0x1a1", @@ -15677,11 +15677,11 @@ ] }, { - "pc": 3995, - "op": "PUSH3", - "gas": 2041611, - "gasCost": 3, "depth": 2, + "gas": 2038942, + "gasCost": 3, + "op": "PUSH3", + "pc": 3995, "stack": [ "0x8bfe44ff", "0x1a1", @@ -15699,11 +15699,11 @@ ] }, { - "pc": 3999, - "op": "PUSH3", - "gas": 2041608, - "gasCost": 3, "depth": 2, + "gas": 2038939, + "gasCost": 3, + "op": "PUSH3", + "pc": 3999, "stack": [ "0x8bfe44ff", "0x1a1", @@ -15722,11 +15722,11 @@ ] }, { - "pc": 4003, - "op": "PUSH3", - "gas": 2041605, - "gasCost": 3, "depth": 2, + "gas": 2038936, + "gasCost": 3, + "op": "PUSH3", + "pc": 4003, "stack": [ "0x8bfe44ff", "0x1a1", @@ -15746,11 +15746,11 @@ ] }, { - "pc": 4007, - "op": "DUP5", - "gas": 2041602, - "gasCost": 3, "depth": 2, + "gas": 2038933, + "gasCost": 3, + "op": "DUP5", + "pc": 4007, "stack": [ "0x8bfe44ff", "0x1a1", @@ -15771,11 +15771,11 @@ ] }, { - "pc": 4008, - "op": "PUSH3", - "gas": 2041599, - "gasCost": 3, "depth": 2, + "gas": 2038930, + "gasCost": 3, + "op": "PUSH3", + "pc": 4008, "stack": [ "0x8bfe44ff", "0x1a1", @@ -15797,11 +15797,11 @@ ] }, { - "pc": 4012, - "op": "JUMP", - "gas": 2041596, - "gasCost": 8, "depth": 2, + "gas": 2038927, + "gasCost": 8, + "op": "JUMP", + "pc": 4012, "stack": [ "0x8bfe44ff", "0x1a1", @@ -15824,11 +15824,11 @@ ] }, { - "pc": 3972, - "op": "JUMPDEST", - "gas": 2041588, - "gasCost": 1, "depth": 2, + "gas": 2038919, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 3972, "stack": [ "0x8bfe44ff", "0x1a1", @@ -15850,11 +15850,11 @@ ] }, { - "pc": 3973, - "op": "PUSH1", - "gas": 2041587, - "gasCost": 3, "depth": 2, + "gas": 2038918, + "gasCost": 3, + "op": "PUSH1", + "pc": 3973, "stack": [ "0x8bfe44ff", "0x1a1", @@ -15876,11 +15876,11 @@ ] }, { - "pc": 3975, - "op": "DUP2", - "gas": 2041584, - "gasCost": 3, "depth": 2, + "gas": 2038915, + "gasCost": 3, + "op": "DUP2", + "pc": 3975, "stack": [ "0x8bfe44ff", "0x1a1", @@ -15903,11 +15903,11 @@ ] }, { - "pc": 3976, - "op": "SWAP1", - "gas": 2041581, - "gasCost": 3, "depth": 2, + "gas": 2038912, + "gasCost": 3, + "op": "SWAP1", + "pc": 3976, "stack": [ "0x8bfe44ff", "0x1a1", @@ -15931,11 +15931,11 @@ ] }, { - "pc": 3977, - "op": "POP", - "gas": 2041578, - "gasCost": 2, "depth": 2, + "gas": 2038909, + "gasCost": 2, + "op": "POP", + "pc": 3977, "stack": [ "0x8bfe44ff", "0x1a1", @@ -15959,11 +15959,11 @@ ] }, { - "pc": 3978, - "op": "SWAP2", - "gas": 2041576, - "gasCost": 3, "depth": 2, + "gas": 2038907, + "gasCost": 3, + "op": "SWAP2", + "pc": 3978, "stack": [ "0x8bfe44ff", "0x1a1", @@ -15986,11 +15986,11 @@ ] }, { - "pc": 3979, - "op": "SWAP1", - "gas": 2041573, - "gasCost": 3, "depth": 2, + "gas": 2038904, + "gasCost": 3, + "op": "SWAP1", + "pc": 3979, "stack": [ "0x8bfe44ff", "0x1a1", @@ -16013,11 +16013,11 @@ ] }, { - "pc": 3980, - "op": "POP", - "gas": 2041570, - "gasCost": 2, "depth": 2, + "gas": 2038901, + "gasCost": 2, + "op": "POP", + "pc": 3980, "stack": [ "0x8bfe44ff", "0x1a1", @@ -16040,11 +16040,11 @@ ] }, { - "pc": 3981, - "op": "JUMP", - "gas": 2041568, - "gasCost": 8, "depth": 2, + "gas": 2038899, + "gasCost": 8, + "op": "JUMP", + "pc": 3981, "stack": [ "0x8bfe44ff", "0x1a1", @@ -16066,11 +16066,11 @@ ] }, { - "pc": 4013, - "op": "JUMPDEST", - "gas": 2041560, - "gasCost": 1, "depth": 2, + "gas": 2038891, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 4013, "stack": [ "0x8bfe44ff", "0x1a1", @@ -16091,11 +16091,11 @@ ] }, { - "pc": 4014, - "op": "PUSH3", - "gas": 2041559, - "gasCost": 3, "depth": 2, + "gas": 2038890, + "gasCost": 3, + "op": "PUSH3", + "pc": 4014, "stack": [ "0x8bfe44ff", "0x1a1", @@ -16116,11 +16116,11 @@ ] }, { - "pc": 4018, - "op": "JUMP", - "gas": 2041556, - "gasCost": 8, "depth": 2, + "gas": 2038887, + "gasCost": 8, + "op": "JUMP", + "pc": 4018, "stack": [ "0x8bfe44ff", "0x1a1", @@ -16142,11 +16142,11 @@ ] }, { - "pc": 3982, - "op": "JUMPDEST", - "gas": 2041548, - "gasCost": 1, "depth": 2, + "gas": 2038879, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 3982, "stack": [ "0x8bfe44ff", "0x1a1", @@ -16167,11 +16167,11 @@ ] }, { - "pc": 3983, - "op": "PUSH1", - "gas": 2041547, - "gasCost": 3, "depth": 2, + "gas": 2038878, + "gasCost": 3, + "op": "PUSH1", + "pc": 3983, "stack": [ "0x8bfe44ff", "0x1a1", @@ -16192,11 +16192,11 @@ ] }, { - "pc": 3985, - "op": "DUP2", - "gas": 2041544, - "gasCost": 3, "depth": 2, + "gas": 2038875, + "gasCost": 3, + "op": "DUP2", + "pc": 3985, "stack": [ "0x8bfe44ff", "0x1a1", @@ -16218,11 +16218,11 @@ ] }, { - "pc": 3986, - "op": "SWAP1", - "gas": 2041541, - "gasCost": 3, "depth": 2, + "gas": 2038872, + "gasCost": 3, + "op": "SWAP1", + "pc": 3986, "stack": [ "0x8bfe44ff", "0x1a1", @@ -16245,11 +16245,11 @@ ] }, { - "pc": 3987, - "op": "POP", - "gas": 2041538, - "gasCost": 2, "depth": 2, + "gas": 2038869, + "gasCost": 2, + "op": "POP", + "pc": 3987, "stack": [ "0x8bfe44ff", "0x1a1", @@ -16272,11 +16272,11 @@ ] }, { - "pc": 3988, - "op": "SWAP2", - "gas": 2041536, - "gasCost": 3, "depth": 2, + "gas": 2038867, + "gasCost": 3, + "op": "SWAP2", + "pc": 3988, "stack": [ "0x8bfe44ff", "0x1a1", @@ -16298,11 +16298,11 @@ ] }, { - "pc": 3989, - "op": "SWAP1", - "gas": 2041533, - "gasCost": 3, "depth": 2, + "gas": 2038864, + "gasCost": 3, + "op": "SWAP1", + "pc": 3989, "stack": [ "0x8bfe44ff", "0x1a1", @@ -16324,11 +16324,11 @@ ] }, { - "pc": 3990, - "op": "POP", - "gas": 2041530, - "gasCost": 2, "depth": 2, + "gas": 2038861, + "gasCost": 2, + "op": "POP", + "pc": 3990, "stack": [ "0x8bfe44ff", "0x1a1", @@ -16350,11 +16350,11 @@ ] }, { - "pc": 3991, - "op": "JUMP", - "gas": 2041528, - "gasCost": 8, "depth": 2, + "gas": 2038859, + "gasCost": 8, + "op": "JUMP", + "pc": 3991, "stack": [ "0x8bfe44ff", "0x1a1", @@ -16375,11 +16375,11 @@ ] }, { - "pc": 4019, - "op": "JUMPDEST", - "gas": 2041520, - "gasCost": 1, "depth": 2, + "gas": 2038851, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 4019, "stack": [ "0x8bfe44ff", "0x1a1", @@ -16399,11 +16399,11 @@ ] }, { - "pc": 4020, - "op": "PUSH3", - "gas": 2041519, - "gasCost": 3, "depth": 2, + "gas": 2038850, + "gasCost": 3, + "op": "PUSH3", + "pc": 4020, "stack": [ "0x8bfe44ff", "0x1a1", @@ -16423,11 +16423,11 @@ ] }, { - "pc": 4024, - "op": "JUMP", - "gas": 2041516, - "gasCost": 8, "depth": 2, + "gas": 2038847, + "gasCost": 8, + "op": "JUMP", + "pc": 4024, "stack": [ "0x8bfe44ff", "0x1a1", @@ -16448,11 +16448,11 @@ ] }, { - "pc": 2394, - "op": "JUMPDEST", - "gas": 2041508, - "gasCost": 1, "depth": 2, + "gas": 2038839, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2394, "stack": [ "0x8bfe44ff", "0x1a1", @@ -16472,11 +16472,11 @@ ] }, { - "pc": 2395, - "op": "PUSH1", - "gas": 2041507, - "gasCost": 3, "depth": 2, + "gas": 2038838, + "gasCost": 3, + "op": "PUSH1", + "pc": 2395, "stack": [ "0x8bfe44ff", "0x1a1", @@ -16496,11 +16496,11 @@ ] }, { - "pc": 2397, - "op": "DUP2", - "gas": 2041504, - "gasCost": 3, "depth": 2, + "gas": 2038835, + "gasCost": 3, + "op": "DUP2", + "pc": 2397, "stack": [ "0x8bfe44ff", "0x1a1", @@ -16521,11 +16521,11 @@ ] }, { - "pc": 2398, - "op": "SWAP1", - "gas": 2041501, - "gasCost": 3, "depth": 2, + "gas": 2038832, + "gasCost": 3, + "op": "SWAP1", + "pc": 2398, "stack": [ "0x8bfe44ff", "0x1a1", @@ -16547,11 +16547,11 @@ ] }, { - "pc": 2399, - "op": "POP", - "gas": 2041498, - "gasCost": 2, "depth": 2, + "gas": 2038829, + "gasCost": 2, + "op": "POP", + "pc": 2399, "stack": [ "0x8bfe44ff", "0x1a1", @@ -16573,11 +16573,11 @@ ] }, { - "pc": 2400, - "op": "SWAP2", - "gas": 2041496, - "gasCost": 3, "depth": 2, + "gas": 2038827, + "gasCost": 3, + "op": "SWAP2", + "pc": 2400, "stack": [ "0x8bfe44ff", "0x1a1", @@ -16598,11 +16598,11 @@ ] }, { - "pc": 2401, - "op": "SWAP1", - "gas": 2041493, - "gasCost": 3, "depth": 2, + "gas": 2038824, + "gasCost": 3, + "op": "SWAP1", + "pc": 2401, "stack": [ "0x8bfe44ff", "0x1a1", @@ -16623,11 +16623,11 @@ ] }, { - "pc": 2402, - "op": "POP", - "gas": 2041490, - "gasCost": 2, "depth": 2, + "gas": 2038821, + "gasCost": 2, + "op": "POP", + "pc": 2402, "stack": [ "0x8bfe44ff", "0x1a1", @@ -16648,11 +16648,11 @@ ] }, { - "pc": 2403, - "op": "JUMP", - "gas": 2041488, - "gasCost": 8, "depth": 2, + "gas": 2038819, + "gasCost": 8, + "op": "JUMP", + "pc": 2403, "stack": [ "0x8bfe44ff", "0x1a1", @@ -16672,11 +16672,11 @@ ] }, { - "pc": 4025, - "op": "JUMPDEST", - "gas": 2041480, - "gasCost": 1, "depth": 2, + "gas": 2038811, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 4025, "stack": [ "0x8bfe44ff", "0x1a1", @@ -16695,11 +16695,11 @@ ] }, { - "pc": 4026, - "op": "SWAP1", - "gas": 2041479, - "gasCost": 3, "depth": 2, + "gas": 2038810, + "gasCost": 3, + "op": "SWAP1", + "pc": 4026, "stack": [ "0x8bfe44ff", "0x1a1", @@ -16718,11 +16718,11 @@ ] }, { - "pc": 4027, - "op": "POP", - "gas": 2041476, - "gasCost": 2, "depth": 2, + "gas": 2038807, + "gasCost": 2, + "op": "POP", + "pc": 4027, "stack": [ "0x8bfe44ff", "0x1a1", @@ -16741,11 +16741,11 @@ ] }, { - "pc": 4028, - "op": "SWAP2", - "gas": 2041474, - "gasCost": 3, "depth": 2, + "gas": 2038805, + "gasCost": 3, + "op": "SWAP2", + "pc": 4028, "stack": [ "0x8bfe44ff", "0x1a1", @@ -16763,11 +16763,11 @@ ] }, { - "pc": 4029, - "op": "SWAP1", - "gas": 2041471, - "gasCost": 3, "depth": 2, + "gas": 2038802, + "gasCost": 3, + "op": "SWAP1", + "pc": 4029, "stack": [ "0x8bfe44ff", "0x1a1", @@ -16785,11 +16785,11 @@ ] }, { - "pc": 4030, - "op": "POP", - "gas": 2041468, - "gasCost": 2, "depth": 2, + "gas": 2038799, + "gasCost": 2, + "op": "POP", + "pc": 4030, "stack": [ "0x8bfe44ff", "0x1a1", @@ -16807,11 +16807,11 @@ ] }, { - "pc": 4031, - "op": "JUMP", - "gas": 2041466, - "gasCost": 8, "depth": 2, + "gas": 2038797, + "gasCost": 8, + "op": "JUMP", + "pc": 4031, "stack": [ "0x8bfe44ff", "0x1a1", @@ -16828,11 +16828,11 @@ ] }, { - "pc": 4043, - "op": "JUMPDEST", - "gas": 2041458, - "gasCost": 1, "depth": 2, + "gas": 2038789, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 4043, "stack": [ "0x8bfe44ff", "0x1a1", @@ -16848,11 +16848,11 @@ ] }, { - "pc": 4044, - "op": "DUP3", - "gas": 2041457, - "gasCost": 3, "depth": 2, + "gas": 2038788, + "gasCost": 3, + "op": "DUP3", + "pc": 4044, "stack": [ "0x8bfe44ff", "0x1a1", @@ -16868,11 +16868,11 @@ ] }, { - "pc": 4045, - "op": "MSTORE", - "gas": 2041454, - "gasCost": 6, "depth": 2, + "gas": 2038785, + "gasCost": 6, + "op": "MSTORE", + "pc": 4045, "stack": [ "0x8bfe44ff", "0x1a1", @@ -16889,11 +16889,11 @@ ] }, { - "pc": 4046, - "op": "POP", - "gas": 2041448, - "gasCost": 2, "depth": 2, + "gas": 2038779, + "gasCost": 2, + "op": "POP", + "pc": 4046, "stack": [ "0x8bfe44ff", "0x1a1", @@ -16908,11 +16908,11 @@ ] }, { - "pc": 4047, - "op": "POP", - "gas": 2041446, - "gasCost": 2, "depth": 2, + "gas": 2038777, + "gasCost": 2, + "op": "POP", + "pc": 4047, "stack": [ "0x8bfe44ff", "0x1a1", @@ -16926,11 +16926,11 @@ ] }, { - "pc": 4048, - "op": "JUMP", - "gas": 2041444, - "gasCost": 8, "depth": 2, + "gas": 2038775, + "gasCost": 8, + "op": "JUMP", + "pc": 4048, "stack": [ "0x8bfe44ff", "0x1a1", @@ -16943,11 +16943,11 @@ ] }, { - "pc": 4087, - "op": "JUMPDEST", - "gas": 2041436, - "gasCost": 1, "depth": 2, + "gas": 2038767, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 4087, "stack": [ "0x8bfe44ff", "0x1a1", @@ -16958,12 +16958,12 @@ "0xc4" ] }, - { - "pc": 4088, - "op": "SWAP4", - "gas": 2041435, - "gasCost": 3, + { "depth": 2, + "gas": 2038766, + "gasCost": 3, + "op": "SWAP4", + "pc": 4088, "stack": [ "0x8bfe44ff", "0x1a1", @@ -16975,11 +16975,11 @@ ] }, { - "pc": 4089, - "op": "SWAP3", - "gas": 2041432, - "gasCost": 3, "depth": 2, + "gas": 2038763, + "gasCost": 3, + "op": "SWAP3", + "pc": 4089, "stack": [ "0x8bfe44ff", "0x1a1", @@ -16991,11 +16991,11 @@ ] }, { - "pc": 4090, - "op": "POP", - "gas": 2041429, - "gasCost": 2, "depth": 2, + "gas": 2038760, + "gasCost": 2, + "op": "POP", + "pc": 4090, "stack": [ "0x8bfe44ff", "0x1a1", @@ -17007,11 +17007,11 @@ ] }, { - "pc": 4091, - "op": "POP", - "gas": 2041427, - "gasCost": 2, "depth": 2, + "gas": 2038758, + "gasCost": 2, + "op": "POP", + "pc": 4091, "stack": [ "0x8bfe44ff", "0x1a1", @@ -17022,11 +17022,11 @@ ] }, { - "pc": 4092, - "op": "POP", - "gas": 2041425, - "gasCost": 2, "depth": 2, + "gas": 2038756, + "gasCost": 2, + "op": "POP", + "pc": 4092, "stack": [ "0x8bfe44ff", "0x1a1", @@ -17036,11 +17036,11 @@ ] }, { - "pc": 4093, - "op": "JUMP", - "gas": 2041423, - "gasCost": 8, "depth": 2, + "gas": 2038754, + "gasCost": 8, + "op": "JUMP", + "pc": 4093, "stack": [ "0x8bfe44ff", "0x1a1", @@ -17049,11 +17049,11 @@ ] }, { - "pc": 1962, - "op": "JUMPDEST", - "gas": 2041415, - "gasCost": 1, "depth": 2, + "gas": 2038746, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 1962, "stack": [ "0x8bfe44ff", "0x1a1", @@ -17061,11 +17061,11 @@ ] }, { - "pc": 1963, - "op": "PUSH1", - "gas": 2041414, - "gasCost": 3, "depth": 2, + "gas": 2038745, + "gasCost": 3, + "op": "PUSH1", + "pc": 1963, "stack": [ "0x8bfe44ff", "0x1a1", @@ -17073,11 +17073,11 @@ ] }, { - "pc": 1965, - "op": "MLOAD", - "gas": 2041411, - "gasCost": 3, "depth": 2, + "gas": 2038742, + "gasCost": 3, + "op": "MLOAD", + "pc": 1965, "stack": [ "0x8bfe44ff", "0x1a1", @@ -17086,11 +17086,11 @@ ] }, { - "pc": 1966, - "op": "DUP1", - "gas": 2041408, - "gasCost": 3, "depth": 2, + "gas": 2038739, + "gasCost": 3, + "op": "DUP1", + "pc": 1966, "stack": [ "0x8bfe44ff", "0x1a1", @@ -17099,11 +17099,11 @@ ] }, { - "pc": 1967, - "op": "SWAP2", - "gas": 2041405, - "gasCost": 3, "depth": 2, + "gas": 2038736, + "gasCost": 3, + "op": "SWAP2", + "pc": 1967, "stack": [ "0x8bfe44ff", "0x1a1", @@ -17113,11 +17113,11 @@ ] }, { - "pc": 1968, - "op": "SUB", - "gas": 2041402, - "gasCost": 3, "depth": 2, + "gas": 2038733, + "gasCost": 3, + "op": "SUB", + "pc": 1968, "stack": [ "0x8bfe44ff", "0x1a1", @@ -17127,11 +17127,11 @@ ] }, { - "pc": 1969, - "op": "SWAP1", - "gas": 2041399, - "gasCost": 3, "depth": 2, + "gas": 2038730, + "gasCost": 3, + "op": "SWAP1", + "pc": 1969, "stack": [ "0x8bfe44ff", "0x1a1", @@ -17140,11 +17140,11 @@ ] }, { - "pc": 1970, - "op": "REVERT", - "gas": 2041396, - "gasCost": 0, "depth": 2, + "gas": 2038727, + "gasCost": 0, + "op": "REVERT", + "pc": 1970, "stack": [ "0x8bfe44ff", "0x1a1", @@ -17153,11 +17153,11 @@ ] }, { - "pc": 1581, - "op": "SWAP3", - "gas": 2073810, - "gasCost": 3, "depth": 1, + "gas": 2071098, + "gasCost": 3, + "op": "SWAP3", + "pc": 1581, "stack": [ "0x7f29c394", "0x17f", @@ -17170,11 +17170,11 @@ ] }, { - "pc": 1582, - "op": "POP", - "gas": 2073807, - "gasCost": 2, "depth": 1, + "gas": 2071095, + "gasCost": 2, + "op": "POP", + "pc": 1582, "stack": [ "0x7f29c394", "0x17f", @@ -17187,11 +17187,11 @@ ] }, { - "pc": 1583, - "op": "POP", - "gas": 2073805, - "gasCost": 2, "depth": 1, + "gas": 2071093, + "gasCost": 2, + "op": "POP", + "pc": 1583, "stack": [ "0x7f29c394", "0x17f", @@ -17203,11 +17203,11 @@ ] }, { - "pc": 1584, - "op": "POP", - "gas": 2073803, - "gasCost": 2, "depth": 1, + "gas": 2071091, + "gasCost": 2, + "op": "POP", + "pc": 1584, "stack": [ "0x7f29c394", "0x17f", @@ -17218,11 +17218,11 @@ ] }, { - "pc": 1585, - "op": "DUP1", - "gas": 2073801, - "gasCost": 3, "depth": 1, + "gas": 2071089, + "gasCost": 3, + "op": "DUP1", + "pc": 1585, "stack": [ "0x7f29c394", "0x17f", @@ -17232,11 +17232,11 @@ ] }, { - "pc": 1586, - "op": "ISZERO", - "gas": 2073798, - "gasCost": 3, "depth": 1, + "gas": 2071086, + "gasCost": 3, + "op": "ISZERO", + "pc": 1586, "stack": [ "0x7f29c394", "0x17f", @@ -17247,11 +17247,11 @@ ] }, { - "pc": 1587, - "op": "PUSH3", - "gas": 2073795, - "gasCost": 3, "depth": 1, + "gas": 2071083, + "gasCost": 3, + "op": "PUSH3", + "pc": 1587, "stack": [ "0x7f29c394", "0x17f", @@ -17262,11 +17262,11 @@ ] }, { - "pc": 1591, - "op": "JUMPI", - "gas": 2073792, - "gasCost": 10, "depth": 1, + "gas": 2071080, + "gasCost": 10, + "op": "JUMPI", + "pc": 1591, "stack": [ "0x7f29c394", "0x17f", @@ -17278,11 +17278,11 @@ ] }, { - "pc": 1595, - "op": "JUMPDEST", - "gas": 2073782, - "gasCost": 1, "depth": 1, + "gas": 2071070, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 1595, "stack": [ "0x7f29c394", "0x17f", @@ -17292,11 +17292,11 @@ ] }, { - "pc": 1596, - "op": "PUSH3", - "gas": 2073781, - "gasCost": 3, "depth": 1, + "gas": 2071069, + "gasCost": 3, + "op": "PUSH3", + "pc": 1596, "stack": [ "0x7f29c394", "0x17f", @@ -17306,11 +17306,11 @@ ] }, { - "pc": 1600, - "op": "JUMPI", - "gas": 2073778, - "gasCost": 10, "depth": 1, + "gas": 2071066, + "gasCost": 10, + "op": "JUMPI", + "pc": 1600, "stack": [ "0x7f29c394", "0x17f", @@ -17321,11 +17321,11 @@ ] }, { - "pc": 1601, - "op": "PUSH3", - "gas": 2073768, - "gasCost": 3, "depth": 1, + "gas": 2071056, + "gasCost": 3, + "op": "PUSH3", + "pc": 1601, "stack": [ "0x7f29c394", "0x17f", @@ -17334,11 +17334,11 @@ ] }, { - "pc": 1605, - "op": "PUSH3", - "gas": 2073765, - "gasCost": 3, "depth": 1, + "gas": 2071053, + "gasCost": 3, + "op": "PUSH3", + "pc": 1605, "stack": [ "0x7f29c394", "0x17f", @@ -17348,11 +17348,11 @@ ] }, { - "pc": 1609, - "op": "JUMP", - "gas": 2073762, - "gasCost": 8, "depth": 1, + "gas": 2071050, + "gasCost": 8, + "op": "JUMP", + "pc": 1609, "stack": [ "0x7f29c394", "0x17f", @@ -17363,11 +17363,11 @@ ] }, { - "pc": 3240, - "op": "JUMPDEST", - "gas": 2073754, - "gasCost": 1, "depth": 1, + "gas": 2071042, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 3240, "stack": [ "0x7f29c394", "0x17f", @@ -17377,11 +17377,11 @@ ] }, { - "pc": 3241, - "op": "PUSH1", - "gas": 2073753, - "gasCost": 3, "depth": 1, + "gas": 2071041, + "gasCost": 3, + "op": "PUSH1", + "pc": 3241, "stack": [ "0x7f29c394", "0x17f", @@ -17391,11 +17391,11 @@ ] }, { - "pc": 3243, - "op": "PUSH1", - "gas": 2073750, - "gasCost": 3, "depth": 1, + "gas": 2071038, + "gasCost": 3, + "op": "PUSH1", + "pc": 3243, "stack": [ "0x7f29c394", "0x17f", @@ -17406,11 +17406,11 @@ ] }, { - "pc": 3245, - "op": "RETURNDATASIZE", - "gas": 2073747, - "gasCost": 2, "depth": 1, + "gas": 2071035, + "gasCost": 2, + "op": "RETURNDATASIZE", + "pc": 3245, "stack": [ "0x7f29c394", "0x17f", @@ -17422,11 +17422,11 @@ ] }, { - "pc": 3246, - "op": "GT", - "gas": 2073745, - "gasCost": 3, "depth": 1, + "gas": 2071033, + "gasCost": 3, + "op": "GT", + "pc": 3246, "stack": [ "0x7f29c394", "0x17f", @@ -17439,11 +17439,11 @@ ] }, { - "pc": 3247, - "op": "ISZERO", - "gas": 2073742, - "gasCost": 3, "depth": 1, + "gas": 2071030, + "gasCost": 3, + "op": "ISZERO", + "pc": 3247, "stack": [ "0x7f29c394", "0x17f", @@ -17455,11 +17455,11 @@ ] }, { - "pc": 3248, - "op": "PUSH3", - "gas": 2073739, - "gasCost": 3, "depth": 1, + "gas": 2071027, + "gasCost": 3, + "op": "PUSH3", + "pc": 3248, "stack": [ "0x7f29c394", "0x17f", @@ -17471,11 +17471,11 @@ ] }, { - "pc": 3252, - "op": "JUMPI", - "gas": 2073736, - "gasCost": 10, "depth": 1, + "gas": 2071024, + "gasCost": 10, + "op": "JUMPI", + "pc": 3252, "stack": [ "0x7f29c394", "0x17f", @@ -17488,11 +17488,11 @@ ] }, { - "pc": 3253, - "op": "PUSH1", - "gas": 2073726, - "gasCost": 3, "depth": 1, + "gas": 2071014, + "gasCost": 3, + "op": "PUSH1", + "pc": 3253, "stack": [ "0x7f29c394", "0x17f", @@ -17503,11 +17503,11 @@ ] }, { - "pc": 3255, - "op": "PUSH1", - "gas": 2073723, - "gasCost": 3, "depth": 1, + "gas": 2071011, + "gasCost": 3, + "op": "PUSH1", + "pc": 3255, "stack": [ "0x7f29c394", "0x17f", @@ -17519,11 +17519,11 @@ ] }, { - "pc": 3257, - "op": "DUP1", - "gas": 2073720, - "gasCost": 3, "depth": 1, + "gas": 2071008, + "gasCost": 3, + "op": "DUP1", + "pc": 3257, "stack": [ "0x7f29c394", "0x17f", @@ -17536,11 +17536,11 @@ ] }, { - "pc": 3258, - "op": "RETURNDATACOPY", - "gas": 2073717, - "gasCost": 6, "depth": 1, + "gas": 2071005, + "gasCost": 6, + "op": "RETURNDATACOPY", + "pc": 3258, "stack": [ "0x7f29c394", "0x17f", @@ -17554,11 +17554,11 @@ ] }, { - "pc": 3259, - "op": "PUSH3", - "gas": 2073711, - "gasCost": 3, "depth": 1, + "gas": 2070999, + "gasCost": 3, + "op": "PUSH3", + "pc": 3259, "stack": [ "0x7f29c394", "0x17f", @@ -17569,11 +17569,11 @@ ] }, { - "pc": 3263, - "op": "PUSH1", - "gas": 2073708, - "gasCost": 3, "depth": 1, + "gas": 2070996, + "gasCost": 3, + "op": "PUSH1", + "pc": 3263, "stack": [ "0x7f29c394", "0x17f", @@ -17585,11 +17585,11 @@ ] }, { - "pc": 3265, - "op": "MLOAD", - "gas": 2073705, - "gasCost": 3, "depth": 1, + "gas": 2070993, + "gasCost": 3, + "op": "MLOAD", + "pc": 3265, "stack": [ "0x7f29c394", "0x17f", @@ -17602,11 +17602,11 @@ ] }, { - "pc": 3266, - "op": "PUSH3", - "gas": 2073702, - "gasCost": 3, "depth": 1, + "gas": 2070990, + "gasCost": 3, + "op": "PUSH3", + "pc": 3266, "stack": [ "0x7f29c394", "0x17f", @@ -17619,11 +17619,11 @@ ] }, { - "pc": 3270, - "op": "JUMP", - "gas": 2073699, - "gasCost": 8, "depth": 1, + "gas": 2070987, + "gasCost": 8, + "op": "JUMP", + "pc": 3270, "stack": [ "0x7f29c394", "0x17f", @@ -17637,11 +17637,11 @@ ] }, { - "pc": 3227, - "op": "JUMPDEST", - "gas": 2073691, - "gasCost": 1, "depth": 1, + "gas": 2070979, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 3227, "stack": [ "0x7f29c394", "0x17f", @@ -17654,11 +17654,11 @@ ] }, { - "pc": 3228, - "op": "PUSH1", - "gas": 2073690, - "gasCost": 3, "depth": 1, + "gas": 2070978, + "gasCost": 3, + "op": "PUSH1", + "pc": 3228, "stack": [ "0x7f29c394", "0x17f", @@ -17671,11 +17671,11 @@ ] }, { - "pc": 3230, - "op": "DUP2", - "gas": 2073687, - "gasCost": 3, "depth": 1, + "gas": 2070975, + "gasCost": 3, + "op": "DUP2", + "pc": 3230, "stack": [ "0x7f29c394", "0x17f", @@ -17689,11 +17689,11 @@ ] }, { - "pc": 3231, - "op": "PUSH1", - "gas": 2073684, - "gasCost": 3, "depth": 1, + "gas": 2070972, + "gasCost": 3, + "op": "PUSH1", + "pc": 3231, "stack": [ "0x7f29c394", "0x17f", @@ -17708,11 +17708,11 @@ ] }, { - "pc": 3233, - "op": "SHR", - "gas": 2073681, - "gasCost": 3, "depth": 1, + "gas": 2070969, + "gasCost": 3, + "op": "SHR", + "pc": 3233, "stack": [ "0x7f29c394", "0x17f", @@ -17728,11 +17728,11 @@ ] }, { - "pc": 3234, - "op": "SWAP1", - "gas": 2073678, - "gasCost": 3, "depth": 1, + "gas": 2070966, + "gasCost": 3, + "op": "SWAP1", + "pc": 3234, "stack": [ "0x7f29c394", "0x17f", @@ -17747,11 +17747,11 @@ ] }, { - "pc": 3235, - "op": "POP", - "gas": 2073675, - "gasCost": 2, "depth": 1, + "gas": 2070963, + "gasCost": 2, + "op": "POP", + "pc": 3235, "stack": [ "0x7f29c394", "0x17f", @@ -17766,11 +17766,11 @@ ] }, { - "pc": 3236, - "op": "SWAP2", - "gas": 2073673, - "gasCost": 3, "depth": 1, + "gas": 2070961, + "gasCost": 3, + "op": "SWAP2", + "pc": 3236, "stack": [ "0x7f29c394", "0x17f", @@ -17784,11 +17784,11 @@ ] }, { - "pc": 3237, - "op": "SWAP1", - "gas": 2073670, - "gasCost": 3, "depth": 1, + "gas": 2070958, + "gasCost": 3, + "op": "SWAP1", + "pc": 3237, "stack": [ "0x7f29c394", "0x17f", @@ -17802,11 +17802,11 @@ ] }, { - "pc": 3238, - "op": "POP", - "gas": 2073667, - "gasCost": 2, "depth": 1, + "gas": 2070955, + "gasCost": 2, + "op": "POP", + "pc": 3238, "stack": [ "0x7f29c394", "0x17f", @@ -17820,11 +17820,11 @@ ] }, { - "pc": 3239, - "op": "JUMP", - "gas": 2073665, - "gasCost": 8, "depth": 1, + "gas": 2070953, + "gasCost": 8, + "op": "JUMP", + "pc": 3239, "stack": [ "0x7f29c394", "0x17f", @@ -17837,11 +17837,11 @@ ] }, { - "pc": 3271, - "op": "JUMPDEST", - "gas": 2073657, - "gasCost": 1, "depth": 1, + "gas": 2070945, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 3271, "stack": [ "0x7f29c394", "0x17f", @@ -17853,11 +17853,11 @@ ] }, { - "pc": 3272, - "op": "SWAP1", - "gas": 2073656, - "gasCost": 3, "depth": 1, + "gas": 2070944, + "gasCost": 3, + "op": "SWAP1", + "pc": 3272, "stack": [ "0x7f29c394", "0x17f", @@ -17869,11 +17869,11 @@ ] }, { - "pc": 3273, - "op": "POP", - "gas": 2073653, - "gasCost": 2, "depth": 1, + "gas": 2070941, + "gasCost": 2, + "op": "POP", + "pc": 3273, "stack": [ "0x7f29c394", "0x17f", @@ -17885,11 +17885,11 @@ ] }, { - "pc": 3274, - "op": "JUMPDEST", - "gas": 2073651, - "gasCost": 1, "depth": 1, + "gas": 2070939, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 3274, "stack": [ "0x7f29c394", "0x17f", @@ -17900,11 +17900,11 @@ ] }, { - "pc": 3275, - "op": "SWAP1", - "gas": 2073650, - "gasCost": 3, "depth": 1, + "gas": 2070938, + "gasCost": 3, + "op": "SWAP1", + "pc": 3275, "stack": [ "0x7f29c394", "0x17f", @@ -17915,11 +17915,11 @@ ] }, { - "pc": 3276, - "op": "JUMP", - "gas": 2073647, - "gasCost": 8, "depth": 1, + "gas": 2070935, + "gasCost": 8, + "op": "JUMP", + "pc": 3276, "stack": [ "0x7f29c394", "0x17f", @@ -17930,11 +17930,11 @@ ] }, { - "pc": 1610, - "op": "JUMPDEST", - "gas": 2073639, - "gasCost": 1, "depth": 1, + "gas": 2070927, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 1610, "stack": [ "0x7f29c394", "0x17f", @@ -17944,11 +17944,11 @@ ] }, { - "pc": 1611, - "op": "DUP1", - "gas": 2073638, - "gasCost": 3, "depth": 1, + "gas": 2070926, + "gasCost": 3, + "op": "DUP1", + "pc": 1611, "stack": [ "0x7f29c394", "0x17f", @@ -17958,11 +17958,11 @@ ] }, { - "pc": 1612, - "op": "PUSH4", - "gas": 2073635, - "gasCost": 3, "depth": 1, + "gas": 2070923, + "gasCost": 3, + "op": "PUSH4", + "pc": 1612, "stack": [ "0x7f29c394", "0x17f", @@ -17973,11 +17973,11 @@ ] }, { - "pc": 1617, - "op": "SUB", - "gas": 2073632, - "gasCost": 3, "depth": 1, + "gas": 2070920, + "gasCost": 3, + "op": "SUB", + "pc": 1617, "stack": [ "0x7f29c394", "0x17f", @@ -17989,11 +17989,11 @@ ] }, { - "pc": 1618, - "op": "PUSH3", - "gas": 2073629, - "gasCost": 3, "depth": 1, + "gas": 2070917, + "gasCost": 3, + "op": "PUSH3", + "pc": 1618, "stack": [ "0x7f29c394", "0x17f", @@ -18004,11 +18004,11 @@ ] }, { - "pc": 1622, - "op": "JUMPI", - "gas": 2073626, - "gasCost": 10, "depth": 1, + "gas": 2070914, + "gasCost": 10, + "op": "JUMPI", + "pc": 1622, "stack": [ "0x7f29c394", "0x17f", @@ -18020,11 +18020,11 @@ ] }, { - "pc": 1710, - "op": "JUMPDEST", - "gas": 2073616, - "gasCost": 1, "depth": 1, + "gas": 2070904, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 1710, "stack": [ "0x7f29c394", "0x17f", @@ -18034,11 +18034,11 @@ ] }, { - "pc": 1711, - "op": "POP", - "gas": 2073615, - "gasCost": 2, "depth": 1, + "gas": 2070903, + "gasCost": 2, + "op": "POP", + "pc": 1711, "stack": [ "0x7f29c394", "0x17f", @@ -18048,11 +18048,11 @@ ] }, { - "pc": 1712, - "op": "JUMPDEST", - "gas": 2073613, - "gasCost": 1, "depth": 1, + "gas": 2070901, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 1712, "stack": [ "0x7f29c394", "0x17f", @@ -18061,11 +18061,11 @@ ] }, { - "pc": 1713, - "op": "RETURNDATASIZE", - "gas": 2073612, - "gasCost": 2, "depth": 1, + "gas": 2070900, + "gasCost": 2, + "op": "RETURNDATASIZE", + "pc": 1713, "stack": [ "0x7f29c394", "0x17f", @@ -18074,11 +18074,11 @@ ] }, { - "pc": 1714, - "op": "DUP1", - "gas": 2073610, - "gasCost": 3, "depth": 1, + "gas": 2070898, + "gasCost": 3, + "op": "DUP1", + "pc": 1714, "stack": [ "0x7f29c394", "0x17f", @@ -18088,11 +18088,11 @@ ] }, { - "pc": 1715, - "op": "PUSH1", - "gas": 2073607, - "gasCost": 3, "depth": 1, + "gas": 2070895, + "gasCost": 3, + "op": "PUSH1", + "pc": 1715, "stack": [ "0x7f29c394", "0x17f", @@ -18103,11 +18103,11 @@ ] }, { - "pc": 1717, - "op": "DUP2", - "gas": 2073604, - "gasCost": 3, "depth": 1, + "gas": 2070892, + "gasCost": 3, + "op": "DUP2", + "pc": 1717, "stack": [ "0x7f29c394", "0x17f", @@ -18119,11 +18119,11 @@ ] }, { - "pc": 1718, - "op": "EQ", - "gas": 2073601, - "gasCost": 3, "depth": 1, + "gas": 2070889, + "gasCost": 3, + "op": "EQ", + "pc": 1718, "stack": [ "0x7f29c394", "0x17f", @@ -18136,11 +18136,11 @@ ] }, { - "pc": 1719, - "op": "PUSH3", - "gas": 2073598, - "gasCost": 3, "depth": 1, + "gas": 2070886, + "gasCost": 3, + "op": "PUSH3", + "pc": 1719, "stack": [ "0x7f29c394", "0x17f", @@ -18152,11 +18152,11 @@ ] }, { - "pc": 1723, - "op": "JUMPI", - "gas": 2073595, - "gasCost": 10, "depth": 1, + "gas": 2070883, + "gasCost": 10, + "op": "JUMPI", + "pc": 1723, "stack": [ "0x7f29c394", "0x17f", @@ -18169,11 +18169,11 @@ ] }, { - "pc": 1724, - "op": "PUSH1", - "gas": 2073585, - "gasCost": 3, "depth": 1, + "gas": 2070873, + "gasCost": 3, + "op": "PUSH1", + "pc": 1724, "stack": [ "0x7f29c394", "0x17f", @@ -18184,11 +18184,11 @@ ] }, { - "pc": 1726, - "op": "MLOAD", - "gas": 2073582, - "gasCost": 3, "depth": 1, + "gas": 2070870, + "gasCost": 3, + "op": "MLOAD", + "pc": 1726, "stack": [ "0x7f29c394", "0x17f", @@ -18200,11 +18200,11 @@ ] }, { - "pc": 1727, - "op": "SWAP2", - "gas": 2073579, - "gasCost": 3, "depth": 1, + "gas": 2070867, + "gasCost": 3, + "op": "SWAP2", + "pc": 1727, "stack": [ "0x7f29c394", "0x17f", @@ -18216,11 +18216,11 @@ ] }, { - "pc": 1728, - "op": "POP", - "gas": 2073576, - "gasCost": 2, "depth": 1, + "gas": 2070864, + "gasCost": 2, + "op": "POP", + "pc": 1728, "stack": [ "0x7f29c394", "0x17f", @@ -18232,11 +18232,11 @@ ] }, { - "pc": 1729, - "op": "PUSH1", - "gas": 2073574, - "gasCost": 3, "depth": 1, + "gas": 2070862, + "gasCost": 3, + "op": "PUSH1", + "pc": 1729, "stack": [ "0x7f29c394", "0x17f", @@ -18247,11 +18247,11 @@ ] }, { - "pc": 1731, - "op": "NOT", - "gas": 2073571, - "gasCost": 3, "depth": 1, + "gas": 2070859, + "gasCost": 3, + "op": "NOT", + "pc": 1731, "stack": [ "0x7f29c394", "0x17f", @@ -18263,11 +18263,11 @@ ] }, { - "pc": 1732, - "op": "PUSH1", - "gas": 2073568, - "gasCost": 3, "depth": 1, + "gas": 2070856, + "gasCost": 3, + "op": "PUSH1", + "pc": 1732, "stack": [ "0x7f29c394", "0x17f", @@ -18278,12 +18278,12 @@ "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" ] }, - { - "pc": 1734, - "op": "RETURNDATASIZE", - "gas": 2073565, - "gasCost": 2, + { "depth": 1, + "gas": 2070853, + "gasCost": 2, + "op": "RETURNDATASIZE", + "pc": 1734, "stack": [ "0x7f29c394", "0x17f", @@ -18296,11 +18296,11 @@ ] }, { - "pc": 1735, - "op": "ADD", - "gas": 2073563, - "gasCost": 3, "depth": 1, + "gas": 2070851, + "gasCost": 3, + "op": "ADD", + "pc": 1735, "stack": [ "0x7f29c394", "0x17f", @@ -18314,11 +18314,11 @@ ] }, { - "pc": 1736, - "op": "AND", - "gas": 2073560, - "gasCost": 3, "depth": 1, + "gas": 2070848, + "gasCost": 3, + "op": "AND", + "pc": 1736, "stack": [ "0x7f29c394", "0x17f", @@ -18331,11 +18331,11 @@ ] }, { - "pc": 1737, - "op": "DUP3", - "gas": 2073557, - "gasCost": 3, "depth": 1, + "gas": 2070845, + "gasCost": 3, + "op": "DUP3", + "pc": 1737, "stack": [ "0x7f29c394", "0x17f", @@ -18347,11 +18347,11 @@ ] }, { - "pc": 1738, - "op": "ADD", - "gas": 2073554, - "gasCost": 3, "depth": 1, + "gas": 2070842, + "gasCost": 3, + "op": "ADD", + "pc": 1738, "stack": [ "0x7f29c394", "0x17f", @@ -18364,11 +18364,11 @@ ] }, { - "pc": 1739, - "op": "PUSH1", - "gas": 2073551, - "gasCost": 3, "depth": 1, + "gas": 2070839, + "gasCost": 3, + "op": "PUSH1", + "pc": 1739, "stack": [ "0x7f29c394", "0x17f", @@ -18380,11 +18380,11 @@ ] }, { - "pc": 1741, - "op": "MSTORE", - "gas": 2073548, - "gasCost": 3, "depth": 1, + "gas": 2070836, + "gasCost": 3, + "op": "MSTORE", + "pc": 1741, "stack": [ "0x7f29c394", "0x17f", @@ -18397,11 +18397,11 @@ ] }, { - "pc": 1742, - "op": "RETURNDATASIZE", - "gas": 2073545, - "gasCost": 2, "depth": 1, + "gas": 2070833, + "gasCost": 2, + "op": "RETURNDATASIZE", + "pc": 1742, "stack": [ "0x7f29c394", "0x17f", @@ -18412,11 +18412,11 @@ ] }, { - "pc": 1743, - "op": "DUP3", - "gas": 2073543, - "gasCost": 3, "depth": 1, + "gas": 2070831, + "gasCost": 3, + "op": "DUP3", + "pc": 1743, "stack": [ "0x7f29c394", "0x17f", @@ -18428,11 +18428,11 @@ ] }, { - "pc": 1744, - "op": "MSTORE", - "gas": 2073540, - "gasCost": 3, "depth": 1, + "gas": 2070828, + "gasCost": 3, + "op": "MSTORE", + "pc": 1744, "stack": [ "0x7f29c394", "0x17f", @@ -18445,11 +18445,11 @@ ] }, { - "pc": 1745, - "op": "RETURNDATASIZE", - "gas": 2073537, - "gasCost": 2, "depth": 1, + "gas": 2070825, + "gasCost": 2, + "op": "RETURNDATASIZE", + "pc": 1745, "stack": [ "0x7f29c394", "0x17f", @@ -18460,11 +18460,11 @@ ] }, { - "pc": 1746, - "op": "PUSH1", - "gas": 2073535, - "gasCost": 3, "depth": 1, + "gas": 2070823, + "gasCost": 3, + "op": "PUSH1", + "pc": 1746, "stack": [ "0x7f29c394", "0x17f", @@ -18476,11 +18476,11 @@ ] }, { - "pc": 1748, - "op": "PUSH1", - "gas": 2073532, - "gasCost": 3, "depth": 1, + "gas": 2070820, + "gasCost": 3, + "op": "PUSH1", + "pc": 1748, "stack": [ "0x7f29c394", "0x17f", @@ -18493,11 +18493,11 @@ ] }, { - "pc": 1750, - "op": "DUP5", - "gas": 2073529, - "gasCost": 3, "depth": 1, + "gas": 2070817, + "gasCost": 3, + "op": "DUP5", + "pc": 1750, "stack": [ "0x7f29c394", "0x17f", @@ -18511,11 +18511,11 @@ ] }, { - "pc": 1751, - "op": "ADD", - "gas": 2073526, - "gasCost": 3, "depth": 1, + "gas": 2070814, + "gasCost": 3, + "op": "ADD", + "pc": 1751, "stack": [ "0x7f29c394", "0x17f", @@ -18530,11 +18530,11 @@ ] }, { - "pc": 1752, - "op": "RETURNDATACOPY", - "gas": 2073523, - "gasCost": 12, "depth": 1, + "gas": 2070811, + "gasCost": 12, + "op": "RETURNDATACOPY", + "pc": 1752, "stack": [ "0x7f29c394", "0x17f", @@ -18548,11 +18548,11 @@ ] }, { - "pc": 1753, - "op": "PUSH3", - "gas": 2073511, - "gasCost": 3, "depth": 1, + "gas": 2070799, + "gasCost": 3, + "op": "PUSH3", + "pc": 1753, "stack": [ "0x7f29c394", "0x17f", @@ -18563,11 +18563,11 @@ ] }, { - "pc": 1757, - "op": "JUMP", - "gas": 2073508, - "gasCost": 8, "depth": 1, + "gas": 2070796, + "gasCost": 8, + "op": "JUMP", + "pc": 1757, "stack": [ "0x7f29c394", "0x17f", @@ -18579,11 +18579,11 @@ ] }, { - "pc": 1763, - "op": "JUMPDEST", - "gas": 2073500, - "gasCost": 1, "depth": 1, + "gas": 2070788, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 1763, "stack": [ "0x7f29c394", "0x17f", @@ -18594,11 +18594,11 @@ ] }, { - "pc": 1764, - "op": "POP", - "gas": 2073499, - "gasCost": 2, "depth": 1, + "gas": 2070787, + "gasCost": 2, + "op": "POP", + "pc": 1764, "stack": [ "0x7f29c394", "0x17f", @@ -18609,11 +18609,11 @@ ] }, { - "pc": 1765, - "op": "PUSH32", - "gas": 2073497, - "gasCost": 3, "depth": 1, + "gas": 2070785, + "gasCost": 3, + "op": "PUSH32", + "pc": 1765, "stack": [ "0x7f29c394", "0x17f", @@ -18623,11 +18623,11 @@ ] }, { - "pc": 1798, - "op": "PUSH1", - "gas": 2073494, - "gasCost": 3, "depth": 1, + "gas": 2070782, + "gasCost": 3, + "op": "PUSH1", + "pc": 1798, "stack": [ "0x7f29c394", "0x17f", @@ -18638,11 +18638,11 @@ ] }, { - "pc": 1800, - "op": "MLOAD", - "gas": 2073491, - "gasCost": 3, "depth": 1, + "gas": 2070779, + "gasCost": 3, + "op": "MLOAD", + "pc": 1800, "stack": [ "0x7f29c394", "0x17f", @@ -18654,11 +18654,11 @@ ] }, { - "pc": 1801, - "op": "PUSH3", - "gas": 2073488, - "gasCost": 3, "depth": 1, + "gas": 2070776, + "gasCost": 3, + "op": "PUSH3", + "pc": 1801, "stack": [ "0x7f29c394", "0x17f", @@ -18670,11 +18670,11 @@ ] }, { - "pc": 1805, - "op": "SWAP1", - "gas": 2073485, - "gasCost": 3, "depth": 1, + "gas": 2070773, + "gasCost": 3, + "op": "SWAP1", + "pc": 1805, "stack": [ "0x7f29c394", "0x17f", @@ -18687,11 +18687,11 @@ ] }, { - "pc": 1806, - "op": "PUSH3", - "gas": 2073482, - "gasCost": 3, "depth": 1, + "gas": 2070770, + "gasCost": 3, + "op": "PUSH3", + "pc": 1806, "stack": [ "0x7f29c394", "0x17f", @@ -18704,11 +18704,11 @@ ] }, { - "pc": 1810, - "op": "JUMP", - "gas": 2073479, - "gasCost": 8, "depth": 1, + "gas": 2070767, + "gasCost": 8, + "op": "JUMP", + "pc": 1810, "stack": [ "0x7f29c394", "0x17f", @@ -18722,11 +18722,11 @@ ] }, { - "pc": 3824, - "op": "JUMPDEST", - "gas": 2073471, - "gasCost": 1, "depth": 1, + "gas": 2070759, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 3824, "stack": [ "0x7f29c394", "0x17f", @@ -18739,11 +18739,11 @@ ] }, { - "pc": 3825, - "op": "PUSH1", - "gas": 2073470, - "gasCost": 3, "depth": 1, + "gas": 2070758, + "gasCost": 3, + "op": "PUSH1", + "pc": 3825, "stack": [ "0x7f29c394", "0x17f", @@ -18756,11 +18756,11 @@ ] }, { - "pc": 3827, - "op": "PUSH1", - "gas": 2073467, - "gasCost": 3, "depth": 1, + "gas": 2070755, + "gasCost": 3, + "op": "PUSH1", + "pc": 3827, "stack": [ "0x7f29c394", "0x17f", @@ -18774,11 +18774,11 @@ ] }, { - "pc": 3829, - "op": "DUP3", - "gas": 2073464, - "gasCost": 3, "depth": 1, + "gas": 2070752, + "gasCost": 3, + "op": "DUP3", + "pc": 3829, "stack": [ "0x7f29c394", "0x17f", @@ -18793,11 +18793,11 @@ ] }, { - "pc": 3830, - "op": "ADD", - "gas": 2073461, - "gasCost": 3, "depth": 1, + "gas": 2070749, + "gasCost": 3, + "op": "ADD", + "pc": 3830, "stack": [ "0x7f29c394", "0x17f", @@ -18813,11 +18813,11 @@ ] }, { - "pc": 3831, - "op": "SWAP1", - "gas": 2073458, - "gasCost": 3, "depth": 1, + "gas": 2070746, + "gasCost": 3, + "op": "SWAP1", + "pc": 3831, "stack": [ "0x7f29c394", "0x17f", @@ -18832,11 +18832,11 @@ ] }, { - "pc": 3832, - "op": "POP", - "gas": 2073455, - "gasCost": 2, "depth": 1, + "gas": 2070743, + "gasCost": 2, + "op": "POP", + "pc": 3832, "stack": [ "0x7f29c394", "0x17f", @@ -18851,11 +18851,11 @@ ] }, { - "pc": 3833, - "op": "DUP2", - "gas": 2073453, - "gasCost": 3, "depth": 1, + "gas": 2070741, + "gasCost": 3, + "op": "DUP2", + "pc": 3833, "stack": [ "0x7f29c394", "0x17f", @@ -18869,11 +18869,11 @@ ] }, { - "pc": 3834, - "op": "DUP2", - "gas": 2073450, - "gasCost": 3, "depth": 1, + "gas": 2070738, + "gasCost": 3, + "op": "DUP2", + "pc": 3834, "stack": [ "0x7f29c394", "0x17f", @@ -18888,11 +18888,11 @@ ] }, { - "pc": 3835, - "op": "SUB", - "gas": 2073447, - "gasCost": 3, "depth": 1, + "gas": 2070735, + "gasCost": 3, + "op": "SUB", + "pc": 3835, "stack": [ "0x7f29c394", "0x17f", @@ -18908,11 +18908,11 @@ ] }, { - "pc": 3836, - "op": "PUSH1", - "gas": 2073444, - "gasCost": 3, "depth": 1, + "gas": 2070732, + "gasCost": 3, + "op": "PUSH1", + "pc": 3836, "stack": [ "0x7f29c394", "0x17f", @@ -18927,11 +18927,11 @@ ] }, { - "pc": 3838, - "op": "DUP4", - "gas": 2073441, - "gasCost": 3, "depth": 1, + "gas": 2070729, + "gasCost": 3, + "op": "DUP4", + "pc": 3838, "stack": [ "0x7f29c394", "0x17f", @@ -18947,11 +18947,11 @@ ] }, { - "pc": 3839, - "op": "ADD", - "gas": 2073438, - "gasCost": 3, "depth": 1, + "gas": 2070726, + "gasCost": 3, + "op": "ADD", + "pc": 3839, "stack": [ "0x7f29c394", "0x17f", @@ -18968,11 +18968,11 @@ ] }, { - "pc": 3840, - "op": "MSTORE", - "gas": 2073435, - "gasCost": 6, "depth": 1, + "gas": 2070723, + "gasCost": 6, + "op": "MSTORE", + "pc": 3840, "stack": [ "0x7f29c394", "0x17f", @@ -18988,11 +18988,11 @@ ] }, { - "pc": 3841, - "op": "PUSH3", - "gas": 2073429, - "gasCost": 3, "depth": 1, + "gas": 2070717, + "gasCost": 3, + "op": "PUSH3", + "pc": 3841, "stack": [ "0x7f29c394", "0x17f", @@ -19006,11 +19006,11 @@ ] }, { - "pc": 3845, - "op": "DUP2", - "gas": 2073426, - "gasCost": 3, "depth": 1, + "gas": 2070714, + "gasCost": 3, + "op": "DUP2", + "pc": 3845, "stack": [ "0x7f29c394", "0x17f", @@ -19025,11 +19025,11 @@ ] }, { - "pc": 3846, - "op": "PUSH3", - "gas": 2073423, - "gasCost": 3, "depth": 1, + "gas": 2070711, + "gasCost": 3, + "op": "PUSH3", + "pc": 3846, "stack": [ "0x7f29c394", "0x17f", @@ -19045,11 +19045,11 @@ ] }, { - "pc": 3850, - "op": "JUMP", - "gas": 2073420, - "gasCost": 8, "depth": 1, + "gas": 2070708, + "gasCost": 8, + "op": "JUMP", + "pc": 3850, "stack": [ "0x7f29c394", "0x17f", @@ -19066,11 +19066,11 @@ ] }, { - "pc": 3785, - "op": "JUMPDEST", - "gas": 2073412, - "gasCost": 1, "depth": 1, + "gas": 2070700, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 3785, "stack": [ "0x7f29c394", "0x17f", @@ -19086,11 +19086,11 @@ ] }, { - "pc": 3786, - "op": "PUSH1", - "gas": 2073411, - "gasCost": 3, "depth": 1, + "gas": 2070699, + "gasCost": 3, + "op": "PUSH1", + "pc": 3786, "stack": [ "0x7f29c394", "0x17f", @@ -19106,11 +19106,11 @@ ] }, { - "pc": 3788, - "op": "PUSH3", - "gas": 2073408, - "gasCost": 3, "depth": 1, + "gas": 2070696, + "gasCost": 3, + "op": "PUSH3", + "pc": 3788, "stack": [ "0x7f29c394", "0x17f", @@ -19127,11 +19127,11 @@ ] }, { - "pc": 3792, - "op": "PUSH1", - "gas": 2073405, - "gasCost": 3, "depth": 1, + "gas": 2070693, + "gasCost": 3, + "op": "PUSH1", + "pc": 3792, "stack": [ "0x7f29c394", "0x17f", @@ -19149,11 +19149,11 @@ ] }, { - "pc": 3794, - "op": "DUP4", - "gas": 2073402, - "gasCost": 3, "depth": 1, + "gas": 2070690, + "gasCost": 3, + "op": "DUP4", + "pc": 3794, "stack": [ "0x7f29c394", "0x17f", @@ -19172,11 +19172,11 @@ ] }, { - "pc": 3795, - "op": "PUSH3", - "gas": 2073399, - "gasCost": 3, "depth": 1, + "gas": 2070687, + "gasCost": 3, + "op": "PUSH3", + "pc": 3795, "stack": [ "0x7f29c394", "0x17f", @@ -19196,11 +19196,11 @@ ] }, { - "pc": 3799, - "op": "JUMP", - "gas": 2073396, - "gasCost": 8, "depth": 1, + "gas": 2070684, + "gasCost": 8, + "op": "JUMP", + "pc": 3799, "stack": [ "0x7f29c394", "0x17f", @@ -19221,11 +19221,11 @@ ] }, { - "pc": 2771, - "op": "JUMPDEST", - "gas": 2073388, - "gasCost": 1, "depth": 1, + "gas": 2070676, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2771, "stack": [ "0x7f29c394", "0x17f", @@ -19245,11 +19245,11 @@ ] }, { - "pc": 2772, - "op": "PUSH1", - "gas": 2073387, - "gasCost": 3, "depth": 1, + "gas": 2070675, + "gasCost": 3, + "op": "PUSH1", + "pc": 2772, "stack": [ "0x7f29c394", "0x17f", @@ -19269,11 +19269,11 @@ ] }, { - "pc": 2774, - "op": "DUP3", - "gas": 2073384, - "gasCost": 3, "depth": 1, + "gas": 2070672, + "gasCost": 3, + "op": "DUP3", + "pc": 2774, "stack": [ "0x7f29c394", "0x17f", @@ -19294,11 +19294,11 @@ ] }, { - "pc": 2775, - "op": "DUP3", - "gas": 2073381, - "gasCost": 3, "depth": 1, + "gas": 2070669, + "gasCost": 3, + "op": "DUP3", + "pc": 2775, "stack": [ "0x7f29c394", "0x17f", @@ -19320,11 +19320,11 @@ ] }, { - "pc": 2776, - "op": "MSTORE", - "gas": 2073378, - "gasCost": 6, "depth": 1, + "gas": 2070666, + "gasCost": 6, + "op": "MSTORE", + "pc": 2776, "stack": [ "0x7f29c394", "0x17f", @@ -19347,11 +19347,11 @@ ] }, { - "pc": 2777, - "op": "PUSH1", - "gas": 2073372, - "gasCost": 3, "depth": 1, + "gas": 2070660, + "gasCost": 3, + "op": "PUSH1", + "pc": 2777, "stack": [ "0x7f29c394", "0x17f", @@ -19372,11 +19372,11 @@ ] }, { - "pc": 2779, - "op": "DUP3", - "gas": 2073369, - "gasCost": 3, "depth": 1, + "gas": 2070657, + "gasCost": 3, + "op": "DUP3", + "pc": 2779, "stack": [ "0x7f29c394", "0x17f", @@ -19398,11 +19398,11 @@ ] }, { - "pc": 2780, - "op": "ADD", - "gas": 2073366, - "gasCost": 3, "depth": 1, + "gas": 2070654, + "gasCost": 3, + "op": "ADD", + "pc": 2780, "stack": [ "0x7f29c394", "0x17f", @@ -19425,11 +19425,11 @@ ] }, { - "pc": 2781, - "op": "SWAP1", - "gas": 2073363, - "gasCost": 3, "depth": 1, + "gas": 2070651, + "gasCost": 3, + "op": "SWAP1", + "pc": 2781, "stack": [ "0x7f29c394", "0x17f", @@ -19451,11 +19451,11 @@ ] }, { - "pc": 2782, - "op": "POP", - "gas": 2073360, - "gasCost": 2, "depth": 1, + "gas": 2070648, + "gasCost": 2, + "op": "POP", + "pc": 2782, "stack": [ "0x7f29c394", "0x17f", @@ -19477,11 +19477,11 @@ ] }, { - "pc": 2783, - "op": "SWAP3", - "gas": 2073358, - "gasCost": 3, "depth": 1, + "gas": 2070646, + "gasCost": 3, + "op": "SWAP3", + "pc": 2783, "stack": [ "0x7f29c394", "0x17f", @@ -19502,11 +19502,11 @@ ] }, { - "pc": 2784, - "op": "SWAP2", - "gas": 2073355, - "gasCost": 3, "depth": 1, + "gas": 2070643, + "gasCost": 3, + "op": "SWAP2", + "pc": 2784, "stack": [ "0x7f29c394", "0x17f", @@ -19527,11 +19527,11 @@ ] }, { - "pc": 2785, - "op": "POP", - "gas": 2073352, - "gasCost": 2, "depth": 1, + "gas": 2070640, + "gasCost": 2, + "op": "POP", + "pc": 2785, "stack": [ "0x7f29c394", "0x17f", @@ -19552,11 +19552,11 @@ ] }, { - "pc": 2786, - "op": "POP", - "gas": 2073350, - "gasCost": 2, "depth": 1, + "gas": 2070638, + "gasCost": 2, + "op": "POP", + "pc": 2786, "stack": [ "0x7f29c394", "0x17f", @@ -19576,11 +19576,11 @@ ] }, { - "pc": 2787, - "op": "JUMP", - "gas": 2073348, - "gasCost": 8, "depth": 1, + "gas": 2070636, + "gasCost": 8, + "op": "JUMP", + "pc": 2787, "stack": [ "0x7f29c394", "0x17f", @@ -19599,11 +19599,11 @@ ] }, { - "pc": 3800, - "op": "JUMPDEST", - "gas": 2073340, - "gasCost": 1, "depth": 1, + "gas": 2070628, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 3800, "stack": [ "0x7f29c394", "0x17f", @@ -19621,11 +19621,11 @@ ] }, { - "pc": 3801, - "op": "SWAP2", - "gas": 2073339, - "gasCost": 3, "depth": 1, + "gas": 2070627, + "gasCost": 3, + "op": "SWAP2", + "pc": 3801, "stack": [ "0x7f29c394", "0x17f", @@ -19643,11 +19643,11 @@ ] }, { - "pc": 3802, - "op": "POP", - "gas": 2073336, - "gasCost": 2, "depth": 1, + "gas": 2070624, + "gasCost": 2, + "op": "POP", + "pc": 3802, "stack": [ "0x7f29c394", "0x17f", @@ -19665,11 +19665,11 @@ ] }, { - "pc": 3803, - "op": "PUSH3", - "gas": 2073334, - "gasCost": 3, "depth": 1, + "gas": 2070622, + "gasCost": 3, + "op": "PUSH3", + "pc": 3803, "stack": [ "0x7f29c394", "0x17f", @@ -19686,11 +19686,11 @@ ] }, { - "pc": 3807, - "op": "DUP3", - "gas": 2073331, - "gasCost": 3, "depth": 1, + "gas": 2070619, + "gasCost": 3, + "op": "DUP3", + "pc": 3807, "stack": [ "0x7f29c394", "0x17f", @@ -19708,11 +19708,11 @@ ] }, { - "pc": 3808, - "op": "PUSH3", - "gas": 2073328, - "gasCost": 3, "depth": 1, + "gas": 2070616, + "gasCost": 3, + "op": "PUSH3", + "pc": 3808, "stack": [ "0x7f29c394", "0x17f", @@ -19731,11 +19731,11 @@ ] }, { - "pc": 3812, - "op": "JUMP", - "gas": 2073325, - "gasCost": 8, "depth": 1, + "gas": 2070613, + "gasCost": 8, + "op": "JUMP", + "pc": 3812, "stack": [ "0x7f29c394", "0x17f", @@ -19755,11 +19755,11 @@ ] }, { - "pc": 3706, - "op": "JUMPDEST", - "gas": 2073317, - "gasCost": 1, "depth": 1, + "gas": 2070605, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 3706, "stack": [ "0x7f29c394", "0x17f", @@ -19778,11 +19778,11 @@ ] }, { - "pc": 3707, - "op": "PUSH32", - "gas": 2073316, - "gasCost": 3, "depth": 1, + "gas": 2070604, + "gasCost": 3, + "op": "PUSH32", + "pc": 3707, "stack": [ "0x7f29c394", "0x17f", @@ -19801,11 +19801,11 @@ ] }, { - "pc": 3740, - "op": "PUSH1", - "gas": 2073313, - "gasCost": 3, "depth": 1, + "gas": 2070601, + "gasCost": 3, + "op": "PUSH1", + "pc": 3740, "stack": [ "0x7f29c394", "0x17f", @@ -19825,11 +19825,11 @@ ] }, { - "pc": 3742, - "op": "DUP3", - "gas": 2073310, - "gasCost": 3, "depth": 1, + "gas": 2070598, + "gasCost": 3, + "op": "DUP3", + "pc": 3742, "stack": [ "0x7f29c394", "0x17f", @@ -19850,11 +19850,11 @@ ] }, { - "pc": 3743, - "op": "ADD", - "gas": 2073307, - "gasCost": 3, "depth": 1, + "gas": 2070595, + "gasCost": 3, + "op": "ADD", + "pc": 3743, "stack": [ "0x7f29c394", "0x17f", @@ -19876,11 +19876,11 @@ ] }, { - "pc": 3744, - "op": "MSTORE", - "gas": 2073304, - "gasCost": 6, "depth": 1, + "gas": 2070592, + "gasCost": 6, + "op": "MSTORE", + "pc": 3744, "stack": [ "0x7f29c394", "0x17f", @@ -19901,11 +19901,11 @@ ] }, { - "pc": 3745, - "op": "PUSH32", - "gas": 2073298, - "gasCost": 3, "depth": 1, + "gas": 2070586, + "gasCost": 3, + "op": "PUSH32", + "pc": 3745, "stack": [ "0x7f29c394", "0x17f", @@ -19924,11 +19924,11 @@ ] }, { - "pc": 3778, - "op": "PUSH1", - "gas": 2073295, - "gasCost": 3, "depth": 1, + "gas": 2070583, + "gasCost": 3, + "op": "PUSH1", + "pc": 3778, "stack": [ "0x7f29c394", "0x17f", @@ -19948,11 +19948,11 @@ ] }, { - "pc": 3780, - "op": "DUP3", - "gas": 2073292, - "gasCost": 3, "depth": 1, + "gas": 2070580, + "gasCost": 3, + "op": "DUP3", + "pc": 3780, "stack": [ "0x7f29c394", "0x17f", @@ -19973,11 +19973,11 @@ ] }, { - "pc": 3781, - "op": "ADD", - "gas": 2073289, - "gasCost": 3, "depth": 1, + "gas": 2070577, + "gasCost": 3, + "op": "ADD", + "pc": 3781, "stack": [ "0x7f29c394", "0x17f", @@ -19999,11 +19999,11 @@ ] }, { - "pc": 3782, - "op": "MSTORE", - "gas": 2073286, - "gasCost": 6, "depth": 1, + "gas": 2070574, + "gasCost": 6, + "op": "MSTORE", + "pc": 3782, "stack": [ "0x7f29c394", "0x17f", @@ -20024,11 +20024,11 @@ ] }, { - "pc": 3783, - "op": "POP", - "gas": 2073280, - "gasCost": 2, "depth": 1, + "gas": 2070568, + "gasCost": 2, + "op": "POP", + "pc": 3783, "stack": [ "0x7f29c394", "0x17f", @@ -20047,11 +20047,11 @@ ] }, { - "pc": 3784, - "op": "JUMP", - "gas": 2073278, - "gasCost": 8, "depth": 1, + "gas": 2070566, + "gasCost": 8, + "op": "JUMP", + "pc": 3784, "stack": [ "0x7f29c394", "0x17f", @@ -20069,11 +20069,11 @@ ] }, { - "pc": 3813, - "op": "JUMPDEST", - "gas": 2073270, - "gasCost": 1, "depth": 1, + "gas": 2070558, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 3813, "stack": [ "0x7f29c394", "0x17f", @@ -20090,11 +20090,11 @@ ] }, { - "pc": 3814, - "op": "PUSH1", - "gas": 2073269, - "gasCost": 3, "depth": 1, + "gas": 2070557, + "gasCost": 3, + "op": "PUSH1", + "pc": 3814, "stack": [ "0x7f29c394", "0x17f", @@ -20111,11 +20111,11 @@ ] }, { - "pc": 3816, - "op": "DUP3", - "gas": 2073266, - "gasCost": 3, "depth": 1, + "gas": 2070554, + "gasCost": 3, + "op": "DUP3", + "pc": 3816, "stack": [ "0x7f29c394", "0x17f", @@ -20133,11 +20133,11 @@ ] }, { - "pc": 3817, - "op": "ADD", - "gas": 2073263, - "gasCost": 3, "depth": 1, + "gas": 2070551, + "gasCost": 3, + "op": "ADD", + "pc": 3817, "stack": [ "0x7f29c394", "0x17f", @@ -20156,11 +20156,11 @@ ] }, { - "pc": 3818, - "op": "SWAP1", - "gas": 2073260, - "gasCost": 3, "depth": 1, + "gas": 2070548, + "gasCost": 3, + "op": "SWAP1", + "pc": 3818, "stack": [ "0x7f29c394", "0x17f", @@ -20178,11 +20178,11 @@ ] }, { - "pc": 3819, - "op": "POP", - "gas": 2073257, - "gasCost": 2, "depth": 1, + "gas": 2070545, + "gasCost": 2, + "op": "POP", + "pc": 3819, "stack": [ "0x7f29c394", "0x17f", @@ -20200,11 +20200,11 @@ ] }, { - "pc": 3820, - "op": "SWAP2", - "gas": 2073255, - "gasCost": 3, "depth": 1, + "gas": 2070543, + "gasCost": 3, + "op": "SWAP2", + "pc": 3820, "stack": [ "0x7f29c394", "0x17f", @@ -20221,11 +20221,11 @@ ] }, { - "pc": 3821, - "op": "SWAP1", - "gas": 2073252, - "gasCost": 3, "depth": 1, + "gas": 2070540, + "gasCost": 3, + "op": "SWAP1", + "pc": 3821, "stack": [ "0x7f29c394", "0x17f", @@ -20242,11 +20242,11 @@ ] }, { - "pc": 3822, - "op": "POP", - "gas": 2073249, - "gasCost": 2, "depth": 1, + "gas": 2070537, + "gasCost": 2, + "op": "POP", + "pc": 3822, "stack": [ "0x7f29c394", "0x17f", @@ -20263,11 +20263,11 @@ ] }, { - "pc": 3823, - "op": "JUMP", - "gas": 2073247, - "gasCost": 8, "depth": 1, + "gas": 2070535, + "gasCost": 8, + "op": "JUMP", + "pc": 3823, "stack": [ "0x7f29c394", "0x17f", @@ -20283,11 +20283,11 @@ ] }, { - "pc": 3851, - "op": "JUMPDEST", - "gas": 2073239, - "gasCost": 1, "depth": 1, + "gas": 2070527, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 3851, "stack": [ "0x7f29c394", "0x17f", @@ -20302,11 +20302,11 @@ ] }, { - "pc": 3852, - "op": "SWAP1", - "gas": 2073238, - "gasCost": 3, "depth": 1, + "gas": 2070526, + "gasCost": 3, + "op": "SWAP1", + "pc": 3852, "stack": [ "0x7f29c394", "0x17f", @@ -20321,11 +20321,11 @@ ] }, { - "pc": 3853, - "op": "POP", - "gas": 2073235, - "gasCost": 2, "depth": 1, + "gas": 2070523, + "gasCost": 2, + "op": "POP", + "pc": 3853, "stack": [ "0x7f29c394", "0x17f", @@ -20340,11 +20340,11 @@ ] }, { - "pc": 3854, - "op": "SWAP2", - "gas": 2073233, - "gasCost": 3, "depth": 1, + "gas": 2070521, + "gasCost": 3, + "op": "SWAP2", + "pc": 3854, "stack": [ "0x7f29c394", "0x17f", @@ -20358,11 +20358,11 @@ ] }, { - "pc": 3855, - "op": "SWAP1", - "gas": 2073230, - "gasCost": 3, "depth": 1, + "gas": 2070518, + "gasCost": 3, + "op": "SWAP1", + "pc": 3855, "stack": [ "0x7f29c394", "0x17f", @@ -20376,11 +20376,11 @@ ] }, { - "pc": 3856, - "op": "POP", - "gas": 2073227, - "gasCost": 2, "depth": 1, + "gas": 2070515, + "gasCost": 2, + "op": "POP", + "pc": 3856, "stack": [ "0x7f29c394", "0x17f", @@ -20394,11 +20394,11 @@ ] }, { - "pc": 3857, - "op": "JUMP", - "gas": 2073225, - "gasCost": 8, "depth": 1, + "gas": 2070513, + "gasCost": 8, + "op": "JUMP", + "pc": 3857, "stack": [ "0x7f29c394", "0x17f", @@ -20411,11 +20411,11 @@ ] }, { - "pc": 1811, - "op": "JUMPDEST", - "gas": 2073217, - "gasCost": 1, "depth": 1, + "gas": 2070505, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 1811, "stack": [ "0x7f29c394", "0x17f", @@ -20427,11 +20427,11 @@ ] }, { - "pc": 1812, - "op": "PUSH1", - "gas": 2073216, - "gasCost": 3, "depth": 1, + "gas": 2070504, + "gasCost": 3, + "op": "PUSH1", + "pc": 1812, "stack": [ "0x7f29c394", "0x17f", @@ -20443,11 +20443,11 @@ ] }, { - "pc": 1814, - "op": "MLOAD", - "gas": 2073213, - "gasCost": 3, "depth": 1, + "gas": 2070501, + "gasCost": 3, + "op": "MLOAD", + "pc": 1814, "stack": [ "0x7f29c394", "0x17f", @@ -20460,11 +20460,11 @@ ] }, { - "pc": 1815, - "op": "DUP1", - "gas": 2073210, - "gasCost": 3, "depth": 1, + "gas": 2070498, + "gasCost": 3, + "op": "DUP1", + "pc": 1815, "stack": [ "0x7f29c394", "0x17f", @@ -20477,11 +20477,11 @@ ] }, { - "pc": 1816, - "op": "SWAP2", - "gas": 2073207, - "gasCost": 3, "depth": 1, + "gas": 2070495, + "gasCost": 3, + "op": "SWAP2", + "pc": 1816, "stack": [ "0x7f29c394", "0x17f", @@ -20495,11 +20495,11 @@ ] }, { - "pc": 1817, - "op": "SUB", - "gas": 2073204, - "gasCost": 3, "depth": 1, + "gas": 2070492, + "gasCost": 3, + "op": "SUB", + "pc": 1817, "stack": [ "0x7f29c394", "0x17f", @@ -20513,11 +20513,11 @@ ] }, { - "pc": 1818, - "op": "SWAP1", - "gas": 2073201, - "gasCost": 3, "depth": 1, + "gas": 2070489, + "gasCost": 3, + "op": "SWAP1", + "pc": 1818, "stack": [ "0x7f29c394", "0x17f", @@ -20530,11 +20530,11 @@ ] }, { - "pc": 1819, - "op": "LOG1", - "gas": 2073198, - "gasCost": 1774, "depth": 1, + "gas": 2070486, + "gasCost": 1774, + "op": "LOG1", + "pc": 1819, "stack": [ "0x7f29c394", "0x17f", @@ -20547,11 +20547,11 @@ ] }, { - "pc": 1820, - "op": "POP", - "gas": 2071424, - "gasCost": 2, "depth": 1, + "gas": 2068712, + "gasCost": 2, + "op": "POP", + "pc": 1820, "stack": [ "0x7f29c394", "0x17f", @@ -20561,11 +20561,11 @@ ] }, { - "pc": 1821, - "op": "JUMPDEST", - "gas": 2071422, - "gasCost": 1, "depth": 1, + "gas": 2068710, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 1821, "stack": [ "0x7f29c394", "0x17f", @@ -20574,11 +20574,11 @@ ] }, { - "pc": 1822, - "op": "PUSH3", - "gas": 2071421, - "gasCost": 3, "depth": 1, + "gas": 2068709, + "gasCost": 3, + "op": "PUSH3", + "pc": 1822, "stack": [ "0x7f29c394", "0x17f", @@ -20587,11 +20587,11 @@ ] }, { - "pc": 1826, - "op": "JUMP", - "gas": 2071418, - "gasCost": 8, "depth": 1, + "gas": 2068706, + "gasCost": 8, + "op": "JUMP", + "pc": 1826, "stack": [ "0x7f29c394", "0x17f", @@ -20601,11 +20601,11 @@ ] }, { - "pc": 1828, - "op": "JUMPDEST", - "gas": 2071410, - "gasCost": 1, "depth": 1, + "gas": 2068698, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 1828, "stack": [ "0x7f29c394", "0x17f", @@ -20614,11 +20614,11 @@ ] }, { - "pc": 1829, - "op": "PUSH1", - "gas": 2071409, - "gasCost": 3, "depth": 1, + "gas": 2068697, + "gasCost": 3, + "op": "PUSH1", + "pc": 1829, "stack": [ "0x7f29c394", "0x17f", @@ -20627,11 +20627,11 @@ ] }, { - "pc": 1831, - "op": "PUSH3", - "gas": 2071406, - "gasCost": 3, "depth": 1, + "gas": 2068694, + "gasCost": 3, + "op": "PUSH3", + "pc": 1831, "stack": [ "0x7f29c394", "0x17f", @@ -20641,11 +20641,11 @@ ] }, { - "pc": 1835, - "op": "JUMPI", - "gas": 2071403, - "gasCost": 10, "depth": 1, + "gas": 2068691, + "gasCost": 10, + "op": "JUMPI", + "pc": 1835, "stack": [ "0x7f29c394", "0x17f", @@ -20656,11 +20656,11 @@ ] }, { - "pc": 1836, - "op": "PUSH1", - "gas": 2071393, - "gasCost": 3, "depth": 1, + "gas": 2068681, + "gasCost": 3, + "op": "PUSH1", + "pc": 1836, "stack": [ "0x7f29c394", "0x17f", @@ -20669,11 +20669,11 @@ ] }, { - "pc": 1838, - "op": "MLOAD", - "gas": 2071390, - "gasCost": 3, "depth": 1, + "gas": 2068678, + "gasCost": 3, + "op": "MLOAD", + "pc": 1838, "stack": [ "0x7f29c394", "0x17f", @@ -20683,11 +20683,11 @@ ] }, { - "pc": 1839, - "op": "PUSH32", - "gas": 2071387, - "gasCost": 3, "depth": 1, + "gas": 2068675, + "gasCost": 3, + "op": "PUSH32", + "pc": 1839, "stack": [ "0x7f29c394", "0x17f", @@ -20697,11 +20697,11 @@ ] }, { - "pc": 1872, - "op": "DUP2", - "gas": 2071384, - "gasCost": 3, "depth": 1, + "gas": 2068672, + "gasCost": 3, + "op": "DUP2", + "pc": 1872, "stack": [ "0x7f29c394", "0x17f", @@ -20712,11 +20712,11 @@ ] }, { - "pc": 1873, - "op": "MSTORE", - "gas": 2071381, - "gasCost": 3, "depth": 1, + "gas": 2068669, + "gasCost": 3, + "op": "MSTORE", + "pc": 1873, "stack": [ "0x7f29c394", "0x17f", @@ -20728,11 +20728,11 @@ ] }, { - "pc": 1874, - "op": "PUSH1", - "gas": 2071378, - "gasCost": 3, "depth": 1, + "gas": 2068666, + "gasCost": 3, + "op": "PUSH1", + "pc": 1874, "stack": [ "0x7f29c394", "0x17f", @@ -20742,11 +20742,11 @@ ] }, { - "pc": 1876, - "op": "ADD", - "gas": 2071375, - "gasCost": 3, "depth": 1, + "gas": 2068663, + "gasCost": 3, + "op": "ADD", + "pc": 1876, "stack": [ "0x7f29c394", "0x17f", @@ -20757,11 +20757,11 @@ ] }, { - "pc": 1877, - "op": "PUSH3", - "gas": 2071372, - "gasCost": 3, "depth": 1, + "gas": 2068660, + "gasCost": 3, + "op": "PUSH3", + "pc": 1877, "stack": [ "0x7f29c394", "0x17f", @@ -20771,11 +20771,11 @@ ] }, { - "pc": 1881, - "op": "SWAP1", - "gas": 2071369, - "gasCost": 3, "depth": 1, + "gas": 2068657, + "gasCost": 3, + "op": "SWAP1", + "pc": 1881, "stack": [ "0x7f29c394", "0x17f", @@ -20786,11 +20786,11 @@ ] }, { - "pc": 1882, - "op": "PUSH3", - "gas": 2071366, - "gasCost": 3, "depth": 1, + "gas": 2068654, + "gasCost": 3, + "op": "PUSH3", + "pc": 1882, "stack": [ "0x7f29c394", "0x17f", @@ -20801,11 +20801,11 @@ ] }, { - "pc": 1886, - "op": "JUMP", - "gas": 2071363, - "gasCost": 8, "depth": 1, + "gas": 2068651, + "gasCost": 8, + "op": "JUMP", + "pc": 1886, "stack": [ "0x7f29c394", "0x17f", @@ -20817,11 +20817,11 @@ ] }, { - "pc": 3938, - "op": "JUMPDEST", - "gas": 2071355, - "gasCost": 1, "depth": 1, + "gas": 2068643, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 3938, "stack": [ "0x7f29c394", "0x17f", @@ -20832,11 +20832,11 @@ ] }, { - "pc": 3939, - "op": "PUSH1", - "gas": 2071354, - "gasCost": 3, "depth": 1, + "gas": 2068642, + "gasCost": 3, + "op": "PUSH1", + "pc": 3939, "stack": [ "0x7f29c394", "0x17f", @@ -20847,11 +20847,11 @@ ] }, { - "pc": 3941, - "op": "PUSH1", - "gas": 2071351, - "gasCost": 3, "depth": 1, + "gas": 2068639, + "gasCost": 3, + "op": "PUSH1", + "pc": 3941, "stack": [ "0x7f29c394", "0x17f", @@ -20863,11 +20863,11 @@ ] }, { - "pc": 3943, - "op": "DUP3", - "gas": 2071348, - "gasCost": 3, "depth": 1, + "gas": 2068636, + "gasCost": 3, + "op": "DUP3", + "pc": 3943, "stack": [ "0x7f29c394", "0x17f", @@ -20880,11 +20880,11 @@ ] }, { - "pc": 3944, - "op": "ADD", - "gas": 2071345, - "gasCost": 3, "depth": 1, + "gas": 2068633, + "gasCost": 3, + "op": "ADD", + "pc": 3944, "stack": [ "0x7f29c394", "0x17f", @@ -20898,11 +20898,11 @@ ] }, { - "pc": 3945, - "op": "SWAP1", - "gas": 2071342, - "gasCost": 3, "depth": 1, + "gas": 2068630, + "gasCost": 3, + "op": "SWAP1", + "pc": 3945, "stack": [ "0x7f29c394", "0x17f", @@ -20915,11 +20915,11 @@ ] }, { - "pc": 3946, - "op": "POP", - "gas": 2071339, - "gasCost": 2, "depth": 1, + "gas": 2068627, + "gasCost": 2, + "op": "POP", + "pc": 3946, "stack": [ "0x7f29c394", "0x17f", @@ -20932,11 +20932,11 @@ ] }, { - "pc": 3947, - "op": "DUP2", - "gas": 2071337, - "gasCost": 3, "depth": 1, + "gas": 2068625, + "gasCost": 3, + "op": "DUP2", + "pc": 3947, "stack": [ "0x7f29c394", "0x17f", @@ -20948,11 +20948,11 @@ ] }, { - "pc": 3948, - "op": "DUP2", - "gas": 2071334, - "gasCost": 3, "depth": 1, + "gas": 2068622, + "gasCost": 3, + "op": "DUP2", + "pc": 3948, "stack": [ "0x7f29c394", "0x17f", @@ -20965,11 +20965,11 @@ ] }, { - "pc": 3949, - "op": "SUB", - "gas": 2071331, - "gasCost": 3, "depth": 1, + "gas": 2068619, + "gasCost": 3, + "op": "SUB", + "pc": 3949, "stack": [ "0x7f29c394", "0x17f", @@ -20983,11 +20983,11 @@ ] }, { - "pc": 3950, - "op": "PUSH1", - "gas": 2071328, - "gasCost": 3, "depth": 1, + "gas": 2068616, + "gasCost": 3, + "op": "PUSH1", + "pc": 3950, "stack": [ "0x7f29c394", "0x17f", @@ -21000,11 +21000,11 @@ ] }, { - "pc": 3952, - "op": "DUP4", - "gas": 2071325, - "gasCost": 3, "depth": 1, + "gas": 2068613, + "gasCost": 3, + "op": "DUP4", + "pc": 3952, "stack": [ "0x7f29c394", "0x17f", @@ -21018,11 +21018,11 @@ ] }, { - "pc": 3953, - "op": "ADD", - "gas": 2071322, - "gasCost": 3, "depth": 1, + "gas": 2068610, + "gasCost": 3, + "op": "ADD", + "pc": 3953, "stack": [ "0x7f29c394", "0x17f", @@ -21037,11 +21037,11 @@ ] }, { - "pc": 3954, - "op": "MSTORE", - "gas": 2071319, - "gasCost": 3, "depth": 1, + "gas": 2068607, + "gasCost": 3, + "op": "MSTORE", + "pc": 3954, "stack": [ "0x7f29c394", "0x17f", @@ -21055,11 +21055,11 @@ ] }, { - "pc": 3955, - "op": "PUSH3", - "gas": 2071316, - "gasCost": 3, "depth": 1, + "gas": 2068604, + "gasCost": 3, + "op": "PUSH3", + "pc": 3955, "stack": [ "0x7f29c394", "0x17f", @@ -21071,11 +21071,11 @@ ] }, { - "pc": 3959, - "op": "DUP2", - "gas": 2071313, - "gasCost": 3, "depth": 1, + "gas": 2068601, + "gasCost": 3, + "op": "DUP2", + "pc": 3959, "stack": [ "0x7f29c394", "0x17f", @@ -21088,11 +21088,11 @@ ] }, { - "pc": 3960, - "op": "PUSH3", - "gas": 2071310, - "gasCost": 3, "depth": 1, + "gas": 2068598, + "gasCost": 3, + "op": "PUSH3", + "pc": 3960, "stack": [ "0x7f29c394", "0x17f", @@ -21106,11 +21106,11 @@ ] }, { - "pc": 3964, - "op": "JUMP", - "gas": 2071307, - "gasCost": 8, "depth": 1, + "gas": 2068595, + "gasCost": 8, + "op": "JUMP", + "pc": 3964, "stack": [ "0x7f29c394", "0x17f", @@ -21125,11 +21125,11 @@ ] }, { - "pc": 3899, - "op": "JUMPDEST", - "gas": 2071299, - "gasCost": 1, "depth": 1, + "gas": 2068587, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 3899, "stack": [ "0x7f29c394", "0x17f", @@ -21143,11 +21143,11 @@ ] }, { - "pc": 3900, - "op": "PUSH1", - "gas": 2071298, - "gasCost": 3, "depth": 1, + "gas": 2068586, + "gasCost": 3, + "op": "PUSH1", + "pc": 3900, "stack": [ "0x7f29c394", "0x17f", @@ -21161,11 +21161,11 @@ ] }, { - "pc": 3902, - "op": "PUSH3", - "gas": 2071295, - "gasCost": 3, "depth": 1, + "gas": 2068583, + "gasCost": 3, + "op": "PUSH3", + "pc": 3902, "stack": [ "0x7f29c394", "0x17f", @@ -21180,11 +21180,11 @@ ] }, { - "pc": 3906, - "op": "PUSH1", - "gas": 2071292, - "gasCost": 3, "depth": 1, + "gas": 2068580, + "gasCost": 3, + "op": "PUSH1", + "pc": 3906, "stack": [ "0x7f29c394", "0x17f", @@ -21200,11 +21200,11 @@ ] }, { - "pc": 3908, - "op": "DUP4", - "gas": 2071289, - "gasCost": 3, "depth": 1, + "gas": 2068577, + "gasCost": 3, + "op": "DUP4", + "pc": 3908, "stack": [ "0x7f29c394", "0x17f", @@ -21221,11 +21221,11 @@ ] }, { - "pc": 3909, - "op": "PUSH3", - "gas": 2071286, - "gasCost": 3, "depth": 1, + "gas": 2068574, + "gasCost": 3, + "op": "PUSH3", + "pc": 3909, "stack": [ "0x7f29c394", "0x17f", @@ -21243,11 +21243,11 @@ ] }, { - "pc": 3913, - "op": "JUMP", - "gas": 2071283, - "gasCost": 8, "depth": 1, + "gas": 2068571, + "gasCost": 8, + "op": "JUMP", + "pc": 3913, "stack": [ "0x7f29c394", "0x17f", @@ -21266,11 +21266,11 @@ ] }, { - "pc": 2771, - "op": "JUMPDEST", - "gas": 2071275, - "gasCost": 1, "depth": 1, + "gas": 2068563, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 2771, "stack": [ "0x7f29c394", "0x17f", @@ -21288,11 +21288,11 @@ ] }, { - "pc": 2772, - "op": "PUSH1", - "gas": 2071274, - "gasCost": 3, "depth": 1, + "gas": 2068562, + "gasCost": 3, + "op": "PUSH1", + "pc": 2772, "stack": [ "0x7f29c394", "0x17f", @@ -21310,11 +21310,11 @@ ] }, { - "pc": 2774, - "op": "DUP3", - "gas": 2071271, - "gasCost": 3, "depth": 1, + "gas": 2068559, + "gasCost": 3, + "op": "DUP3", + "pc": 2774, "stack": [ "0x7f29c394", "0x17f", @@ -21333,11 +21333,11 @@ ] }, { - "pc": 2775, - "op": "DUP3", - "gas": 2071268, - "gasCost": 3, "depth": 1, + "gas": 2068556, + "gasCost": 3, + "op": "DUP3", + "pc": 2775, "stack": [ "0x7f29c394", "0x17f", @@ -21357,11 +21357,11 @@ ] }, { - "pc": 2776, - "op": "MSTORE", - "gas": 2071265, - "gasCost": 3, "depth": 1, + "gas": 2068553, + "gasCost": 3, + "op": "MSTORE", + "pc": 2776, "stack": [ "0x7f29c394", "0x17f", @@ -21382,11 +21382,11 @@ ] }, { - "pc": 2777, - "op": "PUSH1", - "gas": 2071262, - "gasCost": 3, "depth": 1, + "gas": 2068550, + "gasCost": 3, + "op": "PUSH1", + "pc": 2777, "stack": [ "0x7f29c394", "0x17f", @@ -21405,11 +21405,11 @@ ] }, { - "pc": 2779, - "op": "DUP3", - "gas": 2071259, - "gasCost": 3, "depth": 1, + "gas": 2068547, + "gasCost": 3, + "op": "DUP3", + "pc": 2779, "stack": [ "0x7f29c394", "0x17f", @@ -21429,11 +21429,11 @@ ] }, { - "pc": 2780, - "op": "ADD", - "gas": 2071256, - "gasCost": 3, "depth": 1, + "gas": 2068544, + "gasCost": 3, + "op": "ADD", + "pc": 2780, "stack": [ "0x7f29c394", "0x17f", @@ -21454,11 +21454,11 @@ ] }, { - "pc": 2781, - "op": "SWAP1", - "gas": 2071253, - "gasCost": 3, "depth": 1, + "gas": 2068541, + "gasCost": 3, + "op": "SWAP1", + "pc": 2781, "stack": [ "0x7f29c394", "0x17f", @@ -21478,11 +21478,11 @@ ] }, { - "pc": 2782, - "op": "POP", - "gas": 2071250, - "gasCost": 2, "depth": 1, + "gas": 2068538, + "gasCost": 2, + "op": "POP", + "pc": 2782, "stack": [ "0x7f29c394", "0x17f", @@ -21502,11 +21502,11 @@ ] }, { - "pc": 2783, - "op": "SWAP3", - "gas": 2071248, - "gasCost": 3, "depth": 1, + "gas": 2068536, + "gasCost": 3, + "op": "SWAP3", + "pc": 2783, "stack": [ "0x7f29c394", "0x17f", @@ -21525,11 +21525,11 @@ ] }, { - "pc": 2784, - "op": "SWAP2", - "gas": 2071245, - "gasCost": 3, "depth": 1, + "gas": 2068533, + "gasCost": 3, + "op": "SWAP2", + "pc": 2784, "stack": [ "0x7f29c394", "0x17f", @@ -21547,12 +21547,12 @@ "0xf4a" ] }, - { - "pc": 2785, - "op": "POP", - "gas": 2071242, - "gasCost": 2, + { "depth": 1, + "gas": 2068530, + "gasCost": 2, + "op": "POP", + "pc": 2785, "stack": [ "0x7f29c394", "0x17f", @@ -21571,11 +21571,11 @@ ] }, { - "pc": 2786, - "op": "POP", - "gas": 2071240, - "gasCost": 2, "depth": 1, + "gas": 2068528, + "gasCost": 2, + "op": "POP", + "pc": 2786, "stack": [ "0x7f29c394", "0x17f", @@ -21593,11 +21593,11 @@ ] }, { - "pc": 2787, - "op": "JUMP", - "gas": 2071238, - "gasCost": 8, "depth": 1, + "gas": 2068526, + "gasCost": 8, + "op": "JUMP", + "pc": 2787, "stack": [ "0x7f29c394", "0x17f", @@ -21614,11 +21614,11 @@ ] }, { - "pc": 3914, - "op": "JUMPDEST", - "gas": 2071230, - "gasCost": 1, "depth": 1, + "gas": 2068518, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 3914, "stack": [ "0x7f29c394", "0x17f", @@ -21634,11 +21634,11 @@ ] }, { - "pc": 3915, - "op": "SWAP2", - "gas": 2071229, - "gasCost": 3, "depth": 1, + "gas": 2068517, + "gasCost": 3, + "op": "SWAP2", + "pc": 3915, "stack": [ "0x7f29c394", "0x17f", @@ -21654,11 +21654,11 @@ ] }, { - "pc": 3916, - "op": "POP", - "gas": 2071226, - "gasCost": 2, "depth": 1, + "gas": 2068514, + "gasCost": 2, + "op": "POP", + "pc": 3916, "stack": [ "0x7f29c394", "0x17f", @@ -21674,11 +21674,11 @@ ] }, { - "pc": 3917, - "op": "PUSH3", - "gas": 2071224, - "gasCost": 3, "depth": 1, + "gas": 2068512, + "gasCost": 3, + "op": "PUSH3", + "pc": 3917, "stack": [ "0x7f29c394", "0x17f", @@ -21693,11 +21693,11 @@ ] }, { - "pc": 3921, - "op": "DUP3", - "gas": 2071221, - "gasCost": 3, "depth": 1, + "gas": 2068509, + "gasCost": 3, + "op": "DUP3", + "pc": 3921, "stack": [ "0x7f29c394", "0x17f", @@ -21713,11 +21713,11 @@ ] }, { - "pc": 3922, - "op": "PUSH3", - "gas": 2071218, - "gasCost": 3, "depth": 1, + "gas": 2068506, + "gasCost": 3, + "op": "PUSH3", + "pc": 3922, "stack": [ "0x7f29c394", "0x17f", @@ -21734,11 +21734,11 @@ ] }, { - "pc": 3926, - "op": "JUMP", - "gas": 2071215, - "gasCost": 8, "depth": 1, + "gas": 2068503, + "gasCost": 8, + "op": "JUMP", + "pc": 3926, "stack": [ "0x7f29c394", "0x17f", @@ -21756,11 +21756,11 @@ ] }, { - "pc": 3858, - "op": "JUMPDEST", - "gas": 2071207, - "gasCost": 1, "depth": 1, + "gas": 2068495, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 3858, "stack": [ "0x7f29c394", "0x17f", @@ -21777,11 +21777,11 @@ ] }, { - "pc": 3859, - "op": "PUSH32", - "gas": 2071206, - "gasCost": 3, "depth": 1, + "gas": 2068494, + "gasCost": 3, + "op": "PUSH32", + "pc": 3859, "stack": [ "0x7f29c394", "0x17f", @@ -21798,11 +21798,11 @@ ] }, { - "pc": 3892, - "op": "PUSH1", - "gas": 2071203, - "gasCost": 3, "depth": 1, + "gas": 2068491, + "gasCost": 3, + "op": "PUSH1", + "pc": 3892, "stack": [ "0x7f29c394", "0x17f", @@ -21820,11 +21820,11 @@ ] }, { - "pc": 3894, - "op": "DUP3", - "gas": 2071200, - "gasCost": 3, "depth": 1, + "gas": 2068488, + "gasCost": 3, + "op": "DUP3", + "pc": 3894, "stack": [ "0x7f29c394", "0x17f", @@ -21843,11 +21843,11 @@ ] }, { - "pc": 3895, - "op": "ADD", - "gas": 2071197, - "gasCost": 3, "depth": 1, + "gas": 2068485, + "gasCost": 3, + "op": "ADD", + "pc": 3895, "stack": [ "0x7f29c394", "0x17f", @@ -21867,11 +21867,11 @@ ] }, { - "pc": 3896, - "op": "MSTORE", - "gas": 2071194, - "gasCost": 3, "depth": 1, + "gas": 2068482, + "gasCost": 3, + "op": "MSTORE", + "pc": 3896, "stack": [ "0x7f29c394", "0x17f", @@ -21890,11 +21890,11 @@ ] }, { - "pc": 3897, - "op": "POP", - "gas": 2071191, - "gasCost": 2, "depth": 1, + "gas": 2068479, + "gasCost": 2, + "op": "POP", + "pc": 3897, "stack": [ "0x7f29c394", "0x17f", @@ -21911,11 +21911,11 @@ ] }, { - "pc": 3898, - "op": "JUMP", - "gas": 2071189, - "gasCost": 8, "depth": 1, + "gas": 2068477, + "gasCost": 8, + "op": "JUMP", + "pc": 3898, "stack": [ "0x7f29c394", "0x17f", @@ -21931,11 +21931,11 @@ ] }, { - "pc": 3927, - "op": "JUMPDEST", - "gas": 2071181, - "gasCost": 1, "depth": 1, + "gas": 2068469, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 3927, "stack": [ "0x7f29c394", "0x17f", @@ -21950,11 +21950,11 @@ ] }, { - "pc": 3928, - "op": "PUSH1", - "gas": 2071180, - "gasCost": 3, "depth": 1, + "gas": 2068468, + "gasCost": 3, + "op": "PUSH1", + "pc": 3928, "stack": [ "0x7f29c394", "0x17f", @@ -21969,11 +21969,11 @@ ] }, { - "pc": 3930, - "op": "DUP3", - "gas": 2071177, - "gasCost": 3, "depth": 1, + "gas": 2068465, + "gasCost": 3, + "op": "DUP3", + "pc": 3930, "stack": [ "0x7f29c394", "0x17f", @@ -21989,11 +21989,11 @@ ] }, { - "pc": 3931, - "op": "ADD", - "gas": 2071174, - "gasCost": 3, "depth": 1, + "gas": 2068462, + "gasCost": 3, + "op": "ADD", + "pc": 3931, "stack": [ "0x7f29c394", "0x17f", @@ -22010,11 +22010,11 @@ ] }, { - "pc": 3932, - "op": "SWAP1", - "gas": 2071171, - "gasCost": 3, "depth": 1, + "gas": 2068459, + "gasCost": 3, + "op": "SWAP1", + "pc": 3932, "stack": [ "0x7f29c394", "0x17f", @@ -22030,11 +22030,11 @@ ] }, { - "pc": 3933, - "op": "POP", - "gas": 2071168, - "gasCost": 2, "depth": 1, + "gas": 2068456, + "gasCost": 2, + "op": "POP", + "pc": 3933, "stack": [ "0x7f29c394", "0x17f", @@ -22050,11 +22050,11 @@ ] }, { - "pc": 3934, - "op": "SWAP2", - "gas": 2071166, - "gasCost": 3, "depth": 1, + "gas": 2068454, + "gasCost": 3, + "op": "SWAP2", + "pc": 3934, "stack": [ "0x7f29c394", "0x17f", @@ -22069,11 +22069,11 @@ ] }, { - "pc": 3935, - "op": "SWAP1", - "gas": 2071163, - "gasCost": 3, "depth": 1, + "gas": 2068451, + "gasCost": 3, + "op": "SWAP1", + "pc": 3935, "stack": [ "0x7f29c394", "0x17f", @@ -22088,11 +22088,11 @@ ] }, { - "pc": 3936, - "op": "POP", - "gas": 2071160, - "gasCost": 2, "depth": 1, + "gas": 2068448, + "gasCost": 2, + "op": "POP", + "pc": 3936, "stack": [ "0x7f29c394", "0x17f", @@ -22107,11 +22107,11 @@ ] }, { - "pc": 3937, - "op": "JUMP", - "gas": 2071158, - "gasCost": 8, "depth": 1, + "gas": 2068446, + "gasCost": 8, + "op": "JUMP", + "pc": 3937, "stack": [ "0x7f29c394", "0x17f", @@ -22125,11 +22125,11 @@ ] }, { - "pc": 3965, - "op": "JUMPDEST", - "gas": 2071150, - "gasCost": 1, "depth": 1, + "gas": 2068438, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 3965, "stack": [ "0x7f29c394", "0x17f", @@ -22142,11 +22142,11 @@ ] }, { - "pc": 3966, - "op": "SWAP1", - "gas": 2071149, - "gasCost": 3, "depth": 1, + "gas": 2068437, + "gasCost": 3, + "op": "SWAP1", + "pc": 3966, "stack": [ "0x7f29c394", "0x17f", @@ -22159,11 +22159,11 @@ ] }, { - "pc": 3967, - "op": "POP", - "gas": 2071146, - "gasCost": 2, "depth": 1, + "gas": 2068434, + "gasCost": 2, + "op": "POP", + "pc": 3967, "stack": [ "0x7f29c394", "0x17f", @@ -22176,11 +22176,11 @@ ] }, { - "pc": 3968, - "op": "SWAP2", - "gas": 2071144, - "gasCost": 3, "depth": 1, + "gas": 2068432, + "gasCost": 3, + "op": "SWAP2", + "pc": 3968, "stack": [ "0x7f29c394", "0x17f", @@ -22192,11 +22192,11 @@ ] }, { - "pc": 3969, - "op": "SWAP1", - "gas": 2071141, - "gasCost": 3, "depth": 1, + "gas": 2068429, + "gasCost": 3, + "op": "SWAP1", + "pc": 3969, "stack": [ "0x7f29c394", "0x17f", @@ -22208,11 +22208,11 @@ ] }, { - "pc": 3970, - "op": "POP", - "gas": 2071138, - "gasCost": 2, "depth": 1, + "gas": 2068426, + "gasCost": 2, + "op": "POP", + "pc": 3970, "stack": [ "0x7f29c394", "0x17f", @@ -22224,11 +22224,11 @@ ] }, { - "pc": 3971, - "op": "JUMP", - "gas": 2071136, - "gasCost": 8, "depth": 1, + "gas": 2068424, + "gasCost": 8, + "op": "JUMP", + "pc": 3971, "stack": [ "0x7f29c394", "0x17f", @@ -22239,11 +22239,11 @@ ] }, { - "pc": 1887, - "op": "JUMPDEST", - "gas": 2071128, - "gasCost": 1, "depth": 1, + "gas": 2068416, + "gasCost": 1, + "op": "JUMPDEST", + "pc": 1887, "stack": [ "0x7f29c394", "0x17f", @@ -22253,11 +22253,11 @@ ] }, { - "pc": 1888, - "op": "PUSH1", - "gas": 2071127, - "gasCost": 3, "depth": 1, + "gas": 2068415, + "gasCost": 3, + "op": "PUSH1", + "pc": 1888, "stack": [ "0x7f29c394", "0x17f", @@ -22267,11 +22267,11 @@ ] }, { - "pc": 1890, - "op": "MLOAD", - "gas": 2071124, - "gasCost": 3, "depth": 1, + "gas": 2068412, + "gasCost": 3, + "op": "MLOAD", + "pc": 1890, "stack": [ "0x7f29c394", "0x17f", @@ -22282,11 +22282,11 @@ ] }, { - "pc": 1891, - "op": "DUP1", - "gas": 2071121, - "gasCost": 3, "depth": 1, + "gas": 2068409, + "gasCost": 3, + "op": "DUP1", + "pc": 1891, "stack": [ "0x7f29c394", "0x17f", @@ -22297,11 +22297,11 @@ ] }, { - "pc": 1892, - "op": "SWAP2", - "gas": 2071118, - "gasCost": 3, "depth": 1, + "gas": 2068406, + "gasCost": 3, + "op": "SWAP2", + "pc": 1892, "stack": [ "0x7f29c394", "0x17f", @@ -22313,11 +22313,11 @@ ] }, { - "pc": 1893, - "op": "SUB", - "gas": 2071115, - "gasCost": 3, "depth": 1, + "gas": 2068403, + "gasCost": 3, + "op": "SUB", + "pc": 1893, "stack": [ "0x7f29c394", "0x17f", @@ -22329,11 +22329,11 @@ ] }, { - "pc": 1894, - "op": "SWAP1", - "gas": 2071112, - "gasCost": 3, "depth": 1, + "gas": 2068400, + "gasCost": 3, + "op": "SWAP1", + "pc": 1894, "stack": [ "0x7f29c394", "0x17f", @@ -22344,11 +22344,11 @@ ] }, { - "pc": 1895, - "op": "REVERT", - "gas": 2071109, - "gasCost": 0, "depth": 1, + "gas": 2068397, + "gasCost": 0, + "op": "REVERT", + "pc": 1895, "stack": [ "0x7f29c394", "0x17f", diff --git a/test/historicstate/hardhat/scripts/geth_traces/Tracer.readableRevert.prestateDiffTracer.json b/test/historicstate/hardhat/scripts/geth_traces/Tracer.readableRevert.prestateDiffTracer.json index 0ac721274..7d33b79ee 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/Tracer.readableRevert.prestateDiffTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/Tracer.readableRevert.prestateDiffTracer.json @@ -1,20 +1,20 @@ { "post": { "0x0000000000000000000000000000000000000000": { - "balance": "0x462d20" + "balance": "0xbc5e59e0" }, "OWNER.address": { - "balance": "0x10f075e94d02d4a43d0", - "nonce": 12 + "balance": "0xc9f2c9ccfd8d27dc4a60ba620", + "nonce": 363 } }, "pre": { "0x0000000000000000000000000000000000000000": { - "balance": "0x45bc45" + "balance": "0x0" }, "OWNER.address": { - "balance": "0x10f075e97d88a9daf8e", - "nonce": 11 + "balance": "0xc9f2c9ccfd8d27dc5626a0000", + "nonce": 362 } } } \ No newline at end of file diff --git a/test/historicstate/hardhat/scripts/geth_traces/Tracer.readableRevert.prestateTracer.json b/test/historicstate/hardhat/scripts/geth_traces/Tracer.readableRevert.prestateTracer.json index e13af6ca0..00f2d4573 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/Tracer.readableRevert.prestateTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/Tracer.readableRevert.prestateTracer.json @@ -1,14 +1,14 @@ { "0x0000000000000000000000000000000000000000": { - "balance": "0x45bc45" + "balance": "0x0" + }, + "OWNER.address": { + "balance": "0xc9f2c9ccfd8d27dc5626a0000", + "nonce": 362 }, "Tracer.address": { "balance": "0x0", "code": "0x60806040523480156200001157600080fd5b5060043610620000ac5760003560e01c80638bfe44ff116200006f5780638bfe44ff14620001975780639295436214620001a3578063a0712d6814620001af578063b69ef8a814620001e5578063c9353cb5146200020757620000ac565b806312065fe014620000b15780631c71706914620000d35780631c93908c14620000f55780633aa18088146200012b5780637f29c3941462000161575b600080fd5b620000bb62000227565b604051620000ca919062000975565b60405180910390f35b620000dd62000231565b604051620000ec9190620009ad565b60405180910390f35b6200011360048036038101906200010d919062000a0a565b62000280565b60405162000122919062000975565b60405180910390f35b62000149600480360381019062000143919062000a0a565b620002f6565b60405162000158919062000975565b60405180910390f35b6200017f600480360381019062000179919062000a0a565b6200049e565b6040516200018e919062000975565b60405180910390f35b620001a162000771565b005b620001ad620007b3565b005b620001cd6004803603810190620001c7919062000a0a565b620007f0565b604051620001dc919062000975565b60405180910390f35b620001ef6200092d565b604051620001fe919062000975565b60405180910390f35b6200022560048036038101906200021f919062000aa1565b62000933565b005b6000600154905090565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620002ca919062000b34565b60405180910390a28160036000828254620002e6919062000b95565b9250508190555060029050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405162000340919062000c20565b60405180910390a260405162000356906200094c565b604051809103906000f08015801562000373573d6000803e3d6000fd5b506000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508160016000828254620003c7919062000b95565b92505081905550620003e7600183620003e1919062000b95565b62000280565b50620003f262000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b81526004016200044e919062000975565b6020604051808303816000875af11580156200046e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000494919062000c69565b5060019050919050565b60003073ffffffffffffffffffffffffffffffffffffffff1663929543626040518163ffffffff1660e01b815260040160006040518083038186803b158015620004e757600080fd5b505afa925050508015620004f9575060015b620005e1576200050862000ca8565b806308c379a0036200056c57506200051f62000d43565b806200052c57506200056e565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a816040516200055d919062000e56565b60405180910390a150620005db565b505b3d80600081146200059c576040519150601f19603f3d011682016040523d82523d6000602084013e620005a1565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620005d19062000ef0565b60405180910390a1505b620005e2565b5b3073ffffffffffffffffffffffffffffffffffffffff16638bfe44ff6040518163ffffffff1660e01b815260040160006040518083038186803b1580156200062957600080fd5b505afa9250505080156200063b575060015b62000723576200064a62000ca8565b806308c379a003620006ae57506200066162000d43565b806200066e5750620006b0565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a816040516200069f919062000e56565b60405180910390a1506200071d565b505b3d8060008114620006de576040519150601f19603f3d011682016040523d82523d6000602084013e620006e3565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620007139062000ef0565b60405180910390a1505b62000724565b5b600062000768576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200075f9062000f62565b60405180910390fd5b60019050919050565b6001806040517fcf479181000000000000000000000000000000000000000000000000000000008152600401620007aa92919062000fd1565b60405180910390fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007e7906200104e565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200083a919062000c20565b60405180910390a2816001600082825462000856919062000b95565b925050819055506200087660018362000870919062000b95565b62000280565b506200088162000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b8152600401620008dd919062000975565b6020604051808303816000875af1158015620008fd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000923919062000c69565b5060019050919050565b60015481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b610a9f806200107183390190565b6000819050919050565b6200096f816200095a565b82525050565b60006020820190506200098c600083018462000964565b92915050565b6000819050919050565b620009a78162000992565b82525050565b6000602082019050620009c460008301846200099c565b92915050565b6000604051905090565b600080fd5b620009e4816200095a565b8114620009f057600080fd5b50565b60008135905062000a0481620009d9565b92915050565b60006020828403121562000a235762000a22620009d4565b5b600062000a3384828501620009f3565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000a698262000a3c565b9050919050565b62000a7b8162000a5c565b811462000a8757600080fd5b50565b60008135905062000a9b8162000a70565b92915050565b60006020828403121562000aba5762000ab9620009d4565b5b600062000aca8482850162000a8a565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000b1c600e8362000ad3565b915062000b298262000ae4565b602082019050919050565b600060408201905062000b4b600083018462000964565b818103602083015262000b5e8162000b0d565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000ba2826200095a565b915062000baf836200095a565b925082820190508082111562000bca5762000bc962000b66565b5b92915050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b600062000c0860058362000ad3565b915062000c158262000bd0565b602082019050919050565b600060408201905062000c37600083018462000964565b818103602083015262000c4a8162000bf9565b905092915050565b60008151905062000c6381620009d9565b92915050565b60006020828403121562000c825762000c81620009d4565b5b600062000c928482850162000c52565b91505092915050565b60008160e01c9050919050565b600060033d111562000cca5760046000803e62000cc760005162000c9b565b90505b90565b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000d188262000ccd565b810181811067ffffffffffffffff8211171562000d3a5762000d3962000cde565b5b80604052505050565b600060443d1062000ddb5762000d58620009ca565b60043d036004823e80513d602482011167ffffffffffffffff8211171562000d8257505062000ddb565b808201805167ffffffffffffffff81111562000da2575050505062000ddb565b80602083010160043d03850181111562000dc157505050505062000ddb565b62000dd28260200185018662000d0d565b82955050505050505b90565b600081519050919050565b60005b8381101562000e0957808201518184015260208101905062000dec565b60008484015250505050565b600062000e228262000dde565b62000e2e818562000ad3565b935062000e4081856020860162000de9565b62000e4b8162000ccd565b840191505092915050565b6000602082019050818103600083015262000e72818462000e15565b905092915050565b7f45787465726e616c2063616c6c206661696c656420776974686f757420616e2060008201527f6572726f72206d65737361676500000000000000000000000000000000000000602082015250565b600062000ed8602d8362000ad3565b915062000ee58262000e7a565b604082019050919050565b6000602082019050818103600083015262000f0b8162000ec9565b9050919050565b7f494e53554646494349454e542042414c414e4345000000000000000000000000600082015250565b600062000f4a60148362000ad3565b915062000f578262000f12565b602082019050919050565b6000602082019050818103600083015262000f7d8162000f3b565b9050919050565b6000819050919050565b6000819050919050565b600062000fb962000fb362000fad8462000f84565b62000f8e565b6200095a565b9050919050565b62000fcb8162000f98565b82525050565b600060408201905062000fe8600083018562000fc0565b62000ff7602083018462000fc0565b9392505050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b60006200103660178362000ad3565b9150620010438262000ffe565b602082019050919050565b60006020820190508181036000830152620010698162001027565b905091905056fe60806040526000600160006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b50600160009054906101000a900460ff161562000080576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200007790620002b5565b60405180910390fd5b60018060006101000a81548160ff021916908315150217905550620000bc701d6329f1c35ca4bfabb9f5610000000000620000c360201b60201c565b5062000460565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200010d919062000342565b60405180910390a281600080828254620001289190620003a3565b925050819055506200014e600183620001429190620003a3565b6200016960201b60201c565b506200015f620001df60201b60201c565b5060019050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620001b391906200042e565b60405180910390a28160026000828254620001cf9190620003a3565b9250508190555060029050919050565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b600082825260208201905092915050565b7f436f6e747261637420696e7374616e63652068617320616c726561647920626560008201527f656e20696e697469616c697a6564000000000000000000000000000000000000602082015250565b60006200029d602e836200022e565b9150620002aa826200023f565b604082019050919050565b60006020820190508181036000830152620002d0816200028e565b9050919050565b6000819050919050565b620002ec81620002d7565b82525050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006200032a6005836200022e565b91506200033782620002f2565b602082019050919050565b6000604082019050620003596000830184620002e1565b81810360208301526200036c816200031b565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620003b082620002d7565b9150620003bd83620002d7565b9250828201905080821115620003d857620003d762000374565b5b92915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000416600e836200022e565b91506200042382620003de565b602082019050919050565b6000604082019050620004456000830184620002e1565b8181036020830152620004588162000407565b905092915050565b61062f80620004706000396000f3fe608060405234801561001057600080fd5b50600436106100625760003560e01c80631c717069146100675780631c93908c1461008557806392954362146100b5578063a0712d68146100bf578063b69ef8a8146100ef578063c9353cb51461010d575b600080fd5b61006f610129565b60405161007c91906102ed565b60405180910390f35b61009f600480360381019061009a9190610343565b610178565b6040516100ac919061037f565b60405180910390f35b6100bd6101ea565b005b6100d960048036038101906100d49190610343565b610225565b6040516100e6919061037f565b60405180910390f35b6100f76102b5565b604051610104919061037f565b60405180910390f35b610127600480360381019061012291906103f8565b6102bb565b005b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516101c09190610482565b60405180910390a281600260008282546101da91906104df565b9250508190555060029050919050565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161021c9061055f565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405161026d91906105cb565b60405180910390a28160008082825461028691906104df565b925050819055506102a260018361029d91906104df565b610178565b506102ab610129565b5060019050919050565b60005481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b6000819050919050565b6102e7816102d4565b82525050565b600060208201905061030260008301846102de565b92915050565b600080fd5b6000819050919050565b6103208161030d565b811461032b57600080fd5b50565b60008135905061033d81610317565b92915050565b60006020828403121561035957610358610308565b5b60006103678482850161032e565b91505092915050565b6103798161030d565b82525050565b60006020820190506103946000830184610370565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006103c58261039a565b9050919050565b6103d5816103ba565b81146103e057600080fd5b50565b6000813590506103f2816103cc565b92915050565b60006020828403121561040e5761040d610308565b5b600061041c848285016103e3565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600061046c600e83610425565b915061047782610436565b602082019050919050565b60006040820190506104976000830184610370565b81810360208301526104a88161045f565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006104ea8261030d565b91506104f58361030d565b925082820190508082111561050d5761050c6104b0565b5b92915050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b6000610549601783610425565b915061055482610513565b602082019050919050565b600060208201905081810360008301526105788161053c565b9050919050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006105b5600583610425565b91506105c08261057f565b602082019050919050565b60006040820190506105e06000830184610370565b81810360208301526105f1816105a8565b90509291505056fea26469706673582212202a0a0fa5842e91cc0c1e5b645f7286aad7193a83c3b2f8c8e4c1b35008af0d6f64736f6c63430008140033a264697066735822122036f326b9881542090544d5d6e9f2ff18b13ec09bd4994f14891a84e97f4d6db964736f6c63430008140033", "nonce": 2 - }, - "OWNER.address": { - "balance": "0x10f075e97d88a9daf8e", - "nonce": 11 } } \ No newline at end of file diff --git a/test/historicstate/hardhat/scripts/geth_traces/Tracer.transfer.callTracer.json b/test/historicstate/hardhat/scripts/geth_traces/Tracer.transfer.callTracer.json index 9212c2d74..e7ec9241d 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/Tracer.transfer.callTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/Tracer.transfer.callTracer.json @@ -2,8 +2,8 @@ "from": "OWNER.address", "gas": "0x5208", "gasUsed": "0x5208", - "to": "0x388c818ca8b9251b393131c08a736a67ccb19297", "input": "0x", - "value": "0x16345785d8a0000", - "type": "CALL" + "to": "0x388c818ca8b9251b393131c08a736a67ccb19297", + "type": "CALL", + "value": "0x16345785d8a0000" } \ No newline at end of file diff --git a/test/historicstate/hardhat/scripts/geth_traces/Tracer.transfer.defaultTracer.json b/test/historicstate/hardhat/scripts/geth_traces/Tracer.transfer.defaultTracer.json index 9b0ab9d23..760f8a24b 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/Tracer.transfer.defaultTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/Tracer.transfer.defaultTracer.json @@ -1,6 +1,6 @@ { - "gas": 21000, "failed": false, + "gas": 21000, "returnValue": "", "structLogs": [] } \ No newline at end of file diff --git a/test/historicstate/hardhat/scripts/geth_traces/Tracer.transfer.prestateDiffTracer.json b/test/historicstate/hardhat/scripts/geth_traces/Tracer.transfer.prestateDiffTracer.json index feea3ac20..bd6d22123 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/Tracer.transfer.prestateDiffTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/Tracer.transfer.prestateDiffTracer.json @@ -1,26 +1,26 @@ { "post": { "0x0000000000000000000000000000000000000000": { - "balance": "0x3dbbe1" + "balance": "0x7d2b7500" }, "0x388c818ca8b9251b393131c08a736a67ccb19297": { - "balance": "0x2c68af0bb140000" + "balance": "0xc7d713b49da0000" }, "OWNER.address": { - "balance": "0x10f075ed5f51d7cf45e", - "nonce": 10 + "balance": "0xc9f2c9ccfd8d27dc4e53e8b00", + "nonce": 361 } }, "pre": { "0x0000000000000000000000000000000000000000": { - "balance": "0x3d69d9" + "balance": "0x0" }, "0x388c818ca8b9251b393131c08a736a67ccb19297": { - "balance": "0x16345785d8a0000" + "balance": "0xb1a2bc2ec500000" }, "OWNER.address": { - "balance": "0x10f08c21e44d69a7a96", - "nonce": 9 + "balance": "0xc9f2c9ccfda35c33dbff40000", + "nonce": 360 } } } \ No newline at end of file diff --git a/test/historicstate/hardhat/scripts/geth_traces/Tracer.transfer.prestateTracer.json b/test/historicstate/hardhat/scripts/geth_traces/Tracer.transfer.prestateTracer.json index fa757e344..fff570346 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/Tracer.transfer.prestateTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/Tracer.transfer.prestateTracer.json @@ -1,12 +1,12 @@ { "0x0000000000000000000000000000000000000000": { - "balance": "0x3d69d9" + "balance": "0x0" }, "0x388c818ca8b9251b393131c08a736a67ccb19297": { - "balance": "0x16345785d8a0000" + "balance": "0xb1a2bc2ec500000" }, "OWNER.address": { - "balance": "0x10f08c21e44d69a7a96", - "nonce": 9 + "balance": "0xc9f2c9ccfda35c33dbff40000", + "nonce": 360 } } \ No newline at end of file diff --git a/test/historicstate/hardhat/scripts/token_revert.ts b/test/historicstate/hardhat/scripts/token_revert.ts index b0891d06b..9b4662ba3 100644 --- a/test/historicstate/hardhat/scripts/token_revert.ts +++ b/test/historicstate/hardhat/scripts/token_revert.ts @@ -393,7 +393,7 @@ async function main(): Promise { await getAndPrintCommittedTransactionTrace(failedTransferHash, CALL_TRACER, TEST_CONTRACT_EXECUTE_CALLTRACER_FILE_NAME); - await expect(await deployedContract.balanceOf(OWNER_ADDRESS)).eq(10); + await expect(await deployedContract.balanceOf(OWNER_ADDRESS)).eq( 0); await verifyCallTraceAgainstGethTrace(TEST_CONTRACT_EXECUTE_CALLTRACER_FILE_NAME); } From 2f588b4c377fc62a4a04be6c92d300daeef1a4b3 Mon Sep 17 00:00:00 2001 From: Stan Kladko <13399135+kladkogex@users.noreply.github.com> Date: Tue, 23 Apr 2024 16:02:35 +0100 Subject: [PATCH 17/34] #1859 added test contract --- .../ERC20Custom.transfer.callTracer.json | 6 ++---- .../hardhat/scripts/token_revert.ts | 19 +++++++++---------- 2 files changed, 11 insertions(+), 14 deletions(-) diff --git a/test/historicstate/hardhat/scripts/geth_traces/ERC20Custom.transfer.callTracer.json b/test/historicstate/hardhat/scripts/geth_traces/ERC20Custom.transfer.callTracer.json index bb82c9e61..d5a620d8c 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/ERC20Custom.transfer.callTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/ERC20Custom.transfer.callTracer.json @@ -1,12 +1,10 @@ { "from": "OWNER.address", "gas": "0x200b20", - "gasUsed": "0x60ad", + "gasUsed": "0xccd9", "to": "ERC20Custom.address", "input": "0xa9059cbb000000000000000000000000ce5c7ca85f8cb94fa284a303348ef42add23f5e70000000000000000000000000000000000000000000000000000000000000001", - "output": "0x4e487b710000000000000000000000000000000000000000000000000000000000000011", - "error": "execution reverted", - "revertReason": "arithmetic underflow or overflow", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001", "value": "0x0", "type": "CALL" } \ No newline at end of file diff --git a/test/historicstate/hardhat/scripts/token_revert.ts b/test/historicstate/hardhat/scripts/token_revert.ts index 9b4662ba3..d7648fd9e 100644 --- a/test/historicstate/hardhat/scripts/token_revert.ts +++ b/test/historicstate/hardhat/scripts/token_revert.ts @@ -277,8 +277,6 @@ async function sendERCTransferWithoutConfirmation(deployedContract: any): Promis await sleep(3000); // Sleep for 1000 milliseconds (1 second) - // Get the first signer from Hardhat's local network - const [signer] = await hre.ethers.getSigners(); const currentNonce = await signer.getTransactionCount(); @@ -304,16 +302,19 @@ async function sendERCTransferWithoutConfirmation(deployedContract: any): Promis -async function executeERC20TransferAndThenERC20TransferInSingleBlock(deployedContract: any): Promise { +async function executeERC20Transfer(deployedContract: any): Promise { console.log("Doing two transactions in a block") - let currentNonce: int = await sendERCTransferWithoutConfirmation(deployedContract); + // Get the first signer from Hardhat's local network + const [signer] = await hre.ethers.getSigners(); + + const currentNonce = await signer.getTransactionCount(); const receipt = await deployedContract[EXECUTE_FUNCTION_NAME]( CALL_ADDRESS, 1, { gasLimit: 2100000, // this is just an example value; you'll need to set an appropriate gas limit for your specific function call - nonce: currentNonce + 1, + nonce: currentNonce }); expect(receipt.blockNumber).not.to.be.null; @@ -388,12 +389,10 @@ async function main(): Promise { sleep(10000); - await expect(await deployedContract.balanceOf(OWNER_ADDRESS)).eq(10); - const failedTransferHash: string = await executeERC20TransferAndThenERC20TransferInSingleBlock(deployedContract); - + console.log("Balance before:" + await deployedContract.balanceOf(OWNER_ADDRESS)); + const failedTransferHash: string = await executeERC20Transfer(deployedContract); await getAndPrintCommittedTransactionTrace(failedTransferHash, CALL_TRACER, TEST_CONTRACT_EXECUTE_CALLTRACER_FILE_NAME); - - await expect(await deployedContract.balanceOf(OWNER_ADDRESS)).eq( 0); + console.log("Balance after:" + await deployedContract.balanceOf(OWNER_ADDRESS)); await verifyCallTraceAgainstGethTrace(TEST_CONTRACT_EXECUTE_CALLTRACER_FILE_NAME); } From f98c5e04e4ca70ff43ea3e992244deff22442db0 Mon Sep 17 00:00:00 2001 From: Stan Kladko <13399135+kladkogex@users.noreply.github.com> Date: Tue, 23 Apr 2024 16:03:35 +0100 Subject: [PATCH 18/34] #1859 added test contract --- test/historicstate/hardhat/scripts/token_revert.ts | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/test/historicstate/hardhat/scripts/token_revert.ts b/test/historicstate/hardhat/scripts/token_revert.ts index d7648fd9e..ee836e065 100644 --- a/test/historicstate/hardhat/scripts/token_revert.ts +++ b/test/historicstate/hardhat/scripts/token_revert.ts @@ -324,13 +324,9 @@ async function executeERC20Transfer(deployedContract: any): Promise { expect(Array.isArray(trace)); - // the array should have two elements - if (hre.network.name != "geth") { - expect(trace.length).equal(2); - } + expect(trace.length).equal(1); console.log("Trace:" + JSON.stringify(trace[0])); - console.log("Trace:" + JSON.stringify(trace[1])); return receipt.hash!; From 86fc325589366e0ff18bbc2251b64c6f4ce8b6f6 Mon Sep 17 00:00:00 2001 From: Stan Kladko <13399135+kladkogex@users.noreply.github.com> Date: Tue, 23 Apr 2024 16:11:08 +0100 Subject: [PATCH 19/34] #1859 added test contract --- test/historicstate/hardhat/scripts/token_revert.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/test/historicstate/hardhat/scripts/token_revert.ts b/test/historicstate/hardhat/scripts/token_revert.ts index ee836e065..4b85483c1 100644 --- a/test/historicstate/hardhat/scripts/token_revert.ts +++ b/test/historicstate/hardhat/scripts/token_revert.ts @@ -304,16 +304,15 @@ async function sendERCTransferWithoutConfirmation(deployedContract: any): Promis async function executeERC20Transfer(deployedContract: any): Promise { - console.log("Doing two transactions in a block") + console.log("Doing transfer revert") // Get the first signer from Hardhat's local network const [signer] = await hre.ethers.getSigners(); - const currentNonce = await signer.getTransactionCount(); const receipt = await deployedContract[EXECUTE_FUNCTION_NAME]( CALL_ADDRESS, 1, { - gasLimit: 2100000, // this is just an example value; you'll need to set an appropriate gas limit for your specific function call + gasLimit: 52041, // this is just an example value; you'll need to set an appropriate gas limit for your specific function call nonce: currentNonce }); From ab1679f12e89d97edc8dc90d569dc2cd899f0df4 Mon Sep 17 00:00:00 2001 From: Stan Kladko <13399135+kladkogex@users.noreply.github.com> Date: Tue, 23 Apr 2024 16:22:49 +0100 Subject: [PATCH 20/34] #1859 added test contract --- libhistoric/CallTracePrinter.cpp | 7 +++++++ .../geth_traces/ERC20Custom.transfer.callTracer.json | 6 +++--- test/historicstate/hardhat/scripts/token_revert.ts | 2 +- 3 files changed, 11 insertions(+), 4 deletions(-) diff --git a/libhistoric/CallTracePrinter.cpp b/libhistoric/CallTracePrinter.cpp index ea7a46ab9..ed2136a03 100644 --- a/libhistoric/CallTracePrinter.cpp +++ b/libhistoric/CallTracePrinter.cpp @@ -52,6 +52,13 @@ void CallTracePrinter::printContractTransactionTrace( // call trace on the top Solidity function call in the stack // this will also recursively call printTrace on nested calls if exist topFunctionCall->printTrace( _jsonTrace, _statePost, 0, m_trace.getOptions() ); + + // for the top function the gas limit that geth prints is the transaction gas limit + // and not the gas limit given to the top level function, which is smaller because of 21000 + // transaction cost and potentially eth transfer cost + _jsonTrace["gas"] = + AlethStandardTrace::toGethCompatibleCompactHexPrefixed( m_trace.getGasLimit() ); + // handle the case of a transaction that deploys a contract // in this case geth prints transaction input data as input // end prints to as newly created contract address diff --git a/test/historicstate/hardhat/scripts/geth_traces/ERC20Custom.transfer.callTracer.json b/test/historicstate/hardhat/scripts/geth_traces/ERC20Custom.transfer.callTracer.json index d5a620d8c..9d5b3d4a8 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/ERC20Custom.transfer.callTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/ERC20Custom.transfer.callTracer.json @@ -1,10 +1,10 @@ { "from": "OWNER.address", - "gas": "0x200b20", - "gasUsed": "0xccd9", + "gas": "0xcb49", + "gasUsed": "0xcb49", "to": "ERC20Custom.address", "input": "0xa9059cbb000000000000000000000000ce5c7ca85f8cb94fa284a303348ef42add23f5e70000000000000000000000000000000000000000000000000000000000000001", - "output": "0x0000000000000000000000000000000000000000000000000000000000000001", + "error": "out of gas", "value": "0x0", "type": "CALL" } \ No newline at end of file diff --git a/test/historicstate/hardhat/scripts/token_revert.ts b/test/historicstate/hardhat/scripts/token_revert.ts index 4b85483c1..0a9a1a68d 100644 --- a/test/historicstate/hardhat/scripts/token_revert.ts +++ b/test/historicstate/hardhat/scripts/token_revert.ts @@ -312,7 +312,7 @@ async function executeERC20Transfer(deployedContract: any): Promise { const currentNonce = await signer.getTransactionCount(); const receipt = await deployedContract[EXECUTE_FUNCTION_NAME]( CALL_ADDRESS, 1, { - gasLimit: 52041, // this is just an example value; you'll need to set an appropriate gas limit for your specific function call + gasLimit: 0xcb49, // this is just an example value; you'll need to set an appropriate gas limit for your specific function call nonce: currentNonce }); From aeceb045d68f5e97ceec3bf95470f9e88755cbb9 Mon Sep 17 00:00:00 2001 From: Stan Kladko <13399135+kladkogex@users.noreply.github.com> Date: Tue, 23 Apr 2024 16:53:23 +0100 Subject: [PATCH 21/34] #1859 added test contract --- test/historicstate/hardhat/contracts/Erc20Custom.sol | 5 ++++- .../geth_traces/ERC20Custom.transfer.callTracer.json | 4 ++-- test/historicstate/hardhat/scripts/token_revert.ts | 9 ++++++--- 3 files changed, 12 insertions(+), 6 deletions(-) diff --git a/test/historicstate/hardhat/contracts/Erc20Custom.sol b/test/historicstate/hardhat/contracts/Erc20Custom.sol index a7e1b70e3..fe4a6a36f 100644 --- a/test/historicstate/hardhat/contracts/Erc20Custom.sol +++ b/test/historicstate/hardhat/contracts/Erc20Custom.sol @@ -82,7 +82,7 @@ contract ERC20Custom { } function transfer(address recipient, uint256 amount) public virtual returns (bool) { - _transfer(msg.sender, recipient, amount); + this._transfer1(); return true; } @@ -119,6 +119,9 @@ contract ERC20Custom { return true; } + function _transfer1() public { + } + function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); diff --git a/test/historicstate/hardhat/scripts/geth_traces/ERC20Custom.transfer.callTracer.json b/test/historicstate/hardhat/scripts/geth_traces/ERC20Custom.transfer.callTracer.json index 9d5b3d4a8..c63b1c330 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/ERC20Custom.transfer.callTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/ERC20Custom.transfer.callTracer.json @@ -1,7 +1,7 @@ { "from": "OWNER.address", - "gas": "0xcb49", - "gasUsed": "0xcb49", + "gas": "0x5539", + "gasUsed": "0x5539", "to": "ERC20Custom.address", "input": "0xa9059cbb000000000000000000000000ce5c7ca85f8cb94fa284a303348ef42add23f5e70000000000000000000000000000000000000000000000000000000000000001", "error": "out of gas", diff --git a/test/historicstate/hardhat/scripts/token_revert.ts b/test/historicstate/hardhat/scripts/token_revert.ts index 0a9a1a68d..356ab10cd 100644 --- a/test/historicstate/hardhat/scripts/token_revert.ts +++ b/test/historicstate/hardhat/scripts/token_revert.ts @@ -53,7 +53,7 @@ async function replaceAddressesWithSymbolicNames(_traceFileName: string) { async function getTraceJsonOptions(_tracer: string): Promise { if (_tracer == DEFAULT_TRACER) { - return {}; + return {disableStack: true}; } if (_tracer == PRESTATEDIFF_TRACER) { @@ -187,7 +187,7 @@ async function writeTraceFileReplacingAddressesWithSymbolicNames(_traceFileName: async function getBlockTrace(blockNumber: number): Promise { const blockStr = "0x" + blockNumber.toString(16); - const params : any = [blockStr, await getTraceJsonOptions(CALL_TRACER)]; + const params : any = [blockStr, await getTraceJsonOptions(DEFAULT_TRACER)]; console.log(params); const trace : any = await ethers.provider.send('debug_traceBlockByNumber', params); @@ -199,6 +199,9 @@ async function getAndPrintCommittedTransactionTrace(hash: string, _tracer: strin let traceOptions = await getTraceJsonOptions(_tracer); + + + console.log("Calling debug_traceTransaction to generate " + _skaleFileName); let trace; @@ -312,7 +315,7 @@ async function executeERC20Transfer(deployedContract: any): Promise { const currentNonce = await signer.getTransactionCount(); const receipt = await deployedContract[EXECUTE_FUNCTION_NAME]( CALL_ADDRESS, 1, { - gasLimit: 0xcb49, // this is just an example value; you'll need to set an appropriate gas limit for your specific function call + gasLimit: 0x6139, // this is just an example value; you'll need to set an appropriate gas limit for your specific function call nonce: currentNonce }); From d66c3fdde8b2b9789b436823b3f4c9f7b614fc57 Mon Sep 17 00:00:00 2001 From: Stan Kladko <13399135+kladkogex@users.noreply.github.com> Date: Tue, 23 Apr 2024 17:04:11 +0100 Subject: [PATCH 22/34] #1859 added test contract --- test/historicstate/hardhat/scripts/token_revert.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/historicstate/hardhat/scripts/token_revert.ts b/test/historicstate/hardhat/scripts/token_revert.ts index 356ab10cd..dcbf3a5bf 100644 --- a/test/historicstate/hardhat/scripts/token_revert.ts +++ b/test/historicstate/hardhat/scripts/token_revert.ts @@ -315,7 +315,7 @@ async function executeERC20Transfer(deployedContract: any): Promise { const currentNonce = await signer.getTransactionCount(); const receipt = await deployedContract[EXECUTE_FUNCTION_NAME]( CALL_ADDRESS, 1, { - gasLimit: 0x6139, // this is just an example value; you'll need to set an appropriate gas limit for your specific function call + gasLimit: 0x6239, // this is just an example value; you'll need to set an appropriate gas limit for your specific function call nonce: currentNonce }); From a8f1f9725f0da3d8477723368c0f39b5711b32de Mon Sep 17 00:00:00 2001 From: Stan Kladko <13399135+kladkogex@users.noreply.github.com> Date: Tue, 23 Apr 2024 17:26:39 +0100 Subject: [PATCH 23/34] #1859 added test contract --- libevm/LegacyVM.cpp | 23 ++++++++++++++--------- 1 file changed, 14 insertions(+), 9 deletions(-) diff --git a/libevm/LegacyVM.cpp b/libevm/LegacyVM.cpp index 2fdbf431d..77a0423e4 100644 --- a/libevm/LegacyVM.cpp +++ b/libevm/LegacyVM.cpp @@ -231,25 +231,30 @@ void LegacyVM::interpretCases() { // CASE( CREATE2 ) { - // for CREATE and CREATE2 we call ON_OP in caseCreate, since it calculates - // correct gas cost - // ON_OP(); - if ( !m_schedule->haveCreate2 ) + + if ( !m_schedule->haveCreate2 ) { + ON_OP(); throwBadInstruction(); - if ( m_ext->staticCall ) + } + if ( m_ext->staticCall ) { + ON_OP(); throwDisallowedStateChange(); + } + // for CREATE and CREATE2 we call ON_OP in caseCreate, since it calculates + // correct gas cost m_bounce = &LegacyVM::caseCreate; } BREAK CASE( CREATE ) { - // for CREATE and CREATE2 we call ON_OP in caseCreate, since it calculates - // correct gas cost - // ON_OP(); - if ( m_ext->staticCall ) + if ( m_ext->staticCall ) { + ON_OP(); throwDisallowedStateChange(); + } + // for CREATE and CREATE2 we call ON_OP in caseCreate, since it calculates + // correct gas cost m_bounce = &LegacyVM::caseCreate; } BREAK From 94a859ab16a251583d3ea82cd5e51e6d3ccbe49d Mon Sep 17 00:00:00 2001 From: Stan Kladko <13399135+kladkogex@users.noreply.github.com> Date: Tue, 23 Apr 2024 17:32:39 +0100 Subject: [PATCH 24/34] #1859 added test contract --- libhistoric/AlethStandardTrace.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/libhistoric/AlethStandardTrace.cpp b/libhistoric/AlethStandardTrace.cpp index 444bc3399..fa0cce838 100644 --- a/libhistoric/AlethStandardTrace.cpp +++ b/libhistoric/AlethStandardTrace.cpp @@ -207,7 +207,9 @@ void AlethStandardTrace::setTopFunctionCall( void AlethStandardTrace::recordFunctionReturned( evmc_status_code _status, const vector< uint8_t >& _returnData, uint64_t _gasUsed ) { - STATE_CHECK( getLastOpRecord()->m_gasRemaining >= getLastOpRecord()->m_opGas ) + + // note that m_gas remaoining can be less than m_opGas. This happens in case + // of out of gas revert STATE_CHECK( m_currentlyExecutingFunctionCall ) STATE_CHECK( !m_isFinalized ) @@ -354,7 +356,6 @@ shared_ptr< OpExecutionRecord > AlethStandardTrace::createOpExecutionRecord( uin opName = "KECCAK256"; } - auto executionRecord = std::make_shared< OpExecutionRecord >( ext.depth, _inst, ( uint64_t ) _gasRemaining, ( uint64_t ) _gasOpGas, _pc, ext.sub.refunds, opName ); From 80685ddcfb5aeb83749b7cc194e773f71bddb158 Mon Sep 17 00:00:00 2001 From: Stan Kladko <13399135+kladkogex@users.noreply.github.com> Date: Tue, 23 Apr 2024 17:57:12 +0100 Subject: [PATCH 25/34] #1859 added test contract --- libhistoric/AlethStandardTrace.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/libhistoric/AlethStandardTrace.cpp b/libhistoric/AlethStandardTrace.cpp index fa0cce838..181f947c9 100644 --- a/libhistoric/AlethStandardTrace.cpp +++ b/libhistoric/AlethStandardTrace.cpp @@ -317,12 +317,6 @@ void AlethStandardTrace::recordInstructionIsExecuted( uint64_t _pc, Instruction STATE_CHECK( _voidExt ) STATE_CHECK( !m_isFinalized ) - // geth trace does not record in the trace instructions that are - // reverted by out of gas - if (_gasRemaining < _gasOpGas) { - return; - } - // remove const qualifier since we need to set tracing values in AlethExtVM AlethExtVM& ext = ( AlethExtVM& ) ( *_voidExt ); auto vm = dynamic_cast< LegacyVM const* >( _vm ); From 7e5335a7a6d3dbad4928a181a5837f0b3a3c2901 Mon Sep 17 00:00:00 2001 From: Stan Kladko <13399135+kladkogex@users.noreply.github.com> Date: Tue, 23 Apr 2024 18:04:44 +0100 Subject: [PATCH 26/34] #1859 added test contract --- .../ERC20Custom.transfer.callTracer.json | 23 ++++++++++++++----- 1 file changed, 17 insertions(+), 6 deletions(-) diff --git a/test/historicstate/hardhat/scripts/geth_traces/ERC20Custom.transfer.callTracer.json b/test/historicstate/hardhat/scripts/geth_traces/ERC20Custom.transfer.callTracer.json index c63b1c330..9cc83b2b1 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/ERC20Custom.transfer.callTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/ERC20Custom.transfer.callTracer.json @@ -1,10 +1,21 @@ { + "calls": [ + { + "error": "out of gas", + "from": "ERC20Custom.address", + "gas": "0x51", + "gasUsed": "0x30d", + "input": "0x53bb9b8a", + "to": "ERC20Custom.address", + "type": "CALL" + } + ], + "error": "out of gas", "from": "OWNER.address", - "gas": "0x5539", - "gasUsed": "0x5539", - "to": "ERC20Custom.address", + "gas": "0x6239", + "gasUsed": "0x6239", "input": "0xa9059cbb000000000000000000000000ce5c7ca85f8cb94fa284a303348ef42add23f5e70000000000000000000000000000000000000000000000000000000000000001", - "error": "out of gas", - "value": "0x0", - "type": "CALL" + "to": "ERC20Custom.address", + "type": "CALL", + "value": "0x0" } \ No newline at end of file From c0da15e8b5a474999a16465970ec86d4d1deee5a Mon Sep 17 00:00:00 2001 From: Stan Kladko <13399135+kladkogex@users.noreply.github.com> Date: Tue, 23 Apr 2024 18:28:37 +0100 Subject: [PATCH 27/34] #1859 added test contract --- libhistoric/AlethExecutive.cpp | 3 +-- libhistoric/AlethStandardTrace.cpp | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/libhistoric/AlethExecutive.cpp b/libhistoric/AlethExecutive.cpp index f65a5bc58..6e383d945 100644 --- a/libhistoric/AlethExecutive.cpp +++ b/libhistoric/AlethExecutive.cpp @@ -358,8 +358,7 @@ bool AlethExecutive::go( OnOpFunc const& _onOp ) { throw; #ifdef HISTORIC_STATE } catch ( VMTracingError const& _e ) { - cwarn << "Tracing error: " << *boost::get_error_info< errinfo_evmcStatusCode >( _e ) - << ")"; + cerr << "VM tracing error:" << _e.message; revert(); throw; #endif diff --git a/libhistoric/AlethStandardTrace.cpp b/libhistoric/AlethStandardTrace.cpp index 181f947c9..66488abfc 100644 --- a/libhistoric/AlethStandardTrace.cpp +++ b/libhistoric/AlethStandardTrace.cpp @@ -208,7 +208,7 @@ void AlethStandardTrace::setTopFunctionCall( void AlethStandardTrace::recordFunctionReturned( evmc_status_code _status, const vector< uint8_t >& _returnData, uint64_t _gasUsed ) { - // note that m_gas remaoining can be less than m_opGas. This happens in case + // note that m_gas remaining can be less than m_opGas. This happens in case // of out of gas revert STATE_CHECK( m_currentlyExecutingFunctionCall ) STATE_CHECK( !m_isFinalized ) From b8d4e8342bb02d0a3f1c4e91e3893ab4e7bf7e6f Mon Sep 17 00:00:00 2001 From: Stan Kladko <13399135+kladkogex@users.noreply.github.com> Date: Tue, 23 Apr 2024 18:51:34 +0100 Subject: [PATCH 28/34] #1859 added test contract --- .../Tracer.deploy.4byteTracer.json | 2 +- .../geth_traces/Tracer.deploy.callTracer.json | 12 +- .../Tracer.deploy.defaultTracer.json | 638 +- .../Tracer.deploy.prestateDiffTracer.json | 14 +- .../Tracer.deploy.prestateTracer.json | 6 +- .../Tracer.getBalance.callTracer.json | 10 +- .../Tracer.getBalance.defaultTracer.json | 868 +- .../Tracer.getBalance.prestateTracer.json | 4 +- .../Tracer.getBalance.replayTracer.json | 2 +- .../geth_traces/Tracer.mint.callTracer.json | 12 +- .../Tracer.mint.defaultTracer.json | 8669 +++---- .../Tracer.mint.prestateDiffTracer.json | 12 +- .../Tracer.mint.prestateTracer.json | 8 +- .../geth_traces/Tracer.mint2.callTracer.json | 40 +- .../Tracer.mint2.defaultTracer.json | 20727 ++++++++-------- .../Tracer.mint2.prestateDiffTracer.json | 21 +- .../Tracer.mint2.prestateTracer.json | 16 +- .../Tracer.readableRevert.callTracer.json | 36 +- .../Tracer.readableRevert.defaultTracer.json | 13741 +++++----- ...cer.readableRevert.prestateDiffTracer.json | 12 +- .../Tracer.readableRevert.prestateTracer.json | 8 +- .../Tracer.transfer.callTracer.json | 6 +- .../Tracer.transfer.defaultTracer.json | 2 +- .../Tracer.transfer.prestateDiffTracer.json | 16 +- .../Tracer.transfer.prestateTracer.json | 8 +- 25 files changed, 22623 insertions(+), 22267 deletions(-) diff --git a/test/historicstate/hardhat/scripts/geth_traces/Tracer.deploy.4byteTracer.json b/test/historicstate/hardhat/scripts/geth_traces/Tracer.deploy.4byteTracer.json index 153169088..77ad47965 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/Tracer.deploy.4byteTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/Tracer.deploy.4byteTracer.json @@ -1,3 +1,3 @@ { - "0x60806040-7311": 1 + "0x60806040-7464": 1 } \ No newline at end of file diff --git a/test/historicstate/hardhat/scripts/geth_traces/Tracer.deploy.callTracer.json b/test/historicstate/hardhat/scripts/geth_traces/Tracer.deploy.callTracer.json index 201f96af3..69c028a91 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/Tracer.deploy.callTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/Tracer.deploy.callTracer.json @@ -1,10 +1,10 @@ { "from": "OWNER.address", - "gas": "0x18bbcc", - "gasUsed": "0x1cf4f8", - "input": "0x60806040526000600260006101000a81548160ff02191690831515021790555034801561002b57600080fd5b50600260009054906101000a900460ff161561007c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016100739061011f565b60405180910390fd5b6001600260006101000a81548160ff02191690831515021790555061013f565b600082825260208201905092915050565b7f436f6e747261637420696e7374616e63652068617320616c726561647920626560008201527f656e20696e697469616c697a6564000000000000000000000000000000000000602082015250565b6000610109602e8361009c565b9150610114826100ad565b604082019050919050565b60006020820190508181036000830152610138816100fc565b9050919050565b611b458061014e6000396000f3fe60806040523480156200001157600080fd5b5060043610620000ac5760003560e01c80638bfe44ff116200006f5780638bfe44ff14620001975780639295436214620001a3578063a0712d6814620001af578063b69ef8a814620001e5578063c9353cb5146200020757620000ac565b806312065fe014620000b15780631c71706914620000d35780631c93908c14620000f55780633aa18088146200012b5780637f29c3941462000161575b600080fd5b620000bb62000227565b604051620000ca919062000975565b60405180910390f35b620000dd62000231565b604051620000ec9190620009ad565b60405180910390f35b6200011360048036038101906200010d919062000a0a565b62000280565b60405162000122919062000975565b60405180910390f35b62000149600480360381019062000143919062000a0a565b620002f6565b60405162000158919062000975565b60405180910390f35b6200017f600480360381019062000179919062000a0a565b6200049e565b6040516200018e919062000975565b60405180910390f35b620001a162000771565b005b620001ad620007b3565b005b620001cd6004803603810190620001c7919062000a0a565b620007f0565b604051620001dc919062000975565b60405180910390f35b620001ef6200092d565b604051620001fe919062000975565b60405180910390f35b6200022560048036038101906200021f919062000aa1565b62000933565b005b6000600154905090565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620002ca919062000b34565b60405180910390a28160036000828254620002e6919062000b95565b9250508190555060029050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405162000340919062000c20565b60405180910390a260405162000356906200094c565b604051809103906000f08015801562000373573d6000803e3d6000fd5b506000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508160016000828254620003c7919062000b95565b92505081905550620003e7600183620003e1919062000b95565b62000280565b50620003f262000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b81526004016200044e919062000975565b6020604051808303816000875af11580156200046e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000494919062000c69565b5060019050919050565b60003073ffffffffffffffffffffffffffffffffffffffff1663929543626040518163ffffffff1660e01b815260040160006040518083038186803b158015620004e757600080fd5b505afa925050508015620004f9575060015b620005e1576200050862000ca8565b806308c379a0036200056c57506200051f62000d43565b806200052c57506200056e565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a816040516200055d919062000e56565b60405180910390a150620005db565b505b3d80600081146200059c576040519150601f19603f3d011682016040523d82523d6000602084013e620005a1565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620005d19062000ef0565b60405180910390a1505b620005e2565b5b3073ffffffffffffffffffffffffffffffffffffffff16638bfe44ff6040518163ffffffff1660e01b815260040160006040518083038186803b1580156200062957600080fd5b505afa9250505080156200063b575060015b62000723576200064a62000ca8565b806308c379a003620006ae57506200066162000d43565b806200066e5750620006b0565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a816040516200069f919062000e56565b60405180910390a1506200071d565b505b3d8060008114620006de576040519150601f19603f3d011682016040523d82523d6000602084013e620006e3565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620007139062000ef0565b60405180910390a1505b62000724565b5b600062000768576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200075f9062000f62565b60405180910390fd5b60019050919050565b6001806040517fcf479181000000000000000000000000000000000000000000000000000000008152600401620007aa92919062000fd1565b60405180910390fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007e7906200104e565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200083a919062000c20565b60405180910390a2816001600082825462000856919062000b95565b925050819055506200087660018362000870919062000b95565b62000280565b506200088162000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b8152600401620008dd919062000975565b6020604051808303816000875af1158015620008fd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000923919062000c69565b5060019050919050565b60015481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b610a9f806200107183390190565b6000819050919050565b6200096f816200095a565b82525050565b60006020820190506200098c600083018462000964565b92915050565b6000819050919050565b620009a78162000992565b82525050565b6000602082019050620009c460008301846200099c565b92915050565b6000604051905090565b600080fd5b620009e4816200095a565b8114620009f057600080fd5b50565b60008135905062000a0481620009d9565b92915050565b60006020828403121562000a235762000a22620009d4565b5b600062000a3384828501620009f3565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000a698262000a3c565b9050919050565b62000a7b8162000a5c565b811462000a8757600080fd5b50565b60008135905062000a9b8162000a70565b92915050565b60006020828403121562000aba5762000ab9620009d4565b5b600062000aca8482850162000a8a565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000b1c600e8362000ad3565b915062000b298262000ae4565b602082019050919050565b600060408201905062000b4b600083018462000964565b818103602083015262000b5e8162000b0d565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000ba2826200095a565b915062000baf836200095a565b925082820190508082111562000bca5762000bc962000b66565b5b92915050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b600062000c0860058362000ad3565b915062000c158262000bd0565b602082019050919050565b600060408201905062000c37600083018462000964565b818103602083015262000c4a8162000bf9565b905092915050565b60008151905062000c6381620009d9565b92915050565b60006020828403121562000c825762000c81620009d4565b5b600062000c928482850162000c52565b91505092915050565b60008160e01c9050919050565b600060033d111562000cca5760046000803e62000cc760005162000c9b565b90505b90565b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000d188262000ccd565b810181811067ffffffffffffffff8211171562000d3a5762000d3962000cde565b5b80604052505050565b600060443d1062000ddb5762000d58620009ca565b60043d036004823e80513d602482011167ffffffffffffffff8211171562000d8257505062000ddb565b808201805167ffffffffffffffff81111562000da2575050505062000ddb565b80602083010160043d03850181111562000dc157505050505062000ddb565b62000dd28260200185018662000d0d565b82955050505050505b90565b600081519050919050565b60005b8381101562000e0957808201518184015260208101905062000dec565b60008484015250505050565b600062000e228262000dde565b62000e2e818562000ad3565b935062000e4081856020860162000de9565b62000e4b8162000ccd565b840191505092915050565b6000602082019050818103600083015262000e72818462000e15565b905092915050565b7f45787465726e616c2063616c6c206661696c656420776974686f757420616e2060008201527f6572726f72206d65737361676500000000000000000000000000000000000000602082015250565b600062000ed8602d8362000ad3565b915062000ee58262000e7a565b604082019050919050565b6000602082019050818103600083015262000f0b8162000ec9565b9050919050565b7f494e53554646494349454e542042414c414e4345000000000000000000000000600082015250565b600062000f4a60148362000ad3565b915062000f578262000f12565b602082019050919050565b6000602082019050818103600083015262000f7d8162000f3b565b9050919050565b6000819050919050565b6000819050919050565b600062000fb962000fb362000fad8462000f84565b62000f8e565b6200095a565b9050919050565b62000fcb8162000f98565b82525050565b600060408201905062000fe8600083018562000fc0565b62000ff7602083018462000fc0565b9392505050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b60006200103660178362000ad3565b9150620010438262000ffe565b602082019050919050565b60006020820190508181036000830152620010698162001027565b905091905056fe60806040526000600160006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b50600160009054906101000a900460ff161562000080576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200007790620002b5565b60405180910390fd5b60018060006101000a81548160ff021916908315150217905550620000bc701d6329f1c35ca4bfabb9f5610000000000620000c360201b60201c565b5062000460565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200010d919062000342565b60405180910390a281600080828254620001289190620003a3565b925050819055506200014e600183620001429190620003a3565b6200016960201b60201c565b506200015f620001df60201b60201c565b5060019050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620001b391906200042e565b60405180910390a28160026000828254620001cf9190620003a3565b9250508190555060029050919050565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b600082825260208201905092915050565b7f436f6e747261637420696e7374616e63652068617320616c726561647920626560008201527f656e20696e697469616c697a6564000000000000000000000000000000000000602082015250565b60006200029d602e836200022e565b9150620002aa826200023f565b604082019050919050565b60006020820190508181036000830152620002d0816200028e565b9050919050565b6000819050919050565b620002ec81620002d7565b82525050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006200032a6005836200022e565b91506200033782620002f2565b602082019050919050565b6000604082019050620003596000830184620002e1565b81810360208301526200036c816200031b565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620003b082620002d7565b9150620003bd83620002d7565b9250828201905080821115620003d857620003d762000374565b5b92915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000416600e836200022e565b91506200042382620003de565b602082019050919050565b6000604082019050620004456000830184620002e1565b8181036020830152620004588162000407565b905092915050565b61062f80620004706000396000f3fe608060405234801561001057600080fd5b50600436106100625760003560e01c80631c717069146100675780631c93908c1461008557806392954362146100b5578063a0712d68146100bf578063b69ef8a8146100ef578063c9353cb51461010d575b600080fd5b61006f610129565b60405161007c91906102ed565b60405180910390f35b61009f600480360381019061009a9190610343565b610178565b6040516100ac919061037f565b60405180910390f35b6100bd6101ea565b005b6100d960048036038101906100d49190610343565b610225565b6040516100e6919061037f565b60405180910390f35b6100f76102b5565b604051610104919061037f565b60405180910390f35b610127600480360381019061012291906103f8565b6102bb565b005b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516101c09190610482565b60405180910390a281600260008282546101da91906104df565b9250508190555060029050919050565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161021c9061055f565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405161026d91906105cb565b60405180910390a28160008082825461028691906104df565b925050819055506102a260018361029d91906104df565b610178565b506102ab610129565b5060019050919050565b60005481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b6000819050919050565b6102e7816102d4565b82525050565b600060208201905061030260008301846102de565b92915050565b600080fd5b6000819050919050565b6103208161030d565b811461032b57600080fd5b50565b60008135905061033d81610317565b92915050565b60006020828403121561035957610358610308565b5b60006103678482850161032e565b91505092915050565b6103798161030d565b82525050565b60006020820190506103946000830184610370565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006103c58261039a565b9050919050565b6103d5816103ba565b81146103e057600080fd5b50565b6000813590506103f2816103cc565b92915050565b60006020828403121561040e5761040d610308565b5b600061041c848285016103e3565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600061046c600e83610425565b915061047782610436565b602082019050919050565b60006040820190506104976000830184610370565b81810360208301526104a88161045f565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006104ea8261030d565b91506104f58361030d565b925082820190508082111561050d5761050c6104b0565b5b92915050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b6000610549601783610425565b915061055482610513565b602082019050919050565b600060208201905081810360008301526105788161053c565b9050919050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006105b5600583610425565b91506105c08261057f565b602082019050919050565b60006040820190506105e06000830184610370565b81810360208301526105f1816105a8565b90509291505056fea26469706673582212202a0a0fa5842e91cc0c1e5b645f7286aad7193a83c3b2f8c8e4c1b35008af0d6f64736f6c63430008140033a264697066735822122036f326b9881542090544d5d6e9f2ff18b13ec09bd4994f14891a84e97f4d6db964736f6c63430008140033", - "output": "0x60806040523480156200001157600080fd5b5060043610620000ac5760003560e01c80638bfe44ff116200006f5780638bfe44ff14620001975780639295436214620001a3578063a0712d6814620001af578063b69ef8a814620001e5578063c9353cb5146200020757620000ac565b806312065fe014620000b15780631c71706914620000d35780631c93908c14620000f55780633aa18088146200012b5780637f29c3941462000161575b600080fd5b620000bb62000227565b604051620000ca919062000975565b60405180910390f35b620000dd62000231565b604051620000ec9190620009ad565b60405180910390f35b6200011360048036038101906200010d919062000a0a565b62000280565b60405162000122919062000975565b60405180910390f35b62000149600480360381019062000143919062000a0a565b620002f6565b60405162000158919062000975565b60405180910390f35b6200017f600480360381019062000179919062000a0a565b6200049e565b6040516200018e919062000975565b60405180910390f35b620001a162000771565b005b620001ad620007b3565b005b620001cd6004803603810190620001c7919062000a0a565b620007f0565b604051620001dc919062000975565b60405180910390f35b620001ef6200092d565b604051620001fe919062000975565b60405180910390f35b6200022560048036038101906200021f919062000aa1565b62000933565b005b6000600154905090565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620002ca919062000b34565b60405180910390a28160036000828254620002e6919062000b95565b9250508190555060029050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405162000340919062000c20565b60405180910390a260405162000356906200094c565b604051809103906000f08015801562000373573d6000803e3d6000fd5b506000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508160016000828254620003c7919062000b95565b92505081905550620003e7600183620003e1919062000b95565b62000280565b50620003f262000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b81526004016200044e919062000975565b6020604051808303816000875af11580156200046e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000494919062000c69565b5060019050919050565b60003073ffffffffffffffffffffffffffffffffffffffff1663929543626040518163ffffffff1660e01b815260040160006040518083038186803b158015620004e757600080fd5b505afa925050508015620004f9575060015b620005e1576200050862000ca8565b806308c379a0036200056c57506200051f62000d43565b806200052c57506200056e565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a816040516200055d919062000e56565b60405180910390a150620005db565b505b3d80600081146200059c576040519150601f19603f3d011682016040523d82523d6000602084013e620005a1565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620005d19062000ef0565b60405180910390a1505b620005e2565b5b3073ffffffffffffffffffffffffffffffffffffffff16638bfe44ff6040518163ffffffff1660e01b815260040160006040518083038186803b1580156200062957600080fd5b505afa9250505080156200063b575060015b62000723576200064a62000ca8565b806308c379a003620006ae57506200066162000d43565b806200066e5750620006b0565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a816040516200069f919062000e56565b60405180910390a1506200071d565b505b3d8060008114620006de576040519150601f19603f3d011682016040523d82523d6000602084013e620006e3565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620007139062000ef0565b60405180910390a1505b62000724565b5b600062000768576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200075f9062000f62565b60405180910390fd5b60019050919050565b6001806040517fcf479181000000000000000000000000000000000000000000000000000000008152600401620007aa92919062000fd1565b60405180910390fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007e7906200104e565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200083a919062000c20565b60405180910390a2816001600082825462000856919062000b95565b925050819055506200087660018362000870919062000b95565b62000280565b506200088162000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b8152600401620008dd919062000975565b6020604051808303816000875af1158015620008fd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000923919062000c69565b5060019050919050565b60015481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b610a9f806200107183390190565b6000819050919050565b6200096f816200095a565b82525050565b60006020820190506200098c600083018462000964565b92915050565b6000819050919050565b620009a78162000992565b82525050565b6000602082019050620009c460008301846200099c565b92915050565b6000604051905090565b600080fd5b620009e4816200095a565b8114620009f057600080fd5b50565b60008135905062000a0481620009d9565b92915050565b60006020828403121562000a235762000a22620009d4565b5b600062000a3384828501620009f3565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000a698262000a3c565b9050919050565b62000a7b8162000a5c565b811462000a8757600080fd5b50565b60008135905062000a9b8162000a70565b92915050565b60006020828403121562000aba5762000ab9620009d4565b5b600062000aca8482850162000a8a565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000b1c600e8362000ad3565b915062000b298262000ae4565b602082019050919050565b600060408201905062000b4b600083018462000964565b818103602083015262000b5e8162000b0d565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000ba2826200095a565b915062000baf836200095a565b925082820190508082111562000bca5762000bc962000b66565b5b92915050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b600062000c0860058362000ad3565b915062000c158262000bd0565b602082019050919050565b600060408201905062000c37600083018462000964565b818103602083015262000c4a8162000bf9565b905092915050565b60008151905062000c6381620009d9565b92915050565b60006020828403121562000c825762000c81620009d4565b5b600062000c928482850162000c52565b91505092915050565b60008160e01c9050919050565b600060033d111562000cca5760046000803e62000cc760005162000c9b565b90505b90565b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000d188262000ccd565b810181811067ffffffffffffffff8211171562000d3a5762000d3962000cde565b5b80604052505050565b600060443d1062000ddb5762000d58620009ca565b60043d036004823e80513d602482011167ffffffffffffffff8211171562000d8257505062000ddb565b808201805167ffffffffffffffff81111562000da2575050505062000ddb565b80602083010160043d03850181111562000dc157505050505062000ddb565b62000dd28260200185018662000d0d565b82955050505050505b90565b600081519050919050565b60005b8381101562000e0957808201518184015260208101905062000dec565b60008484015250505050565b600062000e228262000dde565b62000e2e818562000ad3565b935062000e4081856020860162000de9565b62000e4b8162000ccd565b840191505092915050565b6000602082019050818103600083015262000e72818462000e15565b905092915050565b7f45787465726e616c2063616c6c206661696c656420776974686f757420616e2060008201527f6572726f72206d65737361676500000000000000000000000000000000000000602082015250565b600062000ed8602d8362000ad3565b915062000ee58262000e7a565b604082019050919050565b6000602082019050818103600083015262000f0b8162000ec9565b9050919050565b7f494e53554646494349454e542042414c414e4345000000000000000000000000600082015250565b600062000f4a60148362000ad3565b915062000f578262000f12565b602082019050919050565b6000602082019050818103600083015262000f7d8162000f3b565b9050919050565b6000819050919050565b6000819050919050565b600062000fb962000fb362000fad8462000f84565b62000f8e565b6200095a565b9050919050565b62000fcb8162000f98565b82525050565b600060408201905062000fe8600083018562000fc0565b62000ff7602083018462000fc0565b9392505050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b60006200103660178362000ad3565b9150620010438262000ffe565b602082019050919050565b60006020820190508181036000830152620010698162001027565b905091905056fe60806040526000600160006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b50600160009054906101000a900460ff161562000080576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200007790620002b5565b60405180910390fd5b60018060006101000a81548160ff021916908315150217905550620000bc701d6329f1c35ca4bfabb9f5610000000000620000c360201b60201c565b5062000460565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200010d919062000342565b60405180910390a281600080828254620001289190620003a3565b925050819055506200014e600183620001429190620003a3565b6200016960201b60201c565b506200015f620001df60201b60201c565b5060019050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620001b391906200042e565b60405180910390a28160026000828254620001cf9190620003a3565b9250508190555060029050919050565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b600082825260208201905092915050565b7f436f6e747261637420696e7374616e63652068617320616c726561647920626560008201527f656e20696e697469616c697a6564000000000000000000000000000000000000602082015250565b60006200029d602e836200022e565b9150620002aa826200023f565b604082019050919050565b60006020820190508181036000830152620002d0816200028e565b9050919050565b6000819050919050565b620002ec81620002d7565b82525050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006200032a6005836200022e565b91506200033782620002f2565b602082019050919050565b6000604082019050620003596000830184620002e1565b81810360208301526200036c816200031b565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620003b082620002d7565b9150620003bd83620002d7565b9250828201905080821115620003d857620003d762000374565b5b92915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000416600e836200022e565b91506200042382620003de565b602082019050919050565b6000604082019050620004456000830184620002e1565b8181036020830152620004588162000407565b905092915050565b61062f80620004706000396000f3fe608060405234801561001057600080fd5b50600436106100625760003560e01c80631c717069146100675780631c93908c1461008557806392954362146100b5578063a0712d68146100bf578063b69ef8a8146100ef578063c9353cb51461010d575b600080fd5b61006f610129565b60405161007c91906102ed565b60405180910390f35b61009f600480360381019061009a9190610343565b610178565b6040516100ac919061037f565b60405180910390f35b6100bd6101ea565b005b6100d960048036038101906100d49190610343565b610225565b6040516100e6919061037f565b60405180910390f35b6100f76102b5565b604051610104919061037f565b60405180910390f35b610127600480360381019061012291906103f8565b6102bb565b005b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516101c09190610482565b60405180910390a281600260008282546101da91906104df565b9250508190555060029050919050565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161021c9061055f565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405161026d91906105cb565b60405180910390a28160008082825461028691906104df565b925050819055506102a260018361029d91906104df565b610178565b506102ab610129565b5060019050919050565b60005481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b6000819050919050565b6102e7816102d4565b82525050565b600060208201905061030260008301846102de565b92915050565b600080fd5b6000819050919050565b6103208161030d565b811461032b57600080fd5b50565b60008135905061033d81610317565b92915050565b60006020828403121561035957610358610308565b5b60006103678482850161032e565b91505092915050565b6103798161030d565b82525050565b60006020820190506103946000830184610370565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006103c58261039a565b9050919050565b6103d5816103ba565b81146103e057600080fd5b50565b6000813590506103f2816103cc565b92915050565b60006020828403121561040e5761040d610308565b5b600061041c848285016103e3565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600061046c600e83610425565b915061047782610436565b602082019050919050565b60006040820190506104976000830184610370565b81810360208301526104a88161045f565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006104ea8261030d565b91506104f58361030d565b925082820190508082111561050d5761050c6104b0565b5b92915050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b6000610549601783610425565b915061055482610513565b602082019050919050565b600060208201905081810360008301526105788161053c565b9050919050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006105b5600583610425565b91506105c08261057f565b602082019050919050565b60006040820190506105e06000830184610370565b81810360208301526105f1816105a8565b90509291505056fea26469706673582212202a0a0fa5842e91cc0c1e5b645f7286aad7193a83c3b2f8c8e4c1b35008af0d6f64736f6c63430008140033a264697066735822122036f326b9881542090544d5d6e9f2ff18b13ec09bd4994f14891a84e97f4d6db964736f6c63430008140033", + "gas": "0x200b20", + "gasUsed": "0x18928c", "to": "Tracer.address", - "type": "CREATE", - "value": "0x0" + "input": "0x60806040526000600260006101000a81548160ff02191690831515021790555034801561002b57600080fd5b50600260009054906101000a900460ff161561007c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016100739061011f565b60405180910390fd5b6001600260006101000a81548160ff02191690831515021790555061013f565b600082825260208201905092915050565b7f436f6e747261637420696e7374616e63652068617320616c726561647920626560008201527f656e20696e697469616c697a6564000000000000000000000000000000000000602082015250565b6000610109602e8361009c565b9150610114826100ad565b604082019050919050565b60006020820190508181036000830152610138816100fc565b9050919050565b611bde8061014e6000396000f3fe60806040523480156200001157600080fd5b5060043610620000ac5760003560e01c80638bfe44ff116200006f5780638bfe44ff14620001975780639295436214620001a3578063a0712d6814620001af578063b69ef8a814620001e5578063c9353cb5146200020757620000ac565b806312065fe014620000b15780631c71706914620000d35780631c93908c14620000f55780633aa18088146200012b5780637f29c3941462000161575b600080fd5b620000bb62000227565b604051620000ca919062000997565b60405180910390f35b620000dd62000231565b604051620000ec9190620009cf565b60405180910390f35b6200011360048036038101906200010d919062000a2c565b62000280565b60405162000122919062000997565b60405180910390f35b62000149600480360381019062000143919062000a2c565b620002f6565b60405162000158919062000997565b60405180910390f35b6200017f600480360381019062000179919062000a2c565b620004ae565b6040516200018e919062000997565b60405180910390f35b620001a162000783565b005b620001ad620007c5565b005b620001cd6004803603810190620001c7919062000a2c565b62000802565b604051620001dc919062000997565b60405180910390f35b620001ef6200094f565b604051620001fe919062000997565b60405180910390f35b6200022560048036038101906200021f919062000ac3565b62000955565b005b6000600154905090565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620002ca919062000b56565b60405180910390a28160036000828254620002e6919062000bb7565b9250508190555060029050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405162000340919062000c64565b60405180910390a260405162000356906200096e565b604051809103906000f08015801562000373573d6000803e3d6000fd5b506000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508160016000828254620003c7919062000bb7565b92505081905550620003e7600183620003e1919062000bb7565b62000280565b50620003f262000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b81526004016200044e919062000997565b602060405180830381600087803b1580156200046957600080fd5b505af11580156200047e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004a4919062000cad565b5060019050919050565b60003073ffffffffffffffffffffffffffffffffffffffff1663929543626040518163ffffffff1660e01b815260040160006040518083038186803b158015620004f757600080fd5b505afa92505050801562000509575060015b620005f2576200051862000cec565b806308c379a014156200057d57506200053062000d87565b806200053d57506200057f565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a816040516200056e919062000eab565b60405180910390a150620005ec565b505b3d8060008114620005ad576040519150601f19603f3d011682016040523d82523d6000602084013e620005b2565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620005e29062000f45565b60405180910390a1505b620005f3565b5b3073ffffffffffffffffffffffffffffffffffffffff16638bfe44ff6040518163ffffffff1660e01b815260040160006040518083038186803b1580156200063a57600080fd5b505afa9250505080156200064c575060015b62000735576200065b62000cec565b806308c379a01415620006c057506200067362000d87565b80620006805750620006c2565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a81604051620006b1919062000eab565b60405180910390a1506200072f565b505b3d8060008114620006f0576040519150601f19603f3d011682016040523d82523d6000602084013e620006f5565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620007259062000f45565b60405180910390a1505b62000736565b5b60006200077a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007719062000fb7565b60405180910390fd5b60019050919050565b6001806040517fcf479181000000000000000000000000000000000000000000000000000000008152600401620007bc92919062001026565b60405180910390fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007f990620010a3565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200084c919062000c64565b60405180910390a2816001600082825462000868919062000bb7565b925050819055506200088860018362000882919062000bb7565b62000280565b506200089362000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b8152600401620008ef919062000997565b602060405180830381600087803b1580156200090a57600080fd5b505af11580156200091f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000945919062000cad565b5060019050919050565b60015481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b610ae380620010c683390190565b6000819050919050565b62000991816200097c565b82525050565b6000602082019050620009ae600083018462000986565b92915050565b6000819050919050565b620009c981620009b4565b82525050565b6000602082019050620009e66000830184620009be565b92915050565b6000604051905090565b600080fd5b62000a06816200097c565b811462000a1257600080fd5b50565b60008135905062000a2681620009fb565b92915050565b60006020828403121562000a455762000a44620009f6565b5b600062000a558482850162000a15565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000a8b8262000a5e565b9050919050565b62000a9d8162000a7e565b811462000aa957600080fd5b50565b60008135905062000abd8162000a92565b92915050565b60006020828403121562000adc5762000adb620009f6565b5b600062000aec8482850162000aac565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000b3e600e8362000af5565b915062000b4b8262000b06565b602082019050919050565b600060408201905062000b6d600083018462000986565b818103602083015262000b808162000b2f565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000bc4826200097c565b915062000bd1836200097c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000c095762000c0862000b88565b5b828201905092915050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b600062000c4c60058362000af5565b915062000c598262000c14565b602082019050919050565b600060408201905062000c7b600083018462000986565b818103602083015262000c8e8162000c3d565b905092915050565b60008151905062000ca781620009fb565b92915050565b60006020828403121562000cc65762000cc5620009f6565b5b600062000cd68482850162000c96565b91505092915050565b60008160e01c9050919050565b600060033d111562000d0e5760046000803e62000d0b60005162000cdf565b90505b90565b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000d5c8262000d11565b810181811067ffffffffffffffff8211171562000d7e5762000d7d62000d22565b5b80604052505050565b600060443d101562000d995762000e26565b62000da3620009ec565b60043d036004823e80513d602482011167ffffffffffffffff8211171562000dcd57505062000e26565b808201805167ffffffffffffffff81111562000ded575050505062000e26565b80602083010160043d03850181111562000e0c57505050505062000e26565b62000e1d8260200185018662000d51565b82955050505050505b90565b600081519050919050565b60005b8381101562000e5457808201518184015260208101905062000e37565b8381111562000e64576000848401525b50505050565b600062000e778262000e29565b62000e83818562000af5565b935062000e9581856020860162000e34565b62000ea08162000d11565b840191505092915050565b6000602082019050818103600083015262000ec7818462000e6a565b905092915050565b7f45787465726e616c2063616c6c206661696c656420776974686f757420616e2060008201527f6572726f72206d65737361676500000000000000000000000000000000000000602082015250565b600062000f2d602d8362000af5565b915062000f3a8262000ecf565b604082019050919050565b6000602082019050818103600083015262000f608162000f1e565b9050919050565b7f494e53554646494349454e542042414c414e4345000000000000000000000000600082015250565b600062000f9f60148362000af5565b915062000fac8262000f67565b602082019050919050565b6000602082019050818103600083015262000fd28162000f90565b9050919050565b6000819050919050565b6000819050919050565b60006200100e62001008620010028462000fd9565b62000fe3565b6200097c565b9050919050565b620010208162000fed565b82525050565b60006040820190506200103d600083018562001015565b6200104c602083018462001015565b9392505050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b60006200108b60178362000af5565b9150620010988262001053565b602082019050919050565b60006020820190508181036000830152620010be816200107c565b905091905056fe60806040526000600160006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b50600160009054906101000a900460ff161562000080576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200007790620002b5565b60405180910390fd5b60018060006101000a81548160ff021916908315150217905550620000bc701d6329f1c35ca4bfabb9f5610000000000620000c360201b60201c565b5062000482565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200010d919062000342565b60405180910390a281600080828254620001289190620003a3565b925050819055506200014e600183620001429190620003a3565b6200016960201b60201c565b506200015f620001df60201b60201c565b5060019050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620001b3919062000450565b60405180910390a28160026000828254620001cf9190620003a3565b9250508190555060029050919050565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b600082825260208201905092915050565b7f436f6e747261637420696e7374616e63652068617320616c726561647920626560008201527f656e20696e697469616c697a6564000000000000000000000000000000000000602082015250565b60006200029d602e836200022e565b9150620002aa826200023f565b604082019050919050565b60006020820190508181036000830152620002d0816200028e565b9050919050565b6000819050919050565b620002ec81620002d7565b82525050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006200032a6005836200022e565b91506200033782620002f2565b602082019050919050565b6000604082019050620003596000830184620002e1565b81810360208301526200036c816200031b565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620003b082620002d7565b9150620003bd83620002d7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620003f557620003f462000374565b5b828201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000438600e836200022e565b9150620004458262000400565b602082019050919050565b6000604082019050620004676000830184620002e1565b81810360208301526200047a8162000429565b905092915050565b61065180620004926000396000f3fe608060405234801561001057600080fd5b50600436106100625760003560e01c80631c717069146100675780631c93908c1461008557806392954362146100b5578063a0712d68146100bf578063b69ef8a8146100ef578063c9353cb51461010d575b600080fd5b61006f610129565b60405161007c91906102ed565b60405180910390f35b61009f600480360381019061009a9190610343565b610178565b6040516100ac919061037f565b60405180910390f35b6100bd6101ea565b005b6100d960048036038101906100d49190610343565b610225565b6040516100e6919061037f565b60405180910390f35b6100f76102b5565b604051610104919061037f565b60405180910390f35b610127600480360381019061012291906103f8565b6102bb565b005b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516101c09190610482565b60405180910390a281600260008282546101da91906104df565b9250508190555060029050919050565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161021c90610581565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405161026d91906105ed565b60405180910390a28160008082825461028691906104df565b925050819055506102a260018361029d91906104df565b610178565b506102ab610129565b5060019050919050565b60005481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b6000819050919050565b6102e7816102d4565b82525050565b600060208201905061030260008301846102de565b92915050565b600080fd5b6000819050919050565b6103208161030d565b811461032b57600080fd5b50565b60008135905061033d81610317565b92915050565b60006020828403121561035957610358610308565b5b60006103678482850161032e565b91505092915050565b6103798161030d565b82525050565b60006020820190506103946000830184610370565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006103c58261039a565b9050919050565b6103d5816103ba565b81146103e057600080fd5b50565b6000813590506103f2816103cc565b92915050565b60006020828403121561040e5761040d610308565b5b600061041c848285016103e3565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600061046c600e83610425565b915061047782610436565b602082019050919050565b60006040820190506104976000830184610370565b81810360208301526104a88161045f565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006104ea8261030d565b91506104f58361030d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561052a576105296104b0565b5b828201905092915050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b600061056b601783610425565b915061057682610535565b602082019050919050565b6000602082019050818103600083015261059a8161055e565b9050919050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006105d7600583610425565b91506105e2826105a1565b602082019050919050565b60006040820190506106026000830184610370565b8181036020830152610613816105ca565b90509291505056fea26469706673582212208743accab6cfcd1c8ccb3f51b787d679e803a77ce24ec642bd068883132fd5fa64736f6c63430008090033a264697066735822122066241fedca9ebd69f0cd9e4879f75428f5d4bf734eb072e52934a8b3161581f064736f6c63430008090033", + "output": "0x60806040523480156200001157600080fd5b5060043610620000ac5760003560e01c80638bfe44ff116200006f5780638bfe44ff14620001975780639295436214620001a3578063a0712d6814620001af578063b69ef8a814620001e5578063c9353cb5146200020757620000ac565b806312065fe014620000b15780631c71706914620000d35780631c93908c14620000f55780633aa18088146200012b5780637f29c3941462000161575b600080fd5b620000bb62000227565b604051620000ca919062000997565b60405180910390f35b620000dd62000231565b604051620000ec9190620009cf565b60405180910390f35b6200011360048036038101906200010d919062000a2c565b62000280565b60405162000122919062000997565b60405180910390f35b62000149600480360381019062000143919062000a2c565b620002f6565b60405162000158919062000997565b60405180910390f35b6200017f600480360381019062000179919062000a2c565b620004ae565b6040516200018e919062000997565b60405180910390f35b620001a162000783565b005b620001ad620007c5565b005b620001cd6004803603810190620001c7919062000a2c565b62000802565b604051620001dc919062000997565b60405180910390f35b620001ef6200094f565b604051620001fe919062000997565b60405180910390f35b6200022560048036038101906200021f919062000ac3565b62000955565b005b6000600154905090565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620002ca919062000b56565b60405180910390a28160036000828254620002e6919062000bb7565b9250508190555060029050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405162000340919062000c64565b60405180910390a260405162000356906200096e565b604051809103906000f08015801562000373573d6000803e3d6000fd5b506000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508160016000828254620003c7919062000bb7565b92505081905550620003e7600183620003e1919062000bb7565b62000280565b50620003f262000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b81526004016200044e919062000997565b602060405180830381600087803b1580156200046957600080fd5b505af11580156200047e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004a4919062000cad565b5060019050919050565b60003073ffffffffffffffffffffffffffffffffffffffff1663929543626040518163ffffffff1660e01b815260040160006040518083038186803b158015620004f757600080fd5b505afa92505050801562000509575060015b620005f2576200051862000cec565b806308c379a014156200057d57506200053062000d87565b806200053d57506200057f565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a816040516200056e919062000eab565b60405180910390a150620005ec565b505b3d8060008114620005ad576040519150601f19603f3d011682016040523d82523d6000602084013e620005b2565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620005e29062000f45565b60405180910390a1505b620005f3565b5b3073ffffffffffffffffffffffffffffffffffffffff16638bfe44ff6040518163ffffffff1660e01b815260040160006040518083038186803b1580156200063a57600080fd5b505afa9250505080156200064c575060015b62000735576200065b62000cec565b806308c379a01415620006c057506200067362000d87565b80620006805750620006c2565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a81604051620006b1919062000eab565b60405180910390a1506200072f565b505b3d8060008114620006f0576040519150601f19603f3d011682016040523d82523d6000602084013e620006f5565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620007259062000f45565b60405180910390a1505b62000736565b5b60006200077a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007719062000fb7565b60405180910390fd5b60019050919050565b6001806040517fcf479181000000000000000000000000000000000000000000000000000000008152600401620007bc92919062001026565b60405180910390fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007f990620010a3565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200084c919062000c64565b60405180910390a2816001600082825462000868919062000bb7565b925050819055506200088860018362000882919062000bb7565b62000280565b506200089362000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b8152600401620008ef919062000997565b602060405180830381600087803b1580156200090a57600080fd5b505af11580156200091f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000945919062000cad565b5060019050919050565b60015481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b610ae380620010c683390190565b6000819050919050565b62000991816200097c565b82525050565b6000602082019050620009ae600083018462000986565b92915050565b6000819050919050565b620009c981620009b4565b82525050565b6000602082019050620009e66000830184620009be565b92915050565b6000604051905090565b600080fd5b62000a06816200097c565b811462000a1257600080fd5b50565b60008135905062000a2681620009fb565b92915050565b60006020828403121562000a455762000a44620009f6565b5b600062000a558482850162000a15565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000a8b8262000a5e565b9050919050565b62000a9d8162000a7e565b811462000aa957600080fd5b50565b60008135905062000abd8162000a92565b92915050565b60006020828403121562000adc5762000adb620009f6565b5b600062000aec8482850162000aac565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000b3e600e8362000af5565b915062000b4b8262000b06565b602082019050919050565b600060408201905062000b6d600083018462000986565b818103602083015262000b808162000b2f565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000bc4826200097c565b915062000bd1836200097c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000c095762000c0862000b88565b5b828201905092915050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b600062000c4c60058362000af5565b915062000c598262000c14565b602082019050919050565b600060408201905062000c7b600083018462000986565b818103602083015262000c8e8162000c3d565b905092915050565b60008151905062000ca781620009fb565b92915050565b60006020828403121562000cc65762000cc5620009f6565b5b600062000cd68482850162000c96565b91505092915050565b60008160e01c9050919050565b600060033d111562000d0e5760046000803e62000d0b60005162000cdf565b90505b90565b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000d5c8262000d11565b810181811067ffffffffffffffff8211171562000d7e5762000d7d62000d22565b5b80604052505050565b600060443d101562000d995762000e26565b62000da3620009ec565b60043d036004823e80513d602482011167ffffffffffffffff8211171562000dcd57505062000e26565b808201805167ffffffffffffffff81111562000ded575050505062000e26565b80602083010160043d03850181111562000e0c57505050505062000e26565b62000e1d8260200185018662000d51565b82955050505050505b90565b600081519050919050565b60005b8381101562000e5457808201518184015260208101905062000e37565b8381111562000e64576000848401525b50505050565b600062000e778262000e29565b62000e83818562000af5565b935062000e9581856020860162000e34565b62000ea08162000d11565b840191505092915050565b6000602082019050818103600083015262000ec7818462000e6a565b905092915050565b7f45787465726e616c2063616c6c206661696c656420776974686f757420616e2060008201527f6572726f72206d65737361676500000000000000000000000000000000000000602082015250565b600062000f2d602d8362000af5565b915062000f3a8262000ecf565b604082019050919050565b6000602082019050818103600083015262000f608162000f1e565b9050919050565b7f494e53554646494349454e542042414c414e4345000000000000000000000000600082015250565b600062000f9f60148362000af5565b915062000fac8262000f67565b602082019050919050565b6000602082019050818103600083015262000fd28162000f90565b9050919050565b6000819050919050565b6000819050919050565b60006200100e62001008620010028462000fd9565b62000fe3565b6200097c565b9050919050565b620010208162000fed565b82525050565b60006040820190506200103d600083018562001015565b6200104c602083018462001015565b9392505050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b60006200108b60178362000af5565b9150620010988262001053565b602082019050919050565b60006020820190508181036000830152620010be816200107c565b905091905056fe60806040526000600160006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b50600160009054906101000a900460ff161562000080576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200007790620002b5565b60405180910390fd5b60018060006101000a81548160ff021916908315150217905550620000bc701d6329f1c35ca4bfabb9f5610000000000620000c360201b60201c565b5062000482565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200010d919062000342565b60405180910390a281600080828254620001289190620003a3565b925050819055506200014e600183620001429190620003a3565b6200016960201b60201c565b506200015f620001df60201b60201c565b5060019050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620001b3919062000450565b60405180910390a28160026000828254620001cf9190620003a3565b9250508190555060029050919050565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b600082825260208201905092915050565b7f436f6e747261637420696e7374616e63652068617320616c726561647920626560008201527f656e20696e697469616c697a6564000000000000000000000000000000000000602082015250565b60006200029d602e836200022e565b9150620002aa826200023f565b604082019050919050565b60006020820190508181036000830152620002d0816200028e565b9050919050565b6000819050919050565b620002ec81620002d7565b82525050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006200032a6005836200022e565b91506200033782620002f2565b602082019050919050565b6000604082019050620003596000830184620002e1565b81810360208301526200036c816200031b565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620003b082620002d7565b9150620003bd83620002d7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620003f557620003f462000374565b5b828201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000438600e836200022e565b9150620004458262000400565b602082019050919050565b6000604082019050620004676000830184620002e1565b81810360208301526200047a8162000429565b905092915050565b61065180620004926000396000f3fe608060405234801561001057600080fd5b50600436106100625760003560e01c80631c717069146100675780631c93908c1461008557806392954362146100b5578063a0712d68146100bf578063b69ef8a8146100ef578063c9353cb51461010d575b600080fd5b61006f610129565b60405161007c91906102ed565b60405180910390f35b61009f600480360381019061009a9190610343565b610178565b6040516100ac919061037f565b60405180910390f35b6100bd6101ea565b005b6100d960048036038101906100d49190610343565b610225565b6040516100e6919061037f565b60405180910390f35b6100f76102b5565b604051610104919061037f565b60405180910390f35b610127600480360381019061012291906103f8565b6102bb565b005b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516101c09190610482565b60405180910390a281600260008282546101da91906104df565b9250508190555060029050919050565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161021c90610581565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405161026d91906105ed565b60405180910390a28160008082825461028691906104df565b925050819055506102a260018361029d91906104df565b610178565b506102ab610129565b5060019050919050565b60005481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b6000819050919050565b6102e7816102d4565b82525050565b600060208201905061030260008301846102de565b92915050565b600080fd5b6000819050919050565b6103208161030d565b811461032b57600080fd5b50565b60008135905061033d81610317565b92915050565b60006020828403121561035957610358610308565b5b60006103678482850161032e565b91505092915050565b6103798161030d565b82525050565b60006020820190506103946000830184610370565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006103c58261039a565b9050919050565b6103d5816103ba565b81146103e057600080fd5b50565b6000813590506103f2816103cc565b92915050565b60006020828403121561040e5761040d610308565b5b600061041c848285016103e3565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600061046c600e83610425565b915061047782610436565b602082019050919050565b60006040820190506104976000830184610370565b81810360208301526104a88161045f565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006104ea8261030d565b91506104f58361030d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561052a576105296104b0565b5b828201905092915050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b600061056b601783610425565b915061057682610535565b602082019050919050565b6000602082019050818103600083015261059a8161055e565b9050919050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006105d7600583610425565b91506105e2826105a1565b602082019050919050565b60006040820190506106026000830184610370565b8181036020830152610613816105ca565b90509291505056fea26469706673582212208743accab6cfcd1c8ccb3f51b787d679e803a77ce24ec642bd068883132fd5fa64736f6c63430008090033a264697066735822122066241fedca9ebd69f0cd9e4879f75428f5d4bf734eb072e52934a8b3161581f064736f6c63430008090033", + "value": "0x0", + "type": "CREATE" } \ No newline at end of file diff --git a/test/historicstate/hardhat/scripts/geth_traces/Tracer.deploy.defaultTracer.json b/test/historicstate/hardhat/scripts/geth_traces/Tracer.deploy.defaultTracer.json index f308cb88f..3f83b34c4 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/Tracer.deploy.defaultTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/Tracer.deploy.defaultTracer.json @@ -1,72 +1,72 @@ { + "gas": 1610380, "failed": false, - "gas": 1897720, - "returnValue": "60806040523480156200001157600080fd5b5060043610620000ac5760003560e01c80638bfe44ff116200006f5780638bfe44ff14620001975780639295436214620001a3578063a0712d6814620001af578063b69ef8a814620001e5578063c9353cb5146200020757620000ac565b806312065fe014620000b15780631c71706914620000d35780631c93908c14620000f55780633aa18088146200012b5780637f29c3941462000161575b600080fd5b620000bb62000227565b604051620000ca919062000975565b60405180910390f35b620000dd62000231565b604051620000ec9190620009ad565b60405180910390f35b6200011360048036038101906200010d919062000a0a565b62000280565b60405162000122919062000975565b60405180910390f35b62000149600480360381019062000143919062000a0a565b620002f6565b60405162000158919062000975565b60405180910390f35b6200017f600480360381019062000179919062000a0a565b6200049e565b6040516200018e919062000975565b60405180910390f35b620001a162000771565b005b620001ad620007b3565b005b620001cd6004803603810190620001c7919062000a0a565b620007f0565b604051620001dc919062000975565b60405180910390f35b620001ef6200092d565b604051620001fe919062000975565b60405180910390f35b6200022560048036038101906200021f919062000aa1565b62000933565b005b6000600154905090565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620002ca919062000b34565b60405180910390a28160036000828254620002e6919062000b95565b9250508190555060029050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405162000340919062000c20565b60405180910390a260405162000356906200094c565b604051809103906000f08015801562000373573d6000803e3d6000fd5b506000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508160016000828254620003c7919062000b95565b92505081905550620003e7600183620003e1919062000b95565b62000280565b50620003f262000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b81526004016200044e919062000975565b6020604051808303816000875af11580156200046e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000494919062000c69565b5060019050919050565b60003073ffffffffffffffffffffffffffffffffffffffff1663929543626040518163ffffffff1660e01b815260040160006040518083038186803b158015620004e757600080fd5b505afa925050508015620004f9575060015b620005e1576200050862000ca8565b806308c379a0036200056c57506200051f62000d43565b806200052c57506200056e565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a816040516200055d919062000e56565b60405180910390a150620005db565b505b3d80600081146200059c576040519150601f19603f3d011682016040523d82523d6000602084013e620005a1565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620005d19062000ef0565b60405180910390a1505b620005e2565b5b3073ffffffffffffffffffffffffffffffffffffffff16638bfe44ff6040518163ffffffff1660e01b815260040160006040518083038186803b1580156200062957600080fd5b505afa9250505080156200063b575060015b62000723576200064a62000ca8565b806308c379a003620006ae57506200066162000d43565b806200066e5750620006b0565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a816040516200069f919062000e56565b60405180910390a1506200071d565b505b3d8060008114620006de576040519150601f19603f3d011682016040523d82523d6000602084013e620006e3565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620007139062000ef0565b60405180910390a1505b62000724565b5b600062000768576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200075f9062000f62565b60405180910390fd5b60019050919050565b6001806040517fcf479181000000000000000000000000000000000000000000000000000000008152600401620007aa92919062000fd1565b60405180910390fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007e7906200104e565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200083a919062000c20565b60405180910390a2816001600082825462000856919062000b95565b925050819055506200087660018362000870919062000b95565b62000280565b506200088162000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b8152600401620008dd919062000975565b6020604051808303816000875af1158015620008fd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000923919062000c69565b5060019050919050565b60015481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b610a9f806200107183390190565b6000819050919050565b6200096f816200095a565b82525050565b60006020820190506200098c600083018462000964565b92915050565b6000819050919050565b620009a78162000992565b82525050565b6000602082019050620009c460008301846200099c565b92915050565b6000604051905090565b600080fd5b620009e4816200095a565b8114620009f057600080fd5b50565b60008135905062000a0481620009d9565b92915050565b60006020828403121562000a235762000a22620009d4565b5b600062000a3384828501620009f3565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000a698262000a3c565b9050919050565b62000a7b8162000a5c565b811462000a8757600080fd5b50565b60008135905062000a9b8162000a70565b92915050565b60006020828403121562000aba5762000ab9620009d4565b5b600062000aca8482850162000a8a565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000b1c600e8362000ad3565b915062000b298262000ae4565b602082019050919050565b600060408201905062000b4b600083018462000964565b818103602083015262000b5e8162000b0d565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000ba2826200095a565b915062000baf836200095a565b925082820190508082111562000bca5762000bc962000b66565b5b92915050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b600062000c0860058362000ad3565b915062000c158262000bd0565b602082019050919050565b600060408201905062000c37600083018462000964565b818103602083015262000c4a8162000bf9565b905092915050565b60008151905062000c6381620009d9565b92915050565b60006020828403121562000c825762000c81620009d4565b5b600062000c928482850162000c52565b91505092915050565b60008160e01c9050919050565b600060033d111562000cca5760046000803e62000cc760005162000c9b565b90505b90565b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000d188262000ccd565b810181811067ffffffffffffffff8211171562000d3a5762000d3962000cde565b5b80604052505050565b600060443d1062000ddb5762000d58620009ca565b60043d036004823e80513d602482011167ffffffffffffffff8211171562000d8257505062000ddb565b808201805167ffffffffffffffff81111562000da2575050505062000ddb565b80602083010160043d03850181111562000dc157505050505062000ddb565b62000dd28260200185018662000d0d565b82955050505050505b90565b600081519050919050565b60005b8381101562000e0957808201518184015260208101905062000dec565b60008484015250505050565b600062000e228262000dde565b62000e2e818562000ad3565b935062000e4081856020860162000de9565b62000e4b8162000ccd565b840191505092915050565b6000602082019050818103600083015262000e72818462000e15565b905092915050565b7f45787465726e616c2063616c6c206661696c656420776974686f757420616e2060008201527f6572726f72206d65737361676500000000000000000000000000000000000000602082015250565b600062000ed8602d8362000ad3565b915062000ee58262000e7a565b604082019050919050565b6000602082019050818103600083015262000f0b8162000ec9565b9050919050565b7f494e53554646494349454e542042414c414e4345000000000000000000000000600082015250565b600062000f4a60148362000ad3565b915062000f578262000f12565b602082019050919050565b6000602082019050818103600083015262000f7d8162000f3b565b9050919050565b6000819050919050565b6000819050919050565b600062000fb962000fb362000fad8462000f84565b62000f8e565b6200095a565b9050919050565b62000fcb8162000f98565b82525050565b600060408201905062000fe8600083018562000fc0565b62000ff7602083018462000fc0565b9392505050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b60006200103660178362000ad3565b9150620010438262000ffe565b602082019050919050565b60006020820190508181036000830152620010698162001027565b905091905056fe60806040526000600160006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b50600160009054906101000a900460ff161562000080576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200007790620002b5565b60405180910390fd5b60018060006101000a81548160ff021916908315150217905550620000bc701d6329f1c35ca4bfabb9f5610000000000620000c360201b60201c565b5062000460565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200010d919062000342565b60405180910390a281600080828254620001289190620003a3565b925050819055506200014e600183620001429190620003a3565b6200016960201b60201c565b506200015f620001df60201b60201c565b5060019050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620001b391906200042e565b60405180910390a28160026000828254620001cf9190620003a3565b9250508190555060029050919050565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b600082825260208201905092915050565b7f436f6e747261637420696e7374616e63652068617320616c726561647920626560008201527f656e20696e697469616c697a6564000000000000000000000000000000000000602082015250565b60006200029d602e836200022e565b9150620002aa826200023f565b604082019050919050565b60006020820190508181036000830152620002d0816200028e565b9050919050565b6000819050919050565b620002ec81620002d7565b82525050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006200032a6005836200022e565b91506200033782620002f2565b602082019050919050565b6000604082019050620003596000830184620002e1565b81810360208301526200036c816200031b565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620003b082620002d7565b9150620003bd83620002d7565b9250828201905080821115620003d857620003d762000374565b5b92915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000416600e836200022e565b91506200042382620003de565b602082019050919050565b6000604082019050620004456000830184620002e1565b8181036020830152620004588162000407565b905092915050565b61062f80620004706000396000f3fe608060405234801561001057600080fd5b50600436106100625760003560e01c80631c717069146100675780631c93908c1461008557806392954362146100b5578063a0712d68146100bf578063b69ef8a8146100ef578063c9353cb51461010d575b600080fd5b61006f610129565b60405161007c91906102ed565b60405180910390f35b61009f600480360381019061009a9190610343565b610178565b6040516100ac919061037f565b60405180910390f35b6100bd6101ea565b005b6100d960048036038101906100d49190610343565b610225565b6040516100e6919061037f565b60405180910390f35b6100f76102b5565b604051610104919061037f565b60405180910390f35b610127600480360381019061012291906103f8565b6102bb565b005b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516101c09190610482565b60405180910390a281600260008282546101da91906104df565b9250508190555060029050919050565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161021c9061055f565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405161026d91906105cb565b60405180910390a28160008082825461028691906104df565b925050819055506102a260018361029d91906104df565b610178565b506102ab610129565b5060019050919050565b60005481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b6000819050919050565b6102e7816102d4565b82525050565b600060208201905061030260008301846102de565b92915050565b600080fd5b6000819050919050565b6103208161030d565b811461032b57600080fd5b50565b60008135905061033d81610317565b92915050565b60006020828403121561035957610358610308565b5b60006103678482850161032e565b91505092915050565b6103798161030d565b82525050565b60006020820190506103946000830184610370565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006103c58261039a565b9050919050565b6103d5816103ba565b81146103e057600080fd5b50565b6000813590506103f2816103cc565b92915050565b60006020828403121561040e5761040d610308565b5b600061041c848285016103e3565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600061046c600e83610425565b915061047782610436565b602082019050919050565b60006040820190506104976000830184610370565b81810360208301526104a88161045f565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006104ea8261030d565b91506104f58361030d565b925082820190508082111561050d5761050c6104b0565b5b92915050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b6000610549601783610425565b915061055482610513565b602082019050919050565b600060208201905081810360008301526105788161053c565b9050919050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006105b5600583610425565b91506105c08261057f565b602082019050919050565b60006040820190506105e06000830184610370565b81810360208301526105f1816105a8565b90509291505056fea26469706673582212202a0a0fa5842e91cc0c1e5b645f7286aad7193a83c3b2f8c8e4c1b35008af0d6f64736f6c63430008140033a264697066735822122036f326b9881542090544d5d6e9f2ff18b13ec09bd4994f14891a84e97f4d6db964736f6c63430008140033", + "returnValue": "60806040523480156200001157600080fd5b5060043610620000ac5760003560e01c80638bfe44ff116200006f5780638bfe44ff14620001975780639295436214620001a3578063a0712d6814620001af578063b69ef8a814620001e5578063c9353cb5146200020757620000ac565b806312065fe014620000b15780631c71706914620000d35780631c93908c14620000f55780633aa18088146200012b5780637f29c3941462000161575b600080fd5b620000bb62000227565b604051620000ca919062000997565b60405180910390f35b620000dd62000231565b604051620000ec9190620009cf565b60405180910390f35b6200011360048036038101906200010d919062000a2c565b62000280565b60405162000122919062000997565b60405180910390f35b62000149600480360381019062000143919062000a2c565b620002f6565b60405162000158919062000997565b60405180910390f35b6200017f600480360381019062000179919062000a2c565b620004ae565b6040516200018e919062000997565b60405180910390f35b620001a162000783565b005b620001ad620007c5565b005b620001cd6004803603810190620001c7919062000a2c565b62000802565b604051620001dc919062000997565b60405180910390f35b620001ef6200094f565b604051620001fe919062000997565b60405180910390f35b6200022560048036038101906200021f919062000ac3565b62000955565b005b6000600154905090565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620002ca919062000b56565b60405180910390a28160036000828254620002e6919062000bb7565b9250508190555060029050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405162000340919062000c64565b60405180910390a260405162000356906200096e565b604051809103906000f08015801562000373573d6000803e3d6000fd5b506000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508160016000828254620003c7919062000bb7565b92505081905550620003e7600183620003e1919062000bb7565b62000280565b50620003f262000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b81526004016200044e919062000997565b602060405180830381600087803b1580156200046957600080fd5b505af11580156200047e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004a4919062000cad565b5060019050919050565b60003073ffffffffffffffffffffffffffffffffffffffff1663929543626040518163ffffffff1660e01b815260040160006040518083038186803b158015620004f757600080fd5b505afa92505050801562000509575060015b620005f2576200051862000cec565b806308c379a014156200057d57506200053062000d87565b806200053d57506200057f565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a816040516200056e919062000eab565b60405180910390a150620005ec565b505b3d8060008114620005ad576040519150601f19603f3d011682016040523d82523d6000602084013e620005b2565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620005e29062000f45565b60405180910390a1505b620005f3565b5b3073ffffffffffffffffffffffffffffffffffffffff16638bfe44ff6040518163ffffffff1660e01b815260040160006040518083038186803b1580156200063a57600080fd5b505afa9250505080156200064c575060015b62000735576200065b62000cec565b806308c379a01415620006c057506200067362000d87565b80620006805750620006c2565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a81604051620006b1919062000eab565b60405180910390a1506200072f565b505b3d8060008114620006f0576040519150601f19603f3d011682016040523d82523d6000602084013e620006f5565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620007259062000f45565b60405180910390a1505b62000736565b5b60006200077a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007719062000fb7565b60405180910390fd5b60019050919050565b6001806040517fcf479181000000000000000000000000000000000000000000000000000000008152600401620007bc92919062001026565b60405180910390fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007f990620010a3565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200084c919062000c64565b60405180910390a2816001600082825462000868919062000bb7565b925050819055506200088860018362000882919062000bb7565b62000280565b506200089362000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b8152600401620008ef919062000997565b602060405180830381600087803b1580156200090a57600080fd5b505af11580156200091f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000945919062000cad565b5060019050919050565b60015481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b610ae380620010c683390190565b6000819050919050565b62000991816200097c565b82525050565b6000602082019050620009ae600083018462000986565b92915050565b6000819050919050565b620009c981620009b4565b82525050565b6000602082019050620009e66000830184620009be565b92915050565b6000604051905090565b600080fd5b62000a06816200097c565b811462000a1257600080fd5b50565b60008135905062000a2681620009fb565b92915050565b60006020828403121562000a455762000a44620009f6565b5b600062000a558482850162000a15565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000a8b8262000a5e565b9050919050565b62000a9d8162000a7e565b811462000aa957600080fd5b50565b60008135905062000abd8162000a92565b92915050565b60006020828403121562000adc5762000adb620009f6565b5b600062000aec8482850162000aac565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000b3e600e8362000af5565b915062000b4b8262000b06565b602082019050919050565b600060408201905062000b6d600083018462000986565b818103602083015262000b808162000b2f565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000bc4826200097c565b915062000bd1836200097c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000c095762000c0862000b88565b5b828201905092915050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b600062000c4c60058362000af5565b915062000c598262000c14565b602082019050919050565b600060408201905062000c7b600083018462000986565b818103602083015262000c8e8162000c3d565b905092915050565b60008151905062000ca781620009fb565b92915050565b60006020828403121562000cc65762000cc5620009f6565b5b600062000cd68482850162000c96565b91505092915050565b60008160e01c9050919050565b600060033d111562000d0e5760046000803e62000d0b60005162000cdf565b90505b90565b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000d5c8262000d11565b810181811067ffffffffffffffff8211171562000d7e5762000d7d62000d22565b5b80604052505050565b600060443d101562000d995762000e26565b62000da3620009ec565b60043d036004823e80513d602482011167ffffffffffffffff8211171562000dcd57505062000e26565b808201805167ffffffffffffffff81111562000ded575050505062000e26565b80602083010160043d03850181111562000e0c57505050505062000e26565b62000e1d8260200185018662000d51565b82955050505050505b90565b600081519050919050565b60005b8381101562000e5457808201518184015260208101905062000e37565b8381111562000e64576000848401525b50505050565b600062000e778262000e29565b62000e83818562000af5565b935062000e9581856020860162000e34565b62000ea08162000d11565b840191505092915050565b6000602082019050818103600083015262000ec7818462000e6a565b905092915050565b7f45787465726e616c2063616c6c206661696c656420776974686f757420616e2060008201527f6572726f72206d65737361676500000000000000000000000000000000000000602082015250565b600062000f2d602d8362000af5565b915062000f3a8262000ecf565b604082019050919050565b6000602082019050818103600083015262000f608162000f1e565b9050919050565b7f494e53554646494349454e542042414c414e4345000000000000000000000000600082015250565b600062000f9f60148362000af5565b915062000fac8262000f67565b602082019050919050565b6000602082019050818103600083015262000fd28162000f90565b9050919050565b6000819050919050565b6000819050919050565b60006200100e62001008620010028462000fd9565b62000fe3565b6200097c565b9050919050565b620010208162000fed565b82525050565b60006040820190506200103d600083018562001015565b6200104c602083018462001015565b9392505050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b60006200108b60178362000af5565b9150620010988262001053565b602082019050919050565b60006020820190508181036000830152620010be816200107c565b905091905056fe60806040526000600160006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b50600160009054906101000a900460ff161562000080576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200007790620002b5565b60405180910390fd5b60018060006101000a81548160ff021916908315150217905550620000bc701d6329f1c35ca4bfabb9f5610000000000620000c360201b60201c565b5062000482565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200010d919062000342565b60405180910390a281600080828254620001289190620003a3565b925050819055506200014e600183620001429190620003a3565b6200016960201b60201c565b506200015f620001df60201b60201c565b5060019050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620001b3919062000450565b60405180910390a28160026000828254620001cf9190620003a3565b9250508190555060029050919050565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b600082825260208201905092915050565b7f436f6e747261637420696e7374616e63652068617320616c726561647920626560008201527f656e20696e697469616c697a6564000000000000000000000000000000000000602082015250565b60006200029d602e836200022e565b9150620002aa826200023f565b604082019050919050565b60006020820190508181036000830152620002d0816200028e565b9050919050565b6000819050919050565b620002ec81620002d7565b82525050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006200032a6005836200022e565b91506200033782620002f2565b602082019050919050565b6000604082019050620003596000830184620002e1565b81810360208301526200036c816200031b565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620003b082620002d7565b9150620003bd83620002d7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620003f557620003f462000374565b5b828201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000438600e836200022e565b9150620004458262000400565b602082019050919050565b6000604082019050620004676000830184620002e1565b81810360208301526200047a8162000429565b905092915050565b61065180620004926000396000f3fe608060405234801561001057600080fd5b50600436106100625760003560e01c80631c717069146100675780631c93908c1461008557806392954362146100b5578063a0712d68146100bf578063b69ef8a8146100ef578063c9353cb51461010d575b600080fd5b61006f610129565b60405161007c91906102ed565b60405180910390f35b61009f600480360381019061009a9190610343565b610178565b6040516100ac919061037f565b60405180910390f35b6100bd6101ea565b005b6100d960048036038101906100d49190610343565b610225565b6040516100e6919061037f565b60405180910390f35b6100f76102b5565b604051610104919061037f565b60405180910390f35b610127600480360381019061012291906103f8565b6102bb565b005b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516101c09190610482565b60405180910390a281600260008282546101da91906104df565b9250508190555060029050919050565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161021c90610581565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405161026d91906105ed565b60405180910390a28160008082825461028691906104df565b925050819055506102a260018361029d91906104df565b610178565b506102ab610129565b5060019050919050565b60005481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b6000819050919050565b6102e7816102d4565b82525050565b600060208201905061030260008301846102de565b92915050565b600080fd5b6000819050919050565b6103208161030d565b811461032b57600080fd5b50565b60008135905061033d81610317565b92915050565b60006020828403121561035957610358610308565b5b60006103678482850161032e565b91505092915050565b6103798161030d565b82525050565b60006020820190506103946000830184610370565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006103c58261039a565b9050919050565b6103d5816103ba565b81146103e057600080fd5b50565b6000813590506103f2816103cc565b92915050565b60006020828403121561040e5761040d610308565b5b600061041c848285016103e3565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600061046c600e83610425565b915061047782610436565b602082019050919050565b60006040820190506104976000830184610370565b81810360208301526104a88161045f565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006104ea8261030d565b91506104f58361030d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561052a576105296104b0565b5b828201905092915050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b600061056b601783610425565b915061057682610535565b602082019050919050565b6000602082019050818103600083015261059a8161055e565b9050919050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006105d7600583610425565b91506105e2826105a1565b602082019050919050565b60006040820190506106026000830184610370565b8181036020830152610613816105ca565b90509291505056fea26469706673582212208743accab6cfcd1c8ccb3f51b787d679e803a77ce24ec642bd068883132fd5fa64736f6c63430008090033a264697066735822122066241fedca9ebd69f0cd9e4879f75428f5d4bf734eb072e52934a8b3161581f064736f6c63430008090033", "structLogs": [ { - "depth": 1, - "gas": 1620940, - "gasCost": 3, - "op": "PUSH1", "pc": 0, + "op": "PUSH1", + "gas": 1940508, + "gasCost": 3, + "depth": 1, "stack": [] }, { - "depth": 1, - "gas": 1620937, - "gasCost": 3, - "op": "PUSH1", "pc": 2, + "op": "PUSH1", + "gas": 1940505, + "gasCost": 3, + "depth": 1, "stack": [ "0x80" ] }, { - "depth": 1, - "gas": 1620934, - "gasCost": 12, - "op": "MSTORE", "pc": 4, + "op": "MSTORE", + "gas": 1940502, + "gasCost": 12, + "depth": 1, "stack": [ "0x80", "0x40" ] }, { - "depth": 1, - "gas": 1620922, - "gasCost": 3, - "op": "PUSH1", "pc": 5, + "op": "PUSH1", + "gas": 1940490, + "gasCost": 3, + "depth": 1, "stack": [] }, { - "depth": 1, - "gas": 1620919, - "gasCost": 3, - "op": "PUSH1", "pc": 7, + "op": "PUSH1", + "gas": 1940487, + "gasCost": 3, + "depth": 1, "stack": [ "0x0" ] }, { - "depth": 1, - "gas": 1620916, - "gasCost": 3, - "op": "PUSH1", "pc": 9, + "op": "PUSH1", + "gas": 1940484, + "gasCost": 3, + "depth": 1, "stack": [ "0x0", "0x2" ] }, { - "depth": 1, - "gas": 1620913, - "gasCost": 3, - "op": "PUSH2", "pc": 11, + "op": "PUSH2", + "gas": 1940481, + "gasCost": 3, + "depth": 1, "stack": [ "0x0", "0x2", @@ -74,11 +74,11 @@ ] }, { - "depth": 1, - "gas": 1620910, - "gasCost": 10, - "op": "EXP", "pc": 14, + "op": "EXP", + "gas": 1940478, + "gasCost": 10, + "depth": 1, "stack": [ "0x0", "0x2", @@ -87,11 +87,11 @@ ] }, { - "depth": 1, - "gas": 1620900, - "gasCost": 3, - "op": "DUP2", "pc": 15, + "op": "DUP2", + "gas": 1940468, + "gasCost": 3, + "depth": 1, "stack": [ "0x0", "0x2", @@ -99,11 +99,11 @@ ] }, { - "depth": 1, - "gas": 1620897, - "gasCost": 200, - "op": "SLOAD", "pc": 16, + "op": "SLOAD", + "gas": 1940465, + "gasCost": 2100, + "depth": 1, "stack": [ "0x0", "0x2", @@ -115,11 +115,11 @@ } }, { - "depth": 1, - "gas": 1620697, - "gasCost": 3, - "op": "DUP2", "pc": 17, + "op": "DUP2", + "gas": 1938365, + "gasCost": 3, + "depth": 1, "stack": [ "0x0", "0x2", @@ -128,11 +128,11 @@ ] }, { - "depth": 1, - "gas": 1620694, - "gasCost": 3, - "op": "PUSH1", "pc": 18, + "op": "PUSH1", + "gas": 1938362, + "gasCost": 3, + "depth": 1, "stack": [ "0x0", "0x2", @@ -142,11 +142,11 @@ ] }, { - "depth": 1, - "gas": 1620691, - "gasCost": 5, - "op": "MUL", "pc": 20, + "op": "MUL", + "gas": 1938359, + "gasCost": 5, + "depth": 1, "stack": [ "0x0", "0x2", @@ -157,11 +157,11 @@ ] }, { - "depth": 1, - "gas": 1620686, - "gasCost": 3, - "op": "NOT", "pc": 21, + "op": "NOT", + "gas": 1938354, + "gasCost": 3, + "depth": 1, "stack": [ "0x0", "0x2", @@ -171,11 +171,11 @@ ] }, { - "depth": 1, - "gas": 1620683, - "gasCost": 3, - "op": "AND", "pc": 22, + "op": "AND", + "gas": 1938351, + "gasCost": 3, + "depth": 1, "stack": [ "0x0", "0x2", @@ -185,11 +185,11 @@ ] }, { - "depth": 1, - "gas": 1620680, - "gasCost": 3, - "op": "SWAP1", "pc": 23, + "op": "SWAP1", + "gas": 1938348, + "gasCost": 3, + "depth": 1, "stack": [ "0x0", "0x2", @@ -198,11 +198,11 @@ ] }, { - "depth": 1, - "gas": 1620677, - "gasCost": 3, - "op": "DUP4", "pc": 24, + "op": "DUP4", + "gas": 1938345, + "gasCost": 3, + "depth": 1, "stack": [ "0x0", "0x2", @@ -211,11 +211,11 @@ ] }, { - "depth": 1, - "gas": 1620674, - "gasCost": 3, - "op": "ISZERO", "pc": 25, + "op": "ISZERO", + "gas": 1938342, + "gasCost": 3, + "depth": 1, "stack": [ "0x0", "0x2", @@ -225,11 +225,11 @@ ] }, { - "depth": 1, - "gas": 1620671, - "gasCost": 3, - "op": "ISZERO", "pc": 26, + "op": "ISZERO", + "gas": 1938339, + "gasCost": 3, + "depth": 1, "stack": [ "0x0", "0x2", @@ -239,11 +239,11 @@ ] }, { - "depth": 1, - "gas": 1620668, - "gasCost": 5, - "op": "MUL", "pc": 27, + "op": "MUL", + "gas": 1938336, + "gasCost": 5, + "depth": 1, "stack": [ "0x0", "0x2", @@ -253,11 +253,11 @@ ] }, { - "depth": 1, - "gas": 1620663, - "gasCost": 3, - "op": "OR", "pc": 28, + "op": "OR", + "gas": 1938331, + "gasCost": 3, + "depth": 1, "stack": [ "0x0", "0x2", @@ -266,11 +266,11 @@ ] }, { - "depth": 1, - "gas": 1620660, - "gasCost": 3, - "op": "SWAP1", "pc": 29, + "op": "SWAP1", + "gas": 1938328, + "gasCost": 3, + "depth": 1, "stack": [ "0x0", "0x2", @@ -278,11 +278,11 @@ ] }, { - "depth": 1, - "gas": 1620657, - "gasCost": 200, - "op": "SSTORE", "pc": 30, + "op": "SSTORE", + "gas": 1938325, + "gasCost": 100, + "depth": 1, "stack": [ "0x0", "0x0", @@ -293,61 +293,61 @@ } }, { - "depth": 1, - "gas": 1620457, - "gasCost": 2, - "op": "POP", "pc": 31, + "op": "POP", + "gas": 1938225, + "gasCost": 2, + "depth": 1, "stack": [ "0x0" ] }, { - "depth": 1, - "gas": 1620455, - "gasCost": 2, - "op": "CALLVALUE", "pc": 32, + "op": "CALLVALUE", + "gas": 1938223, + "gasCost": 2, + "depth": 1, "stack": [] }, { - "depth": 1, - "gas": 1620453, - "gasCost": 3, - "op": "DUP1", "pc": 33, + "op": "DUP1", + "gas": 1938221, + "gasCost": 3, + "depth": 1, "stack": [ "0x0" ] }, { - "depth": 1, - "gas": 1620450, - "gasCost": 3, - "op": "ISZERO", "pc": 34, + "op": "ISZERO", + "gas": 1938218, + "gasCost": 3, + "depth": 1, "stack": [ "0x0", "0x0" ] }, { - "depth": 1, - "gas": 1620447, - "gasCost": 3, - "op": "PUSH2", "pc": 35, + "op": "PUSH2", + "gas": 1938215, + "gasCost": 3, + "depth": 1, "stack": [ "0x0", "0x1" ] }, { - "depth": 1, - "gas": 1620444, - "gasCost": 10, - "op": "JUMPI", "pc": 38, + "op": "JUMPI", + "gas": 1938212, + "gasCost": 10, + "depth": 1, "stack": [ "0x0", "0x1", @@ -355,60 +355,60 @@ ] }, { - "depth": 1, - "gas": 1620434, - "gasCost": 1, - "op": "JUMPDEST", "pc": 43, + "op": "JUMPDEST", + "gas": 1938202, + "gasCost": 1, + "depth": 1, "stack": [ "0x0" ] }, { - "depth": 1, - "gas": 1620433, - "gasCost": 2, - "op": "POP", "pc": 44, + "op": "POP", + "gas": 1938201, + "gasCost": 2, + "depth": 1, "stack": [ "0x0" ] }, { - "depth": 1, - "gas": 1620431, - "gasCost": 3, - "op": "PUSH1", "pc": 45, + "op": "PUSH1", + "gas": 1938199, + "gasCost": 3, + "depth": 1, "stack": [] }, { - "depth": 1, - "gas": 1620428, - "gasCost": 3, - "op": "PUSH1", "pc": 47, + "op": "PUSH1", + "gas": 1938196, + "gasCost": 3, + "depth": 1, "stack": [ "0x2" ] }, { - "depth": 1, - "gas": 1620425, - "gasCost": 3, - "op": "SWAP1", "pc": 49, + "op": "SWAP1", + "gas": 1938193, + "gasCost": 3, + "depth": 1, "stack": [ "0x2", "0x0" ] }, { - "depth": 1, - "gas": 1620422, - "gasCost": 200, - "op": "SLOAD", "pc": 50, + "op": "SLOAD", + "gas": 1938190, + "gasCost": 100, + "depth": 1, "stack": [ "0x0", "0x2" @@ -418,33 +418,33 @@ } }, { - "depth": 1, - "gas": 1620222, - "gasCost": 3, - "op": "SWAP1", "pc": 51, + "op": "SWAP1", + "gas": 1938090, + "gasCost": 3, + "depth": 1, "stack": [ "0x0", "0x0" ] }, { - "depth": 1, - "gas": 1620219, - "gasCost": 3, - "op": "PUSH2", "pc": 52, + "op": "PUSH2", + "gas": 1938087, + "gasCost": 3, + "depth": 1, "stack": [ "0x0", "0x0" ] }, { - "depth": 1, - "gas": 1620216, - "gasCost": 10, - "op": "EXP", "pc": 55, + "op": "EXP", + "gas": 1938084, + "gasCost": 10, + "depth": 1, "stack": [ "0x0", "0x0", @@ -452,122 +452,122 @@ ] }, { - "depth": 1, - "gas": 1620206, - "gasCost": 3, - "op": "SWAP1", "pc": 56, + "op": "SWAP1", + "gas": 1938074, + "gasCost": 3, + "depth": 1, "stack": [ "0x0", "0x1" ] }, { - "depth": 1, - "gas": 1620203, - "gasCost": 5, - "op": "DIV", "pc": 57, + "op": "DIV", + "gas": 1938071, + "gasCost": 5, + "depth": 1, "stack": [ "0x1", "0x0" ] }, { - "depth": 1, - "gas": 1620198, - "gasCost": 3, - "op": "PUSH1", "pc": 58, + "op": "PUSH1", + "gas": 1938066, + "gasCost": 3, + "depth": 1, "stack": [ "0x0" ] }, { - "depth": 1, - "gas": 1620195, - "gasCost": 3, - "op": "AND", "pc": 60, + "op": "AND", + "gas": 1938063, + "gasCost": 3, + "depth": 1, "stack": [ "0x0", "0xff" ] }, { - "depth": 1, - "gas": 1620192, - "gasCost": 3, - "op": "ISZERO", "pc": 61, + "op": "ISZERO", + "gas": 1938060, + "gasCost": 3, + "depth": 1, "stack": [ "0x0" ] }, { - "depth": 1, - "gas": 1620189, - "gasCost": 3, - "op": "PUSH2", "pc": 62, + "op": "PUSH2", + "gas": 1938057, + "gasCost": 3, + "depth": 1, "stack": [ "0x1" ] }, { - "depth": 1, - "gas": 1620186, - "gasCost": 10, - "op": "JUMPI", "pc": 65, + "op": "JUMPI", + "gas": 1938054, + "gasCost": 10, + "depth": 1, "stack": [ "0x1", "0x7c" ] }, { - "depth": 1, - "gas": 1620176, - "gasCost": 1, - "op": "JUMPDEST", "pc": 124, + "op": "JUMPDEST", + "gas": 1938044, + "gasCost": 1, + "depth": 1, "stack": [] }, { - "depth": 1, - "gas": 1620175, - "gasCost": 3, - "op": "PUSH1", "pc": 125, + "op": "PUSH1", + "gas": 1938043, + "gasCost": 3, + "depth": 1, "stack": [] }, { - "depth": 1, - "gas": 1620172, - "gasCost": 3, - "op": "PUSH1", "pc": 127, + "op": "PUSH1", + "gas": 1938040, + "gasCost": 3, + "depth": 1, "stack": [ "0x1" ] }, { - "depth": 1, - "gas": 1620169, - "gasCost": 3, - "op": "PUSH1", "pc": 129, + "op": "PUSH1", + "gas": 1938037, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0x2" ] }, { - "depth": 1, - "gas": 1620166, - "gasCost": 3, - "op": "PUSH2", "pc": 131, + "op": "PUSH2", + "gas": 1938034, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0x2", @@ -575,11 +575,11 @@ ] }, { - "depth": 1, - "gas": 1620163, - "gasCost": 10, - "op": "EXP", "pc": 134, + "op": "EXP", + "gas": 1938031, + "gasCost": 10, + "depth": 1, "stack": [ "0x1", "0x2", @@ -588,11 +588,11 @@ ] }, { - "depth": 1, - "gas": 1620153, - "gasCost": 3, - "op": "DUP2", "pc": 135, + "op": "DUP2", + "gas": 1938021, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0x2", @@ -600,11 +600,11 @@ ] }, { - "depth": 1, - "gas": 1620150, - "gasCost": 200, - "op": "SLOAD", "pc": 136, + "op": "SLOAD", + "gas": 1938018, + "gasCost": 100, + "depth": 1, "stack": [ "0x1", "0x2", @@ -616,11 +616,11 @@ } }, { - "depth": 1, - "gas": 1619950, - "gasCost": 3, - "op": "DUP2", "pc": 137, + "op": "DUP2", + "gas": 1937918, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0x2", @@ -629,11 +629,11 @@ ] }, { - "depth": 1, - "gas": 1619947, - "gasCost": 3, - "op": "PUSH1", "pc": 138, + "op": "PUSH1", + "gas": 1937915, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0x2", @@ -643,11 +643,11 @@ ] }, { - "depth": 1, - "gas": 1619944, - "gasCost": 5, - "op": "MUL", "pc": 140, + "op": "MUL", + "gas": 1937912, + "gasCost": 5, + "depth": 1, "stack": [ "0x1", "0x2", @@ -658,11 +658,11 @@ ] }, { - "depth": 1, - "gas": 1619939, - "gasCost": 3, - "op": "NOT", "pc": 141, + "op": "NOT", + "gas": 1937907, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0x2", @@ -672,11 +672,11 @@ ] }, { - "depth": 1, - "gas": 1619936, - "gasCost": 3, - "op": "AND", "pc": 142, + "op": "AND", + "gas": 1937904, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0x2", @@ -686,11 +686,11 @@ ] }, { - "depth": 1, - "gas": 1619933, - "gasCost": 3, - "op": "SWAP1", "pc": 143, + "op": "SWAP1", + "gas": 1937901, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0x2", @@ -699,11 +699,11 @@ ] }, { - "depth": 1, - "gas": 1619930, - "gasCost": 3, - "op": "DUP4", "pc": 144, + "op": "DUP4", + "gas": 1937898, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0x2", @@ -712,11 +712,11 @@ ] }, { - "depth": 1, - "gas": 1619927, - "gasCost": 3, - "op": "ISZERO", "pc": 145, + "op": "ISZERO", + "gas": 1937895, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0x2", @@ -726,11 +726,11 @@ ] }, { - "depth": 1, - "gas": 1619924, - "gasCost": 3, - "op": "ISZERO", "pc": 146, + "op": "ISZERO", + "gas": 1937892, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0x2", @@ -740,11 +740,11 @@ ] }, { - "depth": 1, - "gas": 1619921, - "gasCost": 5, - "op": "MUL", "pc": 147, + "op": "MUL", + "gas": 1937889, + "gasCost": 5, + "depth": 1, "stack": [ "0x1", "0x2", @@ -754,11 +754,11 @@ ] }, { - "depth": 1, - "gas": 1619916, - "gasCost": 3, - "op": "OR", "pc": 148, + "op": "OR", + "gas": 1937884, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0x2", @@ -767,11 +767,11 @@ ] }, { - "depth": 1, - "gas": 1619913, - "gasCost": 3, - "op": "SWAP1", "pc": 149, + "op": "SWAP1", + "gas": 1937881, + "gasCost": 3, + "depth": 1, "stack": [ "0x1", "0x2", @@ -779,11 +779,11 @@ ] }, { - "depth": 1, - "gas": 1619910, - "gasCost": 20000, - "op": "SSTORE", "pc": 150, + "op": "SSTORE", + "gas": 1937878, + "gasCost": 20000, + "depth": 1, "stack": [ "0x1", "0x1", @@ -794,113 +794,113 @@ } }, { - "depth": 1, - "gas": 1599910, - "gasCost": 2, - "op": "POP", "pc": 151, + "op": "POP", + "gas": 1917878, + "gasCost": 2, + "depth": 1, "stack": [ "0x1" ] }, { - "depth": 1, - "gas": 1599908, - "gasCost": 3, - "op": "PUSH2", "pc": 152, + "op": "PUSH2", + "gas": 1917876, + "gasCost": 3, + "depth": 1, "stack": [] }, { - "depth": 1, - "gas": 1599905, - "gasCost": 8, - "op": "JUMP", "pc": 155, + "op": "JUMP", + "gas": 1917873, + "gasCost": 8, + "depth": 1, "stack": [ "0x13f" ] }, { - "depth": 1, - "gas": 1599897, - "gasCost": 1, - "op": "JUMPDEST", "pc": 319, + "op": "JUMPDEST", + "gas": 1917865, + "gasCost": 1, + "depth": 1, "stack": [] }, { - "depth": 1, - "gas": 1599896, - "gasCost": 3, - "op": "PUSH2", "pc": 320, + "op": "PUSH2", + "gas": 1917864, + "gasCost": 3, + "depth": 1, "stack": [] }, { - "depth": 1, - "gas": 1599893, - "gasCost": 3, - "op": "DUP1", "pc": 323, + "op": "DUP1", + "gas": 1917861, + "gasCost": 3, + "depth": 1, "stack": [ - "0x1b45" + "0x1bde" ] }, { - "depth": 1, - "gas": 1599890, - "gasCost": 3, - "op": "PUSH2", "pc": 324, + "op": "PUSH2", + "gas": 1917858, + "gasCost": 3, + "depth": 1, "stack": [ - "0x1b45", - "0x1b45" + "0x1bde", + "0x1bde" ] }, { - "depth": 1, - "gas": 1599887, - "gasCost": 3, - "op": "PUSH1", "pc": 327, + "op": "PUSH1", + "gas": 1917855, + "gasCost": 3, + "depth": 1, "stack": [ - "0x1b45", - "0x1b45", + "0x1bde", + "0x1bde", "0x14e" ] }, { - "depth": 1, - "gas": 1599884, - "gasCost": 1401, - "op": "CODECOPY", "pc": 329, + "op": "CODECOPY", + "gas": 1917852, + "gasCost": 1429, + "depth": 1, "stack": [ - "0x1b45", - "0x1b45", + "0x1bde", + "0x1bde", "0x14e", "0x0" ] }, { - "depth": 1, - "gas": 1598483, - "gasCost": 3, - "op": "PUSH1", "pc": 330, + "op": "PUSH1", + "gas": 1916423, + "gasCost": 3, + "depth": 1, "stack": [ - "0x1b45" + "0x1bde" ] }, { - "depth": 1, - "gas": 1598480, - "gasCost": 0, - "op": "RETURN", "pc": 332, + "op": "RETURN", + "gas": 1916420, + "gasCost": 0, + "depth": 1, "stack": [ - "0x1b45", + "0x1bde", "0x0" ] } diff --git a/test/historicstate/hardhat/scripts/geth_traces/Tracer.deploy.prestateDiffTracer.json b/test/historicstate/hardhat/scripts/geth_traces/Tracer.deploy.prestateDiffTracer.json index 097ef1abc..fc07703fa 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/Tracer.deploy.prestateDiffTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/Tracer.deploy.prestateDiffTracer.json @@ -1,14 +1,14 @@ { "post": { "0x0000000000000000000000000000000000000000": { - "balance": "0x2c2f4aeb00" + "balance": "0x1b4d4a6" }, "OWNER.address": { - "balance": "0xc9f2c9ccfdb990889ee331500", - "nonce": 358 + "balance": "0x3611ac5ad359e668e5", + "nonce": 79 }, "Tracer.address": { - "code": "0x60806040523480156200001157600080fd5b5060043610620000ac5760003560e01c80638bfe44ff116200006f5780638bfe44ff14620001975780639295436214620001a3578063a0712d6814620001af578063b69ef8a814620001e5578063c9353cb5146200020757620000ac565b806312065fe014620000b15780631c71706914620000d35780631c93908c14620000f55780633aa18088146200012b5780637f29c3941462000161575b600080fd5b620000bb62000227565b604051620000ca919062000975565b60405180910390f35b620000dd62000231565b604051620000ec9190620009ad565b60405180910390f35b6200011360048036038101906200010d919062000a0a565b62000280565b60405162000122919062000975565b60405180910390f35b62000149600480360381019062000143919062000a0a565b620002f6565b60405162000158919062000975565b60405180910390f35b6200017f600480360381019062000179919062000a0a565b6200049e565b6040516200018e919062000975565b60405180910390f35b620001a162000771565b005b620001ad620007b3565b005b620001cd6004803603810190620001c7919062000a0a565b620007f0565b604051620001dc919062000975565b60405180910390f35b620001ef6200092d565b604051620001fe919062000975565b60405180910390f35b6200022560048036038101906200021f919062000aa1565b62000933565b005b6000600154905090565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620002ca919062000b34565b60405180910390a28160036000828254620002e6919062000b95565b9250508190555060029050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405162000340919062000c20565b60405180910390a260405162000356906200094c565b604051809103906000f08015801562000373573d6000803e3d6000fd5b506000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508160016000828254620003c7919062000b95565b92505081905550620003e7600183620003e1919062000b95565b62000280565b50620003f262000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b81526004016200044e919062000975565b6020604051808303816000875af11580156200046e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000494919062000c69565b5060019050919050565b60003073ffffffffffffffffffffffffffffffffffffffff1663929543626040518163ffffffff1660e01b815260040160006040518083038186803b158015620004e757600080fd5b505afa925050508015620004f9575060015b620005e1576200050862000ca8565b806308c379a0036200056c57506200051f62000d43565b806200052c57506200056e565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a816040516200055d919062000e56565b60405180910390a150620005db565b505b3d80600081146200059c576040519150601f19603f3d011682016040523d82523d6000602084013e620005a1565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620005d19062000ef0565b60405180910390a1505b620005e2565b5b3073ffffffffffffffffffffffffffffffffffffffff16638bfe44ff6040518163ffffffff1660e01b815260040160006040518083038186803b1580156200062957600080fd5b505afa9250505080156200063b575060015b62000723576200064a62000ca8565b806308c379a003620006ae57506200066162000d43565b806200066e5750620006b0565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a816040516200069f919062000e56565b60405180910390a1506200071d565b505b3d8060008114620006de576040519150601f19603f3d011682016040523d82523d6000602084013e620006e3565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620007139062000ef0565b60405180910390a1505b62000724565b5b600062000768576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200075f9062000f62565b60405180910390fd5b60019050919050565b6001806040517fcf479181000000000000000000000000000000000000000000000000000000008152600401620007aa92919062000fd1565b60405180910390fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007e7906200104e565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200083a919062000c20565b60405180910390a2816001600082825462000856919062000b95565b925050819055506200087660018362000870919062000b95565b62000280565b506200088162000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b8152600401620008dd919062000975565b6020604051808303816000875af1158015620008fd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000923919062000c69565b5060019050919050565b60015481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b610a9f806200107183390190565b6000819050919050565b6200096f816200095a565b82525050565b60006020820190506200098c600083018462000964565b92915050565b6000819050919050565b620009a78162000992565b82525050565b6000602082019050620009c460008301846200099c565b92915050565b6000604051905090565b600080fd5b620009e4816200095a565b8114620009f057600080fd5b50565b60008135905062000a0481620009d9565b92915050565b60006020828403121562000a235762000a22620009d4565b5b600062000a3384828501620009f3565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000a698262000a3c565b9050919050565b62000a7b8162000a5c565b811462000a8757600080fd5b50565b60008135905062000a9b8162000a70565b92915050565b60006020828403121562000aba5762000ab9620009d4565b5b600062000aca8482850162000a8a565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000b1c600e8362000ad3565b915062000b298262000ae4565b602082019050919050565b600060408201905062000b4b600083018462000964565b818103602083015262000b5e8162000b0d565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000ba2826200095a565b915062000baf836200095a565b925082820190508082111562000bca5762000bc962000b66565b5b92915050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b600062000c0860058362000ad3565b915062000c158262000bd0565b602082019050919050565b600060408201905062000c37600083018462000964565b818103602083015262000c4a8162000bf9565b905092915050565b60008151905062000c6381620009d9565b92915050565b60006020828403121562000c825762000c81620009d4565b5b600062000c928482850162000c52565b91505092915050565b60008160e01c9050919050565b600060033d111562000cca5760046000803e62000cc760005162000c9b565b90505b90565b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000d188262000ccd565b810181811067ffffffffffffffff8211171562000d3a5762000d3962000cde565b5b80604052505050565b600060443d1062000ddb5762000d58620009ca565b60043d036004823e80513d602482011167ffffffffffffffff8211171562000d8257505062000ddb565b808201805167ffffffffffffffff81111562000da2575050505062000ddb565b80602083010160043d03850181111562000dc157505050505062000ddb565b62000dd28260200185018662000d0d565b82955050505050505b90565b600081519050919050565b60005b8381101562000e0957808201518184015260208101905062000dec565b60008484015250505050565b600062000e228262000dde565b62000e2e818562000ad3565b935062000e4081856020860162000de9565b62000e4b8162000ccd565b840191505092915050565b6000602082019050818103600083015262000e72818462000e15565b905092915050565b7f45787465726e616c2063616c6c206661696c656420776974686f757420616e2060008201527f6572726f72206d65737361676500000000000000000000000000000000000000602082015250565b600062000ed8602d8362000ad3565b915062000ee58262000e7a565b604082019050919050565b6000602082019050818103600083015262000f0b8162000ec9565b9050919050565b7f494e53554646494349454e542042414c414e4345000000000000000000000000600082015250565b600062000f4a60148362000ad3565b915062000f578262000f12565b602082019050919050565b6000602082019050818103600083015262000f7d8162000f3b565b9050919050565b6000819050919050565b6000819050919050565b600062000fb962000fb362000fad8462000f84565b62000f8e565b6200095a565b9050919050565b62000fcb8162000f98565b82525050565b600060408201905062000fe8600083018562000fc0565b62000ff7602083018462000fc0565b9392505050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b60006200103660178362000ad3565b9150620010438262000ffe565b602082019050919050565b60006020820190508181036000830152620010698162001027565b905091905056fe60806040526000600160006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b50600160009054906101000a900460ff161562000080576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200007790620002b5565b60405180910390fd5b60018060006101000a81548160ff021916908315150217905550620000bc701d6329f1c35ca4bfabb9f5610000000000620000c360201b60201c565b5062000460565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200010d919062000342565b60405180910390a281600080828254620001289190620003a3565b925050819055506200014e600183620001429190620003a3565b6200016960201b60201c565b506200015f620001df60201b60201c565b5060019050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620001b391906200042e565b60405180910390a28160026000828254620001cf9190620003a3565b9250508190555060029050919050565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b600082825260208201905092915050565b7f436f6e747261637420696e7374616e63652068617320616c726561647920626560008201527f656e20696e697469616c697a6564000000000000000000000000000000000000602082015250565b60006200029d602e836200022e565b9150620002aa826200023f565b604082019050919050565b60006020820190508181036000830152620002d0816200028e565b9050919050565b6000819050919050565b620002ec81620002d7565b82525050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006200032a6005836200022e565b91506200033782620002f2565b602082019050919050565b6000604082019050620003596000830184620002e1565b81810360208301526200036c816200031b565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620003b082620002d7565b9150620003bd83620002d7565b9250828201905080821115620003d857620003d762000374565b5b92915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000416600e836200022e565b91506200042382620003de565b602082019050919050565b6000604082019050620004456000830184620002e1565b8181036020830152620004588162000407565b905092915050565b61062f80620004706000396000f3fe608060405234801561001057600080fd5b50600436106100625760003560e01c80631c717069146100675780631c93908c1461008557806392954362146100b5578063a0712d68146100bf578063b69ef8a8146100ef578063c9353cb51461010d575b600080fd5b61006f610129565b60405161007c91906102ed565b60405180910390f35b61009f600480360381019061009a9190610343565b610178565b6040516100ac919061037f565b60405180910390f35b6100bd6101ea565b005b6100d960048036038101906100d49190610343565b610225565b6040516100e6919061037f565b60405180910390f35b6100f76102b5565b604051610104919061037f565b60405180910390f35b610127600480360381019061012291906103f8565b6102bb565b005b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516101c09190610482565b60405180910390a281600260008282546101da91906104df565b9250508190555060029050919050565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161021c9061055f565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405161026d91906105cb565b60405180910390a28160008082825461028691906104df565b925050819055506102a260018361029d91906104df565b610178565b506102ab610129565b5060019050919050565b60005481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b6000819050919050565b6102e7816102d4565b82525050565b600060208201905061030260008301846102de565b92915050565b600080fd5b6000819050919050565b6103208161030d565b811461032b57600080fd5b50565b60008135905061033d81610317565b92915050565b60006020828403121561035957610358610308565b5b60006103678482850161032e565b91505092915050565b6103798161030d565b82525050565b60006020820190506103946000830184610370565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006103c58261039a565b9050919050565b6103d5816103ba565b81146103e057600080fd5b50565b6000813590506103f2816103cc565b92915050565b60006020828403121561040e5761040d610308565b5b600061041c848285016103e3565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600061046c600e83610425565b915061047782610436565b602082019050919050565b60006040820190506104976000830184610370565b81810360208301526104a88161045f565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006104ea8261030d565b91506104f58361030d565b925082820190508082111561050d5761050c6104b0565b5b92915050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b6000610549601783610425565b915061055482610513565b602082019050919050565b600060208201905081810360008301526105788161053c565b9050919050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006105b5600583610425565b91506105c08261057f565b602082019050919050565b60006040820190506105e06000830184610370565b81810360208301526105f1816105a8565b90509291505056fea26469706673582212202a0a0fa5842e91cc0c1e5b645f7286aad7193a83c3b2f8c8e4c1b35008af0d6f64736f6c63430008140033a264697066735822122036f326b9881542090544d5d6e9f2ff18b13ec09bd4994f14891a84e97f4d6db964736f6c63430008140033", + "code": "0x60806040523480156200001157600080fd5b5060043610620000ac5760003560e01c80638bfe44ff116200006f5780638bfe44ff14620001975780639295436214620001a3578063a0712d6814620001af578063b69ef8a814620001e5578063c9353cb5146200020757620000ac565b806312065fe014620000b15780631c71706914620000d35780631c93908c14620000f55780633aa18088146200012b5780637f29c3941462000161575b600080fd5b620000bb62000227565b604051620000ca919062000997565b60405180910390f35b620000dd62000231565b604051620000ec9190620009cf565b60405180910390f35b6200011360048036038101906200010d919062000a2c565b62000280565b60405162000122919062000997565b60405180910390f35b62000149600480360381019062000143919062000a2c565b620002f6565b60405162000158919062000997565b60405180910390f35b6200017f600480360381019062000179919062000a2c565b620004ae565b6040516200018e919062000997565b60405180910390f35b620001a162000783565b005b620001ad620007c5565b005b620001cd6004803603810190620001c7919062000a2c565b62000802565b604051620001dc919062000997565b60405180910390f35b620001ef6200094f565b604051620001fe919062000997565b60405180910390f35b6200022560048036038101906200021f919062000ac3565b62000955565b005b6000600154905090565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620002ca919062000b56565b60405180910390a28160036000828254620002e6919062000bb7565b9250508190555060029050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405162000340919062000c64565b60405180910390a260405162000356906200096e565b604051809103906000f08015801562000373573d6000803e3d6000fd5b506000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508160016000828254620003c7919062000bb7565b92505081905550620003e7600183620003e1919062000bb7565b62000280565b50620003f262000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b81526004016200044e919062000997565b602060405180830381600087803b1580156200046957600080fd5b505af11580156200047e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004a4919062000cad565b5060019050919050565b60003073ffffffffffffffffffffffffffffffffffffffff1663929543626040518163ffffffff1660e01b815260040160006040518083038186803b158015620004f757600080fd5b505afa92505050801562000509575060015b620005f2576200051862000cec565b806308c379a014156200057d57506200053062000d87565b806200053d57506200057f565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a816040516200056e919062000eab565b60405180910390a150620005ec565b505b3d8060008114620005ad576040519150601f19603f3d011682016040523d82523d6000602084013e620005b2565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620005e29062000f45565b60405180910390a1505b620005f3565b5b3073ffffffffffffffffffffffffffffffffffffffff16638bfe44ff6040518163ffffffff1660e01b815260040160006040518083038186803b1580156200063a57600080fd5b505afa9250505080156200064c575060015b62000735576200065b62000cec565b806308c379a01415620006c057506200067362000d87565b80620006805750620006c2565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a81604051620006b1919062000eab565b60405180910390a1506200072f565b505b3d8060008114620006f0576040519150601f19603f3d011682016040523d82523d6000602084013e620006f5565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620007259062000f45565b60405180910390a1505b62000736565b5b60006200077a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007719062000fb7565b60405180910390fd5b60019050919050565b6001806040517fcf479181000000000000000000000000000000000000000000000000000000008152600401620007bc92919062001026565b60405180910390fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007f990620010a3565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200084c919062000c64565b60405180910390a2816001600082825462000868919062000bb7565b925050819055506200088860018362000882919062000bb7565b62000280565b506200089362000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b8152600401620008ef919062000997565b602060405180830381600087803b1580156200090a57600080fd5b505af11580156200091f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000945919062000cad565b5060019050919050565b60015481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b610ae380620010c683390190565b6000819050919050565b62000991816200097c565b82525050565b6000602082019050620009ae600083018462000986565b92915050565b6000819050919050565b620009c981620009b4565b82525050565b6000602082019050620009e66000830184620009be565b92915050565b6000604051905090565b600080fd5b62000a06816200097c565b811462000a1257600080fd5b50565b60008135905062000a2681620009fb565b92915050565b60006020828403121562000a455762000a44620009f6565b5b600062000a558482850162000a15565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000a8b8262000a5e565b9050919050565b62000a9d8162000a7e565b811462000aa957600080fd5b50565b60008135905062000abd8162000a92565b92915050565b60006020828403121562000adc5762000adb620009f6565b5b600062000aec8482850162000aac565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000b3e600e8362000af5565b915062000b4b8262000b06565b602082019050919050565b600060408201905062000b6d600083018462000986565b818103602083015262000b808162000b2f565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000bc4826200097c565b915062000bd1836200097c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000c095762000c0862000b88565b5b828201905092915050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b600062000c4c60058362000af5565b915062000c598262000c14565b602082019050919050565b600060408201905062000c7b600083018462000986565b818103602083015262000c8e8162000c3d565b905092915050565b60008151905062000ca781620009fb565b92915050565b60006020828403121562000cc65762000cc5620009f6565b5b600062000cd68482850162000c96565b91505092915050565b60008160e01c9050919050565b600060033d111562000d0e5760046000803e62000d0b60005162000cdf565b90505b90565b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000d5c8262000d11565b810181811067ffffffffffffffff8211171562000d7e5762000d7d62000d22565b5b80604052505050565b600060443d101562000d995762000e26565b62000da3620009ec565b60043d036004823e80513d602482011167ffffffffffffffff8211171562000dcd57505062000e26565b808201805167ffffffffffffffff81111562000ded575050505062000e26565b80602083010160043d03850181111562000e0c57505050505062000e26565b62000e1d8260200185018662000d51565b82955050505050505b90565b600081519050919050565b60005b8381101562000e5457808201518184015260208101905062000e37565b8381111562000e64576000848401525b50505050565b600062000e778262000e29565b62000e83818562000af5565b935062000e9581856020860162000e34565b62000ea08162000d11565b840191505092915050565b6000602082019050818103600083015262000ec7818462000e6a565b905092915050565b7f45787465726e616c2063616c6c206661696c656420776974686f757420616e2060008201527f6572726f72206d65737361676500000000000000000000000000000000000000602082015250565b600062000f2d602d8362000af5565b915062000f3a8262000ecf565b604082019050919050565b6000602082019050818103600083015262000f608162000f1e565b9050919050565b7f494e53554646494349454e542042414c414e4345000000000000000000000000600082015250565b600062000f9f60148362000af5565b915062000fac8262000f67565b602082019050919050565b6000602082019050818103600083015262000fd28162000f90565b9050919050565b6000819050919050565b6000819050919050565b60006200100e62001008620010028462000fd9565b62000fe3565b6200097c565b9050919050565b620010208162000fed565b82525050565b60006040820190506200103d600083018562001015565b6200104c602083018462001015565b9392505050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b60006200108b60178362000af5565b9150620010988262001053565b602082019050919050565b60006020820190508181036000830152620010be816200107c565b905091905056fe60806040526000600160006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b50600160009054906101000a900460ff161562000080576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200007790620002b5565b60405180910390fd5b60018060006101000a81548160ff021916908315150217905550620000bc701d6329f1c35ca4bfabb9f5610000000000620000c360201b60201c565b5062000482565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200010d919062000342565b60405180910390a281600080828254620001289190620003a3565b925050819055506200014e600183620001429190620003a3565b6200016960201b60201c565b506200015f620001df60201b60201c565b5060019050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620001b3919062000450565b60405180910390a28160026000828254620001cf9190620003a3565b9250508190555060029050919050565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b600082825260208201905092915050565b7f436f6e747261637420696e7374616e63652068617320616c726561647920626560008201527f656e20696e697469616c697a6564000000000000000000000000000000000000602082015250565b60006200029d602e836200022e565b9150620002aa826200023f565b604082019050919050565b60006020820190508181036000830152620002d0816200028e565b9050919050565b6000819050919050565b620002ec81620002d7565b82525050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006200032a6005836200022e565b91506200033782620002f2565b602082019050919050565b6000604082019050620003596000830184620002e1565b81810360208301526200036c816200031b565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620003b082620002d7565b9150620003bd83620002d7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620003f557620003f462000374565b5b828201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000438600e836200022e565b9150620004458262000400565b602082019050919050565b6000604082019050620004676000830184620002e1565b81810360208301526200047a8162000429565b905092915050565b61065180620004926000396000f3fe608060405234801561001057600080fd5b50600436106100625760003560e01c80631c717069146100675780631c93908c1461008557806392954362146100b5578063a0712d68146100bf578063b69ef8a8146100ef578063c9353cb51461010d575b600080fd5b61006f610129565b60405161007c91906102ed565b60405180910390f35b61009f600480360381019061009a9190610343565b610178565b6040516100ac919061037f565b60405180910390f35b6100bd6101ea565b005b6100d960048036038101906100d49190610343565b610225565b6040516100e6919061037f565b60405180910390f35b6100f76102b5565b604051610104919061037f565b60405180910390f35b610127600480360381019061012291906103f8565b6102bb565b005b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516101c09190610482565b60405180910390a281600260008282546101da91906104df565b9250508190555060029050919050565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161021c90610581565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405161026d91906105ed565b60405180910390a28160008082825461028691906104df565b925050819055506102a260018361029d91906104df565b610178565b506102ab610129565b5060019050919050565b60005481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b6000819050919050565b6102e7816102d4565b82525050565b600060208201905061030260008301846102de565b92915050565b600080fd5b6000819050919050565b6103208161030d565b811461032b57600080fd5b50565b60008135905061033d81610317565b92915050565b60006020828403121561035957610358610308565b5b60006103678482850161032e565b91505092915050565b6103798161030d565b82525050565b60006020820190506103946000830184610370565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006103c58261039a565b9050919050565b6103d5816103ba565b81146103e057600080fd5b50565b6000813590506103f2816103cc565b92915050565b60006020828403121561040e5761040d610308565b5b600061041c848285016103e3565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600061046c600e83610425565b915061047782610436565b602082019050919050565b60006040820190506104976000830184610370565b81810360208301526104a88161045f565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006104ea8261030d565b91506104f58361030d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561052a576105296104b0565b5b828201905092915050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b600061056b601783610425565b915061057682610535565b602082019050919050565b6000602082019050818103600083015261059a8161055e565b9050919050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006105d7600583610425565b91506105e2826105a1565b602082019050919050565b60006040820190506106026000830184610370565b8181036020830152610613816105ca565b90509291505056fea26469706673582212208743accab6cfcd1c8ccb3f51b787d679e803a77ce24ec642bd068883132fd5fa64736f6c63430008090033a264697066735822122066241fedca9ebd69f0cd9e4879f75428f5d4bf734eb072e52934a8b3161581f064736f6c63430008090033", "storage": { "0x0000000000000000000000000000000000000000000000000000000000000002": "0x0000000000000000000000000000000000000000000000000000000000000001" } @@ -16,11 +16,11 @@ }, "pre": { "0x0000000000000000000000000000000000000000": { - "balance": "0x0" + "balance": "0x19c421a" }, "OWNER.address": { - "balance": "0xc9f2c9ccfdb9908b61d7e0000", - "nonce": 357 + "balance": "0x3611ac5ae39cd182dd", + "nonce": 78 }, "Tracer.address": { "balance": "0x0", diff --git a/test/historicstate/hardhat/scripts/geth_traces/Tracer.deploy.prestateTracer.json b/test/historicstate/hardhat/scripts/geth_traces/Tracer.deploy.prestateTracer.json index 8d894ec67..321757829 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/Tracer.deploy.prestateTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/Tracer.deploy.prestateTracer.json @@ -1,10 +1,10 @@ { "0x0000000000000000000000000000000000000000": { - "balance": "0x0" + "balance": "0x19c421a" }, "OWNER.address": { - "balance": "0xc9f2c9ccfdb9908b61d7e0000", - "nonce": 357 + "balance": "0x3611ac5ae39cd182dd", + "nonce": 78 }, "Tracer.address": { "balance": "0x0", diff --git a/test/historicstate/hardhat/scripts/geth_traces/Tracer.getBalance.callTracer.json b/test/historicstate/hardhat/scripts/geth_traces/Tracer.getBalance.callTracer.json index 213abcff7..eb1061ac5 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/Tracer.getBalance.callTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/Tracer.getBalance.callTracer.json @@ -1,10 +1,10 @@ { "from": "CALL.address", - "gas": "0xffffface7", - "gasUsed": "0x5532", + "gas": "0x2faf080", + "gasUsed": "0x5bce", + "to": "Tracer.address", "input": "0x12065fe0", "output": "0x00000000000000000000000000000000000000000000000000000000000003e8", - "to": "Tracer.address", - "type": "CALL", - "value": "0x0" + "value": "0x0", + "type": "CALL" } \ No newline at end of file diff --git a/test/historicstate/hardhat/scripts/geth_traces/Tracer.getBalance.defaultTracer.json b/test/historicstate/hardhat/scripts/geth_traces/Tracer.getBalance.defaultTracer.json index e02b4bb4d..820376d8d 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/Tracer.getBalance.defaultTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/Tracer.getBalance.defaultTracer.json @@ -1,83 +1,83 @@ { + "gas": 23502, "failed": false, - "gas": 21810, "returnValue": "00000000000000000000000000000000000000000000000000000000000003e8", "structLogs": [ { - "depth": 1, - "gas": 68719455463, - "gasCost": 3, - "op": "PUSH1", "pc": 0, + "op": "PUSH1", + "gas": 49978936, + "gasCost": 3, + "depth": 1, "stack": [] }, { - "depth": 1, - "gas": 68719455460, - "gasCost": 3, - "op": "PUSH1", "pc": 2, + "op": "PUSH1", + "gas": 49978933, + "gasCost": 3, + "depth": 1, "stack": [ "0x80" ] }, { - "depth": 1, - "gas": 68719455457, - "gasCost": 12, - "op": "MSTORE", "pc": 4, + "op": "MSTORE", + "gas": 49978930, + "gasCost": 12, + "depth": 1, "stack": [ "0x80", "0x40" ] }, { - "depth": 1, - "gas": 68719455445, - "gasCost": 2, - "op": "CALLVALUE", "pc": 5, + "op": "CALLVALUE", + "gas": 49978918, + "gasCost": 2, + "depth": 1, "stack": [] }, { - "depth": 1, - "gas": 68719455443, - "gasCost": 3, - "op": "DUP1", "pc": 6, + "op": "DUP1", + "gas": 49978916, + "gasCost": 3, + "depth": 1, "stack": [ "0x0" ] }, { - "depth": 1, - "gas": 68719455440, - "gasCost": 3, - "op": "ISZERO", "pc": 7, + "op": "ISZERO", + "gas": 49978913, + "gasCost": 3, + "depth": 1, "stack": [ "0x0", "0x0" ] }, { - "depth": 1, - "gas": 68719455437, - "gasCost": 3, - "op": "PUSH3", "pc": 8, + "op": "PUSH3", + "gas": 49978910, + "gasCost": 3, + "depth": 1, "stack": [ "0x0", "0x1" ] }, { - "depth": 1, - "gas": 68719455434, - "gasCost": 10, - "op": "JUMPI", "pc": 12, + "op": "JUMPI", + "gas": 49978907, + "gasCost": 10, + "depth": 1, "stack": [ "0x0", "0x1", @@ -85,141 +85,141 @@ ] }, { - "depth": 1, - "gas": 68719455424, - "gasCost": 1, - "op": "JUMPDEST", "pc": 17, + "op": "JUMPDEST", + "gas": 49978897, + "gasCost": 1, + "depth": 1, "stack": [ "0x0" ] }, { - "depth": 1, - "gas": 68719455423, - "gasCost": 2, - "op": "POP", "pc": 18, + "op": "POP", + "gas": 49978896, + "gasCost": 2, + "depth": 1, "stack": [ "0x0" ] }, { - "depth": 1, - "gas": 68719455421, - "gasCost": 3, - "op": "PUSH1", "pc": 19, + "op": "PUSH1", + "gas": 49978894, + "gasCost": 3, + "depth": 1, "stack": [] }, { - "depth": 1, - "gas": 68719455418, - "gasCost": 2, - "op": "CALLDATASIZE", "pc": 21, + "op": "CALLDATASIZE", + "gas": 49978891, + "gasCost": 2, + "depth": 1, "stack": [ "0x4" ] }, { - "depth": 1, - "gas": 68719455416, - "gasCost": 3, - "op": "LT", "pc": 22, + "op": "LT", + "gas": 49978889, + "gasCost": 3, + "depth": 1, "stack": [ "0x4", "0x4" ] }, { - "depth": 1, - "gas": 68719455413, - "gasCost": 3, - "op": "PUSH3", "pc": 23, + "op": "PUSH3", + "gas": 49978886, + "gasCost": 3, + "depth": 1, "stack": [ "0x0" ] }, { - "depth": 1, - "gas": 68719455410, - "gasCost": 10, - "op": "JUMPI", "pc": 27, + "op": "JUMPI", + "gas": 49978883, + "gasCost": 10, + "depth": 1, "stack": [ "0x0", "0xac" ] }, { - "depth": 1, - "gas": 68719455400, - "gasCost": 3, - "op": "PUSH1", "pc": 28, + "op": "PUSH1", + "gas": 49978873, + "gasCost": 3, + "depth": 1, "stack": [] }, { - "depth": 1, - "gas": 68719455397, - "gasCost": 3, - "op": "CALLDATALOAD", "pc": 30, + "op": "CALLDATALOAD", + "gas": 49978870, + "gasCost": 3, + "depth": 1, "stack": [ "0x0" ] }, { - "depth": 1, - "gas": 68719455394, - "gasCost": 3, - "op": "PUSH1", "pc": 31, + "op": "PUSH1", + "gas": 49978867, + "gasCost": 3, + "depth": 1, "stack": [ "0x12065fe000000000000000000000000000000000000000000000000000000000" ] }, { - "depth": 1, - "gas": 68719455391, - "gasCost": 3, - "op": "SHR", "pc": 33, + "op": "SHR", + "gas": 49978864, + "gasCost": 3, + "depth": 1, "stack": [ "0x12065fe000000000000000000000000000000000000000000000000000000000", "0xe0" ] }, { - "depth": 1, - "gas": 68719455388, - "gasCost": 3, - "op": "DUP1", "pc": 34, + "op": "DUP1", + "gas": 49978861, + "gasCost": 3, + "depth": 1, "stack": [ "0x12065fe0" ] }, { - "depth": 1, - "gas": 68719455385, - "gasCost": 3, - "op": "PUSH4", "pc": 35, + "op": "PUSH4", + "gas": 49978858, + "gasCost": 3, + "depth": 1, "stack": [ "0x12065fe0", "0x12065fe0" ] }, { - "depth": 1, - "gas": 68719455382, - "gasCost": 3, - "op": "GT", "pc": 40, + "op": "GT", + "gas": 49978855, + "gasCost": 3, + "depth": 1, "stack": [ "0x12065fe0", "0x12065fe0", @@ -227,22 +227,22 @@ ] }, { - "depth": 1, - "gas": 68719455379, - "gasCost": 3, - "op": "PUSH3", "pc": 41, + "op": "PUSH3", + "gas": 49978852, + "gasCost": 3, + "depth": 1, "stack": [ "0x12065fe0", "0x1" ] }, { - "depth": 1, - "gas": 68719455376, - "gasCost": 10, - "op": "JUMPI", "pc": 45, + "op": "JUMPI", + "gas": 49978849, + "gasCost": 10, + "depth": 1, "stack": [ "0x12065fe0", "0x1", @@ -250,42 +250,42 @@ ] }, { - "depth": 1, - "gas": 68719455366, - "gasCost": 1, - "op": "JUMPDEST", "pc": 111, + "op": "JUMPDEST", + "gas": 49978839, + "gasCost": 1, + "depth": 1, "stack": [ "0x12065fe0" ] }, { - "depth": 1, - "gas": 68719455365, - "gasCost": 3, - "op": "DUP1", "pc": 112, + "op": "DUP1", + "gas": 49978838, + "gasCost": 3, + "depth": 1, "stack": [ "0x12065fe0" ] }, { - "depth": 1, - "gas": 68719455362, - "gasCost": 3, - "op": "PUSH4", "pc": 113, + "op": "PUSH4", + "gas": 49978835, + "gasCost": 3, + "depth": 1, "stack": [ "0x12065fe0", "0x12065fe0" ] }, { - "depth": 1, - "gas": 68719455359, - "gasCost": 3, - "op": "EQ", "pc": 118, + "op": "EQ", + "gas": 49978832, + "gasCost": 3, + "depth": 1, "stack": [ "0x12065fe0", "0x12065fe0", @@ -293,22 +293,22 @@ ] }, { - "depth": 1, - "gas": 68719455356, - "gasCost": 3, - "op": "PUSH3", "pc": 119, + "op": "PUSH3", + "gas": 49978829, + "gasCost": 3, + "depth": 1, "stack": [ "0x12065fe0", "0x1" ] }, { - "depth": 1, - "gas": 68719455353, - "gasCost": 10, - "op": "JUMPI", "pc": 123, + "op": "JUMPI", + "gas": 49978826, + "gasCost": 10, + "depth": 1, "stack": [ "0x12065fe0", "0x1", @@ -316,42 +316,42 @@ ] }, { - "depth": 1, - "gas": 68719455343, - "gasCost": 1, - "op": "JUMPDEST", "pc": 177, + "op": "JUMPDEST", + "gas": 49978816, + "gasCost": 1, + "depth": 1, "stack": [ "0x12065fe0" ] }, { - "depth": 1, - "gas": 68719455342, - "gasCost": 3, - "op": "PUSH3", "pc": 178, + "op": "PUSH3", + "gas": 49978815, + "gasCost": 3, + "depth": 1, "stack": [ "0x12065fe0" ] }, { - "depth": 1, - "gas": 68719455339, - "gasCost": 3, - "op": "PUSH3", "pc": 182, + "op": "PUSH3", + "gas": 49978812, + "gasCost": 3, + "depth": 1, "stack": [ "0x12065fe0", "0xbb" ] }, { - "depth": 1, - "gas": 68719455336, - "gasCost": 8, - "op": "JUMP", "pc": 186, + "op": "JUMP", + "gas": 49978809, + "gasCost": 8, + "depth": 1, "stack": [ "0x12065fe0", "0xbb", @@ -359,33 +359,33 @@ ] }, { - "depth": 1, - "gas": 68719455328, - "gasCost": 1, - "op": "JUMPDEST", "pc": 551, + "op": "JUMPDEST", + "gas": 49978801, + "gasCost": 1, + "depth": 1, "stack": [ "0x12065fe0", "0xbb" ] }, { - "depth": 1, - "gas": 68719455327, - "gasCost": 3, - "op": "PUSH1", "pc": 552, + "op": "PUSH1", + "gas": 49978800, + "gasCost": 3, + "depth": 1, "stack": [ "0x12065fe0", "0xbb" ] }, { - "depth": 1, - "gas": 68719455324, - "gasCost": 3, - "op": "PUSH1", "pc": 554, + "op": "PUSH1", + "gas": 49978797, + "gasCost": 3, + "depth": 1, "stack": [ "0x12065fe0", "0xbb", @@ -393,11 +393,11 @@ ] }, { - "depth": 1, - "gas": 68719455321, - "gasCost": 200, - "op": "SLOAD", "pc": 556, + "op": "SLOAD", + "gas": 49978794, + "gasCost": 2100, + "depth": 1, "stack": [ "0x12065fe0", "0xbb", @@ -409,11 +409,11 @@ } }, { - "depth": 1, - "gas": 68719455121, - "gasCost": 3, - "op": "SWAP1", "pc": 557, + "op": "SWAP1", + "gas": 49976694, + "gasCost": 3, + "depth": 1, "stack": [ "0x12065fe0", "0xbb", @@ -422,11 +422,11 @@ ] }, { - "depth": 1, - "gas": 68719455118, - "gasCost": 2, - "op": "POP", "pc": 558, + "op": "POP", + "gas": 49976691, + "gasCost": 2, + "depth": 1, "stack": [ "0x12065fe0", "0xbb", @@ -435,11 +435,11 @@ ] }, { - "depth": 1, - "gas": 68719455116, - "gasCost": 3, - "op": "SWAP1", "pc": 559, + "op": "SWAP1", + "gas": 49976689, + "gasCost": 3, + "depth": 1, "stack": [ "0x12065fe0", "0xbb", @@ -447,11 +447,11 @@ ] }, { - "depth": 1, - "gas": 68719455113, - "gasCost": 8, - "op": "JUMP", "pc": 560, + "op": "JUMP", + "gas": 49976686, + "gasCost": 8, + "depth": 1, "stack": [ "0x12065fe0", "0x3e8", @@ -459,33 +459,33 @@ ] }, { - "depth": 1, - "gas": 68719455105, - "gasCost": 1, - "op": "JUMPDEST", "pc": 187, + "op": "JUMPDEST", + "gas": 49976678, + "gasCost": 1, + "depth": 1, "stack": [ "0x12065fe0", "0x3e8" ] }, { - "depth": 1, - "gas": 68719455104, - "gasCost": 3, - "op": "PUSH1", "pc": 188, + "op": "PUSH1", + "gas": 49976677, + "gasCost": 3, + "depth": 1, "stack": [ "0x12065fe0", "0x3e8" ] }, { - "depth": 1, - "gas": 68719455101, - "gasCost": 3, - "op": "MLOAD", "pc": 190, + "op": "MLOAD", + "gas": 49976674, + "gasCost": 3, + "depth": 1, "stack": [ "0x12065fe0", "0x3e8", @@ -493,11 +493,11 @@ ] }, { - "depth": 1, - "gas": 68719455098, - "gasCost": 3, - "op": "PUSH3", "pc": 191, + "op": "PUSH3", + "gas": 49976671, + "gasCost": 3, + "depth": 1, "stack": [ "0x12065fe0", "0x3e8", @@ -505,11 +505,11 @@ ] }, { - "depth": 1, - "gas": 68719455095, - "gasCost": 3, - "op": "SWAP2", "pc": 195, + "op": "SWAP2", + "gas": 49976668, + "gasCost": 3, + "depth": 1, "stack": [ "0x12065fe0", "0x3e8", @@ -518,11 +518,11 @@ ] }, { - "depth": 1, - "gas": 68719455092, - "gasCost": 3, - "op": "SWAP1", "pc": 196, + "op": "SWAP1", + "gas": 49976665, + "gasCost": 3, + "depth": 1, "stack": [ "0x12065fe0", "0xca", @@ -531,11 +531,11 @@ ] }, { - "depth": 1, - "gas": 68719455089, - "gasCost": 3, - "op": "PUSH3", "pc": 197, + "op": "PUSH3", + "gas": 49976662, + "gasCost": 3, + "depth": 1, "stack": [ "0x12065fe0", "0xca", @@ -544,25 +544,25 @@ ] }, { - "depth": 1, - "gas": 68719455086, - "gasCost": 8, - "op": "JUMP", "pc": 201, + "op": "JUMP", + "gas": 49976659, + "gasCost": 8, + "depth": 1, "stack": [ "0x12065fe0", "0xca", "0x3e8", "0x80", - "0x975" + "0x997" ] }, { - "depth": 1, - "gas": 68719455078, - "gasCost": 1, + "pc": 2455, "op": "JUMPDEST", - "pc": 2421, + "gas": 49976651, + "gasCost": 1, + "depth": 1, "stack": [ "0x12065fe0", "0xca", @@ -571,11 +571,11 @@ ] }, { - "depth": 1, - "gas": 68719455077, - "gasCost": 3, + "pc": 2456, "op": "PUSH1", - "pc": 2422, + "gas": 49976650, + "gasCost": 3, + "depth": 1, "stack": [ "0x12065fe0", "0xca", @@ -584,11 +584,11 @@ ] }, { - "depth": 1, - "gas": 68719455074, - "gasCost": 3, + "pc": 2458, "op": "PUSH1", - "pc": 2424, + "gas": 49976647, + "gasCost": 3, + "depth": 1, "stack": [ "0x12065fe0", "0xca", @@ -598,11 +598,11 @@ ] }, { - "depth": 1, - "gas": 68719455071, - "gasCost": 3, + "pc": 2460, "op": "DUP3", - "pc": 2426, + "gas": 49976644, + "gasCost": 3, + "depth": 1, "stack": [ "0x12065fe0", "0xca", @@ -613,11 +613,11 @@ ] }, { - "depth": 1, - "gas": 68719455068, - "gasCost": 3, + "pc": 2461, "op": "ADD", - "pc": 2427, + "gas": 49976641, + "gasCost": 3, + "depth": 1, "stack": [ "0x12065fe0", "0xca", @@ -629,11 +629,11 @@ ] }, { - "depth": 1, - "gas": 68719455065, - "gasCost": 3, + "pc": 2462, "op": "SWAP1", - "pc": 2428, + "gas": 49976638, + "gasCost": 3, + "depth": 1, "stack": [ "0x12065fe0", "0xca", @@ -644,11 +644,11 @@ ] }, { - "depth": 1, - "gas": 68719455062, - "gasCost": 2, + "pc": 2463, "op": "POP", - "pc": 2429, + "gas": 49976635, + "gasCost": 2, + "depth": 1, "stack": [ "0x12065fe0", "0xca", @@ -659,11 +659,11 @@ ] }, { - "depth": 1, - "gas": 68719455060, - "gasCost": 3, + "pc": 2464, "op": "PUSH3", - "pc": 2430, + "gas": 49976633, + "gasCost": 3, + "depth": 1, "stack": [ "0x12065fe0", "0xca", @@ -673,423 +673,423 @@ ] }, { - "depth": 1, - "gas": 68719455057, - "gasCost": 3, + "pc": 2468, "op": "PUSH1", - "pc": 2434, + "gas": 49976630, + "gasCost": 3, + "depth": 1, "stack": [ "0x12065fe0", "0xca", "0x3e8", "0x80", "0xa0", - "0x98c" + "0x9ae" ] }, { - "depth": 1, - "gas": 68719455054, - "gasCost": 3, + "pc": 2470, "op": "DUP4", - "pc": 2436, + "gas": 49976627, + "gasCost": 3, + "depth": 1, "stack": [ "0x12065fe0", "0xca", "0x3e8", "0x80", "0xa0", - "0x98c", + "0x9ae", "0x0" ] }, { - "depth": 1, - "gas": 68719455051, - "gasCost": 3, + "pc": 2471, "op": "ADD", - "pc": 2437, + "gas": 49976624, + "gasCost": 3, + "depth": 1, "stack": [ "0x12065fe0", "0xca", "0x3e8", "0x80", "0xa0", - "0x98c", + "0x9ae", "0x0", "0x80" ] }, { - "depth": 1, - "gas": 68719455048, - "gasCost": 3, + "pc": 2472, "op": "DUP5", - "pc": 2438, + "gas": 49976621, + "gasCost": 3, + "depth": 1, "stack": [ "0x12065fe0", "0xca", "0x3e8", "0x80", "0xa0", - "0x98c", + "0x9ae", "0x80" ] }, { - "depth": 1, - "gas": 68719455045, - "gasCost": 3, + "pc": 2473, "op": "PUSH3", - "pc": 2439, + "gas": 49976618, + "gasCost": 3, + "depth": 1, "stack": [ "0x12065fe0", "0xca", "0x3e8", "0x80", "0xa0", - "0x98c", + "0x9ae", "0x80", "0x3e8" ] }, { - "depth": 1, - "gas": 68719455042, - "gasCost": 8, + "pc": 2477, "op": "JUMP", - "pc": 2443, + "gas": 49976615, + "gasCost": 8, + "depth": 1, "stack": [ "0x12065fe0", "0xca", "0x3e8", "0x80", "0xa0", - "0x98c", + "0x9ae", "0x80", "0x3e8", - "0x964" + "0x986" ] }, { - "depth": 1, - "gas": 68719455034, - "gasCost": 1, + "pc": 2438, "op": "JUMPDEST", - "pc": 2404, + "gas": 49976607, + "gasCost": 1, + "depth": 1, "stack": [ "0x12065fe0", "0xca", "0x3e8", "0x80", "0xa0", - "0x98c", + "0x9ae", "0x80", "0x3e8" ] }, { - "depth": 1, - "gas": 68719455033, - "gasCost": 3, + "pc": 2439, "op": "PUSH3", - "pc": 2405, + "gas": 49976606, + "gasCost": 3, + "depth": 1, "stack": [ "0x12065fe0", "0xca", "0x3e8", "0x80", "0xa0", - "0x98c", + "0x9ae", "0x80", "0x3e8" ] }, { - "depth": 1, - "gas": 68719455030, - "gasCost": 3, + "pc": 2443, "op": "DUP2", - "pc": 2409, + "gas": 49976603, + "gasCost": 3, + "depth": 1, "stack": [ "0x12065fe0", "0xca", "0x3e8", "0x80", "0xa0", - "0x98c", + "0x9ae", "0x80", "0x3e8", - "0x96f" + "0x991" ] }, { - "depth": 1, - "gas": 68719455027, - "gasCost": 3, + "pc": 2444, "op": "PUSH3", - "pc": 2410, + "gas": 49976600, + "gasCost": 3, + "depth": 1, "stack": [ "0x12065fe0", "0xca", "0x3e8", "0x80", "0xa0", - "0x98c", + "0x9ae", "0x80", "0x3e8", - "0x96f", + "0x991", "0x3e8" ] }, { - "depth": 1, - "gas": 68719455024, - "gasCost": 8, + "pc": 2448, "op": "JUMP", - "pc": 2414, + "gas": 49976597, + "gasCost": 8, + "depth": 1, "stack": [ "0x12065fe0", "0xca", "0x3e8", "0x80", "0xa0", - "0x98c", + "0x9ae", "0x80", "0x3e8", - "0x96f", + "0x991", "0x3e8", - "0x95a" + "0x97c" ] }, { - "depth": 1, - "gas": 68719455016, - "gasCost": 1, + "pc": 2428, "op": "JUMPDEST", - "pc": 2394, + "gas": 49976589, + "gasCost": 1, + "depth": 1, "stack": [ "0x12065fe0", "0xca", "0x3e8", "0x80", "0xa0", - "0x98c", + "0x9ae", "0x80", "0x3e8", - "0x96f", + "0x991", "0x3e8" ] }, { - "depth": 1, - "gas": 68719455015, - "gasCost": 3, + "pc": 2429, "op": "PUSH1", - "pc": 2395, + "gas": 49976588, + "gasCost": 3, + "depth": 1, "stack": [ "0x12065fe0", "0xca", "0x3e8", "0x80", "0xa0", - "0x98c", + "0x9ae", "0x80", "0x3e8", - "0x96f", + "0x991", "0x3e8" ] }, { - "depth": 1, - "gas": 68719455012, - "gasCost": 3, + "pc": 2431, "op": "DUP2", - "pc": 2397, + "gas": 49976585, + "gasCost": 3, + "depth": 1, "stack": [ "0x12065fe0", "0xca", "0x3e8", "0x80", "0xa0", - "0x98c", + "0x9ae", "0x80", "0x3e8", - "0x96f", + "0x991", "0x3e8", "0x0" ] }, { - "depth": 1, - "gas": 68719455009, - "gasCost": 3, + "pc": 2432, "op": "SWAP1", - "pc": 2398, + "gas": 49976582, + "gasCost": 3, + "depth": 1, "stack": [ "0x12065fe0", "0xca", "0x3e8", "0x80", "0xa0", - "0x98c", + "0x9ae", "0x80", "0x3e8", - "0x96f", + "0x991", "0x3e8", "0x0", "0x3e8" ] }, { - "depth": 1, - "gas": 68719455006, - "gasCost": 2, + "pc": 2433, "op": "POP", - "pc": 2399, + "gas": 49976579, + "gasCost": 2, + "depth": 1, "stack": [ "0x12065fe0", "0xca", "0x3e8", "0x80", "0xa0", - "0x98c", + "0x9ae", "0x80", "0x3e8", - "0x96f", + "0x991", "0x3e8", "0x3e8", "0x0" ] }, { - "depth": 1, - "gas": 68719455004, - "gasCost": 3, + "pc": 2434, "op": "SWAP2", - "pc": 2400, + "gas": 49976577, + "gasCost": 3, + "depth": 1, "stack": [ "0x12065fe0", "0xca", "0x3e8", "0x80", "0xa0", - "0x98c", + "0x9ae", "0x80", "0x3e8", - "0x96f", + "0x991", "0x3e8", "0x3e8" ] }, { - "depth": 1, - "gas": 68719455001, - "gasCost": 3, + "pc": 2435, "op": "SWAP1", - "pc": 2401, + "gas": 49976574, + "gasCost": 3, + "depth": 1, "stack": [ "0x12065fe0", "0xca", "0x3e8", "0x80", "0xa0", - "0x98c", + "0x9ae", "0x80", "0x3e8", "0x3e8", "0x3e8", - "0x96f" + "0x991" ] }, { - "depth": 1, - "gas": 68719454998, - "gasCost": 2, + "pc": 2436, "op": "POP", - "pc": 2402, + "gas": 49976571, + "gasCost": 2, + "depth": 1, "stack": [ "0x12065fe0", "0xca", "0x3e8", "0x80", "0xa0", - "0x98c", + "0x9ae", "0x80", "0x3e8", "0x3e8", - "0x96f", + "0x991", "0x3e8" ] }, { - "depth": 1, - "gas": 68719454996, - "gasCost": 8, + "pc": 2437, "op": "JUMP", - "pc": 2403, + "gas": 49976569, + "gasCost": 8, + "depth": 1, "stack": [ "0x12065fe0", "0xca", "0x3e8", "0x80", "0xa0", - "0x98c", + "0x9ae", "0x80", "0x3e8", "0x3e8", - "0x96f" + "0x991" ] }, { - "depth": 1, - "gas": 68719454988, - "gasCost": 1, + "pc": 2449, "op": "JUMPDEST", - "pc": 2415, + "gas": 49976561, + "gasCost": 1, + "depth": 1, "stack": [ "0x12065fe0", "0xca", "0x3e8", "0x80", "0xa0", - "0x98c", + "0x9ae", "0x80", "0x3e8", "0x3e8" ] }, { - "depth": 1, - "gas": 68719454987, - "gasCost": 3, + "pc": 2450, "op": "DUP3", - "pc": 2416, + "gas": 49976560, + "gasCost": 3, + "depth": 1, "stack": [ "0x12065fe0", "0xca", "0x3e8", "0x80", "0xa0", - "0x98c", + "0x9ae", "0x80", "0x3e8", "0x3e8" ] }, { - "depth": 1, - "gas": 68719454984, - "gasCost": 9, + "pc": 2451, "op": "MSTORE", - "pc": 2417, + "gas": 49976557, + "gasCost": 9, + "depth": 1, "stack": [ "0x12065fe0", "0xca", "0x3e8", "0x80", "0xa0", - "0x98c", + "0x9ae", "0x80", "0x3e8", "0x3e8", @@ -1097,59 +1097,59 @@ ] }, { - "depth": 1, - "gas": 68719454975, - "gasCost": 2, + "pc": 2452, "op": "POP", - "pc": 2418, + "gas": 49976548, + "gasCost": 2, + "depth": 1, "stack": [ "0x12065fe0", "0xca", "0x3e8", "0x80", "0xa0", - "0x98c", + "0x9ae", "0x80", "0x3e8" ] }, { - "depth": 1, - "gas": 68719454973, - "gasCost": 2, + "pc": 2453, "op": "POP", - "pc": 2419, + "gas": 49976546, + "gasCost": 2, + "depth": 1, "stack": [ "0x12065fe0", "0xca", "0x3e8", "0x80", "0xa0", - "0x98c", + "0x9ae", "0x80" ] }, { - "depth": 1, - "gas": 68719454971, - "gasCost": 8, + "pc": 2454, "op": "JUMP", - "pc": 2420, + "gas": 49976544, + "gasCost": 8, + "depth": 1, "stack": [ "0x12065fe0", "0xca", "0x3e8", "0x80", "0xa0", - "0x98c" + "0x9ae" ] }, { - "depth": 1, - "gas": 68719454963, - "gasCost": 1, + "pc": 2478, "op": "JUMPDEST", - "pc": 2444, + "gas": 49976536, + "gasCost": 1, + "depth": 1, "stack": [ "0x12065fe0", "0xca", @@ -1159,11 +1159,11 @@ ] }, { - "depth": 1, - "gas": 68719454962, - "gasCost": 3, + "pc": 2479, "op": "SWAP3", - "pc": 2445, + "gas": 49976535, + "gasCost": 3, + "depth": 1, "stack": [ "0x12065fe0", "0xca", @@ -1173,11 +1173,11 @@ ] }, { - "depth": 1, - "gas": 68719454959, - "gasCost": 3, + "pc": 2480, "op": "SWAP2", - "pc": 2446, + "gas": 49976532, + "gasCost": 3, + "depth": 1, "stack": [ "0x12065fe0", "0xa0", @@ -1187,11 +1187,11 @@ ] }, { - "depth": 1, - "gas": 68719454956, - "gasCost": 2, + "pc": 2481, "op": "POP", - "pc": 2447, + "gas": 49976529, + "gasCost": 2, + "depth": 1, "stack": [ "0x12065fe0", "0xa0", @@ -1201,11 +1201,11 @@ ] }, { - "depth": 1, - "gas": 68719454954, - "gasCost": 2, + "pc": 2482, "op": "POP", - "pc": 2448, + "gas": 49976527, + "gasCost": 2, + "depth": 1, "stack": [ "0x12065fe0", "0xa0", @@ -1214,11 +1214,11 @@ ] }, { - "depth": 1, - "gas": 68719454952, - "gasCost": 8, + "pc": 2483, "op": "JUMP", - "pc": 2449, + "gas": 49976525, + "gasCost": 8, + "depth": 1, "stack": [ "0x12065fe0", "0xa0", @@ -1226,33 +1226,33 @@ ] }, { - "depth": 1, - "gas": 68719454944, - "gasCost": 1, - "op": "JUMPDEST", "pc": 202, + "op": "JUMPDEST", + "gas": 49976517, + "gasCost": 1, + "depth": 1, "stack": [ "0x12065fe0", "0xa0" ] }, { - "depth": 1, - "gas": 68719454943, - "gasCost": 3, - "op": "PUSH1", "pc": 203, + "op": "PUSH1", + "gas": 49976516, + "gasCost": 3, + "depth": 1, "stack": [ "0x12065fe0", "0xa0" ] }, { - "depth": 1, - "gas": 68719454940, - "gasCost": 3, - "op": "MLOAD", "pc": 205, + "op": "MLOAD", + "gas": 49976513, + "gasCost": 3, + "depth": 1, "stack": [ "0x12065fe0", "0xa0", @@ -1260,11 +1260,11 @@ ] }, { - "depth": 1, - "gas": 68719454937, - "gasCost": 3, - "op": "DUP1", "pc": 206, + "op": "DUP1", + "gas": 49976510, + "gasCost": 3, + "depth": 1, "stack": [ "0x12065fe0", "0xa0", @@ -1272,11 +1272,11 @@ ] }, { - "depth": 1, - "gas": 68719454934, - "gasCost": 3, - "op": "SWAP2", "pc": 207, + "op": "SWAP2", + "gas": 49976507, + "gasCost": 3, + "depth": 1, "stack": [ "0x12065fe0", "0xa0", @@ -1285,11 +1285,11 @@ ] }, { - "depth": 1, - "gas": 68719454931, - "gasCost": 3, - "op": "SUB", "pc": 208, + "op": "SUB", + "gas": 49976504, + "gasCost": 3, + "depth": 1, "stack": [ "0x12065fe0", "0x80", @@ -1298,11 +1298,11 @@ ] }, { - "depth": 1, - "gas": 68719454928, - "gasCost": 3, - "op": "SWAP1", "pc": 209, + "op": "SWAP1", + "gas": 49976501, + "gasCost": 3, + "depth": 1, "stack": [ "0x12065fe0", "0x80", @@ -1310,11 +1310,11 @@ ] }, { - "depth": 1, - "gas": 68719454925, - "gasCost": 0, - "op": "RETURN", "pc": 210, + "op": "RETURN", + "gas": 49976498, + "gasCost": 0, + "depth": 1, "stack": [ "0x12065fe0", "0x20", diff --git a/test/historicstate/hardhat/scripts/geth_traces/Tracer.getBalance.prestateTracer.json b/test/historicstate/hardhat/scripts/geth_traces/Tracer.getBalance.prestateTracer.json index 41d1c7ab7..5b933285f 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/Tracer.getBalance.prestateTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/Tracer.getBalance.prestateTracer.json @@ -1,10 +1,10 @@ { "0x0000000000000000000000000000000000000000": { - "balance": "0x0" + "balance": "0x1bf279a" }, "Tracer.address": { "balance": "0x0", - "code": "0x60806040523480156200001157600080fd5b5060043610620000ac5760003560e01c80638bfe44ff116200006f5780638bfe44ff14620001975780639295436214620001a3578063a0712d6814620001af578063b69ef8a814620001e5578063c9353cb5146200020757620000ac565b806312065fe014620000b15780631c71706914620000d35780631c93908c14620000f55780633aa18088146200012b5780637f29c3941462000161575b600080fd5b620000bb62000227565b604051620000ca919062000975565b60405180910390f35b620000dd62000231565b604051620000ec9190620009ad565b60405180910390f35b6200011360048036038101906200010d919062000a0a565b62000280565b60405162000122919062000975565b60405180910390f35b62000149600480360381019062000143919062000a0a565b620002f6565b60405162000158919062000975565b60405180910390f35b6200017f600480360381019062000179919062000a0a565b6200049e565b6040516200018e919062000975565b60405180910390f35b620001a162000771565b005b620001ad620007b3565b005b620001cd6004803603810190620001c7919062000a0a565b620007f0565b604051620001dc919062000975565b60405180910390f35b620001ef6200092d565b604051620001fe919062000975565b60405180910390f35b6200022560048036038101906200021f919062000aa1565b62000933565b005b6000600154905090565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620002ca919062000b34565b60405180910390a28160036000828254620002e6919062000b95565b9250508190555060029050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405162000340919062000c20565b60405180910390a260405162000356906200094c565b604051809103906000f08015801562000373573d6000803e3d6000fd5b506000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508160016000828254620003c7919062000b95565b92505081905550620003e7600183620003e1919062000b95565b62000280565b50620003f262000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b81526004016200044e919062000975565b6020604051808303816000875af11580156200046e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000494919062000c69565b5060019050919050565b60003073ffffffffffffffffffffffffffffffffffffffff1663929543626040518163ffffffff1660e01b815260040160006040518083038186803b158015620004e757600080fd5b505afa925050508015620004f9575060015b620005e1576200050862000ca8565b806308c379a0036200056c57506200051f62000d43565b806200052c57506200056e565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a816040516200055d919062000e56565b60405180910390a150620005db565b505b3d80600081146200059c576040519150601f19603f3d011682016040523d82523d6000602084013e620005a1565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620005d19062000ef0565b60405180910390a1505b620005e2565b5b3073ffffffffffffffffffffffffffffffffffffffff16638bfe44ff6040518163ffffffff1660e01b815260040160006040518083038186803b1580156200062957600080fd5b505afa9250505080156200063b575060015b62000723576200064a62000ca8565b806308c379a003620006ae57506200066162000d43565b806200066e5750620006b0565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a816040516200069f919062000e56565b60405180910390a1506200071d565b505b3d8060008114620006de576040519150601f19603f3d011682016040523d82523d6000602084013e620006e3565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620007139062000ef0565b60405180910390a1505b62000724565b5b600062000768576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200075f9062000f62565b60405180910390fd5b60019050919050565b6001806040517fcf479181000000000000000000000000000000000000000000000000000000008152600401620007aa92919062000fd1565b60405180910390fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007e7906200104e565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200083a919062000c20565b60405180910390a2816001600082825462000856919062000b95565b925050819055506200087660018362000870919062000b95565b62000280565b506200088162000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b8152600401620008dd919062000975565b6020604051808303816000875af1158015620008fd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000923919062000c69565b5060019050919050565b60015481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b610a9f806200107183390190565b6000819050919050565b6200096f816200095a565b82525050565b60006020820190506200098c600083018462000964565b92915050565b6000819050919050565b620009a78162000992565b82525050565b6000602082019050620009c460008301846200099c565b92915050565b6000604051905090565b600080fd5b620009e4816200095a565b8114620009f057600080fd5b50565b60008135905062000a0481620009d9565b92915050565b60006020828403121562000a235762000a22620009d4565b5b600062000a3384828501620009f3565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000a698262000a3c565b9050919050565b62000a7b8162000a5c565b811462000a8757600080fd5b50565b60008135905062000a9b8162000a70565b92915050565b60006020828403121562000aba5762000ab9620009d4565b5b600062000aca8482850162000a8a565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000b1c600e8362000ad3565b915062000b298262000ae4565b602082019050919050565b600060408201905062000b4b600083018462000964565b818103602083015262000b5e8162000b0d565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000ba2826200095a565b915062000baf836200095a565b925082820190508082111562000bca5762000bc962000b66565b5b92915050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b600062000c0860058362000ad3565b915062000c158262000bd0565b602082019050919050565b600060408201905062000c37600083018462000964565b818103602083015262000c4a8162000bf9565b905092915050565b60008151905062000c6381620009d9565b92915050565b60006020828403121562000c825762000c81620009d4565b5b600062000c928482850162000c52565b91505092915050565b60008160e01c9050919050565b600060033d111562000cca5760046000803e62000cc760005162000c9b565b90505b90565b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000d188262000ccd565b810181811067ffffffffffffffff8211171562000d3a5762000d3962000cde565b5b80604052505050565b600060443d1062000ddb5762000d58620009ca565b60043d036004823e80513d602482011167ffffffffffffffff8211171562000d8257505062000ddb565b808201805167ffffffffffffffff81111562000da2575050505062000ddb565b80602083010160043d03850181111562000dc157505050505062000ddb565b62000dd28260200185018662000d0d565b82955050505050505b90565b600081519050919050565b60005b8381101562000e0957808201518184015260208101905062000dec565b60008484015250505050565b600062000e228262000dde565b62000e2e818562000ad3565b935062000e4081856020860162000de9565b62000e4b8162000ccd565b840191505092915050565b6000602082019050818103600083015262000e72818462000e15565b905092915050565b7f45787465726e616c2063616c6c206661696c656420776974686f757420616e2060008201527f6572726f72206d65737361676500000000000000000000000000000000000000602082015250565b600062000ed8602d8362000ad3565b915062000ee58262000e7a565b604082019050919050565b6000602082019050818103600083015262000f0b8162000ec9565b9050919050565b7f494e53554646494349454e542042414c414e4345000000000000000000000000600082015250565b600062000f4a60148362000ad3565b915062000f578262000f12565b602082019050919050565b6000602082019050818103600083015262000f7d8162000f3b565b9050919050565b6000819050919050565b6000819050919050565b600062000fb962000fb362000fad8462000f84565b62000f8e565b6200095a565b9050919050565b62000fcb8162000f98565b82525050565b600060408201905062000fe8600083018562000fc0565b62000ff7602083018462000fc0565b9392505050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b60006200103660178362000ad3565b9150620010438262000ffe565b602082019050919050565b60006020820190508181036000830152620010698162001027565b905091905056fe60806040526000600160006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b50600160009054906101000a900460ff161562000080576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200007790620002b5565b60405180910390fd5b60018060006101000a81548160ff021916908315150217905550620000bc701d6329f1c35ca4bfabb9f5610000000000620000c360201b60201c565b5062000460565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200010d919062000342565b60405180910390a281600080828254620001289190620003a3565b925050819055506200014e600183620001429190620003a3565b6200016960201b60201c565b506200015f620001df60201b60201c565b5060019050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620001b391906200042e565b60405180910390a28160026000828254620001cf9190620003a3565b9250508190555060029050919050565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b600082825260208201905092915050565b7f436f6e747261637420696e7374616e63652068617320616c726561647920626560008201527f656e20696e697469616c697a6564000000000000000000000000000000000000602082015250565b60006200029d602e836200022e565b9150620002aa826200023f565b604082019050919050565b60006020820190508181036000830152620002d0816200028e565b9050919050565b6000819050919050565b620002ec81620002d7565b82525050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006200032a6005836200022e565b91506200033782620002f2565b602082019050919050565b6000604082019050620003596000830184620002e1565b81810360208301526200036c816200031b565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620003b082620002d7565b9150620003bd83620002d7565b9250828201905080821115620003d857620003d762000374565b5b92915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000416600e836200022e565b91506200042382620003de565b602082019050919050565b6000604082019050620004456000830184620002e1565b8181036020830152620004588162000407565b905092915050565b61062f80620004706000396000f3fe608060405234801561001057600080fd5b50600436106100625760003560e01c80631c717069146100675780631c93908c1461008557806392954362146100b5578063a0712d68146100bf578063b69ef8a8146100ef578063c9353cb51461010d575b600080fd5b61006f610129565b60405161007c91906102ed565b60405180910390f35b61009f600480360381019061009a9190610343565b610178565b6040516100ac919061037f565b60405180910390f35b6100bd6101ea565b005b6100d960048036038101906100d49190610343565b610225565b6040516100e6919061037f565b60405180910390f35b6100f76102b5565b604051610104919061037f565b60405180910390f35b610127600480360381019061012291906103f8565b6102bb565b005b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516101c09190610482565b60405180910390a281600260008282546101da91906104df565b9250508190555060029050919050565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161021c9061055f565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405161026d91906105cb565b60405180910390a28160008082825461028691906104df565b925050819055506102a260018361029d91906104df565b610178565b506102ab610129565b5060019050919050565b60005481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b6000819050919050565b6102e7816102d4565b82525050565b600060208201905061030260008301846102de565b92915050565b600080fd5b6000819050919050565b6103208161030d565b811461032b57600080fd5b50565b60008135905061033d81610317565b92915050565b60006020828403121561035957610358610308565b5b60006103678482850161032e565b91505092915050565b6103798161030d565b82525050565b60006020820190506103946000830184610370565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006103c58261039a565b9050919050565b6103d5816103ba565b81146103e057600080fd5b50565b6000813590506103f2816103cc565b92915050565b60006020828403121561040e5761040d610308565b5b600061041c848285016103e3565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600061046c600e83610425565b915061047782610436565b602082019050919050565b60006040820190506104976000830184610370565b81810360208301526104a88161045f565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006104ea8261030d565b91506104f58361030d565b925082820190508082111561050d5761050c6104b0565b5b92915050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b6000610549601783610425565b915061055482610513565b602082019050919050565b600060208201905081810360008301526105788161053c565b9050919050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006105b5600583610425565b91506105c08261057f565b602082019050919050565b60006040820190506105e06000830184610370565b81810360208301526105f1816105a8565b90509291505056fea26469706673582212202a0a0fa5842e91cc0c1e5b645f7286aad7193a83c3b2f8c8e4c1b35008af0d6f64736f6c63430008140033a264697066735822122036f326b9881542090544d5d6e9f2ff18b13ec09bd4994f14891a84e97f4d6db964736f6c63430008140033", + "code": "0x60806040523480156200001157600080fd5b5060043610620000ac5760003560e01c80638bfe44ff116200006f5780638bfe44ff14620001975780639295436214620001a3578063a0712d6814620001af578063b69ef8a814620001e5578063c9353cb5146200020757620000ac565b806312065fe014620000b15780631c71706914620000d35780631c93908c14620000f55780633aa18088146200012b5780637f29c3941462000161575b600080fd5b620000bb62000227565b604051620000ca919062000997565b60405180910390f35b620000dd62000231565b604051620000ec9190620009cf565b60405180910390f35b6200011360048036038101906200010d919062000a2c565b62000280565b60405162000122919062000997565b60405180910390f35b62000149600480360381019062000143919062000a2c565b620002f6565b60405162000158919062000997565b60405180910390f35b6200017f600480360381019062000179919062000a2c565b620004ae565b6040516200018e919062000997565b60405180910390f35b620001a162000783565b005b620001ad620007c5565b005b620001cd6004803603810190620001c7919062000a2c565b62000802565b604051620001dc919062000997565b60405180910390f35b620001ef6200094f565b604051620001fe919062000997565b60405180910390f35b6200022560048036038101906200021f919062000ac3565b62000955565b005b6000600154905090565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620002ca919062000b56565b60405180910390a28160036000828254620002e6919062000bb7565b9250508190555060029050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405162000340919062000c64565b60405180910390a260405162000356906200096e565b604051809103906000f08015801562000373573d6000803e3d6000fd5b506000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508160016000828254620003c7919062000bb7565b92505081905550620003e7600183620003e1919062000bb7565b62000280565b50620003f262000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b81526004016200044e919062000997565b602060405180830381600087803b1580156200046957600080fd5b505af11580156200047e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004a4919062000cad565b5060019050919050565b60003073ffffffffffffffffffffffffffffffffffffffff1663929543626040518163ffffffff1660e01b815260040160006040518083038186803b158015620004f757600080fd5b505afa92505050801562000509575060015b620005f2576200051862000cec565b806308c379a014156200057d57506200053062000d87565b806200053d57506200057f565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a816040516200056e919062000eab565b60405180910390a150620005ec565b505b3d8060008114620005ad576040519150601f19603f3d011682016040523d82523d6000602084013e620005b2565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620005e29062000f45565b60405180910390a1505b620005f3565b5b3073ffffffffffffffffffffffffffffffffffffffff16638bfe44ff6040518163ffffffff1660e01b815260040160006040518083038186803b1580156200063a57600080fd5b505afa9250505080156200064c575060015b62000735576200065b62000cec565b806308c379a01415620006c057506200067362000d87565b80620006805750620006c2565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a81604051620006b1919062000eab565b60405180910390a1506200072f565b505b3d8060008114620006f0576040519150601f19603f3d011682016040523d82523d6000602084013e620006f5565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620007259062000f45565b60405180910390a1505b62000736565b5b60006200077a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007719062000fb7565b60405180910390fd5b60019050919050565b6001806040517fcf479181000000000000000000000000000000000000000000000000000000008152600401620007bc92919062001026565b60405180910390fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007f990620010a3565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200084c919062000c64565b60405180910390a2816001600082825462000868919062000bb7565b925050819055506200088860018362000882919062000bb7565b62000280565b506200089362000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b8152600401620008ef919062000997565b602060405180830381600087803b1580156200090a57600080fd5b505af11580156200091f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000945919062000cad565b5060019050919050565b60015481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b610ae380620010c683390190565b6000819050919050565b62000991816200097c565b82525050565b6000602082019050620009ae600083018462000986565b92915050565b6000819050919050565b620009c981620009b4565b82525050565b6000602082019050620009e66000830184620009be565b92915050565b6000604051905090565b600080fd5b62000a06816200097c565b811462000a1257600080fd5b50565b60008135905062000a2681620009fb565b92915050565b60006020828403121562000a455762000a44620009f6565b5b600062000a558482850162000a15565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000a8b8262000a5e565b9050919050565b62000a9d8162000a7e565b811462000aa957600080fd5b50565b60008135905062000abd8162000a92565b92915050565b60006020828403121562000adc5762000adb620009f6565b5b600062000aec8482850162000aac565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000b3e600e8362000af5565b915062000b4b8262000b06565b602082019050919050565b600060408201905062000b6d600083018462000986565b818103602083015262000b808162000b2f565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000bc4826200097c565b915062000bd1836200097c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000c095762000c0862000b88565b5b828201905092915050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b600062000c4c60058362000af5565b915062000c598262000c14565b602082019050919050565b600060408201905062000c7b600083018462000986565b818103602083015262000c8e8162000c3d565b905092915050565b60008151905062000ca781620009fb565b92915050565b60006020828403121562000cc65762000cc5620009f6565b5b600062000cd68482850162000c96565b91505092915050565b60008160e01c9050919050565b600060033d111562000d0e5760046000803e62000d0b60005162000cdf565b90505b90565b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000d5c8262000d11565b810181811067ffffffffffffffff8211171562000d7e5762000d7d62000d22565b5b80604052505050565b600060443d101562000d995762000e26565b62000da3620009ec565b60043d036004823e80513d602482011167ffffffffffffffff8211171562000dcd57505062000e26565b808201805167ffffffffffffffff81111562000ded575050505062000e26565b80602083010160043d03850181111562000e0c57505050505062000e26565b62000e1d8260200185018662000d51565b82955050505050505b90565b600081519050919050565b60005b8381101562000e5457808201518184015260208101905062000e37565b8381111562000e64576000848401525b50505050565b600062000e778262000e29565b62000e83818562000af5565b935062000e9581856020860162000e34565b62000ea08162000d11565b840191505092915050565b6000602082019050818103600083015262000ec7818462000e6a565b905092915050565b7f45787465726e616c2063616c6c206661696c656420776974686f757420616e2060008201527f6572726f72206d65737361676500000000000000000000000000000000000000602082015250565b600062000f2d602d8362000af5565b915062000f3a8262000ecf565b604082019050919050565b6000602082019050818103600083015262000f608162000f1e565b9050919050565b7f494e53554646494349454e542042414c414e4345000000000000000000000000600082015250565b600062000f9f60148362000af5565b915062000fac8262000f67565b602082019050919050565b6000602082019050818103600083015262000fd28162000f90565b9050919050565b6000819050919050565b6000819050919050565b60006200100e62001008620010028462000fd9565b62000fe3565b6200097c565b9050919050565b620010208162000fed565b82525050565b60006040820190506200103d600083018562001015565b6200104c602083018462001015565b9392505050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b60006200108b60178362000af5565b9150620010988262001053565b602082019050919050565b60006020820190508181036000830152620010be816200107c565b905091905056fe60806040526000600160006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b50600160009054906101000a900460ff161562000080576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200007790620002b5565b60405180910390fd5b60018060006101000a81548160ff021916908315150217905550620000bc701d6329f1c35ca4bfabb9f5610000000000620000c360201b60201c565b5062000482565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200010d919062000342565b60405180910390a281600080828254620001289190620003a3565b925050819055506200014e600183620001429190620003a3565b6200016960201b60201c565b506200015f620001df60201b60201c565b5060019050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620001b3919062000450565b60405180910390a28160026000828254620001cf9190620003a3565b9250508190555060029050919050565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b600082825260208201905092915050565b7f436f6e747261637420696e7374616e63652068617320616c726561647920626560008201527f656e20696e697469616c697a6564000000000000000000000000000000000000602082015250565b60006200029d602e836200022e565b9150620002aa826200023f565b604082019050919050565b60006020820190508181036000830152620002d0816200028e565b9050919050565b6000819050919050565b620002ec81620002d7565b82525050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006200032a6005836200022e565b91506200033782620002f2565b602082019050919050565b6000604082019050620003596000830184620002e1565b81810360208301526200036c816200031b565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620003b082620002d7565b9150620003bd83620002d7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620003f557620003f462000374565b5b828201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000438600e836200022e565b9150620004458262000400565b602082019050919050565b6000604082019050620004676000830184620002e1565b81810360208301526200047a8162000429565b905092915050565b61065180620004926000396000f3fe608060405234801561001057600080fd5b50600436106100625760003560e01c80631c717069146100675780631c93908c1461008557806392954362146100b5578063a0712d68146100bf578063b69ef8a8146100ef578063c9353cb51461010d575b600080fd5b61006f610129565b60405161007c91906102ed565b60405180910390f35b61009f600480360381019061009a9190610343565b610178565b6040516100ac919061037f565b60405180910390f35b6100bd6101ea565b005b6100d960048036038101906100d49190610343565b610225565b6040516100e6919061037f565b60405180910390f35b6100f76102b5565b604051610104919061037f565b60405180910390f35b610127600480360381019061012291906103f8565b6102bb565b005b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516101c09190610482565b60405180910390a281600260008282546101da91906104df565b9250508190555060029050919050565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161021c90610581565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405161026d91906105ed565b60405180910390a28160008082825461028691906104df565b925050819055506102a260018361029d91906104df565b610178565b506102ab610129565b5060019050919050565b60005481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b6000819050919050565b6102e7816102d4565b82525050565b600060208201905061030260008301846102de565b92915050565b600080fd5b6000819050919050565b6103208161030d565b811461032b57600080fd5b50565b60008135905061033d81610317565b92915050565b60006020828403121561035957610358610308565b5b60006103678482850161032e565b91505092915050565b6103798161030d565b82525050565b60006020820190506103946000830184610370565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006103c58261039a565b9050919050565b6103d5816103ba565b81146103e057600080fd5b50565b6000813590506103f2816103cc565b92915050565b60006020828403121561040e5761040d610308565b5b600061041c848285016103e3565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600061046c600e83610425565b915061047782610436565b602082019050919050565b60006040820190506104976000830184610370565b81810360208301526104a88161045f565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006104ea8261030d565b91506104f58361030d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561052a576105296104b0565b5b828201905092915050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b600061056b601783610425565b915061057682610535565b602082019050919050565b6000602082019050818103600083015261059a8161055e565b9050919050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006105d7600583610425565b91506105e2826105a1565b602082019050919050565b60006040820190506106026000830184610370565b8181036020830152610613816105ca565b90509291505056fea26469706673582212208743accab6cfcd1c8ccb3f51b787d679e803a77ce24ec642bd068883132fd5fa64736f6c63430008090033a264697066735822122066241fedca9ebd69f0cd9e4879f75428f5d4bf734eb072e52934a8b3161581f064736f6c63430008090033", "nonce": 2, "storage": { "0x0000000000000000000000000000000000000000000000000000000000000001": "0x00000000000000000000000000000000000000000000000000000000000003e8" diff --git a/test/historicstate/hardhat/scripts/geth_traces/Tracer.getBalance.replayTracer.json b/test/historicstate/hardhat/scripts/geth_traces/Tracer.getBalance.replayTracer.json index 8503b4acc..9bf648a70 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/Tracer.getBalance.replayTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/Tracer.getBalance.replayTracer.json @@ -20,6 +20,6 @@ "type": "call" } ], - "transactionHash": "0x752bc1798da03588616290690e1488192a4b4764e10de6d38488b6a90837637e", + "transactionHash": "0x9ad9cd25ca343d5251c2c2e73ae88d0079496279e5ee21ed294795ed27b5ea62", "vmTrace": null } \ No newline at end of file diff --git a/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint.callTracer.json b/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint.callTracer.json index 83c6e1cdb..8988acd9d 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint.callTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint.callTracer.json @@ -1,10 +1,10 @@ { - "error": "execution reverted", "from": "OWNER.address", - "gas": "0x1fb708", - "gasUsed": "0x10fd7", - "input": "0xa0712d6800000000000000000000000000000000000000000000000000000000000003e8", + "gas": "0x200b20", + "gasUsed": "0x1221b", "to": "Tracer.address", - "type": "CALL", - "value": "0x0" + "input": "0xa0712d6800000000000000000000000000000000000000000000000000000000000003e8", + "error": "execution reverted", + "value": "0x0", + "type": "CALL" } \ No newline at end of file diff --git a/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint.defaultTracer.json b/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint.defaultTracer.json index d633d59fa..50d146e7f 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint.defaultTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint.defaultTracer.json @@ -1,83 +1,83 @@ { + "gas": 74267, "failed": true, - "gas": 69591, "returnValue": "", "structLogs": [ { - "depth": 1, - "gas": 2078472, - "gasCost": 3, - "op": "PUSH1", "pc": 0, + "op": "PUSH1", + "gas": 2078784, + "gasCost": 3, + "depth": 1, "stack": [] }, { - "depth": 1, - "gas": 2078469, - "gasCost": 3, - "op": "PUSH1", "pc": 2, + "op": "PUSH1", + "gas": 2078781, + "gasCost": 3, + "depth": 1, "stack": [ "0x80" ] }, { - "depth": 1, - "gas": 2078466, - "gasCost": 12, - "op": "MSTORE", "pc": 4, + "op": "MSTORE", + "gas": 2078778, + "gasCost": 12, + "depth": 1, "stack": [ "0x80", "0x40" ] }, { - "depth": 1, - "gas": 2078454, - "gasCost": 2, - "op": "CALLVALUE", "pc": 5, + "op": "CALLVALUE", + "gas": 2078766, + "gasCost": 2, + "depth": 1, "stack": [] }, { - "depth": 1, - "gas": 2078452, - "gasCost": 3, - "op": "DUP1", "pc": 6, + "op": "DUP1", + "gas": 2078764, + "gasCost": 3, + "depth": 1, "stack": [ "0x0" ] }, { - "depth": 1, - "gas": 2078449, - "gasCost": 3, - "op": "ISZERO", "pc": 7, + "op": "ISZERO", + "gas": 2078761, + "gasCost": 3, + "depth": 1, "stack": [ "0x0", "0x0" ] }, { - "depth": 1, - "gas": 2078446, - "gasCost": 3, - "op": "PUSH3", "pc": 8, + "op": "PUSH3", + "gas": 2078758, + "gasCost": 3, + "depth": 1, "stack": [ "0x0", "0x1" ] }, { - "depth": 1, - "gas": 2078443, - "gasCost": 10, - "op": "JUMPI", "pc": 12, + "op": "JUMPI", + "gas": 2078755, + "gasCost": 10, + "depth": 1, "stack": [ "0x0", "0x1", @@ -85,141 +85,141 @@ ] }, { - "depth": 1, - "gas": 2078433, - "gasCost": 1, - "op": "JUMPDEST", "pc": 17, + "op": "JUMPDEST", + "gas": 2078745, + "gasCost": 1, + "depth": 1, "stack": [ "0x0" ] }, { - "depth": 1, - "gas": 2078432, - "gasCost": 2, - "op": "POP", "pc": 18, + "op": "POP", + "gas": 2078744, + "gasCost": 2, + "depth": 1, "stack": [ "0x0" ] }, { - "depth": 1, - "gas": 2078430, - "gasCost": 3, - "op": "PUSH1", "pc": 19, + "op": "PUSH1", + "gas": 2078742, + "gasCost": 3, + "depth": 1, "stack": [] }, { - "depth": 1, - "gas": 2078427, - "gasCost": 2, - "op": "CALLDATASIZE", "pc": 21, + "op": "CALLDATASIZE", + "gas": 2078739, + "gasCost": 2, + "depth": 1, "stack": [ "0x4" ] }, { - "depth": 1, - "gas": 2078425, - "gasCost": 3, - "op": "LT", "pc": 22, + "op": "LT", + "gas": 2078737, + "gasCost": 3, + "depth": 1, "stack": [ "0x4", "0x24" ] }, { - "depth": 1, - "gas": 2078422, - "gasCost": 3, - "op": "PUSH3", "pc": 23, + "op": "PUSH3", + "gas": 2078734, + "gasCost": 3, + "depth": 1, "stack": [ "0x0" ] }, { - "depth": 1, - "gas": 2078419, - "gasCost": 10, - "op": "JUMPI", "pc": 27, + "op": "JUMPI", + "gas": 2078731, + "gasCost": 10, + "depth": 1, "stack": [ "0x0", "0xac" ] }, { - "depth": 1, - "gas": 2078409, - "gasCost": 3, - "op": "PUSH1", "pc": 28, + "op": "PUSH1", + "gas": 2078721, + "gasCost": 3, + "depth": 1, "stack": [] }, { - "depth": 1, - "gas": 2078406, - "gasCost": 3, - "op": "CALLDATALOAD", "pc": 30, + "op": "CALLDATALOAD", + "gas": 2078718, + "gasCost": 3, + "depth": 1, "stack": [ "0x0" ] }, { - "depth": 1, - "gas": 2078403, - "gasCost": 3, - "op": "PUSH1", "pc": 31, + "op": "PUSH1", + "gas": 2078715, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d6800000000000000000000000000000000000000000000000000000000" ] }, { - "depth": 1, - "gas": 2078400, - "gasCost": 3, - "op": "SHR", "pc": 33, + "op": "SHR", + "gas": 2078712, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d6800000000000000000000000000000000000000000000000000000000", "0xe0" ] }, { - "depth": 1, - "gas": 2078397, - "gasCost": 3, - "op": "DUP1", "pc": 34, + "op": "DUP1", + "gas": 2078709, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68" ] }, { - "depth": 1, - "gas": 2078394, - "gasCost": 3, - "op": "PUSH4", "pc": 35, + "op": "PUSH4", + "gas": 2078706, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0xa0712d68" ] }, { - "depth": 1, - "gas": 2078391, - "gasCost": 3, - "op": "GT", "pc": 40, + "op": "GT", + "gas": 2078703, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0xa0712d68", @@ -227,22 +227,22 @@ ] }, { - "depth": 1, - "gas": 2078388, - "gasCost": 3, - "op": "PUSH3", "pc": 41, + "op": "PUSH3", + "gas": 2078700, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x0" ] }, { - "depth": 1, - "gas": 2078385, - "gasCost": 10, - "op": "JUMPI", "pc": 45, + "op": "JUMPI", + "gas": 2078697, + "gasCost": 10, + "depth": 1, "stack": [ "0xa0712d68", "0x0", @@ -250,32 +250,32 @@ ] }, { - "depth": 1, - "gas": 2078375, - "gasCost": 3, - "op": "DUP1", "pc": 46, + "op": "DUP1", + "gas": 2078687, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68" ] }, { - "depth": 1, - "gas": 2078372, - "gasCost": 3, - "op": "PUSH4", "pc": 47, + "op": "PUSH4", + "gas": 2078684, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0xa0712d68" ] }, { - "depth": 1, - "gas": 2078369, - "gasCost": 3, - "op": "EQ", "pc": 52, + "op": "EQ", + "gas": 2078681, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0xa0712d68", @@ -283,22 +283,22 @@ ] }, { - "depth": 1, - "gas": 2078366, - "gasCost": 3, - "op": "PUSH3", "pc": 53, + "op": "PUSH3", + "gas": 2078678, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x0" ] }, { - "depth": 1, - "gas": 2078363, - "gasCost": 10, - "op": "JUMPI", "pc": 57, + "op": "JUMPI", + "gas": 2078675, + "gasCost": 10, + "depth": 1, "stack": [ "0xa0712d68", "0x0", @@ -306,32 +306,32 @@ ] }, { - "depth": 1, - "gas": 2078353, - "gasCost": 3, - "op": "DUP1", "pc": 58, + "op": "DUP1", + "gas": 2078665, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68" ] }, { - "depth": 1, - "gas": 2078350, - "gasCost": 3, - "op": "PUSH4", "pc": 59, + "op": "PUSH4", + "gas": 2078662, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0xa0712d68" ] }, { - "depth": 1, - "gas": 2078347, - "gasCost": 3, - "op": "EQ", "pc": 64, + "op": "EQ", + "gas": 2078659, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0xa0712d68", @@ -339,22 +339,22 @@ ] }, { - "depth": 1, - "gas": 2078344, - "gasCost": 3, - "op": "PUSH3", "pc": 65, + "op": "PUSH3", + "gas": 2078656, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x0" ] }, { - "depth": 1, - "gas": 2078341, - "gasCost": 10, - "op": "JUMPI", "pc": 69, + "op": "JUMPI", + "gas": 2078653, + "gasCost": 10, + "depth": 1, "stack": [ "0xa0712d68", "0x0", @@ -362,32 +362,32 @@ ] }, { - "depth": 1, - "gas": 2078331, - "gasCost": 3, - "op": "DUP1", "pc": 70, + "op": "DUP1", + "gas": 2078643, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68" ] }, { - "depth": 1, - "gas": 2078328, - "gasCost": 3, - "op": "PUSH4", "pc": 71, + "op": "PUSH4", + "gas": 2078640, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0xa0712d68" ] }, { - "depth": 1, - "gas": 2078325, - "gasCost": 3, - "op": "EQ", "pc": 76, + "op": "EQ", + "gas": 2078637, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0xa0712d68", @@ -395,22 +395,22 @@ ] }, { - "depth": 1, - "gas": 2078322, - "gasCost": 3, - "op": "PUSH3", "pc": 77, + "op": "PUSH3", + "gas": 2078634, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1" ] }, { - "depth": 1, - "gas": 2078319, - "gasCost": 10, - "op": "JUMPI", "pc": 81, + "op": "JUMPI", + "gas": 2078631, + "gasCost": 10, + "depth": 1, "stack": [ "0xa0712d68", "0x1", @@ -418,42 +418,42 @@ ] }, { - "depth": 1, - "gas": 2078309, - "gasCost": 1, - "op": "JUMPDEST", "pc": 431, + "op": "JUMPDEST", + "gas": 2078621, + "gasCost": 1, + "depth": 1, "stack": [ "0xa0712d68" ] }, { - "depth": 1, - "gas": 2078308, - "gasCost": 3, - "op": "PUSH3", "pc": 432, - "stack": [ + "op": "PUSH3", + "gas": 2078620, + "gasCost": 3, + "depth": 1, + "stack": [ "0xa0712d68" ] }, { - "depth": 1, - "gas": 2078305, - "gasCost": 3, - "op": "PUSH1", "pc": 436, + "op": "PUSH1", + "gas": 2078617, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd" ] }, { - "depth": 1, - "gas": 2078302, - "gasCost": 3, - "op": "DUP1", "pc": 438, + "op": "DUP1", + "gas": 2078614, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -461,11 +461,11 @@ ] }, { - "depth": 1, - "gas": 2078299, - "gasCost": 2, - "op": "CALLDATASIZE", "pc": 439, + "op": "CALLDATASIZE", + "gas": 2078611, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -474,11 +474,11 @@ ] }, { - "depth": 1, - "gas": 2078297, - "gasCost": 3, - "op": "SUB", "pc": 440, + "op": "SUB", + "gas": 2078609, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -488,11 +488,11 @@ ] }, { - "depth": 1, - "gas": 2078294, - "gasCost": 3, - "op": "DUP2", "pc": 441, + "op": "DUP2", + "gas": 2078606, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -501,11 +501,11 @@ ] }, { - "depth": 1, - "gas": 2078291, - "gasCost": 3, - "op": "ADD", "pc": 442, + "op": "ADD", + "gas": 2078603, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -515,11 +515,11 @@ ] }, { - "depth": 1, - "gas": 2078288, - "gasCost": 3, - "op": "SWAP1", "pc": 443, + "op": "SWAP1", + "gas": 2078600, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -528,11 +528,11 @@ ] }, { - "depth": 1, - "gas": 2078285, - "gasCost": 3, - "op": "PUSH3", "pc": 444, + "op": "PUSH3", + "gas": 2078597, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -541,11 +541,11 @@ ] }, { - "depth": 1, - "gas": 2078282, - "gasCost": 3, - "op": "SWAP2", "pc": 448, + "op": "SWAP2", + "gas": 2078594, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -555,11 +555,11 @@ ] }, { - "depth": 1, - "gas": 2078279, - "gasCost": 3, - "op": "SWAP1", "pc": 449, + "op": "SWAP1", + "gas": 2078591, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -569,11 +569,11 @@ ] }, { - "depth": 1, - "gas": 2078276, - "gasCost": 3, - "op": "PUSH3", "pc": 450, + "op": "PUSH3", + "gas": 2078588, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -583,26 +583,26 @@ ] }, { - "depth": 1, - "gas": 2078273, - "gasCost": 8, - "op": "JUMP", "pc": 454, + "op": "JUMP", + "gas": 2078585, + "gasCost": 8, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x1c7", "0x24", "0x4", - "0xa0a" + "0xa2c" ] }, { - "depth": 1, - "gas": 2078265, - "gasCost": 1, + "pc": 2604, "op": "JUMPDEST", - "pc": 2570, + "gas": 2078577, + "gasCost": 1, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -612,11 +612,11 @@ ] }, { - "depth": 1, - "gas": 2078264, - "gasCost": 3, + "pc": 2605, "op": "PUSH1", - "pc": 2571, + "gas": 2078576, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -626,11 +626,11 @@ ] }, { - "depth": 1, - "gas": 2078261, - "gasCost": 3, + "pc": 2607, "op": "PUSH1", - "pc": 2573, + "gas": 2078573, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -641,11 +641,11 @@ ] }, { - "depth": 1, - "gas": 2078258, - "gasCost": 3, + "pc": 2609, "op": "DUP3", - "pc": 2575, + "gas": 2078570, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -657,11 +657,11 @@ ] }, { - "depth": 1, - "gas": 2078255, - "gasCost": 3, + "pc": 2610, "op": "DUP5", - "pc": 2576, + "gas": 2078567, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -674,11 +674,11 @@ ] }, { - "depth": 1, - "gas": 2078252, - "gasCost": 3, + "pc": 2611, "op": "SUB", - "pc": 2577, + "gas": 2078564, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -692,11 +692,11 @@ ] }, { - "depth": 1, - "gas": 2078249, - "gasCost": 3, + "pc": 2612, "op": "SLT", - "pc": 2578, + "gas": 2078561, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -709,11 +709,11 @@ ] }, { - "depth": 1, - "gas": 2078246, - "gasCost": 3, + "pc": 2613, "op": "ISZERO", - "pc": 2579, + "gas": 2078558, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -725,11 +725,11 @@ ] }, { - "depth": 1, - "gas": 2078243, - "gasCost": 3, + "pc": 2614, "op": "PUSH3", - "pc": 2580, + "gas": 2078555, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -741,11 +741,11 @@ ] }, { - "depth": 1, - "gas": 2078240, - "gasCost": 10, + "pc": 2618, "op": "JUMPI", - "pc": 2584, + "gas": 2078552, + "gasCost": 10, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -754,15 +754,15 @@ "0x4", "0x0", "0x1", - "0xa23" + "0xa45" ] }, { - "depth": 1, - "gas": 2078230, - "gasCost": 1, + "pc": 2629, "op": "JUMPDEST", - "pc": 2595, + "gas": 2078542, + "gasCost": 1, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -773,11 +773,11 @@ ] }, { - "depth": 1, - "gas": 2078229, - "gasCost": 3, + "pc": 2630, "op": "PUSH1", - "pc": 2596, + "gas": 2078541, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -788,11 +788,11 @@ ] }, { - "depth": 1, - "gas": 2078226, - "gasCost": 3, + "pc": 2632, "op": "PUSH3", - "pc": 2598, + "gas": 2078538, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -804,11 +804,11 @@ ] }, { - "depth": 1, - "gas": 2078223, - "gasCost": 3, + "pc": 2636, "op": "DUP5", - "pc": 2602, + "gas": 2078535, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -817,15 +817,15 @@ "0x4", "0x0", "0x0", - "0xa33" + "0xa55" ] }, { - "depth": 1, - "gas": 2078220, - "gasCost": 3, + "pc": 2637, "op": "DUP3", - "pc": 2603, + "gas": 2078532, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -834,16 +834,16 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24" ] }, { - "depth": 1, - "gas": 2078217, - "gasCost": 3, + "pc": 2638, "op": "DUP6", - "pc": 2604, + "gas": 2078529, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -852,17 +852,17 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x0" ] }, { - "depth": 1, - "gas": 2078214, - "gasCost": 3, + "pc": 2639, "op": "ADD", - "pc": 2605, + "gas": 2078526, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -871,18 +871,18 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x0", "0x4" ] }, { - "depth": 1, - "gas": 2078211, - "gasCost": 3, + "pc": 2640, "op": "PUSH3", - "pc": 2606, + "gas": 2078523, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -891,17 +891,17 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4" ] }, { - "depth": 1, - "gas": 2078208, - "gasCost": 8, + "pc": 2644, "op": "JUMP", - "pc": 2610, + "gas": 2078520, + "gasCost": 8, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -910,18 +910,18 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", - "0x9f3" + "0xa15" ] }, { - "depth": 1, - "gas": 2078200, - "gasCost": 1, + "pc": 2581, "op": "JUMPDEST", - "pc": 2547, + "gas": 2078512, + "gasCost": 1, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -930,17 +930,17 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4" ] }, { - "depth": 1, - "gas": 2078199, - "gasCost": 3, + "pc": 2582, "op": "PUSH1", - "pc": 2548, + "gas": 2078511, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -949,17 +949,17 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4" ] }, { - "depth": 1, - "gas": 2078196, - "gasCost": 3, + "pc": 2584, "op": "DUP2", - "pc": 2550, + "gas": 2078508, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -968,18 +968,18 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x0" ] }, { - "depth": 1, - "gas": 2078193, - "gasCost": 3, + "pc": 2585, "op": "CALLDATALOAD", - "pc": 2551, + "gas": 2078505, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -988,7 +988,7 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x0", @@ -996,11 +996,11 @@ ] }, { - "depth": 1, - "gas": 2078190, - "gasCost": 3, + "pc": 2586, "op": "SWAP1", - "pc": 2552, + "gas": 2078502, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -1009,7 +1009,7 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x0", @@ -1017,11 +1017,11 @@ ] }, { - "depth": 1, - "gas": 2078187, - "gasCost": 2, + "pc": 2587, "op": "POP", - "pc": 2553, + "gas": 2078499, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -1030,7 +1030,7 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8", @@ -1038,11 +1038,11 @@ ] }, { - "depth": 1, - "gas": 2078185, - "gasCost": 3, + "pc": 2588, "op": "PUSH3", - "pc": 2554, + "gas": 2078497, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -1051,18 +1051,18 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8" ] }, { - "depth": 1, - "gas": 2078182, - "gasCost": 3, + "pc": 2592, "op": "DUP2", - "pc": 2558, + "gas": 2078494, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -1071,19 +1071,19 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8", - "0xa04" + "0xa26" ] }, { - "depth": 1, - "gas": 2078179, - "gasCost": 3, + "pc": 2593, "op": "PUSH3", - "pc": 2559, + "gas": 2078491, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -1092,20 +1092,20 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8", - "0xa04", + "0xa26", "0x3e8" ] }, { - "depth": 1, - "gas": 2078176, - "gasCost": 8, + "pc": 2597, "op": "JUMP", - "pc": 2563, + "gas": 2078488, + "gasCost": 8, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -1114,21 +1114,21 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8", - "0xa04", + "0xa26", "0x3e8", - "0x9d9" + "0x9fb" ] }, { - "depth": 1, - "gas": 2078168, - "gasCost": 1, + "pc": 2555, "op": "JUMPDEST", - "pc": 2521, + "gas": 2078480, + "gasCost": 1, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -1137,20 +1137,20 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8", - "0xa04", + "0xa26", "0x3e8" ] }, { - "depth": 1, - "gas": 2078167, - "gasCost": 3, + "pc": 2556, "op": "PUSH3", - "pc": 2522, + "gas": 2078479, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -1159,20 +1159,20 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8", - "0xa04", + "0xa26", "0x3e8" ] }, { - "depth": 1, - "gas": 2078164, - "gasCost": 3, + "pc": 2560, "op": "DUP2", - "pc": 2526, + "gas": 2078476, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -1181,21 +1181,21 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8", - "0xa04", + "0xa26", "0x3e8", - "0x9e4" + "0xa06" ] }, { - "depth": 1, - "gas": 2078161, - "gasCost": 3, + "pc": 2561, "op": "PUSH3", - "pc": 2527, + "gas": 2078473, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -1204,22 +1204,22 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8", - "0xa04", + "0xa26", "0x3e8", - "0x9e4", + "0xa06", "0x3e8" ] }, { - "depth": 1, - "gas": 2078158, - "gasCost": 8, + "pc": 2565, "op": "JUMP", - "pc": 2531, + "gas": 2078470, + "gasCost": 8, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -1228,23 +1228,23 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8", - "0xa04", + "0xa26", "0x3e8", - "0x9e4", + "0xa06", "0x3e8", - "0x95a" + "0x97c" ] }, { - "depth": 1, - "gas": 2078150, - "gasCost": 1, + "pc": 2428, "op": "JUMPDEST", - "pc": 2394, + "gas": 2078462, + "gasCost": 1, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -1253,22 +1253,22 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8", - "0xa04", + "0xa26", "0x3e8", - "0x9e4", + "0xa06", "0x3e8" ] }, { - "depth": 1, - "gas": 2078149, - "gasCost": 3, + "pc": 2429, "op": "PUSH1", - "pc": 2395, + "gas": 2078461, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -1277,23 +1277,23 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8", - "0xa04", + "0xa26", "0x3e8", - "0x9e4", + "0xa06", "0x3e8" ] }, { - "depth": 1, - "gas": 2078146, - "gasCost": 3, + "pc": 2431, "op": "DUP2", - "pc": 2397, - "stack": [ + "gas": 2078458, + "gasCost": 3, + "depth": 1, + "stack": [ "0xa0712d68", "0x1cd", "0x1c7", @@ -1301,23 +1301,23 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8", - "0xa04", + "0xa26", "0x3e8", - "0x9e4", + "0xa06", "0x3e8", "0x0" ] }, { - "depth": 1, - "gas": 2078143, - "gasCost": 3, + "pc": 2432, "op": "SWAP1", - "pc": 2398, + "gas": 2078455, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -1326,24 +1326,24 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8", - "0xa04", + "0xa26", "0x3e8", - "0x9e4", + "0xa06", "0x3e8", "0x0", "0x3e8" ] }, { - "depth": 1, - "gas": 2078140, - "gasCost": 2, + "pc": 2433, "op": "POP", - "pc": 2399, + "gas": 2078452, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -1352,24 +1352,24 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8", - "0xa04", + "0xa26", "0x3e8", - "0x9e4", + "0xa06", "0x3e8", "0x3e8", "0x0" ] }, { - "depth": 1, - "gas": 2078138, - "gasCost": 3, + "pc": 2434, "op": "SWAP2", - "pc": 2400, + "gas": 2078450, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -1378,23 +1378,23 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8", - "0xa04", + "0xa26", "0x3e8", - "0x9e4", + "0xa06", "0x3e8", "0x3e8" ] }, { - "depth": 1, - "gas": 2078135, - "gasCost": 3, + "pc": 2435, "op": "SWAP1", - "pc": 2401, + "gas": 2078447, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -1403,23 +1403,23 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8", - "0xa04", + "0xa26", "0x3e8", "0x3e8", "0x3e8", - "0x9e4" + "0xa06" ] }, { - "depth": 1, - "gas": 2078132, - "gasCost": 2, + "pc": 2436, "op": "POP", - "pc": 2402, + "gas": 2078444, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -1428,23 +1428,23 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8", - "0xa04", + "0xa26", "0x3e8", "0x3e8", - "0x9e4", + "0xa06", "0x3e8" ] }, { - "depth": 1, - "gas": 2078130, - "gasCost": 8, + "pc": 2437, "op": "JUMP", - "pc": 2403, + "gas": 2078442, + "gasCost": 8, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -1453,22 +1453,22 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8", - "0xa04", + "0xa26", "0x3e8", "0x3e8", - "0x9e4" + "0xa06" ] }, { - "depth": 1, - "gas": 2078122, - "gasCost": 1, + "pc": 2566, "op": "JUMPDEST", - "pc": 2532, + "gas": 2078434, + "gasCost": 1, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -1477,21 +1477,21 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8", - "0xa04", + "0xa26", "0x3e8", "0x3e8" ] }, { - "depth": 1, - "gas": 2078121, - "gasCost": 3, + "pc": 2567, "op": "DUP2", - "pc": 2533, + "gas": 2078433, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -1500,21 +1500,21 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8", - "0xa04", + "0xa26", "0x3e8", "0x3e8" ] }, { - "depth": 1, - "gas": 2078118, - "gasCost": 3, + "pc": 2568, "op": "EQ", - "pc": 2534, + "gas": 2078430, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -1523,22 +1523,22 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8", - "0xa04", + "0xa26", "0x3e8", "0x3e8", "0x3e8" ] }, { - "depth": 1, - "gas": 2078115, - "gasCost": 3, + "pc": 2569, "op": "PUSH3", - "pc": 2535, + "gas": 2078427, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -1547,21 +1547,21 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8", - "0xa04", + "0xa26", "0x3e8", "0x1" ] }, { - "depth": 1, - "gas": 2078112, - "gasCost": 10, + "pc": 2573, "op": "JUMPI", - "pc": 2539, + "gas": 2078424, + "gasCost": 10, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -1570,22 +1570,22 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8", - "0xa04", + "0xa26", "0x3e8", "0x1", - "0x9f0" + "0xa12" ] }, { - "depth": 1, - "gas": 2078102, - "gasCost": 1, + "pc": 2578, "op": "JUMPDEST", - "pc": 2544, + "gas": 2078414, + "gasCost": 1, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -1594,20 +1594,20 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8", - "0xa04", + "0xa26", "0x3e8" ] }, { - "depth": 1, - "gas": 2078101, - "gasCost": 2, + "pc": 2579, "op": "POP", - "pc": 2545, + "gas": 2078413, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -1616,20 +1616,20 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8", - "0xa04", + "0xa26", "0x3e8" ] }, { - "depth": 1, - "gas": 2078099, - "gasCost": 8, + "pc": 2580, "op": "JUMP", - "pc": 2546, + "gas": 2078411, + "gasCost": 8, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -1638,19 +1638,19 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8", - "0xa04" + "0xa26" ] }, { - "depth": 1, - "gas": 2078091, - "gasCost": 1, + "pc": 2598, "op": "JUMPDEST", - "pc": 2564, + "gas": 2078403, + "gasCost": 1, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -1659,18 +1659,18 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8" ] }, { - "depth": 1, - "gas": 2078090, - "gasCost": 3, + "pc": 2599, "op": "SWAP3", - "pc": 2565, + "gas": 2078402, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -1679,18 +1679,18 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8" ] }, { - "depth": 1, - "gas": 2078087, - "gasCost": 3, + "pc": 2600, "op": "SWAP2", - "pc": 2566, + "gas": 2078399, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -1702,15 +1702,15 @@ "0x3e8", "0x24", "0x4", - "0xa33" + "0xa55" ] }, { - "depth": 1, - "gas": 2078084, - "gasCost": 2, + "pc": 2601, "op": "POP", - "pc": 2567, + "gas": 2078396, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -1720,17 +1720,17 @@ "0x0", "0x0", "0x3e8", - "0xa33", + "0xa55", "0x4", "0x24" ] }, { - "depth": 1, - "gas": 2078082, - "gasCost": 2, + "pc": 2602, "op": "POP", - "pc": 2568, + "gas": 2078394, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -1740,16 +1740,16 @@ "0x0", "0x0", "0x3e8", - "0xa33", + "0xa55", "0x4" ] }, { - "depth": 1, - "gas": 2078080, - "gasCost": 8, + "pc": 2603, "op": "JUMP", - "pc": 2569, + "gas": 2078392, + "gasCost": 8, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -1759,15 +1759,15 @@ "0x0", "0x0", "0x3e8", - "0xa33" + "0xa55" ] }, { - "depth": 1, - "gas": 2078072, - "gasCost": 1, + "pc": 2645, "op": "JUMPDEST", - "pc": 2611, + "gas": 2078384, + "gasCost": 1, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -1780,11 +1780,11 @@ ] }, { - "depth": 1, - "gas": 2078071, - "gasCost": 3, + "pc": 2646, "op": "SWAP2", - "pc": 2612, + "gas": 2078383, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -1797,11 +1797,11 @@ ] }, { - "depth": 1, - "gas": 2078068, - "gasCost": 2, + "pc": 2647, "op": "POP", - "pc": 2613, + "gas": 2078380, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -1814,11 +1814,11 @@ ] }, { - "depth": 1, - "gas": 2078066, - "gasCost": 2, + "pc": 2648, "op": "POP", - "pc": 2614, + "gas": 2078378, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -1830,11 +1830,11 @@ ] }, { - "depth": 1, - "gas": 2078064, - "gasCost": 3, + "pc": 2649, "op": "SWAP3", - "pc": 2615, + "gas": 2078376, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -1845,11 +1845,11 @@ ] }, { - "depth": 1, - "gas": 2078061, - "gasCost": 3, + "pc": 2650, "op": "SWAP2", - "pc": 2616, + "gas": 2078373, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -1860,11 +1860,11 @@ ] }, { - "depth": 1, - "gas": 2078058, - "gasCost": 2, + "pc": 2651, "op": "POP", - "pc": 2617, + "gas": 2078370, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -1875,11 +1875,11 @@ ] }, { - "depth": 1, - "gas": 2078056, - "gasCost": 2, + "pc": 2652, "op": "POP", - "pc": 2618, + "gas": 2078368, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -1889,11 +1889,11 @@ ] }, { - "depth": 1, - "gas": 2078054, - "gasCost": 8, + "pc": 2653, "op": "JUMP", - "pc": 2619, + "gas": 2078366, + "gasCost": 8, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -1902,11 +1902,11 @@ ] }, { - "depth": 1, - "gas": 2078046, - "gasCost": 1, - "op": "JUMPDEST", "pc": 455, + "op": "JUMPDEST", + "gas": 2078358, + "gasCost": 1, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -1914,11 +1914,11 @@ ] }, { - "depth": 1, - "gas": 2078045, - "gasCost": 3, - "op": "PUSH3", "pc": 456, + "op": "PUSH3", + "gas": 2078357, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -1926,24 +1926,24 @@ ] }, { - "depth": 1, - "gas": 2078042, - "gasCost": 8, - "op": "JUMP", "pc": 460, + "op": "JUMP", + "gas": 2078354, + "gasCost": 8, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", - "0x7f0" + "0x802" ] }, { - "depth": 1, - "gas": 2078034, - "gasCost": 1, + "pc": 2050, "op": "JUMPDEST", - "pc": 2032, + "gas": 2078346, + "gasCost": 1, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -1951,11 +1951,11 @@ ] }, { - "depth": 1, - "gas": 2078033, - "gasCost": 3, + "pc": 2051, "op": "PUSH1", - "pc": 2033, + "gas": 2078345, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -1963,11 +1963,11 @@ ] }, { - "depth": 1, - "gas": 2078030, - "gasCost": 2, + "pc": 2053, "op": "CALLER", - "pc": 2035, + "gas": 2078342, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -1976,11 +1976,11 @@ ] }, { - "depth": 1, - "gas": 2078028, - "gasCost": 3, + "pc": 2054, "op": "PUSH20", - "pc": 2036, + "gas": 2078340, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -1990,11 +1990,11 @@ ] }, { - "depth": 1, - "gas": 2078025, - "gasCost": 3, + "pc": 2075, "op": "AND", - "pc": 2057, + "gas": 2078337, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -2005,11 +2005,11 @@ ] }, { - "depth": 1, - "gas": 2078022, - "gasCost": 3, + "pc": 2076, "op": "PUSH32", - "pc": 2058, + "gas": 2078334, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -2019,11 +2019,11 @@ ] }, { - "depth": 1, - "gas": 2078019, - "gasCost": 3, + "pc": 2109, "op": "DUP4", - "pc": 2091, + "gas": 2078331, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -2034,11 +2034,11 @@ ] }, { - "depth": 1, - "gas": 2078016, - "gasCost": 3, + "pc": 2110, "op": "PUSH1", - "pc": 2092, + "gas": 2078328, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -2050,11 +2050,11 @@ ] }, { - "depth": 1, - "gas": 2078013, - "gasCost": 3, + "pc": 2112, "op": "MLOAD", - "pc": 2094, + "gas": 2078325, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -2067,11 +2067,11 @@ ] }, { - "depth": 1, - "gas": 2078010, - "gasCost": 3, + "pc": 2113, "op": "PUSH3", - "pc": 2095, + "gas": 2078322, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -2084,11 +2084,11 @@ ] }, { - "depth": 1, - "gas": 2078007, - "gasCost": 3, + "pc": 2117, "op": "SWAP2", - "pc": 2099, + "gas": 2078319, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -2098,15 +2098,15 @@ "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", "0x3e8", "0x80", - "0x83a" + "0x84c" ] }, { - "depth": 1, - "gas": 2078004, - "gasCost": 3, + "pc": 2118, "op": "SWAP1", - "pc": 2100, + "gas": 2078316, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -2114,17 +2114,17 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x80", "0x3e8" ] }, { - "depth": 1, - "gas": 2078001, - "gasCost": 3, + "pc": 2119, "op": "PUSH3", - "pc": 2101, + "gas": 2078313, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -2132,17 +2132,17 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80" ] }, { - "depth": 1, - "gas": 2077998, - "gasCost": 8, + "pc": 2123, "op": "JUMP", - "pc": 2105, + "gas": 2078310, + "gasCost": 8, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -2150,18 +2150,18 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", - "0xc20" + "0xc64" ] }, { - "depth": 1, - "gas": 2077990, - "gasCost": 1, + "pc": 3172, "op": "JUMPDEST", - "pc": 3104, + "gas": 2078302, + "gasCost": 1, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -2169,17 +2169,17 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80" ] }, { + "pc": 3173, + "op": "PUSH1", + "gas": 2078301, + "gasCost": 3, "depth": 1, - "gas": 2077989, - "gasCost": 3, - "op": "PUSH1", - "pc": 3105, "stack": [ "0xa0712d68", "0x1cd", @@ -2187,17 +2187,17 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80" ] }, { - "depth": 1, - "gas": 2077986, - "gasCost": 3, + "pc": 3175, "op": "PUSH1", - "pc": 3107, + "gas": 2078298, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -2205,18 +2205,18 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0x0" ] }, { - "depth": 1, - "gas": 2077983, - "gasCost": 3, + "pc": 3177, "op": "DUP3", - "pc": 3109, + "gas": 2078295, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -2224,7 +2224,7 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0x0", @@ -2232,11 +2232,11 @@ ] }, { - "depth": 1, - "gas": 2077980, - "gasCost": 3, + "pc": 3178, "op": "ADD", - "pc": 3110, + "gas": 2078292, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -2244,7 +2244,7 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0x0", @@ -2253,11 +2253,11 @@ ] }, { - "depth": 1, - "gas": 2077977, - "gasCost": 3, + "pc": 3179, "op": "SWAP1", - "pc": 3111, + "gas": 2078289, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -2265,7 +2265,7 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0x0", @@ -2273,11 +2273,11 @@ ] }, { - "depth": 1, - "gas": 2077974, - "gasCost": 2, + "pc": 3180, "op": "POP", - "pc": 3112, + "gas": 2078286, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -2285,7 +2285,7 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", @@ -2293,11 +2293,11 @@ ] }, { - "depth": 1, - "gas": 2077972, - "gasCost": 3, + "pc": 3181, "op": "PUSH3", - "pc": 3113, + "gas": 2078284, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -2305,18 +2305,18 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0" ] }, { - "depth": 1, - "gas": 2077969, - "gasCost": 3, + "pc": 3185, "op": "PUSH1", - "pc": 3117, + "gas": 2078281, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -2324,19 +2324,19 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", - "0xc37" + "0xc7b" ] }, { - "depth": 1, - "gas": 2077966, - "gasCost": 3, + "pc": 3187, "op": "DUP4", - "pc": 3119, + "gas": 2078278, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -2344,20 +2344,20 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", - "0xc37", + "0xc7b", "0x0" ] }, { - "depth": 1, - "gas": 2077963, - "gasCost": 3, + "pc": 3188, "op": "ADD", - "pc": 3120, + "gas": 2078275, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -2365,21 +2365,21 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", - "0xc37", + "0xc7b", "0x0", "0x80" ] }, { - "depth": 1, - "gas": 2077960, - "gasCost": 3, + "pc": 3189, "op": "DUP5", - "pc": 3121, + "gas": 2078272, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -2387,20 +2387,20 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", - "0xc37", + "0xc7b", "0x80" ] }, { - "depth": 1, - "gas": 2077957, - "gasCost": 3, + "pc": 3190, "op": "PUSH3", - "pc": 3122, + "gas": 2078269, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -2408,21 +2408,21 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", - "0xc37", + "0xc7b", "0x80", "0x3e8" ] }, { - "depth": 1, - "gas": 2077954, - "gasCost": 8, + "pc": 3194, "op": "JUMP", - "pc": 3126, + "gas": 2078266, + "gasCost": 8, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -2430,22 +2430,22 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", - "0xc37", + "0xc7b", "0x80", "0x3e8", - "0x964" + "0x986" ] }, { - "depth": 1, - "gas": 2077946, - "gasCost": 1, + "pc": 2438, "op": "JUMPDEST", - "pc": 2404, + "gas": 2078258, + "gasCost": 1, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -2453,21 +2453,21 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", - "0xc37", + "0xc7b", "0x80", "0x3e8" ] }, { - "depth": 1, - "gas": 2077945, - "gasCost": 3, + "pc": 2439, "op": "PUSH3", - "pc": 2405, + "gas": 2078257, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -2475,21 +2475,21 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", - "0xc37", + "0xc7b", "0x80", "0x3e8" ] }, { - "depth": 1, - "gas": 2077942, - "gasCost": 3, + "pc": 2443, "op": "DUP2", - "pc": 2409, + "gas": 2078254, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -2497,22 +2497,22 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", - "0xc37", + "0xc7b", "0x80", "0x3e8", - "0x96f" + "0x991" ] }, { - "depth": 1, - "gas": 2077939, - "gasCost": 3, + "pc": 2444, "op": "PUSH3", - "pc": 2410, + "gas": 2078251, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -2520,23 +2520,23 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", - "0xc37", + "0xc7b", "0x80", "0x3e8", - "0x96f", + "0x991", "0x3e8" ] }, { - "depth": 1, - "gas": 2077936, - "gasCost": 8, + "pc": 2448, "op": "JUMP", - "pc": 2414, + "gas": 2078248, + "gasCost": 8, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -2544,24 +2544,24 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", - "0xc37", + "0xc7b", "0x80", "0x3e8", - "0x96f", + "0x991", "0x3e8", - "0x95a" + "0x97c" ] }, { - "depth": 1, - "gas": 2077928, - "gasCost": 1, + "pc": 2428, "op": "JUMPDEST", - "pc": 2394, + "gas": 2078240, + "gasCost": 1, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -2569,23 +2569,23 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", - "0xc37", + "0xc7b", "0x80", "0x3e8", - "0x96f", + "0x991", "0x3e8" ] }, { - "depth": 1, - "gas": 2077927, - "gasCost": 3, + "pc": 2429, "op": "PUSH1", - "pc": 2395, + "gas": 2078239, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -2593,23 +2593,23 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", - "0xc37", + "0xc7b", "0x80", "0x3e8", - "0x96f", + "0x991", "0x3e8" ] }, { - "depth": 1, - "gas": 2077924, - "gasCost": 3, + "pc": 2431, "op": "DUP2", - "pc": 2397, + "gas": 2078236, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -2617,24 +2617,24 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", - "0xc37", + "0xc7b", "0x80", "0x3e8", - "0x96f", + "0x991", "0x3e8", "0x0" ] }, { - "depth": 1, - "gas": 2077921, - "gasCost": 3, + "pc": 2432, "op": "SWAP1", - "pc": 2398, + "gas": 2078233, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -2642,25 +2642,25 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", - "0xc37", + "0xc7b", "0x80", "0x3e8", - "0x96f", + "0x991", "0x3e8", "0x0", "0x3e8" ] }, { - "depth": 1, - "gas": 2077918, - "gasCost": 2, + "pc": 2433, "op": "POP", - "pc": 2399, + "gas": 2078230, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -2668,25 +2668,25 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", - "0xc37", + "0xc7b", "0x80", "0x3e8", - "0x96f", + "0x991", "0x3e8", "0x3e8", "0x0" ] }, { - "depth": 1, - "gas": 2077916, - "gasCost": 3, + "pc": 2434, "op": "SWAP2", - "pc": 2400, + "gas": 2078228, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -2694,24 +2694,24 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", - "0xc37", + "0xc7b", "0x80", "0x3e8", - "0x96f", + "0x991", "0x3e8", "0x3e8" ] }, { - "depth": 1, - "gas": 2077913, - "gasCost": 3, + "pc": 2435, "op": "SWAP1", - "pc": 2401, + "gas": 2078225, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -2719,24 +2719,24 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", - "0xc37", + "0xc7b", "0x80", "0x3e8", "0x3e8", "0x3e8", - "0x96f" + "0x991" ] }, { - "depth": 1, - "gas": 2077910, - "gasCost": 2, + "pc": 2436, "op": "POP", - "pc": 2402, + "gas": 2078222, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -2744,24 +2744,24 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", - "0xc37", + "0xc7b", "0x80", "0x3e8", "0x3e8", - "0x96f", + "0x991", "0x3e8" ] }, { - "depth": 1, - "gas": 2077908, - "gasCost": 8, + "pc": 2437, "op": "JUMP", - "pc": 2403, + "gas": 2078220, + "gasCost": 8, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -2769,23 +2769,23 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", - "0xc37", + "0xc7b", "0x80", "0x3e8", "0x3e8", - "0x96f" + "0x991" ] }, { - "depth": 1, - "gas": 2077900, - "gasCost": 1, + "pc": 2449, "op": "JUMPDEST", - "pc": 2415, + "gas": 2078212, + "gasCost": 1, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -2793,22 +2793,22 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", - "0xc37", + "0xc7b", "0x80", "0x3e8", "0x3e8" ] }, { - "depth": 1, - "gas": 2077899, - "gasCost": 3, + "pc": 2450, "op": "DUP3", - "pc": 2416, + "gas": 2078211, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -2816,22 +2816,22 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", - "0xc37", + "0xc7b", "0x80", "0x3e8", "0x3e8" ] }, { - "depth": 1, - "gas": 2077896, - "gasCost": 9, + "pc": 2451, "op": "MSTORE", - "pc": 2417, + "gas": 2078208, + "gasCost": 9, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -2839,11 +2839,11 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", - "0xc37", + "0xc7b", "0x80", "0x3e8", "0x3e8", @@ -2851,11 +2851,11 @@ ] }, { - "depth": 1, - "gas": 2077887, - "gasCost": 2, + "pc": 2452, "op": "POP", - "pc": 2418, + "gas": 2078199, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -2863,21 +2863,21 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", - "0xc37", + "0xc7b", "0x80", "0x3e8" ] }, { - "depth": 1, - "gas": 2077885, - "gasCost": 2, + "pc": 2453, "op": "POP", - "pc": 2419, + "gas": 2078197, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -2885,20 +2885,20 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", - "0xc37", + "0xc7b", "0x80" ] }, { - "depth": 1, - "gas": 2077883, - "gasCost": 8, + "pc": 2454, "op": "JUMP", - "pc": 2420, + "gas": 2078195, + "gasCost": 8, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -2906,19 +2906,19 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", - "0xc37" + "0xc7b" ] }, { - "depth": 1, - "gas": 2077875, - "gasCost": 1, + "pc": 3195, "op": "JUMPDEST", - "pc": 3127, + "gas": 2078187, + "gasCost": 1, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -2926,18 +2926,18 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0" ] }, { - "depth": 1, - "gas": 2077874, - "gasCost": 3, + "pc": 3196, "op": "DUP2", - "pc": 3128, + "gas": 2078186, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -2945,18 +2945,18 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0" ] }, { - "depth": 1, - "gas": 2077871, - "gasCost": 3, + "pc": 3197, "op": "DUP2", - "pc": 3129, + "gas": 2078183, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -2964,7 +2964,7 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", @@ -2972,11 +2972,11 @@ ] }, { - "depth": 1, - "gas": 2077868, - "gasCost": 3, + "pc": 3198, "op": "SUB", - "pc": 3130, + "gas": 2078180, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -2984,7 +2984,7 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", @@ -2993,11 +2993,11 @@ ] }, { - "depth": 1, - "gas": 2077865, - "gasCost": 3, + "pc": 3199, "op": "PUSH1", - "pc": 3131, + "gas": 2078177, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -3005,7 +3005,7 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", @@ -3013,11 +3013,11 @@ ] }, { - "depth": 1, - "gas": 2077862, - "gasCost": 3, + "pc": 3201, "op": "DUP4", - "pc": 3133, + "gas": 2078174, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -3025,7 +3025,7 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", @@ -3034,11 +3034,11 @@ ] }, { - "depth": 1, - "gas": 2077859, - "gasCost": 3, + "pc": 3202, "op": "ADD", - "pc": 3134, + "gas": 2078171, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -3046,7 +3046,7 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", @@ -3056,11 +3056,11 @@ ] }, { - "depth": 1, - "gas": 2077856, - "gasCost": 6, + "pc": 3203, "op": "MSTORE", - "pc": 3135, + "gas": 2078168, + "gasCost": 6, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -3068,7 +3068,7 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", @@ -3077,11 +3077,11 @@ ] }, { - "depth": 1, - "gas": 2077850, - "gasCost": 3, + "pc": 3204, "op": "PUSH3", - "pc": 3136, + "gas": 2078162, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -3089,18 +3089,18 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0" ] }, { - "depth": 1, - "gas": 2077847, - "gasCost": 3, + "pc": 3208, "op": "DUP2", - "pc": 3140, + "gas": 2078159, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -3108,19 +3108,19 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", - "0xc4a" + "0xc8e" ] }, { - "depth": 1, - "gas": 2077844, - "gasCost": 3, + "pc": 3209, "op": "PUSH3", - "pc": 3141, + "gas": 2078156, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -3128,20 +3128,20 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xc0" ] }, { - "depth": 1, - "gas": 2077841, - "gasCost": 8, + "pc": 3213, "op": "JUMP", - "pc": 3145, + "gas": 2078153, + "gasCost": 8, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -3149,21 +3149,21 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xc0", - "0xbf9" + "0xc3d" ] }, { - "depth": 1, - "gas": 2077833, - "gasCost": 1, + "pc": 3133, "op": "JUMPDEST", - "pc": 3065, + "gas": 2078145, + "gasCost": 1, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -3171,20 +3171,20 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xc0" ] }, { - "depth": 1, - "gas": 2077832, - "gasCost": 3, + "pc": 3134, "op": "PUSH1", - "pc": 3066, + "gas": 2078144, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -3192,20 +3192,20 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xc0" ] }, { - "depth": 1, - "gas": 2077829, - "gasCost": 3, + "pc": 3136, "op": "PUSH3", - "pc": 3068, + "gas": 2078141, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -3213,21 +3213,21 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xc0", "0x0" ] }, { - "depth": 1, - "gas": 2077826, - "gasCost": 3, + "pc": 3140, "op": "PUSH1", - "pc": 3072, + "gas": 2078138, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -3235,22 +3235,22 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xc0", "0x0", - "0xc08" + "0xc4c" ] }, { - "depth": 1, - "gas": 2077823, - "gasCost": 3, + "pc": 3142, "op": "DUP4", - "pc": 3074, + "gas": 2078135, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -3258,23 +3258,23 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xc0", "0x0", - "0xc08", + "0xc4c", "0x5" ] }, { - "depth": 1, - "gas": 2077820, - "gasCost": 3, + "pc": 3143, "op": "PUSH3", - "pc": 3075, + "gas": 2078132, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -3282,24 +3282,24 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xc0", "0x0", - "0xc08", + "0xc4c", "0x5", "0xc0" ] }, { - "depth": 1, - "gas": 2077817, - "gasCost": 8, + "pc": 3147, "op": "JUMP", - "pc": 3079, + "gas": 2078129, + "gasCost": 8, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -3307,25 +3307,25 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xc0", "0x0", - "0xc08", + "0xc4c", "0x5", "0xc0", - "0xad3" + "0xaf5" ] }, { - "depth": 1, - "gas": 2077809, - "gasCost": 1, + "pc": 2805, "op": "JUMPDEST", - "pc": 2771, + "gas": 2078121, + "gasCost": 1, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -3333,24 +3333,24 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xc0", "0x0", - "0xc08", + "0xc4c", "0x5", "0xc0" ] }, { - "depth": 1, - "gas": 2077808, - "gasCost": 3, + "pc": 2806, "op": "PUSH1", - "pc": 2772, + "gas": 2078120, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -3358,24 +3358,24 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xc0", "0x0", - "0xc08", + "0xc4c", "0x5", "0xc0" ] }, { - "depth": 1, - "gas": 2077805, - "gasCost": 3, + "pc": 2808, "op": "DUP3", - "pc": 2774, + "gas": 2078117, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -3383,25 +3383,25 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xc0", "0x0", - "0xc08", + "0xc4c", "0x5", "0xc0", "0x0" ] }, { - "depth": 1, - "gas": 2077802, - "gasCost": 3, + "pc": 2809, "op": "DUP3", - "pc": 2775, + "gas": 2078114, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -3409,14 +3409,14 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xc0", "0x0", - "0xc08", + "0xc4c", "0x5", "0xc0", "0x0", @@ -3424,11 +3424,11 @@ ] }, { - "depth": 1, - "gas": 2077799, - "gasCost": 6, + "pc": 2810, "op": "MSTORE", - "pc": 2776, + "gas": 2078111, + "gasCost": 6, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -3436,14 +3436,14 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xc0", "0x0", - "0xc08", + "0xc4c", "0x5", "0xc0", "0x0", @@ -3452,11 +3452,11 @@ ] }, { - "depth": 1, - "gas": 2077793, - "gasCost": 3, + "pc": 2811, "op": "PUSH1", - "pc": 2777, + "gas": 2078105, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -3464,25 +3464,25 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xc0", "0x0", - "0xc08", + "0xc4c", "0x5", "0xc0", "0x0" ] }, { - "depth": 1, - "gas": 2077790, - "gasCost": 3, + "pc": 2813, "op": "DUP3", - "pc": 2779, + "gas": 2078102, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -3490,14 +3490,14 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xc0", "0x0", - "0xc08", + "0xc4c", "0x5", "0xc0", "0x0", @@ -3505,11 +3505,11 @@ ] }, { - "depth": 1, - "gas": 2077787, - "gasCost": 3, + "pc": 2814, "op": "ADD", - "pc": 2780, + "gas": 2078099, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -3517,14 +3517,14 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xc0", "0x0", - "0xc08", + "0xc4c", "0x5", "0xc0", "0x0", @@ -3533,11 +3533,11 @@ ] }, { - "depth": 1, - "gas": 2077784, - "gasCost": 3, + "pc": 2815, "op": "SWAP1", - "pc": 2781, + "gas": 2078096, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -3545,14 +3545,14 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xc0", "0x0", - "0xc08", + "0xc4c", "0x5", "0xc0", "0x0", @@ -3560,11 +3560,11 @@ ] }, { - "depth": 1, - "gas": 2077781, - "gasCost": 2, + "pc": 2816, "op": "POP", - "pc": 2782, + "gas": 2078093, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -3572,14 +3572,14 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xc0", "0x0", - "0xc08", + "0xc4c", "0x5", "0xc0", "0xe0", @@ -3587,11 +3587,11 @@ ] }, { - "depth": 1, - "gas": 2077779, - "gasCost": 3, + "pc": 2817, "op": "SWAP3", - "pc": 2783, + "gas": 2078091, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -3599,25 +3599,25 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xc0", "0x0", - "0xc08", + "0xc4c", "0x5", "0xc0", "0xe0" ] }, { - "depth": 1, - "gas": 2077776, - "gasCost": 3, + "pc": 2818, "op": "SWAP2", - "pc": 2784, + "gas": 2078088, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -3625,25 +3625,25 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xc0", "0x0", "0xe0", "0x5", "0xc0", - "0xc08" + "0xc4c" ] }, { - "depth": 1, - "gas": 2077773, - "gasCost": 2, + "pc": 2819, "op": "POP", - "pc": 2785, + "gas": 2078085, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -3651,25 +3651,25 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xc0", "0x0", "0xe0", - "0xc08", + "0xc4c", "0xc0", "0x5" ] }, { - "depth": 1, - "gas": 2077771, - "gasCost": 2, + "pc": 2820, "op": "POP", - "pc": 2786, + "gas": 2078083, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -3677,24 +3677,24 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xc0", "0x0", "0xe0", - "0xc08", + "0xc4c", "0xc0" ] }, { - "depth": 1, - "gas": 2077769, - "gasCost": 8, + "pc": 2821, "op": "JUMP", - "pc": 2787, + "gas": 2078081, + "gasCost": 8, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -3702,23 +3702,23 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xc0", "0x0", "0xe0", - "0xc08" + "0xc4c" ] }, { - "depth": 1, - "gas": 2077761, - "gasCost": 1, + "pc": 3148, "op": "JUMPDEST", - "pc": 3080, + "gas": 2078073, + "gasCost": 1, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -3726,22 +3726,22 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xc0", "0x0", "0xe0" ] }, { - "depth": 1, - "gas": 2077760, - "gasCost": 3, + "pc": 3149, "op": "SWAP2", - "pc": 3081, + "gas": 2078072, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -3749,22 +3749,22 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xc0", "0x0", "0xe0" ] }, { - "depth": 1, - "gas": 2077757, - "gasCost": 2, + "pc": 3150, "op": "POP", - "pc": 3082, + "gas": 2078069, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -3772,22 +3772,22 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xe0", "0x0", "0xc0" ] }, { - "depth": 1, - "gas": 2077755, - "gasCost": 3, + "pc": 3151, "op": "PUSH3", - "pc": 3083, + "gas": 2078067, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -3795,21 +3795,21 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xe0", "0x0" ] }, { - "depth": 1, - "gas": 2077752, - "gasCost": 3, + "pc": 3155, "op": "DUP3", - "pc": 3087, + "gas": 2078064, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -3817,22 +3817,22 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xe0", "0x0", - "0xc15" + "0xc59" ] }, { - "depth": 1, - "gas": 2077749, - "gasCost": 3, + "pc": 3156, "op": "PUSH3", - "pc": 3088, + "gas": 2078061, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -3840,23 +3840,23 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xe0", "0x0", - "0xc15", + "0xc59", "0xe0" ] }, { - "depth": 1, - "gas": 2077746, - "gasCost": 8, + "pc": 3160, "op": "JUMP", - "pc": 3092, + "gas": 2078058, + "gasCost": 8, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -3864,24 +3864,24 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xe0", "0x0", - "0xc15", + "0xc59", "0xe0", - "0xbd0" + "0xc14" ] }, { - "depth": 1, - "gas": 2077738, - "gasCost": 1, + "pc": 3092, "op": "JUMPDEST", - "pc": 3024, + "gas": 2078050, + "gasCost": 1, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -3889,23 +3889,23 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xe0", "0x0", - "0xc15", + "0xc59", "0xe0" ] }, { - "depth": 1, - "gas": 2077737, - "gasCost": 3, + "pc": 3093, "op": "PUSH32", - "pc": 3025, + "gas": 2078049, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -3913,23 +3913,23 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xe0", "0x0", - "0xc15", + "0xc59", "0xe0" ] }, { - "depth": 1, - "gas": 2077734, - "gasCost": 3, + "pc": 3126, "op": "PUSH1", - "pc": 3058, + "gas": 2078046, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -3937,24 +3937,24 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xe0", "0x0", - "0xc15", + "0xc59", "0xe0", "0x746f706963000000000000000000000000000000000000000000000000000000" ] }, { - "depth": 1, - "gas": 2077731, - "gasCost": 3, + "pc": 3128, "op": "DUP3", - "pc": 3060, + "gas": 2078043, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -3962,25 +3962,25 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xe0", "0x0", - "0xc15", + "0xc59", "0xe0", "0x746f706963000000000000000000000000000000000000000000000000000000", "0x0" ] }, { - "depth": 1, - "gas": 2077728, - "gasCost": 3, + "pc": 3129, "op": "ADD", - "pc": 3061, + "gas": 2078040, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -3988,14 +3988,14 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xe0", "0x0", - "0xc15", + "0xc59", "0xe0", "0x746f706963000000000000000000000000000000000000000000000000000000", "0x0", @@ -4003,11 +4003,11 @@ ] }, { - "depth": 1, - "gas": 2077725, - "gasCost": 6, + "pc": 3130, "op": "MSTORE", - "pc": 3062, + "gas": 2078037, + "gasCost": 6, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -4015,25 +4015,25 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xe0", "0x0", - "0xc15", + "0xc59", "0xe0", "0x746f706963000000000000000000000000000000000000000000000000000000", "0xe0" ] }, { - "depth": 1, - "gas": 2077719, - "gasCost": 2, + "pc": 3131, "op": "POP", - "pc": 3063, + "gas": 2078031, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -4041,23 +4041,23 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xe0", "0x0", - "0xc15", + "0xc59", "0xe0" ] }, { - "depth": 1, - "gas": 2077717, - "gasCost": 8, + "pc": 3132, "op": "JUMP", - "pc": 3064, + "gas": 2078029, + "gasCost": 8, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -4065,22 +4065,22 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xe0", "0x0", - "0xc15" + "0xc59" ] }, { - "depth": 1, - "gas": 2077709, - "gasCost": 1, + "pc": 3161, "op": "JUMPDEST", - "pc": 3093, + "gas": 2078021, + "gasCost": 1, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -4088,21 +4088,21 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xe0", "0x0" ] }, { - "depth": 1, - "gas": 2077708, - "gasCost": 3, + "pc": 3162, "op": "PUSH1", - "pc": 3094, + "gas": 2078020, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -4110,21 +4110,21 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xe0", "0x0" ] }, { - "depth": 1, - "gas": 2077705, - "gasCost": 3, + "pc": 3164, "op": "DUP3", - "pc": 3096, + "gas": 2078017, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -4132,22 +4132,22 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xe0", "0x0", "0x20" ] }, { - "depth": 1, - "gas": 2077702, - "gasCost": 3, + "pc": 3165, "op": "ADD", - "pc": 3097, + "gas": 2078014, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -4155,11 +4155,11 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xe0", "0x0", "0x20", @@ -4167,11 +4167,11 @@ ] }, { - "depth": 1, - "gas": 2077699, - "gasCost": 3, + "pc": 3166, "op": "SWAP1", - "pc": 3098, + "gas": 2078011, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -4179,22 +4179,22 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xe0", "0x0", "0x100" ] }, { - "depth": 1, - "gas": 2077696, - "gasCost": 2, + "pc": 3167, "op": "POP", - "pc": 3099, + "gas": 2078008, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -4202,22 +4202,22 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xe0", "0x100", "0x0" ] }, { - "depth": 1, - "gas": 2077694, - "gasCost": 3, + "pc": 3168, "op": "SWAP2", - "pc": 3100, + "gas": 2078006, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -4225,21 +4225,21 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xe0", "0x100" ] }, { - "depth": 1, - "gas": 2077691, - "gasCost": 3, + "pc": 3169, "op": "SWAP1", - "pc": 3101, + "gas": 2078003, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -4247,21 +4247,21 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", "0x100", "0xe0", - "0xc4a" + "0xc8e" ] }, { - "depth": 1, - "gas": 2077688, - "gasCost": 2, + "pc": 3170, "op": "POP", - "pc": 3102, + "gas": 2078000, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -4269,21 +4269,21 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", "0x100", - "0xc4a", + "0xc8e", "0xe0" ] }, { - "depth": 1, - "gas": 2077686, - "gasCost": 8, + "pc": 3171, "op": "JUMP", - "pc": 3103, + "gas": 2077998, + "gasCost": 8, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -4291,20 +4291,20 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", "0x100", - "0xc4a" + "0xc8e" ] }, { - "depth": 1, - "gas": 2077678, - "gasCost": 1, + "pc": 3214, "op": "JUMPDEST", - "pc": 3146, + "gas": 2077990, + "gasCost": 1, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -4312,7 +4312,7 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", @@ -4320,11 +4320,11 @@ ] }, { - "depth": 1, - "gas": 2077677, - "gasCost": 3, + "pc": 3215, "op": "SWAP1", - "pc": 3147, + "gas": 2077989, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -4332,7 +4332,7 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0xc0", @@ -4340,11 +4340,11 @@ ] }, { - "depth": 1, - "gas": 2077674, - "gasCost": 2, + "pc": 3216, "op": "POP", - "pc": 3148, + "gas": 2077986, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -4352,7 +4352,7 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0x100", @@ -4360,11 +4360,11 @@ ] }, { - "depth": 1, - "gas": 2077672, - "gasCost": 3, + "pc": 3217, "op": "SWAP3", - "pc": 3149, + "gas": 2077984, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -4372,18 +4372,18 @@ "0x0", "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x83a", + "0x84c", "0x3e8", "0x80", "0x100" ] }, { - "depth": 1, - "gas": 2077669, - "gasCost": 3, + "pc": 3218, "op": "SWAP2", - "pc": 3150, + "gas": 2077981, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -4394,15 +4394,15 @@ "0x100", "0x3e8", "0x80", - "0x83a" + "0x84c" ] }, { - "depth": 1, - "gas": 2077666, - "gasCost": 2, + "pc": 3219, "op": "POP", - "pc": 3151, + "gas": 2077978, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -4411,17 +4411,17 @@ "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", "0x100", - "0x83a", + "0x84c", "0x80", "0x3e8" ] }, { - "depth": 1, - "gas": 2077664, - "gasCost": 2, + "pc": 3220, "op": "POP", - "pc": 3152, + "gas": 2077976, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -4430,16 +4430,16 @@ "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", "0x100", - "0x83a", + "0x84c", "0x80" ] }, { - "depth": 1, - "gas": 2077662, - "gasCost": 8, + "pc": 3221, "op": "JUMP", - "pc": 3153, + "gas": 2077974, + "gasCost": 8, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -4448,15 +4448,15 @@ "OWNER.address", "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", "0x100", - "0x83a" + "0x84c" ] }, { - "depth": 1, - "gas": 2077654, - "gasCost": 1, + "pc": 2124, "op": "JUMPDEST", - "pc": 2106, + "gas": 2077966, + "gasCost": 1, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -4468,11 +4468,11 @@ ] }, { - "depth": 1, - "gas": 2077653, - "gasCost": 3, + "pc": 2125, "op": "PUSH1", - "pc": 2107, + "gas": 2077965, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -4484,11 +4484,11 @@ ] }, { - "depth": 1, - "gas": 2077650, - "gasCost": 3, + "pc": 2127, "op": "MLOAD", - "pc": 2109, + "gas": 2077962, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -4501,11 +4501,11 @@ ] }, { - "depth": 1, - "gas": 2077647, - "gasCost": 3, + "pc": 2128, "op": "DUP1", - "pc": 2110, + "gas": 2077959, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -4518,11 +4518,11 @@ ] }, { - "depth": 1, - "gas": 2077644, - "gasCost": 3, + "pc": 2129, "op": "SWAP2", - "pc": 2111, + "gas": 2077956, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -4536,11 +4536,11 @@ ] }, { - "depth": 1, - "gas": 2077641, - "gasCost": 3, + "pc": 2130, "op": "SUB", - "pc": 2112, + "gas": 2077953, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -4554,11 +4554,11 @@ ] }, { - "depth": 1, - "gas": 2077638, - "gasCost": 3, + "pc": 2131, "op": "SWAP1", - "pc": 2113, + "gas": 2077950, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -4571,11 +4571,11 @@ ] }, { - "depth": 1, - "gas": 2077635, - "gasCost": 2149, + "pc": 2132, "op": "LOG2", - "pc": 2114, + "gas": 2077947, + "gasCost": 2149, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -4588,11 +4588,11 @@ ] }, { - "depth": 1, - "gas": 2075486, - "gasCost": 3, + "pc": 2133, "op": "DUP2", - "pc": 2115, + "gas": 2075798, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -4601,11 +4601,11 @@ ] }, { - "depth": 1, - "gas": 2075483, - "gasCost": 3, + "pc": 2134, "op": "PUSH1", - "pc": 2116, + "gas": 2075795, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -4615,11 +4615,11 @@ ] }, { - "depth": 1, - "gas": 2075480, - "gasCost": 3, + "pc": 2136, "op": "PUSH1", - "pc": 2118, + "gas": 2075792, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -4630,11 +4630,11 @@ ] }, { - "depth": 1, - "gas": 2075477, - "gasCost": 3, + "pc": 2138, "op": "DUP3", - "pc": 2120, + "gas": 2075789, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -4646,11 +4646,11 @@ ] }, { - "depth": 1, - "gas": 2075474, - "gasCost": 3, + "pc": 2139, "op": "DUP3", - "pc": 2121, + "gas": 2075786, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -4663,11 +4663,11 @@ ] }, { - "depth": 1, - "gas": 2075471, - "gasCost": 200, + "pc": 2140, "op": "SLOAD", - "pc": 2122, + "gas": 2075783, + "gasCost": 2100, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -4684,11 +4684,11 @@ } }, { - "depth": 1, - "gas": 2075271, - "gasCost": 3, + "pc": 2141, "op": "PUSH3", - "pc": 2123, + "gas": 2073683, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -4702,11 +4702,11 @@ ] }, { - "depth": 1, - "gas": 2075268, - "gasCost": 3, + "pc": 2145, "op": "SWAP2", - "pc": 2127, + "gas": 2073680, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -4717,15 +4717,15 @@ "0x0", "0x3e8", "0x0", - "0x856" + "0x868" ] }, { - "depth": 1, - "gas": 2075265, - "gasCost": 3, + "pc": 2146, "op": "SWAP1", - "pc": 2128, + "gas": 2073677, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -4734,17 +4734,17 @@ "0x3e8", "0x1", "0x0", - "0x856", + "0x868", "0x0", "0x3e8" ] }, { - "depth": 1, - "gas": 2075262, - "gasCost": 3, + "pc": 2147, "op": "PUSH3", - "pc": 2129, + "gas": 2073674, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -4753,17 +4753,17 @@ "0x3e8", "0x1", "0x0", - "0x856", + "0x868", "0x3e8", "0x0" ] }, { - "depth": 1, - "gas": 2075259, - "gasCost": 8, + "pc": 2151, "op": "JUMP", - "pc": 2133, + "gas": 2073671, + "gasCost": 8, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -4772,18 +4772,18 @@ "0x3e8", "0x1", "0x0", - "0x856", + "0x868", "0x3e8", "0x0", - "0xb95" + "0xbb7" ] }, { - "depth": 1, - "gas": 2075251, - "gasCost": 1, + "pc": 2999, "op": "JUMPDEST", - "pc": 2965, + "gas": 2073663, + "gasCost": 1, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -4792,17 +4792,17 @@ "0x3e8", "0x1", "0x0", - "0x856", + "0x868", "0x3e8", "0x0" ] }, { - "depth": 1, - "gas": 2075250, - "gasCost": 3, + "pc": 3000, "op": "PUSH1", - "pc": 2966, + "gas": 2073662, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -4811,17 +4811,17 @@ "0x3e8", "0x1", "0x0", - "0x856", + "0x868", "0x3e8", "0x0" ] }, { - "depth": 1, - "gas": 2075247, - "gasCost": 3, + "pc": 3002, "op": "PUSH3", - "pc": 2968, + "gas": 2073659, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -4830,18 +4830,18 @@ "0x3e8", "0x1", "0x0", - "0x856", + "0x868", "0x3e8", "0x0", "0x0" ] }, { - "depth": 1, - "gas": 2075244, - "gasCost": 3, + "pc": 3006, "op": "DUP3", - "pc": 2972, + "gas": 2073656, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -4850,19 +4850,19 @@ "0x3e8", "0x1", "0x0", - "0x856", + "0x868", "0x3e8", "0x0", "0x0", - "0xba2" + "0xbc4" ] }, { - "depth": 1, - "gas": 2075241, - "gasCost": 3, + "pc": 3007, "op": "PUSH3", - "pc": 2973, + "gas": 2073653, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -4871,20 +4871,20 @@ "0x3e8", "0x1", "0x0", - "0x856", + "0x868", "0x3e8", "0x0", "0x0", - "0xba2", + "0xbc4", "0x0" ] }, { - "depth": 1, - "gas": 2075238, - "gasCost": 8, + "pc": 3011, "op": "JUMP", - "pc": 2977, + "gas": 2073650, + "gasCost": 8, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -4893,21 +4893,21 @@ "0x3e8", "0x1", "0x0", - "0x856", + "0x868", "0x3e8", "0x0", "0x0", - "0xba2", + "0xbc4", "0x0", - "0x95a" + "0x97c" ] }, { - "depth": 1, - "gas": 2075230, - "gasCost": 1, + "pc": 2428, "op": "JUMPDEST", - "pc": 2394, + "gas": 2073642, + "gasCost": 1, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -4916,20 +4916,20 @@ "0x3e8", "0x1", "0x0", - "0x856", + "0x868", "0x3e8", "0x0", "0x0", - "0xba2", + "0xbc4", "0x0" ] }, { - "depth": 1, - "gas": 2075229, - "gasCost": 3, + "pc": 2429, "op": "PUSH1", - "pc": 2395, + "gas": 2073641, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -4938,20 +4938,20 @@ "0x3e8", "0x1", "0x0", - "0x856", + "0x868", "0x3e8", "0x0", "0x0", - "0xba2", + "0xbc4", "0x0" ] }, { - "depth": 1, - "gas": 2075226, - "gasCost": 3, + "pc": 2431, "op": "DUP2", - "pc": 2397, + "gas": 2073638, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -4960,21 +4960,21 @@ "0x3e8", "0x1", "0x0", - "0x856", + "0x868", "0x3e8", "0x0", "0x0", - "0xba2", + "0xbc4", "0x0", "0x0" ] }, { - "depth": 1, - "gas": 2075223, - "gasCost": 3, + "pc": 2432, "op": "SWAP1", - "pc": 2398, + "gas": 2073635, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -4983,22 +4983,22 @@ "0x3e8", "0x1", "0x0", - "0x856", + "0x868", "0x3e8", "0x0", "0x0", - "0xba2", + "0xbc4", "0x0", "0x0", "0x0" ] }, { - "depth": 1, - "gas": 2075220, - "gasCost": 2, + "pc": 2433, "op": "POP", - "pc": 2399, + "gas": 2073632, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -5007,22 +5007,22 @@ "0x3e8", "0x1", "0x0", - "0x856", + "0x868", "0x3e8", "0x0", "0x0", - "0xba2", + "0xbc4", "0x0", "0x0", "0x0" ] }, { - "depth": 1, - "gas": 2075218, - "gasCost": 3, + "pc": 2434, "op": "SWAP2", - "pc": 2400, + "gas": 2073630, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -5031,21 +5031,21 @@ "0x3e8", "0x1", "0x0", - "0x856", + "0x868", "0x3e8", "0x0", "0x0", - "0xba2", + "0xbc4", "0x0", "0x0" ] }, { - "depth": 1, - "gas": 2075215, - "gasCost": 3, + "pc": 2435, "op": "SWAP1", - "pc": 2401, + "gas": 2073627, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -5054,21 +5054,21 @@ "0x3e8", "0x1", "0x0", - "0x856", + "0x868", "0x3e8", "0x0", "0x0", "0x0", "0x0", - "0xba2" + "0xbc4" ] }, { - "depth": 1, - "gas": 2075212, - "gasCost": 2, + "pc": 2436, "op": "POP", - "pc": 2402, + "gas": 2073624, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -5077,21 +5077,21 @@ "0x3e8", "0x1", "0x0", - "0x856", + "0x868", "0x3e8", "0x0", "0x0", "0x0", - "0xba2", + "0xbc4", "0x0" ] }, { - "depth": 1, - "gas": 2075210, - "gasCost": 8, + "pc": 2437, "op": "JUMP", - "pc": 2403, + "gas": 2073622, + "gasCost": 8, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -5100,20 +5100,20 @@ "0x3e8", "0x1", "0x0", - "0x856", + "0x868", "0x3e8", "0x0", "0x0", "0x0", - "0xba2" + "0xbc4" ] }, { - "depth": 1, - "gas": 2075202, - "gasCost": 1, + "pc": 3012, "op": "JUMPDEST", - "pc": 2978, + "gas": 2073614, + "gasCost": 1, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -5122,7 +5122,7 @@ "0x3e8", "0x1", "0x0", - "0x856", + "0x868", "0x3e8", "0x0", "0x0", @@ -5130,11 +5130,11 @@ ] }, { - "depth": 1, - "gas": 2075201, - "gasCost": 3, + "pc": 3013, "op": "SWAP2", - "pc": 2979, + "gas": 2073613, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -5143,7 +5143,7 @@ "0x3e8", "0x1", "0x0", - "0x856", + "0x868", "0x3e8", "0x0", "0x0", @@ -5151,11 +5151,11 @@ ] }, { - "depth": 1, - "gas": 2075198, - "gasCost": 2, + "pc": 3014, "op": "POP", - "pc": 2980, + "gas": 2073610, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -5164,7 +5164,7 @@ "0x3e8", "0x1", "0x0", - "0x856", + "0x868", "0x3e8", "0x0", "0x0", @@ -5172,11 +5172,11 @@ ] }, { - "depth": 1, - "gas": 2075196, - "gasCost": 3, + "pc": 3015, "op": "PUSH3", - "pc": 2981, + "gas": 2073608, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -5185,18 +5185,18 @@ "0x3e8", "0x1", "0x0", - "0x856", + "0x868", "0x3e8", "0x0", "0x0" ] }, { - "depth": 1, - "gas": 2075193, - "gasCost": 3, + "pc": 3019, "op": "DUP4", - "pc": 2985, + "gas": 2073605, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -5205,19 +5205,19 @@ "0x3e8", "0x1", "0x0", - "0x856", + "0x868", "0x3e8", "0x0", "0x0", - "0xbaf" + "0xbd1" ] }, { - "depth": 1, - "gas": 2075190, - "gasCost": 3, + "pc": 3020, "op": "PUSH3", - "pc": 2986, + "gas": 2073602, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -5226,20 +5226,20 @@ "0x3e8", "0x1", "0x0", - "0x856", + "0x868", "0x3e8", "0x0", "0x0", - "0xbaf", + "0xbd1", "0x3e8" ] }, { - "depth": 1, - "gas": 2075187, - "gasCost": 8, + "pc": 3024, "op": "JUMP", - "pc": 2990, + "gas": 2073599, + "gasCost": 8, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -5248,21 +5248,21 @@ "0x3e8", "0x1", "0x0", - "0x856", + "0x868", "0x3e8", "0x0", "0x0", - "0xbaf", + "0xbd1", "0x3e8", - "0x95a" + "0x97c" ] }, { - "depth": 1, - "gas": 2075179, - "gasCost": 1, + "pc": 2428, "op": "JUMPDEST", - "pc": 2394, + "gas": 2073591, + "gasCost": 1, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -5271,20 +5271,20 @@ "0x3e8", "0x1", "0x0", - "0x856", + "0x868", "0x3e8", "0x0", "0x0", - "0xbaf", + "0xbd1", "0x3e8" ] }, { - "depth": 1, - "gas": 2075178, - "gasCost": 3, + "pc": 2429, "op": "PUSH1", - "pc": 2395, + "gas": 2073590, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -5293,20 +5293,20 @@ "0x3e8", "0x1", "0x0", - "0x856", + "0x868", "0x3e8", "0x0", "0x0", - "0xbaf", + "0xbd1", "0x3e8" ] }, { - "depth": 1, - "gas": 2075175, - "gasCost": 3, + "pc": 2431, "op": "DUP2", - "pc": 2397, + "gas": 2073587, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -5315,21 +5315,21 @@ "0x3e8", "0x1", "0x0", - "0x856", + "0x868", "0x3e8", "0x0", "0x0", - "0xbaf", + "0xbd1", "0x3e8", "0x0" ] }, { - "depth": 1, - "gas": 2075172, - "gasCost": 3, + "pc": 2432, "op": "SWAP1", - "pc": 2398, + "gas": 2073584, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -5338,22 +5338,22 @@ "0x3e8", "0x1", "0x0", - "0x856", + "0x868", "0x3e8", "0x0", "0x0", - "0xbaf", + "0xbd1", "0x3e8", "0x0", "0x3e8" ] }, { - "depth": 1, - "gas": 2075169, - "gasCost": 2, + "pc": 2433, "op": "POP", - "pc": 2399, + "gas": 2073581, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -5362,22 +5362,22 @@ "0x3e8", "0x1", "0x0", - "0x856", + "0x868", "0x3e8", "0x0", "0x0", - "0xbaf", + "0xbd1", "0x3e8", "0x3e8", "0x0" ] }, { - "depth": 1, - "gas": 2075167, - "gasCost": 3, + "pc": 2434, "op": "SWAP2", - "pc": 2400, + "gas": 2073579, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -5386,21 +5386,21 @@ "0x3e8", "0x1", "0x0", - "0x856", + "0x868", "0x3e8", "0x0", "0x0", - "0xbaf", + "0xbd1", "0x3e8", "0x3e8" ] }, { - "depth": 1, - "gas": 2075164, - "gasCost": 3, + "pc": 2435, "op": "SWAP1", - "pc": 2401, + "gas": 2073576, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -5409,21 +5409,21 @@ "0x3e8", "0x1", "0x0", - "0x856", + "0x868", "0x3e8", "0x0", "0x0", "0x3e8", "0x3e8", - "0xbaf" + "0xbd1" ] }, { - "depth": 1, - "gas": 2075161, - "gasCost": 2, + "pc": 2436, "op": "POP", - "pc": 2402, + "gas": 2073573, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -5432,21 +5432,21 @@ "0x3e8", "0x1", "0x0", - "0x856", + "0x868", "0x3e8", "0x0", "0x0", "0x3e8", - "0xbaf", + "0xbd1", "0x3e8" ] }, { - "depth": 1, - "gas": 2075159, - "gasCost": 8, + "pc": 2437, "op": "JUMP", - "pc": 2403, + "gas": 2073571, + "gasCost": 8, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -5455,20 +5455,20 @@ "0x3e8", "0x1", "0x0", - "0x856", + "0x868", "0x3e8", "0x0", "0x0", "0x3e8", - "0xbaf" + "0xbd1" ] }, { - "depth": 1, - "gas": 2075151, - "gasCost": 1, + "pc": 3025, "op": "JUMPDEST", - "pc": 2991, + "gas": 2073563, + "gasCost": 1, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -5477,7 +5477,7 @@ "0x3e8", "0x1", "0x0", - "0x856", + "0x868", "0x3e8", "0x0", "0x0", @@ -5485,11 +5485,11 @@ ] }, { - "depth": 1, - "gas": 2075150, - "gasCost": 3, + "pc": 3026, "op": "SWAP3", - "pc": 2992, + "gas": 2073562, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -5498,7 +5498,7 @@ "0x3e8", "0x1", "0x0", - "0x856", + "0x868", "0x3e8", "0x0", "0x0", @@ -5506,11 +5506,11 @@ ] }, { - "depth": 1, - "gas": 2075147, - "gasCost": 2, + "pc": 3027, "op": "POP", - "pc": 2993, + "gas": 2073559, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -5519,7 +5519,7 @@ "0x3e8", "0x1", "0x0", - "0x856", + "0x868", "0x3e8", "0x0", "0x0", @@ -5527,11 +5527,11 @@ ] }, { - "depth": 1, - "gas": 2075145, - "gasCost": 3, + "pc": 3028, "op": "DUP3", - "pc": 2994, + "gas": 2073557, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -5540,18 +5540,18 @@ "0x3e8", "0x1", "0x0", - "0x856", + "0x868", "0x3e8", "0x0", "0x0" ] }, { - "depth": 1, - "gas": 2075142, + "pc": 3029, + "op": "PUSH32", + "gas": 2073554, "gasCost": 3, - "op": "DUP3", - "pc": 2995, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -5560,7 +5560,7 @@ "0x3e8", "0x1", "0x0", - "0x856", + "0x868", "0x3e8", "0x0", "0x0", @@ -5568,11 +5568,11 @@ ] }, { - "depth": 1, - "gas": 2075139, + "pc": 3062, + "op": "SUB", + "gas": 2073551, "gasCost": 3, - "op": "ADD", - "pc": 2996, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -5581,20 +5581,20 @@ "0x3e8", "0x1", "0x0", - "0x856", + "0x868", "0x3e8", "0x0", "0x0", "0x3e8", - "0x0" + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" ] }, { - "depth": 1, - "gas": 2075136, + "pc": 3063, + "op": "DUP3", + "gas": 2073548, "gasCost": 3, - "op": "SWAP1", - "pc": 2997, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -5603,19 +5603,19 @@ "0x3e8", "0x1", "0x0", - "0x856", + "0x868", "0x3e8", "0x0", "0x0", - "0x3e8" + "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc17" ] }, { + "pc": 3064, + "op": "GT", + "gas": 2073545, + "gasCost": 3, "depth": 1, - "gas": 2075133, - "gasCost": 2, - "op": "POP", - "pc": 2998, "stack": [ "0xa0712d68", "0x1cd", @@ -5624,19 +5624,20 @@ "0x3e8", "0x1", "0x0", - "0x856", + "0x868", "0x3e8", "0x0", - "0x3e8", + "0x0", + "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc17", "0x0" ] }, { - "depth": 1, - "gas": 2075131, - "gasCost": 3, - "op": "DUP1", - "pc": 2999, + "pc": 3065, + "op": "ISZERO", + "gas": 2073542, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -5645,18 +5646,19 @@ "0x3e8", "0x1", "0x0", - "0x856", + "0x868", "0x3e8", "0x0", - "0x3e8" + "0x0", + "0x0" ] }, { - "depth": 1, - "gas": 2075128, + "pc": 3066, + "op": "PUSH3", + "gas": 2073539, "gasCost": 3, - "op": "DUP3", - "pc": 3000, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -5665,19 +5667,19 @@ "0x3e8", "0x1", "0x0", - "0x856", + "0x868", "0x3e8", "0x0", - "0x3e8", - "0x3e8" + "0x0", + "0x1" ] }, { + "pc": 3070, + "op": "JUMPI", + "gas": 2073536, + "gasCost": 10, "depth": 1, - "gas": 2075125, - "gasCost": 3, - "op": "GT", - "pc": 3001, "stack": [ "0xa0712d68", "0x1cd", @@ -5686,20 +5688,40 @@ "0x3e8", "0x1", "0x0", - "0x856", + "0x868", + "0x3e8", + "0x0", + "0x0", + "0x1", + "0xc09" + ] + }, + { + "pc": 3081, + "op": "JUMPDEST", + "gas": 2073526, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa0712d68", + "0x1cd", "0x3e8", "0x0", "0x3e8", + "0x1", + "0x0", + "0x868", "0x3e8", + "0x0", "0x0" ] }, { - "depth": 1, - "gas": 2075122, + "pc": 3082, + "op": "DUP3", + "gas": 2073525, "gasCost": 3, - "op": "ISZERO", - "pc": 3002, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -5708,19 +5730,18 @@ "0x3e8", "0x1", "0x0", - "0x856", + "0x868", "0x3e8", "0x0", - "0x3e8", "0x0" ] }, { - "depth": 1, - "gas": 2075119, + "pc": 3083, + "op": "DUP3", + "gas": 2073522, "gasCost": 3, - "op": "PUSH3", - "pc": 3003, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -5729,19 +5750,19 @@ "0x3e8", "0x1", "0x0", - "0x856", + "0x868", "0x3e8", "0x0", - "0x3e8", - "0x1" + "0x0", + "0x3e8" ] }, { + "pc": 3084, + "op": "ADD", + "gas": 2073519, + "gasCost": 3, "depth": 1, - "gas": 2075116, - "gasCost": 10, - "op": "JUMPI", - "pc": 3007, "stack": [ "0xa0712d68", "0x1cd", @@ -5750,20 +5771,20 @@ "0x3e8", "0x1", "0x0", - "0x856", + "0x868", "0x3e8", "0x0", + "0x0", "0x3e8", - "0x1", - "0xbca" + "0x0" ] }, { + "pc": 3085, + "op": "SWAP1", + "gas": 2073516, + "gasCost": 3, "depth": 1, - "gas": 2075106, - "gasCost": 1, - "op": "JUMPDEST", - "pc": 3018, "stack": [ "0xa0712d68", "0x1cd", @@ -5772,18 +5793,40 @@ "0x3e8", "0x1", "0x0", - "0x856", + "0x868", "0x3e8", "0x0", + "0x0", "0x3e8" ] }, { + "pc": 3086, + "op": "POP", + "gas": 2073513, + "gasCost": 2, "depth": 1, - "gas": 2075105, - "gasCost": 3, + "stack": [ + "0xa0712d68", + "0x1cd", + "0x3e8", + "0x0", + "0x3e8", + "0x1", + "0x0", + "0x868", + "0x3e8", + "0x0", + "0x3e8", + "0x0" + ] + }, + { + "pc": 3087, "op": "SWAP3", - "pc": 3019, + "gas": 2073511, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -5792,18 +5835,18 @@ "0x3e8", "0x1", "0x0", - "0x856", + "0x868", "0x3e8", "0x0", "0x3e8" ] }, { - "depth": 1, - "gas": 2075102, - "gasCost": 3, + "pc": 3088, "op": "SWAP2", - "pc": 3020, + "gas": 2073508, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -5815,15 +5858,15 @@ "0x3e8", "0x3e8", "0x0", - "0x856" + "0x868" ] }, { - "depth": 1, - "gas": 2075099, - "gasCost": 2, + "pc": 3089, "op": "POP", - "pc": 3021, + "gas": 2073505, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -5833,17 +5876,17 @@ "0x1", "0x0", "0x3e8", - "0x856", + "0x868", "0x0", "0x3e8" ] }, { - "depth": 1, - "gas": 2075097, - "gasCost": 2, + "pc": 3090, "op": "POP", - "pc": 3022, + "gas": 2073503, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -5853,16 +5896,16 @@ "0x1", "0x0", "0x3e8", - "0x856", + "0x868", "0x0" ] }, { - "depth": 1, - "gas": 2075095, - "gasCost": 8, + "pc": 3091, "op": "JUMP", - "pc": 3023, + "gas": 2073501, + "gasCost": 8, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -5872,15 +5915,15 @@ "0x1", "0x0", "0x3e8", - "0x856" + "0x868" ] }, { - "depth": 1, - "gas": 2075087, - "gasCost": 1, + "pc": 2152, "op": "JUMPDEST", - "pc": 2134, + "gas": 2073493, + "gasCost": 1, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -5893,11 +5936,11 @@ ] }, { - "depth": 1, - "gas": 2075086, - "gasCost": 3, + "pc": 2153, "op": "SWAP3", - "pc": 2135, + "gas": 2073492, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -5910,11 +5953,11 @@ ] }, { - "depth": 1, - "gas": 2075083, - "gasCost": 2, + "pc": 2154, "op": "POP", - "pc": 2136, + "gas": 2073489, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -5927,11 +5970,11 @@ ] }, { - "depth": 1, - "gas": 2075081, - "gasCost": 2, + "pc": 2155, "op": "POP", - "pc": 2137, + "gas": 2073487, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -5943,11 +5986,11 @@ ] }, { - "depth": 1, - "gas": 2075079, - "gasCost": 3, + "pc": 2156, "op": "DUP2", - "pc": 2138, + "gas": 2073485, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -5958,11 +6001,11 @@ ] }, { - "depth": 1, - "gas": 2075076, - "gasCost": 3, + "pc": 2157, "op": "SWAP1", - "pc": 2139, + "gas": 2073482, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -5974,11 +6017,11 @@ ] }, { - "depth": 1, - "gas": 2075073, - "gasCost": 20000, + "pc": 2158, "op": "SSTORE", - "pc": 2140, + "gas": 2073479, + "gasCost": 20000, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -5993,11 +6036,11 @@ } }, { - "depth": 1, - "gas": 2055073, - "gasCost": 2, + "pc": 2159, "op": "POP", - "pc": 2141, + "gas": 2053479, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -6007,11 +6050,11 @@ ] }, { - "depth": 1, - "gas": 2055071, - "gasCost": 3, + "pc": 2160, "op": "PUSH3", - "pc": 2142, + "gas": 2053477, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -6020,432 +6063,432 @@ ] }, { - "depth": 1, - "gas": 2055068, - "gasCost": 3, + "pc": 2164, "op": "PUSH1", - "pc": 2146, + "gas": 2053474, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876" + "0x888" ] }, { - "depth": 1, - "gas": 2055065, - "gasCost": 3, + "pc": 2166, "op": "DUP4", - "pc": 2148, + "gas": 2053471, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x1" ] }, { - "depth": 1, - "gas": 2055062, - "gasCost": 3, + "pc": 2167, "op": "PUSH3", - "pc": 2149, + "gas": 2053468, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x1", "0x3e8" ] }, { - "depth": 1, - "gas": 2055059, - "gasCost": 3, + "pc": 2171, "op": "SWAP2", - "pc": 2153, + "gas": 2053465, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x1", "0x3e8", - "0x870" + "0x882" ] }, { - "depth": 1, - "gas": 2055056, - "gasCost": 3, + "pc": 2172, "op": "SWAP1", - "pc": 2154, + "gas": 2053462, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", - "0x870", + "0x888", + "0x882", "0x3e8", "0x1" ] }, { - "depth": 1, - "gas": 2055053, - "gasCost": 3, + "pc": 2173, "op": "PUSH3", - "pc": 2155, + "gas": 2053459, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", - "0x870", + "0x888", + "0x882", "0x1", "0x3e8" ] }, { - "depth": 1, - "gas": 2055050, - "gasCost": 8, + "pc": 2177, "op": "JUMP", - "pc": 2159, + "gas": 2053456, + "gasCost": 8, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", - "0x870", + "0x888", + "0x882", "0x1", "0x3e8", - "0xb95" + "0xbb7" ] }, { - "depth": 1, - "gas": 2055042, - "gasCost": 1, + "pc": 2999, "op": "JUMPDEST", - "pc": 2965, + "gas": 2053448, + "gasCost": 1, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", - "0x870", + "0x888", + "0x882", "0x1", "0x3e8" ] }, { - "depth": 1, - "gas": 2055041, - "gasCost": 3, + "pc": 3000, "op": "PUSH1", - "pc": 2966, + "gas": 2053447, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", - "0x870", + "0x888", + "0x882", "0x1", "0x3e8" ] }, { - "depth": 1, - "gas": 2055038, - "gasCost": 3, + "pc": 3002, "op": "PUSH3", - "pc": 2968, + "gas": 2053444, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", - "0x870", + "0x888", + "0x882", "0x1", "0x3e8", "0x0" ] }, { - "depth": 1, - "gas": 2055035, - "gasCost": 3, + "pc": 3006, "op": "DUP3", - "pc": 2972, + "gas": 2053441, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", - "0x870", + "0x888", + "0x882", "0x1", "0x3e8", "0x0", - "0xba2" + "0xbc4" ] }, { - "depth": 1, - "gas": 2055032, - "gasCost": 3, + "pc": 3007, "op": "PUSH3", - "pc": 2973, + "gas": 2053438, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", - "0x870", + "0x888", + "0x882", "0x1", "0x3e8", "0x0", - "0xba2", + "0xbc4", "0x3e8" ] }, { - "depth": 1, - "gas": 2055029, - "gasCost": 8, + "pc": 3011, "op": "JUMP", - "pc": 2977, + "gas": 2053435, + "gasCost": 8, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", - "0x870", + "0x888", + "0x882", "0x1", "0x3e8", "0x0", - "0xba2", + "0xbc4", "0x3e8", - "0x95a" + "0x97c" ] }, { - "depth": 1, - "gas": 2055021, - "gasCost": 1, + "pc": 2428, "op": "JUMPDEST", - "pc": 2394, + "gas": 2053427, + "gasCost": 1, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", - "0x870", + "0x888", + "0x882", "0x1", "0x3e8", "0x0", - "0xba2", + "0xbc4", "0x3e8" ] }, { - "depth": 1, - "gas": 2055020, - "gasCost": 3, + "pc": 2429, "op": "PUSH1", - "pc": 2395, + "gas": 2053426, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", - "0x870", + "0x888", + "0x882", "0x1", "0x3e8", "0x0", - "0xba2", + "0xbc4", "0x3e8" ] }, { - "depth": 1, - "gas": 2055017, - "gasCost": 3, + "pc": 2431, "op": "DUP2", - "pc": 2397, + "gas": 2053423, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", - "0x870", + "0x888", + "0x882", "0x1", "0x3e8", "0x0", - "0xba2", + "0xbc4", "0x3e8", "0x0" ] }, { - "depth": 1, - "gas": 2055014, - "gasCost": 3, + "pc": 2432, "op": "SWAP1", - "pc": 2398, + "gas": 2053420, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", - "0x870", + "0x888", + "0x882", "0x1", "0x3e8", "0x0", - "0xba2", + "0xbc4", "0x3e8", "0x0", "0x3e8" ] }, { - "depth": 1, - "gas": 2055011, - "gasCost": 2, + "pc": 2433, "op": "POP", - "pc": 2399, + "gas": 2053417, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", - "0x870", + "0x888", + "0x882", "0x1", "0x3e8", "0x0", - "0xba2", + "0xbc4", "0x3e8", "0x3e8", "0x0" ] }, { - "depth": 1, - "gas": 2055009, - "gasCost": 3, + "pc": 2434, "op": "SWAP2", - "pc": 2400, + "gas": 2053415, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", - "0x870", + "0x888", + "0x882", "0x1", "0x3e8", "0x0", - "0xba2", + "0xbc4", "0x3e8", "0x3e8" ] }, { - "depth": 1, - "gas": 2055006, - "gasCost": 3, + "pc": 2435, "op": "SWAP1", - "pc": 2401, + "gas": 2053412, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", - "0x870", + "0x888", + "0x882", "0x1", "0x3e8", "0x0", "0x3e8", "0x3e8", - "0xba2" + "0xbc4" ] }, { - "depth": 1, - "gas": 2055003, - "gasCost": 2, + "pc": 2436, "op": "POP", - "pc": 2402, - "stack": [ + "gas": 2053409, + "gasCost": 2, + "depth": 1, + "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", - "0x870", + "0x888", + "0x882", "0x1", "0x3e8", "0x0", "0x3e8", - "0xba2", + "0xbc4", "0x3e8" ] }, { - "depth": 1, - "gas": 2055001, - "gasCost": 8, + "pc": 2437, "op": "JUMP", - "pc": 2403, + "gas": 2053407, + "gasCost": 8, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", - "0x870", + "0x888", + "0x882", "0x1", "0x3e8", "0x0", "0x3e8", - "0xba2" + "0xbc4" ] }, { - "depth": 1, - "gas": 2054993, - "gasCost": 1, + "pc": 3012, "op": "JUMPDEST", - "pc": 2978, + "gas": 2053399, + "gasCost": 1, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", - "0x870", + "0x888", + "0x882", "0x1", "0x3e8", "0x0", @@ -6453,18 +6496,18 @@ ] }, { - "depth": 1, - "gas": 2054992, - "gasCost": 3, + "pc": 3013, "op": "SWAP2", - "pc": 2979, + "gas": 2053398, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", - "0x870", + "0x888", + "0x882", "0x1", "0x3e8", "0x0", @@ -6472,18 +6515,18 @@ ] }, { - "depth": 1, - "gas": 2054989, - "gasCost": 2, + "pc": 3014, "op": "POP", - "pc": 2980, + "gas": 2053395, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", - "0x870", + "0x888", + "0x882", "0x1", "0x3e8", "0x0", @@ -6491,284 +6534,284 @@ ] }, { - "depth": 1, - "gas": 2054987, - "gasCost": 3, + "pc": 3015, "op": "PUSH3", - "pc": 2981, + "gas": 2053393, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", - "0x870", + "0x888", + "0x882", "0x1", "0x3e8", "0x0" ] }, { - "depth": 1, - "gas": 2054984, - "gasCost": 3, + "pc": 3019, "op": "DUP4", - "pc": 2985, + "gas": 2053390, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", - "0x870", + "0x888", + "0x882", "0x1", "0x3e8", "0x0", - "0xbaf" + "0xbd1" ] }, { - "depth": 1, - "gas": 2054981, - "gasCost": 3, + "pc": 3020, "op": "PUSH3", - "pc": 2986, + "gas": 2053387, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", - "0x870", + "0x888", + "0x882", "0x1", "0x3e8", "0x0", - "0xbaf", + "0xbd1", "0x1" ] }, { - "depth": 1, - "gas": 2054978, - "gasCost": 8, + "pc": 3024, "op": "JUMP", - "pc": 2990, + "gas": 2053384, + "gasCost": 8, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", - "0x870", + "0x888", + "0x882", "0x1", "0x3e8", "0x0", - "0xbaf", + "0xbd1", "0x1", - "0x95a" + "0x97c" ] }, { - "depth": 1, - "gas": 2054970, - "gasCost": 1, + "pc": 2428, "op": "JUMPDEST", - "pc": 2394, + "gas": 2053376, + "gasCost": 1, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", - "0x870", + "0x888", + "0x882", "0x1", "0x3e8", "0x0", - "0xbaf", + "0xbd1", "0x1" ] }, { - "depth": 1, - "gas": 2054969, - "gasCost": 3, + "pc": 2429, "op": "PUSH1", - "pc": 2395, + "gas": 2053375, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", - "0x870", + "0x888", + "0x882", "0x1", "0x3e8", "0x0", - "0xbaf", + "0xbd1", "0x1" ] }, { - "depth": 1, - "gas": 2054966, - "gasCost": 3, + "pc": 2431, "op": "DUP2", - "pc": 2397, + "gas": 2053372, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", - "0x870", + "0x888", + "0x882", "0x1", "0x3e8", "0x0", - "0xbaf", + "0xbd1", "0x1", "0x0" ] }, { - "depth": 1, - "gas": 2054963, - "gasCost": 3, + "pc": 2432, "op": "SWAP1", - "pc": 2398, + "gas": 2053369, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", - "0x870", + "0x888", + "0x882", "0x1", "0x3e8", "0x0", - "0xbaf", + "0xbd1", "0x1", "0x0", "0x1" ] }, { - "depth": 1, - "gas": 2054960, - "gasCost": 2, + "pc": 2433, "op": "POP", - "pc": 2399, + "gas": 2053366, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", - "0x870", + "0x888", + "0x882", "0x1", "0x3e8", "0x0", - "0xbaf", + "0xbd1", "0x1", "0x1", "0x0" ] }, { - "depth": 1, - "gas": 2054958, - "gasCost": 3, + "pc": 2434, "op": "SWAP2", - "pc": 2400, + "gas": 2053364, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", - "0x870", + "0x888", + "0x882", "0x1", "0x3e8", "0x0", - "0xbaf", + "0xbd1", "0x1", "0x1" ] }, { - "depth": 1, - "gas": 2054955, - "gasCost": 3, + "pc": 2435, "op": "SWAP1", - "pc": 2401, + "gas": 2053361, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", - "0x870", + "0x888", + "0x882", "0x1", "0x3e8", "0x0", "0x1", "0x1", - "0xbaf" + "0xbd1" ] }, { - "depth": 1, - "gas": 2054952, - "gasCost": 2, + "pc": 2436, "op": "POP", - "pc": 2402, + "gas": 2053358, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", - "0x870", + "0x888", + "0x882", "0x1", "0x3e8", "0x0", "0x1", - "0xbaf", + "0xbd1", "0x1" ] }, { - "depth": 1, - "gas": 2054950, - "gasCost": 8, + "pc": 2437, "op": "JUMP", - "pc": 2403, + "gas": 2053356, + "gasCost": 8, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", - "0x870", + "0x888", + "0x882", "0x1", "0x3e8", "0x0", "0x1", - "0xbaf" + "0xbd1" ] }, { - "depth": 1, - "gas": 2054942, - "gasCost": 1, + "pc": 3025, "op": "JUMPDEST", - "pc": 2991, + "gas": 2053348, + "gasCost": 1, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", - "0x870", + "0x888", + "0x882", "0x1", "0x3e8", "0x0", @@ -6776,18 +6819,18 @@ ] }, { - "depth": 1, - "gas": 2054941, - "gasCost": 3, + "pc": 3026, "op": "SWAP3", - "pc": 2992, + "gas": 2053347, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", - "0x870", + "0x888", + "0x882", "0x1", "0x3e8", "0x0", @@ -6795,18 +6838,18 @@ ] }, { - "depth": 1, - "gas": 2054938, - "gasCost": 2, + "pc": 3027, "op": "POP", - "pc": 2993, + "gas": 2053344, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", - "0x870", + "0x888", + "0x882", "0x1", "0x3e8", "0x0", @@ -6814,36 +6857,36 @@ ] }, { - "depth": 1, - "gas": 2054936, - "gasCost": 3, + "pc": 3028, "op": "DUP3", - "pc": 2994, + "gas": 2053342, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", - "0x870", + "0x888", + "0x882", "0x1", "0x3e8", "0x0" ] }, { - "depth": 1, - "gas": 2054933, + "pc": 3029, + "op": "PUSH32", + "gas": 2053339, "gasCost": 3, - "op": "DUP3", - "pc": 2995, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", - "0x870", + "0x888", + "0x882", "0x1", "0x3e8", "0x0", @@ -6851,404 +6894,443 @@ ] }, { - "depth": 1, - "gas": 2054930, + "pc": 3062, + "op": "SUB", + "gas": 2053336, "gasCost": 3, - "op": "ADD", - "pc": 2996, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", - "0x870", + "0x888", + "0x882", "0x1", "0x3e8", "0x0", "0x1", - "0x3e8" + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" ] }, { + "pc": 3063, + "op": "DUP3", + "gas": 2053333, + "gasCost": 3, "depth": 1, - "gas": 2054927, + "stack": [ + "0xa0712d68", + "0x1cd", + "0x3e8", + "0x0", + "0x888", + "0x882", + "0x1", + "0x3e8", + "0x0", + "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe" + ] + }, + { + "pc": 3064, + "op": "GT", + "gas": 2053330, "gasCost": 3, - "op": "SWAP1", - "pc": 2997, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", - "0x870", + "0x888", + "0x882", "0x1", "0x3e8", "0x0", - "0x3e9" + "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe", + "0x3e8" ] }, { + "pc": 3065, + "op": "ISZERO", + "gas": 2053327, + "gasCost": 3, "depth": 1, - "gas": 2054924, - "gasCost": 2, - "op": "POP", - "pc": 2998, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", - "0x870", + "0x888", + "0x882", "0x1", "0x3e8", - "0x3e9", + "0x0", "0x0" ] }, { - "depth": 1, - "gas": 2054922, + "pc": 3066, + "op": "PUSH3", + "gas": 2053324, "gasCost": 3, - "op": "DUP1", - "pc": 2999, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", - "0x870", + "0x888", + "0x882", "0x1", "0x3e8", - "0x3e9" + "0x0", + "0x1" ] }, { + "pc": 3070, + "op": "JUMPI", + "gas": 2053321, + "gasCost": 10, "depth": 1, - "gas": 2054919, - "gasCost": 3, - "op": "DUP3", - "pc": 3000, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", - "0x870", + "0x888", + "0x882", "0x1", "0x3e8", - "0x3e9", - "0x3e9" + "0x0", + "0x1", + "0xc09" ] }, { + "pc": 3081, + "op": "JUMPDEST", + "gas": 2053311, + "gasCost": 1, "depth": 1, - "gas": 2054916, - "gasCost": 3, - "op": "GT", - "pc": 3001, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", - "0x870", + "0x888", + "0x882", "0x1", "0x3e8", - "0x3e9", - "0x3e9", - "0x3e8" + "0x0" ] }, { - "depth": 1, - "gas": 2054913, + "pc": 3082, + "op": "DUP3", + "gas": 2053310, "gasCost": 3, - "op": "ISZERO", - "pc": 3002, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", - "0x870", + "0x888", + "0x882", "0x1", "0x3e8", - "0x3e9", "0x0" ] }, { - "depth": 1, - "gas": 2054910, + "pc": 3083, + "op": "DUP3", + "gas": 2053307, "gasCost": 3, - "op": "PUSH3", - "pc": 3003, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", - "0x870", + "0x888", + "0x882", "0x1", "0x3e8", - "0x3e9", + "0x0", "0x1" ] }, { + "pc": 3084, + "op": "ADD", + "gas": 2053304, + "gasCost": 3, "depth": 1, - "gas": 2054907, - "gasCost": 10, - "op": "JUMPI", - "pc": 3007, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", - "0x870", + "0x888", + "0x882", "0x1", "0x3e8", - "0x3e9", + "0x0", "0x1", - "0xbca" + "0x3e8" ] }, { + "pc": 3085, + "op": "SWAP1", + "gas": 2053301, + "gasCost": 3, "depth": 1, - "gas": 2054897, - "gasCost": 1, - "op": "JUMPDEST", - "pc": 3018, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", - "0x870", + "0x888", + "0x882", "0x1", "0x3e8", + "0x0", "0x3e9" ] }, { + "pc": 3086, + "op": "POP", + "gas": 2053298, + "gasCost": 2, "depth": 1, - "gas": 2054896, - "gasCost": 3, + "stack": [ + "0xa0712d68", + "0x1cd", + "0x3e8", + "0x0", + "0x888", + "0x882", + "0x1", + "0x3e8", + "0x3e9", + "0x0" + ] + }, + { + "pc": 3087, "op": "SWAP3", - "pc": 3019, + "gas": 2053296, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", - "0x870", + "0x888", + "0x882", "0x1", "0x3e8", "0x3e9" ] }, { - "depth": 1, - "gas": 2054893, - "gasCost": 3, + "pc": 3088, "op": "SWAP2", - "pc": 3020, + "gas": 2053293, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x1", "0x3e8", - "0x870" + "0x882" ] }, { - "depth": 1, - "gas": 2054890, - "gasCost": 2, + "pc": 3089, "op": "POP", - "pc": 3021, + "gas": 2053290, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", - "0x870", + "0x882", "0x3e8", "0x1" ] }, { - "depth": 1, - "gas": 2054888, - "gasCost": 2, + "pc": 3090, "op": "POP", - "pc": 3022, + "gas": 2053288, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", - "0x870", + "0x882", "0x3e8" ] }, { - "depth": 1, - "gas": 2054886, - "gasCost": 8, + "pc": 3091, "op": "JUMP", - "pc": 3023, + "gas": 2053286, + "gasCost": 8, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", - "0x870" + "0x882" ] }, { - "depth": 1, - "gas": 2054878, - "gasCost": 1, + "pc": 2178, "op": "JUMPDEST", - "pc": 2160, + "gas": 2053278, + "gasCost": 1, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9" ] }, { - "depth": 1, - "gas": 2054877, - "gasCost": 3, + "pc": 2179, "op": "PUSH3", - "pc": 2161, + "gas": 2053277, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9" ] }, { - "depth": 1, - "gas": 2054874, - "gasCost": 8, + "pc": 2183, "op": "JUMP", - "pc": 2165, + "gas": 2053274, + "gasCost": 8, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x280" ] }, { - "depth": 1, - "gas": 2054866, - "gasCost": 1, - "op": "JUMPDEST", "pc": 640, + "op": "JUMPDEST", + "gas": 2053266, + "gasCost": 1, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9" ] }, { - "depth": 1, - "gas": 2054865, - "gasCost": 3, - "op": "PUSH1", "pc": 641, + "op": "PUSH1", + "gas": 2053265, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9" ] }, { - "depth": 1, - "gas": 2054862, - "gasCost": 2, - "op": "CALLER", "pc": 643, + "op": "CALLER", + "gas": 2053262, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0" ] }, { - "depth": 1, - "gas": 2054860, - "gasCost": 3, - "op": "PUSH20", "pc": 644, + "op": "PUSH20", + "gas": 2053260, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address" ] }, { - "depth": 1, - "gas": 2054857, - "gasCost": 3, - "op": "AND", "pc": 665, + "op": "AND", + "gas": 2053257, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -7256,34 +7338,34 @@ ] }, { - "depth": 1, - "gas": 2054854, - "gasCost": 3, - "op": "PUSH32", "pc": 666, + "op": "PUSH32", + "gas": 2053254, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address" ] }, { - "depth": 1, - "gas": 2054851, - "gasCost": 3, - "op": "DUP4", "pc": 699, + "op": "DUP4", + "gas": 2053251, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -7291,17 +7373,17 @@ ] }, { - "depth": 1, - "gas": 2054848, - "gasCost": 3, - "op": "PUSH1", "pc": 700, + "op": "PUSH1", + "gas": 2053248, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -7310,17 +7392,17 @@ ] }, { - "depth": 1, - "gas": 2054845, - "gasCost": 3, - "op": "MLOAD", "pc": 702, + "op": "MLOAD", + "gas": 2053245, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -7330,17 +7412,17 @@ ] }, { - "depth": 1, - "gas": 2054842, - "gasCost": 3, - "op": "PUSH3", "pc": 703, + "op": "PUSH3", + "gas": 2053242, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -7350,17 +7432,17 @@ ] }, { - "depth": 1, - "gas": 2054839, - "gasCost": 3, - "op": "SWAP2", "pc": 707, + "op": "SWAP2", + "gas": 2053239, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -7371,17 +7453,17 @@ ] }, { - "depth": 1, - "gas": 2054836, - "gasCost": 3, - "op": "SWAP1", "pc": 708, + "op": "SWAP1", + "gas": 2053236, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -7392,17 +7474,17 @@ ] }, { - "depth": 1, - "gas": 2054833, - "gasCost": 3, - "op": "PUSH3", "pc": 709, + "op": "PUSH3", + "gas": 2053233, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -7413,17 +7495,17 @@ ] }, { - "depth": 1, - "gas": 2054830, - "gasCost": 8, - "op": "JUMP", "pc": 713, + "op": "JUMP", + "gas": 2053230, + "gasCost": 8, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -7431,21 +7513,21 @@ "0x2ca", "0x3e9", "0x80", - "0xb34" + "0xb56" ] }, { - "depth": 1, - "gas": 2054822, - "gasCost": 1, + "pc": 2902, "op": "JUMPDEST", - "pc": 2868, + "gas": 2053222, + "gasCost": 1, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -7456,17 +7538,17 @@ ] }, { - "depth": 1, - "gas": 2054821, - "gasCost": 3, + "pc": 2903, "op": "PUSH1", - "pc": 2869, + "gas": 2053221, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -7477,17 +7559,17 @@ ] }, { - "depth": 1, - "gas": 2054818, - "gasCost": 3, + "pc": 2905, "op": "PUSH1", - "pc": 2871, + "gas": 2053218, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -7499,17 +7581,17 @@ ] }, { - "depth": 1, - "gas": 2054815, - "gasCost": 3, + "pc": 2907, "op": "DUP3", - "pc": 2873, + "gas": 2053215, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -7522,17 +7604,17 @@ ] }, { - "depth": 1, - "gas": 2054812, - "gasCost": 3, + "pc": 2908, "op": "ADD", - "pc": 2874, + "gas": 2053212, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -7546,17 +7628,17 @@ ] }, { - "depth": 1, - "gas": 2054809, - "gasCost": 3, + "pc": 2909, "op": "SWAP1", - "pc": 2875, + "gas": 2053209, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -7569,17 +7651,17 @@ ] }, { - "depth": 1, - "gas": 2054806, - "gasCost": 2, + "pc": 2910, "op": "POP", - "pc": 2876, + "gas": 2053206, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -7592,17 +7674,17 @@ ] }, { - "depth": 1, - "gas": 2054804, - "gasCost": 3, + "pc": 2911, "op": "PUSH3", - "pc": 2877, + "gas": 2053204, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -7614,17 +7696,17 @@ ] }, { - "depth": 1, - "gas": 2054801, - "gasCost": 3, + "pc": 2915, "op": "PUSH1", - "pc": 2881, + "gas": 2053201, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -7633,21 +7715,21 @@ "0x3e9", "0x80", "0xc0", - "0xb4b" + "0xb6d" ] }, { - "depth": 1, - "gas": 2054798, - "gasCost": 3, + "pc": 2917, "op": "DUP4", - "pc": 2883, + "gas": 2053198, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -7656,22 +7738,22 @@ "0x3e9", "0x80", "0xc0", - "0xb4b", + "0xb6d", "0x0" ] }, { - "depth": 1, - "gas": 2054795, - "gasCost": 3, + "pc": 2918, "op": "ADD", - "pc": 2884, + "gas": 2053195, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -7680,23 +7762,23 @@ "0x3e9", "0x80", "0xc0", - "0xb4b", + "0xb6d", "0x0", "0x80" ] }, { - "depth": 1, - "gas": 2054792, - "gasCost": 3, + "pc": 2919, "op": "DUP5", - "pc": 2885, + "gas": 2053192, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -7705,22 +7787,22 @@ "0x3e9", "0x80", "0xc0", - "0xb4b", + "0xb6d", "0x80" ] }, { - "depth": 1, - "gas": 2054789, - "gasCost": 3, + "pc": 2920, "op": "PUSH3", - "pc": 2886, + "gas": 2053189, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -7729,23 +7811,23 @@ "0x3e9", "0x80", "0xc0", - "0xb4b", + "0xb6d", "0x80", "0x3e9" ] }, { - "depth": 1, - "gas": 2054786, - "gasCost": 8, + "pc": 2924, "op": "JUMP", - "pc": 2890, + "gas": 2053186, + "gasCost": 8, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -7754,24 +7836,24 @@ "0x3e9", "0x80", "0xc0", - "0xb4b", + "0xb6d", "0x80", "0x3e9", - "0x964" + "0x986" ] }, { - "depth": 1, - "gas": 2054778, - "gasCost": 1, + "pc": 2438, "op": "JUMPDEST", - "pc": 2404, + "gas": 2053178, + "gasCost": 1, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -7780,23 +7862,23 @@ "0x3e9", "0x80", "0xc0", - "0xb4b", + "0xb6d", "0x80", "0x3e9" ] }, { - "depth": 1, - "gas": 2054777, - "gasCost": 3, + "pc": 2439, "op": "PUSH3", - "pc": 2405, + "gas": 2053177, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -7805,23 +7887,23 @@ "0x3e9", "0x80", "0xc0", - "0xb4b", + "0xb6d", "0x80", "0x3e9" ] }, { - "depth": 1, - "gas": 2054774, - "gasCost": 3, + "pc": 2443, "op": "DUP2", - "pc": 2409, + "gas": 2053174, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -7830,24 +7912,24 @@ "0x3e9", "0x80", "0xc0", - "0xb4b", + "0xb6d", "0x80", "0x3e9", - "0x96f" + "0x991" ] }, { - "depth": 1, - "gas": 2054771, - "gasCost": 3, + "pc": 2444, "op": "PUSH3", - "pc": 2410, + "gas": 2053171, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -7856,25 +7938,25 @@ "0x3e9", "0x80", "0xc0", - "0xb4b", + "0xb6d", "0x80", "0x3e9", - "0x96f", + "0x991", "0x3e9" ] }, { - "depth": 1, - "gas": 2054768, - "gasCost": 8, + "pc": 2448, "op": "JUMP", - "pc": 2414, + "gas": 2053168, + "gasCost": 8, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -7883,26 +7965,26 @@ "0x3e9", "0x80", "0xc0", - "0xb4b", + "0xb6d", "0x80", "0x3e9", - "0x96f", + "0x991", "0x3e9", - "0x95a" + "0x97c" ] }, { - "depth": 1, - "gas": 2054760, - "gasCost": 1, + "pc": 2428, "op": "JUMPDEST", - "pc": 2394, + "gas": 2053160, + "gasCost": 1, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -7911,25 +7993,25 @@ "0x3e9", "0x80", "0xc0", - "0xb4b", + "0xb6d", "0x80", "0x3e9", - "0x96f", + "0x991", "0x3e9" ] }, { - "depth": 1, - "gas": 2054759, - "gasCost": 3, + "pc": 2429, "op": "PUSH1", - "pc": 2395, + "gas": 2053159, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -7938,25 +8020,25 @@ "0x3e9", "0x80", "0xc0", - "0xb4b", + "0xb6d", "0x80", "0x3e9", - "0x96f", + "0x991", "0x3e9" ] }, { - "depth": 1, - "gas": 2054756, - "gasCost": 3, + "pc": 2431, "op": "DUP2", - "pc": 2397, + "gas": 2053156, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -7965,26 +8047,26 @@ "0x3e9", "0x80", "0xc0", - "0xb4b", + "0xb6d", "0x80", "0x3e9", - "0x96f", + "0x991", "0x3e9", "0x0" ] }, { - "depth": 1, - "gas": 2054753, - "gasCost": 3, + "pc": 2432, "op": "SWAP1", - "pc": 2398, + "gas": 2053153, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -7993,27 +8075,27 @@ "0x3e9", "0x80", "0xc0", - "0xb4b", + "0xb6d", "0x80", "0x3e9", - "0x96f", + "0x991", "0x3e9", "0x0", "0x3e9" ] }, { - "depth": 1, - "gas": 2054750, - "gasCost": 2, + "pc": 2433, "op": "POP", - "pc": 2399, + "gas": 2053150, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -8022,27 +8104,27 @@ "0x3e9", "0x80", "0xc0", - "0xb4b", + "0xb6d", "0x80", "0x3e9", - "0x96f", + "0x991", "0x3e9", "0x3e9", "0x0" ] }, { - "depth": 1, - "gas": 2054748, - "gasCost": 3, + "pc": 2434, "op": "SWAP2", - "pc": 2400, + "gas": 2053148, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -8051,26 +8133,26 @@ "0x3e9", "0x80", "0xc0", - "0xb4b", + "0xb6d", "0x80", "0x3e9", - "0x96f", + "0x991", "0x3e9", "0x3e9" ] }, { - "depth": 1, - "gas": 2054745, - "gasCost": 3, + "pc": 2435, "op": "SWAP1", - "pc": 2401, + "gas": 2053145, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -8079,26 +8161,26 @@ "0x3e9", "0x80", "0xc0", - "0xb4b", + "0xb6d", "0x80", "0x3e9", "0x3e9", "0x3e9", - "0x96f" + "0x991" ] }, { - "depth": 1, - "gas": 2054742, - "gasCost": 2, + "pc": 2436, "op": "POP", - "pc": 2402, + "gas": 2053142, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -8107,26 +8189,26 @@ "0x3e9", "0x80", "0xc0", - "0xb4b", + "0xb6d", "0x80", "0x3e9", "0x3e9", - "0x96f", + "0x991", "0x3e9" ] }, { - "depth": 1, - "gas": 2054740, - "gasCost": 8, + "pc": 2437, "op": "JUMP", - "pc": 2403, + "gas": 2053140, + "gasCost": 8, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -8135,25 +8217,25 @@ "0x3e9", "0x80", "0xc0", - "0xb4b", + "0xb6d", "0x80", "0x3e9", "0x3e9", - "0x96f" + "0x991" ] }, { - "depth": 1, - "gas": 2054732, - "gasCost": 1, + "pc": 2449, "op": "JUMPDEST", - "pc": 2415, + "gas": 2053132, + "gasCost": 1, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -8162,24 +8244,24 @@ "0x3e9", "0x80", "0xc0", - "0xb4b", + "0xb6d", "0x80", "0x3e9", "0x3e9" ] }, { - "depth": 1, - "gas": 2054731, - "gasCost": 3, + "pc": 2450, "op": "DUP3", - "pc": 2416, + "gas": 2053131, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -8188,24 +8270,24 @@ "0x3e9", "0x80", "0xc0", - "0xb4b", + "0xb6d", "0x80", "0x3e9", "0x3e9" ] }, { - "depth": 1, - "gas": 2054728, - "gasCost": 3, + "pc": 2451, "op": "MSTORE", - "pc": 2417, + "gas": 2053128, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -8214,7 +8296,7 @@ "0x3e9", "0x80", "0xc0", - "0xb4b", + "0xb6d", "0x80", "0x3e9", "0x3e9", @@ -8222,17 +8304,17 @@ ] }, { - "depth": 1, - "gas": 2054725, - "gasCost": 2, + "pc": 2452, "op": "POP", - "pc": 2418, + "gas": 2053125, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -8241,23 +8323,23 @@ "0x3e9", "0x80", "0xc0", - "0xb4b", + "0xb6d", "0x80", "0x3e9" ] }, { - "depth": 1, - "gas": 2054723, - "gasCost": 2, + "pc": 2453, "op": "POP", - "pc": 2419, + "gas": 2053123, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -8266,22 +8348,22 @@ "0x3e9", "0x80", "0xc0", - "0xb4b", + "0xb6d", "0x80" ] }, { - "depth": 1, - "gas": 2054721, - "gasCost": 8, + "pc": 2454, "op": "JUMP", - "pc": 2420, + "gas": 2053121, + "gasCost": 8, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -8290,21 +8372,21 @@ "0x3e9", "0x80", "0xc0", - "0xb4b" + "0xb6d" ] }, { - "depth": 1, - "gas": 2054713, - "gasCost": 1, + "pc": 2925, "op": "JUMPDEST", - "pc": 2891, + "gas": 2053113, + "gasCost": 1, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -8316,17 +8398,17 @@ ] }, { - "depth": 1, - "gas": 2054712, - "gasCost": 3, + "pc": 2926, "op": "DUP2", - "pc": 2892, + "gas": 2053112, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -8338,17 +8420,17 @@ ] }, { - "depth": 1, - "gas": 2054709, - "gasCost": 3, + "pc": 2927, "op": "DUP2", - "pc": 2893, + "gas": 2053109, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -8361,17 +8443,17 @@ ] }, { - "depth": 1, - "gas": 2054706, - "gasCost": 3, + "pc": 2928, "op": "SUB", - "pc": 2894, + "gas": 2053106, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -8385,17 +8467,17 @@ ] }, { - "depth": 1, - "gas": 2054703, - "gasCost": 3, + "pc": 2929, "op": "PUSH1", - "pc": 2895, + "gas": 2053103, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -8408,17 +8490,17 @@ ] }, { - "depth": 1, - "gas": 2054700, - "gasCost": 3, + "pc": 2931, "op": "DUP4", - "pc": 2897, + "gas": 2053100, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -8432,17 +8514,17 @@ ] }, { - "depth": 1, - "gas": 2054697, - "gasCost": 3, + "pc": 2932, "op": "ADD", - "pc": 2898, + "gas": 2053097, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -8457,17 +8539,17 @@ ] }, { - "depth": 1, - "gas": 2054694, - "gasCost": 3, + "pc": 2933, "op": "MSTORE", - "pc": 2899, + "gas": 2053094, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -8481,17 +8563,17 @@ ] }, { - "depth": 1, - "gas": 2054691, - "gasCost": 3, + "pc": 2934, "op": "PUSH3", - "pc": 2900, + "gas": 2053091, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -8503,17 +8585,17 @@ ] }, { - "depth": 1, - "gas": 2054688, - "gasCost": 3, + "pc": 2938, "op": "DUP2", - "pc": 2904, + "gas": 2053088, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -8522,21 +8604,21 @@ "0x3e9", "0x80", "0xc0", - "0xb5e" + "0xb80" ] }, { - "depth": 1, - "gas": 2054685, - "gasCost": 3, + "pc": 2939, "op": "PUSH3", - "pc": 2905, + "gas": 2053085, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -8545,22 +8627,22 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xc0" ] }, { - "depth": 1, - "gas": 2054682, - "gasCost": 8, + "pc": 2943, "op": "JUMP", - "pc": 2909, + "gas": 2053082, + "gasCost": 8, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -8569,23 +8651,23 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xc0", - "0xb0d" + "0xb2f" ] }, { - "depth": 1, - "gas": 2054674, - "gasCost": 1, + "pc": 2863, "op": "JUMPDEST", - "pc": 2829, + "gas": 2053074, + "gasCost": 1, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -8594,22 +8676,22 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xc0" ] }, { - "depth": 1, - "gas": 2054673, - "gasCost": 3, + "pc": 2864, "op": "PUSH1", - "pc": 2830, + "gas": 2053073, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -8618,22 +8700,22 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xc0" ] }, { - "depth": 1, - "gas": 2054670, - "gasCost": 3, + "pc": 2866, "op": "PUSH3", - "pc": 2832, + "gas": 2053070, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -8642,23 +8724,23 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xc0", "0x0" ] }, { - "depth": 1, - "gas": 2054667, - "gasCost": 3, + "pc": 2870, "op": "PUSH1", - "pc": 2836, + "gas": 2053067, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -8667,24 +8749,24 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xc0", "0x0", - "0xb1c" + "0xb3e" ] }, { - "depth": 1, - "gas": 2054664, - "gasCost": 3, + "pc": 2872, "op": "DUP4", - "pc": 2838, + "gas": 2053064, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -8693,25 +8775,25 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xc0", "0x0", - "0xb1c", + "0xb3e", "0xe" ] }, { - "depth": 1, - "gas": 2054661, - "gasCost": 3, + "pc": 2873, "op": "PUSH3", - "pc": 2839, + "gas": 2053061, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -8720,26 +8802,26 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xc0", "0x0", - "0xb1c", + "0xb3e", "0xe", "0xc0" ] }, { - "depth": 1, - "gas": 2054658, - "gasCost": 8, + "pc": 2877, "op": "JUMP", - "pc": 2843, + "gas": 2053058, + "gasCost": 8, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -8748,27 +8830,27 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xc0", "0x0", - "0xb1c", + "0xb3e", "0xe", "0xc0", - "0xad3" + "0xaf5" ] }, { - "depth": 1, - "gas": 2054650, - "gasCost": 1, + "pc": 2805, "op": "JUMPDEST", - "pc": 2771, + "gas": 2053050, + "gasCost": 1, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -8777,26 +8859,26 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xc0", "0x0", - "0xb1c", + "0xb3e", "0xe", "0xc0" ] }, { - "depth": 1, - "gas": 2054649, - "gasCost": 3, + "pc": 2806, "op": "PUSH1", - "pc": 2772, + "gas": 2053049, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -8805,26 +8887,26 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xc0", "0x0", - "0xb1c", + "0xb3e", "0xe", "0xc0" ] }, { - "depth": 1, - "gas": 2054646, - "gasCost": 3, + "pc": 2808, "op": "DUP3", - "pc": 2774, + "gas": 2053046, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -8833,27 +8915,27 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xc0", "0x0", - "0xb1c", + "0xb3e", "0xe", "0xc0", "0x0" ] }, { - "depth": 1, - "gas": 2054643, - "gasCost": 3, + "pc": 2809, "op": "DUP3", - "pc": 2775, + "gas": 2053043, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -8862,10 +8944,10 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xc0", "0x0", - "0xb1c", + "0xb3e", "0xe", "0xc0", "0x0", @@ -8873,17 +8955,17 @@ ] }, { - "depth": 1, - "gas": 2054640, - "gasCost": 3, + "pc": 2810, "op": "MSTORE", - "pc": 2776, + "gas": 2053040, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -8892,10 +8974,10 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xc0", "0x0", - "0xb1c", + "0xb3e", "0xe", "0xc0", "0x0", @@ -8904,17 +8986,17 @@ ] }, { - "depth": 1, - "gas": 2054637, - "gasCost": 3, + "pc": 2811, "op": "PUSH1", - "pc": 2777, + "gas": 2053037, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -8923,27 +9005,27 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xc0", "0x0", - "0xb1c", + "0xb3e", "0xe", "0xc0", "0x0" ] }, { - "depth": 1, - "gas": 2054634, - "gasCost": 3, + "pc": 2813, "op": "DUP3", - "pc": 2779, + "gas": 2053034, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -8952,10 +9034,10 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xc0", "0x0", - "0xb1c", + "0xb3e", "0xe", "0xc0", "0x0", @@ -8963,17 +9045,17 @@ ] }, { - "depth": 1, - "gas": 2054631, - "gasCost": 3, + "pc": 2814, "op": "ADD", - "pc": 2780, + "gas": 2053031, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -8982,10 +9064,10 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xc0", "0x0", - "0xb1c", + "0xb3e", "0xe", "0xc0", "0x0", @@ -8994,17 +9076,17 @@ ] }, { - "depth": 1, - "gas": 2054628, - "gasCost": 3, + "pc": 2815, "op": "SWAP1", - "pc": 2781, + "gas": 2053028, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -9013,10 +9095,10 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xc0", "0x0", - "0xb1c", + "0xb3e", "0xe", "0xc0", "0x0", @@ -9024,17 +9106,17 @@ ] }, { - "depth": 1, - "gas": 2054625, - "gasCost": 2, + "pc": 2816, "op": "POP", - "pc": 2782, + "gas": 2053025, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -9043,10 +9125,10 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xc0", "0x0", - "0xb1c", + "0xb3e", "0xe", "0xc0", "0xe0", @@ -9054,17 +9136,17 @@ ] }, { - "depth": 1, - "gas": 2054623, - "gasCost": 3, + "pc": 2817, "op": "SWAP3", - "pc": 2783, + "gas": 2053023, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -9073,27 +9155,27 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xc0", "0x0", - "0xb1c", + "0xb3e", "0xe", "0xc0", "0xe0" ] }, { - "depth": 1, - "gas": 2054620, - "gasCost": 3, + "pc": 2818, "op": "SWAP2", - "pc": 2784, + "gas": 2053020, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -9102,27 +9184,27 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xc0", "0x0", "0xe0", "0xe", "0xc0", - "0xb1c" + "0xb3e" ] }, { - "depth": 1, - "gas": 2054617, - "gasCost": 2, + "pc": 2819, "op": "POP", - "pc": 2785, + "gas": 2053017, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -9131,27 +9213,27 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xc0", "0x0", "0xe0", - "0xb1c", + "0xb3e", "0xc0", "0xe" ] }, { - "depth": 1, - "gas": 2054615, - "gasCost": 2, + "pc": 2820, "op": "POP", - "pc": 2786, + "gas": 2053015, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -9160,26 +9242,26 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xc0", "0x0", "0xe0", - "0xb1c", + "0xb3e", "0xc0" ] }, { - "depth": 1, - "gas": 2054613, - "gasCost": 8, + "pc": 2821, "op": "JUMP", - "pc": 2787, + "gas": 2053013, + "gasCost": 8, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -9188,25 +9270,25 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xc0", "0x0", "0xe0", - "0xb1c" + "0xb3e" ] }, { - "depth": 1, - "gas": 2054605, - "gasCost": 1, + "pc": 2878, "op": "JUMPDEST", - "pc": 2844, + "gas": 2053005, + "gasCost": 1, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -9215,24 +9297,24 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xc0", "0x0", "0xe0" ] }, { - "depth": 1, - "gas": 2054604, - "gasCost": 3, + "pc": 2879, "op": "SWAP2", - "pc": 2845, + "gas": 2053004, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -9241,24 +9323,24 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xc0", "0x0", "0xe0" ] }, { - "depth": 1, - "gas": 2054601, - "gasCost": 2, + "pc": 2880, "op": "POP", - "pc": 2846, + "gas": 2053001, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -9267,24 +9349,24 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xe0", "0x0", "0xc0" ] }, { - "depth": 1, - "gas": 2054599, - "gasCost": 3, + "pc": 2881, "op": "PUSH3", - "pc": 2847, + "gas": 2052999, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -9293,23 +9375,23 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xe0", "0x0" ] }, { - "depth": 1, - "gas": 2054596, - "gasCost": 3, + "pc": 2885, "op": "DUP3", - "pc": 2851, + "gas": 2052996, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -9318,24 +9400,24 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xe0", "0x0", - "0xb29" + "0xb4b" ] }, { - "depth": 1, - "gas": 2054593, - "gasCost": 3, + "pc": 2886, "op": "PUSH3", - "pc": 2852, + "gas": 2052993, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -9344,25 +9426,25 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xe0", "0x0", - "0xb29", + "0xb4b", "0xe0" ] }, { - "depth": 1, - "gas": 2054590, - "gasCost": 8, + "pc": 2890, "op": "JUMP", - "pc": 2856, + "gas": 2052990, + "gasCost": 8, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -9371,26 +9453,26 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xe0", "0x0", - "0xb29", + "0xb4b", "0xe0", - "0xae4" + "0xb06" ] }, { - "depth": 1, - "gas": 2054582, - "gasCost": 1, + "pc": 2822, "op": "JUMPDEST", - "pc": 2788, + "gas": 2052982, + "gasCost": 1, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -9399,25 +9481,25 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xe0", "0x0", - "0xb29", + "0xb4b", "0xe0" ] }, { - "depth": 1, - "gas": 2054581, - "gasCost": 3, + "pc": 2823, "op": "PUSH32", - "pc": 2789, + "gas": 2052981, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -9426,25 +9508,25 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xe0", "0x0", - "0xb29", + "0xb4b", "0xe0" ] }, { - "depth": 1, - "gas": 2054578, - "gasCost": 3, + "pc": 2856, "op": "PUSH1", - "pc": 2822, + "gas": 2052978, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -9453,26 +9535,26 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xe0", "0x0", - "0xb29", + "0xb4b", "0xe0", "0x696e7465726e616c20746f706963000000000000000000000000000000000000" ] }, { - "depth": 1, - "gas": 2054575, - "gasCost": 3, + "pc": 2858, "op": "DUP3", - "pc": 2824, + "gas": 2052975, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -9481,27 +9563,27 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xe0", "0x0", - "0xb29", + "0xb4b", "0xe0", "0x696e7465726e616c20746f706963000000000000000000000000000000000000", "0x0" ] }, { - "depth": 1, - "gas": 2054572, - "gasCost": 3, + "pc": 2859, "op": "ADD", - "pc": 2825, + "gas": 2052972, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -9510,10 +9592,10 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xe0", "0x0", - "0xb29", + "0xb4b", "0xe0", "0x696e7465726e616c20746f706963000000000000000000000000000000000000", "0x0", @@ -9521,17 +9603,17 @@ ] }, { - "depth": 1, - "gas": 2054569, - "gasCost": 3, + "pc": 2860, "op": "MSTORE", - "pc": 2826, + "gas": 2052969, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -9540,27 +9622,27 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xe0", "0x0", - "0xb29", + "0xb4b", "0xe0", "0x696e7465726e616c20746f706963000000000000000000000000000000000000", "0xe0" ] }, { - "depth": 1, - "gas": 2054566, - "gasCost": 2, + "pc": 2861, "op": "POP", - "pc": 2827, + "gas": 2052966, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -9569,25 +9651,25 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xe0", "0x0", - "0xb29", + "0xb4b", "0xe0" ] }, { - "depth": 1, - "gas": 2054564, - "gasCost": 8, + "pc": 2862, "op": "JUMP", - "pc": 2828, + "gas": 2052964, + "gasCost": 8, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -9596,24 +9678,24 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xe0", "0x0", - "0xb29" + "0xb4b" ] }, { - "depth": 1, - "gas": 2054556, - "gasCost": 1, + "pc": 2891, "op": "JUMPDEST", - "pc": 2857, + "gas": 2052956, + "gasCost": 1, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -9622,23 +9704,23 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xe0", "0x0" ] }, { - "depth": 1, - "gas": 2054555, - "gasCost": 3, + "pc": 2892, "op": "PUSH1", - "pc": 2858, + "gas": 2052955, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -9647,23 +9729,23 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xe0", "0x0" ] }, { - "depth": 1, - "gas": 2054552, - "gasCost": 3, + "pc": 2894, "op": "DUP3", - "pc": 2860, + "gas": 2052952, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -9672,24 +9754,24 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xe0", "0x0", "0x20" ] }, { - "depth": 1, - "gas": 2054549, - "gasCost": 3, + "pc": 2895, "op": "ADD", - "pc": 2861, + "gas": 2052949, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -9698,7 +9780,7 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xe0", "0x0", "0x20", @@ -9706,17 +9788,17 @@ ] }, { - "depth": 1, - "gas": 2054546, - "gasCost": 3, + "pc": 2896, "op": "SWAP1", - "pc": 2862, + "gas": 2052946, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -9725,24 +9807,24 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xe0", "0x0", "0x100" ] }, { - "depth": 1, - "gas": 2054543, - "gasCost": 2, + "pc": 2897, "op": "POP", - "pc": 2863, + "gas": 2052943, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -9751,24 +9833,24 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xe0", "0x100", "0x0" ] }, { - "depth": 1, - "gas": 2054541, - "gasCost": 3, + "pc": 2898, "op": "SWAP2", - "pc": 2864, + "gas": 2052941, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -9777,23 +9859,23 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xe0", "0x100" ] }, { - "depth": 1, - "gas": 2054538, - "gasCost": 3, + "pc": 2899, "op": "SWAP1", - "pc": 2865, + "gas": 2052938, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -9804,21 +9886,21 @@ "0xc0", "0x100", "0xe0", - "0xb5e" + "0xb80" ] }, { - "depth": 1, - "gas": 2054535, - "gasCost": 2, + "pc": 2900, "op": "POP", - "pc": 2866, + "gas": 2052935, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -9828,22 +9910,22 @@ "0x80", "0xc0", "0x100", - "0xb5e", + "0xb80", "0xe0" ] }, { - "depth": 1, - "gas": 2054533, - "gasCost": 8, + "pc": 2901, "op": "JUMP", - "pc": 2867, + "gas": 2052933, + "gasCost": 8, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -9853,21 +9935,21 @@ "0x80", "0xc0", "0x100", - "0xb5e" + "0xb80" ] }, { - "depth": 1, - "gas": 2054525, - "gasCost": 1, + "pc": 2944, "op": "JUMPDEST", - "pc": 2910, + "gas": 2052925, + "gasCost": 1, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -9880,17 +9962,17 @@ ] }, { - "depth": 1, - "gas": 2054524, - "gasCost": 3, + "pc": 2945, "op": "SWAP1", - "pc": 2911, + "gas": 2052924, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -9903,17 +9985,17 @@ ] }, { - "depth": 1, - "gas": 2054521, - "gasCost": 2, + "pc": 2946, "op": "POP", - "pc": 2912, + "gas": 2052921, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -9926,17 +10008,17 @@ ] }, { - "depth": 1, - "gas": 2054519, - "gasCost": 3, + "pc": 2947, "op": "SWAP3", - "pc": 2913, + "gas": 2052919, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -9948,17 +10030,17 @@ ] }, { - "depth": 1, - "gas": 2054516, - "gasCost": 3, + "pc": 2948, "op": "SWAP2", - "pc": 2914, + "gas": 2052916, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -9970,17 +10052,17 @@ ] }, { - "depth": 1, - "gas": 2054513, - "gasCost": 2, + "pc": 2949, "op": "POP", - "pc": 2915, + "gas": 2052913, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -9992,17 +10074,17 @@ ] }, { - "depth": 1, - "gas": 2054511, - "gasCost": 2, + "pc": 2950, "op": "POP", - "pc": 2916, + "gas": 2052911, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -10013,17 +10095,17 @@ ] }, { - "depth": 1, - "gas": 2054509, - "gasCost": 8, + "pc": 2951, "op": "JUMP", - "pc": 2917, + "gas": 2052909, + "gasCost": 8, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -10033,17 +10115,17 @@ ] }, { - "depth": 1, - "gas": 2054501, - "gasCost": 1, - "op": "JUMPDEST", "pc": 714, + "op": "JUMPDEST", + "gas": 2052901, + "gasCost": 1, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -10052,17 +10134,17 @@ ] }, { - "depth": 1, - "gas": 2054500, - "gasCost": 3, - "op": "PUSH1", "pc": 715, + "op": "PUSH1", + "gas": 2052900, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -10071,17 +10153,17 @@ ] }, { - "depth": 1, - "gas": 2054497, - "gasCost": 3, - "op": "MLOAD", "pc": 717, + "op": "MLOAD", + "gas": 2052897, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -10091,17 +10173,17 @@ ] }, { - "depth": 1, - "gas": 2054494, - "gasCost": 3, - "op": "DUP1", "pc": 718, + "op": "DUP1", + "gas": 2052894, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -10111,17 +10193,17 @@ ] }, { - "depth": 1, - "gas": 2054491, - "gasCost": 3, - "op": "SWAP2", "pc": 719, + "op": "SWAP2", + "gas": 2052891, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -10132,17 +10214,17 @@ ] }, { - "depth": 1, - "gas": 2054488, - "gasCost": 3, - "op": "SUB", "pc": 720, + "op": "SUB", + "gas": 2052888, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -10153,17 +10235,17 @@ ] }, { - "depth": 1, - "gas": 2054485, - "gasCost": 3, - "op": "SWAP1", "pc": 721, + "op": "SWAP1", + "gas": 2052885, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -10173,17 +10255,17 @@ ] }, { - "depth": 1, - "gas": 2054482, - "gasCost": 2149, - "op": "LOG2", "pc": 722, + "op": "LOG2", + "gas": 2052882, + "gasCost": 2149, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "OWNER.address", @@ -10193,50 +10275,50 @@ ] }, { - "depth": 1, - "gas": 2052333, - "gasCost": 3, - "op": "DUP2", "pc": 723, + "op": "DUP2", + "gas": 2050733, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0" ] }, { - "depth": 1, - "gas": 2052330, - "gasCost": 3, - "op": "PUSH1", "pc": 724, + "op": "PUSH1", + "gas": 2050730, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "0x3e9" ] }, { - "depth": 1, - "gas": 2052327, - "gasCost": 3, - "op": "PUSH1", "pc": 726, + "op": "PUSH1", + "gas": 2050727, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "0x3e9", @@ -10244,17 +10326,17 @@ ] }, { - "depth": 1, - "gas": 2052324, - "gasCost": 3, - "op": "DUP3", "pc": 728, + "op": "DUP3", + "gas": 2050724, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "0x3e9", @@ -10263,17 +10345,17 @@ ] }, { - "depth": 1, - "gas": 2052321, - "gasCost": 3, - "op": "DUP3", "pc": 729, + "op": "DUP3", + "gas": 2050721, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "0x3e9", @@ -10283,17 +10365,17 @@ ] }, { - "depth": 1, - "gas": 2052318, - "gasCost": 200, - "op": "SLOAD", "pc": 730, + "op": "SLOAD", + "gas": 2050718, + "gasCost": 2100, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "0x3e9", @@ -10308,17 +10390,17 @@ } }, { - "depth": 1, - "gas": 2052118, - "gasCost": 3, - "op": "PUSH3", "pc": 731, + "op": "PUSH3", + "gas": 2048618, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "0x3e9", @@ -10329,17 +10411,17 @@ ] }, { - "depth": 1, - "gas": 2052115, - "gasCost": 3, - "op": "SWAP2", "pc": 735, + "op": "SWAP2", + "gas": 2048615, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "0x3e9", @@ -10351,17 +10433,17 @@ ] }, { - "depth": 1, - "gas": 2052112, - "gasCost": 3, - "op": "SWAP1", "pc": 736, + "op": "SWAP1", + "gas": 2048612, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "0x3e9", @@ -10373,17 +10455,17 @@ ] }, { - "depth": 1, - "gas": 2052109, - "gasCost": 3, - "op": "PUSH3", "pc": 737, + "op": "PUSH3", + "gas": 2048609, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "0x3e9", @@ -10395,17 +10477,17 @@ ] }, { - "depth": 1, - "gas": 2052106, - "gasCost": 8, - "op": "JUMP", "pc": 741, + "op": "JUMP", + "gas": 2048606, + "gasCost": 8, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "0x3e9", @@ -10414,21 +10496,21 @@ "0x2e6", "0x3e9", "0x0", - "0xb95" + "0xbb7" ] }, { - "depth": 1, - "gas": 2052098, - "gasCost": 1, + "pc": 2999, "op": "JUMPDEST", - "pc": 2965, + "gas": 2048598, + "gasCost": 1, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "0x3e9", @@ -10440,17 +10522,17 @@ ] }, { - "depth": 1, - "gas": 2052097, - "gasCost": 3, + "pc": 3000, "op": "PUSH1", - "pc": 2966, + "gas": 2048597, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "0x3e9", @@ -10462,17 +10544,17 @@ ] }, { - "depth": 1, - "gas": 2052094, - "gasCost": 3, + "pc": 3002, "op": "PUSH3", - "pc": 2968, + "gas": 2048594, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "0x3e9", @@ -10485,17 +10567,17 @@ ] }, { - "depth": 1, - "gas": 2052091, - "gasCost": 3, + "pc": 3006, "op": "DUP3", - "pc": 2972, + "gas": 2048591, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "0x3e9", @@ -10505,21 +10587,21 @@ "0x3e9", "0x0", "0x0", - "0xba2" + "0xbc4" ] }, { - "depth": 1, - "gas": 2052088, - "gasCost": 3, + "pc": 3007, "op": "PUSH3", - "pc": 2973, + "gas": 2048588, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "0x3e9", @@ -10529,22 +10611,22 @@ "0x3e9", "0x0", "0x0", - "0xba2", + "0xbc4", "0x0" ] }, { - "depth": 1, - "gas": 2052085, - "gasCost": 8, + "pc": 3011, "op": "JUMP", - "pc": 2977, + "gas": 2048585, + "gasCost": 8, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "0x3e9", @@ -10554,23 +10636,23 @@ "0x3e9", "0x0", "0x0", - "0xba2", + "0xbc4", "0x0", - "0x95a" + "0x97c" ] }, { - "depth": 1, - "gas": 2052077, - "gasCost": 1, + "pc": 2428, "op": "JUMPDEST", - "pc": 2394, + "gas": 2048577, + "gasCost": 1, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "0x3e9", @@ -10580,22 +10662,22 @@ "0x3e9", "0x0", "0x0", - "0xba2", + "0xbc4", "0x0" ] }, { - "depth": 1, - "gas": 2052076, - "gasCost": 3, + "pc": 2429, "op": "PUSH1", - "pc": 2395, + "gas": 2048576, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "0x3e9", @@ -10605,22 +10687,22 @@ "0x3e9", "0x0", "0x0", - "0xba2", + "0xbc4", "0x0" ] }, { - "depth": 1, - "gas": 2052073, - "gasCost": 3, + "pc": 2431, "op": "DUP2", - "pc": 2397, + "gas": 2048573, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "0x3e9", @@ -10630,23 +10712,23 @@ "0x3e9", "0x0", "0x0", - "0xba2", + "0xbc4", "0x0", "0x0" ] }, { - "depth": 1, - "gas": 2052070, - "gasCost": 3, + "pc": 2432, "op": "SWAP1", - "pc": 2398, + "gas": 2048570, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "0x3e9", @@ -10656,24 +10738,24 @@ "0x3e9", "0x0", "0x0", - "0xba2", + "0xbc4", "0x0", "0x0", "0x0" ] }, { - "depth": 1, - "gas": 2052067, - "gasCost": 2, + "pc": 2433, "op": "POP", - "pc": 2399, + "gas": 2048567, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "0x3e9", @@ -10683,24 +10765,24 @@ "0x3e9", "0x0", "0x0", - "0xba2", + "0xbc4", "0x0", "0x0", "0x0" ] }, { - "depth": 1, - "gas": 2052065, - "gasCost": 3, + "pc": 2434, "op": "SWAP2", - "pc": 2400, + "gas": 2048565, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "0x3e9", @@ -10710,23 +10792,23 @@ "0x3e9", "0x0", "0x0", - "0xba2", + "0xbc4", "0x0", "0x0" ] }, { - "depth": 1, - "gas": 2052062, - "gasCost": 3, + "pc": 2435, "op": "SWAP1", - "pc": 2401, + "gas": 2048562, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "0x3e9", @@ -10738,21 +10820,21 @@ "0x0", "0x0", "0x0", - "0xba2" + "0xbc4" ] }, { - "depth": 1, - "gas": 2052059, - "gasCost": 2, + "pc": 2436, "op": "POP", - "pc": 2402, + "gas": 2048559, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "0x3e9", @@ -10763,22 +10845,22 @@ "0x0", "0x0", "0x0", - "0xba2", + "0xbc4", "0x0" ] }, { - "depth": 1, - "gas": 2052057, - "gasCost": 8, + "pc": 2437, "op": "JUMP", - "pc": 2403, + "gas": 2048557, + "gasCost": 8, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "0x3e9", @@ -10789,21 +10871,21 @@ "0x0", "0x0", "0x0", - "0xba2" + "0xbc4" ] }, { - "depth": 1, - "gas": 2052049, - "gasCost": 1, + "pc": 3012, "op": "JUMPDEST", - "pc": 2978, + "gas": 2048549, + "gasCost": 1, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "0x3e9", @@ -10817,17 +10899,17 @@ ] }, { - "depth": 1, - "gas": 2052048, - "gasCost": 3, + "pc": 3013, "op": "SWAP2", - "pc": 2979, + "gas": 2048548, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "0x3e9", @@ -10841,17 +10923,17 @@ ] }, { - "depth": 1, - "gas": 2052045, - "gasCost": 2, + "pc": 3014, "op": "POP", - "pc": 2980, + "gas": 2048545, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "0x3e9", @@ -10865,17 +10947,17 @@ ] }, { - "depth": 1, - "gas": 2052043, - "gasCost": 3, + "pc": 3015, "op": "PUSH3", - "pc": 2981, + "gas": 2048543, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "0x3e9", @@ -10888,17 +10970,17 @@ ] }, { - "depth": 1, - "gas": 2052040, - "gasCost": 3, + "pc": 3019, "op": "DUP4", - "pc": 2985, + "gas": 2048540, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "0x3e9", @@ -10908,21 +10990,21 @@ "0x3e9", "0x0", "0x0", - "0xbaf" + "0xbd1" ] }, { - "depth": 1, - "gas": 2052037, - "gasCost": 3, + "pc": 3020, "op": "PUSH3", - "pc": 2986, + "gas": 2048537, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "0x3e9", @@ -10932,22 +11014,22 @@ "0x3e9", "0x0", "0x0", - "0xbaf", + "0xbd1", "0x3e9" ] }, { - "depth": 1, - "gas": 2052034, - "gasCost": 8, + "pc": 3024, "op": "JUMP", - "pc": 2990, + "gas": 2048534, + "gasCost": 8, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "0x3e9", @@ -10957,23 +11039,23 @@ "0x3e9", "0x0", "0x0", - "0xbaf", + "0xbd1", "0x3e9", - "0x95a" + "0x97c" ] }, { - "depth": 1, - "gas": 2052026, - "gasCost": 1, + "pc": 2428, "op": "JUMPDEST", - "pc": 2394, + "gas": 2048526, + "gasCost": 1, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "0x3e9", @@ -10983,22 +11065,22 @@ "0x3e9", "0x0", "0x0", - "0xbaf", + "0xbd1", "0x3e9" ] }, { - "depth": 1, - "gas": 2052025, - "gasCost": 3, + "pc": 2429, "op": "PUSH1", - "pc": 2395, + "gas": 2048525, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "0x3e9", @@ -11008,22 +11090,22 @@ "0x3e9", "0x0", "0x0", - "0xbaf", + "0xbd1", "0x3e9" ] }, { - "depth": 1, - "gas": 2052022, - "gasCost": 3, + "pc": 2431, "op": "DUP2", - "pc": 2397, + "gas": 2048522, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "0x3e9", @@ -11033,23 +11115,23 @@ "0x3e9", "0x0", "0x0", - "0xbaf", + "0xbd1", "0x3e9", "0x0" ] }, { - "depth": 1, - "gas": 2052019, - "gasCost": 3, + "pc": 2432, "op": "SWAP1", - "pc": 2398, + "gas": 2048519, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "0x3e9", @@ -11059,24 +11141,24 @@ "0x3e9", "0x0", "0x0", - "0xbaf", + "0xbd1", "0x3e9", "0x0", "0x3e9" ] }, { - "depth": 1, - "gas": 2052016, - "gasCost": 2, + "pc": 2433, "op": "POP", - "pc": 2399, + "gas": 2048516, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "0x3e9", @@ -11086,24 +11168,24 @@ "0x3e9", "0x0", "0x0", - "0xbaf", + "0xbd1", "0x3e9", "0x3e9", "0x0" ] }, { - "depth": 1, - "gas": 2052014, - "gasCost": 3, + "pc": 2434, "op": "SWAP2", - "pc": 2400, + "gas": 2048514, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "0x3e9", @@ -11113,23 +11195,23 @@ "0x3e9", "0x0", "0x0", - "0xbaf", + "0xbd1", "0x3e9", "0x3e9" ] }, { - "depth": 1, - "gas": 2052011, - "gasCost": 3, + "pc": 2435, "op": "SWAP1", - "pc": 2401, + "gas": 2048511, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "0x3e9", @@ -11141,21 +11223,21 @@ "0x0", "0x3e9", "0x3e9", - "0xbaf" + "0xbd1" ] }, { - "depth": 1, - "gas": 2052008, - "gasCost": 2, + "pc": 2436, "op": "POP", - "pc": 2402, + "gas": 2048508, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "0x3e9", @@ -11166,22 +11248,22 @@ "0x0", "0x0", "0x3e9", - "0xbaf", + "0xbd1", "0x3e9" ] }, { - "depth": 1, - "gas": 2052006, - "gasCost": 8, + "pc": 2437, "op": "JUMP", - "pc": 2403, + "gas": 2048506, + "gasCost": 8, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "0x3e9", @@ -11192,21 +11274,21 @@ "0x0", "0x0", "0x3e9", - "0xbaf" + "0xbd1" ] }, { - "depth": 1, - "gas": 2051998, - "gasCost": 1, + "pc": 3025, "op": "JUMPDEST", - "pc": 2991, + "gas": 2048498, + "gasCost": 1, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "0x3e9", @@ -11220,17 +11302,17 @@ ] }, { - "depth": 1, - "gas": 2051997, - "gasCost": 3, + "pc": 3026, "op": "SWAP3", - "pc": 2992, + "gas": 2048497, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "0x3e9", @@ -11244,17 +11326,17 @@ ] }, { - "depth": 1, - "gas": 2051994, - "gasCost": 2, + "pc": 3027, "op": "POP", - "pc": 2993, + "gas": 2048494, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "0x3e9", @@ -11268,17 +11350,17 @@ ] }, { - "depth": 1, - "gas": 2051992, - "gasCost": 3, + "pc": 3028, "op": "DUP3", - "pc": 2994, + "gas": 2048492, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "0x3e9", @@ -11291,17 +11373,17 @@ ] }, { - "depth": 1, - "gas": 2051989, + "pc": 3029, + "op": "PUSH32", + "gas": 2048489, "gasCost": 3, - "op": "DUP3", - "pc": 2995, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "0x3e9", @@ -11315,17 +11397,17 @@ ] }, { - "depth": 1, - "gas": 2051986, + "pc": 3062, + "op": "SUB", + "gas": 2048486, "gasCost": 3, - "op": "ADD", - "pc": 2996, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "0x3e9", @@ -11336,21 +11418,21 @@ "0x0", "0x0", "0x3e9", - "0x0" + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" ] }, { - "depth": 1, - "gas": 2051983, + "pc": 3063, + "op": "DUP3", + "gas": 2048483, "gasCost": 3, - "op": "SWAP1", - "pc": 2997, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "0x3e9", @@ -11360,21 +11442,21 @@ "0x3e9", "0x0", "0x0", - "0x3e9" + "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc16" ] }, { + "pc": 3064, + "op": "GT", + "gas": 2048480, + "gasCost": 3, "depth": 1, - "gas": 2051980, - "gasCost": 2, - "op": "POP", - "pc": 2998, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "0x3e9", @@ -11383,22 +11465,23 @@ "0x2e6", "0x3e9", "0x0", - "0x3e9", + "0x0", + "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc16", "0x0" ] }, { - "depth": 1, - "gas": 2051978, + "pc": 3065, + "op": "ISZERO", + "gas": 2048477, "gasCost": 3, - "op": "DUP1", - "pc": 2999, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "0x3e9", @@ -11407,21 +11490,22 @@ "0x2e6", "0x3e9", "0x0", - "0x3e9" + "0x0", + "0x0" ] }, { - "depth": 1, - "gas": 2051975, + "pc": 3066, + "op": "PUSH3", + "gas": 2048474, "gasCost": 3, - "op": "DUP3", - "pc": 3000, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "0x3e9", @@ -11430,22 +11514,22 @@ "0x2e6", "0x3e9", "0x0", - "0x3e9", - "0x3e9" + "0x0", + "0x1" ] }, { + "pc": 3070, + "op": "JUMPI", + "gas": 2048471, + "gasCost": 10, "depth": 1, - "gas": 2051972, - "gasCost": 3, - "op": "GT", - "pc": 3001, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "0x3e9", @@ -11454,23 +11538,46 @@ "0x2e6", "0x3e9", "0x0", + "0x0", + "0x1", + "0xc09" + ] + }, + { + "pc": 3081, + "op": "JUMPDEST", + "gas": 2048461, + "gasCost": 1, + "depth": 1, + "stack": [ + "0xa0712d68", + "0x1cd", + "0x3e8", + "0x0", + "0x888", + "0x3e9", + "0x0", "0x3e9", + "0x3", + "0x0", + "0x2e6", "0x3e9", + "0x0", "0x0" ] }, { - "depth": 1, - "gas": 2051969, + "pc": 3082, + "op": "DUP3", + "gas": 2048460, "gasCost": 3, - "op": "ISZERO", - "pc": 3002, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "0x3e9", @@ -11479,22 +11586,21 @@ "0x2e6", "0x3e9", "0x0", - "0x3e9", "0x0" ] }, { - "depth": 1, - "gas": 2051966, + "pc": 3083, + "op": "DUP3", + "gas": 2048457, "gasCost": 3, - "op": "PUSH3", - "pc": 3003, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "0x3e9", @@ -11503,22 +11609,22 @@ "0x2e6", "0x3e9", "0x0", - "0x3e9", - "0x1" + "0x0", + "0x3e9" ] }, { + "pc": 3084, + "op": "ADD", + "gas": 2048454, + "gasCost": 3, "depth": 1, - "gas": 2051963, - "gasCost": 10, - "op": "JUMPI", - "pc": 3007, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "0x3e9", @@ -11527,23 +11633,23 @@ "0x2e6", "0x3e9", "0x0", + "0x0", "0x3e9", - "0x1", - "0xbca" + "0x0" ] }, { + "pc": 3085, + "op": "SWAP1", + "gas": 2048451, + "gasCost": 3, "depth": 1, - "gas": 2051953, - "gasCost": 1, - "op": "JUMPDEST", - "pc": 3018, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "0x3e9", @@ -11552,21 +11658,46 @@ "0x2e6", "0x3e9", "0x0", + "0x0", "0x3e9" ] }, { + "pc": 3086, + "op": "POP", + "gas": 2048448, + "gasCost": 2, "depth": 1, - "gas": 2051952, - "gasCost": 3, + "stack": [ + "0xa0712d68", + "0x1cd", + "0x3e8", + "0x0", + "0x888", + "0x3e9", + "0x0", + "0x3e9", + "0x3", + "0x0", + "0x2e6", + "0x3e9", + "0x0", + "0x3e9", + "0x0" + ] + }, + { + "pc": 3087, "op": "SWAP3", - "pc": 3019, + "gas": 2048446, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "0x3e9", @@ -11579,17 +11710,17 @@ ] }, { - "depth": 1, - "gas": 2051949, - "gasCost": 3, + "pc": 3088, "op": "SWAP2", - "pc": 3020, + "gas": 2048443, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "0x3e9", @@ -11602,17 +11733,17 @@ ] }, { - "depth": 1, - "gas": 2051946, - "gasCost": 2, + "pc": 3089, "op": "POP", - "pc": 3021, + "gas": 2048440, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "0x3e9", @@ -11625,17 +11756,17 @@ ] }, { - "depth": 1, - "gas": 2051944, - "gasCost": 2, + "pc": 3090, "op": "POP", - "pc": 3022, + "gas": 2048438, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "0x3e9", @@ -11647,17 +11778,17 @@ ] }, { - "depth": 1, - "gas": 2051942, - "gasCost": 8, + "pc": 3091, "op": "JUMP", - "pc": 3023, + "gas": 2048436, + "gasCost": 8, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "0x3e9", @@ -11668,17 +11799,17 @@ ] }, { - "depth": 1, - "gas": 2051934, - "gasCost": 1, - "op": "JUMPDEST", "pc": 742, + "op": "JUMPDEST", + "gas": 2048428, + "gasCost": 1, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "0x3e9", @@ -11688,17 +11819,17 @@ ] }, { - "depth": 1, - "gas": 2051933, - "gasCost": 3, - "op": "SWAP3", "pc": 743, + "op": "SWAP3", + "gas": 2048427, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "0x3e9", @@ -11708,17 +11839,17 @@ ] }, { - "depth": 1, - "gas": 2051930, - "gasCost": 2, - "op": "POP", "pc": 744, + "op": "POP", + "gas": 2048424, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "0x3e9", @@ -11728,17 +11859,17 @@ ] }, { - "depth": 1, - "gas": 2051928, - "gasCost": 2, - "op": "POP", "pc": 745, + "op": "POP", + "gas": 2048422, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "0x3e9", @@ -11747,17 +11878,17 @@ ] }, { - "depth": 1, - "gas": 2051926, - "gasCost": 3, - "op": "DUP2", "pc": 746, + "op": "DUP2", + "gas": 2048420, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "0x3e9", @@ -11765,17 +11896,17 @@ ] }, { - "depth": 1, - "gas": 2051923, - "gasCost": 3, - "op": "SWAP1", "pc": 747, + "op": "SWAP1", + "gas": 2048417, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "0x3e9", @@ -11784,17 +11915,17 @@ ] }, { - "depth": 1, - "gas": 2051920, - "gasCost": 20000, - "op": "SSTORE", "pc": 748, + "op": "SSTORE", + "gas": 2048414, + "gasCost": 20000, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "0x3e9", @@ -11807,94 +11938,94 @@ } }, { - "depth": 1, - "gas": 2031920, - "gasCost": 2, - "op": "POP", "pc": 749, + "op": "POP", + "gas": 2028414, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "0x3e9" ] }, { - "depth": 1, - "gas": 2031918, - "gasCost": 3, - "op": "PUSH1", "pc": 750, + "op": "PUSH1", + "gas": 2028412, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0" ] }, { - "depth": 1, - "gas": 2031915, - "gasCost": 3, - "op": "SWAP1", "pc": 752, + "op": "SWAP1", + "gas": 2028409, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x0", "0x2" ] }, { - "depth": 1, - "gas": 2031912, - "gasCost": 2, - "op": "POP", "pc": 753, + "op": "POP", + "gas": 2028406, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x2", "0x0" ] }, { - "depth": 1, - "gas": 2031910, - "gasCost": 3, - "op": "SWAP2", "pc": 754, + "op": "SWAP2", + "gas": 2028404, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x876", + "0x888", "0x3e9", "0x2" ] }, { - "depth": 1, - "gas": 2031907, - "gasCost": 3, - "op": "SWAP1", "pc": 755, + "op": "SWAP1", + "gas": 2028401, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -11902,46 +12033,46 @@ "0x0", "0x2", "0x3e9", - "0x876" + "0x888" ] }, { - "depth": 1, - "gas": 2031904, - "gasCost": 2, - "op": "POP", "pc": 756, + "op": "POP", + "gas": 2028398, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", "0x2", - "0x876", + "0x888", "0x3e9" ] }, { - "depth": 1, - "gas": 2031902, - "gasCost": 8, - "op": "JUMP", "pc": 757, + "op": "JUMP", + "gas": 2028396, + "gasCost": 8, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", "0x2", - "0x876" + "0x888" ] }, { - "depth": 1, - "gas": 2031894, - "gasCost": 1, + "pc": 2184, "op": "JUMPDEST", - "pc": 2166, + "gas": 2028388, + "gasCost": 1, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -11951,11 +12082,11 @@ ] }, { - "depth": 1, - "gas": 2031893, - "gasCost": 2, + "pc": 2185, "op": "POP", - "pc": 2167, + "gas": 2028387, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -11965,11 +12096,11 @@ ] }, { - "depth": 1, - "gas": 2031891, - "gasCost": 3, + "pc": 2186, "op": "PUSH3", - "pc": 2168, + "gas": 2028385, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -11978,139 +12109,139 @@ ] }, { - "depth": 1, - "gas": 2031888, - "gasCost": 3, + "pc": 2190, "op": "PUSH3", - "pc": 2172, + "gas": 2028382, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x881" + "0x893" ] }, { - "depth": 1, - "gas": 2031885, - "gasCost": 8, + "pc": 2194, "op": "JUMP", - "pc": 2176, + "gas": 2028379, + "gasCost": 8, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x881", + "0x893", "0x231" ] }, { - "depth": 1, - "gas": 2031877, - "gasCost": 1, - "op": "JUMPDEST", "pc": 561, + "op": "JUMPDEST", + "gas": 2028371, + "gasCost": 1, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x881" + "0x893" ] }, { - "depth": 1, - "gas": 2031876, - "gasCost": 3, - "op": "PUSH1", "pc": 562, + "op": "PUSH1", + "gas": 2028370, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x881" + "0x893" ] }, { - "depth": 1, - "gas": 2031873, - "gasCost": 3, - "op": "DUP1", "pc": 564, + "op": "DUP1", + "gas": 2028367, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x881", + "0x893", "0x0" ] }, { - "depth": 1, - "gas": 2031870, - "gasCost": 3, - "op": "PUSH1", "pc": 565, + "op": "PUSH1", + "gas": 2028364, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x881", + "0x893", "0x0", "0x0" ] }, { - "depth": 1, - "gas": 2031867, - "gasCost": 3, - "op": "MLOAD", "pc": 567, + "op": "MLOAD", + "gas": 2028361, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x881", + "0x893", "0x0", "0x0", "0x40" ] }, { - "depth": 1, - "gas": 2031864, - "gasCost": 3, - "op": "DUP1", "pc": 568, + "op": "DUP1", + "gas": 2028358, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x881", + "0x893", "0x0", "0x0", "0x80" ] }, { - "depth": 1, - "gas": 2031861, - "gasCost": 3, - "op": "PUSH1", "pc": 569, + "op": "PUSH1", + "gas": 2028355, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x881", + "0x893", "0x0", "0x0", "0x80", @@ -12118,17 +12249,17 @@ ] }, { - "depth": 1, - "gas": 2031858, - "gasCost": 3, - "op": "ADD", "pc": 571, + "op": "ADD", + "gas": 2028352, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x881", + "0x893", "0x0", "0x0", "0x80", @@ -12137,17 +12268,17 @@ ] }, { - "depth": 1, - "gas": 2031855, - "gasCost": 3, - "op": "PUSH1", "pc": 572, + "op": "PUSH1", + "gas": 2028349, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x881", + "0x893", "0x0", "0x0", "0x80", @@ -12155,17 +12286,17 @@ ] }, { - "depth": 1, - "gas": 2031852, - "gasCost": 3, - "op": "MSTORE", "pc": 574, + "op": "MSTORE", + "gas": 2028346, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x881", + "0x893", "0x0", "0x0", "0x80", @@ -12174,34 +12305,34 @@ ] }, { - "depth": 1, - "gas": 2031849, - "gasCost": 3, - "op": "DUP1", "pc": 575, + "op": "DUP1", + "gas": 2028343, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x881", + "0x893", "0x0", "0x0", "0x80" ] }, { - "depth": 1, - "gas": 2031846, - "gasCost": 3, - "op": "PUSH1", "pc": 576, + "op": "PUSH1", + "gas": 2028340, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x881", + "0x893", "0x0", "0x0", "0x80", @@ -12209,17 +12340,17 @@ ] }, { - "depth": 1, - "gas": 2031843, - "gasCost": 3, - "op": "DUP2", "pc": 578, + "op": "DUP2", + "gas": 2028337, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x881", + "0x893", "0x0", "0x0", "0x80", @@ -12228,17 +12359,17 @@ ] }, { - "depth": 1, - "gas": 2031840, - "gasCost": 3, - "op": "MSTORE", "pc": 579, + "op": "MSTORE", + "gas": 2028334, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x881", + "0x893", "0x0", "0x0", "0x80", @@ -12248,17 +12379,17 @@ ] }, { - "depth": 1, - "gas": 2031837, - "gasCost": 3, - "op": "PUSH1", "pc": 580, + "op": "PUSH1", + "gas": 2028331, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x881", + "0x893", "0x0", "0x0", "0x80", @@ -12266,17 +12397,17 @@ ] }, { - "depth": 1, - "gas": 2031834, - "gasCost": 3, - "op": "ADD", "pc": 582, + "op": "ADD", + "gas": 2028328, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x881", + "0x893", "0x0", "0x0", "0x80", @@ -12285,17 +12416,17 @@ ] }, { - "depth": 1, - "gas": 2031831, - "gasCost": 3, - "op": "PUSH32", "pc": 583, + "op": "PUSH32", + "gas": 2028325, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x881", + "0x893", "0x0", "0x0", "0x80", @@ -12303,17 +12434,17 @@ ] }, { - "depth": 1, - "gas": 2031828, - "gasCost": 3, - "op": "DUP2", "pc": 616, + "op": "DUP2", + "gas": 2028322, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x881", + "0x893", "0x0", "0x0", "0x80", @@ -12322,17 +12453,17 @@ ] }, { - "depth": 1, - "gas": 2031825, - "gasCost": 3, - "op": "MSTORE", "pc": 617, + "op": "MSTORE", + "gas": 2028319, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x881", + "0x893", "0x0", "0x0", "0x80", @@ -12342,17 +12473,17 @@ ] }, { - "depth": 1, - "gas": 2031822, - "gasCost": 2, - "op": "POP", "pc": 618, + "op": "POP", + "gas": 2028316, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x881", + "0x893", "0x0", "0x0", "0x80", @@ -12360,84 +12491,84 @@ ] }, { - "depth": 1, - "gas": 2031820, - "gasCost": 3, - "op": "SWAP1", "pc": 619, + "op": "SWAP1", + "gas": 2028314, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x881", + "0x893", "0x0", "0x0", "0x80" ] }, { - "depth": 1, - "gas": 2031817, - "gasCost": 2, - "op": "POP", "pc": 620, + "op": "POP", + "gas": 2028311, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x881", + "0x893", "0x0", "0x80", "0x0" ] }, { - "depth": 1, - "gas": 2031815, - "gasCost": 3, - "op": "PUSH1", "pc": 621, + "op": "PUSH1", + "gas": 2028309, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x881", + "0x893", "0x0", "0x80" ] }, { - "depth": 1, - "gas": 2031812, - "gasCost": 3, - "op": "DUP2", "pc": 623, + "op": "DUP2", + "gas": 2028306, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x881", + "0x893", "0x0", "0x80", "0x0" ] }, { - "depth": 1, - "gas": 2031809, - "gasCost": 3, - "op": "DUP1", "pc": 624, + "op": "DUP1", + "gas": 2028303, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x881", + "0x893", "0x0", "0x80", "0x0", @@ -12445,17 +12576,17 @@ ] }, { - "depth": 1, - "gas": 2031806, - "gasCost": 3, - "op": "MLOAD", "pc": 625, + "op": "MLOAD", + "gas": 2028300, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x881", + "0x893", "0x0", "0x80", "0x0", @@ -12464,17 +12595,17 @@ ] }, { - "depth": 1, - "gas": 2031803, - "gasCost": 3, - "op": "SWAP1", "pc": 626, + "op": "SWAP1", + "gas": 2028297, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x881", + "0x893", "0x0", "0x80", "0x0", @@ -12483,17 +12614,17 @@ ] }, { - "depth": 1, - "gas": 2031800, - "gasCost": 3, - "op": "PUSH1", "pc": 627, + "op": "PUSH1", + "gas": 2028294, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x881", + "0x893", "0x0", "0x80", "0x0", @@ -12502,17 +12633,17 @@ ] }, { - "depth": 1, - "gas": 2031797, - "gasCost": 3, - "op": "ADD", "pc": 629, + "op": "ADD", + "gas": 2028291, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x881", + "0x893", "0x0", "0x80", "0x0", @@ -12522,17 +12653,17 @@ ] }, { - "depth": 1, - "gas": 2031794, - "gasCost": 36, - "op": "KECCAK256", "pc": 630, - "stack": [ + "op": "KECCAK256", + "gas": 2028288, + "gasCost": 36, + "depth": 1, + "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x881", + "0x893", "0x0", "0x80", "0x0", @@ -12541,17 +12672,17 @@ ] }, { - "depth": 1, - "gas": 2031758, - "gasCost": 3, - "op": "SWAP1", "pc": 631, + "op": "SWAP1", + "gas": 2028252, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x881", + "0x893", "0x0", "0x80", "0x0", @@ -12559,17 +12690,17 @@ ] }, { - "depth": 1, - "gas": 2031755, - "gasCost": 2, - "op": "POP", "pc": 632, + "op": "POP", + "gas": 2028249, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x881", + "0x893", "0x0", "0x80", "0xb6e16d27ac5ab427a7f68900ac5559ce272dc6c37c82b3e052246c82244c50e4", @@ -12577,34 +12708,34 @@ ] }, { - "depth": 1, - "gas": 2031753, - "gasCost": 3, - "op": "DUP1", "pc": 633, + "op": "DUP1", + "gas": 2028247, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x881", + "0x893", "0x0", "0x80", "0xb6e16d27ac5ab427a7f68900ac5559ce272dc6c37c82b3e052246c82244c50e4" ] }, { - "depth": 1, - "gas": 2031750, - "gasCost": 3, - "op": "SWAP3", "pc": 634, + "op": "SWAP3", + "gas": 2028244, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x881", + "0x893", "0x0", "0x80", "0xb6e16d27ac5ab427a7f68900ac5559ce272dc6c37c82b3e052246c82244c50e4", @@ -12612,17 +12743,17 @@ ] }, { - "depth": 1, - "gas": 2031747, - "gasCost": 2, - "op": "POP", "pc": 635, + "op": "POP", + "gas": 2028241, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x881", + "0x893", "0xb6e16d27ac5ab427a7f68900ac5559ce272dc6c37c82b3e052246c82244c50e4", "0x80", "0xb6e16d27ac5ab427a7f68900ac5559ce272dc6c37c82b3e052246c82244c50e4", @@ -12630,74 +12761,74 @@ ] }, { - "depth": 1, - "gas": 2031745, - "gasCost": 2, - "op": "POP", "pc": 636, + "op": "POP", + "gas": 2028239, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x881", + "0x893", "0xb6e16d27ac5ab427a7f68900ac5559ce272dc6c37c82b3e052246c82244c50e4", "0x80", "0xb6e16d27ac5ab427a7f68900ac5559ce272dc6c37c82b3e052246c82244c50e4" ] }, { - "depth": 1, - "gas": 2031743, - "gasCost": 2, - "op": "POP", "pc": 637, + "op": "POP", + "gas": 2028237, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x881", + "0x893", "0xb6e16d27ac5ab427a7f68900ac5559ce272dc6c37c82b3e052246c82244c50e4", "0x80" ] }, { - "depth": 1, - "gas": 2031741, - "gasCost": 3, - "op": "SWAP1", "pc": 638, + "op": "SWAP1", + "gas": 2028235, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x881", + "0x893", "0xb6e16d27ac5ab427a7f68900ac5559ce272dc6c37c82b3e052246c82244c50e4" ] }, { - "depth": 1, - "gas": 2031738, - "gasCost": 8, - "op": "JUMP", "pc": 639, + "op": "JUMP", + "gas": 2028232, + "gasCost": 8, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", "0xb6e16d27ac5ab427a7f68900ac5559ce272dc6c37c82b3e052246c82244c50e4", - "0x881" + "0x893" ] }, { - "depth": 1, - "gas": 2031730, - "gasCost": 1, + "pc": 2195, "op": "JUMPDEST", - "pc": 2177, + "gas": 2028224, + "gasCost": 1, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -12707,11 +12838,11 @@ ] }, { - "depth": 1, - "gas": 2031729, - "gasCost": 2, + "pc": 2196, "op": "POP", - "pc": 2178, + "gas": 2028223, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -12721,11 +12852,11 @@ ] }, { - "depth": 1, - "gas": 2031727, - "gasCost": 3, + "pc": 2197, "op": "PUSH1", - "pc": 2179, + "gas": 2028221, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -12734,11 +12865,11 @@ ] }, { - "depth": 1, - "gas": 2031724, - "gasCost": 3, + "pc": 2199, "op": "DUP1", - "pc": 2181, + "gas": 2028218, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -12748,11 +12879,11 @@ ] }, { - "depth": 1, - "gas": 2031721, - "gasCost": 200, + "pc": 2200, "op": "SLOAD", - "pc": 2182, + "gas": 2028215, + "gasCost": 2100, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -12768,11 +12899,11 @@ } }, { - "depth": 1, - "gas": 2031521, - "gasCost": 3, + "pc": 2201, "op": "SWAP1", - "pc": 2183, + "gas": 2026115, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -12783,11 +12914,11 @@ ] }, { - "depth": 1, - "gas": 2031518, - "gasCost": 3, + "pc": 2202, "op": "PUSH2", - "pc": 2184, + "gas": 2026112, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -12798,11 +12929,11 @@ ] }, { - "depth": 1, - "gas": 2031515, - "gasCost": 10, + "pc": 2205, "op": "EXP", - "pc": 2187, + "gas": 2026109, + "gasCost": 10, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -12814,11 +12945,11 @@ ] }, { - "depth": 1, - "gas": 2031505, - "gasCost": 3, + "pc": 2206, "op": "SWAP1", - "pc": 2188, + "gas": 2026099, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -12829,11 +12960,11 @@ ] }, { - "depth": 1, - "gas": 2031502, - "gasCost": 5, + "pc": 2207, "op": "DIV", - "pc": 2189, + "gas": 2026096, + "gasCost": 5, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -12844,11 +12975,11 @@ ] }, { - "depth": 1, - "gas": 2031497, - "gasCost": 3, + "pc": 2208, "op": "PUSH20", - "pc": 2190, + "gas": 2026091, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -12858,11 +12989,11 @@ ] }, { - "depth": 1, - "gas": 2031494, - "gasCost": 3, + "pc": 2229, "op": "AND", - "pc": 2211, + "gas": 2026088, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -12873,11 +13004,11 @@ ] }, { - "depth": 1, - "gas": 2031491, - "gasCost": 3, + "pc": 2230, "op": "PUSH20", - "pc": 2212, + "gas": 2026085, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -12887,11 +13018,11 @@ ] }, { - "depth": 1, - "gas": 2031488, - "gasCost": 3, + "pc": 2251, "op": "AND", - "pc": 2233, + "gas": 2026082, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -12902,11 +13033,11 @@ ] }, { - "depth": 1, - "gas": 2031485, - "gasCost": 3, + "pc": 2252, "op": "PUSH4", - "pc": 2234, + "gas": 2026079, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -12916,11 +13047,11 @@ ] }, { - "depth": 1, - "gas": 2031482, - "gasCost": 3, + "pc": 2257, "op": "DUP4", - "pc": 2239, + "gas": 2026076, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -12931,11 +13062,11 @@ ] }, { - "depth": 1, - "gas": 2031479, - "gasCost": 3, + "pc": 2258, "op": "PUSH1", - "pc": 2240, + "gas": 2026073, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -12947,11 +13078,11 @@ ] }, { - "depth": 1, - "gas": 2031476, - "gasCost": 3, + "pc": 2260, "op": "MLOAD", - "pc": 2242, + "gas": 2026070, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -12964,11 +13095,11 @@ ] }, { - "depth": 1, - "gas": 2031473, - "gasCost": 3, + "pc": 2261, "op": "DUP3", - "pc": 2243, + "gas": 2026067, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -12981,11 +13112,11 @@ ] }, { - "depth": 1, - "gas": 2031470, - "gasCost": 3, + "pc": 2262, "op": "PUSH4", - "pc": 2244, + "gas": 2026064, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -12999,11 +13130,11 @@ ] }, { - "depth": 1, - "gas": 2031467, - "gasCost": 3, + "pc": 2267, "op": "AND", - "pc": 2249, + "gas": 2026061, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -13018,11 +13149,11 @@ ] }, { - "depth": 1, - "gas": 2031464, - "gasCost": 3, + "pc": 2268, "op": "PUSH1", - "pc": 2250, + "gas": 2026058, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -13036,11 +13167,11 @@ ] }, { - "depth": 1, - "gas": 2031461, - "gasCost": 3, + "pc": 2270, "op": "SHL", - "pc": 2252, + "gas": 2026055, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -13055,11 +13186,11 @@ ] }, { - "depth": 1, - "gas": 2031458, - "gasCost": 3, + "pc": 2271, "op": "DUP2", - "pc": 2253, + "gas": 2026052, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -13073,11 +13204,11 @@ ] }, { - "depth": 1, - "gas": 2031455, - "gasCost": 3, + "pc": 2272, "op": "MSTORE", - "pc": 2254, + "gas": 2026049, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -13092,11 +13223,11 @@ ] }, { - "depth": 1, - "gas": 2031452, - "gasCost": 3, + "pc": 2273, "op": "PUSH1", - "pc": 2255, + "gas": 2026046, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -13109,11 +13240,11 @@ ] }, { - "depth": 1, - "gas": 2031449, - "gasCost": 3, + "pc": 2275, "op": "ADD", - "pc": 2257, + "gas": 2026043, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -13127,11 +13258,11 @@ ] }, { - "depth": 1, - "gas": 2031446, - "gasCost": 3, + "pc": 2276, "op": "PUSH3", - "pc": 2258, + "gas": 2026040, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -13144,11 +13275,11 @@ ] }, { - "depth": 1, - "gas": 2031443, - "gasCost": 3, + "pc": 2280, "op": "SWAP2", - "pc": 2262, + "gas": 2026037, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -13158,15 +13289,15 @@ "0xa0712d68", "0x3e8", "0xc4", - "0x8dd" + "0x8ef" ] }, { - "depth": 1, - "gas": 2031440, - "gasCost": 3, + "pc": 2281, "op": "SWAP1", - "pc": 2263, + "gas": 2026034, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -13174,17 +13305,17 @@ "0x0", "0x0", "0xa0712d68", - "0x8dd", + "0x8ef", "0xc4", "0x3e8" ] }, { - "depth": 1, - "gas": 2031437, - "gasCost": 3, + "pc": 2282, "op": "PUSH3", - "pc": 2264, + "gas": 2026031, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -13192,17 +13323,17 @@ "0x0", "0x0", "0xa0712d68", - "0x8dd", + "0x8ef", "0x3e8", "0xc4" ] }, { - "depth": 1, - "gas": 2031434, - "gasCost": 8, + "pc": 2286, "op": "JUMP", - "pc": 2268, + "gas": 2026028, + "gasCost": 8, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -13210,18 +13341,18 @@ "0x0", "0x0", "0xa0712d68", - "0x8dd", + "0x8ef", "0x3e8", "0xc4", - "0x975" + "0x997" ] }, { - "depth": 1, - "gas": 2031426, - "gasCost": 1, + "pc": 2455, "op": "JUMPDEST", - "pc": 2421, + "gas": 2026020, + "gasCost": 1, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -13229,17 +13360,17 @@ "0x0", "0x0", "0xa0712d68", - "0x8dd", + "0x8ef", "0x3e8", "0xc4" ] }, { - "depth": 1, - "gas": 2031425, - "gasCost": 3, + "pc": 2456, "op": "PUSH1", - "pc": 2422, + "gas": 2026019, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -13247,17 +13378,17 @@ "0x0", "0x0", "0xa0712d68", - "0x8dd", + "0x8ef", "0x3e8", "0xc4" ] }, { - "depth": 1, - "gas": 2031422, - "gasCost": 3, + "pc": 2458, "op": "PUSH1", - "pc": 2424, + "gas": 2026016, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -13265,18 +13396,18 @@ "0x0", "0x0", "0xa0712d68", - "0x8dd", + "0x8ef", "0x3e8", "0xc4", "0x0" ] }, { - "depth": 1, - "gas": 2031419, - "gasCost": 3, + "pc": 2460, "op": "DUP3", - "pc": 2426, + "gas": 2026013, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -13284,7 +13415,7 @@ "0x0", "0x0", "0xa0712d68", - "0x8dd", + "0x8ef", "0x3e8", "0xc4", "0x0", @@ -13292,11 +13423,11 @@ ] }, { - "depth": 1, - "gas": 2031416, - "gasCost": 3, + "pc": 2461, "op": "ADD", - "pc": 2427, + "gas": 2026010, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -13304,7 +13435,7 @@ "0x0", "0x0", "0xa0712d68", - "0x8dd", + "0x8ef", "0x3e8", "0xc4", "0x0", @@ -13313,11 +13444,11 @@ ] }, { - "depth": 1, - "gas": 2031413, - "gasCost": 3, + "pc": 2462, "op": "SWAP1", - "pc": 2428, + "gas": 2026007, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -13325,7 +13456,7 @@ "0x0", "0x0", "0xa0712d68", - "0x8dd", + "0x8ef", "0x3e8", "0xc4", "0x0", @@ -13333,11 +13464,11 @@ ] }, { - "depth": 1, - "gas": 2031410, - "gasCost": 2, + "pc": 2463, "op": "POP", - "pc": 2429, + "gas": 2026004, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -13345,7 +13476,7 @@ "0x0", "0x0", "0xa0712d68", - "0x8dd", + "0x8ef", "0x3e8", "0xc4", "0xe4", @@ -13353,11 +13484,11 @@ ] }, { - "depth": 1, - "gas": 2031408, - "gasCost": 3, + "pc": 2464, "op": "PUSH3", - "pc": 2430, + "gas": 2026002, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -13365,18 +13496,18 @@ "0x0", "0x0", "0xa0712d68", - "0x8dd", + "0x8ef", "0x3e8", "0xc4", "0xe4" ] }, { - "depth": 1, - "gas": 2031405, - "gasCost": 3, + "pc": 2468, "op": "PUSH1", - "pc": 2434, + "gas": 2025999, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -13384,19 +13515,19 @@ "0x0", "0x0", "0xa0712d68", - "0x8dd", + "0x8ef", "0x3e8", "0xc4", "0xe4", - "0x98c" + "0x9ae" ] }, { - "depth": 1, - "gas": 2031402, - "gasCost": 3, + "pc": 2470, "op": "DUP4", - "pc": 2436, + "gas": 2025996, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -13404,20 +13535,20 @@ "0x0", "0x0", "0xa0712d68", - "0x8dd", + "0x8ef", "0x3e8", "0xc4", "0xe4", - "0x98c", + "0x9ae", "0x0" ] }, { - "depth": 1, - "gas": 2031399, - "gasCost": 3, + "pc": 2471, "op": "ADD", - "pc": 2437, + "gas": 2025993, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -13425,21 +13556,21 @@ "0x0", "0x0", "0xa0712d68", - "0x8dd", + "0x8ef", "0x3e8", "0xc4", "0xe4", - "0x98c", + "0x9ae", "0x0", "0xc4" ] }, { - "depth": 1, - "gas": 2031396, - "gasCost": 3, + "pc": 2472, "op": "DUP5", - "pc": 2438, + "gas": 2025990, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -13447,20 +13578,20 @@ "0x0", "0x0", "0xa0712d68", - "0x8dd", + "0x8ef", "0x3e8", "0xc4", "0xe4", - "0x98c", + "0x9ae", "0xc4" ] }, { - "depth": 1, - "gas": 2031393, - "gasCost": 3, + "pc": 2473, "op": "PUSH3", - "pc": 2439, + "gas": 2025987, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -13468,21 +13599,21 @@ "0x0", "0x0", "0xa0712d68", - "0x8dd", + "0x8ef", "0x3e8", "0xc4", "0xe4", - "0x98c", + "0x9ae", "0xc4", "0x3e8" ] }, { - "depth": 1, - "gas": 2031390, - "gasCost": 8, + "pc": 2477, "op": "JUMP", - "pc": 2443, + "gas": 2025984, + "gasCost": 8, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -13490,22 +13621,22 @@ "0x0", "0x0", "0xa0712d68", - "0x8dd", + "0x8ef", "0x3e8", "0xc4", "0xe4", - "0x98c", + "0x9ae", "0xc4", "0x3e8", - "0x964" + "0x986" ] }, { - "depth": 1, - "gas": 2031382, - "gasCost": 1, + "pc": 2438, "op": "JUMPDEST", - "pc": 2404, + "gas": 2025976, + "gasCost": 1, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -13513,21 +13644,21 @@ "0x0", "0x0", "0xa0712d68", - "0x8dd", + "0x8ef", "0x3e8", "0xc4", "0xe4", - "0x98c", + "0x9ae", "0xc4", "0x3e8" ] }, { - "depth": 1, - "gas": 2031381, - "gasCost": 3, + "pc": 2439, "op": "PUSH3", - "pc": 2405, + "gas": 2025975, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -13535,21 +13666,21 @@ "0x0", "0x0", "0xa0712d68", - "0x8dd", + "0x8ef", "0x3e8", "0xc4", "0xe4", - "0x98c", + "0x9ae", "0xc4", "0x3e8" ] }, { - "depth": 1, - "gas": 2031378, - "gasCost": 3, + "pc": 2443, "op": "DUP2", - "pc": 2409, + "gas": 2025972, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -13557,22 +13688,22 @@ "0x0", "0x0", "0xa0712d68", - "0x8dd", + "0x8ef", "0x3e8", "0xc4", "0xe4", - "0x98c", + "0x9ae", "0xc4", "0x3e8", - "0x96f" + "0x991" ] }, { - "depth": 1, - "gas": 2031375, - "gasCost": 3, + "pc": 2444, "op": "PUSH3", - "pc": 2410, + "gas": 2025969, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -13580,23 +13711,23 @@ "0x0", "0x0", "0xa0712d68", - "0x8dd", + "0x8ef", "0x3e8", "0xc4", "0xe4", - "0x98c", + "0x9ae", "0xc4", "0x3e8", - "0x96f", + "0x991", "0x3e8" ] }, { - "depth": 1, - "gas": 2031372, - "gasCost": 8, + "pc": 2448, "op": "JUMP", - "pc": 2414, + "gas": 2025966, + "gasCost": 8, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -13604,24 +13735,24 @@ "0x0", "0x0", "0xa0712d68", - "0x8dd", + "0x8ef", "0x3e8", "0xc4", "0xe4", - "0x98c", + "0x9ae", "0xc4", "0x3e8", - "0x96f", + "0x991", "0x3e8", - "0x95a" + "0x97c" ] }, { - "depth": 1, - "gas": 2031364, - "gasCost": 1, + "pc": 2428, "op": "JUMPDEST", - "pc": 2394, + "gas": 2025958, + "gasCost": 1, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -13629,23 +13760,23 @@ "0x0", "0x0", "0xa0712d68", - "0x8dd", + "0x8ef", "0x3e8", "0xc4", "0xe4", - "0x98c", + "0x9ae", "0xc4", "0x3e8", - "0x96f", + "0x991", "0x3e8" ] }, { - "depth": 1, - "gas": 2031363, - "gasCost": 3, + "pc": 2429, "op": "PUSH1", - "pc": 2395, + "gas": 2025957, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -13653,23 +13784,23 @@ "0x0", "0x0", "0xa0712d68", - "0x8dd", + "0x8ef", "0x3e8", "0xc4", "0xe4", - "0x98c", + "0x9ae", "0xc4", "0x3e8", - "0x96f", + "0x991", "0x3e8" ] }, { - "depth": 1, - "gas": 2031360, - "gasCost": 3, + "pc": 2431, "op": "DUP2", - "pc": 2397, + "gas": 2025954, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -13677,24 +13808,24 @@ "0x0", "0x0", "0xa0712d68", - "0x8dd", + "0x8ef", "0x3e8", "0xc4", "0xe4", - "0x98c", + "0x9ae", "0xc4", "0x3e8", - "0x96f", + "0x991", "0x3e8", "0x0" ] }, { - "depth": 1, - "gas": 2031357, - "gasCost": 3, + "pc": 2432, "op": "SWAP1", - "pc": 2398, + "gas": 2025951, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -13702,25 +13833,25 @@ "0x0", "0x0", "0xa0712d68", - "0x8dd", + "0x8ef", "0x3e8", "0xc4", "0xe4", - "0x98c", + "0x9ae", "0xc4", "0x3e8", - "0x96f", + "0x991", "0x3e8", "0x0", "0x3e8" ] }, { - "depth": 1, - "gas": 2031354, - "gasCost": 2, + "pc": 2433, "op": "POP", - "pc": 2399, + "gas": 2025948, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -13728,25 +13859,25 @@ "0x0", "0x0", "0xa0712d68", - "0x8dd", + "0x8ef", "0x3e8", "0xc4", "0xe4", - "0x98c", + "0x9ae", "0xc4", "0x3e8", - "0x96f", + "0x991", "0x3e8", "0x3e8", "0x0" ] }, { - "depth": 1, - "gas": 2031352, - "gasCost": 3, + "pc": 2434, "op": "SWAP2", - "pc": 2400, + "gas": 2025946, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -13754,24 +13885,24 @@ "0x0", "0x0", "0xa0712d68", - "0x8dd", + "0x8ef", "0x3e8", "0xc4", "0xe4", - "0x98c", + "0x9ae", "0xc4", "0x3e8", - "0x96f", + "0x991", "0x3e8", "0x3e8" ] }, { - "depth": 1, - "gas": 2031349, - "gasCost": 3, + "pc": 2435, "op": "SWAP1", - "pc": 2401, + "gas": 2025943, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -13779,24 +13910,24 @@ "0x0", "0x0", "0xa0712d68", - "0x8dd", + "0x8ef", "0x3e8", "0xc4", "0xe4", - "0x98c", + "0x9ae", "0xc4", "0x3e8", "0x3e8", "0x3e8", - "0x96f" + "0x991" ] }, { - "depth": 1, - "gas": 2031346, - "gasCost": 2, + "pc": 2436, "op": "POP", - "pc": 2402, + "gas": 2025940, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -13804,24 +13935,24 @@ "0x0", "0x0", "0xa0712d68", - "0x8dd", + "0x8ef", "0x3e8", "0xc4", "0xe4", - "0x98c", + "0x9ae", "0xc4", "0x3e8", "0x3e8", - "0x96f", + "0x991", "0x3e8" ] }, { - "depth": 1, - "gas": 2031344, - "gasCost": 8, + "pc": 2437, "op": "JUMP", - "pc": 2403, + "gas": 2025938, + "gasCost": 8, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -13829,23 +13960,23 @@ "0x0", "0x0", "0xa0712d68", - "0x8dd", + "0x8ef", "0x3e8", "0xc4", "0xe4", - "0x98c", + "0x9ae", "0xc4", "0x3e8", "0x3e8", - "0x96f" + "0x991" ] }, { - "depth": 1, - "gas": 2031336, - "gasCost": 1, + "pc": 2449, "op": "JUMPDEST", - "pc": 2415, + "gas": 2025930, + "gasCost": 1, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -13853,22 +13984,22 @@ "0x0", "0x0", "0xa0712d68", - "0x8dd", + "0x8ef", "0x3e8", "0xc4", "0xe4", - "0x98c", + "0x9ae", "0xc4", "0x3e8", "0x3e8" ] }, { - "depth": 1, - "gas": 2031335, - "gasCost": 3, + "pc": 2450, "op": "DUP3", - "pc": 2416, + "gas": 2025929, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -13876,22 +14007,22 @@ "0x0", "0x0", "0xa0712d68", - "0x8dd", + "0x8ef", "0x3e8", "0xc4", "0xe4", - "0x98c", + "0x9ae", "0xc4", "0x3e8", "0x3e8" ] }, { - "depth": 1, - "gas": 2031332, - "gasCost": 3, + "pc": 2451, "op": "MSTORE", - "pc": 2417, + "gas": 2025926, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -13899,11 +14030,11 @@ "0x0", "0x0", "0xa0712d68", - "0x8dd", + "0x8ef", "0x3e8", "0xc4", "0xe4", - "0x98c", + "0x9ae", "0xc4", "0x3e8", "0x3e8", @@ -13911,11 +14042,11 @@ ] }, { - "depth": 1, - "gas": 2031329, - "gasCost": 2, + "pc": 2452, "op": "POP", - "pc": 2418, + "gas": 2025923, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -13923,21 +14054,21 @@ "0x0", "0x0", "0xa0712d68", - "0x8dd", + "0x8ef", "0x3e8", "0xc4", "0xe4", - "0x98c", + "0x9ae", "0xc4", "0x3e8" ] }, { - "depth": 1, - "gas": 2031327, - "gasCost": 2, + "pc": 2453, "op": "POP", - "pc": 2419, + "gas": 2025921, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -13945,20 +14076,20 @@ "0x0", "0x0", "0xa0712d68", - "0x8dd", + "0x8ef", "0x3e8", "0xc4", "0xe4", - "0x98c", + "0x9ae", "0xc4" ] }, { - "depth": 1, - "gas": 2031325, - "gasCost": 8, + "pc": 2454, "op": "JUMP", - "pc": 2420, + "gas": 2025919, + "gasCost": 8, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -13966,19 +14097,19 @@ "0x0", "0x0", "0xa0712d68", - "0x8dd", + "0x8ef", "0x3e8", "0xc4", "0xe4", - "0x98c" + "0x9ae" ] }, { - "depth": 1, - "gas": 2031317, - "gasCost": 1, + "pc": 2478, "op": "JUMPDEST", - "pc": 2444, + "gas": 2025911, + "gasCost": 1, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -13986,18 +14117,18 @@ "0x0", "0x0", "0xa0712d68", - "0x8dd", + "0x8ef", "0x3e8", "0xc4", "0xe4" ] }, { - "depth": 1, - "gas": 2031316, - "gasCost": 3, + "pc": 2479, "op": "SWAP3", - "pc": 2445, + "gas": 2025910, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -14005,18 +14136,18 @@ "0x0", "0x0", "0xa0712d68", - "0x8dd", + "0x8ef", "0x3e8", "0xc4", "0xe4" ] }, { - "depth": 1, - "gas": 2031313, - "gasCost": 3, + "pc": 2480, "op": "SWAP2", - "pc": 2446, + "gas": 2025907, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -14027,15 +14158,15 @@ "0xe4", "0x3e8", "0xc4", - "0x8dd" + "0x8ef" ] }, { - "depth": 1, - "gas": 2031310, - "gasCost": 2, + "pc": 2481, "op": "POP", - "pc": 2447, + "gas": 2025904, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -14044,17 +14175,17 @@ "0x0", "0xa0712d68", "0xe4", - "0x8dd", + "0x8ef", "0xc4", "0x3e8" ] }, { - "depth": 1, - "gas": 2031308, - "gasCost": 2, + "pc": 2482, "op": "POP", - "pc": 2448, + "gas": 2025902, + "gasCost": 2, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -14063,16 +14194,16 @@ "0x0", "0xa0712d68", "0xe4", - "0x8dd", + "0x8ef", "0xc4" ] }, { - "depth": 1, - "gas": 2031306, - "gasCost": 8, + "pc": 2483, "op": "JUMP", - "pc": 2449, + "gas": 2025900, + "gasCost": 8, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -14081,15 +14212,15 @@ "0x0", "0xa0712d68", "0xe4", - "0x8dd" + "0x8ef" ] }, { - "depth": 1, - "gas": 2031298, - "gasCost": 1, + "pc": 2287, "op": "JUMPDEST", - "pc": 2269, + "gas": 2025892, + "gasCost": 1, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -14101,11 +14232,11 @@ ] }, { - "depth": 1, - "gas": 2031297, - "gasCost": 3, + "pc": 2288, "op": "PUSH1", - "pc": 2270, + "gas": 2025891, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -14117,11 +14248,11 @@ ] }, { - "depth": 1, - "gas": 2031294, - "gasCost": 3, + "pc": 2290, "op": "PUSH1", - "pc": 2272, + "gas": 2025888, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -14134,11 +14265,11 @@ ] }, { - "depth": 1, - "gas": 2031291, - "gasCost": 3, + "pc": 2292, "op": "MLOAD", - "pc": 2274, + "gas": 2025885, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -14152,11 +14283,11 @@ ] }, { - "depth": 1, - "gas": 2031288, - "gasCost": 3, + "pc": 2293, "op": "DUP1", - "pc": 2275, + "gas": 2025882, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -14170,11 +14301,11 @@ ] }, { - "depth": 1, - "gas": 2031285, - "gasCost": 3, + "pc": 2294, "op": "DUP4", - "pc": 2276, + "gas": 2025879, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -14189,11 +14320,11 @@ ] }, { - "depth": 1, - "gas": 2031282, - "gasCost": 3, + "pc": 2295, "op": "SUB", - "pc": 2277, + "gas": 2025876, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -14209,11 +14340,11 @@ ] }, { - "depth": 1, - "gas": 2031279, - "gasCost": 3, + "pc": 2296, "op": "DUP2", - "pc": 2278, + "gas": 2025873, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -14228,11 +14359,11 @@ ] }, { - "depth": 1, - "gas": 2031276, - "gasCost": 3, + "pc": 2297, "op": "PUSH1", - "pc": 2279, + "gas": 2025870, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -14248,11 +14379,11 @@ ] }, { - "depth": 1, - "gas": 2031273, - "gasCost": 3, + "pc": 2299, "op": "DUP8", - "pc": 2281, + "gas": 2025867, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -14269,11 +14400,11 @@ ] }, { + "pc": 2300, + "op": "DUP1", + "gas": 2025864, + "gasCost": 3, "depth": 1, - "gas": 2031270, - "gasCost": 2, - "op": "GAS", - "pc": 2282, "stack": [ "0xa0712d68", "0x1cd", @@ -14291,11 +14422,11 @@ ] }, { + "pc": 2301, + "op": "EXTCODESIZE", + "gas": 2025861, + "gasCost": 100, "depth": 1, - "gas": 2031268, - "gasCost": 0, - "op": "CALL", - "pc": 2283, "stack": [ "0xa0712d68", "0x1cd", @@ -14310,15 +14441,15 @@ "0xc0", "0x0", "0x0", - "0x1efea4" + "0x0" ] }, { - "depth": 1, - "gas": 2030568, - "gasCost": 3, + "pc": 2302, "op": "ISZERO", - "pc": 2284, + "gas": 2025761, + "gasCost": 3, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -14327,32 +14458,21 @@ "0x0", "0xa0712d68", "0xe4", - "0x1" - ] - }, - { - "depth": 1, - "gas": 2030565, - "gasCost": 3, - "op": "DUP1", - "pc": 2285, - "stack": [ - "0xa0712d68", - "0x1cd", - "0x3e8", + "0x20", + "0xc0", + "0x24", + "0xc0", "0x0", "0x0", - "0xa0712d68", - "0xe4", "0x0" ] }, { - "depth": 1, - "gas": 2030562, + "pc": 2303, + "op": "DUP1", + "gas": 2025758, "gasCost": 3, - "op": "ISZERO", - "pc": 2286, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -14361,16 +14481,21 @@ "0x0", "0xa0712d68", "0xe4", + "0x20", + "0xc0", + "0x24", + "0xc0", "0x0", - "0x0" + "0x0", + "0x1" ] }, { - "depth": 1, - "gas": 2030559, + "pc": 2304, + "op": "ISZERO", + "gas": 2025755, "gasCost": 3, - "op": "PUSH3", - "pc": 2287, + "depth": 1, "stack": [ "0xa0712d68", "0x1cd", @@ -14379,16 +14504,22 @@ "0x0", "0xa0712d68", "0xe4", + "0x20", + "0xc0", + "0x24", + "0xc0", + "0x0", "0x0", + "0x1", "0x1" ] }, { + "pc": 2305, + "op": "PUSH3", + "gas": 2025752, + "gasCost": 3, "depth": 1, - "gas": 2030556, - "gasCost": 10, - "op": "JUMPI", - "pc": 2291, "stack": [ "0xa0712d68", "0x1cd", @@ -14397,17 +14528,22 @@ "0x0", "0xa0712d68", "0xe4", + "0x20", + "0xc0", + "0x24", + "0xc0", + "0x0", "0x0", "0x1", - "0x8fd" + "0x0" ] }, { + "pc": 2309, + "op": "JUMPI", + "gas": 2025749, + "gasCost": 10, "depth": 1, - "gas": 2030546, - "gasCost": 1, - "op": "JUMPDEST", - "pc": 2301, "stack": [ "0xa0712d68", "0x1cd", @@ -14416,742 +14552,85 @@ "0x0", "0xa0712d68", "0xe4", - "0x0" - ] - }, - { - "depth": 1, - "gas": 2030545, - "gasCost": 2, - "op": "POP", - "pc": 2302, - "stack": [ - "0xa0712d68", - "0x1cd", - "0x3e8", - "0x0", - "0x0", - "0xa0712d68", - "0xe4", - "0x0" - ] - }, - { - "depth": 1, - "gas": 2030543, - "gasCost": 2, - "op": "POP", - "pc": 2303, - "stack": [ - "0xa0712d68", - "0x1cd", - "0x3e8", - "0x0", - "0x0", - "0xa0712d68", - "0xe4" - ] - }, - { - "depth": 1, - "gas": 2030541, - "gasCost": 2, - "op": "POP", - "pc": 2304, - "stack": [ - "0xa0712d68", - "0x1cd", - "0x3e8", - "0x0", - "0x0", - "0xa0712d68" - ] - }, - { - "depth": 1, - "gas": 2030539, - "gasCost": 2, - "op": "POP", - "pc": 2305, - "stack": [ - "0xa0712d68", - "0x1cd", - "0x3e8", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 2030537, - "gasCost": 3, - "op": "PUSH1", - "pc": 2306, - "stack": [ - "0xa0712d68", - "0x1cd", - "0x3e8", - "0x0" - ] - }, - { - "depth": 1, - "gas": 2030534, - "gasCost": 3, - "op": "MLOAD", - "pc": 2308, - "stack": [ - "0xa0712d68", - "0x1cd", - "0x3e8", - "0x0", - "0x40" - ] - }, - { - "depth": 1, - "gas": 2030531, - "gasCost": 2, - "op": "RETURNDATASIZE", - "pc": 2309, - "stack": [ - "0xa0712d68", - "0x1cd", - "0x3e8", - "0x0", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 2030529, - "gasCost": 3, - "op": "PUSH1", - "pc": 2310, - "stack": [ - "0xa0712d68", - "0x1cd", - "0x3e8", - "0x0", - "0xc0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 2030526, - "gasCost": 3, - "op": "NOT", - "pc": 2312, - "stack": [ - "0xa0712d68", - "0x1cd", - "0x3e8", - "0x0", - "0xc0", - "0x0", - "0x1f" - ] - }, - { - "depth": 1, - "gas": 2030523, - "gasCost": 3, - "op": "PUSH1", - "pc": 2313, - "stack": [ - "0xa0712d68", - "0x1cd", - "0x3e8", - "0x0", - "0xc0", - "0x0", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" - ] - }, - { - "depth": 1, - "gas": 2030520, - "gasCost": 3, - "op": "DUP3", - "pc": 2315, - "stack": [ - "0xa0712d68", - "0x1cd", - "0x3e8", - "0x0", - "0xc0", - "0x0", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "0x1f" - ] - }, - { - "depth": 1, - "gas": 2030517, - "gasCost": 3, - "op": "ADD", - "pc": 2316, - "stack": [ - "0xa0712d68", - "0x1cd", - "0x3e8", - "0x0", - "0xc0", - "0x0", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "0x1f", - "0x0" - ] - }, - { - "depth": 1, - "gas": 2030514, - "gasCost": 3, - "op": "AND", - "pc": 2317, - "stack": [ - "0xa0712d68", - "0x1cd", - "0x3e8", - "0x0", - "0xc0", - "0x0", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "0x1f" - ] - }, - { - "depth": 1, - "gas": 2030511, - "gasCost": 3, - "op": "DUP3", - "pc": 2318, - "stack": [ - "0xa0712d68", - "0x1cd", - "0x3e8", - "0x0", - "0xc0", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 2030508, - "gasCost": 3, - "op": "ADD", - "pc": 2319, - "stack": [ - "0xa0712d68", - "0x1cd", - "0x3e8", - "0x0", - "0xc0", - "0x0", - "0x0", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 2030505, - "gasCost": 3, - "op": "DUP1", - "pc": 2320, - "stack": [ - "0xa0712d68", - "0x1cd", - "0x3e8", - "0x0", - "0xc0", - "0x0", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 2030502, - "gasCost": 3, - "op": "PUSH1", - "pc": 2321, - "stack": [ - "0xa0712d68", - "0x1cd", - "0x3e8", - "0x0", - "0xc0", - "0x0", - "0xc0", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 2030499, - "gasCost": 3, - "op": "MSTORE", - "pc": 2323, - "stack": [ - "0xa0712d68", - "0x1cd", - "0x3e8", - "0x0", - "0xc0", - "0x0", - "0xc0", - "0xc0", - "0x40" - ] - }, - { - "depth": 1, - "gas": 2030496, - "gasCost": 2, - "op": "POP", - "pc": 2324, - "stack": [ - "0xa0712d68", - "0x1cd", - "0x3e8", - "0x0", - "0xc0", - "0x0", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 2030494, - "gasCost": 3, - "op": "DUP2", - "pc": 2325, - "stack": [ - "0xa0712d68", - "0x1cd", - "0x3e8", - "0x0", - "0xc0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 2030491, - "gasCost": 3, - "op": "ADD", - "pc": 2326, - "stack": [ - "0xa0712d68", - "0x1cd", - "0x3e8", - "0x0", - "0xc0", - "0x0", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 2030488, - "gasCost": 3, - "op": "SWAP1", - "pc": 2327, - "stack": [ - "0xa0712d68", - "0x1cd", - "0x3e8", - "0x0", - "0xc0", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 2030485, - "gasCost": 3, - "op": "PUSH3", - "pc": 2328, - "stack": [ - "0xa0712d68", - "0x1cd", - "0x3e8", - "0x0", - "0xc0", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 2030482, - "gasCost": 3, - "op": "SWAP2", - "pc": 2332, - "stack": [ - "0xa0712d68", - "0x1cd", - "0x3e8", - "0x0", - "0xc0", - "0xc0", - "0x923" - ] - }, - { - "depth": 1, - "gas": 2030479, - "gasCost": 3, - "op": "SWAP1", - "pc": 2333, - "stack": [ - "0xa0712d68", - "0x1cd", - "0x3e8", - "0x0", - "0x923", + "0x20", "0xc0", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 2030476, - "gasCost": 3, - "op": "PUSH3", - "pc": 2334, - "stack": [ - "0xa0712d68", - "0x1cd", - "0x3e8", - "0x0", - "0x923", + "0x24", "0xc0", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 2030473, - "gasCost": 8, - "op": "JUMP", - "pc": 2338, - "stack": [ - "0xa0712d68", - "0x1cd", - "0x3e8", "0x0", - "0x923", - "0xc0", - "0xc0", - "0xc69" - ] - }, - { - "depth": 1, - "gas": 2030465, - "gasCost": 1, - "op": "JUMPDEST", - "pc": 3177, - "stack": [ - "0xa0712d68", - "0x1cd", - "0x3e8", "0x0", - "0x923", - "0xc0", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 2030464, - "gasCost": 3, - "op": "PUSH1", - "pc": 3178, - "stack": [ - "0xa0712d68", - "0x1cd", - "0x3e8", + "0x1", "0x0", - "0x923", - "0xc0", - "0xc0" + "0x90a" ] }, { - "depth": 1, - "gas": 2030461, - "gasCost": 3, + "pc": 2310, "op": "PUSH1", - "pc": 3180, - "stack": [ - "0xa0712d68", - "0x1cd", - "0x3e8", - "0x0", - "0x923", - "0xc0", - "0xc0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 2030458, + "gas": 2025739, "gasCost": 3, - "op": "DUP3", - "pc": 3182, - "stack": [ - "0xa0712d68", - "0x1cd", - "0x3e8", - "0x0", - "0x923", - "0xc0", - "0xc0", - "0x0", - "0x20" - ] - }, - { "depth": 1, - "gas": 2030455, - "gasCost": 3, - "op": "DUP5", - "pc": 3183, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x923", - "0xc0", - "0xc0", "0x0", - "0x20", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 2030452, - "gasCost": 3, - "op": "SUB", - "pc": 3184, - "stack": [ "0xa0712d68", - "0x1cd", - "0x3e8", - "0x0", - "0x923", - "0xc0", - "0xc0", - "0x0", + "0xe4", "0x20", "0xc0", - "0xc0" - ] - }, - { - "depth": 1, - "gas": 2030449, - "gasCost": 3, - "op": "SLT", - "pc": 3185, - "stack": [ - "0xa0712d68", - "0x1cd", - "0x3e8", - "0x0", - "0x923", - "0xc0", + "0x24", "0xc0", "0x0", - "0x20", - "0x0" - ] - }, - { - "depth": 1, - "gas": 2030446, - "gasCost": 3, - "op": "ISZERO", - "pc": 3186, - "stack": [ - "0xa0712d68", - "0x1cd", - "0x3e8", - "0x0", - "0x923", - "0xc0", - "0xc0", "0x0", "0x1" ] }, { - "depth": 1, - "gas": 2030443, - "gasCost": 3, - "op": "PUSH3", - "pc": 3187, - "stack": [ - "0xa0712d68", - "0x1cd", - "0x3e8", - "0x0", - "0x923", - "0xc0", - "0xc0", - "0x0", - "0x0" - ] - }, - { - "depth": 1, - "gas": 2030440, - "gasCost": 10, - "op": "JUMPI", - "pc": 3191, - "stack": [ - "0xa0712d68", - "0x1cd", - "0x3e8", - "0x0", - "0x923", - "0xc0", - "0xc0", - "0x0", - "0x0", - "0xc82" - ] - }, - { - "depth": 1, - "gas": 2030430, + "pc": 2312, + "op": "DUP1", + "gas": 2025736, "gasCost": 3, - "op": "PUSH3", - "pc": 3192, - "stack": [ - "0xa0712d68", - "0x1cd", - "0x3e8", - "0x0", - "0x923", - "0xc0", - "0xc0", - "0x0" - ] - }, - { "depth": 1, - "gas": 2030427, - "gasCost": 3, - "op": "PUSH3", - "pc": 3196, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x923", - "0xc0", - "0xc0", "0x0", - "0xc81" - ] - }, - { - "depth": 1, - "gas": 2030424, - "gasCost": 8, - "op": "JUMP", - "pc": 3200, - "stack": [ "0xa0712d68", - "0x1cd", - "0x3e8", - "0x0", - "0x923", + "0xe4", + "0x20", "0xc0", + "0x24", "0xc0", "0x0", - "0xc81", - "0x9d4" - ] - }, - { - "depth": 1, - "gas": 2030416, - "gasCost": 1, - "op": "JUMPDEST", - "pc": 2516, - "stack": [ - "0xa0712d68", - "0x1cd", - "0x3e8", - "0x0", - "0x923", - "0xc0", - "0xc0", "0x0", - "0xc81" + "0x1", + "0x0" ] }, { + "pc": 2313, + "op": "REVERT", + "gas": 2025733, + "gasCost": 0, "depth": 1, - "gas": 2030415, - "gasCost": 3, - "op": "PUSH1", - "pc": 2517, "stack": [ "0xa0712d68", "0x1cd", "0x3e8", "0x0", - "0x923", - "0xc0", - "0xc0", "0x0", - "0xc81" - ] - }, - { - "depth": 1, - "gas": 2030412, - "gasCost": 3, - "op": "DUP1", - "pc": 2519, - "stack": [ "0xa0712d68", - "0x1cd", - "0x3e8", - "0x0", - "0x923", + "0xe4", + "0x20", "0xc0", + "0x24", "0xc0", "0x0", - "0xc81", - "0x0" - ] - }, - { - "depth": 1, - "gas": 2030409, - "gasCost": 0, - "op": "REVERT", - "pc": 2520, - "stack": [ - "0xa0712d68", - "0x1cd", - "0x3e8", - "0x0", - "0x923", - "0xc0", - "0xc0", "0x0", - "0xc81", + "0x1", "0x0", "0x0" ] diff --git a/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint.prestateDiffTracer.json b/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint.prestateDiffTracer.json index eff0ed558..a17694aac 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint.prestateDiffTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint.prestateDiffTracer.json @@ -1,20 +1,20 @@ { "post": { "0x0000000000000000000000000000000000000000": { - "balance": "0x21bf6e560" + "balance": "0x1b648c9" }, "OWNER.address": { - "balance": "0xc9f2c9ccfda35c33ba3fd1aa0", - "nonce": 360 + "balance": "0x361049155a32982d79", + "nonce": 81 } }, "pre": { "0x0000000000000000000000000000000000000000": { - "balance": "0x7d2b7500" + "balance": "0x1b526ae" }, "OWNER.address": { - "balance": "0xc9f2c9ccfda35c33d42c88b00", - "nonce": 359 + "balance": "0x361049155acb1a0715", + "nonce": 80 } } } \ No newline at end of file diff --git a/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint.prestateTracer.json b/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint.prestateTracer.json index 5345a2418..111da9391 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint.prestateTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint.prestateTracer.json @@ -1,14 +1,14 @@ { "0x0000000000000000000000000000000000000000": { - "balance": "0x7d2b7500" + "balance": "0x1b526ae" }, "OWNER.address": { - "balance": "0xc9f2c9ccfda35c33d42c88b00", - "nonce": 359 + "balance": "0x361049155acb1a0715", + "nonce": 80 }, "Tracer.address": { "balance": "0x0", - "code": "0x60806040523480156200001157600080fd5b5060043610620000ac5760003560e01c80638bfe44ff116200006f5780638bfe44ff14620001975780639295436214620001a3578063a0712d6814620001af578063b69ef8a814620001e5578063c9353cb5146200020757620000ac565b806312065fe014620000b15780631c71706914620000d35780631c93908c14620000f55780633aa18088146200012b5780637f29c3941462000161575b600080fd5b620000bb62000227565b604051620000ca919062000975565b60405180910390f35b620000dd62000231565b604051620000ec9190620009ad565b60405180910390f35b6200011360048036038101906200010d919062000a0a565b62000280565b60405162000122919062000975565b60405180910390f35b62000149600480360381019062000143919062000a0a565b620002f6565b60405162000158919062000975565b60405180910390f35b6200017f600480360381019062000179919062000a0a565b6200049e565b6040516200018e919062000975565b60405180910390f35b620001a162000771565b005b620001ad620007b3565b005b620001cd6004803603810190620001c7919062000a0a565b620007f0565b604051620001dc919062000975565b60405180910390f35b620001ef6200092d565b604051620001fe919062000975565b60405180910390f35b6200022560048036038101906200021f919062000aa1565b62000933565b005b6000600154905090565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620002ca919062000b34565b60405180910390a28160036000828254620002e6919062000b95565b9250508190555060029050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405162000340919062000c20565b60405180910390a260405162000356906200094c565b604051809103906000f08015801562000373573d6000803e3d6000fd5b506000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508160016000828254620003c7919062000b95565b92505081905550620003e7600183620003e1919062000b95565b62000280565b50620003f262000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b81526004016200044e919062000975565b6020604051808303816000875af11580156200046e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000494919062000c69565b5060019050919050565b60003073ffffffffffffffffffffffffffffffffffffffff1663929543626040518163ffffffff1660e01b815260040160006040518083038186803b158015620004e757600080fd5b505afa925050508015620004f9575060015b620005e1576200050862000ca8565b806308c379a0036200056c57506200051f62000d43565b806200052c57506200056e565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a816040516200055d919062000e56565b60405180910390a150620005db565b505b3d80600081146200059c576040519150601f19603f3d011682016040523d82523d6000602084013e620005a1565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620005d19062000ef0565b60405180910390a1505b620005e2565b5b3073ffffffffffffffffffffffffffffffffffffffff16638bfe44ff6040518163ffffffff1660e01b815260040160006040518083038186803b1580156200062957600080fd5b505afa9250505080156200063b575060015b62000723576200064a62000ca8565b806308c379a003620006ae57506200066162000d43565b806200066e5750620006b0565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a816040516200069f919062000e56565b60405180910390a1506200071d565b505b3d8060008114620006de576040519150601f19603f3d011682016040523d82523d6000602084013e620006e3565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620007139062000ef0565b60405180910390a1505b62000724565b5b600062000768576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200075f9062000f62565b60405180910390fd5b60019050919050565b6001806040517fcf479181000000000000000000000000000000000000000000000000000000008152600401620007aa92919062000fd1565b60405180910390fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007e7906200104e565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200083a919062000c20565b60405180910390a2816001600082825462000856919062000b95565b925050819055506200087660018362000870919062000b95565b62000280565b506200088162000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b8152600401620008dd919062000975565b6020604051808303816000875af1158015620008fd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000923919062000c69565b5060019050919050565b60015481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b610a9f806200107183390190565b6000819050919050565b6200096f816200095a565b82525050565b60006020820190506200098c600083018462000964565b92915050565b6000819050919050565b620009a78162000992565b82525050565b6000602082019050620009c460008301846200099c565b92915050565b6000604051905090565b600080fd5b620009e4816200095a565b8114620009f057600080fd5b50565b60008135905062000a0481620009d9565b92915050565b60006020828403121562000a235762000a22620009d4565b5b600062000a3384828501620009f3565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000a698262000a3c565b9050919050565b62000a7b8162000a5c565b811462000a8757600080fd5b50565b60008135905062000a9b8162000a70565b92915050565b60006020828403121562000aba5762000ab9620009d4565b5b600062000aca8482850162000a8a565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000b1c600e8362000ad3565b915062000b298262000ae4565b602082019050919050565b600060408201905062000b4b600083018462000964565b818103602083015262000b5e8162000b0d565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000ba2826200095a565b915062000baf836200095a565b925082820190508082111562000bca5762000bc962000b66565b5b92915050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b600062000c0860058362000ad3565b915062000c158262000bd0565b602082019050919050565b600060408201905062000c37600083018462000964565b818103602083015262000c4a8162000bf9565b905092915050565b60008151905062000c6381620009d9565b92915050565b60006020828403121562000c825762000c81620009d4565b5b600062000c928482850162000c52565b91505092915050565b60008160e01c9050919050565b600060033d111562000cca5760046000803e62000cc760005162000c9b565b90505b90565b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000d188262000ccd565b810181811067ffffffffffffffff8211171562000d3a5762000d3962000cde565b5b80604052505050565b600060443d1062000ddb5762000d58620009ca565b60043d036004823e80513d602482011167ffffffffffffffff8211171562000d8257505062000ddb565b808201805167ffffffffffffffff81111562000da2575050505062000ddb565b80602083010160043d03850181111562000dc157505050505062000ddb565b62000dd28260200185018662000d0d565b82955050505050505b90565b600081519050919050565b60005b8381101562000e0957808201518184015260208101905062000dec565b60008484015250505050565b600062000e228262000dde565b62000e2e818562000ad3565b935062000e4081856020860162000de9565b62000e4b8162000ccd565b840191505092915050565b6000602082019050818103600083015262000e72818462000e15565b905092915050565b7f45787465726e616c2063616c6c206661696c656420776974686f757420616e2060008201527f6572726f72206d65737361676500000000000000000000000000000000000000602082015250565b600062000ed8602d8362000ad3565b915062000ee58262000e7a565b604082019050919050565b6000602082019050818103600083015262000f0b8162000ec9565b9050919050565b7f494e53554646494349454e542042414c414e4345000000000000000000000000600082015250565b600062000f4a60148362000ad3565b915062000f578262000f12565b602082019050919050565b6000602082019050818103600083015262000f7d8162000f3b565b9050919050565b6000819050919050565b6000819050919050565b600062000fb962000fb362000fad8462000f84565b62000f8e565b6200095a565b9050919050565b62000fcb8162000f98565b82525050565b600060408201905062000fe8600083018562000fc0565b62000ff7602083018462000fc0565b9392505050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b60006200103660178362000ad3565b9150620010438262000ffe565b602082019050919050565b60006020820190508181036000830152620010698162001027565b905091905056fe60806040526000600160006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b50600160009054906101000a900460ff161562000080576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200007790620002b5565b60405180910390fd5b60018060006101000a81548160ff021916908315150217905550620000bc701d6329f1c35ca4bfabb9f5610000000000620000c360201b60201c565b5062000460565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200010d919062000342565b60405180910390a281600080828254620001289190620003a3565b925050819055506200014e600183620001429190620003a3565b6200016960201b60201c565b506200015f620001df60201b60201c565b5060019050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620001b391906200042e565b60405180910390a28160026000828254620001cf9190620003a3565b9250508190555060029050919050565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b600082825260208201905092915050565b7f436f6e747261637420696e7374616e63652068617320616c726561647920626560008201527f656e20696e697469616c697a6564000000000000000000000000000000000000602082015250565b60006200029d602e836200022e565b9150620002aa826200023f565b604082019050919050565b60006020820190508181036000830152620002d0816200028e565b9050919050565b6000819050919050565b620002ec81620002d7565b82525050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006200032a6005836200022e565b91506200033782620002f2565b602082019050919050565b6000604082019050620003596000830184620002e1565b81810360208301526200036c816200031b565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620003b082620002d7565b9150620003bd83620002d7565b9250828201905080821115620003d857620003d762000374565b5b92915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000416600e836200022e565b91506200042382620003de565b602082019050919050565b6000604082019050620004456000830184620002e1565b8181036020830152620004588162000407565b905092915050565b61062f80620004706000396000f3fe608060405234801561001057600080fd5b50600436106100625760003560e01c80631c717069146100675780631c93908c1461008557806392954362146100b5578063a0712d68146100bf578063b69ef8a8146100ef578063c9353cb51461010d575b600080fd5b61006f610129565b60405161007c91906102ed565b60405180910390f35b61009f600480360381019061009a9190610343565b610178565b6040516100ac919061037f565b60405180910390f35b6100bd6101ea565b005b6100d960048036038101906100d49190610343565b610225565b6040516100e6919061037f565b60405180910390f35b6100f76102b5565b604051610104919061037f565b60405180910390f35b610127600480360381019061012291906103f8565b6102bb565b005b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516101c09190610482565b60405180910390a281600260008282546101da91906104df565b9250508190555060029050919050565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161021c9061055f565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405161026d91906105cb565b60405180910390a28160008082825461028691906104df565b925050819055506102a260018361029d91906104df565b610178565b506102ab610129565b5060019050919050565b60005481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b6000819050919050565b6102e7816102d4565b82525050565b600060208201905061030260008301846102de565b92915050565b600080fd5b6000819050919050565b6103208161030d565b811461032b57600080fd5b50565b60008135905061033d81610317565b92915050565b60006020828403121561035957610358610308565b5b60006103678482850161032e565b91505092915050565b6103798161030d565b82525050565b60006020820190506103946000830184610370565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006103c58261039a565b9050919050565b6103d5816103ba565b81146103e057600080fd5b50565b6000813590506103f2816103cc565b92915050565b60006020828403121561040e5761040d610308565b5b600061041c848285016103e3565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600061046c600e83610425565b915061047782610436565b602082019050919050565b60006040820190506104976000830184610370565b81810360208301526104a88161045f565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006104ea8261030d565b91506104f58361030d565b925082820190508082111561050d5761050c6104b0565b5b92915050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b6000610549601783610425565b915061055482610513565b602082019050919050565b600060208201905081810360008301526105788161053c565b9050919050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006105b5600583610425565b91506105c08261057f565b602082019050919050565b60006040820190506105e06000830184610370565b81810360208301526105f1816105a8565b90509291505056fea26469706673582212202a0a0fa5842e91cc0c1e5b645f7286aad7193a83c3b2f8c8e4c1b35008af0d6f64736f6c63430008140033a264697066735822122036f326b9881542090544d5d6e9f2ff18b13ec09bd4994f14891a84e97f4d6db964736f6c63430008140033", + "code": "0x60806040523480156200001157600080fd5b5060043610620000ac5760003560e01c80638bfe44ff116200006f5780638bfe44ff14620001975780639295436214620001a3578063a0712d6814620001af578063b69ef8a814620001e5578063c9353cb5146200020757620000ac565b806312065fe014620000b15780631c71706914620000d35780631c93908c14620000f55780633aa18088146200012b5780637f29c3941462000161575b600080fd5b620000bb62000227565b604051620000ca919062000997565b60405180910390f35b620000dd62000231565b604051620000ec9190620009cf565b60405180910390f35b6200011360048036038101906200010d919062000a2c565b62000280565b60405162000122919062000997565b60405180910390f35b62000149600480360381019062000143919062000a2c565b620002f6565b60405162000158919062000997565b60405180910390f35b6200017f600480360381019062000179919062000a2c565b620004ae565b6040516200018e919062000997565b60405180910390f35b620001a162000783565b005b620001ad620007c5565b005b620001cd6004803603810190620001c7919062000a2c565b62000802565b604051620001dc919062000997565b60405180910390f35b620001ef6200094f565b604051620001fe919062000997565b60405180910390f35b6200022560048036038101906200021f919062000ac3565b62000955565b005b6000600154905090565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620002ca919062000b56565b60405180910390a28160036000828254620002e6919062000bb7565b9250508190555060029050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405162000340919062000c64565b60405180910390a260405162000356906200096e565b604051809103906000f08015801562000373573d6000803e3d6000fd5b506000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508160016000828254620003c7919062000bb7565b92505081905550620003e7600183620003e1919062000bb7565b62000280565b50620003f262000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b81526004016200044e919062000997565b602060405180830381600087803b1580156200046957600080fd5b505af11580156200047e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004a4919062000cad565b5060019050919050565b60003073ffffffffffffffffffffffffffffffffffffffff1663929543626040518163ffffffff1660e01b815260040160006040518083038186803b158015620004f757600080fd5b505afa92505050801562000509575060015b620005f2576200051862000cec565b806308c379a014156200057d57506200053062000d87565b806200053d57506200057f565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a816040516200056e919062000eab565b60405180910390a150620005ec565b505b3d8060008114620005ad576040519150601f19603f3d011682016040523d82523d6000602084013e620005b2565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620005e29062000f45565b60405180910390a1505b620005f3565b5b3073ffffffffffffffffffffffffffffffffffffffff16638bfe44ff6040518163ffffffff1660e01b815260040160006040518083038186803b1580156200063a57600080fd5b505afa9250505080156200064c575060015b62000735576200065b62000cec565b806308c379a01415620006c057506200067362000d87565b80620006805750620006c2565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a81604051620006b1919062000eab565b60405180910390a1506200072f565b505b3d8060008114620006f0576040519150601f19603f3d011682016040523d82523d6000602084013e620006f5565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620007259062000f45565b60405180910390a1505b62000736565b5b60006200077a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007719062000fb7565b60405180910390fd5b60019050919050565b6001806040517fcf479181000000000000000000000000000000000000000000000000000000008152600401620007bc92919062001026565b60405180910390fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007f990620010a3565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200084c919062000c64565b60405180910390a2816001600082825462000868919062000bb7565b925050819055506200088860018362000882919062000bb7565b62000280565b506200089362000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b8152600401620008ef919062000997565b602060405180830381600087803b1580156200090a57600080fd5b505af11580156200091f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000945919062000cad565b5060019050919050565b60015481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b610ae380620010c683390190565b6000819050919050565b62000991816200097c565b82525050565b6000602082019050620009ae600083018462000986565b92915050565b6000819050919050565b620009c981620009b4565b82525050565b6000602082019050620009e66000830184620009be565b92915050565b6000604051905090565b600080fd5b62000a06816200097c565b811462000a1257600080fd5b50565b60008135905062000a2681620009fb565b92915050565b60006020828403121562000a455762000a44620009f6565b5b600062000a558482850162000a15565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000a8b8262000a5e565b9050919050565b62000a9d8162000a7e565b811462000aa957600080fd5b50565b60008135905062000abd8162000a92565b92915050565b60006020828403121562000adc5762000adb620009f6565b5b600062000aec8482850162000aac565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000b3e600e8362000af5565b915062000b4b8262000b06565b602082019050919050565b600060408201905062000b6d600083018462000986565b818103602083015262000b808162000b2f565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000bc4826200097c565b915062000bd1836200097c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000c095762000c0862000b88565b5b828201905092915050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b600062000c4c60058362000af5565b915062000c598262000c14565b602082019050919050565b600060408201905062000c7b600083018462000986565b818103602083015262000c8e8162000c3d565b905092915050565b60008151905062000ca781620009fb565b92915050565b60006020828403121562000cc65762000cc5620009f6565b5b600062000cd68482850162000c96565b91505092915050565b60008160e01c9050919050565b600060033d111562000d0e5760046000803e62000d0b60005162000cdf565b90505b90565b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000d5c8262000d11565b810181811067ffffffffffffffff8211171562000d7e5762000d7d62000d22565b5b80604052505050565b600060443d101562000d995762000e26565b62000da3620009ec565b60043d036004823e80513d602482011167ffffffffffffffff8211171562000dcd57505062000e26565b808201805167ffffffffffffffff81111562000ded575050505062000e26565b80602083010160043d03850181111562000e0c57505050505062000e26565b62000e1d8260200185018662000d51565b82955050505050505b90565b600081519050919050565b60005b8381101562000e5457808201518184015260208101905062000e37565b8381111562000e64576000848401525b50505050565b600062000e778262000e29565b62000e83818562000af5565b935062000e9581856020860162000e34565b62000ea08162000d11565b840191505092915050565b6000602082019050818103600083015262000ec7818462000e6a565b905092915050565b7f45787465726e616c2063616c6c206661696c656420776974686f757420616e2060008201527f6572726f72206d65737361676500000000000000000000000000000000000000602082015250565b600062000f2d602d8362000af5565b915062000f3a8262000ecf565b604082019050919050565b6000602082019050818103600083015262000f608162000f1e565b9050919050565b7f494e53554646494349454e542042414c414e4345000000000000000000000000600082015250565b600062000f9f60148362000af5565b915062000fac8262000f67565b602082019050919050565b6000602082019050818103600083015262000fd28162000f90565b9050919050565b6000819050919050565b6000819050919050565b60006200100e62001008620010028462000fd9565b62000fe3565b6200097c565b9050919050565b620010208162000fed565b82525050565b60006040820190506200103d600083018562001015565b6200104c602083018462001015565b9392505050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b60006200108b60178362000af5565b9150620010988262001053565b602082019050919050565b60006020820190508181036000830152620010be816200107c565b905091905056fe60806040526000600160006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b50600160009054906101000a900460ff161562000080576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200007790620002b5565b60405180910390fd5b60018060006101000a81548160ff021916908315150217905550620000bc701d6329f1c35ca4bfabb9f5610000000000620000c360201b60201c565b5062000482565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200010d919062000342565b60405180910390a281600080828254620001289190620003a3565b925050819055506200014e600183620001429190620003a3565b6200016960201b60201c565b506200015f620001df60201b60201c565b5060019050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620001b3919062000450565b60405180910390a28160026000828254620001cf9190620003a3565b9250508190555060029050919050565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b600082825260208201905092915050565b7f436f6e747261637420696e7374616e63652068617320616c726561647920626560008201527f656e20696e697469616c697a6564000000000000000000000000000000000000602082015250565b60006200029d602e836200022e565b9150620002aa826200023f565b604082019050919050565b60006020820190508181036000830152620002d0816200028e565b9050919050565b6000819050919050565b620002ec81620002d7565b82525050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006200032a6005836200022e565b91506200033782620002f2565b602082019050919050565b6000604082019050620003596000830184620002e1565b81810360208301526200036c816200031b565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620003b082620002d7565b9150620003bd83620002d7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620003f557620003f462000374565b5b828201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000438600e836200022e565b9150620004458262000400565b602082019050919050565b6000604082019050620004676000830184620002e1565b81810360208301526200047a8162000429565b905092915050565b61065180620004926000396000f3fe608060405234801561001057600080fd5b50600436106100625760003560e01c80631c717069146100675780631c93908c1461008557806392954362146100b5578063a0712d68146100bf578063b69ef8a8146100ef578063c9353cb51461010d575b600080fd5b61006f610129565b60405161007c91906102ed565b60405180910390f35b61009f600480360381019061009a9190610343565b610178565b6040516100ac919061037f565b60405180910390f35b6100bd6101ea565b005b6100d960048036038101906100d49190610343565b610225565b6040516100e6919061037f565b60405180910390f35b6100f76102b5565b604051610104919061037f565b60405180910390f35b610127600480360381019061012291906103f8565b6102bb565b005b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516101c09190610482565b60405180910390a281600260008282546101da91906104df565b9250508190555060029050919050565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161021c90610581565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405161026d91906105ed565b60405180910390a28160008082825461028691906104df565b925050819055506102a260018361029d91906104df565b610178565b506102ab610129565b5060019050919050565b60005481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b6000819050919050565b6102e7816102d4565b82525050565b600060208201905061030260008301846102de565b92915050565b600080fd5b6000819050919050565b6103208161030d565b811461032b57600080fd5b50565b60008135905061033d81610317565b92915050565b60006020828403121561035957610358610308565b5b60006103678482850161032e565b91505092915050565b6103798161030d565b82525050565b60006020820190506103946000830184610370565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006103c58261039a565b9050919050565b6103d5816103ba565b81146103e057600080fd5b50565b6000813590506103f2816103cc565b92915050565b60006020828403121561040e5761040d610308565b5b600061041c848285016103e3565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600061046c600e83610425565b915061047782610436565b602082019050919050565b60006040820190506104976000830184610370565b81810360208301526104a88161045f565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006104ea8261030d565b91506104f58361030d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561052a576105296104b0565b5b828201905092915050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b600061056b601783610425565b915061057682610535565b602082019050919050565b6000602082019050818103600083015261059a8161055e565b9050919050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006105d7600583610425565b91506105e2826105a1565b602082019050919050565b60006040820190506106026000830184610370565b8181036020830152610613816105ca565b90509291505056fea26469706673582212208743accab6cfcd1c8ccb3f51b787d679e803a77ce24ec642bd068883132fd5fa64736f6c63430008090033a264697066735822122066241fedca9ebd69f0cd9e4879f75428f5d4bf734eb072e52934a8b3161581f064736f6c63430008090033", "nonce": 1, "storage": { "0x0000000000000000000000000000000000000000000000000000000000000000": "0x0000000000000000000000000000000000000000000000000000000000000000", diff --git a/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint2.callTracer.json b/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint2.callTracer.json index b50f54316..308ac8c7c 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint2.callTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint2.callTracer.json @@ -1,32 +1,32 @@ { + "from": "OWNER.address", + "gas": "0x200b20", + "gasUsed": "0x81bca", + "to": "Tracer.address", + "input": "0x3aa1808800000000000000000000000000000000000000000000000000000000000003e8", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001", "calls": [ { "from": "Tracer.address", - "gas": "0x1eaf4c", - "gasUsed": "0x65a49", - "input": "0x60806040526000600160006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b50600160009054906101000a900460ff161562000080576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200007790620002b5565b60405180910390fd5b60018060006101000a81548160ff021916908315150217905550620000bc701d6329f1c35ca4bfabb9f5610000000000620000c360201b60201c565b5062000460565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200010d919062000342565b60405180910390a281600080828254620001289190620003a3565b925050819055506200014e600183620001429190620003a3565b6200016960201b60201c565b506200015f620001df60201b60201c565b5060019050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620001b391906200042e565b60405180910390a28160026000828254620001cf9190620003a3565b9250508190555060029050919050565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b600082825260208201905092915050565b7f436f6e747261637420696e7374616e63652068617320616c726561647920626560008201527f656e20696e697469616c697a6564000000000000000000000000000000000000602082015250565b60006200029d602e836200022e565b9150620002aa826200023f565b604082019050919050565b60006020820190508181036000830152620002d0816200028e565b9050919050565b6000819050919050565b620002ec81620002d7565b82525050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006200032a6005836200022e565b91506200033782620002f2565b602082019050919050565b6000604082019050620003596000830184620002e1565b81810360208301526200036c816200031b565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620003b082620002d7565b9150620003bd83620002d7565b9250828201905080821115620003d857620003d762000374565b5b92915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000416600e836200022e565b91506200042382620003de565b602082019050919050565b6000604082019050620004456000830184620002e1565b8181036020830152620004588162000407565b905092915050565b61062f80620004706000396000f3fe608060405234801561001057600080fd5b50600436106100625760003560e01c80631c717069146100675780631c93908c1461008557806392954362146100b5578063a0712d68146100bf578063b69ef8a8146100ef578063c9353cb51461010d575b600080fd5b61006f610129565b60405161007c91906102ed565b60405180910390f35b61009f600480360381019061009a9190610343565b610178565b6040516100ac919061037f565b60405180910390f35b6100bd6101ea565b005b6100d960048036038101906100d49190610343565b610225565b6040516100e6919061037f565b60405180910390f35b6100f76102b5565b604051610104919061037f565b60405180910390f35b610127600480360381019061012291906103f8565b6102bb565b005b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516101c09190610482565b60405180910390a281600260008282546101da91906104df565b9250508190555060029050919050565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161021c9061055f565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405161026d91906105cb565b60405180910390a28160008082825461028691906104df565b925050819055506102a260018361029d91906104df565b610178565b506102ab610129565b5060019050919050565b60005481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b6000819050919050565b6102e7816102d4565b82525050565b600060208201905061030260008301846102de565b92915050565b600080fd5b6000819050919050565b6103208161030d565b811461032b57600080fd5b50565b60008135905061033d81610317565b92915050565b60006020828403121561035957610358610308565b5b60006103678482850161032e565b91505092915050565b6103798161030d565b82525050565b60006020820190506103946000830184610370565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006103c58261039a565b9050919050565b6103d5816103ba565b81146103e057600080fd5b50565b6000813590506103f2816103cc565b92915050565b60006020828403121561040e5761040d610308565b5b600061041c848285016103e3565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600061046c600e83610425565b915061047782610436565b602082019050919050565b60006040820190506104976000830184610370565b81810360208301526104a88161045f565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006104ea8261030d565b91506104f58361030d565b925082820190508082111561050d5761050c6104b0565b5b92915050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b6000610549601783610425565b915061055482610513565b602082019050919050565b600060208201905081810360008301526105788161053c565b9050919050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006105b5600583610425565b91506105c08261057f565b602082019050919050565b60006040820190506105e06000830184610370565b81810360208301526105f1816105a8565b90509291505056fea26469706673582212202a0a0fa5842e91cc0c1e5b645f7286aad7193a83c3b2f8c8e4c1b35008af0d6f64736f6c63430008140033", - "output": "0x608060405234801561001057600080fd5b50600436106100625760003560e01c80631c717069146100675780631c93908c1461008557806392954362146100b5578063a0712d68146100bf578063b69ef8a8146100ef578063c9353cb51461010d575b600080fd5b61006f610129565b60405161007c91906102ed565b60405180910390f35b61009f600480360381019061009a9190610343565b610178565b6040516100ac919061037f565b60405180910390f35b6100bd6101ea565b005b6100d960048036038101906100d49190610343565b610225565b6040516100e6919061037f565b60405180910390f35b6100f76102b5565b604051610104919061037f565b60405180910390f35b610127600480360381019061012291906103f8565b6102bb565b005b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516101c09190610482565b60405180910390a281600260008282546101da91906104df565b9250508190555060029050919050565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161021c9061055f565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405161026d91906105cb565b60405180910390a28160008082825461028691906104df565b925050819055506102a260018361029d91906104df565b610178565b506102ab610129565b5060019050919050565b60005481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b6000819050919050565b6102e7816102d4565b82525050565b600060208201905061030260008301846102de565b92915050565b600080fd5b6000819050919050565b6103208161030d565b811461032b57600080fd5b50565b60008135905061033d81610317565b92915050565b60006020828403121561035957610358610308565b5b60006103678482850161032e565b91505092915050565b6103798161030d565b82525050565b60006020820190506103946000830184610370565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006103c58261039a565b9050919050565b6103d5816103ba565b81146103e057600080fd5b50565b6000813590506103f2816103cc565b92915050565b60006020828403121561040e5761040d610308565b5b600061041c848285016103e3565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600061046c600e83610425565b915061047782610436565b602082019050919050565b60006040820190506104976000830184610370565b81810360208301526104a88161045f565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006104ea8261030d565b91506104f58361030d565b925082820190508082111561050d5761050c6104b0565b5b92915050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b6000610549601783610425565b915061055482610513565b602082019050919050565b600060208201905081810360008301526105788161053c565b9050919050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006105b5600583610425565b91506105c08261057f565b602082019050919050565b60006040820190506105e06000830184610370565b81810360208301526105f1816105a8565b90509291505056fea26469706673582212202a0a0fa5842e91cc0c1e5b645f7286aad7193a83c3b2f8c8e4c1b35008af0d6f64736f6c63430008140033", - "to": "0x5b659fd8bdc52879d0c3697038537da40832b759", - "type": "CREATE", - "value": "0x0" + "gas": "0x1eafbf", + "gasUsed": "0x60d0a", + "to": "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "input": "0x60806040526000600160006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b50600160009054906101000a900460ff161562000080576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200007790620002b5565b60405180910390fd5b60018060006101000a81548160ff021916908315150217905550620000bc701d6329f1c35ca4bfabb9f5610000000000620000c360201b60201c565b5062000482565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200010d919062000342565b60405180910390a281600080828254620001289190620003a3565b925050819055506200014e600183620001429190620003a3565b6200016960201b60201c565b506200015f620001df60201b60201c565b5060019050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620001b3919062000450565b60405180910390a28160026000828254620001cf9190620003a3565b9250508190555060029050919050565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b600082825260208201905092915050565b7f436f6e747261637420696e7374616e63652068617320616c726561647920626560008201527f656e20696e697469616c697a6564000000000000000000000000000000000000602082015250565b60006200029d602e836200022e565b9150620002aa826200023f565b604082019050919050565b60006020820190508181036000830152620002d0816200028e565b9050919050565b6000819050919050565b620002ec81620002d7565b82525050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006200032a6005836200022e565b91506200033782620002f2565b602082019050919050565b6000604082019050620003596000830184620002e1565b81810360208301526200036c816200031b565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620003b082620002d7565b9150620003bd83620002d7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620003f557620003f462000374565b5b828201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000438600e836200022e565b9150620004458262000400565b602082019050919050565b6000604082019050620004676000830184620002e1565b81810360208301526200047a8162000429565b905092915050565b61065180620004926000396000f3fe608060405234801561001057600080fd5b50600436106100625760003560e01c80631c717069146100675780631c93908c1461008557806392954362146100b5578063a0712d68146100bf578063b69ef8a8146100ef578063c9353cb51461010d575b600080fd5b61006f610129565b60405161007c91906102ed565b60405180910390f35b61009f600480360381019061009a9190610343565b610178565b6040516100ac919061037f565b60405180910390f35b6100bd6101ea565b005b6100d960048036038101906100d49190610343565b610225565b6040516100e6919061037f565b60405180910390f35b6100f76102b5565b604051610104919061037f565b60405180910390f35b610127600480360381019061012291906103f8565b6102bb565b005b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516101c09190610482565b60405180910390a281600260008282546101da91906104df565b9250508190555060029050919050565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161021c90610581565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405161026d91906105ed565b60405180910390a28160008082825461028691906104df565b925050819055506102a260018361029d91906104df565b610178565b506102ab610129565b5060019050919050565b60005481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b6000819050919050565b6102e7816102d4565b82525050565b600060208201905061030260008301846102de565b92915050565b600080fd5b6000819050919050565b6103208161030d565b811461032b57600080fd5b50565b60008135905061033d81610317565b92915050565b60006020828403121561035957610358610308565b5b60006103678482850161032e565b91505092915050565b6103798161030d565b82525050565b60006020820190506103946000830184610370565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006103c58261039a565b9050919050565b6103d5816103ba565b81146103e057600080fd5b50565b6000813590506103f2816103cc565b92915050565b60006020828403121561040e5761040d610308565b5b600061041c848285016103e3565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600061046c600e83610425565b915061047782610436565b602082019050919050565b60006040820190506104976000830184610370565b81810360208301526104a88161045f565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006104ea8261030d565b91506104f58361030d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561052a576105296104b0565b5b828201905092915050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b600061056b601783610425565b915061057682610535565b602082019050919050565b6000602082019050818103600083015261059a8161055e565b9050919050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006105d7600583610425565b91506105e2826105a1565b602082019050919050565b60006040820190506106026000830184610370565b8181036020830152610613816105ca565b90509291505056fea26469706673582212208743accab6cfcd1c8ccb3f51b787d679e803a77ce24ec642bd068883132fd5fa64736f6c63430008090033", + "output": "0x608060405234801561001057600080fd5b50600436106100625760003560e01c80631c717069146100675780631c93908c1461008557806392954362146100b5578063a0712d68146100bf578063b69ef8a8146100ef578063c9353cb51461010d575b600080fd5b61006f610129565b60405161007c91906102ed565b60405180910390f35b61009f600480360381019061009a9190610343565b610178565b6040516100ac919061037f565b60405180910390f35b6100bd6101ea565b005b6100d960048036038101906100d49190610343565b610225565b6040516100e6919061037f565b60405180910390f35b6100f76102b5565b604051610104919061037f565b60405180910390f35b610127600480360381019061012291906103f8565b6102bb565b005b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516101c09190610482565b60405180910390a281600260008282546101da91906104df565b9250508190555060029050919050565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161021c90610581565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405161026d91906105ed565b60405180910390a28160008082825461028691906104df565b925050819055506102a260018361029d91906104df565b610178565b506102ab610129565b5060019050919050565b60005481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b6000819050919050565b6102e7816102d4565b82525050565b600060208201905061030260008301846102de565b92915050565b600080fd5b6000819050919050565b6103208161030d565b811461032b57600080fd5b50565b60008135905061033d81610317565b92915050565b60006020828403121561035957610358610308565b5b60006103678482850161032e565b91505092915050565b6103798161030d565b82525050565b60006020820190506103946000830184610370565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006103c58261039a565b9050919050565b6103d5816103ba565b81146103e057600080fd5b50565b6000813590506103f2816103cc565b92915050565b60006020828403121561040e5761040d610308565b5b600061041c848285016103e3565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600061046c600e83610425565b915061047782610436565b602082019050919050565b60006040820190506104976000830184610370565b81810360208301526104a88161045f565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006104ea8261030d565b91506104f58361030d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561052a576105296104b0565b5b828201905092915050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b600061056b601783610425565b915061057682610535565b602082019050919050565b6000602082019050818103600083015261059a8161055e565b9050919050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006105d7600583610425565b91506105e2826105a1565b602082019050919050565b60006040820190506106026000830184610370565b8181036020830152610613816105ca565b90509291505056fea26469706673582212208743accab6cfcd1c8ccb3f51b787d679e803a77ce24ec642bd068883132fd5fa64736f6c63430008090033", + "value": "0x0", + "type": "CREATE" }, { "from": "Tracer.address", - "gas": "0x17eeb9", - "gasUsed": "0x1f6b", + "gas": "0x17ac60", + "gasUsed": "0x1b31", + "to": "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "input": "0xa0712d6800000000000000000000000000000000000000000000000000000000000003e8", "output": "0x0000000000000000000000000000000000000000000000000000000000000001", - "to": "0x5b659fd8bdc52879d0c3697038537da40832b759", - "type": "CALL", - "value": "0x0" + "value": "0x0", + "type": "CALL" } ], - "from": "OWNER.address", - "gas": "0x1fb708", - "gasUsed": "0x7d9e2", - "input": "0x3aa1808800000000000000000000000000000000000000000000000000000000000003e8", - "output": "0x0000000000000000000000000000000000000000000000000000000000000001", - "to": "Tracer.address", - "type": "CALL", - "value": "0x0" + "value": "0x0", + "type": "CALL" } \ No newline at end of file diff --git a/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint2.defaultTracer.json b/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint2.defaultTracer.json index e2029a036..7b0e6791c 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint2.defaultTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint2.defaultTracer.json @@ -1,83 +1,83 @@ { + "gas": 531402, "failed": false, - "gas": 514530, "returnValue": "0000000000000000000000000000000000000000000000000000000000000001", "structLogs": [ { - "depth": 1, - "gas": 2078472, - "gasCost": 3, - "op": "PUSH1", "pc": 0, + "op": "PUSH1", + "gas": 2078784, + "gasCost": 3, + "depth": 1, "stack": [] }, { - "depth": 1, - "gas": 2078469, - "gasCost": 3, - "op": "PUSH1", "pc": 2, + "op": "PUSH1", + "gas": 2078781, + "gasCost": 3, + "depth": 1, "stack": [ "0x80" ] }, { - "depth": 1, - "gas": 2078466, - "gasCost": 12, - "op": "MSTORE", "pc": 4, + "op": "MSTORE", + "gas": 2078778, + "gasCost": 12, + "depth": 1, "stack": [ "0x80", "0x40" ] }, { - "depth": 1, - "gas": 2078454, - "gasCost": 2, - "op": "CALLVALUE", "pc": 5, + "op": "CALLVALUE", + "gas": 2078766, + "gasCost": 2, + "depth": 1, "stack": [] }, { - "depth": 1, - "gas": 2078452, - "gasCost": 3, - "op": "DUP1", "pc": 6, + "op": "DUP1", + "gas": 2078764, + "gasCost": 3, + "depth": 1, "stack": [ "0x0" ] }, { - "depth": 1, - "gas": 2078449, - "gasCost": 3, - "op": "ISZERO", "pc": 7, + "op": "ISZERO", + "gas": 2078761, + "gasCost": 3, + "depth": 1, "stack": [ "0x0", "0x0" ] }, { - "depth": 1, - "gas": 2078446, - "gasCost": 3, - "op": "PUSH3", "pc": 8, + "op": "PUSH3", + "gas": 2078758, + "gasCost": 3, + "depth": 1, "stack": [ "0x0", "0x1" ] }, { - "depth": 1, - "gas": 2078443, - "gasCost": 10, - "op": "JUMPI", "pc": 12, + "op": "JUMPI", + "gas": 2078755, + "gasCost": 10, + "depth": 1, "stack": [ "0x0", "0x1", @@ -85,141 +85,141 @@ ] }, { - "depth": 1, - "gas": 2078433, - "gasCost": 1, - "op": "JUMPDEST", "pc": 17, + "op": "JUMPDEST", + "gas": 2078745, + "gasCost": 1, + "depth": 1, "stack": [ "0x0" ] }, { - "depth": 1, - "gas": 2078432, - "gasCost": 2, - "op": "POP", "pc": 18, + "op": "POP", + "gas": 2078744, + "gasCost": 2, + "depth": 1, "stack": [ "0x0" ] }, { - "depth": 1, - "gas": 2078430, - "gasCost": 3, - "op": "PUSH1", "pc": 19, + "op": "PUSH1", + "gas": 2078742, + "gasCost": 3, + "depth": 1, "stack": [] }, { - "depth": 1, - "gas": 2078427, - "gasCost": 2, - "op": "CALLDATASIZE", "pc": 21, + "op": "CALLDATASIZE", + "gas": 2078739, + "gasCost": 2, + "depth": 1, "stack": [ "0x4" ] }, { - "depth": 1, - "gas": 2078425, - "gasCost": 3, - "op": "LT", "pc": 22, + "op": "LT", + "gas": 2078737, + "gasCost": 3, + "depth": 1, "stack": [ "0x4", "0x24" ] }, { - "depth": 1, - "gas": 2078422, - "gasCost": 3, - "op": "PUSH3", "pc": 23, + "op": "PUSH3", + "gas": 2078734, + "gasCost": 3, + "depth": 1, "stack": [ "0x0" ] }, { - "depth": 1, - "gas": 2078419, - "gasCost": 10, - "op": "JUMPI", "pc": 27, + "op": "JUMPI", + "gas": 2078731, + "gasCost": 10, + "depth": 1, "stack": [ "0x0", "0xac" ] }, { - "depth": 1, - "gas": 2078409, - "gasCost": 3, - "op": "PUSH1", "pc": 28, + "op": "PUSH1", + "gas": 2078721, + "gasCost": 3, + "depth": 1, "stack": [] }, { - "depth": 1, - "gas": 2078406, - "gasCost": 3, - "op": "CALLDATALOAD", "pc": 30, + "op": "CALLDATALOAD", + "gas": 2078718, + "gasCost": 3, + "depth": 1, "stack": [ "0x0" ] }, { - "depth": 1, - "gas": 2078403, - "gasCost": 3, - "op": "PUSH1", "pc": 31, + "op": "PUSH1", + "gas": 2078715, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa1808800000000000000000000000000000000000000000000000000000000" ] }, { - "depth": 1, - "gas": 2078400, - "gasCost": 3, - "op": "SHR", "pc": 33, + "op": "SHR", + "gas": 2078712, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa1808800000000000000000000000000000000000000000000000000000000", "0xe0" ] }, { - "depth": 1, - "gas": 2078397, - "gasCost": 3, - "op": "DUP1", "pc": 34, + "op": "DUP1", + "gas": 2078709, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088" ] }, { - "depth": 1, - "gas": 2078394, - "gasCost": 3, - "op": "PUSH4", "pc": 35, + "op": "PUSH4", + "gas": 2078706, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x3aa18088" ] }, { - "depth": 1, - "gas": 2078391, - "gasCost": 3, - "op": "GT", "pc": 40, + "op": "GT", + "gas": 2078703, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x3aa18088", @@ -227,22 +227,22 @@ ] }, { - "depth": 1, - "gas": 2078388, - "gasCost": 3, - "op": "PUSH3", "pc": 41, + "op": "PUSH3", + "gas": 2078700, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x1" ] }, { - "depth": 1, - "gas": 2078385, - "gasCost": 10, - "op": "JUMPI", "pc": 45, + "op": "JUMPI", + "gas": 2078697, + "gasCost": 10, + "depth": 1, "stack": [ "0x3aa18088", "0x1", @@ -250,42 +250,42 @@ ] }, { - "depth": 1, - "gas": 2078375, - "gasCost": 1, - "op": "JUMPDEST", "pc": 111, + "op": "JUMPDEST", + "gas": 2078687, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088" ] }, { - "depth": 1, - "gas": 2078374, - "gasCost": 3, - "op": "DUP1", "pc": 112, + "op": "DUP1", + "gas": 2078686, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088" ] }, { - "depth": 1, - "gas": 2078371, - "gasCost": 3, - "op": "PUSH4", "pc": 113, + "op": "PUSH4", + "gas": 2078683, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x3aa18088" ] }, { - "depth": 1, - "gas": 2078368, - "gasCost": 3, - "op": "EQ", "pc": 118, + "op": "EQ", + "gas": 2078680, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x3aa18088", @@ -293,22 +293,22 @@ ] }, { - "depth": 1, - "gas": 2078365, - "gasCost": 3, - "op": "PUSH3", "pc": 119, + "op": "PUSH3", + "gas": 2078677, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x0" ] }, { - "depth": 1, - "gas": 2078362, - "gasCost": 10, - "op": "JUMPI", "pc": 123, + "op": "JUMPI", + "gas": 2078674, + "gasCost": 10, + "depth": 1, "stack": [ "0x3aa18088", "0x0", @@ -316,32 +316,32 @@ ] }, { - "depth": 1, - "gas": 2078352, - "gasCost": 3, - "op": "DUP1", "pc": 124, + "op": "DUP1", + "gas": 2078664, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088" ] }, { - "depth": 1, - "gas": 2078349, - "gasCost": 3, - "op": "PUSH4", "pc": 125, + "op": "PUSH4", + "gas": 2078661, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x3aa18088" ] }, { - "depth": 1, - "gas": 2078346, - "gasCost": 3, - "op": "EQ", "pc": 130, + "op": "EQ", + "gas": 2078658, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x3aa18088", @@ -349,22 +349,22 @@ ] }, { - "depth": 1, - "gas": 2078343, - "gasCost": 3, - "op": "PUSH3", "pc": 131, + "op": "PUSH3", + "gas": 2078655, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x0" ] }, { - "depth": 1, - "gas": 2078340, - "gasCost": 10, - "op": "JUMPI", "pc": 135, + "op": "JUMPI", + "gas": 2078652, + "gasCost": 10, + "depth": 1, "stack": [ "0x3aa18088", "0x0", @@ -372,32 +372,32 @@ ] }, { - "depth": 1, - "gas": 2078330, - "gasCost": 3, - "op": "DUP1", "pc": 136, + "op": "DUP1", + "gas": 2078642, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088" ] }, { - "depth": 1, - "gas": 2078327, - "gasCost": 3, - "op": "PUSH4", "pc": 137, + "op": "PUSH4", + "gas": 2078639, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x3aa18088" ] }, { - "depth": 1, - "gas": 2078324, - "gasCost": 3, - "op": "EQ", "pc": 142, + "op": "EQ", + "gas": 2078636, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x3aa18088", @@ -405,22 +405,22 @@ ] }, { - "depth": 1, - "gas": 2078321, - "gasCost": 3, - "op": "PUSH3", "pc": 143, + "op": "PUSH3", + "gas": 2078633, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x0" ] }, { - "depth": 1, - "gas": 2078318, - "gasCost": 10, - "op": "JUMPI", "pc": 147, + "op": "JUMPI", + "gas": 2078630, + "gasCost": 10, + "depth": 1, "stack": [ "0x3aa18088", "0x0", @@ -428,32 +428,32 @@ ] }, { - "depth": 1, - "gas": 2078308, - "gasCost": 3, - "op": "DUP1", "pc": 148, + "op": "DUP1", + "gas": 2078620, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088" ] }, { - "depth": 1, - "gas": 2078305, - "gasCost": 3, - "op": "PUSH4", "pc": 149, + "op": "PUSH4", + "gas": 2078617, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x3aa18088" ] }, { - "depth": 1, - "gas": 2078302, - "gasCost": 3, - "op": "EQ", "pc": 154, + "op": "EQ", + "gas": 2078614, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x3aa18088", @@ -461,22 +461,22 @@ ] }, { - "depth": 1, - "gas": 2078299, - "gasCost": 3, - "op": "PUSH3", "pc": 155, + "op": "PUSH3", + "gas": 2078611, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x1" ] }, { - "depth": 1, - "gas": 2078296, - "gasCost": 10, - "op": "JUMPI", "pc": 159, + "op": "JUMPI", + "gas": 2078608, + "gasCost": 10, + "depth": 1, "stack": [ "0x3aa18088", "0x1", @@ -484,42 +484,42 @@ ] }, { - "depth": 1, - "gas": 2078286, - "gasCost": 1, - "op": "JUMPDEST", "pc": 299, + "op": "JUMPDEST", + "gas": 2078598, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088" ] }, { - "depth": 1, - "gas": 2078285, - "gasCost": 3, - "op": "PUSH3", "pc": 300, + "op": "PUSH3", + "gas": 2078597, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088" ] }, { - "depth": 1, - "gas": 2078282, - "gasCost": 3, - "op": "PUSH1", "pc": 304, + "op": "PUSH1", + "gas": 2078594, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149" ] }, { - "depth": 1, - "gas": 2078279, - "gasCost": 3, - "op": "DUP1", "pc": 306, + "op": "DUP1", + "gas": 2078591, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -527,11 +527,11 @@ ] }, { - "depth": 1, - "gas": 2078276, - "gasCost": 2, - "op": "CALLDATASIZE", "pc": 307, + "op": "CALLDATASIZE", + "gas": 2078588, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -540,11 +540,11 @@ ] }, { - "depth": 1, - "gas": 2078274, - "gasCost": 3, - "op": "SUB", "pc": 308, + "op": "SUB", + "gas": 2078586, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -554,11 +554,11 @@ ] }, { - "depth": 1, - "gas": 2078271, - "gasCost": 3, - "op": "DUP2", "pc": 309, + "op": "DUP2", + "gas": 2078583, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -567,11 +567,11 @@ ] }, { - "depth": 1, - "gas": 2078268, - "gasCost": 3, - "op": "ADD", "pc": 310, + "op": "ADD", + "gas": 2078580, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -581,11 +581,11 @@ ] }, { - "depth": 1, - "gas": 2078265, - "gasCost": 3, - "op": "SWAP1", "pc": 311, + "op": "SWAP1", + "gas": 2078577, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -594,11 +594,11 @@ ] }, { - "depth": 1, - "gas": 2078262, - "gasCost": 3, - "op": "PUSH3", "pc": 312, + "op": "PUSH3", + "gas": 2078574, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -607,11 +607,11 @@ ] }, { - "depth": 1, - "gas": 2078259, - "gasCost": 3, - "op": "SWAP2", "pc": 316, + "op": "SWAP2", + "gas": 2078571, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -621,11 +621,11 @@ ] }, { - "depth": 1, - "gas": 2078256, - "gasCost": 3, - "op": "SWAP1", "pc": 317, + "op": "SWAP1", + "gas": 2078568, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -635,11 +635,11 @@ ] }, { - "depth": 1, - "gas": 2078253, - "gasCost": 3, - "op": "PUSH3", "pc": 318, + "op": "PUSH3", + "gas": 2078565, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -649,26 +649,26 @@ ] }, { - "depth": 1, - "gas": 2078250, - "gasCost": 8, - "op": "JUMP", "pc": 322, + "op": "JUMP", + "gas": 2078562, + "gasCost": 8, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x143", "0x24", "0x4", - "0xa0a" + "0xa2c" ] }, { - "depth": 1, - "gas": 2078242, - "gasCost": 1, + "pc": 2604, "op": "JUMPDEST", - "pc": 2570, + "gas": 2078554, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -678,11 +678,11 @@ ] }, { - "depth": 1, - "gas": 2078241, - "gasCost": 3, + "pc": 2605, "op": "PUSH1", - "pc": 2571, + "gas": 2078553, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -692,11 +692,11 @@ ] }, { - "depth": 1, - "gas": 2078238, - "gasCost": 3, + "pc": 2607, "op": "PUSH1", - "pc": 2573, + "gas": 2078550, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -707,11 +707,11 @@ ] }, { - "depth": 1, - "gas": 2078235, - "gasCost": 3, + "pc": 2609, "op": "DUP3", - "pc": 2575, + "gas": 2078547, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -723,11 +723,11 @@ ] }, { - "depth": 1, - "gas": 2078232, - "gasCost": 3, + "pc": 2610, "op": "DUP5", - "pc": 2576, + "gas": 2078544, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -740,11 +740,11 @@ ] }, { - "depth": 1, - "gas": 2078229, - "gasCost": 3, + "pc": 2611, "op": "SUB", - "pc": 2577, + "gas": 2078541, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -758,11 +758,11 @@ ] }, { - "depth": 1, - "gas": 2078226, - "gasCost": 3, + "pc": 2612, "op": "SLT", - "pc": 2578, + "gas": 2078538, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -775,11 +775,11 @@ ] }, { - "depth": 1, - "gas": 2078223, - "gasCost": 3, + "pc": 2613, "op": "ISZERO", - "pc": 2579, + "gas": 2078535, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -791,11 +791,11 @@ ] }, { - "depth": 1, - "gas": 2078220, - "gasCost": 3, + "pc": 2614, "op": "PUSH3", - "pc": 2580, + "gas": 2078532, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -807,11 +807,11 @@ ] }, { - "depth": 1, - "gas": 2078217, - "gasCost": 10, + "pc": 2618, "op": "JUMPI", - "pc": 2584, + "gas": 2078529, + "gasCost": 10, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -820,15 +820,15 @@ "0x4", "0x0", "0x1", - "0xa23" + "0xa45" ] }, { - "depth": 1, - "gas": 2078207, - "gasCost": 1, + "pc": 2629, "op": "JUMPDEST", - "pc": 2595, + "gas": 2078519, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -839,11 +839,11 @@ ] }, { - "depth": 1, - "gas": 2078206, - "gasCost": 3, + "pc": 2630, "op": "PUSH1", - "pc": 2596, + "gas": 2078518, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -854,11 +854,11 @@ ] }, { - "depth": 1, - "gas": 2078203, - "gasCost": 3, + "pc": 2632, "op": "PUSH3", - "pc": 2598, + "gas": 2078515, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -870,11 +870,11 @@ ] }, { - "depth": 1, - "gas": 2078200, - "gasCost": 3, + "pc": 2636, "op": "DUP5", - "pc": 2602, + "gas": 2078512, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -883,15 +883,15 @@ "0x4", "0x0", "0x0", - "0xa33" + "0xa55" ] }, { - "depth": 1, - "gas": 2078197, - "gasCost": 3, + "pc": 2637, "op": "DUP3", - "pc": 2603, + "gas": 2078509, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -900,16 +900,16 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24" ] }, { - "depth": 1, - "gas": 2078194, - "gasCost": 3, + "pc": 2638, "op": "DUP6", - "pc": 2604, + "gas": 2078506, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -918,17 +918,17 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x0" ] }, { - "depth": 1, - "gas": 2078191, - "gasCost": 3, + "pc": 2639, "op": "ADD", - "pc": 2605, + "gas": 2078503, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -937,18 +937,18 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x0", "0x4" ] }, { - "depth": 1, - "gas": 2078188, - "gasCost": 3, + "pc": 2640, "op": "PUSH3", - "pc": 2606, + "gas": 2078500, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -957,17 +957,17 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4" ] }, { - "depth": 1, - "gas": 2078185, - "gasCost": 8, + "pc": 2644, "op": "JUMP", - "pc": 2610, + "gas": 2078497, + "gasCost": 8, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -976,18 +976,18 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", - "0x9f3" + "0xa15" ] }, { - "depth": 1, - "gas": 2078177, - "gasCost": 1, + "pc": 2581, "op": "JUMPDEST", - "pc": 2547, + "gas": 2078489, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -996,17 +996,17 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4" ] }, { - "depth": 1, - "gas": 2078176, - "gasCost": 3, + "pc": 2582, "op": "PUSH1", - "pc": 2548, + "gas": 2078488, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -1015,17 +1015,17 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4" ] }, { - "depth": 1, - "gas": 2078173, - "gasCost": 3, + "pc": 2584, "op": "DUP2", - "pc": 2550, + "gas": 2078485, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -1034,18 +1034,18 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x0" ] }, { - "depth": 1, - "gas": 2078170, - "gasCost": 3, + "pc": 2585, "op": "CALLDATALOAD", - "pc": 2551, + "gas": 2078482, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -1054,7 +1054,7 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x0", @@ -1062,11 +1062,11 @@ ] }, { - "depth": 1, - "gas": 2078167, - "gasCost": 3, + "pc": 2586, "op": "SWAP1", - "pc": 2552, + "gas": 2078479, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -1075,7 +1075,7 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x0", @@ -1083,11 +1083,11 @@ ] }, { - "depth": 1, - "gas": 2078164, - "gasCost": 2, + "pc": 2587, "op": "POP", - "pc": 2553, + "gas": 2078476, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -1096,7 +1096,7 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8", @@ -1104,11 +1104,11 @@ ] }, { - "depth": 1, - "gas": 2078162, - "gasCost": 3, + "pc": 2588, "op": "PUSH3", - "pc": 2554, + "gas": 2078474, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -1117,18 +1117,18 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8" ] }, { - "depth": 1, - "gas": 2078159, - "gasCost": 3, + "pc": 2592, "op": "DUP2", - "pc": 2558, + "gas": 2078471, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -1137,19 +1137,19 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8", - "0xa04" + "0xa26" ] }, { - "depth": 1, - "gas": 2078156, - "gasCost": 3, + "pc": 2593, "op": "PUSH3", - "pc": 2559, + "gas": 2078468, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -1158,20 +1158,20 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8", - "0xa04", + "0xa26", "0x3e8" ] }, { - "depth": 1, - "gas": 2078153, - "gasCost": 8, + "pc": 2597, "op": "JUMP", - "pc": 2563, + "gas": 2078465, + "gasCost": 8, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -1180,21 +1180,21 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8", - "0xa04", + "0xa26", "0x3e8", - "0x9d9" + "0x9fb" ] }, { - "depth": 1, - "gas": 2078145, - "gasCost": 1, + "pc": 2555, "op": "JUMPDEST", - "pc": 2521, + "gas": 2078457, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -1203,20 +1203,20 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8", - "0xa04", + "0xa26", "0x3e8" ] }, { - "depth": 1, - "gas": 2078144, - "gasCost": 3, + "pc": 2556, "op": "PUSH3", - "pc": 2522, + "gas": 2078456, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -1225,20 +1225,20 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8", - "0xa04", + "0xa26", "0x3e8" ] }, { - "depth": 1, - "gas": 2078141, - "gasCost": 3, + "pc": 2560, "op": "DUP2", - "pc": 2526, + "gas": 2078453, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -1247,21 +1247,21 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8", - "0xa04", + "0xa26", "0x3e8", - "0x9e4" + "0xa06" ] }, { - "depth": 1, - "gas": 2078138, - "gasCost": 3, + "pc": 2561, "op": "PUSH3", - "pc": 2527, + "gas": 2078450, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -1270,22 +1270,22 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8", - "0xa04", + "0xa26", "0x3e8", - "0x9e4", + "0xa06", "0x3e8" ] }, { - "depth": 1, - "gas": 2078135, - "gasCost": 8, + "pc": 2565, "op": "JUMP", - "pc": 2531, + "gas": 2078447, + "gasCost": 8, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -1294,23 +1294,23 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8", - "0xa04", + "0xa26", "0x3e8", - "0x9e4", + "0xa06", "0x3e8", - "0x95a" + "0x97c" ] }, { - "depth": 1, - "gas": 2078127, - "gasCost": 1, + "pc": 2428, "op": "JUMPDEST", - "pc": 2394, + "gas": 2078439, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -1319,22 +1319,22 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8", - "0xa04", + "0xa26", "0x3e8", - "0x9e4", + "0xa06", "0x3e8" ] }, { - "depth": 1, - "gas": 2078126, - "gasCost": 3, + "pc": 2429, "op": "PUSH1", - "pc": 2395, + "gas": 2078438, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -1343,22 +1343,22 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8", - "0xa04", + "0xa26", "0x3e8", - "0x9e4", + "0xa06", "0x3e8" ] }, { - "depth": 1, - "gas": 2078123, - "gasCost": 3, + "pc": 2431, "op": "DUP2", - "pc": 2397, + "gas": 2078435, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -1367,23 +1367,23 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8", - "0xa04", + "0xa26", "0x3e8", - "0x9e4", + "0xa06", "0x3e8", "0x0" ] }, { - "depth": 1, - "gas": 2078120, - "gasCost": 3, + "pc": 2432, "op": "SWAP1", - "pc": 2398, + "gas": 2078432, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -1392,24 +1392,24 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8", - "0xa04", + "0xa26", "0x3e8", - "0x9e4", + "0xa06", "0x3e8", "0x0", "0x3e8" ] }, { - "depth": 1, - "gas": 2078117, - "gasCost": 2, + "pc": 2433, "op": "POP", - "pc": 2399, + "gas": 2078429, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -1418,24 +1418,24 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8", - "0xa04", + "0xa26", "0x3e8", - "0x9e4", + "0xa06", "0x3e8", "0x3e8", "0x0" ] }, { - "depth": 1, - "gas": 2078115, - "gasCost": 3, + "pc": 2434, "op": "SWAP2", - "pc": 2400, + "gas": 2078427, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -1444,23 +1444,23 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8", - "0xa04", + "0xa26", "0x3e8", - "0x9e4", + "0xa06", "0x3e8", "0x3e8" ] }, { - "depth": 1, - "gas": 2078112, - "gasCost": 3, + "pc": 2435, "op": "SWAP1", - "pc": 2401, + "gas": 2078424, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -1469,23 +1469,23 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8", - "0xa04", + "0xa26", "0x3e8", "0x3e8", "0x3e8", - "0x9e4" + "0xa06" ] }, { - "depth": 1, - "gas": 2078109, - "gasCost": 2, + "pc": 2436, "op": "POP", - "pc": 2402, + "gas": 2078421, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -1494,23 +1494,23 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8", - "0xa04", + "0xa26", "0x3e8", "0x3e8", - "0x9e4", + "0xa06", "0x3e8" ] }, { - "depth": 1, - "gas": 2078107, - "gasCost": 8, + "pc": 2437, "op": "JUMP", - "pc": 2403, + "gas": 2078419, + "gasCost": 8, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -1519,22 +1519,22 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8", - "0xa04", + "0xa26", "0x3e8", "0x3e8", - "0x9e4" + "0xa06" ] }, { - "depth": 1, - "gas": 2078099, - "gasCost": 1, + "pc": 2566, "op": "JUMPDEST", - "pc": 2532, + "gas": 2078411, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -1543,21 +1543,21 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8", - "0xa04", + "0xa26", "0x3e8", "0x3e8" ] }, { - "depth": 1, - "gas": 2078098, - "gasCost": 3, + "pc": 2567, "op": "DUP2", - "pc": 2533, + "gas": 2078410, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -1566,21 +1566,21 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8", - "0xa04", + "0xa26", "0x3e8", "0x3e8" ] }, { - "depth": 1, - "gas": 2078095, - "gasCost": 3, + "pc": 2568, "op": "EQ", - "pc": 2534, + "gas": 2078407, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -1589,22 +1589,22 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8", - "0xa04", + "0xa26", "0x3e8", "0x3e8", "0x3e8" ] }, { - "depth": 1, - "gas": 2078092, - "gasCost": 3, + "pc": 2569, "op": "PUSH3", - "pc": 2535, + "gas": 2078404, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -1613,21 +1613,21 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8", - "0xa04", + "0xa26", "0x3e8", "0x1" ] }, { - "depth": 1, - "gas": 2078089, - "gasCost": 10, + "pc": 2573, "op": "JUMPI", - "pc": 2539, + "gas": 2078401, + "gasCost": 10, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -1636,22 +1636,22 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8", - "0xa04", + "0xa26", "0x3e8", "0x1", - "0x9f0" + "0xa12" ] }, { - "depth": 1, - "gas": 2078079, - "gasCost": 1, + "pc": 2578, "op": "JUMPDEST", - "pc": 2544, + "gas": 2078391, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -1660,20 +1660,20 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8", - "0xa04", + "0xa26", "0x3e8" ] }, { - "depth": 1, - "gas": 2078078, - "gasCost": 2, + "pc": 2579, "op": "POP", - "pc": 2545, + "gas": 2078390, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -1682,20 +1682,20 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8", - "0xa04", + "0xa26", "0x3e8" ] }, { - "depth": 1, - "gas": 2078076, - "gasCost": 8, + "pc": 2580, "op": "JUMP", - "pc": 2546, + "gas": 2078388, + "gasCost": 8, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -1704,19 +1704,19 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8", - "0xa04" + "0xa26" ] }, { - "depth": 1, - "gas": 2078068, - "gasCost": 1, + "pc": 2598, "op": "JUMPDEST", - "pc": 2564, + "gas": 2078380, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -1725,18 +1725,18 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8" ] }, { - "depth": 1, - "gas": 2078067, - "gasCost": 3, + "pc": 2599, "op": "SWAP3", - "pc": 2565, + "gas": 2078379, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -1745,18 +1745,18 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8" ] }, { - "depth": 1, - "gas": 2078064, - "gasCost": 3, + "pc": 2600, "op": "SWAP2", - "pc": 2566, + "gas": 2078376, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -1768,15 +1768,15 @@ "0x3e8", "0x24", "0x4", - "0xa33" + "0xa55" ] }, { - "depth": 1, - "gas": 2078061, - "gasCost": 2, + "pc": 2601, "op": "POP", - "pc": 2567, + "gas": 2078373, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -1786,17 +1786,17 @@ "0x0", "0x0", "0x3e8", - "0xa33", + "0xa55", "0x4", "0x24" ] }, { - "depth": 1, - "gas": 2078059, - "gasCost": 2, + "pc": 2602, "op": "POP", - "pc": 2568, + "gas": 2078371, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -1806,16 +1806,16 @@ "0x0", "0x0", "0x3e8", - "0xa33", + "0xa55", "0x4" ] }, { - "depth": 1, - "gas": 2078057, - "gasCost": 8, + "pc": 2603, "op": "JUMP", - "pc": 2569, + "gas": 2078369, + "gasCost": 8, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -1825,15 +1825,15 @@ "0x0", "0x0", "0x3e8", - "0xa33" + "0xa55" ] }, { - "depth": 1, - "gas": 2078049, - "gasCost": 1, + "pc": 2645, "op": "JUMPDEST", - "pc": 2611, + "gas": 2078361, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -1846,11 +1846,11 @@ ] }, { - "depth": 1, - "gas": 2078048, - "gasCost": 3, + "pc": 2646, "op": "SWAP2", - "pc": 2612, + "gas": 2078360, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -1863,11 +1863,11 @@ ] }, { - "depth": 1, - "gas": 2078045, - "gasCost": 2, + "pc": 2647, "op": "POP", - "pc": 2613, + "gas": 2078357, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -1880,11 +1880,11 @@ ] }, { - "depth": 1, - "gas": 2078043, - "gasCost": 2, + "pc": 2648, "op": "POP", - "pc": 2614, + "gas": 2078355, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -1896,11 +1896,11 @@ ] }, { - "depth": 1, - "gas": 2078041, - "gasCost": 3, + "pc": 2649, "op": "SWAP3", - "pc": 2615, + "gas": 2078353, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -1911,11 +1911,11 @@ ] }, { - "depth": 1, - "gas": 2078038, - "gasCost": 3, + "pc": 2650, "op": "SWAP2", - "pc": 2616, + "gas": 2078350, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -1926,11 +1926,11 @@ ] }, { - "depth": 1, - "gas": 2078035, - "gasCost": 2, + "pc": 2651, "op": "POP", - "pc": 2617, + "gas": 2078347, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -1941,11 +1941,11 @@ ] }, { - "depth": 1, - "gas": 2078033, - "gasCost": 2, + "pc": 2652, "op": "POP", - "pc": 2618, + "gas": 2078345, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -1955,11 +1955,11 @@ ] }, { - "depth": 1, - "gas": 2078031, - "gasCost": 8, + "pc": 2653, "op": "JUMP", - "pc": 2619, + "gas": 2078343, + "gasCost": 8, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -1968,11 +1968,11 @@ ] }, { - "depth": 1, - "gas": 2078023, - "gasCost": 1, - "op": "JUMPDEST", "pc": 323, + "op": "JUMPDEST", + "gas": 2078335, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -1980,11 +1980,11 @@ ] }, { - "depth": 1, - "gas": 2078022, - "gasCost": 3, - "op": "PUSH3", "pc": 324, + "op": "PUSH3", + "gas": 2078334, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -1992,11 +1992,11 @@ ] }, { - "depth": 1, - "gas": 2078019, - "gasCost": 8, - "op": "JUMP", "pc": 328, + "op": "JUMP", + "gas": 2078331, + "gasCost": 8, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -2005,11 +2005,11 @@ ] }, { - "depth": 1, - "gas": 2078011, - "gasCost": 1, - "op": "JUMPDEST", "pc": 758, + "op": "JUMPDEST", + "gas": 2078323, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -2017,11 +2017,11 @@ ] }, { - "depth": 1, - "gas": 2078010, - "gasCost": 3, - "op": "PUSH1", "pc": 759, + "op": "PUSH1", + "gas": 2078322, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -2029,11 +2029,11 @@ ] }, { - "depth": 1, - "gas": 2078007, - "gasCost": 2, - "op": "CALLER", "pc": 761, + "op": "CALLER", + "gas": 2078319, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -2042,11 +2042,11 @@ ] }, { - "depth": 1, - "gas": 2078005, - "gasCost": 3, - "op": "PUSH20", "pc": 762, + "op": "PUSH20", + "gas": 2078317, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -2056,11 +2056,11 @@ ] }, { - "depth": 1, - "gas": 2078002, - "gasCost": 3, - "op": "AND", "pc": 783, + "op": "AND", + "gas": 2078314, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -2071,11 +2071,11 @@ ] }, { - "depth": 1, - "gas": 2077999, - "gasCost": 3, - "op": "PUSH32", "pc": 784, + "op": "PUSH32", + "gas": 2078311, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -2085,11 +2085,11 @@ ] }, { - "depth": 1, - "gas": 2077996, - "gasCost": 3, - "op": "DUP4", "pc": 817, + "op": "DUP4", + "gas": 2078308, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -2100,11 +2100,11 @@ ] }, { - "depth": 1, - "gas": 2077993, - "gasCost": 3, - "op": "PUSH1", "pc": 818, + "op": "PUSH1", + "gas": 2078305, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -2116,11 +2116,11 @@ ] }, { - "depth": 1, - "gas": 2077990, - "gasCost": 3, - "op": "MLOAD", "pc": 820, + "op": "MLOAD", + "gas": 2078302, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -2133,11 +2133,11 @@ ] }, { - "depth": 1, - "gas": 2077987, - "gasCost": 3, - "op": "PUSH3", "pc": 821, + "op": "PUSH3", + "gas": 2078299, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -2150,11 +2150,11 @@ ] }, { - "depth": 1, - "gas": 2077984, - "gasCost": 3, - "op": "SWAP2", "pc": 825, + "op": "SWAP2", + "gas": 2078296, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -2168,11 +2168,11 @@ ] }, { - "depth": 1, - "gas": 2077981, - "gasCost": 3, - "op": "SWAP1", "pc": 826, + "op": "SWAP1", + "gas": 2078293, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -2186,11 +2186,11 @@ ] }, { - "depth": 1, - "gas": 2077978, - "gasCost": 3, - "op": "PUSH3", "pc": 827, + "op": "PUSH3", + "gas": 2078290, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -2204,11 +2204,11 @@ ] }, { - "depth": 1, - "gas": 2077975, - "gasCost": 8, - "op": "JUMP", "pc": 831, + "op": "JUMP", + "gas": 2078287, + "gasCost": 8, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -2219,15 +2219,15 @@ "0x340", "0x3e8", "0x80", - "0xc20" + "0xc64" ] }, { - "depth": 1, - "gas": 2077967, - "gasCost": 1, + "pc": 3172, "op": "JUMPDEST", - "pc": 3104, + "gas": 2078279, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -2241,11 +2241,11 @@ ] }, { - "depth": 1, - "gas": 2077966, - "gasCost": 3, + "pc": 3173, "op": "PUSH1", - "pc": 3105, + "gas": 2078278, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -2259,11 +2259,11 @@ ] }, { - "depth": 1, - "gas": 2077963, - "gasCost": 3, + "pc": 3175, "op": "PUSH1", - "pc": 3107, + "gas": 2078275, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -2278,11 +2278,11 @@ ] }, { - "depth": 1, - "gas": 2077960, - "gasCost": 3, + "pc": 3177, "op": "DUP3", - "pc": 3109, + "gas": 2078272, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -2298,11 +2298,11 @@ ] }, { - "depth": 1, - "gas": 2077957, - "gasCost": 3, + "pc": 3178, "op": "ADD", - "pc": 3110, + "gas": 2078269, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -2319,11 +2319,11 @@ ] }, { - "depth": 1, - "gas": 2077954, - "gasCost": 3, + "pc": 3179, "op": "SWAP1", - "pc": 3111, + "gas": 2078266, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -2339,11 +2339,11 @@ ] }, { - "depth": 1, - "gas": 2077951, - "gasCost": 2, + "pc": 3180, "op": "POP", - "pc": 3112, + "gas": 2078263, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -2359,11 +2359,11 @@ ] }, { - "depth": 1, - "gas": 2077949, - "gasCost": 3, + "pc": 3181, "op": "PUSH3", - "pc": 3113, + "gas": 2078261, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -2378,11 +2378,11 @@ ] }, { - "depth": 1, - "gas": 2077946, - "gasCost": 3, + "pc": 3185, "op": "PUSH1", - "pc": 3117, + "gas": 2078258, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -2394,15 +2394,15 @@ "0x3e8", "0x80", "0xc0", - "0xc37" + "0xc7b" ] }, { - "depth": 1, - "gas": 2077943, - "gasCost": 3, + "pc": 3187, "op": "DUP4", - "pc": 3119, + "gas": 2078255, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -2414,16 +2414,16 @@ "0x3e8", "0x80", "0xc0", - "0xc37", + "0xc7b", "0x0" ] }, { - "depth": 1, - "gas": 2077940, - "gasCost": 3, + "pc": 3188, "op": "ADD", - "pc": 3120, + "gas": 2078252, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -2435,17 +2435,17 @@ "0x3e8", "0x80", "0xc0", - "0xc37", + "0xc7b", "0x0", "0x80" ] }, { - "depth": 1, - "gas": 2077937, - "gasCost": 3, + "pc": 3189, "op": "DUP5", - "pc": 3121, + "gas": 2078249, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -2457,16 +2457,16 @@ "0x3e8", "0x80", "0xc0", - "0xc37", + "0xc7b", "0x80" ] }, { - "depth": 1, - "gas": 2077934, - "gasCost": 3, + "pc": 3190, "op": "PUSH3", - "pc": 3122, + "gas": 2078246, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -2478,17 +2478,17 @@ "0x3e8", "0x80", "0xc0", - "0xc37", + "0xc7b", "0x80", "0x3e8" ] }, { - "depth": 1, - "gas": 2077931, - "gasCost": 8, + "pc": 3194, "op": "JUMP", - "pc": 3126, + "gas": 2078243, + "gasCost": 8, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -2500,18 +2500,18 @@ "0x3e8", "0x80", "0xc0", - "0xc37", + "0xc7b", "0x80", "0x3e8", - "0x964" + "0x986" ] }, { - "depth": 1, - "gas": 2077923, - "gasCost": 1, + "pc": 2438, "op": "JUMPDEST", - "pc": 2404, + "gas": 2078235, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -2523,17 +2523,17 @@ "0x3e8", "0x80", "0xc0", - "0xc37", + "0xc7b", "0x80", "0x3e8" ] }, { - "depth": 1, - "gas": 2077922, - "gasCost": 3, + "pc": 2439, "op": "PUSH3", - "pc": 2405, + "gas": 2078234, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -2545,17 +2545,17 @@ "0x3e8", "0x80", "0xc0", - "0xc37", + "0xc7b", "0x80", "0x3e8" ] }, { - "depth": 1, - "gas": 2077919, - "gasCost": 3, + "pc": 2443, "op": "DUP2", - "pc": 2409, + "gas": 2078231, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -2567,18 +2567,18 @@ "0x3e8", "0x80", "0xc0", - "0xc37", + "0xc7b", "0x80", "0x3e8", - "0x96f" + "0x991" ] }, { - "depth": 1, - "gas": 2077916, - "gasCost": 3, + "pc": 2444, "op": "PUSH3", - "pc": 2410, + "gas": 2078228, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -2590,19 +2590,19 @@ "0x3e8", "0x80", "0xc0", - "0xc37", + "0xc7b", "0x80", "0x3e8", - "0x96f", + "0x991", "0x3e8" ] }, { - "depth": 1, - "gas": 2077913, - "gasCost": 8, + "pc": 2448, "op": "JUMP", - "pc": 2414, + "gas": 2078225, + "gasCost": 8, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -2614,20 +2614,20 @@ "0x3e8", "0x80", "0xc0", - "0xc37", + "0xc7b", "0x80", "0x3e8", - "0x96f", + "0x991", "0x3e8", - "0x95a" + "0x97c" ] }, { - "depth": 1, - "gas": 2077905, - "gasCost": 1, + "pc": 2428, "op": "JUMPDEST", - "pc": 2394, + "gas": 2078217, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -2639,19 +2639,19 @@ "0x3e8", "0x80", "0xc0", - "0xc37", + "0xc7b", "0x80", "0x3e8", - "0x96f", + "0x991", "0x3e8" ] }, { - "depth": 1, - "gas": 2077904, - "gasCost": 3, + "pc": 2429, "op": "PUSH1", - "pc": 2395, + "gas": 2078216, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -2663,19 +2663,19 @@ "0x3e8", "0x80", "0xc0", - "0xc37", + "0xc7b", "0x80", "0x3e8", - "0x96f", + "0x991", "0x3e8" ] }, { - "depth": 1, - "gas": 2077901, - "gasCost": 3, + "pc": 2431, "op": "DUP2", - "pc": 2397, + "gas": 2078213, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -2687,20 +2687,20 @@ "0x3e8", "0x80", "0xc0", - "0xc37", + "0xc7b", "0x80", "0x3e8", - "0x96f", + "0x991", "0x3e8", "0x0" ] }, { - "depth": 1, - "gas": 2077898, - "gasCost": 3, + "pc": 2432, "op": "SWAP1", - "pc": 2398, + "gas": 2078210, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -2712,21 +2712,21 @@ "0x3e8", "0x80", "0xc0", - "0xc37", + "0xc7b", "0x80", "0x3e8", - "0x96f", + "0x991", "0x3e8", "0x0", "0x3e8" ] }, { - "depth": 1, - "gas": 2077895, - "gasCost": 2, + "pc": 2433, "op": "POP", - "pc": 2399, + "gas": 2078207, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -2738,21 +2738,21 @@ "0x3e8", "0x80", "0xc0", - "0xc37", + "0xc7b", "0x80", "0x3e8", - "0x96f", + "0x991", "0x3e8", "0x3e8", "0x0" ] }, { - "depth": 1, - "gas": 2077893, - "gasCost": 3, + "pc": 2434, "op": "SWAP2", - "pc": 2400, + "gas": 2078205, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -2764,20 +2764,20 @@ "0x3e8", "0x80", "0xc0", - "0xc37", + "0xc7b", "0x80", "0x3e8", - "0x96f", + "0x991", "0x3e8", "0x3e8" ] }, { - "depth": 1, - "gas": 2077890, - "gasCost": 3, + "pc": 2435, "op": "SWAP1", - "pc": 2401, + "gas": 2078202, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -2789,20 +2789,20 @@ "0x3e8", "0x80", "0xc0", - "0xc37", + "0xc7b", "0x80", "0x3e8", "0x3e8", "0x3e8", - "0x96f" + "0x991" ] }, { - "depth": 1, - "gas": 2077887, - "gasCost": 2, + "pc": 2436, "op": "POP", - "pc": 2402, + "gas": 2078199, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -2814,20 +2814,20 @@ "0x3e8", "0x80", "0xc0", - "0xc37", + "0xc7b", "0x80", "0x3e8", "0x3e8", - "0x96f", + "0x991", "0x3e8" ] }, { - "depth": 1, - "gas": 2077885, - "gasCost": 8, + "pc": 2437, "op": "JUMP", - "pc": 2403, + "gas": 2078197, + "gasCost": 8, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -2839,19 +2839,19 @@ "0x3e8", "0x80", "0xc0", - "0xc37", + "0xc7b", "0x80", "0x3e8", "0x3e8", - "0x96f" + "0x991" ] }, { - "depth": 1, - "gas": 2077877, - "gasCost": 1, + "pc": 2449, "op": "JUMPDEST", - "pc": 2415, + "gas": 2078189, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -2863,18 +2863,18 @@ "0x3e8", "0x80", "0xc0", - "0xc37", + "0xc7b", "0x80", "0x3e8", "0x3e8" ] }, { - "depth": 1, - "gas": 2077876, - "gasCost": 3, + "pc": 2450, "op": "DUP3", - "pc": 2416, + "gas": 2078188, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -2886,18 +2886,18 @@ "0x3e8", "0x80", "0xc0", - "0xc37", + "0xc7b", "0x80", "0x3e8", "0x3e8" ] }, { - "depth": 1, - "gas": 2077873, - "gasCost": 9, + "pc": 2451, "op": "MSTORE", - "pc": 2417, + "gas": 2078185, + "gasCost": 9, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -2909,7 +2909,7 @@ "0x3e8", "0x80", "0xc0", - "0xc37", + "0xc7b", "0x80", "0x3e8", "0x3e8", @@ -2917,11 +2917,11 @@ ] }, { - "depth": 1, - "gas": 2077864, - "gasCost": 2, + "pc": 2452, "op": "POP", - "pc": 2418, + "gas": 2078176, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -2933,17 +2933,17 @@ "0x3e8", "0x80", "0xc0", - "0xc37", + "0xc7b", "0x80", "0x3e8" ] }, { - "depth": 1, - "gas": 2077862, - "gasCost": 2, + "pc": 2453, "op": "POP", - "pc": 2419, + "gas": 2078174, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -2955,16 +2955,16 @@ "0x3e8", "0x80", "0xc0", - "0xc37", + "0xc7b", "0x80" ] }, { - "depth": 1, - "gas": 2077860, - "gasCost": 8, + "pc": 2454, "op": "JUMP", - "pc": 2420, + "gas": 2078172, + "gasCost": 8, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -2976,15 +2976,15 @@ "0x3e8", "0x80", "0xc0", - "0xc37" + "0xc7b" ] }, { - "depth": 1, - "gas": 2077852, - "gasCost": 1, + "pc": 3195, "op": "JUMPDEST", - "pc": 3127, + "gas": 2078164, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -2999,11 +2999,11 @@ ] }, { - "depth": 1, - "gas": 2077851, - "gasCost": 3, + "pc": 3196, "op": "DUP2", - "pc": 3128, + "gas": 2078163, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -3018,11 +3018,11 @@ ] }, { - "depth": 1, - "gas": 2077848, - "gasCost": 3, + "pc": 3197, "op": "DUP2", - "pc": 3129, + "gas": 2078160, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -3038,11 +3038,11 @@ ] }, { - "depth": 1, - "gas": 2077845, - "gasCost": 3, + "pc": 3198, "op": "SUB", - "pc": 3130, + "gas": 2078157, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -3059,11 +3059,11 @@ ] }, { - "depth": 1, - "gas": 2077842, - "gasCost": 3, + "pc": 3199, "op": "PUSH1", - "pc": 3131, + "gas": 2078154, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -3079,11 +3079,11 @@ ] }, { - "depth": 1, - "gas": 2077839, - "gasCost": 3, + "pc": 3201, "op": "DUP4", - "pc": 3133, + "gas": 2078151, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -3100,11 +3100,11 @@ ] }, { - "depth": 1, - "gas": 2077836, - "gasCost": 3, + "pc": 3202, "op": "ADD", - "pc": 3134, + "gas": 2078148, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -3122,11 +3122,11 @@ ] }, { - "depth": 1, - "gas": 2077833, - "gasCost": 6, + "pc": 3203, "op": "MSTORE", - "pc": 3135, + "gas": 2078145, + "gasCost": 6, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -3143,11 +3143,11 @@ ] }, { - "depth": 1, - "gas": 2077827, - "gasCost": 3, + "pc": 3204, "op": "PUSH3", - "pc": 3136, + "gas": 2078139, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -3162,11 +3162,11 @@ ] }, { - "depth": 1, - "gas": 2077824, - "gasCost": 3, + "pc": 3208, "op": "DUP2", - "pc": 3140, + "gas": 2078136, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -3178,15 +3178,15 @@ "0x3e8", "0x80", "0xc0", - "0xc4a" + "0xc8e" ] }, { - "depth": 1, - "gas": 2077821, - "gasCost": 3, + "pc": 3209, "op": "PUSH3", - "pc": 3141, + "gas": 2078133, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -3198,16 +3198,16 @@ "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xc0" ] }, { - "depth": 1, - "gas": 2077818, - "gasCost": 8, + "pc": 3213, "op": "JUMP", - "pc": 3145, + "gas": 2078130, + "gasCost": 8, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -3219,17 +3219,17 @@ "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xc0", - "0xbf9" + "0xc3d" ] }, { - "depth": 1, - "gas": 2077810, - "gasCost": 1, + "pc": 3133, "op": "JUMPDEST", - "pc": 3065, + "gas": 2078122, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -3241,16 +3241,16 @@ "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xc0" ] }, { - "depth": 1, - "gas": 2077809, - "gasCost": 3, + "pc": 3134, "op": "PUSH1", - "pc": 3066, + "gas": 2078121, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -3262,16 +3262,16 @@ "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xc0" ] }, { - "depth": 1, - "gas": 2077806, - "gasCost": 3, + "pc": 3136, "op": "PUSH3", - "pc": 3068, + "gas": 2078118, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -3283,17 +3283,17 @@ "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xc0", "0x0" ] }, { - "depth": 1, - "gas": 2077803, - "gasCost": 3, + "pc": 3140, "op": "PUSH1", - "pc": 3072, + "gas": 2078115, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -3305,18 +3305,18 @@ "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xc0", "0x0", - "0xc08" + "0xc4c" ] }, { - "depth": 1, - "gas": 2077800, - "gasCost": 3, + "pc": 3142, "op": "DUP4", - "pc": 3074, + "gas": 2078112, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -3328,19 +3328,19 @@ "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xc0", "0x0", - "0xc08", + "0xc4c", "0x5" ] }, { - "depth": 1, - "gas": 2077797, - "gasCost": 3, + "pc": 3143, "op": "PUSH3", - "pc": 3075, + "gas": 2078109, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -3352,20 +3352,20 @@ "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xc0", "0x0", - "0xc08", + "0xc4c", "0x5", "0xc0" ] }, { - "depth": 1, - "gas": 2077794, - "gasCost": 8, + "pc": 3147, "op": "JUMP", - "pc": 3079, + "gas": 2078106, + "gasCost": 8, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -3377,21 +3377,21 @@ "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xc0", "0x0", - "0xc08", + "0xc4c", "0x5", "0xc0", - "0xad3" + "0xaf5" ] }, { - "depth": 1, - "gas": 2077786, - "gasCost": 1, + "pc": 2805, "op": "JUMPDEST", - "pc": 2771, + "gas": 2078098, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -3403,20 +3403,20 @@ "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xc0", "0x0", - "0xc08", + "0xc4c", "0x5", "0xc0" ] }, { - "depth": 1, - "gas": 2077785, - "gasCost": 3, + "pc": 2806, "op": "PUSH1", - "pc": 2772, + "gas": 2078097, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -3428,20 +3428,20 @@ "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xc0", "0x0", - "0xc08", + "0xc4c", "0x5", "0xc0" ] }, { - "depth": 1, - "gas": 2077782, - "gasCost": 3, + "pc": 2808, "op": "DUP3", - "pc": 2774, + "gas": 2078094, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -3453,21 +3453,21 @@ "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xc0", "0x0", - "0xc08", + "0xc4c", "0x5", "0xc0", "0x0" ] }, { - "depth": 1, - "gas": 2077779, - "gasCost": 3, + "pc": 2809, "op": "DUP3", - "pc": 2775, + "gas": 2078091, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -3479,10 +3479,10 @@ "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xc0", "0x0", - "0xc08", + "0xc4c", "0x5", "0xc0", "0x0", @@ -3490,11 +3490,11 @@ ] }, { - "depth": 1, - "gas": 2077776, - "gasCost": 6, + "pc": 2810, "op": "MSTORE", - "pc": 2776, + "gas": 2078088, + "gasCost": 6, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -3506,10 +3506,10 @@ "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xc0", "0x0", - "0xc08", + "0xc4c", "0x5", "0xc0", "0x0", @@ -3518,11 +3518,11 @@ ] }, { - "depth": 1, - "gas": 2077770, - "gasCost": 3, + "pc": 2811, "op": "PUSH1", - "pc": 2777, + "gas": 2078082, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -3534,21 +3534,21 @@ "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xc0", "0x0", - "0xc08", + "0xc4c", "0x5", "0xc0", "0x0" ] }, { - "depth": 1, - "gas": 2077767, - "gasCost": 3, + "pc": 2813, "op": "DUP3", - "pc": 2779, + "gas": 2078079, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -3560,10 +3560,10 @@ "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xc0", "0x0", - "0xc08", + "0xc4c", "0x5", "0xc0", "0x0", @@ -3571,11 +3571,11 @@ ] }, { - "depth": 1, - "gas": 2077764, - "gasCost": 3, + "pc": 2814, "op": "ADD", - "pc": 2780, + "gas": 2078076, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -3587,10 +3587,10 @@ "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xc0", "0x0", - "0xc08", + "0xc4c", "0x5", "0xc0", "0x0", @@ -3599,11 +3599,11 @@ ] }, { - "depth": 1, - "gas": 2077761, - "gasCost": 3, + "pc": 2815, "op": "SWAP1", - "pc": 2781, + "gas": 2078073, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -3615,10 +3615,10 @@ "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xc0", "0x0", - "0xc08", + "0xc4c", "0x5", "0xc0", "0x0", @@ -3626,11 +3626,11 @@ ] }, { - "depth": 1, - "gas": 2077758, - "gasCost": 2, + "pc": 2816, "op": "POP", - "pc": 2782, + "gas": 2078070, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -3642,10 +3642,10 @@ "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xc0", "0x0", - "0xc08", + "0xc4c", "0x5", "0xc0", "0xe0", @@ -3653,11 +3653,11 @@ ] }, { - "depth": 1, - "gas": 2077756, - "gasCost": 3, + "pc": 2817, "op": "SWAP3", - "pc": 2783, + "gas": 2078068, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -3669,21 +3669,21 @@ "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xc0", "0x0", - "0xc08", + "0xc4c", "0x5", "0xc0", "0xe0" ] }, { - "depth": 1, - "gas": 2077753, - "gasCost": 3, + "pc": 2818, "op": "SWAP2", - "pc": 2784, + "gas": 2078065, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -3695,21 +3695,21 @@ "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xc0", "0x0", "0xe0", "0x5", "0xc0", - "0xc08" + "0xc4c" ] }, { - "depth": 1, - "gas": 2077750, - "gasCost": 2, + "pc": 2819, "op": "POP", - "pc": 2785, + "gas": 2078062, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -3721,21 +3721,21 @@ "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xc0", "0x0", "0xe0", - "0xc08", + "0xc4c", "0xc0", "0x5" ] }, { - "depth": 1, - "gas": 2077748, - "gasCost": 2, + "pc": 2820, "op": "POP", - "pc": 2786, + "gas": 2078060, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -3747,20 +3747,20 @@ "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xc0", "0x0", "0xe0", - "0xc08", + "0xc4c", "0xc0" ] }, { - "depth": 1, - "gas": 2077746, - "gasCost": 8, + "pc": 2821, "op": "JUMP", - "pc": 2787, + "gas": 2078058, + "gasCost": 8, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -3772,19 +3772,19 @@ "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xc0", "0x0", "0xe0", - "0xc08" + "0xc4c" ] }, { - "depth": 1, - "gas": 2077738, - "gasCost": 1, + "pc": 3148, "op": "JUMPDEST", - "pc": 3080, + "gas": 2078050, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -3796,18 +3796,18 @@ "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xc0", "0x0", "0xe0" ] }, { - "depth": 1, - "gas": 2077737, - "gasCost": 3, + "pc": 3149, "op": "SWAP2", - "pc": 3081, + "gas": 2078049, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -3819,18 +3819,18 @@ "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xc0", "0x0", "0xe0" ] }, { - "depth": 1, - "gas": 2077734, - "gasCost": 2, + "pc": 3150, "op": "POP", - "pc": 3082, + "gas": 2078046, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -3842,18 +3842,18 @@ "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xe0", "0x0", "0xc0" ] }, { - "depth": 1, - "gas": 2077732, - "gasCost": 3, + "pc": 3151, "op": "PUSH3", - "pc": 3083, + "gas": 2078044, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -3865,17 +3865,17 @@ "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xe0", "0x0" ] }, { - "depth": 1, - "gas": 2077729, - "gasCost": 3, + "pc": 3155, "op": "DUP3", - "pc": 3087, + "gas": 2078041, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -3887,18 +3887,18 @@ "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xe0", "0x0", - "0xc15" + "0xc59" ] }, { - "depth": 1, - "gas": 2077726, - "gasCost": 3, + "pc": 3156, "op": "PUSH3", - "pc": 3088, + "gas": 2078038, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -3910,19 +3910,19 @@ "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xe0", "0x0", - "0xc15", + "0xc59", "0xe0" ] }, { - "depth": 1, - "gas": 2077723, - "gasCost": 8, + "pc": 3160, "op": "JUMP", - "pc": 3092, + "gas": 2078035, + "gasCost": 8, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -3934,20 +3934,20 @@ "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xe0", "0x0", - "0xc15", + "0xc59", "0xe0", - "0xbd0" + "0xc14" ] }, { - "depth": 1, - "gas": 2077715, - "gasCost": 1, + "pc": 3092, "op": "JUMPDEST", - "pc": 3024, + "gas": 2078027, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -3959,19 +3959,19 @@ "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xe0", "0x0", - "0xc15", + "0xc59", "0xe0" ] }, { - "depth": 1, - "gas": 2077714, - "gasCost": 3, + "pc": 3093, "op": "PUSH32", - "pc": 3025, + "gas": 2078026, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -3983,19 +3983,19 @@ "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xe0", "0x0", - "0xc15", + "0xc59", "0xe0" ] }, { - "depth": 1, - "gas": 2077711, - "gasCost": 3, + "pc": 3126, "op": "PUSH1", - "pc": 3058, + "gas": 2078023, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -4007,20 +4007,20 @@ "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xe0", "0x0", - "0xc15", + "0xc59", "0xe0", "0x746f706963000000000000000000000000000000000000000000000000000000" ] }, { - "depth": 1, - "gas": 2077708, - "gasCost": 3, + "pc": 3128, "op": "DUP3", - "pc": 3060, + "gas": 2078020, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -4032,21 +4032,21 @@ "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xe0", "0x0", - "0xc15", + "0xc59", "0xe0", "0x746f706963000000000000000000000000000000000000000000000000000000", "0x0" ] }, { - "depth": 1, - "gas": 2077705, - "gasCost": 3, + "pc": 3129, "op": "ADD", - "pc": 3061, + "gas": 2078017, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -4058,10 +4058,10 @@ "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xe0", "0x0", - "0xc15", + "0xc59", "0xe0", "0x746f706963000000000000000000000000000000000000000000000000000000", "0x0", @@ -4069,11 +4069,11 @@ ] }, { - "depth": 1, - "gas": 2077702, - "gasCost": 6, + "pc": 3130, "op": "MSTORE", - "pc": 3062, + "gas": 2078014, + "gasCost": 6, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -4085,21 +4085,21 @@ "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xe0", "0x0", - "0xc15", + "0xc59", "0xe0", "0x746f706963000000000000000000000000000000000000000000000000000000", "0xe0" ] }, { - "depth": 1, - "gas": 2077696, - "gasCost": 2, + "pc": 3131, "op": "POP", - "pc": 3063, + "gas": 2078008, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -4111,19 +4111,19 @@ "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xe0", "0x0", - "0xc15", + "0xc59", "0xe0" ] }, { - "depth": 1, - "gas": 2077694, - "gasCost": 8, + "pc": 3132, "op": "JUMP", - "pc": 3064, + "gas": 2078006, + "gasCost": 8, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -4135,18 +4135,18 @@ "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xe0", "0x0", - "0xc15" + "0xc59" ] }, { - "depth": 1, - "gas": 2077686, - "gasCost": 1, + "pc": 3161, "op": "JUMPDEST", - "pc": 3093, + "gas": 2077998, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -4158,17 +4158,17 @@ "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xe0", "0x0" ] }, { - "depth": 1, - "gas": 2077685, - "gasCost": 3, + "pc": 3162, "op": "PUSH1", - "pc": 3094, + "gas": 2077997, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -4180,17 +4180,17 @@ "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xe0", "0x0" ] }, { - "depth": 1, - "gas": 2077682, - "gasCost": 3, + "pc": 3164, "op": "DUP3", - "pc": 3096, + "gas": 2077994, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -4202,18 +4202,18 @@ "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xe0", "0x0", "0x20" ] }, { - "depth": 1, - "gas": 2077679, - "gasCost": 3, + "pc": 3165, "op": "ADD", - "pc": 3097, + "gas": 2077991, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -4225,7 +4225,7 @@ "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xe0", "0x0", "0x20", @@ -4233,11 +4233,11 @@ ] }, { - "depth": 1, - "gas": 2077676, - "gasCost": 3, + "pc": 3166, "op": "SWAP1", - "pc": 3098, + "gas": 2077988, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -4249,18 +4249,18 @@ "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xe0", "0x0", "0x100" ] }, { - "depth": 1, - "gas": 2077673, - "gasCost": 2, + "pc": 3167, "op": "POP", - "pc": 3099, + "gas": 2077985, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -4272,18 +4272,18 @@ "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xe0", "0x100", "0x0" ] }, { - "depth": 1, - "gas": 2077671, - "gasCost": 3, + "pc": 3168, "op": "SWAP2", - "pc": 3100, + "gas": 2077983, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -4295,17 +4295,17 @@ "0x3e8", "0x80", "0xc0", - "0xc4a", + "0xc8e", "0xe0", "0x100" ] }, { - "depth": 1, - "gas": 2077668, - "gasCost": 3, + "pc": 3169, "op": "SWAP1", - "pc": 3101, + "gas": 2077980, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -4319,15 +4319,15 @@ "0xc0", "0x100", "0xe0", - "0xc4a" + "0xc8e" ] }, { - "depth": 1, - "gas": 2077665, - "gasCost": 2, + "pc": 3170, "op": "POP", - "pc": 3102, + "gas": 2077977, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -4340,16 +4340,16 @@ "0x80", "0xc0", "0x100", - "0xc4a", + "0xc8e", "0xe0" ] }, { - "depth": 1, - "gas": 2077663, - "gasCost": 8, + "pc": 3171, "op": "JUMP", - "pc": 3103, + "gas": 2077975, + "gasCost": 8, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -4362,15 +4362,15 @@ "0x80", "0xc0", "0x100", - "0xc4a" + "0xc8e" ] }, { - "depth": 1, - "gas": 2077655, - "gasCost": 1, + "pc": 3214, "op": "JUMPDEST", - "pc": 3146, + "gas": 2077967, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -4386,11 +4386,11 @@ ] }, { - "depth": 1, - "gas": 2077654, - "gasCost": 3, + "pc": 3215, "op": "SWAP1", - "pc": 3147, + "gas": 2077966, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -4406,11 +4406,11 @@ ] }, { - "depth": 1, - "gas": 2077651, - "gasCost": 2, + "pc": 3216, "op": "POP", - "pc": 3148, + "gas": 2077963, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -4426,11 +4426,11 @@ ] }, { - "depth": 1, - "gas": 2077649, - "gasCost": 3, + "pc": 3217, "op": "SWAP3", - "pc": 3149, + "gas": 2077961, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -4445,11 +4445,11 @@ ] }, { - "depth": 1, - "gas": 2077646, - "gasCost": 3, + "pc": 3218, "op": "SWAP2", - "pc": 3150, + "gas": 2077958, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -4464,11 +4464,11 @@ ] }, { - "depth": 1, - "gas": 2077643, - "gasCost": 2, + "pc": 3219, "op": "POP", - "pc": 3151, + "gas": 2077955, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -4483,11 +4483,11 @@ ] }, { - "depth": 1, - "gas": 2077641, - "gasCost": 2, + "pc": 3220, "op": "POP", - "pc": 3152, + "gas": 2077953, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -4501,11 +4501,11 @@ ] }, { - "depth": 1, - "gas": 2077639, - "gasCost": 8, + "pc": 3221, "op": "JUMP", - "pc": 3153, + "gas": 2077951, + "gasCost": 8, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -4518,11 +4518,11 @@ ] }, { - "depth": 1, - "gas": 2077631, - "gasCost": 1, - "op": "JUMPDEST", "pc": 832, + "op": "JUMPDEST", + "gas": 2077943, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -4534,11 +4534,11 @@ ] }, { - "depth": 1, - "gas": 2077630, - "gasCost": 3, - "op": "PUSH1", "pc": 833, + "op": "PUSH1", + "gas": 2077942, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -4550,11 +4550,11 @@ ] }, { - "depth": 1, - "gas": 2077627, - "gasCost": 3, - "op": "MLOAD", "pc": 835, + "op": "MLOAD", + "gas": 2077939, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -4567,11 +4567,11 @@ ] }, { - "depth": 1, - "gas": 2077624, - "gasCost": 3, - "op": "DUP1", "pc": 836, + "op": "DUP1", + "gas": 2077936, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -4584,11 +4584,11 @@ ] }, { - "depth": 1, - "gas": 2077621, - "gasCost": 3, - "op": "SWAP2", "pc": 837, + "op": "SWAP2", + "gas": 2077933, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -4602,11 +4602,11 @@ ] }, { - "depth": 1, - "gas": 2077618, - "gasCost": 3, - "op": "SUB", "pc": 838, + "op": "SUB", + "gas": 2077930, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -4620,11 +4620,11 @@ ] }, { - "depth": 1, - "gas": 2077615, - "gasCost": 3, - "op": "SWAP1", "pc": 839, + "op": "SWAP1", + "gas": 2077927, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -4637,11 +4637,11 @@ ] }, { - "depth": 1, - "gas": 2077612, - "gasCost": 2149, - "op": "LOG2", "pc": 840, + "op": "LOG2", + "gas": 2077924, + "gasCost": 2149, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -4654,11 +4654,11 @@ ] }, { - "depth": 1, - "gas": 2075463, - "gasCost": 3, - "op": "PUSH1", "pc": 841, + "op": "PUSH1", + "gas": 2075775, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -4667,11 +4667,11 @@ ] }, { - "depth": 1, - "gas": 2075460, - "gasCost": 3, - "op": "MLOAD", "pc": 843, + "op": "MLOAD", + "gas": 2075772, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -4681,11 +4681,11 @@ ] }, { - "depth": 1, - "gas": 2075457, - "gasCost": 3, - "op": "PUSH3", "pc": 844, + "op": "PUSH3", + "gas": 2075769, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -4695,11 +4695,11 @@ ] }, { - "depth": 1, - "gas": 2075454, - "gasCost": 3, - "op": "SWAP1", "pc": 848, + "op": "SWAP1", + "gas": 2075766, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -4710,11 +4710,11 @@ ] }, { - "depth": 1, - "gas": 2075451, - "gasCost": 3, - "op": "PUSH3", "pc": 849, + "op": "PUSH3", + "gas": 2075763, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -4725,11 +4725,11 @@ ] }, { - "depth": 1, - "gas": 2075448, - "gasCost": 8, - "op": "JUMP", "pc": 853, + "op": "JUMP", + "gas": 2075760, + "gasCost": 8, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -4737,15 +4737,15 @@ "0x0", "0x356", "0x80", - "0x94c" + "0x96e" ] }, { - "depth": 1, - "gas": 2075440, - "gasCost": 1, + "pc": 2414, "op": "JUMPDEST", - "pc": 2380, + "gas": 2075752, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -4756,11 +4756,11 @@ ] }, { - "depth": 1, - "gas": 2075439, - "gasCost": 3, + "pc": 2415, "op": "PUSH2", - "pc": 2381, + "gas": 2075751, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -4771,11 +4771,11 @@ ] }, { - "depth": 1, - "gas": 2075436, - "gasCost": 3, + "pc": 2418, "op": "DUP1", - "pc": 2384, + "gas": 2075748, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -4783,15 +4783,15 @@ "0x0", "0x356", "0x80", - "0xa9f" + "0xae3" ] }, { - "depth": 1, - "gas": 2075433, - "gasCost": 3, + "pc": 2419, "op": "PUSH3", - "pc": 2385, + "gas": 2075745, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -4799,16 +4799,16 @@ "0x0", "0x356", "0x80", - "0xa9f", - "0xa9f" + "0xae3", + "0xae3" ] }, { - "depth": 1, - "gas": 2075430, - "gasCost": 3, + "pc": 2423, "op": "DUP4", - "pc": 2389, + "gas": 2075742, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -4816,17 +4816,17 @@ "0x0", "0x356", "0x80", - "0xa9f", - "0xa9f", - "0x1071" + "0xae3", + "0xae3", + "0x10c6" ] }, { - "depth": 1, - "gas": 2075427, - "gasCost": 516, + "pc": 2424, "op": "CODECOPY", - "pc": 2390, + "gas": 2075739, + "gasCost": 535, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -4834,18 +4834,18 @@ "0x0", "0x356", "0x80", - "0xa9f", - "0xa9f", - "0x1071", + "0xae3", + "0xae3", + "0x10c6", "0x80" ] }, { - "depth": 1, - "gas": 2074911, - "gasCost": 3, + "pc": 2425, "op": "ADD", - "pc": 2391, + "gas": 2075204, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -4853,119 +4853,119 @@ "0x0", "0x356", "0x80", - "0xa9f" + "0xae3" ] }, { - "depth": 1, - "gas": 2074908, - "gasCost": 3, + "pc": 2426, "op": "SWAP1", - "pc": 2392, + "gas": 2075201, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", "0x356", - "0xb1f" + "0xb63" ] }, { - "depth": 1, - "gas": 2074905, - "gasCost": 8, + "pc": 2427, "op": "JUMP", - "pc": 2393, + "gas": 2075198, + "gasCost": 8, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xb1f", + "0xb63", "0x356" ] }, { - "depth": 1, - "gas": 2074897, - "gasCost": 1, - "op": "JUMPDEST", "pc": 854, + "op": "JUMPDEST", + "gas": 2075190, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xb1f" + "0xb63" ] }, { - "depth": 1, - "gas": 2074896, - "gasCost": 3, - "op": "PUSH1", "pc": 855, + "op": "PUSH1", + "gas": 2075189, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xb1f" + "0xb63" ] }, { - "depth": 1, - "gas": 2074893, - "gasCost": 3, - "op": "MLOAD", "pc": 857, + "op": "MLOAD", + "gas": 2075186, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xb1f", + "0xb63", "0x40" ] }, { - "depth": 1, - "gas": 2074890, - "gasCost": 3, - "op": "DUP1", "pc": 858, + "op": "DUP1", + "gas": 2075183, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xb1f", + "0xb63", "0x80" ] }, { - "depth": 1, - "gas": 2074887, - "gasCost": 3, - "op": "SWAP2", "pc": 859, + "op": "SWAP2", + "gas": 2075180, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xb1f", + "0xb63", "0x80", "0x80" ] }, { - "depth": 1, - "gas": 2074884, - "gasCost": 3, - "op": "SUB", "pc": 860, + "op": "SUB", + "gas": 2075177, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -4973,119 +4973,119 @@ "0x0", "0x80", "0x80", - "0xb1f" + "0xb63" ] }, { - "depth": 1, - "gas": 2074881, - "gasCost": 3, - "op": "SWAP1", "pc": 861, + "op": "SWAP1", + "gas": 2075174, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", "0x80", - "0xa9f" + "0xae3" ] }, { - "depth": 1, - "gas": 2074878, - "gasCost": 3, - "op": "PUSH1", "pc": 862, + "op": "PUSH1", + "gas": 2075171, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xa9f", + "0xae3", "0x80" ] }, { - "depth": 1, - "gas": 2074875, - "gasCost": 32000, - "op": "CREATE", "pc": 864, + "op": "CREATE", + "gas": 2075168, + "gasCost": 32176, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0xa9f", + "0xae3", "0x80", "0x0" ] }, { - "depth": 2, - "gas": 2010956, - "gasCost": 3, - "op": "PUSH1", "pc": 0, + "op": "PUSH1", + "gas": 2011071, + "gasCost": 3, + "depth": 2, "stack": [] }, { - "depth": 2, - "gas": 2010953, - "gasCost": 3, - "op": "PUSH1", "pc": 2, + "op": "PUSH1", + "gas": 2011068, + "gasCost": 3, + "depth": 2, "stack": [ "0x80" ] }, { - "depth": 2, - "gas": 2010950, - "gasCost": 12, - "op": "MSTORE", "pc": 4, + "op": "MSTORE", + "gas": 2011065, + "gasCost": 12, + "depth": 2, "stack": [ "0x80", "0x40" ] }, { - "depth": 2, - "gas": 2010938, - "gasCost": 3, - "op": "PUSH1", "pc": 5, + "op": "PUSH1", + "gas": 2011053, + "gasCost": 3, + "depth": 2, "stack": [] }, { - "depth": 2, - "gas": 2010935, - "gasCost": 3, - "op": "PUSH1", "pc": 7, + "op": "PUSH1", + "gas": 2011050, + "gasCost": 3, + "depth": 2, "stack": [ "0x0" ] }, { - "depth": 2, - "gas": 2010932, - "gasCost": 3, - "op": "PUSH1", "pc": 9, + "op": "PUSH1", + "gas": 2011047, + "gasCost": 3, + "depth": 2, "stack": [ "0x0", "0x1" ] }, { - "depth": 2, - "gas": 2010929, - "gasCost": 3, - "op": "PUSH2", "pc": 11, + "op": "PUSH2", + "gas": 2011044, + "gasCost": 3, + "depth": 2, "stack": [ "0x0", "0x1", @@ -5093,11 +5093,11 @@ ] }, { - "depth": 2, - "gas": 2010926, - "gasCost": 10, - "op": "EXP", "pc": 14, + "op": "EXP", + "gas": 2011041, + "gasCost": 10, + "depth": 2, "stack": [ "0x0", "0x1", @@ -5106,11 +5106,11 @@ ] }, { - "depth": 2, - "gas": 2010916, - "gasCost": 3, - "op": "DUP2", "pc": 15, + "op": "DUP2", + "gas": 2011031, + "gasCost": 3, + "depth": 2, "stack": [ "0x0", "0x1", @@ -5118,11 +5118,11 @@ ] }, { - "depth": 2, - "gas": 2010913, - "gasCost": 200, - "op": "SLOAD", "pc": 16, + "op": "SLOAD", + "gas": 2011028, + "gasCost": 2100, + "depth": 2, "stack": [ "0x0", "0x1", @@ -5134,11 +5134,11 @@ } }, { - "depth": 2, - "gas": 2010713, - "gasCost": 3, - "op": "DUP2", "pc": 17, + "op": "DUP2", + "gas": 2008928, + "gasCost": 3, + "depth": 2, "stack": [ "0x0", "0x1", @@ -5147,11 +5147,11 @@ ] }, { - "depth": 2, - "gas": 2010710, - "gasCost": 3, - "op": "PUSH1", "pc": 18, + "op": "PUSH1", + "gas": 2008925, + "gasCost": 3, + "depth": 2, "stack": [ "0x0", "0x1", @@ -5161,11 +5161,11 @@ ] }, { - "depth": 2, - "gas": 2010707, - "gasCost": 5, - "op": "MUL", "pc": 20, + "op": "MUL", + "gas": 2008922, + "gasCost": 5, + "depth": 2, "stack": [ "0x0", "0x1", @@ -5176,11 +5176,11 @@ ] }, { - "depth": 2, - "gas": 2010702, - "gasCost": 3, - "op": "NOT", "pc": 21, + "op": "NOT", + "gas": 2008917, + "gasCost": 3, + "depth": 2, "stack": [ "0x0", "0x1", @@ -5190,11 +5190,11 @@ ] }, { - "depth": 2, - "gas": 2010699, - "gasCost": 3, - "op": "AND", "pc": 22, + "op": "AND", + "gas": 2008914, + "gasCost": 3, + "depth": 2, "stack": [ "0x0", "0x1", @@ -5204,11 +5204,11 @@ ] }, { - "depth": 2, - "gas": 2010696, - "gasCost": 3, - "op": "SWAP1", "pc": 23, + "op": "SWAP1", + "gas": 2008911, + "gasCost": 3, + "depth": 2, "stack": [ "0x0", "0x1", @@ -5217,11 +5217,11 @@ ] }, { - "depth": 2, - "gas": 2010693, - "gasCost": 3, - "op": "DUP4", "pc": 24, + "op": "DUP4", + "gas": 2008908, + "gasCost": 3, + "depth": 2, "stack": [ "0x0", "0x1", @@ -5230,11 +5230,11 @@ ] }, { - "depth": 2, - "gas": 2010690, - "gasCost": 3, - "op": "ISZERO", "pc": 25, + "op": "ISZERO", + "gas": 2008905, + "gasCost": 3, + "depth": 2, "stack": [ "0x0", "0x1", @@ -5244,11 +5244,11 @@ ] }, { - "depth": 2, - "gas": 2010687, - "gasCost": 3, - "op": "ISZERO", "pc": 26, + "op": "ISZERO", + "gas": 2008902, + "gasCost": 3, + "depth": 2, "stack": [ "0x0", "0x1", @@ -5258,11 +5258,11 @@ ] }, { - "depth": 2, - "gas": 2010684, - "gasCost": 5, - "op": "MUL", "pc": 27, + "op": "MUL", + "gas": 2008899, + "gasCost": 5, + "depth": 2, "stack": [ "0x0", "0x1", @@ -5272,11 +5272,11 @@ ] }, { - "depth": 2, - "gas": 2010679, - "gasCost": 3, - "op": "OR", "pc": 28, + "op": "OR", + "gas": 2008894, + "gasCost": 3, + "depth": 2, "stack": [ "0x0", "0x1", @@ -5285,11 +5285,11 @@ ] }, { - "depth": 2, - "gas": 2010676, - "gasCost": 3, - "op": "SWAP1", "pc": 29, + "op": "SWAP1", + "gas": 2008891, + "gasCost": 3, + "depth": 2, "stack": [ "0x0", "0x1", @@ -5297,11 +5297,11 @@ ] }, { - "depth": 2, - "gas": 2010673, - "gasCost": 200, - "op": "SSTORE", "pc": 30, + "op": "SSTORE", + "gas": 2008888, + "gasCost": 100, + "depth": 2, "stack": [ "0x0", "0x0", @@ -5312,61 +5312,61 @@ } }, { - "depth": 2, - "gas": 2010473, - "gasCost": 2, - "op": "POP", "pc": 31, + "op": "POP", + "gas": 2008788, + "gasCost": 2, + "depth": 2, "stack": [ "0x0" ] }, { - "depth": 2, - "gas": 2010471, - "gasCost": 2, - "op": "CALLVALUE", "pc": 32, + "op": "CALLVALUE", + "gas": 2008786, + "gasCost": 2, + "depth": 2, "stack": [] }, { - "depth": 2, - "gas": 2010469, - "gasCost": 3, - "op": "DUP1", "pc": 33, + "op": "DUP1", + "gas": 2008784, + "gasCost": 3, + "depth": 2, "stack": [ "0x0" ] }, { - "depth": 2, - "gas": 2010466, - "gasCost": 3, - "op": "ISZERO", "pc": 34, + "op": "ISZERO", + "gas": 2008781, + "gasCost": 3, + "depth": 2, "stack": [ "0x0", "0x0" ] }, { - "depth": 2, - "gas": 2010463, - "gasCost": 3, - "op": "PUSH3", "pc": 35, + "op": "PUSH3", + "gas": 2008778, + "gasCost": 3, + "depth": 2, "stack": [ "0x0", "0x1" ] }, { - "depth": 2, - "gas": 2010460, - "gasCost": 10, - "op": "JUMPI", "pc": 39, + "op": "JUMPI", + "gas": 2008775, + "gasCost": 10, + "depth": 2, "stack": [ "0x0", "0x1", @@ -5374,60 +5374,60 @@ ] }, { - "depth": 2, - "gas": 2010450, - "gasCost": 1, - "op": "JUMPDEST", "pc": 44, + "op": "JUMPDEST", + "gas": 2008765, + "gasCost": 1, + "depth": 2, "stack": [ "0x0" ] }, { - "depth": 2, - "gas": 2010449, - "gasCost": 2, - "op": "POP", "pc": 45, + "op": "POP", + "gas": 2008764, + "gasCost": 2, + "depth": 2, "stack": [ "0x0" ] }, { - "depth": 2, - "gas": 2010447, - "gasCost": 3, - "op": "PUSH1", "pc": 46, + "op": "PUSH1", + "gas": 2008762, + "gasCost": 3, + "depth": 2, "stack": [] }, { - "depth": 2, - "gas": 2010444, - "gasCost": 3, - "op": "PUSH1", "pc": 48, + "op": "PUSH1", + "gas": 2008759, + "gasCost": 3, + "depth": 2, "stack": [ "0x1" ] }, { - "depth": 2, - "gas": 2010441, - "gasCost": 3, - "op": "SWAP1", "pc": 50, + "op": "SWAP1", + "gas": 2008756, + "gasCost": 3, + "depth": 2, "stack": [ "0x1", "0x0" ] }, { - "depth": 2, - "gas": 2010438, - "gasCost": 200, - "op": "SLOAD", "pc": 51, + "op": "SLOAD", + "gas": 2008753, + "gasCost": 100, + "depth": 2, "stack": [ "0x0", "0x1" @@ -5437,33 +5437,33 @@ } }, { - "depth": 2, - "gas": 2010238, - "gasCost": 3, - "op": "SWAP1", "pc": 52, + "op": "SWAP1", + "gas": 2008653, + "gasCost": 3, + "depth": 2, "stack": [ "0x0", "0x0" ] }, { - "depth": 2, - "gas": 2010235, - "gasCost": 3, - "op": "PUSH2", "pc": 53, + "op": "PUSH2", + "gas": 2008650, + "gasCost": 3, + "depth": 2, "stack": [ "0x0", "0x0" ] }, { - "depth": 2, - "gas": 2010232, - "gasCost": 10, - "op": "EXP", "pc": 56, + "op": "EXP", + "gas": 2008647, + "gasCost": 10, + "depth": 2, "stack": [ "0x0", "0x0", @@ -5471,122 +5471,122 @@ ] }, { - "depth": 2, - "gas": 2010222, - "gasCost": 3, - "op": "SWAP1", "pc": 57, + "op": "SWAP1", + "gas": 2008637, + "gasCost": 3, + "depth": 2, "stack": [ "0x0", "0x1" ] }, { - "depth": 2, - "gas": 2010219, - "gasCost": 5, - "op": "DIV", "pc": 58, + "op": "DIV", + "gas": 2008634, + "gasCost": 5, + "depth": 2, "stack": [ "0x1", "0x0" ] }, { - "depth": 2, - "gas": 2010214, - "gasCost": 3, - "op": "PUSH1", "pc": 59, + "op": "PUSH1", + "gas": 2008629, + "gasCost": 3, + "depth": 2, "stack": [ "0x0" ] }, { - "depth": 2, - "gas": 2010211, - "gasCost": 3, - "op": "AND", "pc": 61, + "op": "AND", + "gas": 2008626, + "gasCost": 3, + "depth": 2, "stack": [ "0x0", "0xff" ] }, { - "depth": 2, - "gas": 2010208, - "gasCost": 3, - "op": "ISZERO", "pc": 62, + "op": "ISZERO", + "gas": 2008623, + "gasCost": 3, + "depth": 2, "stack": [ "0x0" ] }, { - "depth": 2, - "gas": 2010205, - "gasCost": 3, - "op": "PUSH3", "pc": 63, + "op": "PUSH3", + "gas": 2008620, + "gasCost": 3, + "depth": 2, "stack": [ "0x1" ] }, { - "depth": 2, - "gas": 2010202, - "gasCost": 10, - "op": "JUMPI", "pc": 67, + "op": "JUMPI", + "gas": 2008617, + "gasCost": 10, + "depth": 2, "stack": [ "0x1", "0x80" ] }, { - "depth": 2, - "gas": 2010192, - "gasCost": 1, - "op": "JUMPDEST", "pc": 128, + "op": "JUMPDEST", + "gas": 2008607, + "gasCost": 1, + "depth": 2, "stack": [] }, { - "depth": 2, - "gas": 2010191, - "gasCost": 3, - "op": "PUSH1", "pc": 129, + "op": "PUSH1", + "gas": 2008606, + "gasCost": 3, + "depth": 2, "stack": [] }, { - "depth": 2, - "gas": 2010188, - "gasCost": 3, - "op": "DUP1", "pc": 131, + "op": "DUP1", + "gas": 2008603, + "gasCost": 3, + "depth": 2, "stack": [ "0x1" ] }, { - "depth": 2, - "gas": 2010185, - "gasCost": 3, - "op": "PUSH1", "pc": 132, + "op": "PUSH1", + "gas": 2008600, + "gasCost": 3, + "depth": 2, "stack": [ "0x1", "0x1" ] }, { - "depth": 2, - "gas": 2010182, - "gasCost": 3, - "op": "PUSH2", "pc": 134, + "op": "PUSH2", + "gas": 2008597, + "gasCost": 3, + "depth": 2, "stack": [ "0x1", "0x1", @@ -5594,11 +5594,11 @@ ] }, { - "depth": 2, - "gas": 2010179, - "gasCost": 10, - "op": "EXP", "pc": 137, + "op": "EXP", + "gas": 2008594, + "gasCost": 10, + "depth": 2, "stack": [ "0x1", "0x1", @@ -5607,11 +5607,11 @@ ] }, { - "depth": 2, - "gas": 2010169, - "gasCost": 3, - "op": "DUP2", "pc": 138, + "op": "DUP2", + "gas": 2008584, + "gasCost": 3, + "depth": 2, "stack": [ "0x1", "0x1", @@ -5619,11 +5619,11 @@ ] }, { - "depth": 2, - "gas": 2010166, - "gasCost": 200, - "op": "SLOAD", "pc": 139, + "op": "SLOAD", + "gas": 2008581, + "gasCost": 100, + "depth": 2, "stack": [ "0x1", "0x1", @@ -5635,11 +5635,11 @@ } }, { - "depth": 2, - "gas": 2009966, - "gasCost": 3, - "op": "DUP2", "pc": 140, + "op": "DUP2", + "gas": 2008481, + "gasCost": 3, + "depth": 2, "stack": [ "0x1", "0x1", @@ -5648,11 +5648,11 @@ ] }, { - "depth": 2, - "gas": 2009963, - "gasCost": 3, - "op": "PUSH1", "pc": 141, + "op": "PUSH1", + "gas": 2008478, + "gasCost": 3, + "depth": 2, "stack": [ "0x1", "0x1", @@ -5662,11 +5662,11 @@ ] }, { - "depth": 2, - "gas": 2009960, - "gasCost": 5, - "op": "MUL", "pc": 143, + "op": "MUL", + "gas": 2008475, + "gasCost": 5, + "depth": 2, "stack": [ "0x1", "0x1", @@ -5677,11 +5677,11 @@ ] }, { - "depth": 2, - "gas": 2009955, - "gasCost": 3, - "op": "NOT", "pc": 144, + "op": "NOT", + "gas": 2008470, + "gasCost": 3, + "depth": 2, "stack": [ "0x1", "0x1", @@ -5691,11 +5691,11 @@ ] }, { - "depth": 2, - "gas": 2009952, - "gasCost": 3, - "op": "AND", "pc": 145, + "op": "AND", + "gas": 2008467, + "gasCost": 3, + "depth": 2, "stack": [ "0x1", "0x1", @@ -5705,11 +5705,11 @@ ] }, { - "depth": 2, - "gas": 2009949, - "gasCost": 3, - "op": "SWAP1", "pc": 146, + "op": "SWAP1", + "gas": 2008464, + "gasCost": 3, + "depth": 2, "stack": [ "0x1", "0x1", @@ -5718,11 +5718,11 @@ ] }, { - "depth": 2, - "gas": 2009946, - "gasCost": 3, - "op": "DUP4", "pc": 147, + "op": "DUP4", + "gas": 2008461, + "gasCost": 3, + "depth": 2, "stack": [ "0x1", "0x1", @@ -5731,11 +5731,11 @@ ] }, { - "depth": 2, - "gas": 2009943, - "gasCost": 3, - "op": "ISZERO", "pc": 148, + "op": "ISZERO", + "gas": 2008458, + "gasCost": 3, + "depth": 2, "stack": [ "0x1", "0x1", @@ -5745,11 +5745,11 @@ ] }, { - "depth": 2, - "gas": 2009940, - "gasCost": 3, - "op": "ISZERO", "pc": 149, + "op": "ISZERO", + "gas": 2008455, + "gasCost": 3, + "depth": 2, "stack": [ "0x1", "0x1", @@ -5759,11 +5759,11 @@ ] }, { - "depth": 2, - "gas": 2009937, - "gasCost": 5, - "op": "MUL", "pc": 150, + "op": "MUL", + "gas": 2008452, + "gasCost": 5, + "depth": 2, "stack": [ "0x1", "0x1", @@ -5773,11 +5773,11 @@ ] }, { - "depth": 2, - "gas": 2009932, - "gasCost": 3, - "op": "OR", "pc": 151, + "op": "OR", + "gas": 2008447, + "gasCost": 3, + "depth": 2, "stack": [ "0x1", "0x1", @@ -5786,11 +5786,11 @@ ] }, { - "depth": 2, - "gas": 2009929, - "gasCost": 3, - "op": "SWAP1", "pc": 152, + "op": "SWAP1", + "gas": 2008444, + "gasCost": 3, + "depth": 2, "stack": [ "0x1", "0x1", @@ -5798,11 +5798,11 @@ ] }, { - "depth": 2, - "gas": 2009926, - "gasCost": 20000, - "op": "SSTORE", "pc": 153, + "op": "SSTORE", + "gas": 2008441, + "gasCost": 20000, + "depth": 2, "stack": [ "0x1", "0x1", @@ -5813,50 +5813,50 @@ } }, { - "depth": 2, - "gas": 1989926, - "gasCost": 2, - "op": "POP", "pc": 154, + "op": "POP", + "gas": 1988441, + "gasCost": 2, + "depth": 2, "stack": [ "0x1" ] }, { - "depth": 2, - "gas": 1989924, - "gasCost": 3, - "op": "PUSH3", "pc": 155, + "op": "PUSH3", + "gas": 1988439, + "gasCost": 3, + "depth": 2, "stack": [] }, { - "depth": 2, - "gas": 1989921, - "gasCost": 3, - "op": "PUSH17", "pc": 159, + "op": "PUSH17", + "gas": 1988436, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc" ] }, { - "depth": 2, - "gas": 1989918, - "gasCost": 3, - "op": "PUSH3", "pc": 177, + "op": "PUSH3", + "gas": 1988433, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000" ] }, { - "depth": 2, - "gas": 1989915, - "gasCost": 3, - "op": "PUSH1", "pc": 181, + "op": "PUSH1", + "gas": 1988430, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -5864,11 +5864,11 @@ ] }, { - "depth": 2, - "gas": 1989912, - "gasCost": 3, - "op": "SHL", "pc": 183, + "op": "SHL", + "gas": 1988427, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -5877,11 +5877,11 @@ ] }, { - "depth": 2, - "gas": 1989909, - "gasCost": 3, - "op": "PUSH1", "pc": 184, + "op": "PUSH1", + "gas": 1988424, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -5889,11 +5889,11 @@ ] }, { - "depth": 2, - "gas": 1989906, - "gasCost": 3, - "op": "SHR", "pc": 186, + "op": "SHR", + "gas": 1988421, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -5902,11 +5902,11 @@ ] }, { - "depth": 2, - "gas": 1989903, - "gasCost": 8, - "op": "JUMP", "pc": 187, + "op": "JUMP", + "gas": 1988418, + "gasCost": 8, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -5914,33 +5914,33 @@ ] }, { - "depth": 2, - "gas": 1989895, - "gasCost": 1, - "op": "JUMPDEST", "pc": 195, + "op": "JUMPDEST", + "gas": 1988410, + "gasCost": 1, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000" ] }, { - "depth": 2, - "gas": 1989894, - "gasCost": 3, - "op": "PUSH1", "pc": 196, + "op": "PUSH1", + "gas": 1988409, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000" ] }, { - "depth": 2, - "gas": 1989891, - "gasCost": 2, - "op": "CALLER", "pc": 198, + "op": "CALLER", + "gas": 1988406, + "gasCost": 2, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -5948,11 +5948,11 @@ ] }, { - "depth": 2, - "gas": 1989889, - "gasCost": 3, - "op": "PUSH20", "pc": 199, + "op": "PUSH20", + "gas": 1988404, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -5961,11 +5961,11 @@ ] }, { - "depth": 2, - "gas": 1989886, - "gasCost": 3, - "op": "AND", "pc": 220, + "op": "AND", + "gas": 1988401, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -5975,11 +5975,11 @@ ] }, { - "depth": 2, - "gas": 1989883, - "gasCost": 3, - "op": "PUSH32", "pc": 221, + "op": "PUSH32", + "gas": 1988398, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -5988,11 +5988,11 @@ ] }, { - "depth": 2, - "gas": 1989880, - "gasCost": 3, - "op": "DUP4", "pc": 254, + "op": "DUP4", + "gas": 1988395, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6002,11 +6002,11 @@ ] }, { - "depth": 2, - "gas": 1989877, - "gasCost": 3, - "op": "PUSH1", "pc": 255, + "op": "PUSH1", + "gas": 1988392, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6017,11 +6017,11 @@ ] }, { - "depth": 2, - "gas": 1989874, - "gasCost": 3, - "op": "MLOAD", "pc": 257, + "op": "MLOAD", + "gas": 1988389, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6033,11 +6033,11 @@ ] }, { - "depth": 2, - "gas": 1989871, - "gasCost": 3, - "op": "PUSH3", "pc": 258, + "op": "PUSH3", + "gas": 1988386, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6049,11 +6049,11 @@ ] }, { - "depth": 2, - "gas": 1989868, - "gasCost": 3, - "op": "SWAP2", "pc": 262, + "op": "SWAP2", + "gas": 1988383, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6066,11 +6066,11 @@ ] }, { - "depth": 2, - "gas": 1989865, - "gasCost": 3, - "op": "SWAP1", "pc": 263, + "op": "SWAP1", + "gas": 1988380, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6083,11 +6083,11 @@ ] }, { - "depth": 2, - "gas": 1989862, - "gasCost": 3, - "op": "PUSH3", "pc": 264, + "op": "PUSH3", + "gas": 1988377, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6100,11 +6100,11 @@ ] }, { - "depth": 2, - "gas": 1989859, - "gasCost": 8, - "op": "JUMP", "pc": 268, + "op": "JUMP", + "gas": 1988374, + "gasCost": 8, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6118,11 +6118,11 @@ ] }, { - "depth": 2, - "gas": 1989851, - "gasCost": 1, - "op": "JUMPDEST", "pc": 834, + "op": "JUMPDEST", + "gas": 1988366, + "gasCost": 1, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6135,11 +6135,11 @@ ] }, { - "depth": 2, - "gas": 1989850, - "gasCost": 3, - "op": "PUSH1", "pc": 835, + "op": "PUSH1", + "gas": 1988365, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6152,11 +6152,11 @@ ] }, { - "depth": 2, - "gas": 1989847, - "gasCost": 3, - "op": "PUSH1", "pc": 837, + "op": "PUSH1", + "gas": 1988362, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6170,11 +6170,11 @@ ] }, { - "depth": 2, - "gas": 1989844, - "gasCost": 3, - "op": "DUP3", "pc": 839, + "op": "DUP3", + "gas": 1988359, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6189,11 +6189,11 @@ ] }, { - "depth": 2, - "gas": 1989841, - "gasCost": 3, - "op": "ADD", "pc": 840, + "op": "ADD", + "gas": 1988356, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6209,11 +6209,11 @@ ] }, { - "depth": 2, - "gas": 1989838, - "gasCost": 3, - "op": "SWAP1", "pc": 841, + "op": "SWAP1", + "gas": 1988353, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6228,11 +6228,11 @@ ] }, { - "depth": 2, - "gas": 1989835, - "gasCost": 2, - "op": "POP", "pc": 842, + "op": "POP", + "gas": 1988350, + "gasCost": 2, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6247,11 +6247,11 @@ ] }, { - "depth": 2, - "gas": 1989833, - "gasCost": 3, - "op": "PUSH3", "pc": 843, + "op": "PUSH3", + "gas": 1988348, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6265,11 +6265,11 @@ ] }, { - "depth": 2, - "gas": 1989830, - "gasCost": 3, - "op": "PUSH1", "pc": 847, + "op": "PUSH1", + "gas": 1988345, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6284,11 +6284,11 @@ ] }, { - "depth": 2, - "gas": 1989827, - "gasCost": 3, - "op": "DUP4", "pc": 849, + "op": "DUP4", + "gas": 1988342, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6304,11 +6304,11 @@ ] }, { - "depth": 2, - "gas": 1989824, - "gasCost": 3, - "op": "ADD", "pc": 850, + "op": "ADD", + "gas": 1988339, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6325,11 +6325,11 @@ ] }, { - "depth": 2, - "gas": 1989821, - "gasCost": 3, - "op": "DUP5", "pc": 851, + "op": "DUP5", + "gas": 1988336, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6345,11 +6345,11 @@ ] }, { - "depth": 2, - "gas": 1989818, - "gasCost": 3, - "op": "PUSH3", "pc": 852, + "op": "PUSH3", + "gas": 1988333, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6366,11 +6366,11 @@ ] }, { - "depth": 2, - "gas": 1989815, - "gasCost": 8, - "op": "JUMP", "pc": 856, + "op": "JUMP", + "gas": 1988330, + "gasCost": 8, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6388,11 +6388,11 @@ ] }, { - "depth": 2, - "gas": 1989807, - "gasCost": 1, - "op": "JUMPDEST", "pc": 737, + "op": "JUMPDEST", + "gas": 1988322, + "gasCost": 1, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6409,11 +6409,11 @@ ] }, { - "depth": 2, - "gas": 1989806, - "gasCost": 3, - "op": "PUSH3", "pc": 738, + "op": "PUSH3", + "gas": 1988321, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6430,11 +6430,11 @@ ] }, { - "depth": 2, - "gas": 1989803, - "gasCost": 3, - "op": "DUP2", "pc": 742, + "op": "DUP2", + "gas": 1988318, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6452,11 +6452,11 @@ ] }, { - "depth": 2, - "gas": 1989800, - "gasCost": 3, - "op": "PUSH3", "pc": 743, + "op": "PUSH3", + "gas": 1988315, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6475,11 +6475,11 @@ ] }, { - "depth": 2, - "gas": 1989797, - "gasCost": 8, - "op": "JUMP", "pc": 747, + "op": "JUMP", + "gas": 1988312, + "gasCost": 8, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6499,11 +6499,11 @@ ] }, { - "depth": 2, - "gas": 1989789, - "gasCost": 1, - "op": "JUMPDEST", "pc": 727, + "op": "JUMPDEST", + "gas": 1988304, + "gasCost": 1, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6522,11 +6522,11 @@ ] }, { - "depth": 2, - "gas": 1989788, - "gasCost": 3, - "op": "PUSH1", "pc": 728, + "op": "PUSH1", + "gas": 1988303, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6545,11 +6545,11 @@ ] }, { - "depth": 2, - "gas": 1989785, - "gasCost": 3, - "op": "DUP2", "pc": 730, + "op": "DUP2", + "gas": 1988300, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6569,11 +6569,11 @@ ] }, { - "depth": 2, - "gas": 1989782, - "gasCost": 3, - "op": "SWAP1", "pc": 731, + "op": "SWAP1", + "gas": 1988297, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6594,11 +6594,11 @@ ] }, { - "depth": 2, - "gas": 1989779, - "gasCost": 2, - "op": "POP", "pc": 732, + "op": "POP", + "gas": 1988294, + "gasCost": 2, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6619,11 +6619,11 @@ ] }, { - "depth": 2, - "gas": 1989777, - "gasCost": 3, - "op": "SWAP2", "pc": 733, + "op": "SWAP2", + "gas": 1988292, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6643,11 +6643,11 @@ ] }, { - "depth": 2, - "gas": 1989774, - "gasCost": 3, - "op": "SWAP1", "pc": 734, + "op": "SWAP1", + "gas": 1988289, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6667,11 +6667,11 @@ ] }, { - "depth": 2, - "gas": 1989771, - "gasCost": 2, - "op": "POP", "pc": 735, + "op": "POP", + "gas": 1988286, + "gasCost": 2, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6691,11 +6691,11 @@ ] }, { - "depth": 2, - "gas": 1989769, - "gasCost": 8, - "op": "JUMP", "pc": 736, + "op": "JUMP", + "gas": 1988284, + "gasCost": 8, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6714,11 +6714,11 @@ ] }, { - "depth": 2, - "gas": 1989761, - "gasCost": 1, - "op": "JUMPDEST", "pc": 748, + "op": "JUMPDEST", + "gas": 1988276, + "gasCost": 1, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6736,11 +6736,11 @@ ] }, { - "depth": 2, - "gas": 1989760, - "gasCost": 3, - "op": "DUP3", "pc": 749, + "op": "DUP3", + "gas": 1988275, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6758,11 +6758,11 @@ ] }, { - "depth": 2, - "gas": 1989757, - "gasCost": 9, - "op": "MSTORE", "pc": 750, + "op": "MSTORE", + "gas": 1988272, + "gasCost": 9, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6781,11 +6781,11 @@ ] }, { - "depth": 2, - "gas": 1989748, - "gasCost": 2, - "op": "POP", "pc": 751, + "op": "POP", + "gas": 1988263, + "gasCost": 2, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6802,11 +6802,11 @@ ] }, { - "depth": 2, - "gas": 1989746, - "gasCost": 2, - "op": "POP", "pc": 752, + "op": "POP", + "gas": 1988261, + "gasCost": 2, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6822,11 +6822,11 @@ ] }, { - "depth": 2, - "gas": 1989744, - "gasCost": 8, - "op": "JUMP", "pc": 753, + "op": "JUMP", + "gas": 1988259, + "gasCost": 8, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6841,11 +6841,11 @@ ] }, { - "depth": 2, - "gas": 1989736, - "gasCost": 1, - "op": "JUMPDEST", "pc": 857, + "op": "JUMPDEST", + "gas": 1988251, + "gasCost": 1, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6859,11 +6859,11 @@ ] }, { - "depth": 2, - "gas": 1989735, - "gasCost": 3, - "op": "DUP2", "pc": 858, + "op": "DUP2", + "gas": 1988250, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6877,11 +6877,11 @@ ] }, { - "depth": 2, - "gas": 1989732, - "gasCost": 3, - "op": "DUP2", "pc": 859, + "op": "DUP2", + "gas": 1988247, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6896,11 +6896,11 @@ ] }, { - "depth": 2, - "gas": 1989729, - "gasCost": 3, - "op": "SUB", "pc": 860, + "op": "SUB", + "gas": 1988244, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6916,11 +6916,11 @@ ] }, { - "depth": 2, - "gas": 1989726, - "gasCost": 3, - "op": "PUSH1", "pc": 861, + "op": "PUSH1", + "gas": 1988241, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6935,11 +6935,11 @@ ] }, { - "depth": 2, - "gas": 1989723, - "gasCost": 3, - "op": "DUP4", "pc": 863, + "op": "DUP4", + "gas": 1988238, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6955,11 +6955,11 @@ ] }, { - "depth": 2, - "gas": 1989720, - "gasCost": 3, - "op": "ADD", "pc": 864, + "op": "ADD", + "gas": 1988235, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6976,11 +6976,11 @@ ] }, { - "depth": 2, - "gas": 1989717, - "gasCost": 6, - "op": "MSTORE", "pc": 865, + "op": "MSTORE", + "gas": 1988232, + "gasCost": 6, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -6996,11 +6996,11 @@ ] }, { - "depth": 2, - "gas": 1989711, - "gasCost": 3, - "op": "PUSH3", "pc": 866, + "op": "PUSH3", + "gas": 1988226, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7014,11 +7014,11 @@ ] }, { - "depth": 2, - "gas": 1989708, - "gasCost": 3, - "op": "DUP2", "pc": 870, + "op": "DUP2", + "gas": 1988223, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7033,11 +7033,11 @@ ] }, { - "depth": 2, - "gas": 1989705, - "gasCost": 3, - "op": "PUSH3", "pc": 871, + "op": "PUSH3", + "gas": 1988220, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7053,11 +7053,11 @@ ] }, { - "depth": 2, - "gas": 1989702, - "gasCost": 8, - "op": "JUMP", "pc": 875, + "op": "JUMP", + "gas": 1988217, + "gasCost": 8, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7074,11 +7074,11 @@ ] }, { - "depth": 2, - "gas": 1989694, - "gasCost": 1, - "op": "JUMPDEST", "pc": 795, + "op": "JUMPDEST", + "gas": 1988209, + "gasCost": 1, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7094,11 +7094,11 @@ ] }, { - "depth": 2, - "gas": 1989693, - "gasCost": 3, - "op": "PUSH1", "pc": 796, + "op": "PUSH1", + "gas": 1988208, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7114,11 +7114,11 @@ ] }, { - "depth": 2, - "gas": 1989690, - "gasCost": 3, - "op": "PUSH3", "pc": 798, + "op": "PUSH3", + "gas": 1988205, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7135,11 +7135,11 @@ ] }, { - "depth": 2, - "gas": 1989687, - "gasCost": 3, - "op": "PUSH1", "pc": 802, + "op": "PUSH1", + "gas": 1988202, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7157,11 +7157,11 @@ ] }, { - "depth": 2, - "gas": 1989684, - "gasCost": 3, - "op": "DUP4", "pc": 804, + "op": "DUP4", + "gas": 1988199, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7180,11 +7180,11 @@ ] }, { - "depth": 2, - "gas": 1989681, - "gasCost": 3, - "op": "PUSH3", "pc": 805, + "op": "PUSH3", + "gas": 1988196, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7204,11 +7204,11 @@ ] }, { - "depth": 2, - "gas": 1989678, - "gasCost": 8, - "op": "JUMP", "pc": 809, + "op": "JUMP", + "gas": 1988193, + "gasCost": 8, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7229,11 +7229,11 @@ ] }, { - "depth": 2, - "gas": 1989670, - "gasCost": 1, - "op": "JUMPDEST", "pc": 558, + "op": "JUMPDEST", + "gas": 1988185, + "gasCost": 1, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7253,11 +7253,11 @@ ] }, { - "depth": 2, - "gas": 1989669, - "gasCost": 3, - "op": "PUSH1", "pc": 559, + "op": "PUSH1", + "gas": 1988184, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7277,11 +7277,11 @@ ] }, { - "depth": 2, - "gas": 1989666, - "gasCost": 3, - "op": "DUP3", "pc": 561, + "op": "DUP3", + "gas": 1988181, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7302,11 +7302,11 @@ ] }, { - "depth": 2, - "gas": 1989663, - "gasCost": 3, - "op": "DUP3", "pc": 562, + "op": "DUP3", + "gas": 1988178, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7328,11 +7328,11 @@ ] }, { - "depth": 2, - "gas": 1989660, - "gasCost": 6, - "op": "MSTORE", "pc": 563, + "op": "MSTORE", + "gas": 1988175, + "gasCost": 6, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7355,11 +7355,11 @@ ] }, { - "depth": 2, - "gas": 1989654, - "gasCost": 3, - "op": "PUSH1", "pc": 564, + "op": "PUSH1", + "gas": 1988169, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7380,11 +7380,11 @@ ] }, { - "depth": 2, - "gas": 1989651, - "gasCost": 3, - "op": "DUP3", "pc": 566, + "op": "DUP3", + "gas": 1988166, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7406,11 +7406,11 @@ ] }, { - "depth": 2, - "gas": 1989648, - "gasCost": 3, - "op": "ADD", "pc": 567, + "op": "ADD", + "gas": 1988163, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7433,11 +7433,11 @@ ] }, { - "depth": 2, - "gas": 1989645, - "gasCost": 3, - "op": "SWAP1", "pc": 568, + "op": "SWAP1", + "gas": 1988160, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7459,11 +7459,11 @@ ] }, { - "depth": 2, - "gas": 1989642, - "gasCost": 2, - "op": "POP", "pc": 569, + "op": "POP", + "gas": 1988157, + "gasCost": 2, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7485,11 +7485,11 @@ ] }, { - "depth": 2, - "gas": 1989640, - "gasCost": 3, - "op": "SWAP3", "pc": 570, + "op": "SWAP3", + "gas": 1988155, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7510,11 +7510,11 @@ ] }, { - "depth": 2, - "gas": 1989637, - "gasCost": 3, - "op": "SWAP2", "pc": 571, + "op": "SWAP2", + "gas": 1988152, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7535,11 +7535,11 @@ ] }, { - "depth": 2, - "gas": 1989634, - "gasCost": 2, - "op": "POP", "pc": 572, + "op": "POP", + "gas": 1988149, + "gasCost": 2, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7560,11 +7560,11 @@ ] }, { - "depth": 2, - "gas": 1989632, - "gasCost": 2, - "op": "POP", "pc": 573, + "op": "POP", + "gas": 1988147, + "gasCost": 2, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7584,11 +7584,11 @@ ] }, { - "depth": 2, - "gas": 1989630, - "gasCost": 8, - "op": "JUMP", "pc": 574, + "op": "JUMP", + "gas": 1988145, + "gasCost": 8, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7607,11 +7607,11 @@ ] }, { - "depth": 2, - "gas": 1989622, - "gasCost": 1, - "op": "JUMPDEST", "pc": 810, + "op": "JUMPDEST", + "gas": 1988137, + "gasCost": 1, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7629,11 +7629,11 @@ ] }, { - "depth": 2, - "gas": 1989621, - "gasCost": 3, - "op": "SWAP2", "pc": 811, + "op": "SWAP2", + "gas": 1988136, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7651,11 +7651,11 @@ ] }, { - "depth": 2, - "gas": 1989618, - "gasCost": 2, - "op": "POP", "pc": 812, + "op": "POP", + "gas": 1988133, + "gasCost": 2, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7673,11 +7673,11 @@ ] }, { - "depth": 2, - "gas": 1989616, - "gasCost": 3, - "op": "PUSH3", "pc": 813, + "op": "PUSH3", + "gas": 1988131, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7694,11 +7694,11 @@ ] }, { - "depth": 2, - "gas": 1989613, - "gasCost": 3, - "op": "DUP3", "pc": 817, + "op": "DUP3", + "gas": 1988128, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7716,11 +7716,11 @@ ] }, { - "depth": 2, - "gas": 1989610, - "gasCost": 3, - "op": "PUSH3", "pc": 818, + "op": "PUSH3", + "gas": 1988125, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7739,11 +7739,11 @@ ] }, { - "depth": 2, - "gas": 1989607, - "gasCost": 8, - "op": "JUMP", "pc": 822, + "op": "JUMP", + "gas": 1988122, + "gasCost": 8, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7763,11 +7763,11 @@ ] }, { - "depth": 2, - "gas": 1989599, - "gasCost": 1, - "op": "JUMPDEST", "pc": 754, + "op": "JUMPDEST", + "gas": 1988114, + "gasCost": 1, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7786,11 +7786,11 @@ ] }, { - "depth": 2, - "gas": 1989598, - "gasCost": 3, - "op": "PUSH32", "pc": 755, + "op": "PUSH32", + "gas": 1988113, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7809,11 +7809,11 @@ ] }, { - "depth": 2, - "gas": 1989595, - "gasCost": 3, - "op": "PUSH1", "pc": 788, + "op": "PUSH1", + "gas": 1988110, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7833,11 +7833,11 @@ ] }, { - "depth": 2, - "gas": 1989592, - "gasCost": 3, - "op": "DUP3", "pc": 790, + "op": "DUP3", + "gas": 1988107, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7858,11 +7858,11 @@ ] }, { - "depth": 2, - "gas": 1989589, - "gasCost": 3, - "op": "ADD", "pc": 791, + "op": "ADD", + "gas": 1988104, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7884,11 +7884,11 @@ ] }, { - "depth": 2, - "gas": 1989586, - "gasCost": 6, - "op": "MSTORE", "pc": 792, + "op": "MSTORE", + "gas": 1988101, + "gasCost": 6, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7909,11 +7909,11 @@ ] }, { - "depth": 2, - "gas": 1989580, - "gasCost": 2, - "op": "POP", "pc": 793, + "op": "POP", + "gas": 1988095, + "gasCost": 2, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7932,11 +7932,11 @@ ] }, { - "depth": 2, - "gas": 1989578, - "gasCost": 8, - "op": "JUMP", "pc": 794, + "op": "JUMP", + "gas": 1988093, + "gasCost": 8, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7954,11 +7954,11 @@ ] }, { - "depth": 2, - "gas": 1989570, - "gasCost": 1, - "op": "JUMPDEST", "pc": 823, + "op": "JUMPDEST", + "gas": 1988085, + "gasCost": 1, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7975,11 +7975,11 @@ ] }, { - "depth": 2, - "gas": 1989569, - "gasCost": 3, - "op": "PUSH1", "pc": 824, + "op": "PUSH1", + "gas": 1988084, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -7996,11 +7996,11 @@ ] }, { - "depth": 2, - "gas": 1989566, - "gasCost": 3, - "op": "DUP3", "pc": 826, + "op": "DUP3", + "gas": 1988081, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8018,11 +8018,11 @@ ] }, { - "depth": 2, - "gas": 1989563, - "gasCost": 3, - "op": "ADD", "pc": 827, + "op": "ADD", + "gas": 1988078, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8041,11 +8041,11 @@ ] }, { - "depth": 2, - "gas": 1989560, - "gasCost": 3, - "op": "SWAP1", "pc": 828, + "op": "SWAP1", + "gas": 1988075, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8063,11 +8063,11 @@ ] }, { - "depth": 2, - "gas": 1989557, - "gasCost": 2, - "op": "POP", "pc": 829, + "op": "POP", + "gas": 1988072, + "gasCost": 2, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8085,11 +8085,11 @@ ] }, { - "depth": 2, - "gas": 1989555, - "gasCost": 3, - "op": "SWAP2", "pc": 830, + "op": "SWAP2", + "gas": 1988070, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8106,11 +8106,11 @@ ] }, { - "depth": 2, - "gas": 1989552, - "gasCost": 3, - "op": "SWAP1", "pc": 831, + "op": "SWAP1", + "gas": 1988067, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8127,11 +8127,11 @@ ] }, { - "depth": 2, - "gas": 1989549, - "gasCost": 2, - "op": "POP", "pc": 832, + "op": "POP", + "gas": 1988064, + "gasCost": 2, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8148,11 +8148,11 @@ ] }, { - "depth": 2, - "gas": 1989547, - "gasCost": 8, - "op": "JUMP", "pc": 833, + "op": "JUMP", + "gas": 1988062, + "gasCost": 8, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8168,11 +8168,11 @@ ] }, { - "depth": 2, - "gas": 1989539, - "gasCost": 1, - "op": "JUMPDEST", "pc": 876, + "op": "JUMPDEST", + "gas": 1988054, + "gasCost": 1, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8187,11 +8187,11 @@ ] }, { - "depth": 2, - "gas": 1989538, - "gasCost": 3, - "op": "SWAP1", "pc": 877, + "op": "SWAP1", + "gas": 1988053, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8206,11 +8206,11 @@ ] }, { - "depth": 2, - "gas": 1989535, - "gasCost": 2, - "op": "POP", "pc": 878, + "op": "POP", + "gas": 1988050, + "gasCost": 2, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8225,11 +8225,11 @@ ] }, { - "depth": 2, - "gas": 1989533, - "gasCost": 3, - "op": "SWAP3", "pc": 879, + "op": "SWAP3", + "gas": 1988048, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8243,11 +8243,11 @@ ] }, { - "depth": 2, - "gas": 1989530, - "gasCost": 3, - "op": "SWAP2", "pc": 880, + "op": "SWAP2", + "gas": 1988045, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8261,11 +8261,11 @@ ] }, { - "depth": 2, - "gas": 1989527, - "gasCost": 2, - "op": "POP", "pc": 881, + "op": "POP", + "gas": 1988042, + "gasCost": 2, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8279,11 +8279,11 @@ ] }, { - "depth": 2, - "gas": 1989525, - "gasCost": 2, - "op": "POP", "pc": 882, + "op": "POP", + "gas": 1988040, + "gasCost": 2, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8296,11 +8296,11 @@ ] }, { - "depth": 2, - "gas": 1989523, - "gasCost": 8, - "op": "JUMP", "pc": 883, + "op": "JUMP", + "gas": 1988038, + "gasCost": 8, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8312,11 +8312,11 @@ ] }, { - "depth": 2, - "gas": 1989515, - "gasCost": 1, - "op": "JUMPDEST", "pc": 269, + "op": "JUMPDEST", + "gas": 1988030, + "gasCost": 1, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8327,11 +8327,11 @@ ] }, { - "depth": 2, - "gas": 1989514, - "gasCost": 3, - "op": "PUSH1", "pc": 270, + "op": "PUSH1", + "gas": 1988029, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8342,11 +8342,11 @@ ] }, { - "depth": 2, - "gas": 1989511, - "gasCost": 3, - "op": "MLOAD", "pc": 272, + "op": "MLOAD", + "gas": 1988026, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8358,11 +8358,11 @@ ] }, { - "depth": 2, - "gas": 1989508, - "gasCost": 3, - "op": "DUP1", "pc": 273, + "op": "DUP1", + "gas": 1988023, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8374,11 +8374,11 @@ ] }, { - "depth": 2, - "gas": 1989505, - "gasCost": 3, - "op": "SWAP2", "pc": 274, + "op": "SWAP2", + "gas": 1988020, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8391,11 +8391,11 @@ ] }, { - "depth": 2, - "gas": 1989502, - "gasCost": 3, - "op": "SUB", "pc": 275, + "op": "SUB", + "gas": 1988017, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8408,11 +8408,11 @@ ] }, { - "depth": 2, - "gas": 1989499, - "gasCost": 3, - "op": "SWAP1", "pc": 276, + "op": "SWAP1", + "gas": 1988014, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8424,11 +8424,11 @@ ] }, { - "depth": 2, - "gas": 1989496, - "gasCost": 2149, - "op": "LOG2", "pc": 277, + "op": "LOG2", + "gas": 1988011, + "gasCost": 2149, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8440,11 +8440,11 @@ ] }, { - "depth": 2, - "gas": 1987347, - "gasCost": 3, - "op": "DUP2", "pc": 278, + "op": "DUP2", + "gas": 1985862, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8452,11 +8452,11 @@ ] }, { - "depth": 2, - "gas": 1987344, - "gasCost": 3, - "op": "PUSH1", "pc": 279, + "op": "PUSH1", + "gas": 1985859, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8465,11 +8465,11 @@ ] }, { - "depth": 2, - "gas": 1987341, - "gasCost": 3, - "op": "DUP1", "pc": 281, + "op": "DUP1", + "gas": 1985856, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8479,11 +8479,11 @@ ] }, { - "depth": 2, - "gas": 1987338, - "gasCost": 3, - "op": "DUP3", "pc": 282, + "op": "DUP3", + "gas": 1985853, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8494,11 +8494,11 @@ ] }, { - "depth": 2, - "gas": 1987335, - "gasCost": 3, - "op": "DUP3", "pc": 283, + "op": "DUP3", + "gas": 1985850, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8510,11 +8510,11 @@ ] }, { - "depth": 2, - "gas": 1987332, - "gasCost": 200, - "op": "SLOAD", "pc": 284, + "op": "SLOAD", + "gas": 1985847, + "gasCost": 2100, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8531,11 +8531,11 @@ } }, { - "depth": 2, - "gas": 1987132, - "gasCost": 3, - "op": "PUSH3", "pc": 285, + "op": "PUSH3", + "gas": 1983747, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8548,11 +8548,11 @@ ] }, { - "depth": 2, - "gas": 1987129, - "gasCost": 3, - "op": "SWAP2", "pc": 289, + "op": "SWAP2", + "gas": 1983744, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8566,11 +8566,11 @@ ] }, { - "depth": 2, - "gas": 1987126, - "gasCost": 3, - "op": "SWAP1", "pc": 290, + "op": "SWAP1", + "gas": 1983741, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8584,11 +8584,11 @@ ] }, { - "depth": 2, - "gas": 1987123, - "gasCost": 3, - "op": "PUSH3", "pc": 291, + "op": "PUSH3", + "gas": 1983738, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8602,11 +8602,11 @@ ] }, { - "depth": 2, - "gas": 1987120, - "gasCost": 8, - "op": "JUMP", "pc": 295, + "op": "JUMP", + "gas": 1983735, + "gasCost": 8, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8621,11 +8621,11 @@ ] }, { - "depth": 2, - "gas": 1987112, - "gasCost": 1, - "op": "JUMPDEST", "pc": 931, + "op": "JUMPDEST", + "gas": 1983727, + "gasCost": 1, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8639,11 +8639,11 @@ ] }, { - "depth": 2, - "gas": 1987111, - "gasCost": 3, - "op": "PUSH1", "pc": 932, + "op": "PUSH1", + "gas": 1983726, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8657,11 +8657,11 @@ ] }, { - "depth": 2, - "gas": 1987108, - "gasCost": 3, - "op": "PUSH3", "pc": 934, + "op": "PUSH3", + "gas": 1983723, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8676,11 +8676,11 @@ ] }, { - "depth": 2, - "gas": 1987105, - "gasCost": 3, - "op": "DUP3", "pc": 938, + "op": "DUP3", + "gas": 1983720, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8696,11 +8696,11 @@ ] }, { - "depth": 2, - "gas": 1987102, - "gasCost": 3, - "op": "PUSH3", "pc": 939, + "op": "PUSH3", + "gas": 1983717, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8717,11 +8717,11 @@ ] }, { - "depth": 2, - "gas": 1987099, - "gasCost": 8, - "op": "JUMP", "pc": 943, + "op": "JUMP", + "gas": 1983714, + "gasCost": 8, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8739,11 +8739,11 @@ ] }, { - "depth": 2, - "gas": 1987091, - "gasCost": 1, - "op": "JUMPDEST", "pc": 727, + "op": "JUMPDEST", + "gas": 1983706, + "gasCost": 1, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8760,11 +8760,11 @@ ] }, { - "depth": 2, - "gas": 1987090, - "gasCost": 3, - "op": "PUSH1", "pc": 728, + "op": "PUSH1", + "gas": 1983705, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8781,11 +8781,11 @@ ] }, { - "depth": 2, - "gas": 1987087, - "gasCost": 3, - "op": "DUP2", "pc": 730, + "op": "DUP2", + "gas": 1983702, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8803,11 +8803,11 @@ ] }, { - "depth": 2, - "gas": 1987084, - "gasCost": 3, - "op": "SWAP1", "pc": 731, + "op": "SWAP1", + "gas": 1983699, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8826,11 +8826,11 @@ ] }, { - "depth": 2, - "gas": 1987081, - "gasCost": 2, - "op": "POP", "pc": 732, + "op": "POP", + "gas": 1983696, + "gasCost": 2, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8849,11 +8849,11 @@ ] }, { - "depth": 2, - "gas": 1987079, - "gasCost": 3, - "op": "SWAP2", "pc": 733, + "op": "SWAP2", + "gas": 1983694, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8871,11 +8871,11 @@ ] }, { - "depth": 2, - "gas": 1987076, - "gasCost": 3, - "op": "SWAP1", "pc": 734, + "op": "SWAP1", + "gas": 1983691, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8893,11 +8893,11 @@ ] }, { - "depth": 2, - "gas": 1987073, - "gasCost": 2, - "op": "POP", "pc": 735, + "op": "POP", + "gas": 1983688, + "gasCost": 2, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8915,11 +8915,11 @@ ] }, { - "depth": 2, - "gas": 1987071, - "gasCost": 8, - "op": "JUMP", "pc": 736, + "op": "JUMP", + "gas": 1983686, + "gasCost": 8, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8936,11 +8936,11 @@ ] }, { - "depth": 2, - "gas": 1987063, - "gasCost": 1, - "op": "JUMPDEST", "pc": 944, + "op": "JUMPDEST", + "gas": 1983678, + "gasCost": 1, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8956,11 +8956,11 @@ ] }, { - "depth": 2, - "gas": 1987062, - "gasCost": 3, - "op": "SWAP2", "pc": 945, + "op": "SWAP2", + "gas": 1983677, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8976,11 +8976,11 @@ ] }, { - "depth": 2, - "gas": 1987059, - "gasCost": 2, - "op": "POP", "pc": 946, + "op": "POP", + "gas": 1983674, + "gasCost": 2, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -8996,11 +8996,11 @@ ] }, { - "depth": 2, - "gas": 1987057, - "gasCost": 3, - "op": "PUSH3", "pc": 947, + "op": "PUSH3", + "gas": 1983672, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9015,11 +9015,11 @@ ] }, { - "depth": 2, - "gas": 1987054, - "gasCost": 3, - "op": "DUP4", "pc": 951, + "op": "DUP4", + "gas": 1983669, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9035,11 +9035,11 @@ ] }, { - "depth": 2, - "gas": 1987051, - "gasCost": 3, - "op": "PUSH3", "pc": 952, + "op": "PUSH3", + "gas": 1983666, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9056,11 +9056,11 @@ ] }, { - "depth": 2, - "gas": 1987048, - "gasCost": 8, - "op": "JUMP", "pc": 956, + "op": "JUMP", + "gas": 1983663, + "gasCost": 8, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9078,11 +9078,11 @@ ] }, { - "depth": 2, - "gas": 1987040, - "gasCost": 1, - "op": "JUMPDEST", "pc": 727, + "op": "JUMPDEST", + "gas": 1983655, + "gasCost": 1, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9099,11 +9099,11 @@ ] }, { - "depth": 2, - "gas": 1987039, - "gasCost": 3, - "op": "PUSH1", "pc": 728, + "op": "PUSH1", + "gas": 1983654, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9120,11 +9120,11 @@ ] }, { - "depth": 2, - "gas": 1987036, - "gasCost": 3, - "op": "DUP2", "pc": 730, + "op": "DUP2", + "gas": 1983651, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9142,11 +9142,11 @@ ] }, { - "depth": 2, - "gas": 1987033, - "gasCost": 3, - "op": "SWAP1", "pc": 731, + "op": "SWAP1", + "gas": 1983648, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9165,11 +9165,11 @@ ] }, { - "depth": 2, - "gas": 1987030, - "gasCost": 2, - "op": "POP", "pc": 732, + "op": "POP", + "gas": 1983645, + "gasCost": 2, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9188,11 +9188,11 @@ ] }, { - "depth": 2, - "gas": 1987028, - "gasCost": 3, - "op": "SWAP2", "pc": 733, + "op": "SWAP2", + "gas": 1983643, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9210,11 +9210,11 @@ ] }, { - "depth": 2, - "gas": 1987025, - "gasCost": 3, - "op": "SWAP1", "pc": 734, + "op": "SWAP1", + "gas": 1983640, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9232,11 +9232,11 @@ ] }, { - "depth": 2, - "gas": 1987022, - "gasCost": 2, - "op": "POP", "pc": 735, + "op": "POP", + "gas": 1983637, + "gasCost": 2, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9254,11 +9254,11 @@ ] }, { - "depth": 2, - "gas": 1987020, - "gasCost": 8, - "op": "JUMP", "pc": 736, + "op": "JUMP", + "gas": 1983635, + "gasCost": 8, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9275,11 +9275,11 @@ ] }, { - "depth": 2, - "gas": 1987012, - "gasCost": 1, - "op": "JUMPDEST", "pc": 957, + "op": "JUMPDEST", + "gas": 1983627, + "gasCost": 1, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9295,11 +9295,11 @@ ] }, { - "depth": 2, - "gas": 1987011, - "gasCost": 3, - "op": "SWAP3", "pc": 958, + "op": "SWAP3", + "gas": 1983626, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9315,11 +9315,11 @@ ] }, { - "depth": 2, - "gas": 1987008, - "gasCost": 2, - "op": "POP", "pc": 959, + "op": "POP", + "gas": 1983623, + "gasCost": 2, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9335,11 +9335,11 @@ ] }, { - "depth": 2, - "gas": 1987006, - "gasCost": 3, - "op": "DUP3", "pc": 960, + "op": "DUP3", + "gas": 1983621, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9354,11 +9354,11 @@ ] }, { - "depth": 2, - "gas": 1987003, - "gasCost": 3, - "op": "DUP3", "pc": 961, + "op": "PUSH32", + "gas": 1983618, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9374,11 +9374,11 @@ ] }, { - "depth": 2, - "gas": 1987000, + "pc": 994, + "op": "SUB", + "gas": 1983615, "gasCost": 3, - "op": "ADD", - "pc": 962, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9391,15 +9391,15 @@ "0x0", "0x0", "0x1d6329f1c35ca4bfabb9f5610000000000", - "0x0" + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" ] }, { - "depth": 2, - "gas": 1986997, + "pc": 995, + "op": "DUP3", + "gas": 1983612, "gasCost": 3, - "op": "SWAP1", - "pc": 963, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9411,15 +9411,15 @@ "0x1d6329f1c35ca4bfabb9f5610000000000", "0x0", "0x0", - "0x1d6329f1c35ca4bfabb9f5610000000000" + "0xffffffffffffffffffffffffffffffe29cd60e3ca35b4054460a9effffffffff" ] }, { + "pc": 996, + "op": "GT", + "gas": 1983609, + "gasCost": 3, "depth": 2, - "gas": 1986994, - "gasCost": 2, - "op": "POP", - "pc": 964, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9430,16 +9430,17 @@ "0x128", "0x1d6329f1c35ca4bfabb9f5610000000000", "0x0", - "0x1d6329f1c35ca4bfabb9f5610000000000", + "0x0", + "0xffffffffffffffffffffffffffffffe29cd60e3ca35b4054460a9effffffffff", "0x0" ] }, { - "depth": 2, - "gas": 1986992, + "pc": 997, + "op": "ISZERO", + "gas": 1983606, "gasCost": 3, - "op": "DUP1", - "pc": 965, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9450,15 +9451,16 @@ "0x128", "0x1d6329f1c35ca4bfabb9f5610000000000", "0x0", - "0x1d6329f1c35ca4bfabb9f5610000000000" + "0x0", + "0x0" ] }, { - "depth": 2, - "gas": 1986989, + "pc": 998, + "op": "PUSH3", + "gas": 1983603, "gasCost": 3, - "op": "DUP3", - "pc": 966, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9469,16 +9471,16 @@ "0x128", "0x1d6329f1c35ca4bfabb9f5610000000000", "0x0", - "0x1d6329f1c35ca4bfabb9f5610000000000", - "0x1d6329f1c35ca4bfabb9f5610000000000" + "0x0", + "0x1" ] }, { + "pc": 1002, + "op": "JUMPI", + "gas": 1983600, + "gasCost": 10, "depth": 2, - "gas": 1986986, - "gasCost": 3, - "op": "GT", - "pc": 967, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9489,17 +9491,36 @@ "0x128", "0x1d6329f1c35ca4bfabb9f5610000000000", "0x0", + "0x0", + "0x1", + "0x3f5" + ] + }, + { + "pc": 1013, + "op": "JUMPDEST", + "gas": 1983590, + "gasCost": 1, + "depth": 2, + "stack": [ + "0xbc", + "0x1d6329f1c35ca4bfabb9f5610000000000", + "0x0", "0x1d6329f1c35ca4bfabb9f5610000000000", + "0x0", + "0x0", + "0x128", "0x1d6329f1c35ca4bfabb9f5610000000000", + "0x0", "0x0" ] }, { - "depth": 2, - "gas": 1986983, + "pc": 1014, + "op": "DUP3", + "gas": 1983589, "gasCost": 3, - "op": "ISZERO", - "pc": 968, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9510,16 +9531,15 @@ "0x128", "0x1d6329f1c35ca4bfabb9f5610000000000", "0x0", - "0x1d6329f1c35ca4bfabb9f5610000000000", "0x0" ] }, { - "depth": 2, - "gas": 1986980, + "pc": 1015, + "op": "DUP3", + "gas": 1983586, "gasCost": 3, - "op": "PUSH3", - "pc": 969, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9530,16 +9550,16 @@ "0x128", "0x1d6329f1c35ca4bfabb9f5610000000000", "0x0", - "0x1d6329f1c35ca4bfabb9f5610000000000", - "0x1" + "0x0", + "0x1d6329f1c35ca4bfabb9f5610000000000" ] }, { + "pc": 1016, + "op": "ADD", + "gas": 1983583, + "gasCost": 3, "depth": 2, - "gas": 1986977, - "gasCost": 10, - "op": "JUMPI", - "pc": 973, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9550,17 +9570,17 @@ "0x128", "0x1d6329f1c35ca4bfabb9f5610000000000", "0x0", + "0x0", "0x1d6329f1c35ca4bfabb9f5610000000000", - "0x1", - "0x3d8" + "0x0" ] }, { + "pc": 1017, + "op": "SWAP1", + "gas": 1983580, + "gasCost": 3, "depth": 2, - "gas": 1986967, - "gasCost": 1, - "op": "JUMPDEST", - "pc": 984, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9571,15 +9591,36 @@ "0x128", "0x1d6329f1c35ca4bfabb9f5610000000000", "0x0", + "0x0", "0x1d6329f1c35ca4bfabb9f5610000000000" ] }, { + "pc": 1018, + "op": "POP", + "gas": 1983577, + "gasCost": 2, "depth": 2, - "gas": 1986966, - "gasCost": 3, + "stack": [ + "0xbc", + "0x1d6329f1c35ca4bfabb9f5610000000000", + "0x0", + "0x1d6329f1c35ca4bfabb9f5610000000000", + "0x0", + "0x0", + "0x128", + "0x1d6329f1c35ca4bfabb9f5610000000000", + "0x0", + "0x1d6329f1c35ca4bfabb9f5610000000000", + "0x0" + ] + }, + { + "pc": 1019, "op": "SWAP3", - "pc": 985, + "gas": 1983575, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9594,11 +9635,11 @@ ] }, { - "depth": 2, - "gas": 1986963, - "gasCost": 3, + "pc": 1020, "op": "SWAP2", - "pc": 986, + "gas": 1983572, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9613,11 +9654,11 @@ ] }, { - "depth": 2, - "gas": 1986960, - "gasCost": 2, + "pc": 1021, "op": "POP", - "pc": 987, + "gas": 1983569, + "gasCost": 2, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9632,11 +9673,11 @@ ] }, { - "depth": 2, - "gas": 1986958, - "gasCost": 2, + "pc": 1022, "op": "POP", - "pc": 988, + "gas": 1983567, + "gasCost": 2, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9650,11 +9691,11 @@ ] }, { - "depth": 2, - "gas": 1986956, - "gasCost": 8, + "pc": 1023, "op": "JUMP", - "pc": 989, + "gas": 1983565, + "gasCost": 8, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9667,11 +9708,11 @@ ] }, { - "depth": 2, - "gas": 1986948, - "gasCost": 1, - "op": "JUMPDEST", "pc": 296, + "op": "JUMPDEST", + "gas": 1983557, + "gasCost": 1, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9683,11 +9724,11 @@ ] }, { - "depth": 2, - "gas": 1986947, - "gasCost": 3, - "op": "SWAP3", "pc": 297, + "op": "SWAP3", + "gas": 1983556, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9699,11 +9740,11 @@ ] }, { - "depth": 2, - "gas": 1986944, - "gasCost": 2, - "op": "POP", "pc": 298, + "op": "POP", + "gas": 1983553, + "gasCost": 2, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9715,11 +9756,11 @@ ] }, { - "depth": 2, - "gas": 1986942, - "gasCost": 2, - "op": "POP", "pc": 299, + "op": "POP", + "gas": 1983551, + "gasCost": 2, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9730,11 +9771,11 @@ ] }, { - "depth": 2, - "gas": 1986940, - "gasCost": 3, - "op": "DUP2", "pc": 300, + "op": "DUP2", + "gas": 1983549, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9744,11 +9785,11 @@ ] }, { - "depth": 2, - "gas": 1986937, - "gasCost": 3, - "op": "SWAP1", "pc": 301, + "op": "SWAP1", + "gas": 1983546, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9757,13 +9798,13 @@ "0x0", "0x1d6329f1c35ca4bfabb9f5610000000000" ] - }, - { - "depth": 2, - "gas": 1986934, - "gasCost": 20000, - "op": "SSTORE", + }, + { "pc": 302, + "op": "SSTORE", + "gas": 1983543, + "gasCost": 20000, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9778,11 +9819,11 @@ } }, { - "depth": 2, - "gas": 1966934, - "gasCost": 2, - "op": "POP", "pc": 303, + "op": "POP", + "gas": 1963543, + "gasCost": 2, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9791,11 +9832,11 @@ ] }, { - "depth": 2, - "gas": 1966932, - "gasCost": 3, - "op": "PUSH3", "pc": 304, + "op": "PUSH3", + "gas": 1963541, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9803,11 +9844,11 @@ ] }, { - "depth": 2, - "gas": 1966929, - "gasCost": 3, - "op": "PUSH1", "pc": 308, + "op": "PUSH1", + "gas": 1963538, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9816,11 +9857,11 @@ ] }, { - "depth": 2, - "gas": 1966926, - "gasCost": 3, - "op": "DUP4", "pc": 310, + "op": "DUP4", + "gas": 1963535, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9830,11 +9871,11 @@ ] }, { - "depth": 2, - "gas": 1966923, - "gasCost": 3, - "op": "PUSH3", "pc": 311, + "op": "PUSH3", + "gas": 1963532, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9845,11 +9886,11 @@ ] }, { - "depth": 2, - "gas": 1966920, - "gasCost": 3, - "op": "SWAP2", "pc": 315, + "op": "SWAP2", + "gas": 1963529, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9861,11 +9902,11 @@ ] }, { - "depth": 2, - "gas": 1966917, - "gasCost": 3, - "op": "SWAP1", "pc": 316, + "op": "SWAP1", + "gas": 1963526, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9877,11 +9918,11 @@ ] }, { - "depth": 2, - "gas": 1966914, - "gasCost": 3, - "op": "PUSH3", "pc": 317, + "op": "PUSH3", + "gas": 1963523, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9893,11 +9934,11 @@ ] }, { - "depth": 2, - "gas": 1966911, - "gasCost": 8, - "op": "JUMP", "pc": 321, + "op": "JUMP", + "gas": 1963520, + "gasCost": 8, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9910,11 +9951,11 @@ ] }, { - "depth": 2, - "gas": 1966903, - "gasCost": 1, - "op": "JUMPDEST", "pc": 931, + "op": "JUMPDEST", + "gas": 1963512, + "gasCost": 1, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9926,11 +9967,11 @@ ] }, { - "depth": 2, - "gas": 1966902, - "gasCost": 3, - "op": "PUSH1", "pc": 932, + "op": "PUSH1", + "gas": 1963511, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9942,11 +9983,11 @@ ] }, { - "depth": 2, - "gas": 1966899, - "gasCost": 3, - "op": "PUSH3", "pc": 934, + "op": "PUSH3", + "gas": 1963508, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9959,11 +10000,11 @@ ] }, { - "depth": 2, - "gas": 1966896, - "gasCost": 3, - "op": "DUP3", "pc": 938, + "op": "DUP3", + "gas": 1963505, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9977,11 +10018,11 @@ ] }, { - "depth": 2, - "gas": 1966893, - "gasCost": 3, - "op": "PUSH3", "pc": 939, + "op": "PUSH3", + "gas": 1963502, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -9996,11 +10037,11 @@ ] }, { - "depth": 2, - "gas": 1966890, - "gasCost": 8, - "op": "JUMP", "pc": 943, + "op": "JUMP", + "gas": 1963499, + "gasCost": 8, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10016,11 +10057,11 @@ ] }, { - "depth": 2, - "gas": 1966882, - "gasCost": 1, - "op": "JUMPDEST", "pc": 727, + "op": "JUMPDEST", + "gas": 1963491, + "gasCost": 1, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10035,11 +10076,11 @@ ] }, { - "depth": 2, - "gas": 1966881, - "gasCost": 3, - "op": "PUSH1", "pc": 728, + "op": "PUSH1", + "gas": 1963490, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10054,11 +10095,11 @@ ] }, { - "depth": 2, - "gas": 1966878, - "gasCost": 3, - "op": "DUP2", "pc": 730, + "op": "DUP2", + "gas": 1963487, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10074,11 +10115,11 @@ ] }, { - "depth": 2, - "gas": 1966875, - "gasCost": 3, - "op": "SWAP1", "pc": 731, + "op": "SWAP1", + "gas": 1963484, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10095,11 +10136,11 @@ ] }, { - "depth": 2, - "gas": 1966872, - "gasCost": 2, - "op": "POP", "pc": 732, + "op": "POP", + "gas": 1963481, + "gasCost": 2, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10116,11 +10157,11 @@ ] }, { - "depth": 2, - "gas": 1966870, - "gasCost": 3, - "op": "SWAP2", "pc": 733, + "op": "SWAP2", + "gas": 1963479, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10136,11 +10177,11 @@ ] }, { - "depth": 2, - "gas": 1966867, - "gasCost": 3, - "op": "SWAP1", "pc": 734, + "op": "SWAP1", + "gas": 1963476, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10156,11 +10197,11 @@ ] }, { - "depth": 2, - "gas": 1966864, - "gasCost": 2, - "op": "POP", "pc": 735, + "op": "POP", + "gas": 1963473, + "gasCost": 2, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10176,11 +10217,11 @@ ] }, { - "depth": 2, - "gas": 1966862, - "gasCost": 8, - "op": "JUMP", "pc": 736, + "op": "JUMP", + "gas": 1963471, + "gasCost": 8, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10195,11 +10236,11 @@ ] }, { - "depth": 2, - "gas": 1966854, - "gasCost": 1, - "op": "JUMPDEST", "pc": 944, + "op": "JUMPDEST", + "gas": 1963463, + "gasCost": 1, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10213,11 +10254,11 @@ ] }, { - "depth": 2, - "gas": 1966853, - "gasCost": 3, - "op": "SWAP2", "pc": 945, + "op": "SWAP2", + "gas": 1963462, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10231,11 +10272,11 @@ ] }, { - "depth": 2, - "gas": 1966850, - "gasCost": 2, - "op": "POP", "pc": 946, + "op": "POP", + "gas": 1963459, + "gasCost": 2, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10249,11 +10290,11 @@ ] }, { - "depth": 2, - "gas": 1966848, - "gasCost": 3, - "op": "PUSH3", "pc": 947, + "op": "PUSH3", + "gas": 1963457, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10266,11 +10307,11 @@ ] }, { - "depth": 2, - "gas": 1966845, - "gasCost": 3, - "op": "DUP4", "pc": 951, + "op": "DUP4", + "gas": 1963454, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10284,11 +10325,11 @@ ] }, { - "depth": 2, - "gas": 1966842, - "gasCost": 3, - "op": "PUSH3", "pc": 952, + "op": "PUSH3", + "gas": 1963451, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10303,11 +10344,11 @@ ] }, { - "depth": 2, - "gas": 1966839, - "gasCost": 8, - "op": "JUMP", "pc": 956, + "op": "JUMP", + "gas": 1963448, + "gasCost": 8, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10323,11 +10364,11 @@ ] }, { - "depth": 2, - "gas": 1966831, - "gasCost": 1, - "op": "JUMPDEST", "pc": 727, + "op": "JUMPDEST", + "gas": 1963440, + "gasCost": 1, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10342,11 +10383,11 @@ ] }, { - "depth": 2, - "gas": 1966830, - "gasCost": 3, - "op": "PUSH1", "pc": 728, + "op": "PUSH1", + "gas": 1963439, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10361,11 +10402,11 @@ ] }, { - "depth": 2, - "gas": 1966827, - "gasCost": 3, - "op": "DUP2", "pc": 730, + "op": "DUP2", + "gas": 1963436, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10381,11 +10422,11 @@ ] }, { - "depth": 2, - "gas": 1966824, - "gasCost": 3, - "op": "SWAP1", "pc": 731, + "op": "SWAP1", + "gas": 1963433, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10402,11 +10443,11 @@ ] }, { - "depth": 2, - "gas": 1966821, - "gasCost": 2, - "op": "POP", "pc": 732, + "op": "POP", + "gas": 1963430, + "gasCost": 2, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10423,11 +10464,11 @@ ] }, { - "depth": 2, - "gas": 1966819, - "gasCost": 3, - "op": "SWAP2", "pc": 733, + "op": "SWAP2", + "gas": 1963428, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10443,11 +10484,11 @@ ] }, { - "depth": 2, - "gas": 1966816, - "gasCost": 3, - "op": "SWAP1", "pc": 734, + "op": "SWAP1", + "gas": 1963425, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10463,11 +10504,11 @@ ] }, { - "depth": 2, - "gas": 1966813, - "gasCost": 2, - "op": "POP", "pc": 735, + "op": "POP", + "gas": 1963422, + "gasCost": 2, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10483,11 +10524,11 @@ ] }, { - "depth": 2, - "gas": 1966811, - "gasCost": 8, - "op": "JUMP", "pc": 736, + "op": "JUMP", + "gas": 1963420, + "gasCost": 8, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10502,11 +10543,11 @@ ] }, { - "depth": 2, - "gas": 1966803, - "gasCost": 1, - "op": "JUMPDEST", "pc": 957, + "op": "JUMPDEST", + "gas": 1963412, + "gasCost": 1, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10520,11 +10561,11 @@ ] }, { - "depth": 2, - "gas": 1966802, - "gasCost": 3, - "op": "SWAP3", "pc": 958, + "op": "SWAP3", + "gas": 1963411, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10538,11 +10579,11 @@ ] }, { - "depth": 2, - "gas": 1966799, - "gasCost": 2, - "op": "POP", "pc": 959, + "op": "POP", + "gas": 1963408, + "gasCost": 2, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10556,11 +10597,11 @@ ] }, { - "depth": 2, - "gas": 1966797, - "gasCost": 3, - "op": "DUP3", "pc": 960, + "op": "DUP3", + "gas": 1963406, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10573,11 +10614,11 @@ ] }, { - "depth": 2, - "gas": 1966794, - "gasCost": 3, - "op": "DUP3", "pc": 961, + "op": "PUSH32", + "gas": 1963403, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10591,11 +10632,11 @@ ] }, { - "depth": 2, - "gas": 1966791, + "pc": 994, + "op": "SUB", + "gas": 1963400, "gasCost": 3, - "op": "ADD", - "pc": 962, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10606,15 +10647,33 @@ "0x1d6329f1c35ca4bfabb9f5610000000000", "0x0", "0x1", - "0x1d6329f1c35ca4bfabb9f5610000000000" + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" ] }, { + "pc": 995, + "op": "DUP3", + "gas": 1963397, + "gasCost": 3, "depth": 2, - "gas": 1966788, + "stack": [ + "0xbc", + "0x1d6329f1c35ca4bfabb9f5610000000000", + "0x0", + "0x14e", + "0x142", + "0x1", + "0x1d6329f1c35ca4bfabb9f5610000000000", + "0x0", + "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe" + ] + }, + { + "pc": 996, + "op": "GT", + "gas": 1963394, "gasCost": 3, - "op": "SWAP1", - "pc": 963, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10624,15 +10683,16 @@ "0x1", "0x1d6329f1c35ca4bfabb9f5610000000000", "0x0", - "0x1d6329f1c35ca4bfabb9f5610000000001" + "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe", + "0x1d6329f1c35ca4bfabb9f5610000000000" ] }, { + "pc": 997, + "op": "ISZERO", + "gas": 1963391, + "gasCost": 3, "depth": 2, - "gas": 1966785, - "gasCost": 2, - "op": "POP", - "pc": 964, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10641,16 +10701,16 @@ "0x142", "0x1", "0x1d6329f1c35ca4bfabb9f5610000000000", - "0x1d6329f1c35ca4bfabb9f5610000000001", + "0x0", "0x0" ] }, { - "depth": 2, - "gas": 1966783, + "pc": 998, + "op": "PUSH3", + "gas": 1963388, "gasCost": 3, - "op": "DUP1", - "pc": 965, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10659,15 +10719,16 @@ "0x142", "0x1", "0x1d6329f1c35ca4bfabb9f5610000000000", - "0x1d6329f1c35ca4bfabb9f5610000000001" + "0x0", + "0x1" ] }, { + "pc": 1002, + "op": "JUMPI", + "gas": 1963385, + "gasCost": 10, "depth": 2, - "gas": 1966780, - "gasCost": 3, - "op": "DUP3", - "pc": 966, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10676,16 +10737,17 @@ "0x142", "0x1", "0x1d6329f1c35ca4bfabb9f5610000000000", - "0x1d6329f1c35ca4bfabb9f5610000000001", - "0x1d6329f1c35ca4bfabb9f5610000000001" + "0x0", + "0x1", + "0x3f5" ] }, { + "pc": 1013, + "op": "JUMPDEST", + "gas": 1963375, + "gasCost": 1, "depth": 2, - "gas": 1966777, - "gasCost": 3, - "op": "GT", - "pc": 967, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10694,17 +10756,15 @@ "0x142", "0x1", "0x1d6329f1c35ca4bfabb9f5610000000000", - "0x1d6329f1c35ca4bfabb9f5610000000001", - "0x1d6329f1c35ca4bfabb9f5610000000001", - "0x1d6329f1c35ca4bfabb9f5610000000000" + "0x0" ] }, { - "depth": 2, - "gas": 1966774, + "pc": 1014, + "op": "DUP3", + "gas": 1963374, "gasCost": 3, - "op": "ISZERO", - "pc": 968, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10713,16 +10773,15 @@ "0x142", "0x1", "0x1d6329f1c35ca4bfabb9f5610000000000", - "0x1d6329f1c35ca4bfabb9f5610000000001", "0x0" ] }, { - "depth": 2, - "gas": 1966771, + "pc": 1015, + "op": "DUP3", + "gas": 1963371, "gasCost": 3, - "op": "PUSH3", - "pc": 969, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10731,16 +10790,16 @@ "0x142", "0x1", "0x1d6329f1c35ca4bfabb9f5610000000000", - "0x1d6329f1c35ca4bfabb9f5610000000001", + "0x0", "0x1" ] }, { + "pc": 1016, + "op": "ADD", + "gas": 1963368, + "gasCost": 3, "depth": 2, - "gas": 1966768, - "gasCost": 10, - "op": "JUMPI", - "pc": 973, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10749,17 +10808,17 @@ "0x142", "0x1", "0x1d6329f1c35ca4bfabb9f5610000000000", - "0x1d6329f1c35ca4bfabb9f5610000000001", + "0x0", "0x1", - "0x3d8" + "0x1d6329f1c35ca4bfabb9f5610000000000" ] }, { + "pc": 1017, + "op": "SWAP1", + "gas": 1963365, + "gasCost": 3, "depth": 2, - "gas": 1966758, - "gasCost": 1, - "op": "JUMPDEST", - "pc": 984, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10768,15 +10827,34 @@ "0x142", "0x1", "0x1d6329f1c35ca4bfabb9f5610000000000", + "0x0", "0x1d6329f1c35ca4bfabb9f5610000000001" ] }, { + "pc": 1018, + "op": "POP", + "gas": 1963362, + "gasCost": 2, "depth": 2, - "gas": 1966757, - "gasCost": 3, + "stack": [ + "0xbc", + "0x1d6329f1c35ca4bfabb9f5610000000000", + "0x0", + "0x14e", + "0x142", + "0x1", + "0x1d6329f1c35ca4bfabb9f5610000000000", + "0x1d6329f1c35ca4bfabb9f5610000000001", + "0x0" + ] + }, + { + "pc": 1019, "op": "SWAP3", - "pc": 985, + "gas": 1963360, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10789,11 +10867,11 @@ ] }, { - "depth": 2, - "gas": 1966754, - "gasCost": 3, + "pc": 1020, "op": "SWAP2", - "pc": 986, + "gas": 1963357, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10806,11 +10884,11 @@ ] }, { - "depth": 2, - "gas": 1966751, - "gasCost": 2, + "pc": 1021, "op": "POP", - "pc": 987, + "gas": 1963354, + "gasCost": 2, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10823,11 +10901,11 @@ ] }, { - "depth": 2, - "gas": 1966749, - "gasCost": 2, + "pc": 1022, "op": "POP", - "pc": 988, + "gas": 1963352, + "gasCost": 2, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10839,11 +10917,11 @@ ] }, { - "depth": 2, - "gas": 1966747, - "gasCost": 8, + "pc": 1023, "op": "JUMP", - "pc": 989, + "gas": 1963350, + "gasCost": 8, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10854,11 +10932,11 @@ ] }, { - "depth": 2, - "gas": 1966739, - "gasCost": 1, - "op": "JUMPDEST", "pc": 322, + "op": "JUMPDEST", + "gas": 1963342, + "gasCost": 1, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10868,11 +10946,11 @@ ] }, { - "depth": 2, - "gas": 1966738, - "gasCost": 3, - "op": "PUSH3", "pc": 323, + "op": "PUSH3", + "gas": 1963341, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10882,11 +10960,11 @@ ] }, { - "depth": 2, - "gas": 1966735, - "gasCost": 3, - "op": "PUSH1", "pc": 327, + "op": "PUSH1", + "gas": 1963338, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10897,11 +10975,11 @@ ] }, { - "depth": 2, - "gas": 1966732, - "gasCost": 3, - "op": "SHL", "pc": 329, + "op": "SHL", + "gas": 1963335, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10913,11 +10991,11 @@ ] }, { - "depth": 2, - "gas": 1966729, - "gasCost": 3, - "op": "PUSH1", "pc": 330, + "op": "PUSH1", + "gas": 1963332, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10928,11 +11006,11 @@ ] }, { - "depth": 2, - "gas": 1966726, - "gasCost": 3, - "op": "SHR", "pc": 332, + "op": "SHR", + "gas": 1963329, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10944,11 +11022,11 @@ ] }, { - "depth": 2, - "gas": 1966723, - "gasCost": 8, - "op": "JUMP", "pc": 333, + "op": "JUMP", + "gas": 1963326, + "gasCost": 8, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10959,11 +11037,11 @@ ] }, { - "depth": 2, - "gas": 1966715, - "gasCost": 1, - "op": "JUMPDEST", "pc": 361, + "op": "JUMPDEST", + "gas": 1963318, + "gasCost": 1, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10973,11 +11051,11 @@ ] }, { - "depth": 2, - "gas": 1966714, - "gasCost": 3, - "op": "PUSH1", "pc": 362, + "op": "PUSH1", + "gas": 1963317, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -10987,11 +11065,11 @@ ] }, { - "depth": 2, - "gas": 1966711, - "gasCost": 2, - "op": "CALLER", "pc": 364, + "op": "CALLER", + "gas": 1963314, + "gasCost": 2, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11002,11 +11080,11 @@ ] }, { - "depth": 2, - "gas": 1966709, - "gasCost": 3, - "op": "PUSH20", "pc": 365, + "op": "PUSH20", + "gas": 1963312, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11018,11 +11096,11 @@ ] }, { - "depth": 2, - "gas": 1966706, - "gasCost": 3, - "op": "AND", "pc": 386, + "op": "AND", + "gas": 1963309, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11035,11 +11113,11 @@ ] }, { - "depth": 2, - "gas": 1966703, - "gasCost": 3, - "op": "PUSH32", "pc": 387, + "op": "PUSH32", + "gas": 1963306, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11051,11 +11129,11 @@ ] }, { - "depth": 2, - "gas": 1966700, - "gasCost": 3, - "op": "DUP4", "pc": 420, + "op": "DUP4", + "gas": 1963303, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11068,11 +11146,11 @@ ] }, { - "depth": 2, - "gas": 1966697, - "gasCost": 3, - "op": "PUSH1", "pc": 421, + "op": "PUSH1", + "gas": 1963300, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11086,11 +11164,11 @@ ] }, { - "depth": 2, - "gas": 1966694, - "gasCost": 3, - "op": "MLOAD", "pc": 423, + "op": "MLOAD", + "gas": 1963297, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11105,11 +11183,11 @@ ] }, { - "depth": 2, - "gas": 1966691, - "gasCost": 3, - "op": "PUSH3", "pc": 424, + "op": "PUSH3", + "gas": 1963294, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11124,11 +11202,11 @@ ] }, { - "depth": 2, - "gas": 1966688, - "gasCost": 3, - "op": "SWAP2", "pc": 428, + "op": "SWAP2", + "gas": 1963291, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11144,11 +11222,11 @@ ] }, { - "depth": 2, - "gas": 1966685, - "gasCost": 3, - "op": "SWAP1", "pc": 429, + "op": "SWAP1", + "gas": 1963288, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11164,11 +11242,11 @@ ] }, { - "depth": 2, - "gas": 1966682, - "gasCost": 3, - "op": "PUSH3", "pc": 430, + "op": "PUSH3", + "gas": 1963285, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11184,11 +11262,11 @@ ] }, { - "depth": 2, - "gas": 1966679, - "gasCost": 8, - "op": "JUMP", "pc": 434, + "op": "JUMP", + "gas": 1963282, + "gasCost": 8, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11201,15 +11279,15 @@ "0x1b3", "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", - "0x42e" + "0x450" ] }, { - "depth": 2, - "gas": 1966671, - "gasCost": 1, + "pc": 1104, "op": "JUMPDEST", - "pc": 1070, + "gas": 1963274, + "gasCost": 1, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11225,11 +11303,11 @@ ] }, { - "depth": 2, - "gas": 1966670, - "gasCost": 3, + "pc": 1105, "op": "PUSH1", - "pc": 1071, + "gas": 1963273, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11245,11 +11323,11 @@ ] }, { - "depth": 2, - "gas": 1966667, - "gasCost": 3, + "pc": 1107, "op": "PUSH1", - "pc": 1073, + "gas": 1963270, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11266,11 +11344,11 @@ ] }, { - "depth": 2, - "gas": 1966664, - "gasCost": 3, + "pc": 1109, "op": "DUP3", - "pc": 1075, + "gas": 1963267, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11288,11 +11366,11 @@ ] }, { - "depth": 2, - "gas": 1966661, - "gasCost": 3, + "pc": 1110, "op": "ADD", - "pc": 1076, + "gas": 1963264, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11311,11 +11389,11 @@ ] }, { - "depth": 2, - "gas": 1966658, - "gasCost": 3, + "pc": 1111, "op": "SWAP1", - "pc": 1077, + "gas": 1963261, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11333,11 +11411,11 @@ ] }, { - "depth": 2, - "gas": 1966655, - "gasCost": 2, + "pc": 1112, "op": "POP", - "pc": 1078, + "gas": 1963258, + "gasCost": 2, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11355,11 +11433,11 @@ ] }, { - "depth": 2, - "gas": 1966653, - "gasCost": 3, + "pc": 1113, "op": "PUSH3", - "pc": 1079, + "gas": 1963256, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11376,11 +11454,11 @@ ] }, { - "depth": 2, - "gas": 1966650, - "gasCost": 3, + "pc": 1117, "op": "PUSH1", - "pc": 1083, + "gas": 1963253, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11394,15 +11472,15 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x445" + "0x467" ] }, { - "depth": 2, - "gas": 1966647, - "gasCost": 3, + "pc": 1119, "op": "DUP4", - "pc": 1085, + "gas": 1963250, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11416,16 +11494,16 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x445", + "0x467", "0x0" ] }, { - "depth": 2, - "gas": 1966644, - "gasCost": 3, + "pc": 1120, "op": "ADD", - "pc": 1086, + "gas": 1963247, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11439,17 +11517,17 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x445", + "0x467", "0x0", "0x80" ] }, { - "depth": 2, - "gas": 1966641, - "gasCost": 3, + "pc": 1121, "op": "DUP5", - "pc": 1087, + "gas": 1963244, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11463,16 +11541,16 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x445", + "0x467", "0x80" ] }, { - "depth": 2, - "gas": 1966638, - "gasCost": 3, + "pc": 1122, "op": "PUSH3", - "pc": 1088, + "gas": 1963241, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11486,17 +11564,17 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x445", + "0x467", "0x80", "0x1d6329f1c35ca4bfabb9f5610000000001" ] }, { - "depth": 2, - "gas": 1966635, - "gasCost": 8, + "pc": 1126, "op": "JUMP", - "pc": 1092, + "gas": 1963238, + "gasCost": 8, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11510,18 +11588,18 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x445", + "0x467", "0x80", "0x1d6329f1c35ca4bfabb9f5610000000001", "0x2e1" ] }, { - "depth": 2, - "gas": 1966627, - "gasCost": 1, - "op": "JUMPDEST", "pc": 737, + "op": "JUMPDEST", + "gas": 1963230, + "gasCost": 1, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11535,17 +11613,17 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x445", + "0x467", "0x80", "0x1d6329f1c35ca4bfabb9f5610000000001" ] }, { - "depth": 2, - "gas": 1966626, - "gasCost": 3, - "op": "PUSH3", "pc": 738, + "op": "PUSH3", + "gas": 1963229, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11559,17 +11637,17 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x445", + "0x467", "0x80", "0x1d6329f1c35ca4bfabb9f5610000000001" ] }, { - "depth": 2, - "gas": 1966623, - "gasCost": 3, - "op": "DUP2", "pc": 742, + "op": "DUP2", + "gas": 1963226, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11583,18 +11661,18 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x445", + "0x467", "0x80", "0x1d6329f1c35ca4bfabb9f5610000000001", "0x2ec" ] }, { - "depth": 2, - "gas": 1966620, - "gasCost": 3, - "op": "PUSH3", "pc": 743, + "op": "PUSH3", + "gas": 1963223, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11608,7 +11686,7 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x445", + "0x467", "0x80", "0x1d6329f1c35ca4bfabb9f5610000000001", "0x2ec", @@ -11616,11 +11694,11 @@ ] }, { - "depth": 2, - "gas": 1966617, - "gasCost": 8, - "op": "JUMP", "pc": 747, + "op": "JUMP", + "gas": 1963220, + "gasCost": 8, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11634,7 +11712,7 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x445", + "0x467", "0x80", "0x1d6329f1c35ca4bfabb9f5610000000001", "0x2ec", @@ -11643,11 +11721,11 @@ ] }, { - "depth": 2, - "gas": 1966609, - "gasCost": 1, - "op": "JUMPDEST", "pc": 727, + "op": "JUMPDEST", + "gas": 1963212, + "gasCost": 1, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11661,7 +11739,7 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x445", + "0x467", "0x80", "0x1d6329f1c35ca4bfabb9f5610000000001", "0x2ec", @@ -11669,11 +11747,11 @@ ] }, { - "depth": 2, - "gas": 1966608, - "gasCost": 3, - "op": "PUSH1", "pc": 728, + "op": "PUSH1", + "gas": 1963211, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11687,7 +11765,7 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x445", + "0x467", "0x80", "0x1d6329f1c35ca4bfabb9f5610000000001", "0x2ec", @@ -11695,11 +11773,11 @@ ] }, { - "depth": 2, - "gas": 1966605, - "gasCost": 3, - "op": "DUP2", "pc": 730, + "op": "DUP2", + "gas": 1963208, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11713,7 +11791,7 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x445", + "0x467", "0x80", "0x1d6329f1c35ca4bfabb9f5610000000001", "0x2ec", @@ -11722,11 +11800,11 @@ ] }, { - "depth": 2, - "gas": 1966602, - "gasCost": 3, - "op": "SWAP1", "pc": 731, + "op": "SWAP1", + "gas": 1963205, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11740,7 +11818,7 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x445", + "0x467", "0x80", "0x1d6329f1c35ca4bfabb9f5610000000001", "0x2ec", @@ -11750,11 +11828,11 @@ ] }, { - "depth": 2, - "gas": 1966599, - "gasCost": 2, - "op": "POP", "pc": 732, + "op": "POP", + "gas": 1963202, + "gasCost": 2, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11768,7 +11846,7 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x445", + "0x467", "0x80", "0x1d6329f1c35ca4bfabb9f5610000000001", "0x2ec", @@ -11778,11 +11856,11 @@ ] }, { - "depth": 2, - "gas": 1966597, - "gasCost": 3, - "op": "SWAP2", "pc": 733, + "op": "SWAP2", + "gas": 1963200, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11796,7 +11874,7 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x445", + "0x467", "0x80", "0x1d6329f1c35ca4bfabb9f5610000000001", "0x2ec", @@ -11805,11 +11883,11 @@ ] }, { - "depth": 2, - "gas": 1966594, - "gasCost": 3, - "op": "SWAP1", "pc": 734, + "op": "SWAP1", + "gas": 1963197, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11823,7 +11901,7 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x445", + "0x467", "0x80", "0x1d6329f1c35ca4bfabb9f5610000000001", "0x1d6329f1c35ca4bfabb9f5610000000001", @@ -11832,11 +11910,11 @@ ] }, { - "depth": 2, - "gas": 1966591, - "gasCost": 2, - "op": "POP", "pc": 735, + "op": "POP", + "gas": 1963194, + "gasCost": 2, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11850,7 +11928,7 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x445", + "0x467", "0x80", "0x1d6329f1c35ca4bfabb9f5610000000001", "0x1d6329f1c35ca4bfabb9f5610000000001", @@ -11859,11 +11937,11 @@ ] }, { - "depth": 2, - "gas": 1966589, - "gasCost": 8, - "op": "JUMP", "pc": 736, + "op": "JUMP", + "gas": 1963192, + "gasCost": 8, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11877,7 +11955,7 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x445", + "0x467", "0x80", "0x1d6329f1c35ca4bfabb9f5610000000001", "0x1d6329f1c35ca4bfabb9f5610000000001", @@ -11885,11 +11963,11 @@ ] }, { - "depth": 2, - "gas": 1966581, - "gasCost": 1, - "op": "JUMPDEST", "pc": 748, + "op": "JUMPDEST", + "gas": 1963184, + "gasCost": 1, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11903,18 +11981,18 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x445", + "0x467", "0x80", "0x1d6329f1c35ca4bfabb9f5610000000001", "0x1d6329f1c35ca4bfabb9f5610000000001" ] }, { - "depth": 2, - "gas": 1966580, - "gasCost": 3, - "op": "DUP3", "pc": 749, + "op": "DUP3", + "gas": 1963183, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11928,18 +12006,18 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x445", + "0x467", "0x80", "0x1d6329f1c35ca4bfabb9f5610000000001", "0x1d6329f1c35ca4bfabb9f5610000000001" ] }, { - "depth": 2, - "gas": 1966577, - "gasCost": 3, - "op": "MSTORE", "pc": 750, + "op": "MSTORE", + "gas": 1963180, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11953,7 +12031,7 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x445", + "0x467", "0x80", "0x1d6329f1c35ca4bfabb9f5610000000001", "0x1d6329f1c35ca4bfabb9f5610000000001", @@ -11961,11 +12039,11 @@ ] }, { - "depth": 2, - "gas": 1966574, - "gasCost": 2, - "op": "POP", "pc": 751, + "op": "POP", + "gas": 1963177, + "gasCost": 2, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -11979,17 +12057,17 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x445", + "0x467", "0x80", "0x1d6329f1c35ca4bfabb9f5610000000001" ] }, { - "depth": 2, - "gas": 1966572, - "gasCost": 2, - "op": "POP", "pc": 752, + "op": "POP", + "gas": 1963175, + "gasCost": 2, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12003,16 +12081,16 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x445", + "0x467", "0x80" ] }, { - "depth": 2, - "gas": 1966570, - "gasCost": 8, - "op": "JUMP", "pc": 753, + "op": "JUMP", + "gas": 1963173, + "gasCost": 8, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12026,15 +12104,15 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x445" + "0x467" ] }, { - "depth": 2, - "gas": 1966562, - "gasCost": 1, + "pc": 1127, "op": "JUMPDEST", - "pc": 1093, + "gas": 1963165, + "gasCost": 1, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12051,11 +12129,11 @@ ] }, { - "depth": 2, - "gas": 1966561, - "gasCost": 3, + "pc": 1128, "op": "DUP2", - "pc": 1094, + "gas": 1963164, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12072,11 +12150,11 @@ ] }, { - "depth": 2, - "gas": 1966558, - "gasCost": 3, + "pc": 1129, "op": "DUP2", - "pc": 1095, + "gas": 1963161, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12094,11 +12172,11 @@ ] }, { - "depth": 2, - "gas": 1966555, - "gasCost": 3, + "pc": 1130, "op": "SUB", - "pc": 1096, + "gas": 1963158, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12117,11 +12195,11 @@ ] }, { - "depth": 2, - "gas": 1966552, - "gasCost": 3, + "pc": 1131, "op": "PUSH1", - "pc": 1097, + "gas": 1963155, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12139,11 +12217,11 @@ ] }, { - "depth": 2, - "gas": 1966549, - "gasCost": 3, + "pc": 1133, "op": "DUP4", - "pc": 1099, + "gas": 1963152, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12162,11 +12240,11 @@ ] }, { - "depth": 2, - "gas": 1966546, - "gasCost": 3, + "pc": 1134, "op": "ADD", - "pc": 1100, + "gas": 1963149, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12186,11 +12264,11 @@ ] }, { - "depth": 2, - "gas": 1966543, - "gasCost": 3, + "pc": 1135, "op": "MSTORE", - "pc": 1101, + "gas": 1963146, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12209,11 +12287,11 @@ ] }, { - "depth": 2, - "gas": 1966540, - "gasCost": 3, + "pc": 1136, "op": "PUSH3", - "pc": 1102, + "gas": 1963143, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12230,11 +12308,11 @@ ] }, { - "depth": 2, - "gas": 1966537, - "gasCost": 3, + "pc": 1140, "op": "DUP2", - "pc": 1106, + "gas": 1963140, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12248,15 +12326,15 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x458" + "0x47a" ] }, { - "depth": 2, - "gas": 1966534, - "gasCost": 3, + "pc": 1141, "op": "PUSH3", - "pc": 1107, + "gas": 1963137, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12270,16 +12348,16 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x458", + "0x47a", "0xc0" ] }, { - "depth": 2, - "gas": 1966531, - "gasCost": 8, + "pc": 1145, "op": "JUMP", - "pc": 1111, + "gas": 1963134, + "gasCost": 8, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12293,17 +12371,17 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x458", + "0x47a", "0xc0", - "0x407" + "0x429" ] }, { - "depth": 2, - "gas": 1966523, - "gasCost": 1, + "pc": 1065, "op": "JUMPDEST", - "pc": 1031, + "gas": 1963126, + "gasCost": 1, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12317,16 +12395,16 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x458", + "0x47a", "0xc0" ] }, { - "depth": 2, - "gas": 1966522, - "gasCost": 3, + "pc": 1066, "op": "PUSH1", - "pc": 1032, + "gas": 1963125, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12340,16 +12418,16 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x458", + "0x47a", "0xc0" ] }, { - "depth": 2, - "gas": 1966519, - "gasCost": 3, + "pc": 1068, "op": "PUSH3", - "pc": 1034, + "gas": 1963122, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12363,17 +12441,17 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x458", + "0x47a", "0xc0", "0x0" ] }, { - "depth": 2, - "gas": 1966516, - "gasCost": 3, + "pc": 1072, "op": "PUSH1", - "pc": 1038, + "gas": 1963119, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12387,18 +12465,18 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x458", + "0x47a", "0xc0", "0x0", - "0x416" + "0x438" ] }, { - "depth": 2, - "gas": 1966513, - "gasCost": 3, + "pc": 1074, "op": "DUP4", - "pc": 1040, + "gas": 1963116, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12412,19 +12490,19 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x458", + "0x47a", "0xc0", "0x0", - "0x416", + "0x438", "0xe" ] }, { - "depth": 2, - "gas": 1966510, - "gasCost": 3, + "pc": 1075, "op": "PUSH3", - "pc": 1041, + "gas": 1963113, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12438,20 +12516,20 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x458", + "0x47a", "0xc0", "0x0", - "0x416", + "0x438", "0xe", "0xc0" ] }, { - "depth": 2, - "gas": 1966507, - "gasCost": 8, + "pc": 1079, "op": "JUMP", - "pc": 1045, + "gas": 1963110, + "gasCost": 8, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12465,21 +12543,21 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x458", + "0x47a", "0xc0", "0x0", - "0x416", + "0x438", "0xe", "0xc0", "0x22e" ] }, { - "depth": 2, - "gas": 1966499, - "gasCost": 1, - "op": "JUMPDEST", "pc": 558, + "op": "JUMPDEST", + "gas": 1963102, + "gasCost": 1, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12493,20 +12571,20 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x458", + "0x47a", "0xc0", "0x0", - "0x416", + "0x438", "0xe", "0xc0" ] }, { - "depth": 2, - "gas": 1966498, - "gasCost": 3, - "op": "PUSH1", "pc": 559, + "op": "PUSH1", + "gas": 1963101, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12520,20 +12598,20 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x458", + "0x47a", "0xc0", "0x0", - "0x416", + "0x438", "0xe", "0xc0" ] }, { - "depth": 2, - "gas": 1966495, - "gasCost": 3, - "op": "DUP3", "pc": 561, + "op": "DUP3", + "gas": 1963098, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12547,21 +12625,21 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x458", + "0x47a", "0xc0", "0x0", - "0x416", + "0x438", "0xe", "0xc0", "0x0" ] }, { - "depth": 2, - "gas": 1966492, - "gasCost": 3, - "op": "DUP3", "pc": 562, + "op": "DUP3", + "gas": 1963095, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12575,10 +12653,10 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x458", + "0x47a", "0xc0", "0x0", - "0x416", + "0x438", "0xe", "0xc0", "0x0", @@ -12586,11 +12664,11 @@ ] }, { - "depth": 2, - "gas": 1966489, - "gasCost": 3, - "op": "MSTORE", "pc": 563, + "op": "MSTORE", + "gas": 1963092, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12604,10 +12682,10 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x458", + "0x47a", "0xc0", "0x0", - "0x416", + "0x438", "0xe", "0xc0", "0x0", @@ -12616,11 +12694,11 @@ ] }, { - "depth": 2, - "gas": 1966486, - "gasCost": 3, - "op": "PUSH1", "pc": 564, + "op": "PUSH1", + "gas": 1963089, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12634,21 +12712,21 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x458", + "0x47a", "0xc0", "0x0", - "0x416", + "0x438", "0xe", "0xc0", "0x0" ] }, { - "depth": 2, - "gas": 1966483, - "gasCost": 3, - "op": "DUP3", "pc": 566, + "op": "DUP3", + "gas": 1963086, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12662,10 +12740,10 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x458", + "0x47a", "0xc0", "0x0", - "0x416", + "0x438", "0xe", "0xc0", "0x0", @@ -12673,11 +12751,11 @@ ] }, { - "depth": 2, - "gas": 1966480, - "gasCost": 3, - "op": "ADD", "pc": 567, + "op": "ADD", + "gas": 1963083, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12691,10 +12769,10 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x458", + "0x47a", "0xc0", "0x0", - "0x416", + "0x438", "0xe", "0xc0", "0x0", @@ -12703,11 +12781,11 @@ ] }, { - "depth": 2, - "gas": 1966477, - "gasCost": 3, - "op": "SWAP1", "pc": 568, + "op": "SWAP1", + "gas": 1963080, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12721,10 +12799,10 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x458", + "0x47a", "0xc0", "0x0", - "0x416", + "0x438", "0xe", "0xc0", "0x0", @@ -12732,11 +12810,11 @@ ] }, { - "depth": 2, - "gas": 1966474, - "gasCost": 2, - "op": "POP", "pc": 569, + "op": "POP", + "gas": 1963077, + "gasCost": 2, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12750,10 +12828,10 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x458", + "0x47a", "0xc0", "0x0", - "0x416", + "0x438", "0xe", "0xc0", "0xe0", @@ -12761,11 +12839,11 @@ ] }, { - "depth": 2, - "gas": 1966472, - "gasCost": 3, - "op": "SWAP3", "pc": 570, + "op": "SWAP3", + "gas": 1963075, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12779,21 +12857,21 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x458", + "0x47a", "0xc0", "0x0", - "0x416", + "0x438", "0xe", "0xc0", "0xe0" ] }, { - "depth": 2, - "gas": 1966469, - "gasCost": 3, - "op": "SWAP2", "pc": 571, + "op": "SWAP2", + "gas": 1963072, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12807,21 +12885,21 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x458", + "0x47a", "0xc0", "0x0", "0xe0", "0xe", "0xc0", - "0x416" + "0x438" ] }, { - "depth": 2, - "gas": 1966466, - "gasCost": 2, - "op": "POP", "pc": 572, + "op": "POP", + "gas": 1963069, + "gasCost": 2, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12835,21 +12913,21 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x458", + "0x47a", "0xc0", "0x0", "0xe0", - "0x416", + "0x438", "0xc0", "0xe" ] }, { - "depth": 2, - "gas": 1966464, - "gasCost": 2, - "op": "POP", "pc": 573, + "op": "POP", + "gas": 1963067, + "gasCost": 2, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12863,20 +12941,20 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x458", + "0x47a", "0xc0", "0x0", "0xe0", - "0x416", + "0x438", "0xc0" ] }, { - "depth": 2, - "gas": 1966462, - "gasCost": 8, - "op": "JUMP", "pc": 574, + "op": "JUMP", + "gas": 1963065, + "gasCost": 8, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12890,19 +12968,19 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x458", + "0x47a", "0xc0", "0x0", "0xe0", - "0x416" + "0x438" ] }, { - "depth": 2, - "gas": 1966454, - "gasCost": 1, + "pc": 1080, "op": "JUMPDEST", - "pc": 1046, + "gas": 1963057, + "gasCost": 1, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12916,18 +12994,18 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x458", + "0x47a", "0xc0", "0x0", "0xe0" ] }, { - "depth": 2, - "gas": 1966453, - "gasCost": 3, + "pc": 1081, "op": "SWAP2", - "pc": 1047, + "gas": 1963056, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12941,18 +13019,18 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x458", + "0x47a", "0xc0", "0x0", "0xe0" ] }, { - "depth": 2, - "gas": 1966450, - "gasCost": 2, + "pc": 1082, "op": "POP", - "pc": 1048, + "gas": 1963053, + "gasCost": 2, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12966,18 +13044,18 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x458", + "0x47a", "0xe0", "0x0", "0xc0" ] }, { - "depth": 2, - "gas": 1966448, - "gasCost": 3, + "pc": 1083, "op": "PUSH3", - "pc": 1049, + "gas": 1963051, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -12991,17 +13069,17 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x458", + "0x47a", "0xe0", "0x0" ] }, { - "depth": 2, - "gas": 1966445, - "gasCost": 3, + "pc": 1087, "op": "DUP3", - "pc": 1053, + "gas": 1963048, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13015,18 +13093,18 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x458", + "0x47a", "0xe0", "0x0", - "0x423" + "0x445" ] }, { - "depth": 2, - "gas": 1966442, - "gasCost": 3, + "pc": 1088, "op": "PUSH3", - "pc": 1054, + "gas": 1963045, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13040,19 +13118,19 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x458", + "0x47a", "0xe0", "0x0", - "0x423", + "0x445", "0xe0" ] }, { - "depth": 2, - "gas": 1966439, - "gasCost": 8, + "pc": 1092, "op": "JUMP", - "pc": 1058, + "gas": 1963042, + "gasCost": 8, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13066,20 +13144,20 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x458", + "0x47a", "0xe0", "0x0", - "0x423", + "0x445", "0xe0", - "0x3de" + "0x400" ] }, { - "depth": 2, - "gas": 1966431, - "gasCost": 1, + "pc": 1024, "op": "JUMPDEST", - "pc": 990, + "gas": 1963034, + "gasCost": 1, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13093,19 +13171,19 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x458", + "0x47a", "0xe0", "0x0", - "0x423", + "0x445", "0xe0" ] }, { - "depth": 2, - "gas": 1966430, - "gasCost": 3, + "pc": 1025, "op": "PUSH32", - "pc": 991, + "gas": 1963033, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13119,19 +13197,19 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x458", + "0x47a", "0xe0", "0x0", - "0x423", + "0x445", "0xe0" ] }, { - "depth": 2, - "gas": 1966427, - "gasCost": 3, + "pc": 1058, "op": "PUSH1", - "pc": 1024, + "gas": 1963030, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13145,20 +13223,20 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x458", + "0x47a", "0xe0", "0x0", - "0x423", + "0x445", "0xe0", "0x696e7465726e616c20746f706963000000000000000000000000000000000000" ] }, { - "depth": 2, - "gas": 1966424, - "gasCost": 3, + "pc": 1060, "op": "DUP3", - "pc": 1026, + "gas": 1963027, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13172,21 +13250,21 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x458", + "0x47a", "0xe0", "0x0", - "0x423", + "0x445", "0xe0", "0x696e7465726e616c20746f706963000000000000000000000000000000000000", "0x0" ] }, { - "depth": 2, - "gas": 1966421, - "gasCost": 3, + "pc": 1061, "op": "ADD", - "pc": 1027, + "gas": 1963024, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13200,10 +13278,10 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x458", + "0x47a", "0xe0", "0x0", - "0x423", + "0x445", "0xe0", "0x696e7465726e616c20746f706963000000000000000000000000000000000000", "0x0", @@ -13211,11 +13289,11 @@ ] }, { - "depth": 2, - "gas": 1966418, - "gasCost": 3, + "pc": 1062, "op": "MSTORE", - "pc": 1028, + "gas": 1963021, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13229,21 +13307,21 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x458", + "0x47a", "0xe0", "0x0", - "0x423", + "0x445", "0xe0", "0x696e7465726e616c20746f706963000000000000000000000000000000000000", "0xe0" ] }, { - "depth": 2, - "gas": 1966415, - "gasCost": 2, + "pc": 1063, "op": "POP", - "pc": 1029, + "gas": 1963018, + "gasCost": 2, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13257,19 +13335,19 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x458", + "0x47a", "0xe0", "0x0", - "0x423", + "0x445", "0xe0" ] }, { - "depth": 2, - "gas": 1966413, - "gasCost": 8, + "pc": 1064, "op": "JUMP", - "pc": 1030, + "gas": 1963016, + "gasCost": 8, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13283,18 +13361,18 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x458", + "0x47a", "0xe0", "0x0", - "0x423" + "0x445" ] }, { - "depth": 2, - "gas": 1966405, - "gasCost": 1, + "pc": 1093, "op": "JUMPDEST", - "pc": 1059, + "gas": 1963008, + "gasCost": 1, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13308,17 +13386,17 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x458", + "0x47a", "0xe0", "0x0" ] }, { - "depth": 2, - "gas": 1966404, - "gasCost": 3, + "pc": 1094, "op": "PUSH1", - "pc": 1060, + "gas": 1963007, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13332,17 +13410,17 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x458", + "0x47a", "0xe0", "0x0" ] }, { - "depth": 2, - "gas": 1966401, - "gasCost": 3, + "pc": 1096, "op": "DUP3", - "pc": 1062, + "gas": 1963004, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13356,18 +13434,18 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x458", + "0x47a", "0xe0", "0x0", "0x20" ] }, { - "depth": 2, - "gas": 1966398, - "gasCost": 3, + "pc": 1097, "op": "ADD", - "pc": 1063, + "gas": 1963001, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13381,7 +13459,7 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x458", + "0x47a", "0xe0", "0x0", "0x20", @@ -13389,11 +13467,11 @@ ] }, { - "depth": 2, - "gas": 1966395, - "gasCost": 3, + "pc": 1098, "op": "SWAP1", - "pc": 1064, + "gas": 1962998, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13407,18 +13485,18 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x458", + "0x47a", "0xe0", "0x0", "0x100" ] }, { - "depth": 2, - "gas": 1966392, - "gasCost": 2, + "pc": 1099, "op": "POP", - "pc": 1065, + "gas": 1962995, + "gasCost": 2, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13432,18 +13510,18 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x458", + "0x47a", "0xe0", "0x100", "0x0" ] }, { - "depth": 2, - "gas": 1966390, - "gasCost": 3, + "pc": 1100, "op": "SWAP2", - "pc": 1066, + "gas": 1962993, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13457,17 +13535,17 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x80", "0xc0", - "0x458", + "0x47a", "0xe0", "0x100" ] }, { - "depth": 2, - "gas": 1966387, - "gasCost": 3, + "pc": 1101, "op": "SWAP1", - "pc": 1067, + "gas": 1962990, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13483,15 +13561,15 @@ "0xc0", "0x100", "0xe0", - "0x458" + "0x47a" ] }, { - "depth": 2, - "gas": 1966384, - "gasCost": 2, + "pc": 1102, "op": "POP", - "pc": 1068, + "gas": 1962987, + "gasCost": 2, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13506,16 +13584,16 @@ "0x80", "0xc0", "0x100", - "0x458", + "0x47a", "0xe0" ] }, { - "depth": 2, - "gas": 1966382, - "gasCost": 8, + "pc": 1103, "op": "JUMP", - "pc": 1069, + "gas": 1962985, + "gasCost": 8, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13530,15 +13608,15 @@ "0x80", "0xc0", "0x100", - "0x458" + "0x47a" ] }, { - "depth": 2, - "gas": 1966374, - "gasCost": 1, + "pc": 1146, "op": "JUMPDEST", - "pc": 1112, + "gas": 1962977, + "gasCost": 1, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13556,11 +13634,11 @@ ] }, { - "depth": 2, - "gas": 1966373, - "gasCost": 3, + "pc": 1147, "op": "SWAP1", - "pc": 1113, + "gas": 1962976, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13578,11 +13656,11 @@ ] }, { - "depth": 2, - "gas": 1966370, - "gasCost": 2, + "pc": 1148, "op": "POP", - "pc": 1114, + "gas": 1962973, + "gasCost": 2, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13600,11 +13678,11 @@ ] }, { - "depth": 2, - "gas": 1966368, - "gasCost": 3, + "pc": 1149, "op": "SWAP3", - "pc": 1115, + "gas": 1962971, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13621,11 +13699,11 @@ ] }, { - "depth": 2, - "gas": 1966365, - "gasCost": 3, + "pc": 1150, "op": "SWAP2", - "pc": 1116, + "gas": 1962968, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13642,11 +13720,11 @@ ] }, { - "depth": 2, - "gas": 1966362, - "gasCost": 2, + "pc": 1151, "op": "POP", - "pc": 1117, + "gas": 1962965, + "gasCost": 2, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13663,11 +13741,11 @@ ] }, { - "depth": 2, - "gas": 1966360, - "gasCost": 2, + "pc": 1152, "op": "POP", - "pc": 1118, + "gas": 1962963, + "gasCost": 2, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13683,11 +13761,11 @@ ] }, { - "depth": 2, - "gas": 1966358, - "gasCost": 8, + "pc": 1153, "op": "JUMP", - "pc": 1119, + "gas": 1962961, + "gasCost": 8, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13702,11 +13780,11 @@ ] }, { - "depth": 2, - "gas": 1966350, - "gasCost": 1, - "op": "JUMPDEST", "pc": 435, + "op": "JUMPDEST", + "gas": 1962953, + "gasCost": 1, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13720,11 +13798,11 @@ ] }, { - "depth": 2, - "gas": 1966349, - "gasCost": 3, - "op": "PUSH1", "pc": 436, + "op": "PUSH1", + "gas": 1962952, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13738,11 +13816,11 @@ ] }, { - "depth": 2, - "gas": 1966346, - "gasCost": 3, - "op": "MLOAD", "pc": 438, + "op": "MLOAD", + "gas": 1962949, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13757,11 +13835,11 @@ ] }, { - "depth": 2, - "gas": 1966343, - "gasCost": 3, - "op": "DUP1", "pc": 439, + "op": "DUP1", + "gas": 1962946, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13776,11 +13854,11 @@ ] }, { - "depth": 2, - "gas": 1966340, - "gasCost": 3, - "op": "SWAP2", "pc": 440, + "op": "SWAP2", + "gas": 1962943, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13796,11 +13874,11 @@ ] }, { - "depth": 2, - "gas": 1966337, - "gasCost": 3, - "op": "SUB", "pc": 441, + "op": "SUB", + "gas": 1962940, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13816,11 +13894,11 @@ ] }, { - "depth": 2, - "gas": 1966334, - "gasCost": 3, - "op": "SWAP1", "pc": 442, + "op": "SWAP1", + "gas": 1962937, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13835,11 +13913,11 @@ ] }, { - "depth": 2, - "gas": 1966331, - "gasCost": 2149, - "op": "LOG2", "pc": 443, + "op": "LOG2", + "gas": 1962934, + "gasCost": 2149, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13854,11 +13932,11 @@ ] }, { - "depth": 2, - "gas": 1964182, - "gasCost": 3, - "op": "DUP2", "pc": 444, + "op": "DUP2", + "gas": 1960785, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13869,11 +13947,11 @@ ] }, { - "depth": 2, - "gas": 1964179, - "gasCost": 3, - "op": "PUSH1", "pc": 445, + "op": "PUSH1", + "gas": 1960782, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13885,11 +13963,11 @@ ] }, { - "depth": 2, - "gas": 1964176, - "gasCost": 3, - "op": "PUSH1", "pc": 447, + "op": "PUSH1", + "gas": 1960779, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13902,11 +13980,11 @@ ] }, { - "depth": 2, - "gas": 1964173, - "gasCost": 3, - "op": "DUP3", "pc": 449, + "op": "DUP3", + "gas": 1960776, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13920,11 +13998,11 @@ ] }, { - "depth": 2, - "gas": 1964170, - "gasCost": 3, - "op": "DUP3", "pc": 450, + "op": "DUP3", + "gas": 1960773, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13939,11 +14017,11 @@ ] }, { - "depth": 2, - "gas": 1964167, - "gasCost": 200, - "op": "SLOAD", "pc": 451, + "op": "SLOAD", + "gas": 1960770, + "gasCost": 2100, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13964,11 +14042,11 @@ } }, { - "depth": 2, - "gas": 1963967, - "gasCost": 3, - "op": "PUSH3", "pc": 452, + "op": "PUSH3", + "gas": 1958670, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -13984,11 +14062,11 @@ ] }, { - "depth": 2, - "gas": 1963964, - "gasCost": 3, - "op": "SWAP2", "pc": 456, + "op": "SWAP2", + "gas": 1958667, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14005,11 +14083,11 @@ ] }, { - "depth": 2, - "gas": 1963961, - "gasCost": 3, - "op": "SWAP1", "pc": 457, + "op": "SWAP1", + "gas": 1958664, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14026,11 +14104,11 @@ ] }, { - "depth": 2, - "gas": 1963958, - "gasCost": 3, - "op": "PUSH3", "pc": 458, + "op": "PUSH3", + "gas": 1958661, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14047,11 +14125,11 @@ ] }, { - "depth": 2, - "gas": 1963955, - "gasCost": 8, - "op": "JUMP", "pc": 462, + "op": "JUMP", + "gas": 1958658, + "gasCost": 8, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14069,11 +14147,11 @@ ] }, { - "depth": 2, - "gas": 1963947, - "gasCost": 1, - "op": "JUMPDEST", "pc": 931, + "op": "JUMPDEST", + "gas": 1958650, + "gasCost": 1, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14090,11 +14168,11 @@ ] }, { - "depth": 2, - "gas": 1963946, - "gasCost": 3, - "op": "PUSH1", "pc": 932, + "op": "PUSH1", + "gas": 1958649, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14111,11 +14189,11 @@ ] }, { - "depth": 2, - "gas": 1963943, - "gasCost": 3, - "op": "PUSH3", "pc": 934, + "op": "PUSH3", + "gas": 1958646, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14133,11 +14211,11 @@ ] }, { - "depth": 2, - "gas": 1963940, - "gasCost": 3, - "op": "DUP3", "pc": 938, + "op": "DUP3", + "gas": 1958643, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14156,11 +14234,11 @@ ] }, { - "depth": 2, - "gas": 1963937, - "gasCost": 3, - "op": "PUSH3", "pc": 939, + "op": "PUSH3", + "gas": 1958640, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14180,11 +14258,11 @@ ] }, { - "depth": 2, - "gas": 1963934, - "gasCost": 8, - "op": "JUMP", "pc": 943, + "op": "JUMP", + "gas": 1958637, + "gasCost": 8, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14205,11 +14283,11 @@ ] }, { - "depth": 2, - "gas": 1963926, - "gasCost": 1, - "op": "JUMPDEST", "pc": 727, + "op": "JUMPDEST", + "gas": 1958629, + "gasCost": 1, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14229,11 +14307,11 @@ ] }, { - "depth": 2, - "gas": 1963925, - "gasCost": 3, - "op": "PUSH1", "pc": 728, + "op": "PUSH1", + "gas": 1958628, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14253,11 +14331,11 @@ ] }, { - "depth": 2, - "gas": 1963922, - "gasCost": 3, - "op": "DUP2", "pc": 730, + "op": "DUP2", + "gas": 1958625, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14278,11 +14356,11 @@ ] }, { - "depth": 2, - "gas": 1963919, - "gasCost": 3, - "op": "SWAP1", "pc": 731, + "op": "SWAP1", + "gas": 1958622, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14304,11 +14382,11 @@ ] }, { - "depth": 2, - "gas": 1963916, - "gasCost": 2, - "op": "POP", "pc": 732, + "op": "POP", + "gas": 1958619, + "gasCost": 2, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14330,11 +14408,11 @@ ] }, { - "depth": 2, - "gas": 1963914, - "gasCost": 3, - "op": "SWAP2", "pc": 733, + "op": "SWAP2", + "gas": 1958617, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14355,11 +14433,11 @@ ] }, { - "depth": 2, - "gas": 1963911, - "gasCost": 3, - "op": "SWAP1", "pc": 734, + "op": "SWAP1", + "gas": 1958614, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14380,11 +14458,11 @@ ] }, { - "depth": 2, - "gas": 1963908, - "gasCost": 2, - "op": "POP", "pc": 735, + "op": "POP", + "gas": 1958611, + "gasCost": 2, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14405,11 +14483,11 @@ ] }, { - "depth": 2, - "gas": 1963906, - "gasCost": 8, - "op": "JUMP", "pc": 736, + "op": "JUMP", + "gas": 1958609, + "gasCost": 8, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14429,11 +14507,11 @@ ] }, { - "depth": 2, - "gas": 1963898, - "gasCost": 1, - "op": "JUMPDEST", "pc": 944, + "op": "JUMPDEST", + "gas": 1958601, + "gasCost": 1, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14452,11 +14530,11 @@ ] }, { - "depth": 2, - "gas": 1963897, - "gasCost": 3, - "op": "SWAP2", "pc": 945, + "op": "SWAP2", + "gas": 1958600, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14475,11 +14553,11 @@ ] }, { - "depth": 2, - "gas": 1963894, - "gasCost": 2, - "op": "POP", "pc": 946, + "op": "POP", + "gas": 1958597, + "gasCost": 2, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14498,11 +14576,11 @@ ] }, { - "depth": 2, - "gas": 1963892, - "gasCost": 3, - "op": "PUSH3", "pc": 947, + "op": "PUSH3", + "gas": 1958595, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14520,11 +14598,11 @@ ] }, { - "depth": 2, - "gas": 1963889, - "gasCost": 3, - "op": "DUP4", "pc": 951, + "op": "DUP4", + "gas": 1958592, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14543,11 +14621,11 @@ ] }, { - "depth": 2, - "gas": 1963886, - "gasCost": 3, - "op": "PUSH3", "pc": 952, + "op": "PUSH3", + "gas": 1958589, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14567,11 +14645,11 @@ ] }, { - "depth": 2, - "gas": 1963883, - "gasCost": 8, - "op": "JUMP", "pc": 956, + "op": "JUMP", + "gas": 1958586, + "gasCost": 8, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14592,11 +14670,11 @@ ] }, { - "depth": 2, - "gas": 1963875, - "gasCost": 1, - "op": "JUMPDEST", "pc": 727, + "op": "JUMPDEST", + "gas": 1958578, + "gasCost": 1, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14616,11 +14694,11 @@ ] }, { - "depth": 2, - "gas": 1963874, - "gasCost": 3, - "op": "PUSH1", "pc": 728, + "op": "PUSH1", + "gas": 1958577, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14640,11 +14718,11 @@ ] }, { - "depth": 2, - "gas": 1963871, - "gasCost": 3, - "op": "DUP2", "pc": 730, + "op": "DUP2", + "gas": 1958574, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14665,11 +14743,11 @@ ] }, { - "depth": 2, - "gas": 1963868, - "gasCost": 3, - "op": "SWAP1", "pc": 731, + "op": "SWAP1", + "gas": 1958571, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14691,11 +14769,11 @@ ] }, { - "depth": 2, - "gas": 1963865, - "gasCost": 2, - "op": "POP", "pc": 732, + "op": "POP", + "gas": 1958568, + "gasCost": 2, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14717,11 +14795,11 @@ ] }, { - "depth": 2, - "gas": 1963863, - "gasCost": 3, - "op": "SWAP2", "pc": 733, + "op": "SWAP2", + "gas": 1958566, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14742,11 +14820,11 @@ ] }, { - "depth": 2, - "gas": 1963860, - "gasCost": 3, - "op": "SWAP1", "pc": 734, + "op": "SWAP1", + "gas": 1958563, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14767,11 +14845,11 @@ ] }, { - "depth": 2, - "gas": 1963857, - "gasCost": 2, - "op": "POP", "pc": 735, + "op": "POP", + "gas": 1958560, + "gasCost": 2, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14792,11 +14870,11 @@ ] }, { - "depth": 2, - "gas": 1963855, - "gasCost": 8, - "op": "JUMP", "pc": 736, + "op": "JUMP", + "gas": 1958558, + "gasCost": 8, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14816,11 +14894,11 @@ ] }, { - "depth": 2, - "gas": 1963847, - "gasCost": 1, - "op": "JUMPDEST", "pc": 957, + "op": "JUMPDEST", + "gas": 1958550, + "gasCost": 1, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14839,11 +14917,11 @@ ] }, { - "depth": 2, - "gas": 1963846, - "gasCost": 3, - "op": "SWAP3", "pc": 958, + "op": "SWAP3", + "gas": 1958549, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14862,11 +14940,11 @@ ] }, { - "depth": 2, - "gas": 1963843, - "gasCost": 2, - "op": "POP", "pc": 959, + "op": "POP", + "gas": 1958546, + "gasCost": 2, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14885,11 +14963,11 @@ ] }, { - "depth": 2, - "gas": 1963841, - "gasCost": 3, - "op": "DUP3", "pc": 960, + "op": "DUP3", + "gas": 1958544, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14907,11 +14985,11 @@ ] }, { - "depth": 2, - "gas": 1963838, - "gasCost": 3, - "op": "DUP3", "pc": 961, + "op": "PUSH32", + "gas": 1958541, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14930,11 +15008,11 @@ ] }, { - "depth": 2, - "gas": 1963835, + "pc": 994, + "op": "SUB", + "gas": 1958538, "gasCost": 3, - "op": "ADD", - "pc": 962, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14950,15 +15028,15 @@ "0x0", "0x0", "0x1d6329f1c35ca4bfabb9f5610000000001", - "0x0" + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" ] }, { - "depth": 2, - "gas": 1963832, + "pc": 995, + "op": "DUP3", + "gas": 1958535, "gasCost": 3, - "op": "SWAP1", - "pc": 963, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14973,15 +15051,15 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x0", "0x0", - "0x1d6329f1c35ca4bfabb9f5610000000001" + "0xffffffffffffffffffffffffffffffe29cd60e3ca35b4054460a9efffffffffe" ] }, { + "pc": 996, + "op": "GT", + "gas": 1958532, + "gasCost": 3, "depth": 2, - "gas": 1963829, - "gasCost": 2, - "op": "POP", - "pc": 964, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -14995,16 +15073,63 @@ "0x1cf", "0x1d6329f1c35ca4bfabb9f5610000000001", "0x0", - "0x1d6329f1c35ca4bfabb9f5610000000001", + "0x0", + "0xffffffffffffffffffffffffffffffe29cd60e3ca35b4054460a9efffffffffe", "0x0" ] }, { + "pc": 997, + "op": "ISZERO", + "gas": 1958529, + "gasCost": 3, "depth": 2, - "gas": 1963827, + "stack": [ + "0xbc", + "0x1d6329f1c35ca4bfabb9f5610000000000", + "0x0", + "0x14e", + "0x1d6329f1c35ca4bfabb9f5610000000001", + "0x0", + "0x1d6329f1c35ca4bfabb9f5610000000001", + "0x2", + "0x0", + "0x1cf", + "0x1d6329f1c35ca4bfabb9f5610000000001", + "0x0", + "0x0", + "0x0" + ] + }, + { + "pc": 998, + "op": "PUSH3", + "gas": 1958526, "gasCost": 3, - "op": "DUP1", - "pc": 965, + "depth": 2, + "stack": [ + "0xbc", + "0x1d6329f1c35ca4bfabb9f5610000000000", + "0x0", + "0x14e", + "0x1d6329f1c35ca4bfabb9f5610000000001", + "0x0", + "0x1d6329f1c35ca4bfabb9f5610000000001", + "0x2", + "0x0", + "0x1cf", + "0x1d6329f1c35ca4bfabb9f5610000000001", + "0x0", + "0x0", + "0x1" + ] + }, + { + "pc": 1002, + "op": "JUMPI", + "gas": 1958523, + "gasCost": 10, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15018,15 +15143,17 @@ "0x1cf", "0x1d6329f1c35ca4bfabb9f5610000000001", "0x0", - "0x1d6329f1c35ca4bfabb9f5610000000001" + "0x0", + "0x1", + "0x3f5" ] }, { + "pc": 1013, + "op": "JUMPDEST", + "gas": 1958513, + "gasCost": 1, "depth": 2, - "gas": 1963824, - "gasCost": 3, - "op": "DUP3", - "pc": 966, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15040,16 +15167,15 @@ "0x1cf", "0x1d6329f1c35ca4bfabb9f5610000000001", "0x0", - "0x1d6329f1c35ca4bfabb9f5610000000001", - "0x1d6329f1c35ca4bfabb9f5610000000001" + "0x0" ] }, { - "depth": 2, - "gas": 1963821, + "pc": 1014, + "op": "DUP3", + "gas": 1958512, "gasCost": 3, - "op": "GT", - "pc": 967, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15063,17 +15189,15 @@ "0x1cf", "0x1d6329f1c35ca4bfabb9f5610000000001", "0x0", - "0x1d6329f1c35ca4bfabb9f5610000000001", - "0x1d6329f1c35ca4bfabb9f5610000000001", "0x0" ] }, { - "depth": 2, - "gas": 1963818, + "pc": 1015, + "op": "DUP3", + "gas": 1958509, "gasCost": 3, - "op": "ISZERO", - "pc": 968, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15087,16 +15211,16 @@ "0x1cf", "0x1d6329f1c35ca4bfabb9f5610000000001", "0x0", - "0x1d6329f1c35ca4bfabb9f5610000000001", - "0x0" + "0x0", + "0x1d6329f1c35ca4bfabb9f5610000000001" ] }, { - "depth": 2, - "gas": 1963815, + "pc": 1016, + "op": "ADD", + "gas": 1958506, "gasCost": 3, - "op": "PUSH3", - "pc": 969, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15110,16 +15234,17 @@ "0x1cf", "0x1d6329f1c35ca4bfabb9f5610000000001", "0x0", + "0x0", "0x1d6329f1c35ca4bfabb9f5610000000001", - "0x1" + "0x0" ] }, { + "pc": 1017, + "op": "SWAP1", + "gas": 1958503, + "gasCost": 3, "depth": 2, - "gas": 1963812, - "gasCost": 10, - "op": "JUMPI", - "pc": 973, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15133,17 +15258,16 @@ "0x1cf", "0x1d6329f1c35ca4bfabb9f5610000000001", "0x0", - "0x1d6329f1c35ca4bfabb9f5610000000001", - "0x1", - "0x3d8" + "0x0", + "0x1d6329f1c35ca4bfabb9f5610000000001" ] }, { + "pc": 1018, + "op": "POP", + "gas": 1958500, + "gasCost": 2, "depth": 2, - "gas": 1963802, - "gasCost": 1, - "op": "JUMPDEST", - "pc": 984, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15157,15 +15281,16 @@ "0x1cf", "0x1d6329f1c35ca4bfabb9f5610000000001", "0x0", - "0x1d6329f1c35ca4bfabb9f5610000000001" + "0x1d6329f1c35ca4bfabb9f5610000000001", + "0x0" ] }, { - "depth": 2, - "gas": 1963801, - "gasCost": 3, + "pc": 1019, "op": "SWAP3", - "pc": 985, + "gas": 1958498, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15183,11 +15308,11 @@ ] }, { - "depth": 2, - "gas": 1963798, - "gasCost": 3, + "pc": 1020, "op": "SWAP2", - "pc": 986, + "gas": 1958495, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15205,11 +15330,11 @@ ] }, { - "depth": 2, - "gas": 1963795, - "gasCost": 2, + "pc": 1021, "op": "POP", - "pc": 987, + "gas": 1958492, + "gasCost": 2, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15227,11 +15352,11 @@ ] }, { - "depth": 2, - "gas": 1963793, - "gasCost": 2, + "pc": 1022, "op": "POP", - "pc": 988, + "gas": 1958490, + "gasCost": 2, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15248,11 +15373,11 @@ ] }, { - "depth": 2, - "gas": 1963791, - "gasCost": 8, + "pc": 1023, "op": "JUMP", - "pc": 989, + "gas": 1958488, + "gasCost": 8, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15268,11 +15393,11 @@ ] }, { - "depth": 2, - "gas": 1963783, - "gasCost": 1, - "op": "JUMPDEST", "pc": 463, + "op": "JUMPDEST", + "gas": 1958480, + "gasCost": 1, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15287,11 +15412,11 @@ ] }, { - "depth": 2, - "gas": 1963782, - "gasCost": 3, - "op": "SWAP3", "pc": 464, + "op": "SWAP3", + "gas": 1958479, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15306,11 +15431,11 @@ ] }, { - "depth": 2, - "gas": 1963779, - "gasCost": 2, - "op": "POP", "pc": 465, + "op": "POP", + "gas": 1958476, + "gasCost": 2, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15325,11 +15450,11 @@ ] }, { - "depth": 2, - "gas": 1963777, - "gasCost": 2, - "op": "POP", "pc": 466, + "op": "POP", + "gas": 1958474, + "gasCost": 2, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15343,11 +15468,11 @@ ] }, { - "depth": 2, - "gas": 1963775, - "gasCost": 3, - "op": "DUP2", "pc": 467, + "op": "DUP2", + "gas": 1958472, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15360,11 +15485,11 @@ ] }, { - "depth": 2, - "gas": 1963772, - "gasCost": 3, - "op": "SWAP1", "pc": 468, + "op": "SWAP1", + "gas": 1958469, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15378,11 +15503,11 @@ ] }, { - "depth": 2, - "gas": 1963769, - "gasCost": 20000, - "op": "SSTORE", "pc": 469, + "op": "SSTORE", + "gas": 1958466, + "gasCost": 20000, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15401,11 +15526,11 @@ } }, { - "depth": 2, - "gas": 1943769, - "gasCost": 2, - "op": "POP", "pc": 470, + "op": "POP", + "gas": 1938466, + "gasCost": 2, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15417,11 +15542,11 @@ ] }, { - "depth": 2, - "gas": 1943767, - "gasCost": 3, - "op": "PUSH1", "pc": 471, + "op": "PUSH1", + "gas": 1938464, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15432,11 +15557,11 @@ ] }, { - "depth": 2, - "gas": 1943764, - "gasCost": 3, - "op": "SWAP1", "pc": 473, + "op": "SWAP1", + "gas": 1938461, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15448,11 +15573,11 @@ ] }, { - "depth": 2, - "gas": 1943761, - "gasCost": 2, - "op": "POP", "pc": 474, + "op": "POP", + "gas": 1938458, + "gasCost": 2, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15464,11 +15589,11 @@ ] }, { - "depth": 2, - "gas": 1943759, - "gasCost": 3, - "op": "SWAP2", "pc": 475, + "op": "SWAP2", + "gas": 1938456, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15479,11 +15604,11 @@ ] }, { - "depth": 2, - "gas": 1943756, - "gasCost": 3, - "op": "SWAP1", "pc": 476, + "op": "SWAP1", + "gas": 1938453, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15494,11 +15619,11 @@ ] }, { - "depth": 2, - "gas": 1943753, - "gasCost": 2, - "op": "POP", "pc": 477, + "op": "POP", + "gas": 1938450, + "gasCost": 2, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15509,11 +15634,11 @@ ] }, { - "depth": 2, - "gas": 1943751, - "gasCost": 8, - "op": "JUMP", "pc": 478, + "op": "JUMP", + "gas": 1938448, + "gasCost": 8, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15523,11 +15648,11 @@ ] }, { - "depth": 2, - "gas": 1943743, - "gasCost": 1, - "op": "JUMPDEST", "pc": 334, + "op": "JUMPDEST", + "gas": 1938440, + "gasCost": 1, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15536,11 +15661,11 @@ ] }, { - "depth": 2, - "gas": 1943742, - "gasCost": 2, - "op": "POP", "pc": 335, + "op": "POP", + "gas": 1938439, + "gasCost": 2, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15549,11 +15674,11 @@ ] }, { - "depth": 2, - "gas": 1943740, - "gasCost": 3, - "op": "PUSH3", "pc": 336, + "op": "PUSH3", + "gas": 1938437, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15561,11 +15686,11 @@ ] }, { - "depth": 2, - "gas": 1943737, - "gasCost": 3, - "op": "PUSH3", "pc": 340, + "op": "PUSH3", + "gas": 1938434, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15574,11 +15699,11 @@ ] }, { - "depth": 2, - "gas": 1943734, - "gasCost": 3, - "op": "PUSH1", "pc": 344, + "op": "PUSH1", + "gas": 1938431, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15588,11 +15713,11 @@ ] }, { - "depth": 2, - "gas": 1943731, - "gasCost": 3, - "op": "SHL", "pc": 346, + "op": "SHL", + "gas": 1938428, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15603,11 +15728,11 @@ ] }, { - "depth": 2, - "gas": 1943728, - "gasCost": 3, - "op": "PUSH1", "pc": 347, + "op": "PUSH1", + "gas": 1938425, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15617,11 +15742,11 @@ ] }, { - "depth": 2, - "gas": 1943725, - "gasCost": 3, - "op": "SHR", "pc": 349, + "op": "SHR", + "gas": 1938422, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15632,11 +15757,11 @@ ] }, { - "depth": 2, - "gas": 1943722, - "gasCost": 8, - "op": "JUMP", "pc": 350, + "op": "JUMP", + "gas": 1938419, + "gasCost": 8, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15646,11 +15771,11 @@ ] }, { - "depth": 2, - "gas": 1943714, - "gasCost": 1, - "op": "JUMPDEST", "pc": 479, + "op": "JUMPDEST", + "gas": 1938411, + "gasCost": 1, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15659,11 +15784,11 @@ ] }, { - "depth": 2, - "gas": 1943713, - "gasCost": 3, - "op": "PUSH1", "pc": 480, + "op": "PUSH1", + "gas": 1938410, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15672,11 +15797,11 @@ ] }, { - "depth": 2, - "gas": 1943710, - "gasCost": 3, - "op": "DUP1", "pc": 482, + "op": "DUP1", + "gas": 1938407, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15686,11 +15811,11 @@ ] }, { - "depth": 2, - "gas": 1943707, - "gasCost": 3, - "op": "PUSH1", "pc": 483, + "op": "PUSH1", + "gas": 1938404, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15701,11 +15826,11 @@ ] }, { - "depth": 2, - "gas": 1943704, - "gasCost": 3, - "op": "MLOAD", "pc": 485, + "op": "MLOAD", + "gas": 1938401, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15717,11 +15842,11 @@ ] }, { - "depth": 2, - "gas": 1943701, - "gasCost": 3, - "op": "DUP1", "pc": 486, + "op": "DUP1", + "gas": 1938398, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15733,11 +15858,11 @@ ] }, { - "depth": 2, - "gas": 1943698, - "gasCost": 3, - "op": "PUSH1", "pc": 487, + "op": "PUSH1", + "gas": 1938395, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15750,11 +15875,11 @@ ] }, { - "depth": 2, - "gas": 1943695, - "gasCost": 3, - "op": "ADD", "pc": 489, + "op": "ADD", + "gas": 1938392, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15768,11 +15893,11 @@ ] }, { - "depth": 2, - "gas": 1943692, - "gasCost": 3, - "op": "PUSH1", "pc": 490, + "op": "PUSH1", + "gas": 1938389, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15785,11 +15910,11 @@ ] }, { - "depth": 2, - "gas": 1943689, - "gasCost": 3, - "op": "MSTORE", "pc": 492, + "op": "MSTORE", + "gas": 1938386, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15803,11 +15928,11 @@ ] }, { - "depth": 2, - "gas": 1943686, - "gasCost": 3, - "op": "DUP1", "pc": 493, + "op": "DUP1", + "gas": 1938383, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15819,11 +15944,11 @@ ] }, { - "depth": 2, - "gas": 1943683, - "gasCost": 3, - "op": "PUSH1", "pc": 494, + "op": "PUSH1", + "gas": 1938380, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15836,11 +15961,11 @@ ] }, { - "depth": 2, - "gas": 1943680, - "gasCost": 3, - "op": "DUP2", "pc": 496, + "op": "DUP2", + "gas": 1938377, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15854,11 +15979,11 @@ ] }, { - "depth": 2, - "gas": 1943677, - "gasCost": 3, - "op": "MSTORE", "pc": 497, + "op": "MSTORE", + "gas": 1938374, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15873,11 +15998,11 @@ ] }, { - "depth": 2, - "gas": 1943674, - "gasCost": 3, - "op": "PUSH1", "pc": 498, + "op": "PUSH1", + "gas": 1938371, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15890,11 +16015,11 @@ ] }, { - "depth": 2, - "gas": 1943671, - "gasCost": 3, - "op": "ADD", "pc": 500, + "op": "ADD", + "gas": 1938368, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15908,11 +16033,11 @@ ] }, { - "depth": 2, - "gas": 1943668, - "gasCost": 3, - "op": "PUSH32", "pc": 501, + "op": "PUSH32", + "gas": 1938365, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15925,11 +16050,11 @@ ] }, { - "depth": 2, - "gas": 1943665, - "gasCost": 3, - "op": "DUP2", "pc": 534, + "op": "DUP2", + "gas": 1938362, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15943,11 +16068,11 @@ ] }, { - "depth": 2, - "gas": 1943662, - "gasCost": 3, - "op": "MSTORE", "pc": 535, + "op": "MSTORE", + "gas": 1938359, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15962,11 +16087,11 @@ ] }, { - "depth": 2, - "gas": 1943659, - "gasCost": 2, - "op": "POP", "pc": 536, + "op": "POP", + "gas": 1938356, + "gasCost": 2, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15979,11 +16104,11 @@ ] }, { - "depth": 2, - "gas": 1943657, - "gasCost": 3, - "op": "SWAP1", "pc": 537, + "op": "SWAP1", + "gas": 1938354, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -15995,11 +16120,11 @@ ] }, { - "depth": 2, - "gas": 1943654, - "gasCost": 2, - "op": "POP", "pc": 538, + "op": "POP", + "gas": 1938351, + "gasCost": 2, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -16011,11 +16136,11 @@ ] }, { - "depth": 2, - "gas": 1943652, - "gasCost": 3, - "op": "PUSH1", "pc": 539, + "op": "PUSH1", + "gas": 1938349, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -16026,11 +16151,11 @@ ] }, { - "depth": 2, - "gas": 1943649, - "gasCost": 3, - "op": "DUP2", "pc": 541, + "op": "DUP2", + "gas": 1938346, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -16042,11 +16167,11 @@ ] }, { - "depth": 2, - "gas": 1943646, - "gasCost": 3, - "op": "DUP1", "pc": 542, + "op": "DUP1", + "gas": 1938343, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -16059,11 +16184,11 @@ ] }, { - "depth": 2, - "gas": 1943643, - "gasCost": 3, - "op": "MLOAD", "pc": 543, + "op": "MLOAD", + "gas": 1938340, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -16077,11 +16202,11 @@ ] }, { - "depth": 2, - "gas": 1943640, - "gasCost": 3, - "op": "SWAP1", "pc": 544, + "op": "SWAP1", + "gas": 1938337, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -16095,11 +16220,11 @@ ] }, { - "depth": 2, - "gas": 1943637, - "gasCost": 3, - "op": "PUSH1", "pc": 545, + "op": "PUSH1", + "gas": 1938334, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -16113,11 +16238,11 @@ ] }, { - "depth": 2, - "gas": 1943634, - "gasCost": 3, - "op": "ADD", "pc": 547, + "op": "ADD", + "gas": 1938331, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -16132,11 +16257,11 @@ ] }, { - "depth": 2, - "gas": 1943631, - "gasCost": 36, - "op": "KECCAK256", "pc": 548, + "op": "KECCAK256", + "gas": 1938328, + "gasCost": 36, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -16150,11 +16275,11 @@ ] }, { - "depth": 2, - "gas": 1943595, - "gasCost": 3, - "op": "SWAP1", "pc": 549, + "op": "SWAP1", + "gas": 1938292, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -16167,11 +16292,11 @@ ] }, { - "depth": 2, - "gas": 1943592, - "gasCost": 2, - "op": "POP", "pc": 550, + "op": "POP", + "gas": 1938289, + "gasCost": 2, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -16184,11 +16309,11 @@ ] }, { - "depth": 2, - "gas": 1943590, - "gasCost": 3, - "op": "DUP1", "pc": 551, + "op": "DUP1", + "gas": 1938287, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -16200,11 +16325,11 @@ ] }, { - "depth": 2, - "gas": 1943587, - "gasCost": 3, - "op": "SWAP3", "pc": 552, + "op": "SWAP3", + "gas": 1938284, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -16217,11 +16342,11 @@ ] }, { - "depth": 2, - "gas": 1943584, - "gasCost": 2, - "op": "POP", "pc": 553, + "op": "POP", + "gas": 1938281, + "gasCost": 2, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -16234,11 +16359,11 @@ ] }, { - "depth": 2, - "gas": 1943582, - "gasCost": 2, - "op": "POP", "pc": 554, + "op": "POP", + "gas": 1938279, + "gasCost": 2, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -16250,11 +16375,11 @@ ] }, { - "depth": 2, - "gas": 1943580, - "gasCost": 2, - "op": "POP", "pc": 555, + "op": "POP", + "gas": 1938277, + "gasCost": 2, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -16265,11 +16390,11 @@ ] }, { - "depth": 2, - "gas": 1943578, - "gasCost": 3, - "op": "SWAP1", "pc": 556, + "op": "SWAP1", + "gas": 1938275, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -16279,11 +16404,11 @@ ] }, { - "depth": 2, - "gas": 1943575, - "gasCost": 8, - "op": "JUMP", "pc": 557, + "op": "JUMP", + "gas": 1938272, + "gasCost": 8, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -16293,11 +16418,11 @@ ] }, { - "depth": 2, - "gas": 1943567, - "gasCost": 1, - "op": "JUMPDEST", "pc": 351, + "op": "JUMPDEST", + "gas": 1938264, + "gasCost": 1, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -16306,11 +16431,11 @@ ] }, { - "depth": 2, - "gas": 1943566, - "gasCost": 2, - "op": "POP", "pc": 352, + "op": "POP", + "gas": 1938263, + "gasCost": 2, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -16319,11 +16444,11 @@ ] }, { - "depth": 2, - "gas": 1943564, - "gasCost": 3, - "op": "PUSH1", "pc": 353, + "op": "PUSH1", + "gas": 1938261, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -16331,11 +16456,11 @@ ] }, { - "depth": 2, - "gas": 1943561, - "gasCost": 3, - "op": "SWAP1", "pc": 355, + "op": "SWAP1", + "gas": 1938258, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -16344,11 +16469,11 @@ ] }, { - "depth": 2, - "gas": 1943558, - "gasCost": 2, - "op": "POP", "pc": 356, + "op": "POP", + "gas": 1938255, + "gasCost": 2, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -16357,11 +16482,11 @@ ] }, { - "depth": 2, - "gas": 1943556, - "gasCost": 3, - "op": "SWAP2", "pc": 357, + "op": "SWAP2", + "gas": 1938253, + "gasCost": 3, + "depth": 2, "stack": [ "0xbc", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -16369,11 +16494,11 @@ ] }, { - "depth": 2, - "gas": 1943553, - "gasCost": 3, - "op": "SWAP1", "pc": 358, + "op": "SWAP1", + "gas": 1938250, + "gasCost": 3, + "depth": 2, "stack": [ "0x1", "0x1d6329f1c35ca4bfabb9f5610000000000", @@ -16381,11 +16506,11 @@ ] }, { - "depth": 2, - "gas": 1943550, - "gasCost": 2, - "op": "POP", "pc": 359, + "op": "POP", + "gas": 1938247, + "gasCost": 2, + "depth": 2, "stack": [ "0x1", "0xbc", @@ -16393,350 +16518,350 @@ ] }, { - "depth": 2, - "gas": 1943548, - "gasCost": 8, - "op": "JUMP", "pc": 360, + "op": "JUMP", + "gas": 1938245, + "gasCost": 8, + "depth": 2, "stack": [ "0x1", "0xbc" ] }, { - "depth": 2, - "gas": 1943540, - "gasCost": 1, - "op": "JUMPDEST", "pc": 188, + "op": "JUMPDEST", + "gas": 1938237, + "gasCost": 1, + "depth": 2, "stack": [ "0x1" ] }, { - "depth": 2, - "gas": 1943539, - "gasCost": 2, - "op": "POP", "pc": 189, + "op": "POP", + "gas": 1938236, + "gasCost": 2, + "depth": 2, "stack": [ "0x1" ] }, { - "depth": 2, - "gas": 1943537, - "gasCost": 3, - "op": "PUSH3", "pc": 190, + "op": "PUSH3", + "gas": 1938234, + "gasCost": 3, + "depth": 2, "stack": [] }, { - "depth": 2, - "gas": 1943534, - "gasCost": 8, - "op": "JUMP", "pc": 194, + "op": "JUMP", + "gas": 1938231, + "gasCost": 8, + "depth": 2, "stack": [ - "0x460" + "0x482" ] }, { - "depth": 2, - "gas": 1943526, - "gasCost": 1, + "pc": 1154, "op": "JUMPDEST", - "pc": 1120, + "gas": 1938223, + "gasCost": 1, + "depth": 2, "stack": [] }, { - "depth": 2, - "gas": 1943525, - "gasCost": 3, + "pc": 1155, "op": "PUSH2", - "pc": 1121, + "gas": 1938222, + "gasCost": 3, + "depth": 2, "stack": [] }, { - "depth": 2, - "gas": 1943522, - "gasCost": 3, + "pc": 1158, "op": "DUP1", - "pc": 1124, + "gas": 1938219, + "gasCost": 3, + "depth": 2, "stack": [ - "0x62f" + "0x651" ] }, { - "depth": 2, - "gas": 1943519, - "gasCost": 3, + "pc": 1159, "op": "PUSH3", - "pc": 1125, + "gas": 1938216, + "gasCost": 3, + "depth": 2, "stack": [ - "0x62f", - "0x62f" + "0x651", + "0x651" ] }, { - "depth": 2, - "gas": 1943516, - "gasCost": 3, + "pc": 1163, "op": "PUSH1", - "pc": 1129, + "gas": 1938213, + "gasCost": 3, + "depth": 2, "stack": [ - "0x62f", - "0x62f", - "0x470" + "0x651", + "0x651", + "0x492" ] }, { - "depth": 2, - "gas": 1943513, - "gasCost": 283, + "pc": 1165, "op": "CODECOPY", - "pc": 1131, + "gas": 1938210, + "gasCost": 290, + "depth": 2, "stack": [ - "0x62f", - "0x62f", - "0x470", + "0x651", + "0x651", + "0x492", "0x0" ] }, { - "depth": 2, - "gas": 1943230, - "gasCost": 3, + "pc": 1166, "op": "PUSH1", - "pc": 1132, + "gas": 1937920, + "gasCost": 3, + "depth": 2, "stack": [ - "0x62f" + "0x651" ] }, { - "depth": 2, - "gas": 1943227, - "gasCost": 0, + "pc": 1168, "op": "RETURN", - "pc": 1134, + "gas": 1937917, + "gasCost": 0, + "depth": 2, "stack": [ - "0x62f", + "0x651", "0x0" ] }, { - "depth": 1, - "gas": 1658546, - "gasCost": 3, - "op": "DUP1", "pc": 865, + "op": "DUP1", + "gas": 1646438, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759" + "0x61a286b8e87e2d31c475d71c85a0020584c44bae" ] }, { - "depth": 1, - "gas": 1658543, - "gasCost": 3, - "op": "ISZERO", "pc": 866, + "op": "ISZERO", + "gas": 1646435, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", - "0x5b659fd8bdc52879d0c3697038537da40832b759" + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae" ] }, { - "depth": 1, - "gas": 1658540, - "gasCost": 3, - "op": "DUP1", "pc": 867, + "op": "DUP1", + "gas": 1646432, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0x0" ] }, { - "depth": 1, - "gas": 1658537, - "gasCost": 3, - "op": "ISZERO", "pc": 868, + "op": "ISZERO", + "gas": 1646429, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0x0", "0x0" ] }, { - "depth": 1, - "gas": 1658534, - "gasCost": 3, - "op": "PUSH3", "pc": 869, + "op": "PUSH3", + "gas": 1646426, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0x0", "0x1" ] }, { - "depth": 1, - "gas": 1658531, - "gasCost": 10, - "op": "JUMPI", "pc": 873, + "op": "JUMPI", + "gas": 1646423, + "gasCost": 10, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0x0", "0x1", "0x373" ] }, { - "depth": 1, - "gas": 1658521, - "gasCost": 1, - "op": "JUMPDEST", "pc": 883, + "op": "JUMPDEST", + "gas": 1646413, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0x0" ] }, { - "depth": 1, - "gas": 1658520, - "gasCost": 2, - "op": "POP", "pc": 884, + "op": "POP", + "gas": 1646412, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0x0" ] }, { - "depth": 1, - "gas": 1658518, - "gasCost": 3, - "op": "PUSH1", "pc": 885, + "op": "PUSH1", + "gas": 1646410, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759" + "0x61a286b8e87e2d31c475d71c85a0020584c44bae" ] }, { - "depth": 1, - "gas": 1658515, - "gasCost": 3, - "op": "DUP1", "pc": 887, + "op": "DUP1", + "gas": 1646407, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0x0" ] }, { - "depth": 1, - "gas": 1658512, - "gasCost": 3, - "op": "PUSH2", "pc": 888, + "op": "PUSH2", + "gas": 1646404, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0x0", "0x0" ] }, { - "depth": 1, - "gas": 1658509, - "gasCost": 10, - "op": "EXP", "pc": 891, + "op": "EXP", + "gas": 1646401, + "gasCost": 10, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0x0", "0x0", "0x100" ] }, { - "depth": 1, - "gas": 1658499, - "gasCost": 3, - "op": "DUP2", "pc": 892, + "op": "DUP2", + "gas": 1646391, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0x0", "0x1" ] }, { - "depth": 1, - "gas": 1658496, - "gasCost": 200, - "op": "SLOAD", "pc": 893, + "op": "SLOAD", + "gas": 1646388, + "gasCost": 2100, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0x0", "0x1", "0x0" @@ -16746,34 +16871,34 @@ } }, { - "depth": 1, - "gas": 1658296, - "gasCost": 3, - "op": "DUP2", "pc": 894, + "op": "DUP2", + "gas": 1644288, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0x0", "0x1", "0x0" ] }, { - "depth": 1, - "gas": 1658293, - "gasCost": 3, - "op": "PUSH20", "pc": 895, + "op": "PUSH20", + "gas": 1644285, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0x0", "0x1", "0x0", @@ -16781,17 +16906,17 @@ ] }, { - "depth": 1, - "gas": 1658290, - "gasCost": 5, - "op": "MUL", "pc": 916, + "op": "MUL", + "gas": 1644282, + "gasCost": 5, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0x0", "0x1", "0x0", @@ -16800,17 +16925,17 @@ ] }, { - "depth": 1, - "gas": 1658285, - "gasCost": 3, - "op": "NOT", "pc": 917, + "op": "NOT", + "gas": 1644277, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0x0", "0x1", "0x0", @@ -16818,17 +16943,17 @@ ] }, { - "depth": 1, - "gas": 1658282, - "gasCost": 3, - "op": "AND", "pc": 918, + "op": "AND", + "gas": 1644274, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0x0", "0x1", "0x0", @@ -16836,166 +16961,166 @@ ] }, { - "depth": 1, - "gas": 1658279, - "gasCost": 3, - "op": "SWAP1", "pc": 919, + "op": "SWAP1", + "gas": 1644271, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0x0", "0x1", "0x0" ] }, { - "depth": 1, - "gas": 1658276, - "gasCost": 3, - "op": "DUP4", "pc": 920, + "op": "DUP4", + "gas": 1644268, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0x0", "0x0", "0x1" ] }, { - "depth": 1, - "gas": 1658273, - "gasCost": 3, - "op": "PUSH20", "pc": 921, + "op": "PUSH20", + "gas": 1644265, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0x0", "0x0", "0x1", - "0x5b659fd8bdc52879d0c3697038537da40832b759" + "0x61a286b8e87e2d31c475d71c85a0020584c44bae" ] }, { - "depth": 1, - "gas": 1658270, - "gasCost": 3, - "op": "AND", "pc": 942, + "op": "AND", + "gas": 1644262, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0x0", "0x0", "0x1", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xffffffffffffffffffffffffffffffffffffffff" ] }, { - "depth": 1, - "gas": 1658267, - "gasCost": 5, - "op": "MUL", "pc": 943, + "op": "MUL", + "gas": 1644259, + "gasCost": 5, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0x0", "0x0", "0x1", - "0x5b659fd8bdc52879d0c3697038537da40832b759" + "0x61a286b8e87e2d31c475d71c85a0020584c44bae" ] }, { - "depth": 1, - "gas": 1658262, - "gasCost": 3, - "op": "OR", "pc": 944, + "op": "OR", + "gas": 1644254, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0x0", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759" + "0x61a286b8e87e2d31c475d71c85a0020584c44bae" ] }, { - "depth": 1, - "gas": 1658259, - "gasCost": 3, - "op": "SWAP1", "pc": 945, + "op": "SWAP1", + "gas": 1644251, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759" + "0x61a286b8e87e2d31c475d71c85a0020584c44bae" ] }, { - "depth": 1, - "gas": 1658256, - "gasCost": 20000, - "op": "SSTORE", "pc": 946, + "op": "SSTORE", + "gas": 1644248, + "gasCost": 20000, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0x0" ], "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "0000000000000000000000005b659fd8bdc52879d0c3697038537da40832b759" + "0000000000000000000000000000000000000000000000000000000000000000": "00000000000000000000000061a286b8e87e2d31c475d71c85a0020584c44bae" } }, { - "depth": 1, - "gas": 1638256, - "gasCost": 2, - "op": "POP", "pc": 947, + "op": "POP", + "gas": 1624248, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759" + "0x61a286b8e87e2d31c475d71c85a0020584c44bae" ] }, { - "depth": 1, - "gas": 1638254, - "gasCost": 3, - "op": "DUP2", "pc": 948, + "op": "DUP2", + "gas": 1624246, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -17004,11 +17129,11 @@ ] }, { - "depth": 1, - "gas": 1638251, - "gasCost": 3, - "op": "PUSH1", "pc": 949, + "op": "PUSH1", + "gas": 1624243, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -17018,11 +17143,11 @@ ] }, { - "depth": 1, - "gas": 1638248, - "gasCost": 3, - "op": "PUSH1", "pc": 951, + "op": "PUSH1", + "gas": 1624240, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -17033,11 +17158,11 @@ ] }, { - "depth": 1, - "gas": 1638245, - "gasCost": 3, - "op": "DUP3", "pc": 953, + "op": "DUP3", + "gas": 1624237, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -17049,11 +17174,11 @@ ] }, { - "depth": 1, - "gas": 1638242, - "gasCost": 3, - "op": "DUP3", "pc": 954, + "op": "DUP3", + "gas": 1624234, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -17066,11 +17191,11 @@ ] }, { - "depth": 1, - "gas": 1638239, - "gasCost": 200, - "op": "SLOAD", "pc": 955, + "op": "SLOAD", + "gas": 1624231, + "gasCost": 2100, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -17083,16 +17208,16 @@ "0x1" ], "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "0000000000000000000000005b659fd8bdc52879d0c3697038537da40832b759", + "0000000000000000000000000000000000000000000000000000000000000000": "00000000000000000000000061a286b8e87e2d31c475d71c85a0020584c44bae", "0000000000000000000000000000000000000000000000000000000000000001": "0000000000000000000000000000000000000000000000000000000000000000" } }, { - "depth": 1, - "gas": 1638039, - "gasCost": 3, - "op": "PUSH3", "pc": 956, + "op": "PUSH3", + "gas": 1622131, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -17106,11 +17231,11 @@ ] }, { - "depth": 1, - "gas": 1638036, - "gasCost": 3, - "op": "SWAP2", "pc": 960, + "op": "SWAP2", + "gas": 1622128, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -17125,11 +17250,11 @@ ] }, { - "depth": 1, - "gas": 1638033, - "gasCost": 3, - "op": "SWAP1", "pc": 961, + "op": "SWAP1", + "gas": 1622125, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -17144,11 +17269,11 @@ ] }, { - "depth": 1, - "gas": 1638030, - "gasCost": 3, - "op": "PUSH3", "pc": 962, + "op": "PUSH3", + "gas": 1622122, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -17163,11 +17288,11 @@ ] }, { - "depth": 1, - "gas": 1638027, - "gasCost": 8, - "op": "JUMP", "pc": 966, + "op": "JUMP", + "gas": 1622119, + "gasCost": 8, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -17179,15 +17304,15 @@ "0x3c7", "0x3e8", "0x0", - "0xb95" + "0xbb7" ] }, { - "depth": 1, - "gas": 1638019, - "gasCost": 1, + "pc": 2999, "op": "JUMPDEST", - "pc": 2965, + "gas": 1622111, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -17202,11 +17327,11 @@ ] }, { - "depth": 1, - "gas": 1638018, - "gasCost": 3, + "pc": 3000, "op": "PUSH1", - "pc": 2966, + "gas": 1622110, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -17221,11 +17346,11 @@ ] }, { - "depth": 1, - "gas": 1638015, - "gasCost": 3, + "pc": 3002, "op": "PUSH3", - "pc": 2968, + "gas": 1622107, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -17241,11 +17366,11 @@ ] }, { - "depth": 1, - "gas": 1638012, - "gasCost": 3, + "pc": 3006, "op": "DUP3", - "pc": 2972, + "gas": 1622104, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -17258,15 +17383,15 @@ "0x3e8", "0x0", "0x0", - "0xba2" + "0xbc4" ] }, { - "depth": 1, - "gas": 1638009, - "gasCost": 3, + "pc": 3007, "op": "PUSH3", - "pc": 2973, + "gas": 1622101, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -17279,16 +17404,16 @@ "0x3e8", "0x0", "0x0", - "0xba2", + "0xbc4", "0x0" ] }, { - "depth": 1, - "gas": 1638006, - "gasCost": 8, + "pc": 3011, "op": "JUMP", - "pc": 2977, + "gas": 1622098, + "gasCost": 8, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -17301,17 +17426,17 @@ "0x3e8", "0x0", "0x0", - "0xba2", + "0xbc4", "0x0", - "0x95a" + "0x97c" ] }, { - "depth": 1, - "gas": 1637998, - "gasCost": 1, + "pc": 2428, "op": "JUMPDEST", - "pc": 2394, + "gas": 1622090, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -17324,16 +17449,16 @@ "0x3e8", "0x0", "0x0", - "0xba2", + "0xbc4", "0x0" ] }, { - "depth": 1, - "gas": 1637997, - "gasCost": 3, + "pc": 2429, "op": "PUSH1", - "pc": 2395, + "gas": 1622089, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -17346,16 +17471,16 @@ "0x3e8", "0x0", "0x0", - "0xba2", + "0xbc4", "0x0" ] }, { - "depth": 1, - "gas": 1637994, - "gasCost": 3, + "pc": 2431, "op": "DUP2", - "pc": 2397, + "gas": 1622086, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -17368,17 +17493,17 @@ "0x3e8", "0x0", "0x0", - "0xba2", + "0xbc4", "0x0", "0x0" ] }, { - "depth": 1, - "gas": 1637991, - "gasCost": 3, + "pc": 2432, "op": "SWAP1", - "pc": 2398, + "gas": 1622083, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -17391,18 +17516,18 @@ "0x3e8", "0x0", "0x0", - "0xba2", + "0xbc4", "0x0", "0x0", "0x0" ] }, { - "depth": 1, - "gas": 1637988, - "gasCost": 2, + "pc": 2433, "op": "POP", - "pc": 2399, + "gas": 1622080, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -17415,18 +17540,18 @@ "0x3e8", "0x0", "0x0", - "0xba2", + "0xbc4", "0x0", "0x0", "0x0" ] }, { - "depth": 1, - "gas": 1637986, - "gasCost": 3, + "pc": 2434, "op": "SWAP2", - "pc": 2400, + "gas": 1622078, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -17439,17 +17564,17 @@ "0x3e8", "0x0", "0x0", - "0xba2", + "0xbc4", "0x0", "0x0" ] }, { - "depth": 1, - "gas": 1637983, - "gasCost": 3, + "pc": 2435, "op": "SWAP1", - "pc": 2401, + "gas": 1622075, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -17464,15 +17589,15 @@ "0x0", "0x0", "0x0", - "0xba2" + "0xbc4" ] }, { - "depth": 1, - "gas": 1637980, - "gasCost": 2, + "pc": 2436, "op": "POP", - "pc": 2402, + "gas": 1622072, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -17486,16 +17611,16 @@ "0x0", "0x0", "0x0", - "0xba2", + "0xbc4", "0x0" ] }, { - "depth": 1, - "gas": 1637978, - "gasCost": 8, + "pc": 2437, "op": "JUMP", - "pc": 2403, + "gas": 1622070, + "gasCost": 8, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -17509,15 +17634,15 @@ "0x0", "0x0", "0x0", - "0xba2" + "0xbc4" ] }, { - "depth": 1, - "gas": 1637970, - "gasCost": 1, + "pc": 3012, "op": "JUMPDEST", - "pc": 2978, + "gas": 1622062, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -17534,11 +17659,11 @@ ] }, { - "depth": 1, - "gas": 1637969, - "gasCost": 3, + "pc": 3013, "op": "SWAP2", - "pc": 2979, + "gas": 1622061, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -17555,11 +17680,11 @@ ] }, { - "depth": 1, - "gas": 1637966, - "gasCost": 2, + "pc": 3014, "op": "POP", - "pc": 2980, + "gas": 1622058, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -17576,11 +17701,11 @@ ] }, { - "depth": 1, - "gas": 1637964, - "gasCost": 3, + "pc": 3015, "op": "PUSH3", - "pc": 2981, + "gas": 1622056, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -17596,11 +17721,11 @@ ] }, { - "depth": 1, - "gas": 1637961, - "gasCost": 3, + "pc": 3019, "op": "DUP4", - "pc": 2985, + "gas": 1622053, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -17613,15 +17738,15 @@ "0x3e8", "0x0", "0x0", - "0xbaf" + "0xbd1" ] }, { - "depth": 1, - "gas": 1637958, - "gasCost": 3, + "pc": 3020, "op": "PUSH3", - "pc": 2986, + "gas": 1622050, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -17634,16 +17759,16 @@ "0x3e8", "0x0", "0x0", - "0xbaf", + "0xbd1", "0x3e8" ] }, { - "depth": 1, - "gas": 1637955, - "gasCost": 8, + "pc": 3024, "op": "JUMP", - "pc": 2990, + "gas": 1622047, + "gasCost": 8, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -17656,17 +17781,17 @@ "0x3e8", "0x0", "0x0", - "0xbaf", + "0xbd1", "0x3e8", - "0x95a" + "0x97c" ] }, { - "depth": 1, - "gas": 1637947, - "gasCost": 1, + "pc": 2428, "op": "JUMPDEST", - "pc": 2394, + "gas": 1622039, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -17679,16 +17804,16 @@ "0x3e8", "0x0", "0x0", - "0xbaf", + "0xbd1", "0x3e8" ] }, { - "depth": 1, - "gas": 1637946, - "gasCost": 3, + "pc": 2429, "op": "PUSH1", - "pc": 2395, + "gas": 1622038, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -17701,16 +17826,16 @@ "0x3e8", "0x0", "0x0", - "0xbaf", + "0xbd1", "0x3e8" ] }, { - "depth": 1, - "gas": 1637943, - "gasCost": 3, + "pc": 2431, "op": "DUP2", - "pc": 2397, + "gas": 1622035, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -17723,17 +17848,17 @@ "0x3e8", "0x0", "0x0", - "0xbaf", + "0xbd1", "0x3e8", "0x0" ] }, { - "depth": 1, - "gas": 1637940, - "gasCost": 3, + "pc": 2432, "op": "SWAP1", - "pc": 2398, + "gas": 1622032, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -17746,18 +17871,18 @@ "0x3e8", "0x0", "0x0", - "0xbaf", + "0xbd1", "0x3e8", "0x0", "0x3e8" ] }, { - "depth": 1, - "gas": 1637937, - "gasCost": 2, + "pc": 2433, "op": "POP", - "pc": 2399, + "gas": 1622029, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -17770,18 +17895,18 @@ "0x3e8", "0x0", "0x0", - "0xbaf", + "0xbd1", "0x3e8", "0x3e8", "0x0" ] }, { - "depth": 1, - "gas": 1637935, - "gasCost": 3, + "pc": 2434, "op": "SWAP2", - "pc": 2400, + "gas": 1622027, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -17794,17 +17919,17 @@ "0x3e8", "0x0", "0x0", - "0xbaf", + "0xbd1", "0x3e8", "0x3e8" ] }, { - "depth": 1, - "gas": 1637932, - "gasCost": 3, + "pc": 2435, "op": "SWAP1", - "pc": 2401, + "gas": 1622024, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -17819,15 +17944,15 @@ "0x0", "0x3e8", "0x3e8", - "0xbaf" + "0xbd1" ] }, { - "depth": 1, - "gas": 1637929, - "gasCost": 2, + "pc": 2436, "op": "POP", - "pc": 2402, + "gas": 1622021, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -17841,16 +17966,16 @@ "0x0", "0x0", "0x3e8", - "0xbaf", + "0xbd1", "0x3e8" ] }, { - "depth": 1, - "gas": 1637927, - "gasCost": 8, + "pc": 2437, "op": "JUMP", - "pc": 2403, + "gas": 1622019, + "gasCost": 8, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -17864,15 +17989,15 @@ "0x0", "0x0", "0x3e8", - "0xbaf" + "0xbd1" ] }, { - "depth": 1, - "gas": 1637919, - "gasCost": 1, + "pc": 3025, "op": "JUMPDEST", - "pc": 2991, + "gas": 1622011, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -17889,11 +18014,11 @@ ] }, { - "depth": 1, - "gas": 1637918, - "gasCost": 3, + "pc": 3026, "op": "SWAP3", - "pc": 2992, + "gas": 1622010, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -17910,11 +18035,11 @@ ] }, { - "depth": 1, - "gas": 1637915, - "gasCost": 2, + "pc": 3027, "op": "POP", - "pc": 2993, + "gas": 1622007, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -17931,11 +18056,11 @@ ] }, { - "depth": 1, - "gas": 1637913, - "gasCost": 3, + "pc": 3028, "op": "DUP3", - "pc": 2994, + "gas": 1622005, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -17951,11 +18076,11 @@ ] }, { - "depth": 1, - "gas": 1637910, + "pc": 3029, + "op": "PUSH32", + "gas": 1622002, "gasCost": 3, - "op": "DUP3", - "pc": 2995, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -17972,11 +18097,33 @@ ] }, { + "pc": 3062, + "op": "SUB", + "gas": 1621999, + "gasCost": 3, "depth": 1, - "gas": 1637907, + "stack": [ + "0x3aa18088", + "0x149", + "0x3e8", + "0x0", + "0x3e8", + "0x1", + "0x0", + "0x3c7", + "0x3e8", + "0x0", + "0x0", + "0x3e8", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "pc": 3063, + "op": "DUP3", + "gas": 1621996, "gasCost": 3, - "op": "ADD", - "pc": 2996, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -17989,16 +18136,37 @@ "0x3e8", "0x0", "0x0", + "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc17" + ] + }, + { + "pc": 3064, + "op": "GT", + "gas": 1621993, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3aa18088", + "0x149", + "0x3e8", + "0x0", + "0x3e8", + "0x1", + "0x0", + "0x3c7", "0x3e8", + "0x0", + "0x0", + "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc17", "0x0" ] }, { - "depth": 1, - "gas": 1637904, + "pc": 3065, + "op": "ISZERO", + "gas": 1621990, "gasCost": 3, - "op": "SWAP1", - "pc": 2997, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -18011,15 +18179,15 @@ "0x3e8", "0x0", "0x0", - "0x3e8" + "0x0" ] }, { + "pc": 3066, + "op": "PUSH3", + "gas": 1621987, + "gasCost": 3, "depth": 1, - "gas": 1637901, - "gasCost": 2, - "op": "POP", - "pc": 2998, "stack": [ "0x3aa18088", "0x149", @@ -18031,16 +18199,16 @@ "0x3c7", "0x3e8", "0x0", - "0x3e8", - "0x0" + "0x0", + "0x1" ] }, { + "pc": 3070, + "op": "JUMPI", + "gas": 1621984, + "gasCost": 10, "depth": 1, - "gas": 1637899, - "gasCost": 3, - "op": "DUP1", - "pc": 2999, "stack": [ "0x3aa18088", "0x149", @@ -18052,15 +18220,17 @@ "0x3c7", "0x3e8", "0x0", - "0x3e8" + "0x0", + "0x1", + "0xc09" ] }, { + "pc": 3081, + "op": "JUMPDEST", + "gas": 1621974, + "gasCost": 1, "depth": 1, - "gas": 1637896, - "gasCost": 3, - "op": "DUP3", - "pc": 3000, "stack": [ "0x3aa18088", "0x149", @@ -18072,16 +18242,15 @@ "0x3c7", "0x3e8", "0x0", - "0x3e8", - "0x3e8" + "0x0" ] }, { - "depth": 1, - "gas": 1637893, + "pc": 3082, + "op": "DUP3", + "gas": 1621973, "gasCost": 3, - "op": "GT", - "pc": 3001, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -18093,17 +18262,15 @@ "0x3c7", "0x3e8", "0x0", - "0x3e8", - "0x3e8", "0x0" ] }, { - "depth": 1, - "gas": 1637890, + "pc": 3083, + "op": "DUP3", + "gas": 1621970, "gasCost": 3, - "op": "ISZERO", - "pc": 3002, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -18115,16 +18282,16 @@ "0x3c7", "0x3e8", "0x0", - "0x3e8", - "0x0" + "0x0", + "0x3e8" ] }, { - "depth": 1, - "gas": 1637887, + "pc": 3084, + "op": "ADD", + "gas": 1621967, "gasCost": 3, - "op": "PUSH3", - "pc": 3003, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -18136,16 +18303,17 @@ "0x3c7", "0x3e8", "0x0", + "0x0", "0x3e8", - "0x1" + "0x0" ] }, { + "pc": 3085, + "op": "SWAP1", + "gas": 1621964, + "gasCost": 3, "depth": 1, - "gas": 1637884, - "gasCost": 10, - "op": "JUMPI", - "pc": 3007, "stack": [ "0x3aa18088", "0x149", @@ -18157,17 +18325,16 @@ "0x3c7", "0x3e8", "0x0", - "0x3e8", - "0x1", - "0xbca" + "0x0", + "0x3e8" ] }, { + "pc": 3086, + "op": "POP", + "gas": 1621961, + "gasCost": 2, "depth": 1, - "gas": 1637874, - "gasCost": 1, - "op": "JUMPDEST", - "pc": 3018, "stack": [ "0x3aa18088", "0x149", @@ -18179,15 +18346,16 @@ "0x3c7", "0x3e8", "0x0", - "0x3e8" + "0x3e8", + "0x0" ] }, { - "depth": 1, - "gas": 1637873, - "gasCost": 3, + "pc": 3087, "op": "SWAP3", - "pc": 3019, + "gas": 1621959, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -18203,11 +18371,11 @@ ] }, { - "depth": 1, - "gas": 1637870, - "gasCost": 3, + "pc": 3088, "op": "SWAP2", - "pc": 3020, + "gas": 1621956, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -18223,11 +18391,11 @@ ] }, { - "depth": 1, - "gas": 1637867, - "gasCost": 2, + "pc": 3089, "op": "POP", - "pc": 3021, + "gas": 1621953, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -18243,11 +18411,11 @@ ] }, { - "depth": 1, - "gas": 1637865, - "gasCost": 2, + "pc": 3090, "op": "POP", - "pc": 3022, + "gas": 1621951, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -18262,11 +18430,11 @@ ] }, { - "depth": 1, - "gas": 1637863, - "gasCost": 8, + "pc": 3091, "op": "JUMP", - "pc": 3023, + "gas": 1621949, + "gasCost": 8, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -18280,11 +18448,11 @@ ] }, { - "depth": 1, - "gas": 1637855, - "gasCost": 1, - "op": "JUMPDEST", "pc": 967, + "op": "JUMPDEST", + "gas": 1621941, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -18297,11 +18465,11 @@ ] }, { - "depth": 1, - "gas": 1637854, - "gasCost": 3, - "op": "SWAP3", "pc": 968, + "op": "SWAP3", + "gas": 1621940, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -18314,11 +18482,11 @@ ] }, { - "depth": 1, - "gas": 1637851, - "gasCost": 2, - "op": "POP", "pc": 969, + "op": "POP", + "gas": 1621937, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -18331,11 +18499,11 @@ ] }, { - "depth": 1, - "gas": 1637849, - "gasCost": 2, - "op": "POP", "pc": 970, + "op": "POP", + "gas": 1621935, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -18347,11 +18515,11 @@ ] }, { - "depth": 1, - "gas": 1637847, - "gasCost": 3, - "op": "DUP2", "pc": 971, + "op": "DUP2", + "gas": 1621933, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -18362,11 +18530,11 @@ ] }, { - "depth": 1, - "gas": 1637844, - "gasCost": 3, - "op": "SWAP1", "pc": 972, + "op": "SWAP1", + "gas": 1621930, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -18378,11 +18546,11 @@ ] }, { - "depth": 1, - "gas": 1637841, - "gasCost": 20000, - "op": "SSTORE", "pc": 973, + "op": "SSTORE", + "gas": 1621927, + "gasCost": 20000, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -18393,16 +18561,16 @@ "0x1" ], "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "0000000000000000000000005b659fd8bdc52879d0c3697038537da40832b759", + "0000000000000000000000000000000000000000000000000000000000000000": "00000000000000000000000061a286b8e87e2d31c475d71c85a0020584c44bae", "0000000000000000000000000000000000000000000000000000000000000001": "00000000000000000000000000000000000000000000000000000000000003e8" } }, { - "depth": 1, - "gas": 1617841, - "gasCost": 2, - "op": "POP", "pc": 974, + "op": "POP", + "gas": 1601927, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -18412,11 +18580,11 @@ ] }, { - "depth": 1, - "gas": 1617839, - "gasCost": 3, - "op": "PUSH3", "pc": 975, + "op": "PUSH3", + "gas": 1601925, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -18425,11 +18593,11 @@ ] }, { - "depth": 1, - "gas": 1617836, - "gasCost": 3, - "op": "PUSH1", "pc": 979, + "op": "PUSH1", + "gas": 1601922, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -18439,11 +18607,11 @@ ] }, { - "depth": 1, - "gas": 1617833, - "gasCost": 3, - "op": "DUP4", "pc": 981, + "op": "DUP4", + "gas": 1601919, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -18454,11 +18622,11 @@ ] }, { - "depth": 1, - "gas": 1617830, - "gasCost": 3, - "op": "PUSH3", "pc": 982, + "op": "PUSH3", + "gas": 1601916, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -18470,11 +18638,11 @@ ] }, { - "depth": 1, - "gas": 1617827, - "gasCost": 3, - "op": "SWAP2", "pc": 986, + "op": "SWAP2", + "gas": 1601913, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -18487,11 +18655,11 @@ ] }, { - "depth": 1, - "gas": 1617824, - "gasCost": 3, - "op": "SWAP1", "pc": 987, + "op": "SWAP1", + "gas": 1601910, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -18504,11 +18672,11 @@ ] }, { - "depth": 1, - "gas": 1617821, - "gasCost": 3, - "op": "PUSH3", "pc": 988, + "op": "PUSH3", + "gas": 1601907, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -18521,11 +18689,11 @@ ] }, { - "depth": 1, - "gas": 1617818, - "gasCost": 8, - "op": "JUMP", "pc": 992, + "op": "JUMP", + "gas": 1601904, + "gasCost": 8, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -18535,15 +18703,15 @@ "0x3e1", "0x1", "0x3e8", - "0xb95" + "0xbb7" ] }, { - "depth": 1, - "gas": 1617810, - "gasCost": 1, + "pc": 2999, "op": "JUMPDEST", - "pc": 2965, + "gas": 1601896, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -18556,11 +18724,11 @@ ] }, { - "depth": 1, - "gas": 1617809, - "gasCost": 3, + "pc": 3000, "op": "PUSH1", - "pc": 2966, + "gas": 1601895, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -18573,11 +18741,11 @@ ] }, { - "depth": 1, - "gas": 1617806, - "gasCost": 3, + "pc": 3002, "op": "PUSH3", - "pc": 2968, + "gas": 1601892, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -18591,11 +18759,11 @@ ] }, { - "depth": 1, - "gas": 1617803, - "gasCost": 3, + "pc": 3006, "op": "DUP3", - "pc": 2972, + "gas": 1601889, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -18606,15 +18774,15 @@ "0x1", "0x3e8", "0x0", - "0xba2" + "0xbc4" ] }, { - "depth": 1, - "gas": 1617800, - "gasCost": 3, + "pc": 3007, "op": "PUSH3", - "pc": 2973, + "gas": 1601886, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -18625,16 +18793,16 @@ "0x1", "0x3e8", "0x0", - "0xba2", + "0xbc4", "0x3e8" ] }, { - "depth": 1, - "gas": 1617797, - "gasCost": 8, + "pc": 3011, "op": "JUMP", - "pc": 2977, + "gas": 1601883, + "gasCost": 8, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -18645,17 +18813,17 @@ "0x1", "0x3e8", "0x0", - "0xba2", + "0xbc4", "0x3e8", - "0x95a" + "0x97c" ] }, { - "depth": 1, - "gas": 1617789, - "gasCost": 1, + "pc": 2428, "op": "JUMPDEST", - "pc": 2394, + "gas": 1601875, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -18666,16 +18834,16 @@ "0x1", "0x3e8", "0x0", - "0xba2", + "0xbc4", "0x3e8" ] }, { - "depth": 1, - "gas": 1617788, - "gasCost": 3, + "pc": 2429, "op": "PUSH1", - "pc": 2395, + "gas": 1601874, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -18686,16 +18854,16 @@ "0x1", "0x3e8", "0x0", - "0xba2", + "0xbc4", "0x3e8" ] }, { - "depth": 1, - "gas": 1617785, - "gasCost": 3, + "pc": 2431, "op": "DUP2", - "pc": 2397, + "gas": 1601871, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -18706,17 +18874,17 @@ "0x1", "0x3e8", "0x0", - "0xba2", + "0xbc4", "0x3e8", "0x0" ] }, { - "depth": 1, - "gas": 1617782, - "gasCost": 3, + "pc": 2432, "op": "SWAP1", - "pc": 2398, + "gas": 1601868, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -18727,18 +18895,18 @@ "0x1", "0x3e8", "0x0", - "0xba2", + "0xbc4", "0x3e8", "0x0", "0x3e8" ] }, { - "depth": 1, - "gas": 1617779, - "gasCost": 2, + "pc": 2433, "op": "POP", - "pc": 2399, + "gas": 1601865, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -18749,18 +18917,18 @@ "0x1", "0x3e8", "0x0", - "0xba2", + "0xbc4", "0x3e8", "0x3e8", "0x0" ] }, { - "depth": 1, - "gas": 1617777, - "gasCost": 3, + "pc": 2434, "op": "SWAP2", - "pc": 2400, + "gas": 1601863, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -18771,17 +18939,17 @@ "0x1", "0x3e8", "0x0", - "0xba2", + "0xbc4", "0x3e8", "0x3e8" ] }, { - "depth": 1, - "gas": 1617774, - "gasCost": 3, + "pc": 2435, "op": "SWAP1", - "pc": 2401, + "gas": 1601860, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -18794,15 +18962,15 @@ "0x0", "0x3e8", "0x3e8", - "0xba2" + "0xbc4" ] }, { - "depth": 1, - "gas": 1617771, - "gasCost": 2, + "pc": 2436, "op": "POP", - "pc": 2402, + "gas": 1601857, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -18814,16 +18982,16 @@ "0x3e8", "0x0", "0x3e8", - "0xba2", + "0xbc4", "0x3e8" ] }, { - "depth": 1, - "gas": 1617769, - "gasCost": 8, + "pc": 2437, "op": "JUMP", - "pc": 2403, + "gas": 1601855, + "gasCost": 8, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -18835,15 +19003,15 @@ "0x3e8", "0x0", "0x3e8", - "0xba2" + "0xbc4" ] }, { - "depth": 1, - "gas": 1617761, - "gasCost": 1, + "pc": 3012, "op": "JUMPDEST", - "pc": 2978, + "gas": 1601847, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -18858,11 +19026,11 @@ ] }, { - "depth": 1, - "gas": 1617760, - "gasCost": 3, + "pc": 3013, "op": "SWAP2", - "pc": 2979, + "gas": 1601846, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -18877,11 +19045,11 @@ ] }, { - "depth": 1, - "gas": 1617757, - "gasCost": 2, + "pc": 3014, "op": "POP", - "pc": 2980, + "gas": 1601843, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -18896,11 +19064,11 @@ ] }, { - "depth": 1, - "gas": 1617755, - "gasCost": 3, + "pc": 3015, "op": "PUSH3", - "pc": 2981, + "gas": 1601841, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -18914,11 +19082,11 @@ ] }, { - "depth": 1, - "gas": 1617752, - "gasCost": 3, + "pc": 3019, "op": "DUP4", - "pc": 2985, + "gas": 1601838, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -18929,15 +19097,15 @@ "0x1", "0x3e8", "0x0", - "0xbaf" + "0xbd1" ] }, { - "depth": 1, - "gas": 1617749, - "gasCost": 3, + "pc": 3020, "op": "PUSH3", - "pc": 2986, + "gas": 1601835, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -18948,16 +19116,16 @@ "0x1", "0x3e8", "0x0", - "0xbaf", + "0xbd1", "0x1" ] }, { - "depth": 1, - "gas": 1617746, - "gasCost": 8, + "pc": 3024, "op": "JUMP", - "pc": 2990, + "gas": 1601832, + "gasCost": 8, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -18968,17 +19136,17 @@ "0x1", "0x3e8", "0x0", - "0xbaf", + "0xbd1", "0x1", - "0x95a" + "0x97c" ] }, { - "depth": 1, - "gas": 1617738, - "gasCost": 1, + "pc": 2428, "op": "JUMPDEST", - "pc": 2394, + "gas": 1601824, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -18989,16 +19157,16 @@ "0x1", "0x3e8", "0x0", - "0xbaf", + "0xbd1", "0x1" ] }, { - "depth": 1, - "gas": 1617737, - "gasCost": 3, + "pc": 2429, "op": "PUSH1", - "pc": 2395, + "gas": 1601823, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -19009,16 +19177,16 @@ "0x1", "0x3e8", "0x0", - "0xbaf", + "0xbd1", "0x1" ] }, { - "depth": 1, - "gas": 1617734, - "gasCost": 3, + "pc": 2431, "op": "DUP2", - "pc": 2397, + "gas": 1601820, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -19029,17 +19197,17 @@ "0x1", "0x3e8", "0x0", - "0xbaf", + "0xbd1", "0x1", "0x0" ] }, { - "depth": 1, - "gas": 1617731, - "gasCost": 3, + "pc": 2432, "op": "SWAP1", - "pc": 2398, + "gas": 1601817, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -19050,18 +19218,18 @@ "0x1", "0x3e8", "0x0", - "0xbaf", + "0xbd1", "0x1", "0x0", "0x1" ] }, { - "depth": 1, - "gas": 1617728, - "gasCost": 2, + "pc": 2433, "op": "POP", - "pc": 2399, + "gas": 1601814, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -19072,18 +19240,18 @@ "0x1", "0x3e8", "0x0", - "0xbaf", + "0xbd1", "0x1", "0x1", "0x0" ] }, { - "depth": 1, - "gas": 1617726, - "gasCost": 3, + "pc": 2434, "op": "SWAP2", - "pc": 2400, + "gas": 1601812, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -19094,17 +19262,17 @@ "0x1", "0x3e8", "0x0", - "0xbaf", + "0xbd1", "0x1", "0x1" ] }, { - "depth": 1, - "gas": 1617723, - "gasCost": 3, + "pc": 2435, "op": "SWAP1", - "pc": 2401, + "gas": 1601809, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -19117,15 +19285,15 @@ "0x0", "0x1", "0x1", - "0xbaf" + "0xbd1" ] }, { - "depth": 1, - "gas": 1617720, - "gasCost": 2, + "pc": 2436, "op": "POP", - "pc": 2402, + "gas": 1601806, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -19137,16 +19305,16 @@ "0x3e8", "0x0", "0x1", - "0xbaf", + "0xbd1", "0x1" ] }, { - "depth": 1, - "gas": 1617718, - "gasCost": 8, + "pc": 2437, "op": "JUMP", - "pc": 2403, + "gas": 1601804, + "gasCost": 8, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -19158,15 +19326,15 @@ "0x3e8", "0x0", "0x1", - "0xbaf" + "0xbd1" ] }, { - "depth": 1, - "gas": 1617710, - "gasCost": 1, + "pc": 3025, "op": "JUMPDEST", - "pc": 2991, + "gas": 1601796, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -19181,11 +19349,11 @@ ] }, { - "depth": 1, - "gas": 1617709, - "gasCost": 3, + "pc": 3026, "op": "SWAP3", - "pc": 2992, + "gas": 1601795, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -19200,11 +19368,11 @@ ] }, { - "depth": 1, - "gas": 1617706, - "gasCost": 2, + "pc": 3027, "op": "POP", - "pc": 2993, + "gas": 1601792, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -19219,11 +19387,11 @@ ] }, { - "depth": 1, - "gas": 1617704, - "gasCost": 3, + "pc": 3028, "op": "DUP3", - "pc": 2994, + "gas": 1601790, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -19237,11 +19405,11 @@ ] }, { - "depth": 1, - "gas": 1617701, + "pc": 3029, + "op": "PUSH32", + "gas": 1601787, "gasCost": 3, - "op": "DUP3", - "pc": 2995, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -19256,11 +19424,11 @@ ] }, { - "depth": 1, - "gas": 1617698, + "pc": 3062, + "op": "SUB", + "gas": 1601784, "gasCost": 3, - "op": "ADD", - "pc": 2996, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -19272,15 +19440,34 @@ "0x3e8", "0x0", "0x1", - "0x3e8" + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" ] }, { + "pc": 3063, + "op": "DUP3", + "gas": 1601781, + "gasCost": 3, "depth": 1, - "gas": 1617695, + "stack": [ + "0x3aa18088", + "0x149", + "0x3e8", + "0x0", + "0x3e7", + "0x3e1", + "0x1", + "0x3e8", + "0x0", + "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe" + ] + }, + { + "pc": 3064, + "op": "GT", + "gas": 1601778, "gasCost": 3, - "op": "SWAP1", - "pc": 2997, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -19291,15 +19478,16 @@ "0x1", "0x3e8", "0x0", - "0x3e9" + "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe", + "0x3e8" ] }, { + "pc": 3065, + "op": "ISZERO", + "gas": 1601775, + "gasCost": 3, "depth": 1, - "gas": 1617692, - "gasCost": 2, - "op": "POP", - "pc": 2998, "stack": [ "0x3aa18088", "0x149", @@ -19309,16 +19497,16 @@ "0x3e1", "0x1", "0x3e8", - "0x3e9", + "0x0", "0x0" ] }, { - "depth": 1, - "gas": 1617690, + "pc": 3066, + "op": "PUSH3", + "gas": 1601772, "gasCost": 3, - "op": "DUP1", - "pc": 2999, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -19328,15 +19516,16 @@ "0x3e1", "0x1", "0x3e8", - "0x3e9" + "0x0", + "0x1" ] }, { + "pc": 3070, + "op": "JUMPI", + "gas": 1601769, + "gasCost": 10, "depth": 1, - "gas": 1617687, - "gasCost": 3, - "op": "DUP3", - "pc": 3000, "stack": [ "0x3aa18088", "0x149", @@ -19346,16 +19535,17 @@ "0x3e1", "0x1", "0x3e8", - "0x3e9", - "0x3e9" + "0x0", + "0x1", + "0xc09" ] }, { + "pc": 3081, + "op": "JUMPDEST", + "gas": 1601759, + "gasCost": 1, "depth": 1, - "gas": 1617684, - "gasCost": 3, - "op": "GT", - "pc": 3001, "stack": [ "0x3aa18088", "0x149", @@ -19365,17 +19555,15 @@ "0x3e1", "0x1", "0x3e8", - "0x3e9", - "0x3e9", - "0x3e8" + "0x0" ] }, { - "depth": 1, - "gas": 1617681, + "pc": 3082, + "op": "DUP3", + "gas": 1601758, "gasCost": 3, - "op": "ISZERO", - "pc": 3002, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -19385,16 +19573,15 @@ "0x3e1", "0x1", "0x3e8", - "0x3e9", "0x0" ] }, { - "depth": 1, - "gas": 1617678, + "pc": 3083, + "op": "DUP3", + "gas": 1601755, "gasCost": 3, - "op": "PUSH3", - "pc": 3003, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -19404,16 +19591,16 @@ "0x3e1", "0x1", "0x3e8", - "0x3e9", + "0x0", "0x1" ] }, { + "pc": 3084, + "op": "ADD", + "gas": 1601752, + "gasCost": 3, "depth": 1, - "gas": 1617675, - "gasCost": 10, - "op": "JUMPI", - "pc": 3007, "stack": [ "0x3aa18088", "0x149", @@ -19423,17 +19610,17 @@ "0x3e1", "0x1", "0x3e8", - "0x3e9", + "0x0", "0x1", - "0xbca" + "0x3e8" ] }, { + "pc": 3085, + "op": "SWAP1", + "gas": 1601749, + "gasCost": 3, "depth": 1, - "gas": 1617665, - "gasCost": 1, - "op": "JUMPDEST", - "pc": 3018, "stack": [ "0x3aa18088", "0x149", @@ -19443,15 +19630,35 @@ "0x3e1", "0x1", "0x3e8", + "0x0", "0x3e9" ] }, { + "pc": 3086, + "op": "POP", + "gas": 1601746, + "gasCost": 2, "depth": 1, - "gas": 1617664, - "gasCost": 3, + "stack": [ + "0x3aa18088", + "0x149", + "0x3e8", + "0x0", + "0x3e7", + "0x3e1", + "0x1", + "0x3e8", + "0x3e9", + "0x0" + ] + }, + { + "pc": 3087, "op": "SWAP3", - "pc": 3019, + "gas": 1601744, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -19465,11 +19672,11 @@ ] }, { - "depth": 1, - "gas": 1617661, - "gasCost": 3, + "pc": 3088, "op": "SWAP2", - "pc": 3020, + "gas": 1601741, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -19483,11 +19690,11 @@ ] }, { - "depth": 1, - "gas": 1617658, - "gasCost": 2, + "pc": 3089, "op": "POP", - "pc": 3021, + "gas": 1601738, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -19501,11 +19708,11 @@ ] }, { - "depth": 1, - "gas": 1617656, - "gasCost": 2, + "pc": 3090, "op": "POP", - "pc": 3022, + "gas": 1601736, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -19518,11 +19725,11 @@ ] }, { - "depth": 1, - "gas": 1617654, - "gasCost": 8, + "pc": 3091, "op": "JUMP", - "pc": 3023, + "gas": 1601734, + "gasCost": 8, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -19534,11 +19741,11 @@ ] }, { - "depth": 1, - "gas": 1617646, - "gasCost": 1, - "op": "JUMPDEST", "pc": 993, + "op": "JUMPDEST", + "gas": 1601726, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -19549,11 +19756,11 @@ ] }, { - "depth": 1, - "gas": 1617645, - "gasCost": 3, - "op": "PUSH3", "pc": 994, + "op": "PUSH3", + "gas": 1601725, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -19564,11 +19771,11 @@ ] }, { - "depth": 1, - "gas": 1617642, - "gasCost": 8, - "op": "JUMP", "pc": 998, + "op": "JUMP", + "gas": 1601722, + "gasCost": 8, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -19580,11 +19787,11 @@ ] }, { - "depth": 1, - "gas": 1617634, - "gasCost": 1, - "op": "JUMPDEST", "pc": 640, + "op": "JUMPDEST", + "gas": 1601714, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -19595,11 +19802,11 @@ ] }, { - "depth": 1, - "gas": 1617633, - "gasCost": 3, - "op": "PUSH1", "pc": 641, + "op": "PUSH1", + "gas": 1601713, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -19610,11 +19817,11 @@ ] }, { - "depth": 1, - "gas": 1617630, - "gasCost": 2, - "op": "CALLER", "pc": 643, + "op": "CALLER", + "gas": 1601710, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -19626,11 +19833,11 @@ ] }, { - "depth": 1, - "gas": 1617628, - "gasCost": 3, - "op": "PUSH20", "pc": 644, + "op": "PUSH20", + "gas": 1601708, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -19643,11 +19850,11 @@ ] }, { - "depth": 1, - "gas": 1617625, - "gasCost": 3, - "op": "AND", "pc": 665, + "op": "AND", + "gas": 1601705, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -19661,11 +19868,11 @@ ] }, { - "depth": 1, - "gas": 1617622, - "gasCost": 3, - "op": "PUSH32", "pc": 666, + "op": "PUSH32", + "gas": 1601702, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -19678,11 +19885,11 @@ ] }, { - "depth": 1, - "gas": 1617619, - "gasCost": 3, - "op": "DUP4", "pc": 699, + "op": "DUP4", + "gas": 1601699, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -19696,11 +19903,11 @@ ] }, { - "depth": 1, - "gas": 1617616, - "gasCost": 3, - "op": "PUSH1", "pc": 700, + "op": "PUSH1", + "gas": 1601696, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -19715,11 +19922,11 @@ ] }, { - "depth": 1, - "gas": 1617613, - "gasCost": 3, - "op": "MLOAD", "pc": 702, + "op": "MLOAD", + "gas": 1601693, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -19735,11 +19942,11 @@ ] }, { - "depth": 1, - "gas": 1617610, - "gasCost": 3, - "op": "PUSH3", "pc": 703, + "op": "PUSH3", + "gas": 1601690, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -19755,11 +19962,11 @@ ] }, { - "depth": 1, - "gas": 1617607, - "gasCost": 3, - "op": "SWAP2", "pc": 707, + "op": "SWAP2", + "gas": 1601687, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -19776,11 +19983,11 @@ ] }, { - "depth": 1, - "gas": 1617604, - "gasCost": 3, - "op": "SWAP1", "pc": 708, + "op": "SWAP1", + "gas": 1601684, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -19797,11 +20004,11 @@ ] }, { - "depth": 1, - "gas": 1617601, - "gasCost": 3, - "op": "PUSH3", "pc": 709, + "op": "PUSH3", + "gas": 1601681, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -19818,11 +20025,11 @@ ] }, { - "depth": 1, - "gas": 1617598, - "gasCost": 8, - "op": "JUMP", "pc": 713, + "op": "JUMP", + "gas": 1601678, + "gasCost": 8, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -19836,15 +20043,15 @@ "0x2ca", "0x3e9", "0x80", - "0xb34" + "0xb56" ] }, { - "depth": 1, - "gas": 1617590, - "gasCost": 1, + "pc": 2902, "op": "JUMPDEST", - "pc": 2868, + "gas": 1601670, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -19861,11 +20068,11 @@ ] }, { - "depth": 1, - "gas": 1617589, - "gasCost": 3, + "pc": 2903, "op": "PUSH1", - "pc": 2869, + "gas": 1601669, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -19882,11 +20089,11 @@ ] }, { - "depth": 1, - "gas": 1617586, - "gasCost": 3, + "pc": 2905, "op": "PUSH1", - "pc": 2871, + "gas": 1601666, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -19904,11 +20111,11 @@ ] }, { - "depth": 1, - "gas": 1617583, - "gasCost": 3, + "pc": 2907, "op": "DUP3", - "pc": 2873, + "gas": 1601663, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -19927,11 +20134,11 @@ ] }, { - "depth": 1, - "gas": 1617580, - "gasCost": 3, + "pc": 2908, "op": "ADD", - "pc": 2874, + "gas": 1601660, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -19951,11 +20158,11 @@ ] }, { - "depth": 1, - "gas": 1617577, - "gasCost": 3, + "pc": 2909, "op": "SWAP1", - "pc": 2875, + "gas": 1601657, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -19974,11 +20181,11 @@ ] }, { - "depth": 1, - "gas": 1617574, - "gasCost": 2, + "pc": 2910, "op": "POP", - "pc": 2876, + "gas": 1601654, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -19997,11 +20204,11 @@ ] }, { - "depth": 1, - "gas": 1617572, - "gasCost": 3, + "pc": 2911, "op": "PUSH3", - "pc": 2877, + "gas": 1601652, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -20019,11 +20226,11 @@ ] }, { - "depth": 1, - "gas": 1617569, - "gasCost": 3, + "pc": 2915, "op": "PUSH1", - "pc": 2881, + "gas": 1601649, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -20038,15 +20245,15 @@ "0x3e9", "0x80", "0xc0", - "0xb4b" + "0xb6d" ] }, { - "depth": 1, - "gas": 1617566, - "gasCost": 3, + "pc": 2917, "op": "DUP4", - "pc": 2883, + "gas": 1601646, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -20061,16 +20268,16 @@ "0x3e9", "0x80", "0xc0", - "0xb4b", + "0xb6d", "0x0" ] }, { - "depth": 1, - "gas": 1617563, - "gasCost": 3, + "pc": 2918, "op": "ADD", - "pc": 2884, + "gas": 1601643, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -20085,17 +20292,17 @@ "0x3e9", "0x80", "0xc0", - "0xb4b", + "0xb6d", "0x0", "0x80" ] }, { - "depth": 1, - "gas": 1617560, - "gasCost": 3, + "pc": 2919, "op": "DUP5", - "pc": 2885, + "gas": 1601640, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -20110,16 +20317,16 @@ "0x3e9", "0x80", "0xc0", - "0xb4b", + "0xb6d", "0x80" ] }, { - "depth": 1, - "gas": 1617557, - "gasCost": 3, + "pc": 2920, "op": "PUSH3", - "pc": 2886, + "gas": 1601637, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -20134,17 +20341,17 @@ "0x3e9", "0x80", "0xc0", - "0xb4b", + "0xb6d", "0x80", "0x3e9" ] }, { - "depth": 1, - "gas": 1617554, - "gasCost": 8, + "pc": 2924, "op": "JUMP", - "pc": 2890, + "gas": 1601634, + "gasCost": 8, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -20159,18 +20366,18 @@ "0x3e9", "0x80", "0xc0", - "0xb4b", + "0xb6d", "0x80", "0x3e9", - "0x964" + "0x986" ] }, { - "depth": 1, - "gas": 1617546, - "gasCost": 1, + "pc": 2438, "op": "JUMPDEST", - "pc": 2404, + "gas": 1601626, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -20185,17 +20392,17 @@ "0x3e9", "0x80", "0xc0", - "0xb4b", + "0xb6d", "0x80", "0x3e9" ] }, { - "depth": 1, - "gas": 1617545, - "gasCost": 3, + "pc": 2439, "op": "PUSH3", - "pc": 2405, + "gas": 1601625, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -20210,17 +20417,17 @@ "0x3e9", "0x80", "0xc0", - "0xb4b", + "0xb6d", "0x80", "0x3e9" ] }, { - "depth": 1, - "gas": 1617542, - "gasCost": 3, + "pc": 2443, "op": "DUP2", - "pc": 2409, + "gas": 1601622, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -20235,18 +20442,18 @@ "0x3e9", "0x80", "0xc0", - "0xb4b", + "0xb6d", "0x80", "0x3e9", - "0x96f" + "0x991" ] }, { - "depth": 1, - "gas": 1617539, - "gasCost": 3, + "pc": 2444, "op": "PUSH3", - "pc": 2410, + "gas": 1601619, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -20261,19 +20468,19 @@ "0x3e9", "0x80", "0xc0", - "0xb4b", + "0xb6d", "0x80", "0x3e9", - "0x96f", + "0x991", "0x3e9" ] }, { - "depth": 1, - "gas": 1617536, - "gasCost": 8, + "pc": 2448, "op": "JUMP", - "pc": 2414, + "gas": 1601616, + "gasCost": 8, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -20288,20 +20495,20 @@ "0x3e9", "0x80", "0xc0", - "0xb4b", + "0xb6d", "0x80", "0x3e9", - "0x96f", + "0x991", "0x3e9", - "0x95a" + "0x97c" ] }, { - "depth": 1, - "gas": 1617528, - "gasCost": 1, + "pc": 2428, "op": "JUMPDEST", - "pc": 2394, + "gas": 1601608, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -20316,19 +20523,19 @@ "0x3e9", "0x80", "0xc0", - "0xb4b", + "0xb6d", "0x80", "0x3e9", - "0x96f", + "0x991", "0x3e9" ] }, { - "depth": 1, - "gas": 1617527, - "gasCost": 3, + "pc": 2429, "op": "PUSH1", - "pc": 2395, + "gas": 1601607, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -20343,19 +20550,19 @@ "0x3e9", "0x80", "0xc0", - "0xb4b", + "0xb6d", "0x80", "0x3e9", - "0x96f", + "0x991", "0x3e9" ] }, { - "depth": 1, - "gas": 1617524, - "gasCost": 3, + "pc": 2431, "op": "DUP2", - "pc": 2397, + "gas": 1601604, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -20370,20 +20577,20 @@ "0x3e9", "0x80", "0xc0", - "0xb4b", + "0xb6d", "0x80", "0x3e9", - "0x96f", + "0x991", "0x3e9", "0x0" ] }, { - "depth": 1, - "gas": 1617521, - "gasCost": 3, + "pc": 2432, "op": "SWAP1", - "pc": 2398, + "gas": 1601601, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -20398,21 +20605,21 @@ "0x3e9", "0x80", "0xc0", - "0xb4b", + "0xb6d", "0x80", "0x3e9", - "0x96f", + "0x991", "0x3e9", "0x0", "0x3e9" ] }, { - "depth": 1, - "gas": 1617518, - "gasCost": 2, + "pc": 2433, "op": "POP", - "pc": 2399, + "gas": 1601598, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -20427,21 +20634,21 @@ "0x3e9", "0x80", "0xc0", - "0xb4b", + "0xb6d", "0x80", "0x3e9", - "0x96f", + "0x991", "0x3e9", "0x3e9", "0x0" ] }, { - "depth": 1, - "gas": 1617516, - "gasCost": 3, + "pc": 2434, "op": "SWAP2", - "pc": 2400, + "gas": 1601596, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -20456,20 +20663,20 @@ "0x3e9", "0x80", "0xc0", - "0xb4b", + "0xb6d", "0x80", "0x3e9", - "0x96f", + "0x991", "0x3e9", "0x3e9" ] }, { - "depth": 1, - "gas": 1617513, - "gasCost": 3, + "pc": 2435, "op": "SWAP1", - "pc": 2401, + "gas": 1601593, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -20484,20 +20691,20 @@ "0x3e9", "0x80", "0xc0", - "0xb4b", + "0xb6d", "0x80", "0x3e9", "0x3e9", "0x3e9", - "0x96f" + "0x991" ] }, { - "depth": 1, - "gas": 1617510, - "gasCost": 2, + "pc": 2436, "op": "POP", - "pc": 2402, + "gas": 1601590, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -20512,20 +20719,20 @@ "0x3e9", "0x80", "0xc0", - "0xb4b", + "0xb6d", "0x80", "0x3e9", "0x3e9", - "0x96f", + "0x991", "0x3e9" ] }, { - "depth": 1, - "gas": 1617508, - "gasCost": 8, + "pc": 2437, "op": "JUMP", - "pc": 2403, + "gas": 1601588, + "gasCost": 8, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -20540,19 +20747,19 @@ "0x3e9", "0x80", "0xc0", - "0xb4b", + "0xb6d", "0x80", "0x3e9", "0x3e9", - "0x96f" + "0x991" ] }, { - "depth": 1, - "gas": 1617500, - "gasCost": 1, + "pc": 2449, "op": "JUMPDEST", - "pc": 2415, + "gas": 1601580, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -20567,18 +20774,18 @@ "0x3e9", "0x80", "0xc0", - "0xb4b", + "0xb6d", "0x80", "0x3e9", "0x3e9" ] }, { - "depth": 1, - "gas": 1617499, - "gasCost": 3, + "pc": 2450, "op": "DUP3", - "pc": 2416, + "gas": 1601579, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -20593,18 +20800,18 @@ "0x3e9", "0x80", "0xc0", - "0xb4b", + "0xb6d", "0x80", "0x3e9", "0x3e9" ] }, { - "depth": 1, - "gas": 1617496, - "gasCost": 3, + "pc": 2451, "op": "MSTORE", - "pc": 2417, + "gas": 1601576, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -20619,7 +20826,7 @@ "0x3e9", "0x80", "0xc0", - "0xb4b", + "0xb6d", "0x80", "0x3e9", "0x3e9", @@ -20627,11 +20834,11 @@ ] }, { - "depth": 1, - "gas": 1617493, - "gasCost": 2, + "pc": 2452, "op": "POP", - "pc": 2418, + "gas": 1601573, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -20646,17 +20853,17 @@ "0x3e9", "0x80", "0xc0", - "0xb4b", + "0xb6d", "0x80", "0x3e9" ] }, { - "depth": 1, - "gas": 1617491, - "gasCost": 2, + "pc": 2453, "op": "POP", - "pc": 2419, + "gas": 1601571, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -20671,16 +20878,16 @@ "0x3e9", "0x80", "0xc0", - "0xb4b", + "0xb6d", "0x80" ] }, { - "depth": 1, - "gas": 1617489, - "gasCost": 8, + "pc": 2454, "op": "JUMP", - "pc": 2420, + "gas": 1601569, + "gasCost": 8, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -20695,15 +20902,15 @@ "0x3e9", "0x80", "0xc0", - "0xb4b" + "0xb6d" ] }, { - "depth": 1, - "gas": 1617481, - "gasCost": 1, + "pc": 2925, "op": "JUMPDEST", - "pc": 2891, + "gas": 1601561, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -20721,11 +20928,11 @@ ] }, { - "depth": 1, - "gas": 1617480, - "gasCost": 3, + "pc": 2926, "op": "DUP2", - "pc": 2892, + "gas": 1601560, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -20743,11 +20950,11 @@ ] }, { - "depth": 1, - "gas": 1617477, - "gasCost": 3, + "pc": 2927, "op": "DUP2", - "pc": 2893, + "gas": 1601557, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -20766,11 +20973,11 @@ ] }, { - "depth": 1, - "gas": 1617474, - "gasCost": 3, + "pc": 2928, "op": "SUB", - "pc": 2894, + "gas": 1601554, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -20790,11 +20997,11 @@ ] }, { - "depth": 1, - "gas": 1617471, - "gasCost": 3, + "pc": 2929, "op": "PUSH1", - "pc": 2895, + "gas": 1601551, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -20813,11 +21020,11 @@ ] }, { - "depth": 1, - "gas": 1617468, - "gasCost": 3, + "pc": 2931, "op": "DUP4", - "pc": 2897, + "gas": 1601548, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -20837,11 +21044,11 @@ ] }, { - "depth": 1, - "gas": 1617465, - "gasCost": 3, + "pc": 2932, "op": "ADD", - "pc": 2898, + "gas": 1601545, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -20862,11 +21069,11 @@ ] }, { - "depth": 1, - "gas": 1617462, - "gasCost": 3, + "pc": 2933, "op": "MSTORE", - "pc": 2899, + "gas": 1601542, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -20886,11 +21093,11 @@ ] }, { - "depth": 1, - "gas": 1617459, - "gasCost": 3, + "pc": 2934, "op": "PUSH3", - "pc": 2900, + "gas": 1601539, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -20908,11 +21115,11 @@ ] }, { - "depth": 1, - "gas": 1617456, - "gasCost": 3, + "pc": 2938, "op": "DUP2", - "pc": 2904, + "gas": 1601536, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -20927,15 +21134,15 @@ "0x3e9", "0x80", "0xc0", - "0xb5e" + "0xb80" ] }, { - "depth": 1, - "gas": 1617453, - "gasCost": 3, + "pc": 2939, "op": "PUSH3", - "pc": 2905, + "gas": 1601533, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -20950,16 +21157,16 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xc0" ] }, { - "depth": 1, - "gas": 1617450, - "gasCost": 8, + "pc": 2943, "op": "JUMP", - "pc": 2909, + "gas": 1601530, + "gasCost": 8, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -20974,17 +21181,17 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xc0", - "0xb0d" + "0xb2f" ] }, { - "depth": 1, - "gas": 1617442, - "gasCost": 1, + "pc": 2863, "op": "JUMPDEST", - "pc": 2829, + "gas": 1601522, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -20999,16 +21206,16 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xc0" ] }, { - "depth": 1, - "gas": 1617441, - "gasCost": 3, + "pc": 2864, "op": "PUSH1", - "pc": 2830, + "gas": 1601521, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -21023,16 +21230,16 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xc0" ] }, { - "depth": 1, - "gas": 1617438, - "gasCost": 3, + "pc": 2866, "op": "PUSH3", - "pc": 2832, + "gas": 1601518, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -21047,17 +21254,17 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xc0", "0x0" ] }, { - "depth": 1, - "gas": 1617435, - "gasCost": 3, + "pc": 2870, "op": "PUSH1", - "pc": 2836, + "gas": 1601515, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -21072,18 +21279,18 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xc0", "0x0", - "0xb1c" + "0xb3e" ] }, { - "depth": 1, - "gas": 1617432, - "gasCost": 3, + "pc": 2872, "op": "DUP4", - "pc": 2838, + "gas": 1601512, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -21098,19 +21305,19 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xc0", "0x0", - "0xb1c", + "0xb3e", "0xe" ] }, { - "depth": 1, - "gas": 1617429, - "gasCost": 3, + "pc": 2873, "op": "PUSH3", - "pc": 2839, + "gas": 1601509, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -21125,20 +21332,20 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xc0", "0x0", - "0xb1c", + "0xb3e", "0xe", "0xc0" ] }, { - "depth": 1, - "gas": 1617426, - "gasCost": 8, + "pc": 2877, "op": "JUMP", - "pc": 2843, + "gas": 1601506, + "gasCost": 8, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -21153,21 +21360,21 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xc0", "0x0", - "0xb1c", + "0xb3e", "0xe", "0xc0", - "0xad3" + "0xaf5" ] }, { - "depth": 1, - "gas": 1617418, - "gasCost": 1, + "pc": 2805, "op": "JUMPDEST", - "pc": 2771, + "gas": 1601498, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -21182,20 +21389,20 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xc0", "0x0", - "0xb1c", + "0xb3e", "0xe", "0xc0" ] }, { - "depth": 1, - "gas": 1617417, - "gasCost": 3, + "pc": 2806, "op": "PUSH1", - "pc": 2772, + "gas": 1601497, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -21210,20 +21417,20 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xc0", "0x0", - "0xb1c", + "0xb3e", "0xe", "0xc0" ] }, { - "depth": 1, - "gas": 1617414, - "gasCost": 3, + "pc": 2808, "op": "DUP3", - "pc": 2774, + "gas": 1601494, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -21238,21 +21445,21 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xc0", "0x0", - "0xb1c", + "0xb3e", "0xe", "0xc0", "0x0" ] }, { - "depth": 1, - "gas": 1617411, - "gasCost": 3, + "pc": 2809, "op": "DUP3", - "pc": 2775, + "gas": 1601491, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -21267,10 +21474,10 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xc0", "0x0", - "0xb1c", + "0xb3e", "0xe", "0xc0", "0x0", @@ -21278,11 +21485,11 @@ ] }, { - "depth": 1, - "gas": 1617408, - "gasCost": 3, + "pc": 2810, "op": "MSTORE", - "pc": 2776, + "gas": 1601488, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -21297,10 +21504,10 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xc0", "0x0", - "0xb1c", + "0xb3e", "0xe", "0xc0", "0x0", @@ -21309,11 +21516,11 @@ ] }, { - "depth": 1, - "gas": 1617405, - "gasCost": 3, + "pc": 2811, "op": "PUSH1", - "pc": 2777, + "gas": 1601485, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -21328,21 +21535,21 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xc0", "0x0", - "0xb1c", + "0xb3e", "0xe", "0xc0", "0x0" ] }, { - "depth": 1, - "gas": 1617402, - "gasCost": 3, + "pc": 2813, "op": "DUP3", - "pc": 2779, + "gas": 1601482, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -21357,10 +21564,10 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xc0", "0x0", - "0xb1c", + "0xb3e", "0xe", "0xc0", "0x0", @@ -21368,11 +21575,11 @@ ] }, { - "depth": 1, - "gas": 1617399, - "gasCost": 3, + "pc": 2814, "op": "ADD", - "pc": 2780, + "gas": 1601479, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -21387,10 +21594,10 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xc0", "0x0", - "0xb1c", + "0xb3e", "0xe", "0xc0", "0x0", @@ -21399,11 +21606,11 @@ ] }, { - "depth": 1, - "gas": 1617396, - "gasCost": 3, + "pc": 2815, "op": "SWAP1", - "pc": 2781, + "gas": 1601476, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -21418,10 +21625,10 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xc0", "0x0", - "0xb1c", + "0xb3e", "0xe", "0xc0", "0x0", @@ -21429,11 +21636,11 @@ ] }, { - "depth": 1, - "gas": 1617393, - "gasCost": 2, + "pc": 2816, "op": "POP", - "pc": 2782, + "gas": 1601473, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -21448,10 +21655,10 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xc0", "0x0", - "0xb1c", + "0xb3e", "0xe", "0xc0", "0xe0", @@ -21459,11 +21666,11 @@ ] }, { - "depth": 1, - "gas": 1617391, - "gasCost": 3, + "pc": 2817, "op": "SWAP3", - "pc": 2783, + "gas": 1601471, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -21478,21 +21685,21 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xc0", "0x0", - "0xb1c", + "0xb3e", "0xe", "0xc0", "0xe0" ] }, { - "depth": 1, - "gas": 1617388, - "gasCost": 3, + "pc": 2818, "op": "SWAP2", - "pc": 2784, + "gas": 1601468, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -21507,21 +21714,21 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xc0", "0x0", "0xe0", "0xe", "0xc0", - "0xb1c" + "0xb3e" ] }, { - "depth": 1, - "gas": 1617385, - "gasCost": 2, + "pc": 2819, "op": "POP", - "pc": 2785, + "gas": 1601465, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -21536,21 +21743,21 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xc0", "0x0", "0xe0", - "0xb1c", + "0xb3e", "0xc0", "0xe" ] }, { - "depth": 1, - "gas": 1617383, - "gasCost": 2, + "pc": 2820, "op": "POP", - "pc": 2786, + "gas": 1601463, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -21565,20 +21772,20 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xc0", "0x0", "0xe0", - "0xb1c", + "0xb3e", "0xc0" ] }, { - "depth": 1, - "gas": 1617381, - "gasCost": 8, + "pc": 2821, "op": "JUMP", - "pc": 2787, + "gas": 1601461, + "gasCost": 8, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -21593,19 +21800,19 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xc0", "0x0", "0xe0", - "0xb1c" + "0xb3e" ] }, { - "depth": 1, - "gas": 1617373, - "gasCost": 1, + "pc": 2878, "op": "JUMPDEST", - "pc": 2844, + "gas": 1601453, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -21620,18 +21827,18 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xc0", "0x0", "0xe0" ] }, { - "depth": 1, - "gas": 1617372, - "gasCost": 3, + "pc": 2879, "op": "SWAP2", - "pc": 2845, + "gas": 1601452, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -21646,18 +21853,18 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xc0", "0x0", "0xe0" ] }, { - "depth": 1, - "gas": 1617369, - "gasCost": 2, + "pc": 2880, "op": "POP", - "pc": 2846, + "gas": 1601449, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -21672,18 +21879,18 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xe0", "0x0", "0xc0" ] }, { - "depth": 1, - "gas": 1617367, - "gasCost": 3, + "pc": 2881, "op": "PUSH3", - "pc": 2847, + "gas": 1601447, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -21698,17 +21905,17 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xe0", "0x0" ] }, { - "depth": 1, - "gas": 1617364, - "gasCost": 3, + "pc": 2885, "op": "DUP3", - "pc": 2851, + "gas": 1601444, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -21723,18 +21930,18 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xe0", "0x0", - "0xb29" + "0xb4b" ] }, { - "depth": 1, - "gas": 1617361, - "gasCost": 3, + "pc": 2886, "op": "PUSH3", - "pc": 2852, + "gas": 1601441, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -21749,19 +21956,19 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xe0", "0x0", - "0xb29", + "0xb4b", "0xe0" ] }, { - "depth": 1, - "gas": 1617358, - "gasCost": 8, + "pc": 2890, "op": "JUMP", - "pc": 2856, + "gas": 1601438, + "gasCost": 8, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -21776,20 +21983,20 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xe0", "0x0", - "0xb29", + "0xb4b", "0xe0", - "0xae4" + "0xb06" ] }, { - "depth": 1, - "gas": 1617350, - "gasCost": 1, + "pc": 2822, "op": "JUMPDEST", - "pc": 2788, + "gas": 1601430, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -21804,19 +22011,19 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xe0", "0x0", - "0xb29", + "0xb4b", "0xe0" ] }, { - "depth": 1, - "gas": 1617349, - "gasCost": 3, + "pc": 2823, "op": "PUSH32", - "pc": 2789, + "gas": 1601429, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -21831,19 +22038,19 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xe0", "0x0", - "0xb29", + "0xb4b", "0xe0" ] }, { - "depth": 1, - "gas": 1617346, - "gasCost": 3, + "pc": 2856, "op": "PUSH1", - "pc": 2822, + "gas": 1601426, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -21858,20 +22065,20 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xe0", "0x0", - "0xb29", + "0xb4b", "0xe0", "0x696e7465726e616c20746f706963000000000000000000000000000000000000" ] }, { - "depth": 1, - "gas": 1617343, - "gasCost": 3, + "pc": 2858, "op": "DUP3", - "pc": 2824, + "gas": 1601423, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -21886,21 +22093,21 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xe0", "0x0", - "0xb29", + "0xb4b", "0xe0", "0x696e7465726e616c20746f706963000000000000000000000000000000000000", "0x0" ] }, { - "depth": 1, - "gas": 1617340, - "gasCost": 3, + "pc": 2859, "op": "ADD", - "pc": 2825, + "gas": 1601420, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -21915,10 +22122,10 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xe0", "0x0", - "0xb29", + "0xb4b", "0xe0", "0x696e7465726e616c20746f706963000000000000000000000000000000000000", "0x0", @@ -21926,11 +22133,11 @@ ] }, { - "depth": 1, - "gas": 1617337, - "gasCost": 3, + "pc": 2860, "op": "MSTORE", - "pc": 2826, + "gas": 1601417, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -21945,21 +22152,21 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xe0", "0x0", - "0xb29", + "0xb4b", "0xe0", "0x696e7465726e616c20746f706963000000000000000000000000000000000000", "0xe0" ] }, { - "depth": 1, - "gas": 1617334, - "gasCost": 2, + "pc": 2861, "op": "POP", - "pc": 2827, + "gas": 1601414, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -21974,19 +22181,19 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xe0", "0x0", - "0xb29", + "0xb4b", "0xe0" ] }, { - "depth": 1, - "gas": 1617332, - "gasCost": 8, + "pc": 2862, "op": "JUMP", - "pc": 2828, + "gas": 1601412, + "gasCost": 8, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -22001,18 +22208,18 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xe0", "0x0", - "0xb29" + "0xb4b" ] }, { - "depth": 1, - "gas": 1617324, - "gasCost": 1, + "pc": 2891, "op": "JUMPDEST", - "pc": 2857, + "gas": 1601404, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -22027,17 +22234,17 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xe0", "0x0" ] }, { - "depth": 1, - "gas": 1617323, - "gasCost": 3, + "pc": 2892, "op": "PUSH1", - "pc": 2858, + "gas": 1601403, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -22052,17 +22259,17 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xe0", "0x0" ] }, { - "depth": 1, - "gas": 1617320, - "gasCost": 3, + "pc": 2894, "op": "DUP3", - "pc": 2860, + "gas": 1601400, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -22077,18 +22284,18 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xe0", "0x0", "0x20" ] }, { - "depth": 1, - "gas": 1617317, - "gasCost": 3, + "pc": 2895, "op": "ADD", - "pc": 2861, + "gas": 1601397, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -22103,7 +22310,7 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xe0", "0x0", "0x20", @@ -22111,11 +22318,11 @@ ] }, { - "depth": 1, - "gas": 1617314, - "gasCost": 3, + "pc": 2896, "op": "SWAP1", - "pc": 2862, + "gas": 1601394, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -22130,18 +22337,18 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xe0", "0x0", "0x100" ] }, { - "depth": 1, - "gas": 1617311, - "gasCost": 2, + "pc": 2897, "op": "POP", - "pc": 2863, + "gas": 1601391, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -22156,18 +22363,18 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xe0", "0x100", "0x0" ] }, { - "depth": 1, - "gas": 1617309, - "gasCost": 3, + "pc": 2898, "op": "SWAP2", - "pc": 2864, + "gas": 1601389, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -22182,17 +22389,17 @@ "0x3e9", "0x80", "0xc0", - "0xb5e", + "0xb80", "0xe0", "0x100" ] }, { - "depth": 1, - "gas": 1617306, - "gasCost": 3, + "pc": 2899, "op": "SWAP1", - "pc": 2865, + "gas": 1601386, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -22209,15 +22416,15 @@ "0xc0", "0x100", "0xe0", - "0xb5e" + "0xb80" ] }, { - "depth": 1, - "gas": 1617303, - "gasCost": 2, + "pc": 2900, "op": "POP", - "pc": 2866, + "gas": 1601383, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -22233,16 +22440,16 @@ "0x80", "0xc0", "0x100", - "0xb5e", + "0xb80", "0xe0" ] }, { - "depth": 1, - "gas": 1617301, - "gasCost": 8, + "pc": 2901, "op": "JUMP", - "pc": 2867, + "gas": 1601381, + "gasCost": 8, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -22258,15 +22465,15 @@ "0x80", "0xc0", "0x100", - "0xb5e" + "0xb80" ] }, { - "depth": 1, - "gas": 1617293, - "gasCost": 1, + "pc": 2944, "op": "JUMPDEST", - "pc": 2910, + "gas": 1601373, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -22285,11 +22492,11 @@ ] }, { - "depth": 1, - "gas": 1617292, - "gasCost": 3, + "pc": 2945, "op": "SWAP1", - "pc": 2911, + "gas": 1601372, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -22308,11 +22515,11 @@ ] }, { - "depth": 1, - "gas": 1617289, - "gasCost": 2, + "pc": 2946, "op": "POP", - "pc": 2912, + "gas": 1601369, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -22331,11 +22538,11 @@ ] }, { - "depth": 1, - "gas": 1617287, - "gasCost": 3, + "pc": 2947, "op": "SWAP3", - "pc": 2913, + "gas": 1601367, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -22353,11 +22560,11 @@ ] }, { - "depth": 1, - "gas": 1617284, - "gasCost": 3, + "pc": 2948, "op": "SWAP2", - "pc": 2914, + "gas": 1601364, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -22375,11 +22582,11 @@ ] }, { - "depth": 1, - "gas": 1617281, - "gasCost": 2, + "pc": 2949, "op": "POP", - "pc": 2915, + "gas": 1601361, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -22397,11 +22604,11 @@ ] }, { - "depth": 1, - "gas": 1617279, - "gasCost": 2, + "pc": 2950, "op": "POP", - "pc": 2916, + "gas": 1601359, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -22418,11 +22625,11 @@ ] }, { - "depth": 1, - "gas": 1617277, - "gasCost": 8, + "pc": 2951, "op": "JUMP", - "pc": 2917, + "gas": 1601357, + "gasCost": 8, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -22438,11 +22645,11 @@ ] }, { - "depth": 1, - "gas": 1617269, - "gasCost": 1, - "op": "JUMPDEST", "pc": 714, + "op": "JUMPDEST", + "gas": 1601349, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -22457,11 +22664,11 @@ ] }, { - "depth": 1, - "gas": 1617268, - "gasCost": 3, - "op": "PUSH1", "pc": 715, + "op": "PUSH1", + "gas": 1601348, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -22476,11 +22683,11 @@ ] }, { - "depth": 1, - "gas": 1617265, - "gasCost": 3, - "op": "MLOAD", "pc": 717, + "op": "MLOAD", + "gas": 1601345, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -22496,11 +22703,11 @@ ] }, { - "depth": 1, - "gas": 1617262, - "gasCost": 3, - "op": "DUP1", "pc": 718, + "op": "DUP1", + "gas": 1601342, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -22516,11 +22723,11 @@ ] }, { - "depth": 1, - "gas": 1617259, - "gasCost": 3, - "op": "SWAP2", "pc": 719, + "op": "SWAP2", + "gas": 1601339, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -22537,11 +22744,11 @@ ] }, { - "depth": 1, - "gas": 1617256, - "gasCost": 3, - "op": "SUB", "pc": 720, + "op": "SUB", + "gas": 1601336, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -22558,11 +22765,11 @@ ] }, { - "depth": 1, - "gas": 1617253, - "gasCost": 3, - "op": "SWAP1", "pc": 721, + "op": "SWAP1", + "gas": 1601333, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -22578,11 +22785,11 @@ ] }, { - "depth": 1, - "gas": 1617250, - "gasCost": 2149, - "op": "LOG2", "pc": 722, + "op": "LOG2", + "gas": 1601330, + "gasCost": 2149, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -22598,11 +22805,11 @@ ] }, { - "depth": 1, - "gas": 1615101, - "gasCost": 3, - "op": "DUP2", "pc": 723, + "op": "DUP2", + "gas": 1599181, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -22614,11 +22821,11 @@ ] }, { - "depth": 1, - "gas": 1615098, - "gasCost": 3, - "op": "PUSH1", "pc": 724, + "op": "PUSH1", + "gas": 1599178, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -22631,11 +22838,11 @@ ] }, { - "depth": 1, - "gas": 1615095, - "gasCost": 3, - "op": "PUSH1", "pc": 726, + "op": "PUSH1", + "gas": 1599175, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -22649,11 +22856,11 @@ ] }, { - "depth": 1, - "gas": 1615092, - "gasCost": 3, - "op": "DUP3", "pc": 728, + "op": "DUP3", + "gas": 1599172, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -22668,11 +22875,11 @@ ] }, { - "depth": 1, - "gas": 1615089, - "gasCost": 3, - "op": "DUP3", "pc": 729, + "op": "DUP3", + "gas": 1599169, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -22688,11 +22895,11 @@ ] }, { - "depth": 1, - "gas": 1615086, - "gasCost": 200, - "op": "SLOAD", "pc": 730, + "op": "SLOAD", + "gas": 1599166, + "gasCost": 2100, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -22708,17 +22915,17 @@ "0x3" ], "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "0000000000000000000000005b659fd8bdc52879d0c3697038537da40832b759", + "0000000000000000000000000000000000000000000000000000000000000000": "00000000000000000000000061a286b8e87e2d31c475d71c85a0020584c44bae", "0000000000000000000000000000000000000000000000000000000000000001": "00000000000000000000000000000000000000000000000000000000000003e8", "0000000000000000000000000000000000000000000000000000000000000003": "0000000000000000000000000000000000000000000000000000000000000000" } }, { - "depth": 1, - "gas": 1614886, - "gasCost": 3, - "op": "PUSH3", "pc": 731, + "op": "PUSH3", + "gas": 1597066, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -22735,11 +22942,11 @@ ] }, { - "depth": 1, - "gas": 1614883, - "gasCost": 3, - "op": "SWAP2", "pc": 735, + "op": "SWAP2", + "gas": 1597063, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -22757,11 +22964,11 @@ ] }, { - "depth": 1, - "gas": 1614880, - "gasCost": 3, - "op": "SWAP1", "pc": 736, + "op": "SWAP1", + "gas": 1597060, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -22779,11 +22986,11 @@ ] }, { - "depth": 1, - "gas": 1614877, - "gasCost": 3, - "op": "PUSH3", "pc": 737, + "op": "PUSH3", + "gas": 1597057, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -22801,11 +23008,11 @@ ] }, { - "depth": 1, - "gas": 1614874, - "gasCost": 8, - "op": "JUMP", "pc": 741, + "op": "JUMP", + "gas": 1597054, + "gasCost": 8, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -22820,15 +23027,15 @@ "0x2e6", "0x3e9", "0x0", - "0xb95" + "0xbb7" ] }, { - "depth": 1, - "gas": 1614866, - "gasCost": 1, + "pc": 2999, "op": "JUMPDEST", - "pc": 2965, + "gas": 1597046, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -22846,11 +23053,11 @@ ] }, { - "depth": 1, - "gas": 1614865, - "gasCost": 3, + "pc": 3000, "op": "PUSH1", - "pc": 2966, + "gas": 1597045, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -22868,11 +23075,11 @@ ] }, { - "depth": 1, - "gas": 1614862, - "gasCost": 3, + "pc": 3002, "op": "PUSH3", - "pc": 2968, + "gas": 1597042, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -22891,11 +23098,11 @@ ] }, { - "depth": 1, - "gas": 1614859, - "gasCost": 3, + "pc": 3006, "op": "DUP3", - "pc": 2972, + "gas": 1597039, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -22911,15 +23118,15 @@ "0x3e9", "0x0", "0x0", - "0xba2" + "0xbc4" ] }, { - "depth": 1, - "gas": 1614856, - "gasCost": 3, + "pc": 3007, "op": "PUSH3", - "pc": 2973, + "gas": 1597036, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -22935,16 +23142,16 @@ "0x3e9", "0x0", "0x0", - "0xba2", + "0xbc4", "0x0" ] }, { - "depth": 1, - "gas": 1614853, - "gasCost": 8, + "pc": 3011, "op": "JUMP", - "pc": 2977, + "gas": 1597033, + "gasCost": 8, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -22960,17 +23167,17 @@ "0x3e9", "0x0", "0x0", - "0xba2", + "0xbc4", "0x0", - "0x95a" + "0x97c" ] }, { - "depth": 1, - "gas": 1614845, - "gasCost": 1, + "pc": 2428, "op": "JUMPDEST", - "pc": 2394, + "gas": 1597025, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -22986,16 +23193,16 @@ "0x3e9", "0x0", "0x0", - "0xba2", + "0xbc4", "0x0" ] }, { - "depth": 1, - "gas": 1614844, - "gasCost": 3, + "pc": 2429, "op": "PUSH1", - "pc": 2395, + "gas": 1597024, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -23011,16 +23218,16 @@ "0x3e9", "0x0", "0x0", - "0xba2", + "0xbc4", "0x0" ] }, { - "depth": 1, - "gas": 1614841, - "gasCost": 3, + "pc": 2431, "op": "DUP2", - "pc": 2397, + "gas": 1597021, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -23036,17 +23243,17 @@ "0x3e9", "0x0", "0x0", - "0xba2", + "0xbc4", "0x0", "0x0" ] }, { - "depth": 1, - "gas": 1614838, - "gasCost": 3, + "pc": 2432, "op": "SWAP1", - "pc": 2398, + "gas": 1597018, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -23062,18 +23269,18 @@ "0x3e9", "0x0", "0x0", - "0xba2", + "0xbc4", "0x0", "0x0", "0x0" ] }, { - "depth": 1, - "gas": 1614835, - "gasCost": 2, + "pc": 2433, "op": "POP", - "pc": 2399, + "gas": 1597015, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -23089,18 +23296,18 @@ "0x3e9", "0x0", "0x0", - "0xba2", + "0xbc4", "0x0", "0x0", "0x0" ] }, { - "depth": 1, - "gas": 1614833, - "gasCost": 3, + "pc": 2434, "op": "SWAP2", - "pc": 2400, + "gas": 1597013, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -23116,17 +23323,17 @@ "0x3e9", "0x0", "0x0", - "0xba2", + "0xbc4", "0x0", "0x0" ] }, { - "depth": 1, - "gas": 1614830, - "gasCost": 3, + "pc": 2435, "op": "SWAP1", - "pc": 2401, + "gas": 1597010, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -23144,15 +23351,15 @@ "0x0", "0x0", "0x0", - "0xba2" + "0xbc4" ] }, { - "depth": 1, - "gas": 1614827, - "gasCost": 2, + "pc": 2436, "op": "POP", - "pc": 2402, + "gas": 1597007, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -23169,16 +23376,16 @@ "0x0", "0x0", "0x0", - "0xba2", + "0xbc4", "0x0" ] }, { - "depth": 1, - "gas": 1614825, - "gasCost": 8, + "pc": 2437, "op": "JUMP", - "pc": 2403, + "gas": 1597005, + "gasCost": 8, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -23195,15 +23402,15 @@ "0x0", "0x0", "0x0", - "0xba2" + "0xbc4" ] }, { - "depth": 1, - "gas": 1614817, - "gasCost": 1, + "pc": 3012, "op": "JUMPDEST", - "pc": 2978, + "gas": 1596997, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -23223,11 +23430,11 @@ ] }, { - "depth": 1, - "gas": 1614816, - "gasCost": 3, + "pc": 3013, "op": "SWAP2", - "pc": 2979, + "gas": 1596996, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -23247,11 +23454,11 @@ ] }, { - "depth": 1, - "gas": 1614813, - "gasCost": 2, + "pc": 3014, "op": "POP", - "pc": 2980, + "gas": 1596993, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -23271,11 +23478,11 @@ ] }, { - "depth": 1, - "gas": 1614811, - "gasCost": 3, + "pc": 3015, "op": "PUSH3", - "pc": 2981, + "gas": 1596991, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -23294,11 +23501,11 @@ ] }, { - "depth": 1, - "gas": 1614808, - "gasCost": 3, + "pc": 3019, "op": "DUP4", - "pc": 2985, + "gas": 1596988, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -23314,15 +23521,15 @@ "0x3e9", "0x0", "0x0", - "0xbaf" + "0xbd1" ] }, { - "depth": 1, - "gas": 1614805, - "gasCost": 3, + "pc": 3020, "op": "PUSH3", - "pc": 2986, + "gas": 1596985, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -23338,16 +23545,16 @@ "0x3e9", "0x0", "0x0", - "0xbaf", + "0xbd1", "0x3e9" ] }, { - "depth": 1, - "gas": 1614802, - "gasCost": 8, + "pc": 3024, "op": "JUMP", - "pc": 2990, + "gas": 1596982, + "gasCost": 8, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -23363,17 +23570,17 @@ "0x3e9", "0x0", "0x0", - "0xbaf", + "0xbd1", "0x3e9", - "0x95a" + "0x97c" ] }, { - "depth": 1, - "gas": 1614794, - "gasCost": 1, + "pc": 2428, "op": "JUMPDEST", - "pc": 2394, + "gas": 1596974, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -23389,16 +23596,16 @@ "0x3e9", "0x0", "0x0", - "0xbaf", + "0xbd1", "0x3e9" ] }, { - "depth": 1, - "gas": 1614793, - "gasCost": 3, + "pc": 2429, "op": "PUSH1", - "pc": 2395, + "gas": 1596973, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -23414,16 +23621,16 @@ "0x3e9", "0x0", "0x0", - "0xbaf", + "0xbd1", "0x3e9" ] }, { - "depth": 1, - "gas": 1614790, - "gasCost": 3, + "pc": 2431, "op": "DUP2", - "pc": 2397, + "gas": 1596970, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -23439,17 +23646,17 @@ "0x3e9", "0x0", "0x0", - "0xbaf", + "0xbd1", "0x3e9", "0x0" ] }, { - "depth": 1, - "gas": 1614787, - "gasCost": 3, + "pc": 2432, "op": "SWAP1", - "pc": 2398, + "gas": 1596967, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -23465,18 +23672,18 @@ "0x3e9", "0x0", "0x0", - "0xbaf", + "0xbd1", "0x3e9", "0x0", "0x3e9" ] }, { - "depth": 1, - "gas": 1614784, - "gasCost": 2, + "pc": 2433, "op": "POP", - "pc": 2399, + "gas": 1596964, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -23492,18 +23699,18 @@ "0x3e9", "0x0", "0x0", - "0xbaf", + "0xbd1", "0x3e9", "0x3e9", "0x0" ] }, { - "depth": 1, - "gas": 1614782, - "gasCost": 3, + "pc": 2434, "op": "SWAP2", - "pc": 2400, + "gas": 1596962, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -23519,17 +23726,17 @@ "0x3e9", "0x0", "0x0", - "0xbaf", + "0xbd1", "0x3e9", "0x3e9" ] }, { - "depth": 1, - "gas": 1614779, - "gasCost": 3, + "pc": 2435, "op": "SWAP1", - "pc": 2401, + "gas": 1596959, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -23547,15 +23754,15 @@ "0x0", "0x3e9", "0x3e9", - "0xbaf" + "0xbd1" ] }, { - "depth": 1, - "gas": 1614776, - "gasCost": 2, + "pc": 2436, "op": "POP", - "pc": 2402, + "gas": 1596956, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -23572,16 +23779,16 @@ "0x0", "0x0", "0x3e9", - "0xbaf", + "0xbd1", "0x3e9" ] }, { - "depth": 1, - "gas": 1614774, - "gasCost": 8, + "pc": 2437, "op": "JUMP", - "pc": 2403, + "gas": 1596954, + "gasCost": 8, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -23598,15 +23805,15 @@ "0x0", "0x0", "0x3e9", - "0xbaf" + "0xbd1" ] }, { - "depth": 1, - "gas": 1614766, - "gasCost": 1, + "pc": 3025, "op": "JUMPDEST", - "pc": 2991, + "gas": 1596946, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -23626,11 +23833,11 @@ ] }, { - "depth": 1, - "gas": 1614765, - "gasCost": 3, + "pc": 3026, "op": "SWAP3", - "pc": 2992, + "gas": 1596945, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -23650,11 +23857,11 @@ ] }, { - "depth": 1, - "gas": 1614762, - "gasCost": 2, + "pc": 3027, "op": "POP", - "pc": 2993, + "gas": 1596942, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -23674,11 +23881,11 @@ ] }, { - "depth": 1, - "gas": 1614760, - "gasCost": 3, + "pc": 3028, "op": "DUP3", - "pc": 2994, + "gas": 1596940, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -23697,11 +23904,11 @@ ] }, { - "depth": 1, - "gas": 1614757, + "pc": 3029, + "op": "PUSH32", + "gas": 1596937, "gasCost": 3, - "op": "DUP3", - "pc": 2995, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -23721,11 +23928,11 @@ ] }, { - "depth": 1, - "gas": 1614754, + "pc": 3062, + "op": "SUB", + "gas": 1596934, "gasCost": 3, - "op": "ADD", - "pc": 2996, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -23742,15 +23949,15 @@ "0x0", "0x0", "0x3e9", - "0x0" + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" ] }, { - "depth": 1, - "gas": 1614751, + "pc": 3063, + "op": "DUP3", + "gas": 1596931, "gasCost": 3, - "op": "SWAP1", - "pc": 2997, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -23766,15 +23973,15 @@ "0x3e9", "0x0", "0x0", - "0x3e9" + "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc16" ] }, { + "pc": 3064, + "op": "GT", + "gas": 1596928, + "gasCost": 3, "depth": 1, - "gas": 1614748, - "gasCost": 2, - "op": "POP", - "pc": 2998, "stack": [ "0x3aa18088", "0x149", @@ -23789,16 +23996,17 @@ "0x2e6", "0x3e9", "0x0", - "0x3e9", + "0x0", + "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc16", "0x0" ] }, { - "depth": 1, - "gas": 1614746, + "pc": 3065, + "op": "ISZERO", + "gas": 1596925, "gasCost": 3, - "op": "DUP1", - "pc": 2999, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -23813,15 +24021,16 @@ "0x2e6", "0x3e9", "0x0", - "0x3e9" + "0x0", + "0x0" ] }, { - "depth": 1, - "gas": 1614743, + "pc": 3066, + "op": "PUSH3", + "gas": 1596922, "gasCost": 3, - "op": "DUP3", - "pc": 3000, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -23836,16 +24045,16 @@ "0x2e6", "0x3e9", "0x0", - "0x3e9", - "0x3e9" + "0x0", + "0x1" ] }, { + "pc": 3070, + "op": "JUMPI", + "gas": 1596919, + "gasCost": 10, "depth": 1, - "gas": 1614740, - "gasCost": 3, - "op": "GT", - "pc": 3001, "stack": [ "0x3aa18088", "0x149", @@ -23860,17 +24069,40 @@ "0x2e6", "0x3e9", "0x0", + "0x0", + "0x1", + "0xc09" + ] + }, + { + "pc": 3081, + "op": "JUMPDEST", + "gas": 1596909, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x3aa18088", + "0x149", + "0x3e8", + "0x0", + "0x3e7", + "0x3e9", + "0x0", "0x3e9", + "0x3", + "0x0", + "0x2e6", "0x3e9", + "0x0", "0x0" ] }, { - "depth": 1, - "gas": 1614737, + "pc": 3082, + "op": "DUP3", + "gas": 1596908, "gasCost": 3, - "op": "ISZERO", - "pc": 3002, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -23885,16 +24117,15 @@ "0x2e6", "0x3e9", "0x0", - "0x3e9", "0x0" ] }, { - "depth": 1, - "gas": 1614734, + "pc": 3083, + "op": "DUP3", + "gas": 1596905, "gasCost": 3, - "op": "PUSH3", - "pc": 3003, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -23909,16 +24140,16 @@ "0x2e6", "0x3e9", "0x0", - "0x3e9", - "0x1" + "0x0", + "0x3e9" ] }, { + "pc": 3084, + "op": "ADD", + "gas": 1596902, + "gasCost": 3, "depth": 1, - "gas": 1614731, - "gasCost": 10, - "op": "JUMPI", - "pc": 3007, "stack": [ "0x3aa18088", "0x149", @@ -23933,17 +24164,17 @@ "0x2e6", "0x3e9", "0x0", + "0x0", "0x3e9", - "0x1", - "0xbca" + "0x0" ] }, { + "pc": 3085, + "op": "SWAP1", + "gas": 1596899, + "gasCost": 3, "depth": 1, - "gas": 1614721, - "gasCost": 1, - "op": "JUMPDEST", - "pc": 3018, "stack": [ "0x3aa18088", "0x149", @@ -23958,15 +24189,40 @@ "0x2e6", "0x3e9", "0x0", + "0x0", "0x3e9" ] }, { + "pc": 3086, + "op": "POP", + "gas": 1596896, + "gasCost": 2, "depth": 1, - "gas": 1614720, - "gasCost": 3, + "stack": [ + "0x3aa18088", + "0x149", + "0x3e8", + "0x0", + "0x3e7", + "0x3e9", + "0x0", + "0x3e9", + "0x3", + "0x0", + "0x2e6", + "0x3e9", + "0x0", + "0x3e9", + "0x0" + ] + }, + { + "pc": 3087, "op": "SWAP3", - "pc": 3019, + "gas": 1596894, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -23985,11 +24241,11 @@ ] }, { - "depth": 1, - "gas": 1614717, - "gasCost": 3, + "pc": 3088, "op": "SWAP2", - "pc": 3020, + "gas": 1596891, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -24008,11 +24264,11 @@ ] }, { - "depth": 1, - "gas": 1614714, - "gasCost": 2, + "pc": 3089, "op": "POP", - "pc": 3021, + "gas": 1596888, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -24031,11 +24287,11 @@ ] }, { - "depth": 1, - "gas": 1614712, - "gasCost": 2, + "pc": 3090, "op": "POP", - "pc": 3022, + "gas": 1596886, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -24053,11 +24309,11 @@ ] }, { - "depth": 1, - "gas": 1614710, - "gasCost": 8, + "pc": 3091, "op": "JUMP", - "pc": 3023, + "gas": 1596884, + "gasCost": 8, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -24074,11 +24330,11 @@ ] }, { - "depth": 1, - "gas": 1614702, - "gasCost": 1, - "op": "JUMPDEST", "pc": 742, + "op": "JUMPDEST", + "gas": 1596876, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -24094,11 +24350,11 @@ ] }, { - "depth": 1, - "gas": 1614701, - "gasCost": 3, - "op": "SWAP3", "pc": 743, + "op": "SWAP3", + "gas": 1596875, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -24114,11 +24370,11 @@ ] }, { - "depth": 1, - "gas": 1614698, - "gasCost": 2, - "op": "POP", "pc": 744, + "op": "POP", + "gas": 1596872, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -24134,11 +24390,11 @@ ] }, { - "depth": 1, - "gas": 1614696, - "gasCost": 2, - "op": "POP", "pc": 745, + "op": "POP", + "gas": 1596870, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -24153,11 +24409,11 @@ ] }, { - "depth": 1, - "gas": 1614694, - "gasCost": 3, - "op": "DUP2", "pc": 746, + "op": "DUP2", + "gas": 1596868, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -24171,11 +24427,11 @@ ] }, { - "depth": 1, - "gas": 1614691, - "gasCost": 3, - "op": "SWAP1", "pc": 747, + "op": "SWAP1", + "gas": 1596865, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -24190,11 +24446,11 @@ ] }, { - "depth": 1, - "gas": 1614688, - "gasCost": 20000, - "op": "SSTORE", "pc": 748, + "op": "SSTORE", + "gas": 1596862, + "gasCost": 20000, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -24208,17 +24464,17 @@ "0x3" ], "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "0000000000000000000000005b659fd8bdc52879d0c3697038537da40832b759", + "0000000000000000000000000000000000000000000000000000000000000000": "00000000000000000000000061a286b8e87e2d31c475d71c85a0020584c44bae", "0000000000000000000000000000000000000000000000000000000000000001": "00000000000000000000000000000000000000000000000000000000000003e8", "0000000000000000000000000000000000000000000000000000000000000003": "00000000000000000000000000000000000000000000000000000000000003e9" } }, { - "depth": 1, - "gas": 1594688, - "gasCost": 2, - "op": "POP", "pc": 749, + "op": "POP", + "gas": 1576862, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -24231,11 +24487,11 @@ ] }, { - "depth": 1, - "gas": 1594686, - "gasCost": 3, - "op": "PUSH1", "pc": 750, + "op": "PUSH1", + "gas": 1576860, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -24247,11 +24503,11 @@ ] }, { - "depth": 1, - "gas": 1594683, - "gasCost": 3, - "op": "SWAP1", "pc": 752, + "op": "SWAP1", + "gas": 1576857, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -24264,11 +24520,11 @@ ] }, { - "depth": 1, - "gas": 1594680, - "gasCost": 2, - "op": "POP", "pc": 753, + "op": "POP", + "gas": 1576854, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -24281,11 +24537,11 @@ ] }, { - "depth": 1, - "gas": 1594678, - "gasCost": 3, - "op": "SWAP2", "pc": 754, + "op": "SWAP2", + "gas": 1576852, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -24297,11 +24553,11 @@ ] }, { - "depth": 1, - "gas": 1594675, - "gasCost": 3, - "op": "SWAP1", "pc": 755, + "op": "SWAP1", + "gas": 1576849, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -24313,11 +24569,11 @@ ] }, { - "depth": 1, - "gas": 1594672, - "gasCost": 2, - "op": "POP", "pc": 756, + "op": "POP", + "gas": 1576846, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -24329,11 +24585,11 @@ ] }, { - "depth": 1, - "gas": 1594670, - "gasCost": 8, - "op": "JUMP", "pc": 757, + "op": "JUMP", + "gas": 1576844, + "gasCost": 8, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -24344,11 +24600,11 @@ ] }, { - "depth": 1, - "gas": 1594662, - "gasCost": 1, - "op": "JUMPDEST", "pc": 999, + "op": "JUMPDEST", + "gas": 1576836, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -24358,11 +24614,11 @@ ] }, { - "depth": 1, - "gas": 1594661, - "gasCost": 2, - "op": "POP", "pc": 1000, + "op": "POP", + "gas": 1576835, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -24372,11 +24628,11 @@ ] }, { - "depth": 1, - "gas": 1594659, - "gasCost": 3, - "op": "PUSH3", "pc": 1001, + "op": "PUSH3", + "gas": 1576833, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -24385,11 +24641,11 @@ ] }, { - "depth": 1, - "gas": 1594656, - "gasCost": 3, - "op": "PUSH3", "pc": 1005, + "op": "PUSH3", + "gas": 1576830, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -24399,11 +24655,11 @@ ] }, { - "depth": 1, - "gas": 1594653, - "gasCost": 8, - "op": "JUMP", "pc": 1009, + "op": "JUMP", + "gas": 1576827, + "gasCost": 8, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -24414,11 +24670,11 @@ ] }, { - "depth": 1, - "gas": 1594645, - "gasCost": 1, - "op": "JUMPDEST", "pc": 561, + "op": "JUMPDEST", + "gas": 1576819, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -24428,11 +24684,11 @@ ] }, { - "depth": 1, - "gas": 1594644, - "gasCost": 3, - "op": "PUSH1", "pc": 562, + "op": "PUSH1", + "gas": 1576818, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -24442,11 +24698,11 @@ ] }, { - "depth": 1, - "gas": 1594641, - "gasCost": 3, - "op": "DUP1", "pc": 564, + "op": "DUP1", + "gas": 1576815, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -24457,11 +24713,11 @@ ] }, { - "depth": 1, - "gas": 1594638, - "gasCost": 3, - "op": "PUSH1", "pc": 565, + "op": "PUSH1", + "gas": 1576812, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -24473,11 +24729,11 @@ ] }, { - "depth": 1, - "gas": 1594635, - "gasCost": 3, - "op": "MLOAD", "pc": 567, + "op": "MLOAD", + "gas": 1576809, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -24490,11 +24746,11 @@ ] }, { - "depth": 1, - "gas": 1594632, - "gasCost": 3, - "op": "DUP1", "pc": 568, + "op": "DUP1", + "gas": 1576806, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -24507,11 +24763,11 @@ ] }, { - "depth": 1, - "gas": 1594629, - "gasCost": 3, - "op": "PUSH1", "pc": 569, + "op": "PUSH1", + "gas": 1576803, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -24525,11 +24781,11 @@ ] }, { - "depth": 1, - "gas": 1594626, - "gasCost": 3, - "op": "ADD", "pc": 571, + "op": "ADD", + "gas": 1576800, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -24544,11 +24800,11 @@ ] }, { - "depth": 1, - "gas": 1594623, - "gasCost": 3, - "op": "PUSH1", "pc": 572, + "op": "PUSH1", + "gas": 1576797, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -24562,11 +24818,11 @@ ] }, { - "depth": 1, - "gas": 1594620, - "gasCost": 3, - "op": "MSTORE", "pc": 574, + "op": "MSTORE", + "gas": 1576794, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -24581,11 +24837,11 @@ ] }, { - "depth": 1, - "gas": 1594617, - "gasCost": 3, - "op": "DUP1", "pc": 575, + "op": "DUP1", + "gas": 1576791, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -24598,11 +24854,11 @@ ] }, { - "depth": 1, - "gas": 1594614, - "gasCost": 3, - "op": "PUSH1", "pc": 576, + "op": "PUSH1", + "gas": 1576788, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -24616,11 +24872,11 @@ ] }, { - "depth": 1, - "gas": 1594611, - "gasCost": 3, - "op": "DUP2", "pc": 578, + "op": "DUP2", + "gas": 1576785, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -24635,11 +24891,11 @@ ] }, { - "depth": 1, - "gas": 1594608, - "gasCost": 3, - "op": "MSTORE", "pc": 579, + "op": "MSTORE", + "gas": 1576782, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -24655,11 +24911,11 @@ ] }, { - "depth": 1, - "gas": 1594605, - "gasCost": 3, - "op": "PUSH1", "pc": 580, + "op": "PUSH1", + "gas": 1576779, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -24673,11 +24929,11 @@ ] }, { - "depth": 1, - "gas": 1594602, - "gasCost": 3, - "op": "ADD", "pc": 582, + "op": "ADD", + "gas": 1576776, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -24692,11 +24948,11 @@ ] }, { - "depth": 1, - "gas": 1594599, - "gasCost": 3, - "op": "PUSH32", "pc": 583, + "op": "PUSH32", + "gas": 1576773, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -24710,11 +24966,11 @@ ] }, { - "depth": 1, - "gas": 1594596, - "gasCost": 3, - "op": "DUP2", "pc": 616, + "op": "DUP2", + "gas": 1576770, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -24729,11 +24985,11 @@ ] }, { - "depth": 1, - "gas": 1594593, - "gasCost": 3, - "op": "MSTORE", "pc": 617, + "op": "MSTORE", + "gas": 1576767, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -24749,11 +25005,11 @@ ] }, { - "depth": 1, - "gas": 1594590, - "gasCost": 2, - "op": "POP", "pc": 618, + "op": "POP", + "gas": 1576764, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -24767,11 +25023,11 @@ ] }, { - "depth": 1, - "gas": 1594588, - "gasCost": 3, - "op": "SWAP1", "pc": 619, + "op": "SWAP1", + "gas": 1576762, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -24784,11 +25040,11 @@ ] }, { - "depth": 1, - "gas": 1594585, - "gasCost": 2, - "op": "POP", "pc": 620, + "op": "POP", + "gas": 1576759, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -24801,11 +25057,11 @@ ] }, { - "depth": 1, - "gas": 1594583, - "gasCost": 3, - "op": "PUSH1", "pc": 621, + "op": "PUSH1", + "gas": 1576757, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -24817,11 +25073,11 @@ ] }, { - "depth": 1, - "gas": 1594580, - "gasCost": 3, - "op": "DUP2", "pc": 623, + "op": "DUP2", + "gas": 1576754, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -24834,11 +25090,11 @@ ] }, { - "depth": 1, - "gas": 1594577, - "gasCost": 3, - "op": "DUP1", "pc": 624, + "op": "DUP1", + "gas": 1576751, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -24852,11 +25108,11 @@ ] }, { - "depth": 1, - "gas": 1594574, - "gasCost": 3, - "op": "MLOAD", "pc": 625, + "op": "MLOAD", + "gas": 1576748, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -24871,11 +25127,11 @@ ] }, { - "depth": 1, - "gas": 1594571, - "gasCost": 3, - "op": "SWAP1", "pc": 626, + "op": "SWAP1", + "gas": 1576745, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -24890,11 +25146,11 @@ ] }, { - "depth": 1, - "gas": 1594568, - "gasCost": 3, - "op": "PUSH1", "pc": 627, + "op": "PUSH1", + "gas": 1576742, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -24909,11 +25165,11 @@ ] }, { - "depth": 1, - "gas": 1594565, - "gasCost": 3, - "op": "ADD", "pc": 629, + "op": "ADD", + "gas": 1576739, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -24929,11 +25185,11 @@ ] }, { - "depth": 1, - "gas": 1594562, - "gasCost": 36, - "op": "KECCAK256", "pc": 630, + "op": "KECCAK256", + "gas": 1576736, + "gasCost": 36, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -24948,11 +25204,11 @@ ] }, { - "depth": 1, - "gas": 1594526, - "gasCost": 3, - "op": "SWAP1", "pc": 631, + "op": "SWAP1", + "gas": 1576700, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -24966,11 +25222,11 @@ ] }, { - "depth": 1, - "gas": 1594523, - "gasCost": 2, - "op": "POP", "pc": 632, + "op": "POP", + "gas": 1576697, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -24984,11 +25240,11 @@ ] }, { - "depth": 1, - "gas": 1594521, - "gasCost": 3, - "op": "DUP1", "pc": 633, + "op": "DUP1", + "gas": 1576695, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -25001,11 +25257,11 @@ ] }, { - "depth": 1, - "gas": 1594518, - "gasCost": 3, - "op": "SWAP3", "pc": 634, + "op": "SWAP3", + "gas": 1576692, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -25019,11 +25275,11 @@ ] }, { - "depth": 1, - "gas": 1594515, - "gasCost": 2, - "op": "POP", "pc": 635, + "op": "POP", + "gas": 1576689, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -25037,11 +25293,11 @@ ] }, { - "depth": 1, - "gas": 1594513, - "gasCost": 2, - "op": "POP", "pc": 636, + "op": "POP", + "gas": 1576687, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -25054,11 +25310,11 @@ ] }, { - "depth": 1, - "gas": 1594511, - "gasCost": 2, - "op": "POP", "pc": 637, + "op": "POP", + "gas": 1576685, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -25070,11 +25326,11 @@ ] }, { - "depth": 1, - "gas": 1594509, - "gasCost": 3, - "op": "SWAP1", "pc": 638, + "op": "SWAP1", + "gas": 1576683, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -25085,11 +25341,11 @@ ] }, { - "depth": 1, - "gas": 1594506, - "gasCost": 8, - "op": "JUMP", "pc": 639, + "op": "JUMP", + "gas": 1576680, + "gasCost": 8, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -25100,11 +25356,11 @@ ] }, { - "depth": 1, - "gas": 1594498, - "gasCost": 1, - "op": "JUMPDEST", "pc": 1010, + "op": "JUMPDEST", + "gas": 1576672, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -25114,11 +25370,11 @@ ] }, { - "depth": 1, - "gas": 1594497, - "gasCost": 2, - "op": "POP", "pc": 1011, + "op": "POP", + "gas": 1576671, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -25128,11 +25384,11 @@ ] }, { - "depth": 1, - "gas": 1594495, - "gasCost": 3, - "op": "PUSH1", "pc": 1012, + "op": "PUSH1", + "gas": 1576669, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -25141,11 +25397,11 @@ ] }, { - "depth": 1, - "gas": 1594492, - "gasCost": 3, - "op": "DUP1", "pc": 1014, + "op": "DUP1", + "gas": 1576666, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -25155,11 +25411,11 @@ ] }, { - "depth": 1, - "gas": 1594489, - "gasCost": 200, - "op": "SLOAD", "pc": 1015, + "op": "SLOAD", + "gas": 1576663, + "gasCost": 100, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -25169,236 +25425,236 @@ "0x0" ], "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "0000000000000000000000005b659fd8bdc52879d0c3697038537da40832b759", + "0000000000000000000000000000000000000000000000000000000000000000": "00000000000000000000000061a286b8e87e2d31c475d71c85a0020584c44bae", "0000000000000000000000000000000000000000000000000000000000000001": "00000000000000000000000000000000000000000000000000000000000003e8", "0000000000000000000000000000000000000000000000000000000000000003": "00000000000000000000000000000000000000000000000000000000000003e9" } }, { - "depth": 1, - "gas": 1594289, - "gasCost": 3, - "op": "SWAP1", "pc": 1016, + "op": "SWAP1", + "gas": 1576563, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759" + "0x61a286b8e87e2d31c475d71c85a0020584c44bae" ] }, { - "depth": 1, - "gas": 1594286, - "gasCost": 3, - "op": "PUSH2", "pc": 1017, + "op": "PUSH2", + "gas": 1576560, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0x0" ] }, { - "depth": 1, - "gas": 1594283, - "gasCost": 10, - "op": "EXP", "pc": 1020, + "op": "EXP", + "gas": 1576557, + "gasCost": 10, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0x0", "0x100" ] }, { - "depth": 1, - "gas": 1594273, - "gasCost": 3, - "op": "SWAP1", "pc": 1021, + "op": "SWAP1", + "gas": 1576547, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0x1" ] }, { - "depth": 1, - "gas": 1594270, - "gasCost": 5, - "op": "DIV", "pc": 1022, + "op": "DIV", + "gas": 1576544, + "gasCost": 5, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", "0x1", - "0x5b659fd8bdc52879d0c3697038537da40832b759" + "0x61a286b8e87e2d31c475d71c85a0020584c44bae" ] }, { - "depth": 1, - "gas": 1594265, - "gasCost": 3, - "op": "PUSH20", "pc": 1023, + "op": "PUSH20", + "gas": 1576539, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759" + "0x61a286b8e87e2d31c475d71c85a0020584c44bae" ] }, { - "depth": 1, - "gas": 1594262, - "gasCost": 3, - "op": "AND", "pc": 1044, + "op": "AND", + "gas": 1576536, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xffffffffffffffffffffffffffffffffffffffff" ] }, { - "depth": 1, - "gas": 1594259, - "gasCost": 3, - "op": "PUSH20", "pc": 1045, + "op": "PUSH20", + "gas": 1576533, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759" + "0x61a286b8e87e2d31c475d71c85a0020584c44bae" ] }, { - "depth": 1, - "gas": 1594256, - "gasCost": 3, - "op": "AND", "pc": 1066, + "op": "AND", + "gas": 1576530, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xffffffffffffffffffffffffffffffffffffffff" ] }, { - "depth": 1, - "gas": 1594253, - "gasCost": 3, - "op": "PUSH4", "pc": 1067, + "op": "PUSH4", + "gas": 1576527, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759" + "0x61a286b8e87e2d31c475d71c85a0020584c44bae" ] }, { - "depth": 1, - "gas": 1594250, - "gasCost": 3, - "op": "DUP4", "pc": 1072, + "op": "DUP4", + "gas": 1576524, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xa0712d68" ] }, { - "depth": 1, - "gas": 1594247, - "gasCost": 3, - "op": "PUSH1", "pc": 1073, + "op": "PUSH1", + "gas": 1576521, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xa0712d68", "0x3e8" ] }, { - "depth": 1, - "gas": 1594244, - "gasCost": 3, - "op": "MLOAD", "pc": 1075, + "op": "MLOAD", + "gas": 1576518, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xa0712d68", "0x3e8", "0x40" ] }, { - "depth": 1, - "gas": 1594241, - "gasCost": 3, - "op": "DUP3", "pc": 1076, + "op": "DUP3", + "gas": 1576515, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xa0712d68", "0x3e8", "0xc0" ] }, { - "depth": 1, - "gas": 1594238, - "gasCost": 3, - "op": "PUSH4", "pc": 1077, + "op": "PUSH4", + "gas": 1576512, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xa0712d68", "0x3e8", "0xc0", @@ -25406,17 +25662,17 @@ ] }, { - "depth": 1, - "gas": 1594235, - "gasCost": 3, - "op": "AND", "pc": 1082, + "op": "AND", + "gas": 1576509, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xa0712d68", "0x3e8", "0xc0", @@ -25425,17 +25681,17 @@ ] }, { - "depth": 1, - "gas": 1594232, - "gasCost": 3, - "op": "PUSH1", "pc": 1083, + "op": "PUSH1", + "gas": 1576506, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xa0712d68", "0x3e8", "0xc0", @@ -25443,17 +25699,17 @@ ] }, { - "depth": 1, - "gas": 1594229, - "gasCost": 3, - "op": "SHL", "pc": 1085, + "op": "SHL", + "gas": 1576503, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xa0712d68", "0x3e8", "0xc0", @@ -25462,17 +25718,17 @@ ] }, { - "depth": 1, - "gas": 1594226, - "gasCost": 3, - "op": "DUP2", "pc": 1086, + "op": "DUP2", + "gas": 1576500, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xa0712d68", "0x3e8", "0xc0", @@ -25480,17 +25736,17 @@ ] }, { - "depth": 1, - "gas": 1594223, - "gasCost": 3, - "op": "MSTORE", "pc": 1087, + "op": "MSTORE", + "gas": 1576497, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xa0712d68", "0x3e8", "0xc0", @@ -25499,34 +25755,34 @@ ] }, { - "depth": 1, - "gas": 1594220, - "gasCost": 3, - "op": "PUSH1", "pc": 1088, + "op": "PUSH1", + "gas": 1576494, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xa0712d68", "0x3e8", "0xc0" ] }, { - "depth": 1, - "gas": 1594217, - "gasCost": 3, - "op": "ADD", "pc": 1090, + "op": "ADD", + "gas": 1576491, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xa0712d68", "0x3e8", "0xc0", @@ -25534,34 +25790,34 @@ ] }, { - "depth": 1, - "gas": 1594214, - "gasCost": 3, - "op": "PUSH3", "pc": 1091, + "op": "PUSH3", + "gas": 1576488, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xa0712d68", "0x3e8", "0xc4" ] }, { - "depth": 1, - "gas": 1594211, - "gasCost": 3, - "op": "SWAP2", "pc": 1095, + "op": "SWAP2", + "gas": 1576485, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xa0712d68", "0x3e8", "0xc4", @@ -25569,17 +25825,17 @@ ] }, { - "depth": 1, - "gas": 1594208, - "gasCost": 3, - "op": "SWAP1", "pc": 1096, + "op": "SWAP1", + "gas": 1576482, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xa0712d68", "0x44e", "0xc4", @@ -25587,17 +25843,17 @@ ] }, { - "depth": 1, - "gas": 1594205, - "gasCost": 3, - "op": "PUSH3", "pc": 1097, + "op": "PUSH3", + "gas": 1576479, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xa0712d68", "0x44e", "0x3e8", @@ -25605,36 +25861,36 @@ ] }, { - "depth": 1, - "gas": 1594202, - "gasCost": 8, - "op": "JUMP", "pc": 1101, + "op": "JUMP", + "gas": 1576476, + "gasCost": 8, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xa0712d68", "0x44e", "0x3e8", "0xc4", - "0x975" + "0x997" ] }, { - "depth": 1, - "gas": 1594194, - "gasCost": 1, + "pc": 2455, "op": "JUMPDEST", - "pc": 2421, + "gas": 1576468, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xa0712d68", "0x44e", "0x3e8", @@ -25642,17 +25898,17 @@ ] }, { - "depth": 1, - "gas": 1594193, - "gasCost": 3, + "pc": 2456, "op": "PUSH1", - "pc": 2422, + "gas": 1576467, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xa0712d68", "0x44e", "0x3e8", @@ -25660,17 +25916,17 @@ ] }, { - "depth": 1, - "gas": 1594190, - "gasCost": 3, + "pc": 2458, "op": "PUSH1", - "pc": 2424, + "gas": 1576464, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xa0712d68", "0x44e", "0x3e8", @@ -25679,17 +25935,17 @@ ] }, { - "depth": 1, - "gas": 1594187, - "gasCost": 3, + "pc": 2460, "op": "DUP3", - "pc": 2426, + "gas": 1576461, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xa0712d68", "0x44e", "0x3e8", @@ -25699,17 +25955,17 @@ ] }, { - "depth": 1, - "gas": 1594184, - "gasCost": 3, + "pc": 2461, "op": "ADD", - "pc": 2427, + "gas": 1576458, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xa0712d68", "0x44e", "0x3e8", @@ -25720,17 +25976,17 @@ ] }, { - "depth": 1, - "gas": 1594181, - "gasCost": 3, + "pc": 2462, "op": "SWAP1", - "pc": 2428, + "gas": 1576455, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xa0712d68", "0x44e", "0x3e8", @@ -25740,17 +25996,17 @@ ] }, { - "depth": 1, - "gas": 1594178, - "gasCost": 2, + "pc": 2463, "op": "POP", - "pc": 2429, + "gas": 1576452, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xa0712d68", "0x44e", "0x3e8", @@ -25760,17 +26016,17 @@ ] }, { - "depth": 1, - "gas": 1594176, - "gasCost": 3, + "pc": 2464, "op": "PUSH3", - "pc": 2430, + "gas": 1576450, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xa0712d68", "0x44e", "0x3e8", @@ -25779,538 +26035,538 @@ ] }, { - "depth": 1, - "gas": 1594173, - "gasCost": 3, + "pc": 2468, "op": "PUSH1", - "pc": 2434, + "gas": 1576447, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xa0712d68", "0x44e", "0x3e8", "0xc4", "0xe4", - "0x98c" + "0x9ae" ] }, - { - "depth": 1, - "gas": 1594170, - "gasCost": 3, + { + "pc": 2470, "op": "DUP4", - "pc": 2436, + "gas": 1576444, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xa0712d68", "0x44e", "0x3e8", "0xc4", "0xe4", - "0x98c", + "0x9ae", "0x0" ] }, { - "depth": 1, - "gas": 1594167, - "gasCost": 3, + "pc": 2471, "op": "ADD", - "pc": 2437, + "gas": 1576441, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xa0712d68", "0x44e", "0x3e8", "0xc4", "0xe4", - "0x98c", + "0x9ae", "0x0", "0xc4" ] }, { - "depth": 1, - "gas": 1594164, - "gasCost": 3, + "pc": 2472, "op": "DUP5", - "pc": 2438, + "gas": 1576438, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xa0712d68", "0x44e", "0x3e8", "0xc4", "0xe4", - "0x98c", + "0x9ae", "0xc4" ] }, { - "depth": 1, - "gas": 1594161, - "gasCost": 3, + "pc": 2473, "op": "PUSH3", - "pc": 2439, + "gas": 1576435, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xa0712d68", "0x44e", "0x3e8", "0xc4", "0xe4", - "0x98c", + "0x9ae", "0xc4", "0x3e8" ] }, { - "depth": 1, - "gas": 1594158, - "gasCost": 8, + "pc": 2477, "op": "JUMP", - "pc": 2443, + "gas": 1576432, + "gasCost": 8, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xa0712d68", "0x44e", "0x3e8", "0xc4", "0xe4", - "0x98c", + "0x9ae", "0xc4", "0x3e8", - "0x964" + "0x986" ] }, { - "depth": 1, - "gas": 1594150, - "gasCost": 1, + "pc": 2438, "op": "JUMPDEST", - "pc": 2404, + "gas": 1576424, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xa0712d68", "0x44e", "0x3e8", "0xc4", "0xe4", - "0x98c", + "0x9ae", "0xc4", "0x3e8" ] }, { - "depth": 1, - "gas": 1594149, - "gasCost": 3, + "pc": 2439, "op": "PUSH3", - "pc": 2405, + "gas": 1576423, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xa0712d68", "0x44e", "0x3e8", "0xc4", "0xe4", - "0x98c", + "0x9ae", "0xc4", "0x3e8" ] }, { - "depth": 1, - "gas": 1594146, - "gasCost": 3, + "pc": 2443, "op": "DUP2", - "pc": 2409, + "gas": 1576420, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xa0712d68", "0x44e", "0x3e8", "0xc4", "0xe4", - "0x98c", + "0x9ae", "0xc4", "0x3e8", - "0x96f" + "0x991" ] }, { - "depth": 1, - "gas": 1594143, - "gasCost": 3, + "pc": 2444, "op": "PUSH3", - "pc": 2410, + "gas": 1576417, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xa0712d68", "0x44e", "0x3e8", "0xc4", "0xe4", - "0x98c", + "0x9ae", "0xc4", "0x3e8", - "0x96f", + "0x991", "0x3e8" ] }, { - "depth": 1, - "gas": 1594140, - "gasCost": 8, + "pc": 2448, "op": "JUMP", - "pc": 2414, + "gas": 1576414, + "gasCost": 8, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xa0712d68", "0x44e", "0x3e8", "0xc4", "0xe4", - "0x98c", + "0x9ae", "0xc4", "0x3e8", - "0x96f", + "0x991", "0x3e8", - "0x95a" + "0x97c" ] }, { - "depth": 1, - "gas": 1594132, - "gasCost": 1, + "pc": 2428, "op": "JUMPDEST", - "pc": 2394, + "gas": 1576406, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xa0712d68", "0x44e", "0x3e8", "0xc4", "0xe4", - "0x98c", + "0x9ae", "0xc4", "0x3e8", - "0x96f", + "0x991", "0x3e8" ] }, { - "depth": 1, - "gas": 1594131, - "gasCost": 3, + "pc": 2429, "op": "PUSH1", - "pc": 2395, + "gas": 1576405, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xa0712d68", "0x44e", "0x3e8", "0xc4", "0xe4", - "0x98c", + "0x9ae", "0xc4", "0x3e8", - "0x96f", + "0x991", "0x3e8" ] }, { - "depth": 1, - "gas": 1594128, - "gasCost": 3, + "pc": 2431, "op": "DUP2", - "pc": 2397, + "gas": 1576402, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xa0712d68", "0x44e", "0x3e8", "0xc4", "0xe4", - "0x98c", + "0x9ae", "0xc4", "0x3e8", - "0x96f", + "0x991", "0x3e8", "0x0" ] }, { - "depth": 1, - "gas": 1594125, - "gasCost": 3, + "pc": 2432, "op": "SWAP1", - "pc": 2398, + "gas": 1576399, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xa0712d68", "0x44e", "0x3e8", "0xc4", "0xe4", - "0x98c", + "0x9ae", "0xc4", "0x3e8", - "0x96f", + "0x991", "0x3e8", "0x0", "0x3e8" ] }, { - "depth": 1, - "gas": 1594122, - "gasCost": 2, + "pc": 2433, "op": "POP", - "pc": 2399, + "gas": 1576396, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xa0712d68", "0x44e", "0x3e8", "0xc4", "0xe4", - "0x98c", + "0x9ae", "0xc4", "0x3e8", - "0x96f", + "0x991", "0x3e8", "0x3e8", "0x0" ] }, { - "depth": 1, - "gas": 1594120, - "gasCost": 3, + "pc": 2434, "op": "SWAP2", - "pc": 2400, + "gas": 1576394, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xa0712d68", "0x44e", "0x3e8", "0xc4", "0xe4", - "0x98c", + "0x9ae", "0xc4", "0x3e8", - "0x96f", + "0x991", "0x3e8", "0x3e8" ] }, { - "depth": 1, - "gas": 1594117, - "gasCost": 3, + "pc": 2435, "op": "SWAP1", - "pc": 2401, + "gas": 1576391, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xa0712d68", "0x44e", "0x3e8", "0xc4", "0xe4", - "0x98c", + "0x9ae", "0xc4", "0x3e8", "0x3e8", "0x3e8", - "0x96f" + "0x991" ] }, { - "depth": 1, - "gas": 1594114, - "gasCost": 2, + "pc": 2436, "op": "POP", - "pc": 2402, + "gas": 1576388, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xa0712d68", "0x44e", "0x3e8", "0xc4", "0xe4", - "0x98c", + "0x9ae", "0xc4", "0x3e8", "0x3e8", - "0x96f", + "0x991", "0x3e8" ] }, { - "depth": 1, - "gas": 1594112, - "gasCost": 8, + "pc": 2437, "op": "JUMP", - "pc": 2403, + "gas": 1576386, + "gasCost": 8, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xa0712d68", "0x44e", "0x3e8", "0xc4", "0xe4", - "0x98c", + "0x9ae", "0xc4", "0x3e8", "0x3e8", - "0x96f" + "0x991" ] }, { - "depth": 1, - "gas": 1594104, - "gasCost": 1, + "pc": 2449, "op": "JUMPDEST", - "pc": 2415, + "gas": 1576378, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xa0712d68", "0x44e", "0x3e8", "0xc4", "0xe4", - "0x98c", + "0x9ae", "0xc4", "0x3e8", "0x3e8" ] }, { - "depth": 1, - "gas": 1594103, - "gasCost": 3, + "pc": 2450, "op": "DUP3", - "pc": 2416, + "gas": 1576377, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xa0712d68", "0x44e", "0x3e8", "0xc4", "0xe4", - "0x98c", + "0x9ae", "0xc4", "0x3e8", "0x3e8" ] }, { - "depth": 1, - "gas": 1594100, - "gasCost": 3, + "pc": 2451, "op": "MSTORE", - "pc": 2417, + "gas": 1576374, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xa0712d68", "0x44e", "0x3e8", "0xc4", "0xe4", - "0x98c", + "0x9ae", "0xc4", "0x3e8", "0x3e8", @@ -26318,80 +26574,80 @@ ] }, { - "depth": 1, - "gas": 1594097, - "gasCost": 2, + "pc": 2452, "op": "POP", - "pc": 2418, + "gas": 1576371, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xa0712d68", "0x44e", "0x3e8", "0xc4", "0xe4", - "0x98c", + "0x9ae", "0xc4", "0x3e8" ] }, { - "depth": 1, - "gas": 1594095, - "gasCost": 2, + "pc": 2453, "op": "POP", - "pc": 2419, + "gas": 1576369, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xa0712d68", "0x44e", "0x3e8", "0xc4", "0xe4", - "0x98c", + "0x9ae", "0xc4" ] }, { - "depth": 1, - "gas": 1594093, - "gasCost": 8, + "pc": 2454, "op": "JUMP", - "pc": 2420, + "gas": 1576367, + "gasCost": 8, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xa0712d68", "0x44e", "0x3e8", "0xc4", "0xe4", - "0x98c" + "0x9ae" ] }, { - "depth": 1, - "gas": 1594085, - "gasCost": 1, + "pc": 2478, "op": "JUMPDEST", - "pc": 2444, + "gas": 1576359, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xa0712d68", "0x44e", "0x3e8", @@ -26400,17 +26656,17 @@ ] }, { - "depth": 1, - "gas": 1594084, - "gasCost": 3, + "pc": 2479, "op": "SWAP3", - "pc": 2445, + "gas": 1576358, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xa0712d68", "0x44e", "0x3e8", @@ -26419,17 +26675,17 @@ ] }, { - "depth": 1, - "gas": 1594081, - "gasCost": 3, + "pc": 2480, "op": "SWAP2", - "pc": 2446, + "gas": 1576355, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xa0712d68", "0xe4", "0x3e8", @@ -26438,17 +26694,17 @@ ] }, { - "depth": 1, - "gas": 1594078, - "gasCost": 2, + "pc": 2481, "op": "POP", - "pc": 2447, + "gas": 1576352, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xa0712d68", "0xe4", "0x44e", @@ -26457,17 +26713,17 @@ ] }, { - "depth": 1, - "gas": 1594076, - "gasCost": 2, + "pc": 2482, "op": "POP", - "pc": 2448, + "gas": 1576350, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xa0712d68", "0xe4", "0x44e", @@ -26475,83 +26731,83 @@ ] }, { - "depth": 1, - "gas": 1594074, - "gasCost": 8, + "pc": 2483, "op": "JUMP", - "pc": 2449, + "gas": 1576348, + "gasCost": 8, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xa0712d68", "0xe4", "0x44e" ] }, { - "depth": 1, - "gas": 1594066, - "gasCost": 1, - "op": "JUMPDEST", "pc": 1102, + "op": "JUMPDEST", + "gas": 1576340, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xa0712d68", "0xe4" ] }, { - "depth": 1, - "gas": 1594065, - "gasCost": 3, - "op": "PUSH1", "pc": 1103, + "op": "PUSH1", + "gas": 1576339, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xa0712d68", "0xe4" ] }, { - "depth": 1, - "gas": 1594062, - "gasCost": 3, - "op": "PUSH1", "pc": 1105, + "op": "PUSH1", + "gas": 1576336, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xa0712d68", "0xe4", "0x20" ] }, { - "depth": 1, - "gas": 1594059, - "gasCost": 3, - "op": "MLOAD", "pc": 1107, + "op": "MLOAD", + "gas": 1576333, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xa0712d68", "0xe4", "0x20", @@ -26559,17 +26815,17 @@ ] }, { - "depth": 1, - "gas": 1594056, - "gasCost": 3, - "op": "DUP1", "pc": 1108, + "op": "DUP1", + "gas": 1576330, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xa0712d68", "0xe4", "0x20", @@ -26577,17 +26833,17 @@ ] }, { - "depth": 1, - "gas": 1594053, - "gasCost": 3, - "op": "DUP4", "pc": 1109, + "op": "DUP4", + "gas": 1576327, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xa0712d68", "0xe4", "0x20", @@ -26596,17 +26852,17 @@ ] }, { - "depth": 1, - "gas": 1594050, - "gasCost": 3, - "op": "SUB", "pc": 1110, + "op": "SUB", + "gas": 1576324, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xa0712d68", "0xe4", "0x20", @@ -26616,17 +26872,17 @@ ] }, { - "depth": 1, - "gas": 1594047, - "gasCost": 3, - "op": "DUP2", "pc": 1111, + "op": "DUP2", + "gas": 1576321, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xa0712d68", "0xe4", "0x20", @@ -26635,17 +26891,17 @@ ] }, { - "depth": 1, - "gas": 1594044, - "gasCost": 3, - "op": "PUSH1", "pc": 1112, + "op": "PUSH1", + "gas": 1576318, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xa0712d68", "0xe4", "0x20", @@ -26655,38 +26911,225 @@ ] }, { + "pc": 1114, + "op": "DUP8", + "gas": 1576315, + "gasCost": 3, "depth": 1, - "gas": 1594041, + "stack": [ + "0x3aa18088", + "0x149", + "0x3e8", + "0x0", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xa0712d68", + "0xe4", + "0x20", + "0xc0", + "0x24", + "0xc0", + "0x0" + ] + }, + { + "pc": 1115, + "op": "DUP1", + "gas": 1576312, "gasCost": 3, - "op": "DUP8", - "pc": 1114, + "depth": 1, + "stack": [ + "0x3aa18088", + "0x149", + "0x3e8", + "0x0", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xa0712d68", + "0xe4", + "0x20", + "0xc0", + "0x24", + "0xc0", + "0x0", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae" + ] + }, + { + "pc": 1116, + "op": "EXTCODESIZE", + "gas": 1576309, + "gasCost": 100, + "depth": 1, + "stack": [ + "0x3aa18088", + "0x149", + "0x3e8", + "0x0", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xa0712d68", + "0xe4", + "0x20", + "0xc0", + "0x24", + "0xc0", + "0x0", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae" + ] + }, + { + "pc": 1117, + "op": "ISZERO", + "gas": 1576209, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3aa18088", + "0x149", + "0x3e8", + "0x0", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xa0712d68", + "0xe4", + "0x20", + "0xc0", + "0x24", + "0xc0", + "0x0", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0x651" + ] + }, + { + "pc": 1118, + "op": "DUP1", + "gas": 1576206, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3aa18088", + "0x149", + "0x3e8", + "0x0", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xa0712d68", + "0xe4", + "0x20", + "0xc0", + "0x24", + "0xc0", + "0x0", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0x0" + ] + }, + { + "pc": 1119, + "op": "ISZERO", + "gas": 1576203, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xa0712d68", "0xe4", "0x20", "0xc0", "0x24", "0xc0", + "0x0", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0x0", "0x0" ] }, { + "pc": 1120, + "op": "PUSH3", + "gas": 1576200, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x3aa18088", + "0x149", + "0x3e8", + "0x0", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xa0712d68", + "0xe4", + "0x20", + "0xc0", + "0x24", + "0xc0", + "0x0", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0x0", + "0x1" + ] + }, + { + "pc": 1124, + "op": "JUMPI", + "gas": 1576197, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x3aa18088", + "0x149", + "0x3e8", + "0x0", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xa0712d68", + "0xe4", + "0x20", + "0xc0", + "0x24", + "0xc0", + "0x0", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0x0", + "0x1", + "0x469" + ] + }, + { + "pc": 1129, + "op": "JUMPDEST", + "gas": 1576187, + "gasCost": 1, "depth": 1, - "gas": 1594038, + "stack": [ + "0x3aa18088", + "0x149", + "0x3e8", + "0x0", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xa0712d68", + "0xe4", + "0x20", + "0xc0", + "0x24", + "0xc0", + "0x0", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0x0" + ] + }, + { + "pc": 1130, + "op": "POP", + "gas": 1576186, "gasCost": 2, - "op": "GAS", - "pc": 1115, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xa0712d68", "0xe4", "0x20", @@ -26694,21 +27137,44 @@ "0x24", "0xc0", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759" + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0x0" ] }, { + "pc": 1131, + "op": "GAS", + "gas": 1576184, + "gasCost": 2, "depth": 1, - "gas": 1594036, - "gasCost": 8043, + "stack": [ + "0x3aa18088", + "0x149", + "0x3e8", + "0x0", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0xa0712d68", + "0xe4", + "0x20", + "0xc0", + "0x24", + "0xc0", + "0x0", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae" + ] + }, + { + "pc": 1132, "op": "CALL", - "pc": 1116, + "gas": 1576182, + "gasCost": 1551556, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xa0712d68", "0xe4", "0x20", @@ -26716,85 +27182,85 @@ "0x24", "0xc0", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", - "0x1852b4" + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", + "0x180cf6" ] }, { - "depth": 2, - "gas": 1568441, - "gasCost": 3, - "op": "PUSH1", "pc": 0, + "op": "PUSH1", + "gas": 1551456, + "gasCost": 3, + "depth": 2, "stack": [] }, { - "depth": 2, - "gas": 1568438, - "gasCost": 3, - "op": "PUSH1", "pc": 2, + "op": "PUSH1", + "gas": 1551453, + "gasCost": 3, + "depth": 2, "stack": [ "0x80" ] }, { - "depth": 2, - "gas": 1568435, - "gasCost": 12, - "op": "MSTORE", "pc": 4, + "op": "MSTORE", + "gas": 1551450, + "gasCost": 12, + "depth": 2, "stack": [ "0x80", "0x40" ] }, { - "depth": 2, - "gas": 1568423, - "gasCost": 2, - "op": "CALLVALUE", "pc": 5, + "op": "CALLVALUE", + "gas": 1551438, + "gasCost": 2, + "depth": 2, "stack": [] }, { - "depth": 2, - "gas": 1568421, - "gasCost": 3, - "op": "DUP1", "pc": 6, + "op": "DUP1", + "gas": 1551436, + "gasCost": 3, + "depth": 2, "stack": [ "0x0" ] }, { - "depth": 2, - "gas": 1568418, - "gasCost": 3, - "op": "ISZERO", "pc": 7, + "op": "ISZERO", + "gas": 1551433, + "gasCost": 3, + "depth": 2, "stack": [ "0x0", "0x0" ] }, { - "depth": 2, - "gas": 1568415, - "gasCost": 3, - "op": "PUSH2", "pc": 8, + "op": "PUSH2", + "gas": 1551430, + "gasCost": 3, + "depth": 2, "stack": [ "0x0", "0x1" ] }, { - "depth": 2, - "gas": 1568412, - "gasCost": 10, - "op": "JUMPI", "pc": 11, + "op": "JUMPI", + "gas": 1551427, + "gasCost": 10, + "depth": 2, "stack": [ "0x0", "0x1", @@ -26802,141 +27268,141 @@ ] }, { - "depth": 2, - "gas": 1568402, - "gasCost": 1, - "op": "JUMPDEST", "pc": 16, + "op": "JUMPDEST", + "gas": 1551417, + "gasCost": 1, + "depth": 2, "stack": [ "0x0" ] }, { - "depth": 2, - "gas": 1568401, - "gasCost": 2, - "op": "POP", "pc": 17, + "op": "POP", + "gas": 1551416, + "gasCost": 2, + "depth": 2, "stack": [ "0x0" ] }, { - "depth": 2, - "gas": 1568399, - "gasCost": 3, - "op": "PUSH1", "pc": 18, + "op": "PUSH1", + "gas": 1551414, + "gasCost": 3, + "depth": 2, "stack": [] }, { - "depth": 2, - "gas": 1568396, - "gasCost": 2, - "op": "CALLDATASIZE", "pc": 20, + "op": "CALLDATASIZE", + "gas": 1551411, + "gasCost": 2, + "depth": 2, "stack": [ "0x4" ] }, { - "depth": 2, - "gas": 1568394, - "gasCost": 3, - "op": "LT", "pc": 21, + "op": "LT", + "gas": 1551409, + "gasCost": 3, + "depth": 2, "stack": [ "0x4", "0x24" ] }, { - "depth": 2, - "gas": 1568391, - "gasCost": 3, - "op": "PUSH2", "pc": 22, + "op": "PUSH2", + "gas": 1551406, + "gasCost": 3, + "depth": 2, "stack": [ "0x0" ] }, { - "depth": 2, - "gas": 1568388, - "gasCost": 10, - "op": "JUMPI", "pc": 25, + "op": "JUMPI", + "gas": 1551403, + "gasCost": 10, + "depth": 2, "stack": [ "0x0", "0x62" ] }, { - "depth": 2, - "gas": 1568378, - "gasCost": 3, - "op": "PUSH1", "pc": 26, + "op": "PUSH1", + "gas": 1551393, + "gasCost": 3, + "depth": 2, "stack": [] }, { - "depth": 2, - "gas": 1568375, - "gasCost": 3, - "op": "CALLDATALOAD", "pc": 28, + "op": "CALLDATALOAD", + "gas": 1551390, + "gasCost": 3, + "depth": 2, "stack": [ "0x0" ] }, { - "depth": 2, - "gas": 1568372, - "gasCost": 3, - "op": "PUSH1", "pc": 29, + "op": "PUSH1", + "gas": 1551387, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d6800000000000000000000000000000000000000000000000000000000" ] }, { - "depth": 2, - "gas": 1568369, - "gasCost": 3, - "op": "SHR", "pc": 31, + "op": "SHR", + "gas": 1551384, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d6800000000000000000000000000000000000000000000000000000000", "0xe0" ] }, { - "depth": 2, - "gas": 1568366, - "gasCost": 3, - "op": "DUP1", "pc": 32, + "op": "DUP1", + "gas": 1551381, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68" ] - }, - { - "depth": 2, - "gas": 1568363, - "gasCost": 3, - "op": "PUSH4", + }, + { "pc": 33, + "op": "PUSH4", + "gas": 1551378, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xa0712d68" ] }, { - "depth": 2, - "gas": 1568360, - "gasCost": 3, - "op": "EQ", "pc": 38, + "op": "EQ", + "gas": 1551375, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xa0712d68", @@ -26944,22 +27410,22 @@ ] }, { - "depth": 2, - "gas": 1568357, - "gasCost": 3, - "op": "PUSH2", "pc": 39, + "op": "PUSH2", + "gas": 1551372, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0x0" ] }, { - "depth": 2, - "gas": 1568354, - "gasCost": 10, - "op": "JUMPI", "pc": 42, + "op": "JUMPI", + "gas": 1551369, + "gasCost": 10, + "depth": 2, "stack": [ "0xa0712d68", "0x0", @@ -26967,32 +27433,32 @@ ] }, { - "depth": 2, - "gas": 1568344, - "gasCost": 3, - "op": "DUP1", "pc": 43, + "op": "DUP1", + "gas": 1551359, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68" ] }, { - "depth": 2, - "gas": 1568341, - "gasCost": 3, - "op": "PUSH4", "pc": 44, + "op": "PUSH4", + "gas": 1551356, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xa0712d68" ] }, { - "depth": 2, - "gas": 1568338, - "gasCost": 3, - "op": "EQ", "pc": 49, + "op": "EQ", + "gas": 1551353, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xa0712d68", @@ -27000,22 +27466,22 @@ ] }, { - "depth": 2, - "gas": 1568335, - "gasCost": 3, - "op": "PUSH2", "pc": 50, + "op": "PUSH2", + "gas": 1551350, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0x0" ] }, { - "depth": 2, - "gas": 1568332, - "gasCost": 10, - "op": "JUMPI", "pc": 53, + "op": "JUMPI", + "gas": 1551347, + "gasCost": 10, + "depth": 2, "stack": [ "0xa0712d68", "0x0", @@ -27023,32 +27489,32 @@ ] }, { - "depth": 2, - "gas": 1568322, - "gasCost": 3, - "op": "DUP1", "pc": 54, + "op": "DUP1", + "gas": 1551337, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68" ] }, { - "depth": 2, - "gas": 1568319, - "gasCost": 3, - "op": "PUSH4", "pc": 55, + "op": "PUSH4", + "gas": 1551334, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xa0712d68" ] }, { - "depth": 2, - "gas": 1568316, - "gasCost": 3, - "op": "EQ", "pc": 60, + "op": "EQ", + "gas": 1551331, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xa0712d68", @@ -27056,22 +27522,22 @@ ] }, { - "depth": 2, - "gas": 1568313, - "gasCost": 3, - "op": "PUSH2", "pc": 61, + "op": "PUSH2", + "gas": 1551328, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0x0" ] }, { - "depth": 2, - "gas": 1568310, - "gasCost": 10, - "op": "JUMPI", "pc": 64, + "op": "JUMPI", + "gas": 1551325, + "gasCost": 10, + "depth": 2, "stack": [ "0xa0712d68", "0x0", @@ -27079,32 +27545,32 @@ ] }, { - "depth": 2, - "gas": 1568300, - "gasCost": 3, - "op": "DUP1", "pc": 65, + "op": "DUP1", + "gas": 1551315, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68" ] }, { - "depth": 2, - "gas": 1568297, - "gasCost": 3, - "op": "PUSH4", "pc": 66, + "op": "PUSH4", + "gas": 1551312, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xa0712d68" ] }, { - "depth": 2, - "gas": 1568294, - "gasCost": 3, - "op": "EQ", "pc": 71, + "op": "EQ", + "gas": 1551309, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xa0712d68", @@ -27112,22 +27578,22 @@ ] }, { - "depth": 2, - "gas": 1568291, - "gasCost": 3, - "op": "PUSH2", "pc": 72, + "op": "PUSH2", + "gas": 1551306, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0x1" ] }, { - "depth": 2, - "gas": 1568288, - "gasCost": 10, - "op": "JUMPI", "pc": 75, + "op": "JUMPI", + "gas": 1551303, + "gasCost": 10, + "depth": 2, "stack": [ "0xa0712d68", "0x1", @@ -27135,42 +27601,42 @@ ] }, { - "depth": 2, - "gas": 1568278, - "gasCost": 1, - "op": "JUMPDEST", "pc": 191, + "op": "JUMPDEST", + "gas": 1551293, + "gasCost": 1, + "depth": 2, "stack": [ "0xa0712d68" ] }, { - "depth": 2, - "gas": 1568277, - "gasCost": 3, - "op": "PUSH2", "pc": 192, + "op": "PUSH2", + "gas": 1551292, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68" ] }, { - "depth": 2, - "gas": 1568274, - "gasCost": 3, - "op": "PUSH1", "pc": 195, + "op": "PUSH1", + "gas": 1551289, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9" ] }, { - "depth": 2, - "gas": 1568271, - "gasCost": 3, - "op": "DUP1", "pc": 197, + "op": "DUP1", + "gas": 1551286, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -27178,11 +27644,11 @@ ] }, { - "depth": 2, - "gas": 1568268, - "gasCost": 2, - "op": "CALLDATASIZE", "pc": 198, + "op": "CALLDATASIZE", + "gas": 1551283, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -27191,11 +27657,11 @@ ] }, { - "depth": 2, - "gas": 1568266, - "gasCost": 3, - "op": "SUB", "pc": 199, + "op": "SUB", + "gas": 1551281, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -27205,11 +27671,11 @@ ] }, { - "depth": 2, - "gas": 1568263, - "gasCost": 3, - "op": "DUP2", "pc": 200, + "op": "DUP2", + "gas": 1551278, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -27218,11 +27684,11 @@ ] }, { - "depth": 2, - "gas": 1568260, - "gasCost": 3, - "op": "ADD", "pc": 201, + "op": "ADD", + "gas": 1551275, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -27232,11 +27698,11 @@ ] }, { - "depth": 2, - "gas": 1568257, - "gasCost": 3, - "op": "SWAP1", "pc": 202, + "op": "SWAP1", + "gas": 1551272, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -27245,11 +27711,11 @@ ] }, { - "depth": 2, - "gas": 1568254, - "gasCost": 3, - "op": "PUSH2", "pc": 203, + "op": "PUSH2", + "gas": 1551269, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -27258,11 +27724,11 @@ ] }, { - "depth": 2, - "gas": 1568251, - "gasCost": 3, - "op": "SWAP2", "pc": 206, + "op": "SWAP2", + "gas": 1551266, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -27272,11 +27738,11 @@ ] }, { - "depth": 2, - "gas": 1568248, - "gasCost": 3, - "op": "SWAP1", "pc": 207, + "op": "SWAP1", + "gas": 1551263, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -27286,11 +27752,11 @@ ] }, { - "depth": 2, - "gas": 1568245, - "gasCost": 3, - "op": "PUSH2", "pc": 208, + "op": "PUSH2", + "gas": 1551260, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -27300,11 +27766,11 @@ ] }, { - "depth": 2, - "gas": 1568242, - "gasCost": 8, - "op": "JUMP", "pc": 211, + "op": "JUMP", + "gas": 1551257, + "gasCost": 8, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -27315,11 +27781,11 @@ ] }, { - "depth": 2, - "gas": 1568234, - "gasCost": 1, - "op": "JUMPDEST", "pc": 835, + "op": "JUMPDEST", + "gas": 1551249, + "gasCost": 1, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -27329,11 +27795,11 @@ ] }, { - "depth": 2, - "gas": 1568233, - "gasCost": 3, - "op": "PUSH1", "pc": 836, + "op": "PUSH1", + "gas": 1551248, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -27343,11 +27809,11 @@ ] }, { - "depth": 2, - "gas": 1568230, - "gasCost": 3, - "op": "PUSH1", "pc": 838, + "op": "PUSH1", + "gas": 1551245, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -27358,11 +27824,11 @@ ] }, { - "depth": 2, - "gas": 1568227, - "gasCost": 3, - "op": "DUP3", "pc": 840, + "op": "DUP3", + "gas": 1551242, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -27374,11 +27840,11 @@ ] }, { - "depth": 2, - "gas": 1568224, - "gasCost": 3, - "op": "DUP5", "pc": 841, + "op": "DUP5", + "gas": 1551239, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -27391,11 +27857,11 @@ ] }, { - "depth": 2, - "gas": 1568221, - "gasCost": 3, - "op": "SUB", "pc": 842, + "op": "SUB", + "gas": 1551236, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -27409,11 +27875,11 @@ ] }, { - "depth": 2, - "gas": 1568218, - "gasCost": 3, - "op": "SLT", "pc": 843, + "op": "SLT", + "gas": 1551233, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -27426,11 +27892,11 @@ ] }, { - "depth": 2, - "gas": 1568215, - "gasCost": 3, - "op": "ISZERO", "pc": 844, + "op": "ISZERO", + "gas": 1551230, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -27442,11 +27908,11 @@ ] }, { - "depth": 2, - "gas": 1568212, - "gasCost": 3, - "op": "PUSH2", "pc": 845, + "op": "PUSH2", + "gas": 1551227, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -27458,11 +27924,11 @@ ] }, { - "depth": 2, - "gas": 1568209, - "gasCost": 10, - "op": "JUMPI", "pc": 848, + "op": "JUMPI", + "gas": 1551224, + "gasCost": 10, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -27475,11 +27941,11 @@ ] }, { - "depth": 2, - "gas": 1568199, - "gasCost": 1, - "op": "JUMPDEST", "pc": 857, + "op": "JUMPDEST", + "gas": 1551214, + "gasCost": 1, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -27490,11 +27956,11 @@ ] }, { - "depth": 2, - "gas": 1568198, - "gasCost": 3, - "op": "PUSH1", "pc": 858, + "op": "PUSH1", + "gas": 1551213, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -27505,11 +27971,11 @@ ] }, { - "depth": 2, - "gas": 1568195, - "gasCost": 3, - "op": "PUSH2", "pc": 860, + "op": "PUSH2", + "gas": 1551210, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -27521,11 +27987,11 @@ ] }, { - "depth": 2, - "gas": 1568192, - "gasCost": 3, - "op": "DUP5", "pc": 863, + "op": "DUP5", + "gas": 1551207, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -27538,11 +28004,11 @@ ] }, { - "depth": 2, - "gas": 1568189, - "gasCost": 3, - "op": "DUP3", "pc": 864, + "op": "DUP3", + "gas": 1551204, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -27556,11 +28022,11 @@ ] }, { - "depth": 2, - "gas": 1568186, - "gasCost": 3, - "op": "DUP6", "pc": 865, + "op": "DUP6", + "gas": 1551201, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -27575,11 +28041,11 @@ ] }, { - "depth": 2, - "gas": 1568183, - "gasCost": 3, - "op": "ADD", "pc": 866, + "op": "ADD", + "gas": 1551198, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -27595,11 +28061,11 @@ ] }, { - "depth": 2, - "gas": 1568180, - "gasCost": 3, - "op": "PUSH2", "pc": 867, + "op": "PUSH2", + "gas": 1551195, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -27614,11 +28080,11 @@ ] }, { - "depth": 2, - "gas": 1568177, - "gasCost": 8, - "op": "JUMP", "pc": 870, + "op": "JUMP", + "gas": 1551192, + "gasCost": 8, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -27634,11 +28100,11 @@ ] }, { - "depth": 2, - "gas": 1568169, - "gasCost": 1, - "op": "JUMPDEST", "pc": 814, + "op": "JUMPDEST", + "gas": 1551184, + "gasCost": 1, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -27653,11 +28119,11 @@ ] }, { - "depth": 2, - "gas": 1568168, - "gasCost": 3, - "op": "PUSH1", "pc": 815, + "op": "PUSH1", + "gas": 1551183, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -27672,11 +28138,11 @@ ] }, { - "depth": 2, - "gas": 1568165, - "gasCost": 3, - "op": "DUP2", "pc": 817, + "op": "DUP2", + "gas": 1551180, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -27692,11 +28158,11 @@ ] }, { - "depth": 2, - "gas": 1568162, - "gasCost": 3, - "op": "CALLDATALOAD", "pc": 818, + "op": "CALLDATALOAD", + "gas": 1551177, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -27713,11 +28179,11 @@ ] }, { - "depth": 2, - "gas": 1568159, - "gasCost": 3, - "op": "SWAP1", "pc": 819, + "op": "SWAP1", + "gas": 1551174, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -27734,11 +28200,11 @@ ] }, { - "depth": 2, - "gas": 1568156, - "gasCost": 2, - "op": "POP", "pc": 820, + "op": "POP", + "gas": 1551171, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -27755,11 +28221,11 @@ ] }, { - "depth": 2, - "gas": 1568154, - "gasCost": 3, - "op": "PUSH2", "pc": 821, + "op": "PUSH2", + "gas": 1551169, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -27775,11 +28241,11 @@ ] }, { - "depth": 2, - "gas": 1568151, - "gasCost": 3, - "op": "DUP2", "pc": 824, + "op": "DUP2", + "gas": 1551166, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -27796,11 +28262,11 @@ ] }, { - "depth": 2, - "gas": 1568148, - "gasCost": 3, - "op": "PUSH2", "pc": 825, + "op": "PUSH2", + "gas": 1551163, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -27818,11 +28284,11 @@ ] }, { - "depth": 2, - "gas": 1568145, - "gasCost": 8, - "op": "JUMP", "pc": 828, + "op": "JUMP", + "gas": 1551160, + "gasCost": 8, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -27841,11 +28307,11 @@ ] }, { - "depth": 2, - "gas": 1568137, - "gasCost": 1, - "op": "JUMPDEST", "pc": 791, + "op": "JUMPDEST", + "gas": 1551152, + "gasCost": 1, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -27863,11 +28329,11 @@ ] }, { - "depth": 2, - "gas": 1568136, - "gasCost": 3, - "op": "PUSH2", "pc": 792, + "op": "PUSH2", + "gas": 1551151, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -27885,11 +28351,11 @@ ] }, { - "depth": 2, - "gas": 1568133, - "gasCost": 3, - "op": "DUP2", "pc": 795, + "op": "DUP2", + "gas": 1551148, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -27908,11 +28374,11 @@ ] }, { - "depth": 2, - "gas": 1568130, - "gasCost": 3, - "op": "PUSH2", "pc": 796, + "op": "PUSH2", + "gas": 1551145, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -27932,11 +28398,11 @@ ] }, { - "depth": 2, - "gas": 1568127, - "gasCost": 8, - "op": "JUMP", "pc": 799, + "op": "JUMP", + "gas": 1551142, + "gasCost": 8, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -27957,11 +28423,11 @@ ] }, { - "depth": 2, - "gas": 1568119, - "gasCost": 1, - "op": "JUMPDEST", "pc": 781, + "op": "JUMPDEST", + "gas": 1551134, + "gasCost": 1, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -27981,11 +28447,11 @@ ] }, { - "depth": 2, - "gas": 1568118, - "gasCost": 3, - "op": "PUSH1", "pc": 782, + "op": "PUSH1", + "gas": 1551133, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -28005,11 +28471,11 @@ ] }, { - "depth": 2, - "gas": 1568115, - "gasCost": 3, - "op": "DUP2", "pc": 784, + "op": "DUP2", + "gas": 1551130, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -28030,11 +28496,11 @@ ] }, { - "depth": 2, - "gas": 1568112, - "gasCost": 3, - "op": "SWAP1", "pc": 785, + "op": "SWAP1", + "gas": 1551127, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -28056,11 +28522,11 @@ ] }, { - "depth": 2, - "gas": 1568109, - "gasCost": 2, - "op": "POP", "pc": 786, + "op": "POP", + "gas": 1551124, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -28082,11 +28548,11 @@ ] }, { - "depth": 2, - "gas": 1568107, - "gasCost": 3, - "op": "SWAP2", "pc": 787, + "op": "SWAP2", + "gas": 1551122, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -28107,11 +28573,11 @@ ] }, { - "depth": 2, - "gas": 1568104, - "gasCost": 3, - "op": "SWAP1", "pc": 788, + "op": "SWAP1", + "gas": 1551119, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -28132,11 +28598,11 @@ ] }, { - "depth": 2, - "gas": 1568101, - "gasCost": 2, - "op": "POP", "pc": 789, + "op": "POP", + "gas": 1551116, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -28157,11 +28623,11 @@ ] }, { - "depth": 2, - "gas": 1568099, - "gasCost": 8, - "op": "JUMP", "pc": 790, + "op": "JUMP", + "gas": 1551114, + "gasCost": 8, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -28181,11 +28647,11 @@ ] }, { - "depth": 2, - "gas": 1568091, - "gasCost": 1, - "op": "JUMPDEST", "pc": 800, + "op": "JUMPDEST", + "gas": 1551106, + "gasCost": 1, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -28204,11 +28670,11 @@ ] }, { - "depth": 2, - "gas": 1568090, - "gasCost": 3, - "op": "DUP2", "pc": 801, + "op": "DUP2", + "gas": 1551105, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -28227,11 +28693,11 @@ ] }, { - "depth": 2, - "gas": 1568087, - "gasCost": 3, - "op": "EQ", "pc": 802, + "op": "EQ", + "gas": 1551102, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -28251,11 +28717,11 @@ ] }, { - "depth": 2, - "gas": 1568084, - "gasCost": 3, - "op": "PUSH2", "pc": 803, + "op": "PUSH2", + "gas": 1551099, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -28274,11 +28740,11 @@ ] }, { - "depth": 2, - "gas": 1568081, - "gasCost": 10, - "op": "JUMPI", "pc": 806, + "op": "JUMPI", + "gas": 1551096, + "gasCost": 10, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -28298,11 +28764,11 @@ ] }, { - "depth": 2, - "gas": 1568071, - "gasCost": 1, - "op": "JUMPDEST", "pc": 811, + "op": "JUMPDEST", + "gas": 1551086, + "gasCost": 1, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -28320,11 +28786,11 @@ ] }, { - "depth": 2, - "gas": 1568070, - "gasCost": 2, - "op": "POP", "pc": 812, + "op": "POP", + "gas": 1551085, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -28342,11 +28808,11 @@ ] }, { - "depth": 2, - "gas": 1568068, - "gasCost": 8, - "op": "JUMP", "pc": 813, + "op": "JUMP", + "gas": 1551083, + "gasCost": 8, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -28363,11 +28829,11 @@ ] }, { - "depth": 2, - "gas": 1568060, - "gasCost": 1, - "op": "JUMPDEST", "pc": 829, + "op": "JUMPDEST", + "gas": 1551075, + "gasCost": 1, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -28383,11 +28849,11 @@ ] }, { - "depth": 2, - "gas": 1568059, - "gasCost": 3, - "op": "SWAP3", "pc": 830, + "op": "SWAP3", + "gas": 1551074, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -28403,11 +28869,11 @@ ] }, { - "depth": 2, - "gas": 1568056, - "gasCost": 3, - "op": "SWAP2", "pc": 831, + "op": "SWAP2", + "gas": 1551071, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -28423,11 +28889,11 @@ ] }, { - "depth": 2, - "gas": 1568053, - "gasCost": 2, - "op": "POP", "pc": 832, + "op": "POP", + "gas": 1551068, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -28443,11 +28909,11 @@ ] }, { - "depth": 2, - "gas": 1568051, - "gasCost": 2, - "op": "POP", "pc": 833, + "op": "POP", + "gas": 1551066, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -28462,11 +28928,11 @@ ] }, { - "depth": 2, - "gas": 1568049, - "gasCost": 8, - "op": "JUMP", "pc": 834, + "op": "JUMP", + "gas": 1551064, + "gasCost": 8, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -28480,11 +28946,11 @@ ] }, { - "depth": 2, - "gas": 1568041, - "gasCost": 1, - "op": "JUMPDEST", "pc": 871, + "op": "JUMPDEST", + "gas": 1551056, + "gasCost": 1, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -28497,11 +28963,11 @@ ] }, { - "depth": 2, - "gas": 1568040, - "gasCost": 3, - "op": "SWAP2", "pc": 872, + "op": "SWAP2", + "gas": 1551055, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -28514,11 +28980,11 @@ ] }, { - "depth": 2, - "gas": 1568037, - "gasCost": 2, - "op": "POP", "pc": 873, + "op": "POP", + "gas": 1551052, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -28531,11 +28997,11 @@ ] }, { - "depth": 2, - "gas": 1568035, - "gasCost": 2, - "op": "POP", "pc": 874, + "op": "POP", + "gas": 1551050, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -28547,11 +29013,11 @@ ] }, { - "depth": 2, - "gas": 1568033, - "gasCost": 3, - "op": "SWAP3", "pc": 875, + "op": "SWAP3", + "gas": 1551048, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -28562,11 +29028,11 @@ ] }, { - "depth": 2, - "gas": 1568030, - "gasCost": 3, - "op": "SWAP2", "pc": 876, + "op": "SWAP2", + "gas": 1551045, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -28577,11 +29043,11 @@ ] }, { - "depth": 2, - "gas": 1568027, - "gasCost": 2, - "op": "POP", "pc": 877, + "op": "POP", + "gas": 1551042, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -28592,11 +29058,11 @@ ] }, { - "depth": 2, - "gas": 1568025, - "gasCost": 2, - "op": "POP", "pc": 878, + "op": "POP", + "gas": 1551040, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -28606,11 +29072,11 @@ ] }, { - "depth": 2, - "gas": 1568023, - "gasCost": 8, - "op": "JUMP", "pc": 879, + "op": "JUMP", + "gas": 1551038, + "gasCost": 8, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -28619,11 +29085,11 @@ ] }, { - "depth": 2, - "gas": 1568015, - "gasCost": 1, - "op": "JUMPDEST", "pc": 212, + "op": "JUMPDEST", + "gas": 1551030, + "gasCost": 1, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -28631,11 +29097,11 @@ ] }, { - "depth": 2, - "gas": 1568014, - "gasCost": 3, - "op": "PUSH2", "pc": 213, + "op": "PUSH2", + "gas": 1551029, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -28643,11 +29109,11 @@ ] }, { - "depth": 2, - "gas": 1568011, - "gasCost": 8, - "op": "JUMP", "pc": 216, + "op": "JUMP", + "gas": 1551026, + "gasCost": 8, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -28656,11 +29122,11 @@ ] }, { - "depth": 2, - "gas": 1568003, - "gasCost": 1, - "op": "JUMPDEST", "pc": 549, + "op": "JUMPDEST", + "gas": 1551018, + "gasCost": 1, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -28668,11 +29134,11 @@ ] }, { - "depth": 2, - "gas": 1568002, - "gasCost": 3, - "op": "PUSH1", "pc": 550, + "op": "PUSH1", + "gas": 1551017, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -28680,11 +29146,11 @@ ] }, { - "depth": 2, - "gas": 1567999, - "gasCost": 2, - "op": "CALLER", "pc": 552, + "op": "CALLER", + "gas": 1551014, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -28693,11 +29159,11 @@ ] }, { - "depth": 2, - "gas": 1567997, - "gasCost": 3, - "op": "PUSH20", "pc": 553, + "op": "PUSH20", + "gas": 1551012, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -28707,11 +29173,11 @@ ] }, { - "depth": 2, - "gas": 1567994, - "gasCost": 3, - "op": "AND", "pc": 574, + "op": "AND", + "gas": 1551009, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -28722,11 +29188,11 @@ ] }, { - "depth": 2, - "gas": 1567991, - "gasCost": 3, - "op": "PUSH32", "pc": 575, + "op": "PUSH32", + "gas": 1551006, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -28736,11 +29202,11 @@ ] }, { - "depth": 2, - "gas": 1567988, - "gasCost": 3, - "op": "DUP4", "pc": 608, + "op": "DUP4", + "gas": 1551003, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -28751,11 +29217,11 @@ ] }, { - "depth": 2, - "gas": 1567985, - "gasCost": 3, - "op": "PUSH1", "pc": 609, + "op": "PUSH1", + "gas": 1551000, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -28767,11 +29233,11 @@ ] }, { - "depth": 2, - "gas": 1567982, - "gasCost": 3, - "op": "MLOAD", "pc": 611, + "op": "MLOAD", + "gas": 1550997, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -28784,11 +29250,11 @@ ] }, { - "depth": 2, - "gas": 1567979, - "gasCost": 3, - "op": "PUSH2", "pc": 612, + "op": "PUSH2", + "gas": 1550994, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -28801,11 +29267,11 @@ ] }, { - "depth": 2, - "gas": 1567976, - "gasCost": 3, - "op": "SWAP2", "pc": 615, + "op": "SWAP2", + "gas": 1550991, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -28819,11 +29285,11 @@ ] }, { - "depth": 2, - "gas": 1567973, - "gasCost": 3, - "op": "SWAP1", "pc": 616, + "op": "SWAP1", + "gas": 1550988, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -28837,11 +29303,11 @@ ] }, { - "depth": 2, - "gas": 1567970, - "gasCost": 3, - "op": "PUSH2", "pc": 617, + "op": "PUSH2", + "gas": 1550985, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -28855,11 +29321,11 @@ ] }, { - "depth": 2, - "gas": 1567967, - "gasCost": 8, - "op": "JUMP", "pc": 620, + "op": "JUMP", + "gas": 1550982, + "gasCost": 8, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -28870,15 +29336,15 @@ "0x26d", "0x3e8", "0x80", - "0x5cb" + "0x5ed" ] }, { - "depth": 2, - "gas": 1567959, - "gasCost": 1, + "pc": 1517, "op": "JUMPDEST", - "pc": 1483, + "gas": 1550974, + "gasCost": 1, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -28892,11 +29358,11 @@ ] }, { - "depth": 2, - "gas": 1567958, - "gasCost": 3, + "pc": 1518, "op": "PUSH1", - "pc": 1484, + "gas": 1550973, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -28910,11 +29376,11 @@ ] }, { - "depth": 2, - "gas": 1567955, - "gasCost": 3, + "pc": 1520, "op": "PUSH1", - "pc": 1486, + "gas": 1550970, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -28929,11 +29395,11 @@ ] }, { - "depth": 2, - "gas": 1567952, - "gasCost": 3, + "pc": 1522, "op": "DUP3", - "pc": 1488, + "gas": 1550967, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -28949,11 +29415,11 @@ ] }, { - "depth": 2, - "gas": 1567949, - "gasCost": 3, + "pc": 1523, "op": "ADD", - "pc": 1489, + "gas": 1550964, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -28970,11 +29436,11 @@ ] }, { - "depth": 2, - "gas": 1567946, - "gasCost": 3, + "pc": 1524, "op": "SWAP1", - "pc": 1490, + "gas": 1550961, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -28990,11 +29456,11 @@ ] }, { - "depth": 2, - "gas": 1567943, - "gasCost": 2, + "pc": 1525, "op": "POP", - "pc": 1491, + "gas": 1550958, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -29010,11 +29476,11 @@ ] }, { - "depth": 2, - "gas": 1567941, - "gasCost": 3, + "pc": 1526, "op": "PUSH2", - "pc": 1492, + "gas": 1550956, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -29029,11 +29495,11 @@ ] }, { - "depth": 2, - "gas": 1567938, - "gasCost": 3, + "pc": 1529, "op": "PUSH1", - "pc": 1495, + "gas": 1550953, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -29045,15 +29511,15 @@ "0x3e8", "0x80", "0xc0", - "0x5e0" + "0x602" ] }, { - "depth": 2, - "gas": 1567935, - "gasCost": 3, + "pc": 1531, "op": "DUP4", - "pc": 1497, + "gas": 1550950, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -29065,16 +29531,16 @@ "0x3e8", "0x80", "0xc0", - "0x5e0", + "0x602", "0x0" ] }, { - "depth": 2, - "gas": 1567932, - "gasCost": 3, + "pc": 1532, "op": "ADD", - "pc": 1498, + "gas": 1550947, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -29086,17 +29552,17 @@ "0x3e8", "0x80", "0xc0", - "0x5e0", + "0x602", "0x0", "0x80" ] }, { - "depth": 2, - "gas": 1567929, - "gasCost": 3, + "pc": 1533, "op": "DUP5", - "pc": 1499, + "gas": 1550944, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -29108,16 +29574,16 @@ "0x3e8", "0x80", "0xc0", - "0x5e0", + "0x602", "0x80" ] }, { - "depth": 2, - "gas": 1567926, - "gasCost": 3, + "pc": 1534, "op": "PUSH2", - "pc": 1500, + "gas": 1550941, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -29129,17 +29595,17 @@ "0x3e8", "0x80", "0xc0", - "0x5e0", + "0x602", "0x80", "0x3e8" ] }, { - "depth": 2, - "gas": 1567923, - "gasCost": 8, + "pc": 1537, "op": "JUMP", - "pc": 1503, + "gas": 1550938, + "gasCost": 8, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -29151,18 +29617,18 @@ "0x3e8", "0x80", "0xc0", - "0x5e0", + "0x602", "0x80", "0x3e8", "0x370" ] }, { - "depth": 2, - "gas": 1567915, - "gasCost": 1, - "op": "JUMPDEST", "pc": 880, + "op": "JUMPDEST", + "gas": 1550930, + "gasCost": 1, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -29174,17 +29640,17 @@ "0x3e8", "0x80", "0xc0", - "0x5e0", + "0x602", "0x80", "0x3e8" ] }, { - "depth": 2, - "gas": 1567914, - "gasCost": 3, - "op": "PUSH2", "pc": 881, + "op": "PUSH2", + "gas": 1550929, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -29196,17 +29662,17 @@ "0x3e8", "0x80", "0xc0", - "0x5e0", + "0x602", "0x80", "0x3e8" ] }, { - "depth": 2, - "gas": 1567911, - "gasCost": 3, - "op": "DUP2", "pc": 884, + "op": "DUP2", + "gas": 1550926, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -29218,18 +29684,18 @@ "0x3e8", "0x80", "0xc0", - "0x5e0", + "0x602", "0x80", "0x3e8", "0x379" ] }, { - "depth": 2, - "gas": 1567908, - "gasCost": 3, - "op": "PUSH2", "pc": 885, + "op": "PUSH2", + "gas": 1550923, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -29241,7 +29707,7 @@ "0x3e8", "0x80", "0xc0", - "0x5e0", + "0x602", "0x80", "0x3e8", "0x379", @@ -29249,11 +29715,11 @@ ] }, { - "depth": 2, - "gas": 1567905, - "gasCost": 8, - "op": "JUMP", "pc": 888, + "op": "JUMP", + "gas": 1550920, + "gasCost": 8, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -29265,7 +29731,7 @@ "0x3e8", "0x80", "0xc0", - "0x5e0", + "0x602", "0x80", "0x3e8", "0x379", @@ -29274,11 +29740,11 @@ ] }, { - "depth": 2, - "gas": 1567897, - "gasCost": 1, - "op": "JUMPDEST", "pc": 781, + "op": "JUMPDEST", + "gas": 1550912, + "gasCost": 1, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -29290,7 +29756,7 @@ "0x3e8", "0x80", "0xc0", - "0x5e0", + "0x602", "0x80", "0x3e8", "0x379", @@ -29298,11 +29764,11 @@ ] }, { - "depth": 2, - "gas": 1567896, - "gasCost": 3, - "op": "PUSH1", "pc": 782, + "op": "PUSH1", + "gas": 1550911, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -29314,7 +29780,7 @@ "0x3e8", "0x80", "0xc0", - "0x5e0", + "0x602", "0x80", "0x3e8", "0x379", @@ -29322,11 +29788,11 @@ ] }, { - "depth": 2, - "gas": 1567893, - "gasCost": 3, - "op": "DUP2", "pc": 784, + "op": "DUP2", + "gas": 1550908, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -29338,7 +29804,7 @@ "0x3e8", "0x80", "0xc0", - "0x5e0", + "0x602", "0x80", "0x3e8", "0x379", @@ -29347,11 +29813,11 @@ ] }, { - "depth": 2, - "gas": 1567890, - "gasCost": 3, - "op": "SWAP1", "pc": 785, + "op": "SWAP1", + "gas": 1550905, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -29363,7 +29829,7 @@ "0x3e8", "0x80", "0xc0", - "0x5e0", + "0x602", "0x80", "0x3e8", "0x379", @@ -29373,11 +29839,11 @@ ] }, { - "depth": 2, - "gas": 1567887, - "gasCost": 2, - "op": "POP", "pc": 786, + "op": "POP", + "gas": 1550902, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -29389,7 +29855,7 @@ "0x3e8", "0x80", "0xc0", - "0x5e0", + "0x602", "0x80", "0x3e8", "0x379", @@ -29399,11 +29865,11 @@ ] }, { - "depth": 2, - "gas": 1567885, - "gasCost": 3, - "op": "SWAP2", "pc": 787, + "op": "SWAP2", + "gas": 1550900, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -29415,7 +29881,7 @@ "0x3e8", "0x80", "0xc0", - "0x5e0", + "0x602", "0x80", "0x3e8", "0x379", @@ -29424,11 +29890,11 @@ ] }, { - "depth": 2, - "gas": 1567882, - "gasCost": 3, - "op": "SWAP1", "pc": 788, + "op": "SWAP1", + "gas": 1550897, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -29440,7 +29906,7 @@ "0x3e8", "0x80", "0xc0", - "0x5e0", + "0x602", "0x80", "0x3e8", "0x3e8", @@ -29449,11 +29915,11 @@ ] }, { - "depth": 2, - "gas": 1567879, - "gasCost": 2, - "op": "POP", "pc": 789, + "op": "POP", + "gas": 1550894, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -29465,7 +29931,7 @@ "0x3e8", "0x80", "0xc0", - "0x5e0", + "0x602", "0x80", "0x3e8", "0x3e8", @@ -29474,11 +29940,11 @@ ] }, { - "depth": 2, - "gas": 1567877, - "gasCost": 8, - "op": "JUMP", "pc": 790, + "op": "JUMP", + "gas": 1550892, + "gasCost": 8, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -29490,7 +29956,7 @@ "0x3e8", "0x80", "0xc0", - "0x5e0", + "0x602", "0x80", "0x3e8", "0x3e8", @@ -29498,11 +29964,11 @@ ] }, { - "depth": 2, - "gas": 1567869, - "gasCost": 1, - "op": "JUMPDEST", "pc": 889, + "op": "JUMPDEST", + "gas": 1550884, + "gasCost": 1, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -29514,18 +29980,18 @@ "0x3e8", "0x80", "0xc0", - "0x5e0", + "0x602", "0x80", "0x3e8", "0x3e8" ] }, { - "depth": 2, - "gas": 1567868, - "gasCost": 3, - "op": "DUP3", "pc": 890, + "op": "DUP3", + "gas": 1550883, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -29537,18 +30003,18 @@ "0x3e8", "0x80", "0xc0", - "0x5e0", + "0x602", "0x80", "0x3e8", "0x3e8" ] }, { - "depth": 2, - "gas": 1567865, - "gasCost": 9, - "op": "MSTORE", "pc": 891, + "op": "MSTORE", + "gas": 1550880, + "gasCost": 9, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -29560,7 +30026,7 @@ "0x3e8", "0x80", "0xc0", - "0x5e0", + "0x602", "0x80", "0x3e8", "0x3e8", @@ -29568,11 +30034,11 @@ ] }, { - "depth": 2, - "gas": 1567856, - "gasCost": 2, - "op": "POP", "pc": 892, + "op": "POP", + "gas": 1550871, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -29584,17 +30050,17 @@ "0x3e8", "0x80", "0xc0", - "0x5e0", + "0x602", "0x80", "0x3e8" ] }, { - "depth": 2, - "gas": 1567854, - "gasCost": 2, - "op": "POP", "pc": 893, + "op": "POP", + "gas": 1550869, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -29606,16 +30072,16 @@ "0x3e8", "0x80", "0xc0", - "0x5e0", + "0x602", "0x80" ] }, { - "depth": 2, - "gas": 1567852, - "gasCost": 8, - "op": "JUMP", "pc": 894, + "op": "JUMP", + "gas": 1550867, + "gasCost": 8, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -29627,15 +30093,15 @@ "0x3e8", "0x80", "0xc0", - "0x5e0" + "0x602" ] }, { - "depth": 2, - "gas": 1567844, - "gasCost": 1, + "pc": 1538, "op": "JUMPDEST", - "pc": 1504, + "gas": 1550859, + "gasCost": 1, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -29650,11 +30116,11 @@ ] }, { - "depth": 2, - "gas": 1567843, - "gasCost": 3, + "pc": 1539, "op": "DUP2", - "pc": 1505, + "gas": 1550858, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -29669,11 +30135,11 @@ ] }, { - "depth": 2, - "gas": 1567840, - "gasCost": 3, + "pc": 1540, "op": "DUP2", - "pc": 1506, + "gas": 1550855, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -29689,11 +30155,11 @@ ] }, { - "depth": 2, - "gas": 1567837, - "gasCost": 3, + "pc": 1541, "op": "SUB", - "pc": 1507, + "gas": 1550852, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -29710,11 +30176,11 @@ ] }, { - "depth": 2, - "gas": 1567834, - "gasCost": 3, + "pc": 1542, "op": "PUSH1", - "pc": 1508, + "gas": 1550849, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -29730,11 +30196,11 @@ ] }, { - "depth": 2, - "gas": 1567831, - "gasCost": 3, + "pc": 1544, "op": "DUP4", - "pc": 1510, + "gas": 1550846, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -29751,11 +30217,11 @@ ] }, { - "depth": 2, - "gas": 1567828, - "gasCost": 3, + "pc": 1545, "op": "ADD", - "pc": 1511, + "gas": 1550843, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -29773,11 +30239,11 @@ ] }, { - "depth": 2, - "gas": 1567825, - "gasCost": 6, + "pc": 1546, "op": "MSTORE", - "pc": 1512, + "gas": 1550840, + "gasCost": 6, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -29794,11 +30260,11 @@ ] }, { - "depth": 2, - "gas": 1567819, - "gasCost": 3, + "pc": 1547, "op": "PUSH2", - "pc": 1513, + "gas": 1550834, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -29813,11 +30279,11 @@ ] }, { - "depth": 2, - "gas": 1567816, - "gasCost": 3, + "pc": 1550, "op": "DUP2", - "pc": 1516, + "gas": 1550831, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -29829,15 +30295,15 @@ "0x3e8", "0x80", "0xc0", - "0x5f1" + "0x613" ] }, { - "depth": 2, - "gas": 1567813, - "gasCost": 3, + "pc": 1551, "op": "PUSH2", - "pc": 1517, + "gas": 1550828, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -29849,16 +30315,16 @@ "0x3e8", "0x80", "0xc0", - "0x5f1", + "0x613", "0xc0" ] }, { - "depth": 2, - "gas": 1567810, - "gasCost": 8, + "pc": 1554, "op": "JUMP", - "pc": 1520, + "gas": 1550825, + "gasCost": 8, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -29870,17 +30336,17 @@ "0x3e8", "0x80", "0xc0", - "0x5f1", + "0x613", "0xc0", - "0x5a8" + "0x5ca" ] }, { - "depth": 2, - "gas": 1567802, - "gasCost": 1, + "pc": 1482, "op": "JUMPDEST", - "pc": 1448, + "gas": 1550817, + "gasCost": 1, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -29892,16 +30358,16 @@ "0x3e8", "0x80", "0xc0", - "0x5f1", + "0x613", "0xc0" ] }, { - "depth": 2, - "gas": 1567801, - "gasCost": 3, + "pc": 1483, "op": "PUSH1", - "pc": 1449, + "gas": 1550816, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -29913,16 +30379,16 @@ "0x3e8", "0x80", "0xc0", - "0x5f1", + "0x613", "0xc0" ] }, { - "depth": 2, - "gas": 1567798, - "gasCost": 3, + "pc": 1485, "op": "PUSH2", - "pc": 1451, + "gas": 1550813, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -29934,17 +30400,17 @@ "0x3e8", "0x80", "0xc0", - "0x5f1", + "0x613", "0xc0", "0x0" ] }, { - "depth": 2, - "gas": 1567795, - "gasCost": 3, + "pc": 1488, "op": "PUSH1", - "pc": 1454, + "gas": 1550810, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -29956,18 +30422,18 @@ "0x3e8", "0x80", "0xc0", - "0x5f1", + "0x613", "0xc0", "0x0", - "0x5b5" + "0x5d7" ] }, { - "depth": 2, - "gas": 1567792, - "gasCost": 3, + "pc": 1490, "op": "DUP4", - "pc": 1456, + "gas": 1550807, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -29979,19 +30445,19 @@ "0x3e8", "0x80", "0xc0", - "0x5f1", + "0x613", "0xc0", "0x0", - "0x5b5", + "0x5d7", "0x5" ] }, { - "depth": 2, - "gas": 1567789, - "gasCost": 3, + "pc": 1491, "op": "PUSH2", - "pc": 1457, + "gas": 1550804, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -30003,20 +30469,20 @@ "0x3e8", "0x80", "0xc0", - "0x5f1", + "0x613", "0xc0", "0x0", - "0x5b5", + "0x5d7", "0x5", "0xc0" ] }, { - "depth": 2, - "gas": 1567786, - "gasCost": 8, + "pc": 1494, "op": "JUMP", - "pc": 1460, + "gas": 1550801, + "gasCost": 8, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -30028,21 +30494,21 @@ "0x3e8", "0x80", "0xc0", - "0x5f1", + "0x613", "0xc0", "0x0", - "0x5b5", + "0x5d7", "0x5", "0xc0", "0x425" ] }, { - "depth": 2, - "gas": 1567778, - "gasCost": 1, - "op": "JUMPDEST", "pc": 1061, + "op": "JUMPDEST", + "gas": 1550793, + "gasCost": 1, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -30054,20 +30520,20 @@ "0x3e8", "0x80", "0xc0", - "0x5f1", + "0x613", "0xc0", "0x0", - "0x5b5", + "0x5d7", "0x5", "0xc0" ] }, { - "depth": 2, - "gas": 1567777, - "gasCost": 3, - "op": "PUSH1", "pc": 1062, + "op": "PUSH1", + "gas": 1550792, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -30079,20 +30545,20 @@ "0x3e8", "0x80", "0xc0", - "0x5f1", + "0x613", "0xc0", "0x0", - "0x5b5", + "0x5d7", "0x5", "0xc0" ] }, { - "depth": 2, - "gas": 1567774, - "gasCost": 3, - "op": "DUP3", "pc": 1064, + "op": "DUP3", + "gas": 1550789, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -30104,21 +30570,21 @@ "0x3e8", "0x80", "0xc0", - "0x5f1", + "0x613", "0xc0", "0x0", - "0x5b5", + "0x5d7", "0x5", "0xc0", "0x0" ] }, { - "depth": 2, - "gas": 1567771, - "gasCost": 3, - "op": "DUP3", "pc": 1065, + "op": "DUP3", + "gas": 1550786, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -30130,10 +30596,10 @@ "0x3e8", "0x80", "0xc0", - "0x5f1", + "0x613", "0xc0", "0x0", - "0x5b5", + "0x5d7", "0x5", "0xc0", "0x0", @@ -30141,11 +30607,11 @@ ] }, { - "depth": 2, - "gas": 1567768, - "gasCost": 6, - "op": "MSTORE", "pc": 1066, + "op": "MSTORE", + "gas": 1550783, + "gasCost": 6, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -30157,10 +30623,10 @@ "0x3e8", "0x80", "0xc0", - "0x5f1", + "0x613", "0xc0", "0x0", - "0x5b5", + "0x5d7", "0x5", "0xc0", "0x0", @@ -30169,11 +30635,11 @@ ] }, { - "depth": 2, - "gas": 1567762, - "gasCost": 3, - "op": "PUSH1", "pc": 1067, + "op": "PUSH1", + "gas": 1550777, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -30185,21 +30651,21 @@ "0x3e8", "0x80", "0xc0", - "0x5f1", + "0x613", "0xc0", "0x0", - "0x5b5", + "0x5d7", "0x5", "0xc0", "0x0" ] }, { - "depth": 2, - "gas": 1567759, - "gasCost": 3, - "op": "DUP3", "pc": 1069, + "op": "DUP3", + "gas": 1550774, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -30211,10 +30677,10 @@ "0x3e8", "0x80", "0xc0", - "0x5f1", + "0x613", "0xc0", "0x0", - "0x5b5", + "0x5d7", "0x5", "0xc0", "0x0", @@ -30222,11 +30688,11 @@ ] }, { - "depth": 2, - "gas": 1567756, - "gasCost": 3, - "op": "ADD", "pc": 1070, + "op": "ADD", + "gas": 1550771, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -30238,10 +30704,10 @@ "0x3e8", "0x80", "0xc0", - "0x5f1", + "0x613", "0xc0", "0x0", - "0x5b5", + "0x5d7", "0x5", "0xc0", "0x0", @@ -30250,11 +30716,11 @@ ] }, { - "depth": 2, - "gas": 1567753, - "gasCost": 3, - "op": "SWAP1", "pc": 1071, + "op": "SWAP1", + "gas": 1550768, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -30266,10 +30732,10 @@ "0x3e8", "0x80", "0xc0", - "0x5f1", + "0x613", "0xc0", "0x0", - "0x5b5", + "0x5d7", "0x5", "0xc0", "0x0", @@ -30277,11 +30743,11 @@ ] }, { - "depth": 2, - "gas": 1567750, - "gasCost": 2, - "op": "POP", "pc": 1072, + "op": "POP", + "gas": 1550765, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -30293,10 +30759,10 @@ "0x3e8", "0x80", "0xc0", - "0x5f1", + "0x613", "0xc0", "0x0", - "0x5b5", + "0x5d7", "0x5", "0xc0", "0xe0", @@ -30304,11 +30770,11 @@ ] }, { - "depth": 2, - "gas": 1567748, - "gasCost": 3, - "op": "SWAP3", "pc": 1073, + "op": "SWAP3", + "gas": 1550763, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -30320,21 +30786,21 @@ "0x3e8", "0x80", "0xc0", - "0x5f1", + "0x613", "0xc0", "0x0", - "0x5b5", + "0x5d7", "0x5", "0xc0", "0xe0" ] }, { - "depth": 2, - "gas": 1567745, - "gasCost": 3, - "op": "SWAP2", "pc": 1074, + "op": "SWAP2", + "gas": 1550760, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -30346,21 +30812,21 @@ "0x3e8", "0x80", "0xc0", - "0x5f1", + "0x613", "0xc0", "0x0", "0xe0", "0x5", "0xc0", - "0x5b5" + "0x5d7" ] }, { - "depth": 2, - "gas": 1567742, - "gasCost": 2, - "op": "POP", "pc": 1075, + "op": "POP", + "gas": 1550757, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -30372,21 +30838,21 @@ "0x3e8", "0x80", "0xc0", - "0x5f1", + "0x613", "0xc0", "0x0", "0xe0", - "0x5b5", + "0x5d7", "0xc0", "0x5" ] }, { - "depth": 2, - "gas": 1567740, - "gasCost": 2, - "op": "POP", "pc": 1076, + "op": "POP", + "gas": 1550755, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -30398,20 +30864,20 @@ "0x3e8", "0x80", "0xc0", - "0x5f1", + "0x613", "0xc0", "0x0", "0xe0", - "0x5b5", + "0x5d7", "0xc0" ] }, { - "depth": 2, - "gas": 1567738, - "gasCost": 8, - "op": "JUMP", "pc": 1077, + "op": "JUMP", + "gas": 1550753, + "gasCost": 8, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -30423,19 +30889,19 @@ "0x3e8", "0x80", "0xc0", - "0x5f1", + "0x613", "0xc0", "0x0", "0xe0", - "0x5b5" + "0x5d7" ] }, { - "depth": 2, - "gas": 1567730, - "gasCost": 1, + "pc": 1495, "op": "JUMPDEST", - "pc": 1461, + "gas": 1550745, + "gasCost": 1, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -30447,18 +30913,18 @@ "0x3e8", "0x80", "0xc0", - "0x5f1", + "0x613", "0xc0", "0x0", "0xe0" ] }, { - "depth": 2, - "gas": 1567729, - "gasCost": 3, + "pc": 1496, "op": "SWAP2", - "pc": 1462, + "gas": 1550744, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -30470,18 +30936,18 @@ "0x3e8", "0x80", "0xc0", - "0x5f1", + "0x613", "0xc0", "0x0", "0xe0" ] }, { - "depth": 2, - "gas": 1567726, - "gasCost": 2, + "pc": 1497, "op": "POP", - "pc": 1463, + "gas": 1550741, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -30493,18 +30959,18 @@ "0x3e8", "0x80", "0xc0", - "0x5f1", + "0x613", "0xe0", "0x0", "0xc0" ] }, { - "depth": 2, - "gas": 1567724, - "gasCost": 3, + "pc": 1498, "op": "PUSH2", - "pc": 1464, + "gas": 1550739, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -30516,17 +30982,17 @@ "0x3e8", "0x80", "0xc0", - "0x5f1", + "0x613", "0xe0", "0x0" ] }, { - "depth": 2, - "gas": 1567721, - "gasCost": 3, + "pc": 1501, "op": "DUP3", - "pc": 1467, + "gas": 1550736, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -30538,18 +31004,18 @@ "0x3e8", "0x80", "0xc0", - "0x5f1", + "0x613", "0xe0", "0x0", - "0x5c0" + "0x5e2" ] }, { - "depth": 2, - "gas": 1567718, - "gasCost": 3, + "pc": 1502, "op": "PUSH2", - "pc": 1468, + "gas": 1550733, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -30561,19 +31027,19 @@ "0x3e8", "0x80", "0xc0", - "0x5f1", + "0x613", "0xe0", "0x0", - "0x5c0", + "0x5e2", "0xe0" ] }, { - "depth": 2, - "gas": 1567715, - "gasCost": 8, + "pc": 1505, "op": "JUMP", - "pc": 1471, + "gas": 1550730, + "gasCost": 8, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -30585,20 +31051,20 @@ "0x3e8", "0x80", "0xc0", - "0x5f1", + "0x613", "0xe0", "0x0", - "0x5c0", + "0x5e2", "0xe0", - "0x57f" + "0x5a1" ] }, { - "depth": 2, - "gas": 1567707, - "gasCost": 1, + "pc": 1441, "op": "JUMPDEST", - "pc": 1407, + "gas": 1550722, + "gasCost": 1, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -30610,19 +31076,19 @@ "0x3e8", "0x80", "0xc0", - "0x5f1", + "0x613", "0xe0", "0x0", - "0x5c0", + "0x5e2", "0xe0" ] }, { - "depth": 2, - "gas": 1567706, - "gasCost": 3, + "pc": 1442, "op": "PUSH32", - "pc": 1408, + "gas": 1550721, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -30634,19 +31100,19 @@ "0x3e8", "0x80", "0xc0", - "0x5f1", + "0x613", "0xe0", "0x0", - "0x5c0", + "0x5e2", "0xe0" ] }, { - "depth": 2, - "gas": 1567703, - "gasCost": 3, + "pc": 1475, "op": "PUSH1", - "pc": 1441, + "gas": 1550718, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -30658,20 +31124,20 @@ "0x3e8", "0x80", "0xc0", - "0x5f1", + "0x613", "0xe0", "0x0", - "0x5c0", + "0x5e2", "0xe0", "0x746f706963000000000000000000000000000000000000000000000000000000" ] }, { - "depth": 2, - "gas": 1567700, - "gasCost": 3, + "pc": 1477, "op": "DUP3", - "pc": 1443, + "gas": 1550715, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -30683,21 +31149,21 @@ "0x3e8", "0x80", "0xc0", - "0x5f1", + "0x613", "0xe0", "0x0", - "0x5c0", + "0x5e2", "0xe0", "0x746f706963000000000000000000000000000000000000000000000000000000", "0x0" ] }, { - "depth": 2, - "gas": 1567697, - "gasCost": 3, + "pc": 1478, "op": "ADD", - "pc": 1444, + "gas": 1550712, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -30709,10 +31175,10 @@ "0x3e8", "0x80", "0xc0", - "0x5f1", + "0x613", "0xe0", "0x0", - "0x5c0", + "0x5e2", "0xe0", "0x746f706963000000000000000000000000000000000000000000000000000000", "0x0", @@ -30720,11 +31186,11 @@ ] }, { - "depth": 2, - "gas": 1567694, - "gasCost": 6, + "pc": 1479, "op": "MSTORE", - "pc": 1445, + "gas": 1550709, + "gasCost": 6, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -30736,21 +31202,21 @@ "0x3e8", "0x80", "0xc0", - "0x5f1", + "0x613", "0xe0", "0x0", - "0x5c0", + "0x5e2", "0xe0", "0x746f706963000000000000000000000000000000000000000000000000000000", "0xe0" ] }, { - "depth": 2, - "gas": 1567688, - "gasCost": 2, + "pc": 1480, "op": "POP", - "pc": 1446, + "gas": 1550703, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -30762,19 +31228,19 @@ "0x3e8", "0x80", "0xc0", - "0x5f1", + "0x613", "0xe0", "0x0", - "0x5c0", + "0x5e2", "0xe0" ] }, { - "depth": 2, - "gas": 1567686, - "gasCost": 8, + "pc": 1481, "op": "JUMP", - "pc": 1447, + "gas": 1550701, + "gasCost": 8, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -30786,18 +31252,18 @@ "0x3e8", "0x80", "0xc0", - "0x5f1", + "0x613", "0xe0", "0x0", - "0x5c0" + "0x5e2" ] }, { - "depth": 2, - "gas": 1567678, - "gasCost": 1, + "pc": 1506, "op": "JUMPDEST", - "pc": 1472, + "gas": 1550693, + "gasCost": 1, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -30809,17 +31275,17 @@ "0x3e8", "0x80", "0xc0", - "0x5f1", + "0x613", "0xe0", "0x0" ] }, { - "depth": 2, - "gas": 1567677, - "gasCost": 3, + "pc": 1507, "op": "PUSH1", - "pc": 1473, + "gas": 1550692, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -30831,17 +31297,17 @@ "0x3e8", "0x80", "0xc0", - "0x5f1", + "0x613", "0xe0", "0x0" ] }, { - "depth": 2, - "gas": 1567674, - "gasCost": 3, + "pc": 1509, "op": "DUP3", - "pc": 1475, + "gas": 1550689, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -30853,18 +31319,18 @@ "0x3e8", "0x80", "0xc0", - "0x5f1", + "0x613", "0xe0", "0x0", "0x20" ] }, { - "depth": 2, - "gas": 1567671, - "gasCost": 3, + "pc": 1510, "op": "ADD", - "pc": 1476, + "gas": 1550686, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -30876,7 +31342,7 @@ "0x3e8", "0x80", "0xc0", - "0x5f1", + "0x613", "0xe0", "0x0", "0x20", @@ -30884,11 +31350,11 @@ ] }, { - "depth": 2, - "gas": 1567668, - "gasCost": 3, + "pc": 1511, "op": "SWAP1", - "pc": 1477, + "gas": 1550683, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -30900,18 +31366,18 @@ "0x3e8", "0x80", "0xc0", - "0x5f1", + "0x613", "0xe0", "0x0", "0x100" ] }, { - "depth": 2, - "gas": 1567665, - "gasCost": 2, + "pc": 1512, "op": "POP", - "pc": 1478, + "gas": 1550680, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -30923,18 +31389,18 @@ "0x3e8", "0x80", "0xc0", - "0x5f1", + "0x613", "0xe0", "0x100", "0x0" ] }, { - "depth": 2, - "gas": 1567663, - "gasCost": 3, + "pc": 1513, "op": "SWAP2", - "pc": 1479, + "gas": 1550678, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -30946,17 +31412,17 @@ "0x3e8", "0x80", "0xc0", - "0x5f1", + "0x613", "0xe0", "0x100" ] }, { - "depth": 2, - "gas": 1567660, - "gasCost": 3, + "pc": 1514, "op": "SWAP1", - "pc": 1480, + "gas": 1550675, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -30970,15 +31436,15 @@ "0xc0", "0x100", "0xe0", - "0x5f1" + "0x613" ] }, { - "depth": 2, - "gas": 1567657, - "gasCost": 2, + "pc": 1515, "op": "POP", - "pc": 1481, + "gas": 1550672, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -30991,16 +31457,16 @@ "0x80", "0xc0", "0x100", - "0x5f1", + "0x613", "0xe0" ] }, { - "depth": 2, - "gas": 1567655, - "gasCost": 8, + "pc": 1516, "op": "JUMP", - "pc": 1482, + "gas": 1550670, + "gasCost": 8, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -31013,15 +31479,15 @@ "0x80", "0xc0", "0x100", - "0x5f1" + "0x613" ] }, { - "depth": 2, - "gas": 1567647, - "gasCost": 1, + "pc": 1555, "op": "JUMPDEST", - "pc": 1521, + "gas": 1550662, + "gasCost": 1, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -31037,11 +31503,11 @@ ] }, { - "depth": 2, - "gas": 1567646, - "gasCost": 3, + "pc": 1556, "op": "SWAP1", - "pc": 1522, + "gas": 1550661, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -31057,11 +31523,11 @@ ] }, { - "depth": 2, - "gas": 1567643, - "gasCost": 2, + "pc": 1557, "op": "POP", - "pc": 1523, + "gas": 1550658, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -31077,11 +31543,11 @@ ] }, { - "depth": 2, - "gas": 1567641, - "gasCost": 3, + "pc": 1558, "op": "SWAP3", - "pc": 1524, + "gas": 1550656, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -31096,11 +31562,11 @@ ] }, { - "depth": 2, - "gas": 1567638, - "gasCost": 3, + "pc": 1559, "op": "SWAP2", - "pc": 1525, + "gas": 1550653, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -31115,11 +31581,11 @@ ] }, { - "depth": 2, - "gas": 1567635, - "gasCost": 2, + "pc": 1560, "op": "POP", - "pc": 1526, + "gas": 1550650, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -31134,11 +31600,11 @@ ] }, { - "depth": 2, - "gas": 1567633, - "gasCost": 2, + "pc": 1561, "op": "POP", - "pc": 1527, + "gas": 1550648, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -31152,11 +31618,11 @@ ] }, { - "depth": 2, - "gas": 1567631, - "gasCost": 8, + "pc": 1562, "op": "JUMP", - "pc": 1528, + "gas": 1550646, + "gasCost": 8, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -31169,11 +31635,11 @@ ] }, { - "depth": 2, - "gas": 1567623, - "gasCost": 1, - "op": "JUMPDEST", "pc": 621, + "op": "JUMPDEST", + "gas": 1550638, + "gasCost": 1, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -31185,11 +31651,11 @@ ] }, { - "depth": 2, - "gas": 1567622, - "gasCost": 3, - "op": "PUSH1", "pc": 622, + "op": "PUSH1", + "gas": 1550637, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -31201,11 +31667,11 @@ ] }, { - "depth": 2, - "gas": 1567619, - "gasCost": 3, - "op": "MLOAD", "pc": 624, + "op": "MLOAD", + "gas": 1550634, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -31218,11 +31684,11 @@ ] }, { - "depth": 2, - "gas": 1567616, - "gasCost": 3, - "op": "DUP1", "pc": 625, + "op": "DUP1", + "gas": 1550631, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -31235,11 +31701,11 @@ ] }, { - "depth": 2, - "gas": 1567613, - "gasCost": 3, - "op": "SWAP2", "pc": 626, + "op": "SWAP2", + "gas": 1550628, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -31253,11 +31719,11 @@ ] }, { - "depth": 2, - "gas": 1567610, - "gasCost": 3, - "op": "SUB", "pc": 627, + "op": "SUB", + "gas": 1550625, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -31271,11 +31737,11 @@ ] }, { - "depth": 2, - "gas": 1567607, - "gasCost": 3, - "op": "SWAP1", "pc": 628, + "op": "SWAP1", + "gas": 1550622, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -31288,11 +31754,11 @@ ] }, { - "depth": 2, - "gas": 1567604, - "gasCost": 2149, - "op": "LOG2", "pc": 629, + "op": "LOG2", + "gas": 1550619, + "gasCost": 2149, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -31305,11 +31771,11 @@ ] }, { - "depth": 2, - "gas": 1565455, - "gasCost": 3, - "op": "DUP2", "pc": 630, + "op": "DUP2", + "gas": 1548470, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -31318,11 +31784,11 @@ ] }, { - "depth": 2, - "gas": 1565452, - "gasCost": 3, - "op": "PUSH1", "pc": 631, + "op": "PUSH1", + "gas": 1548467, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -31332,11 +31798,11 @@ ] }, { - "depth": 2, - "gas": 1565449, - "gasCost": 3, - "op": "DUP1", "pc": 633, + "op": "DUP1", + "gas": 1548464, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -31347,11 +31813,11 @@ ] }, { - "depth": 2, - "gas": 1565446, - "gasCost": 3, - "op": "DUP3", "pc": 634, + "op": "DUP3", + "gas": 1548461, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -31363,11 +31829,11 @@ ] }, { - "depth": 2, - "gas": 1565443, - "gasCost": 3, - "op": "DUP3", "pc": 635, + "op": "DUP3", + "gas": 1548458, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -31380,11 +31846,11 @@ ] }, { - "depth": 2, - "gas": 1565440, - "gasCost": 200, - "op": "SLOAD", "pc": 636, + "op": "SLOAD", + "gas": 1548455, + "gasCost": 100, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -31403,11 +31869,11 @@ } }, { - "depth": 2, - "gas": 1565240, - "gasCost": 3, - "op": "PUSH2", "pc": 637, + "op": "PUSH2", + "gas": 1548355, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -31421,11 +31887,11 @@ ] }, { - "depth": 2, - "gas": 1565237, - "gasCost": 3, - "op": "SWAP2", "pc": 640, + "op": "SWAP2", + "gas": 1548352, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -31440,11 +31906,11 @@ ] }, { - "depth": 2, - "gas": 1565234, - "gasCost": 3, - "op": "SWAP1", "pc": 641, + "op": "SWAP1", + "gas": 1548349, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -31459,11 +31925,11 @@ ] }, { - "depth": 2, - "gas": 1565231, - "gasCost": 3, - "op": "PUSH2", "pc": 642, + "op": "PUSH2", + "gas": 1548346, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -31478,11 +31944,11 @@ ] }, { - "depth": 2, - "gas": 1565228, - "gasCost": 8, - "op": "JUMP", "pc": 645, + "op": "JUMP", + "gas": 1548343, + "gasCost": 8, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -31498,11 +31964,11 @@ ] }, { - "depth": 2, - "gas": 1565220, - "gasCost": 1, - "op": "JUMPDEST", "pc": 1247, + "op": "JUMPDEST", + "gas": 1548335, + "gasCost": 1, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -31517,11 +31983,11 @@ ] }, { - "depth": 2, - "gas": 1565219, - "gasCost": 3, - "op": "PUSH1", "pc": 1248, + "op": "PUSH1", + "gas": 1548334, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -31536,11 +32002,11 @@ ] }, { - "depth": 2, - "gas": 1565216, - "gasCost": 3, - "op": "PUSH2", "pc": 1250, + "op": "PUSH2", + "gas": 1548331, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -31556,11 +32022,11 @@ ] }, { - "depth": 2, - "gas": 1565213, - "gasCost": 3, - "op": "DUP3", "pc": 1253, + "op": "DUP3", + "gas": 1548328, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -31577,11 +32043,11 @@ ] }, { - "depth": 2, - "gas": 1565210, - "gasCost": 3, - "op": "PUSH2", "pc": 1254, + "op": "PUSH2", + "gas": 1548325, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -31599,11 +32065,11 @@ ] }, { - "depth": 2, - "gas": 1565207, - "gasCost": 8, - "op": "JUMP", "pc": 1257, + "op": "JUMP", + "gas": 1548322, + "gasCost": 8, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -31622,11 +32088,11 @@ ] }, { - "depth": 2, - "gas": 1565199, - "gasCost": 1, - "op": "JUMPDEST", "pc": 781, + "op": "JUMPDEST", + "gas": 1548314, + "gasCost": 1, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -31644,11 +32110,11 @@ ] }, { - "depth": 2, - "gas": 1565198, - "gasCost": 3, - "op": "PUSH1", "pc": 782, + "op": "PUSH1", + "gas": 1548313, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -31666,11 +32132,11 @@ ] }, { - "depth": 2, - "gas": 1565195, - "gasCost": 3, - "op": "DUP2", "pc": 784, + "op": "DUP2", + "gas": 1548310, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -31689,11 +32155,11 @@ ] }, { - "depth": 2, - "gas": 1565192, - "gasCost": 3, - "op": "SWAP1", "pc": 785, + "op": "SWAP1", + "gas": 1548307, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -31713,11 +32179,11 @@ ] }, { - "depth": 2, - "gas": 1565189, - "gasCost": 2, - "op": "POP", "pc": 786, + "op": "POP", + "gas": 1548304, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -31737,11 +32203,11 @@ ] }, { - "depth": 2, - "gas": 1565187, - "gasCost": 3, - "op": "SWAP2", "pc": 787, + "op": "SWAP2", + "gas": 1548302, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -31760,11 +32226,11 @@ ] }, { - "depth": 2, - "gas": 1565184, - "gasCost": 3, - "op": "SWAP1", "pc": 788, + "op": "SWAP1", + "gas": 1548299, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -31783,11 +32249,11 @@ ] }, { - "depth": 2, - "gas": 1565181, - "gasCost": 2, - "op": "POP", "pc": 789, + "op": "POP", + "gas": 1548296, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -31806,11 +32272,11 @@ ] }, { - "depth": 2, - "gas": 1565179, - "gasCost": 8, - "op": "JUMP", "pc": 790, + "op": "JUMP", + "gas": 1548294, + "gasCost": 8, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -31828,11 +32294,11 @@ ] }, { - "depth": 2, - "gas": 1565171, - "gasCost": 1, - "op": "JUMPDEST", "pc": 1258, + "op": "JUMPDEST", + "gas": 1548286, + "gasCost": 1, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -31849,11 +32315,11 @@ ] }, { - "depth": 2, - "gas": 1565170, - "gasCost": 3, - "op": "SWAP2", "pc": 1259, + "op": "SWAP2", + "gas": 1548285, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -31870,11 +32336,11 @@ ] }, { - "depth": 2, - "gas": 1565167, - "gasCost": 2, - "op": "POP", "pc": 1260, + "op": "POP", + "gas": 1548282, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -31891,11 +32357,11 @@ ] }, { - "depth": 2, - "gas": 1565165, - "gasCost": 3, - "op": "PUSH2", "pc": 1261, + "op": "PUSH2", + "gas": 1548280, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -31911,11 +32377,11 @@ ] }, { - "depth": 2, - "gas": 1565162, - "gasCost": 3, - "op": "DUP4", "pc": 1264, + "op": "DUP4", + "gas": 1548277, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -31932,11 +32398,11 @@ ] }, { - "depth": 2, - "gas": 1565159, - "gasCost": 3, - "op": "PUSH2", "pc": 1265, + "op": "PUSH2", + "gas": 1548274, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -31954,11 +32420,11 @@ ] }, { - "depth": 2, - "gas": 1565156, - "gasCost": 8, - "op": "JUMP", "pc": 1268, + "op": "JUMP", + "gas": 1548271, + "gasCost": 8, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -31977,11 +32443,11 @@ ] }, { - "depth": 2, - "gas": 1565148, - "gasCost": 1, - "op": "JUMPDEST", "pc": 781, + "op": "JUMPDEST", + "gas": 1548263, + "gasCost": 1, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -31999,11 +32465,11 @@ ] }, { - "depth": 2, - "gas": 1565147, - "gasCost": 3, - "op": "PUSH1", "pc": 782, + "op": "PUSH1", + "gas": 1548262, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -32021,11 +32487,11 @@ ] }, { - "depth": 2, - "gas": 1565144, - "gasCost": 3, - "op": "DUP2", "pc": 784, + "op": "DUP2", + "gas": 1548259, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -32044,11 +32510,11 @@ ] }, { - "depth": 2, - "gas": 1565141, - "gasCost": 3, - "op": "SWAP1", "pc": 785, + "op": "SWAP1", + "gas": 1548256, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -32068,11 +32534,11 @@ ] }, { - "depth": 2, - "gas": 1565138, - "gasCost": 2, - "op": "POP", "pc": 786, + "op": "POP", + "gas": 1548253, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -32092,11 +32558,11 @@ ] }, { - "depth": 2, - "gas": 1565136, - "gasCost": 3, - "op": "SWAP2", "pc": 787, + "op": "SWAP2", + "gas": 1548251, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -32115,11 +32581,11 @@ ] }, { - "depth": 2, - "gas": 1565133, - "gasCost": 3, - "op": "SWAP1", "pc": 788, + "op": "SWAP1", + "gas": 1548248, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -32138,11 +32604,11 @@ ] }, { - "depth": 2, - "gas": 1565130, - "gasCost": 2, - "op": "POP", "pc": 789, + "op": "POP", + "gas": 1548245, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -32161,11 +32627,11 @@ ] }, { - "depth": 2, - "gas": 1565128, - "gasCost": 8, - "op": "JUMP", "pc": 790, + "op": "JUMP", + "gas": 1548243, + "gasCost": 8, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -32183,11 +32649,11 @@ ] }, { - "depth": 2, - "gas": 1565120, - "gasCost": 1, - "op": "JUMPDEST", "pc": 1269, + "op": "JUMPDEST", + "gas": 1548235, + "gasCost": 1, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -32204,11 +32670,11 @@ ] }, { - "depth": 2, - "gas": 1565119, - "gasCost": 3, - "op": "SWAP3", "pc": 1270, + "op": "SWAP3", + "gas": 1548234, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -32225,11 +32691,11 @@ ] }, { - "depth": 2, - "gas": 1565116, - "gasCost": 2, - "op": "POP", "pc": 1271, + "op": "POP", + "gas": 1548231, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -32246,11 +32712,11 @@ ] }, { - "depth": 2, - "gas": 1565114, - "gasCost": 3, - "op": "DUP3", "pc": 1272, + "op": "DUP3", + "gas": 1548229, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -32266,11 +32732,11 @@ ] }, { - "depth": 2, - "gas": 1565111, - "gasCost": 3, - "op": "DUP3", "pc": 1273, + "op": "PUSH32", + "gas": 1548226, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -32287,11 +32753,11 @@ ] }, { - "depth": 2, - "gas": 1565108, + "pc": 1306, + "op": "SUB", + "gas": 1548223, "gasCost": 3, - "op": "ADD", - "pc": 1274, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -32305,15 +32771,36 @@ "0x1d6329f1c35ca4bfabb9f5610000000000", "0x0", "0x3e8", - "0x1d6329f1c35ca4bfabb9f5610000000000" + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" ] }, { + "pc": 1307, + "op": "DUP3", + "gas": 1548220, + "gasCost": 3, "depth": 2, - "gas": 1565105, + "stack": [ + "0xa0712d68", + "0xd9", + "0x3e8", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x286", + "0x3e8", + "0x1d6329f1c35ca4bfabb9f5610000000000", + "0x0", + "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc17" + ] + }, + { + "pc": 1308, + "op": "GT", + "gas": 1548217, "gasCost": 3, - "op": "SWAP1", - "pc": 1275, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -32326,15 +32813,16 @@ "0x3e8", "0x1d6329f1c35ca4bfabb9f5610000000000", "0x0", - "0x1d6329f1c35ca4bfabb9f56100000003e8" + "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc17", + "0x1d6329f1c35ca4bfabb9f5610000000000" ] }, { + "pc": 1309, + "op": "ISZERO", + "gas": 1548214, + "gasCost": 3, "depth": 2, - "gas": 1565102, - "gasCost": 2, - "op": "POP", - "pc": 1276, "stack": [ "0xa0712d68", "0xd9", @@ -32346,16 +32834,16 @@ "0x286", "0x3e8", "0x1d6329f1c35ca4bfabb9f5610000000000", - "0x1d6329f1c35ca4bfabb9f56100000003e8", + "0x0", "0x0" ] }, { - "depth": 2, - "gas": 1565100, + "pc": 1310, + "op": "PUSH2", + "gas": 1548211, "gasCost": 3, - "op": "DUP1", - "pc": 1277, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -32367,15 +32855,16 @@ "0x286", "0x3e8", "0x1d6329f1c35ca4bfabb9f5610000000000", - "0x1d6329f1c35ca4bfabb9f56100000003e8" + "0x0", + "0x1" ] }, { + "pc": 1313, + "op": "JUMPI", + "gas": 1548208, + "gasCost": 10, "depth": 2, - "gas": 1565097, - "gasCost": 3, - "op": "DUP3", - "pc": 1278, "stack": [ "0xa0712d68", "0xd9", @@ -32387,16 +32876,17 @@ "0x286", "0x3e8", "0x1d6329f1c35ca4bfabb9f5610000000000", - "0x1d6329f1c35ca4bfabb9f56100000003e8", - "0x1d6329f1c35ca4bfabb9f56100000003e8" + "0x0", + "0x1", + "0x52a" ] }, { + "pc": 1322, + "op": "JUMPDEST", + "gas": 1548198, + "gasCost": 1, "depth": 2, - "gas": 1565094, - "gasCost": 3, - "op": "GT", - "pc": 1279, "stack": [ "0xa0712d68", "0xd9", @@ -32408,17 +32898,15 @@ "0x286", "0x3e8", "0x1d6329f1c35ca4bfabb9f5610000000000", - "0x1d6329f1c35ca4bfabb9f56100000003e8", - "0x1d6329f1c35ca4bfabb9f56100000003e8", - "0x1d6329f1c35ca4bfabb9f5610000000000" + "0x0" ] }, { - "depth": 2, - "gas": 1565091, + "pc": 1323, + "op": "DUP3", + "gas": 1548197, "gasCost": 3, - "op": "ISZERO", - "pc": 1280, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -32430,16 +32918,15 @@ "0x286", "0x3e8", "0x1d6329f1c35ca4bfabb9f5610000000000", - "0x1d6329f1c35ca4bfabb9f56100000003e8", "0x0" ] }, { - "depth": 2, - "gas": 1565088, + "pc": 1324, + "op": "DUP3", + "gas": 1548194, "gasCost": 3, - "op": "PUSH2", - "pc": 1281, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -32451,16 +32938,16 @@ "0x286", "0x3e8", "0x1d6329f1c35ca4bfabb9f5610000000000", - "0x1d6329f1c35ca4bfabb9f56100000003e8", - "0x1" + "0x0", + "0x3e8" ] }, { + "pc": 1325, + "op": "ADD", + "gas": 1548191, + "gasCost": 3, "depth": 2, - "gas": 1565085, - "gasCost": 10, - "op": "JUMPI", - "pc": 1284, "stack": [ "0xa0712d68", "0xd9", @@ -32472,17 +32959,17 @@ "0x286", "0x3e8", "0x1d6329f1c35ca4bfabb9f5610000000000", - "0x1d6329f1c35ca4bfabb9f56100000003e8", - "0x1", - "0x50d" + "0x0", + "0x3e8", + "0x1d6329f1c35ca4bfabb9f5610000000000" ] }, { + "pc": 1326, + "op": "SWAP1", + "gas": 1548188, + "gasCost": 3, "depth": 2, - "gas": 1565075, - "gasCost": 1, - "op": "JUMPDEST", - "pc": 1293, "stack": [ "0xa0712d68", "0xd9", @@ -32494,15 +32981,37 @@ "0x286", "0x3e8", "0x1d6329f1c35ca4bfabb9f5610000000000", + "0x0", "0x1d6329f1c35ca4bfabb9f56100000003e8" ] }, { + "pc": 1327, + "op": "POP", + "gas": 1548185, + "gasCost": 2, "depth": 2, - "gas": 1565074, - "gasCost": 3, + "stack": [ + "0xa0712d68", + "0xd9", + "0x3e8", + "0x0", + "0x3e8", + "0x0", + "0x0", + "0x286", + "0x3e8", + "0x1d6329f1c35ca4bfabb9f5610000000000", + "0x1d6329f1c35ca4bfabb9f56100000003e8", + "0x0" + ] + }, + { + "pc": 1328, "op": "SWAP3", - "pc": 1294, + "gas": 1548183, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -32518,11 +33027,11 @@ ] }, { - "depth": 2, - "gas": 1565071, - "gasCost": 3, + "pc": 1329, "op": "SWAP2", - "pc": 1295, + "gas": 1548180, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -32538,11 +33047,11 @@ ] }, { - "depth": 2, - "gas": 1565068, - "gasCost": 2, + "pc": 1330, "op": "POP", - "pc": 1296, + "gas": 1548177, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -32558,11 +33067,11 @@ ] }, { - "depth": 2, - "gas": 1565066, - "gasCost": 2, + "pc": 1331, "op": "POP", - "pc": 1297, + "gas": 1548175, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -32577,11 +33086,11 @@ ] }, { - "depth": 2, - "gas": 1565064, - "gasCost": 8, + "pc": 1332, "op": "JUMP", - "pc": 1298, + "gas": 1548173, + "gasCost": 8, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -32595,11 +33104,11 @@ ] }, { - "depth": 2, - "gas": 1565056, - "gasCost": 1, - "op": "JUMPDEST", "pc": 646, + "op": "JUMPDEST", + "gas": 1548165, + "gasCost": 1, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -32612,11 +33121,11 @@ ] }, { - "depth": 2, - "gas": 1565055, - "gasCost": 3, - "op": "SWAP3", "pc": 647, + "op": "SWAP3", + "gas": 1548164, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -32629,11 +33138,11 @@ ] }, { - "depth": 2, - "gas": 1565052, - "gasCost": 2, - "op": "POP", "pc": 648, + "op": "POP", + "gas": 1548161, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -32646,11 +33155,11 @@ ] }, { - "depth": 2, - "gas": 1565050, - "gasCost": 2, - "op": "POP", "pc": 649, + "op": "POP", + "gas": 1548159, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -32662,11 +33171,11 @@ ] }, { - "depth": 2, - "gas": 1565048, - "gasCost": 3, - "op": "DUP2", "pc": 650, + "op": "DUP2", + "gas": 1548157, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -32677,11 +33186,11 @@ ] }, { - "depth": 2, - "gas": 1565045, - "gasCost": 3, - "op": "SWAP1", "pc": 651, + "op": "SWAP1", + "gas": 1548154, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -32693,11 +33202,11 @@ ] }, { - "depth": 2, - "gas": 1565042, - "gasCost": 200, - "op": "SSTORE", "pc": 652, + "op": "SSTORE", + "gas": 1548151, + "gasCost": 100, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -32714,11 +33223,11 @@ } }, { - "depth": 2, - "gas": 1564842, - "gasCost": 2, - "op": "POP", "pc": 653, + "op": "POP", + "gas": 1548051, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -32728,11 +33237,11 @@ ] }, { - "depth": 2, - "gas": 1564840, - "gasCost": 3, - "op": "PUSH2", "pc": 654, + "op": "PUSH2", + "gas": 1548049, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -32741,11 +33250,11 @@ ] }, { - "depth": 2, - "gas": 1564837, - "gasCost": 3, - "op": "PUSH1", "pc": 657, + "op": "PUSH1", + "gas": 1548046, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -32755,11 +33264,11 @@ ] }, { - "depth": 2, - "gas": 1564834, - "gasCost": 3, - "op": "DUP4", "pc": 659, + "op": "DUP4", + "gas": 1548043, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -32770,11 +33279,11 @@ ] }, { - "depth": 2, - "gas": 1564831, - "gasCost": 3, - "op": "PUSH2", "pc": 660, + "op": "PUSH2", + "gas": 1548040, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -32786,11 +33295,11 @@ ] }, { - "depth": 2, - "gas": 1564828, - "gasCost": 3, - "op": "SWAP2", "pc": 663, + "op": "SWAP2", + "gas": 1548037, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -32803,11 +33312,11 @@ ] }, { - "depth": 2, - "gas": 1564825, - "gasCost": 3, - "op": "SWAP1", "pc": 664, + "op": "SWAP1", + "gas": 1548034, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -32820,11 +33329,11 @@ ] }, { - "depth": 2, - "gas": 1564822, - "gasCost": 3, - "op": "PUSH2", "pc": 665, + "op": "PUSH2", + "gas": 1548031, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -32837,11 +33346,11 @@ ] }, { - "depth": 2, - "gas": 1564819, - "gasCost": 8, - "op": "JUMP", "pc": 668, + "op": "JUMP", + "gas": 1548028, + "gasCost": 8, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -32855,11 +33364,11 @@ ] }, { - "depth": 2, - "gas": 1564811, - "gasCost": 1, - "op": "JUMPDEST", "pc": 1247, + "op": "JUMPDEST", + "gas": 1548020, + "gasCost": 1, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -32872,11 +33381,11 @@ ] }, { - "depth": 2, - "gas": 1564810, - "gasCost": 3, - "op": "PUSH1", "pc": 1248, + "op": "PUSH1", + "gas": 1548019, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -32889,11 +33398,11 @@ ] }, { - "depth": 2, - "gas": 1564807, - "gasCost": 3, - "op": "PUSH2", "pc": 1250, + "op": "PUSH2", + "gas": 1548016, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -32907,11 +33416,11 @@ ] }, { - "depth": 2, - "gas": 1564804, - "gasCost": 3, - "op": "DUP3", "pc": 1253, + "op": "DUP3", + "gas": 1548013, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -32925,12 +33434,12 @@ "0x4ea" ] }, - { - "depth": 2, - "gas": 1564801, - "gasCost": 3, - "op": "PUSH2", + { "pc": 1254, + "op": "PUSH2", + "gas": 1548010, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -32946,11 +33455,11 @@ ] }, { - "depth": 2, - "gas": 1564798, - "gasCost": 8, - "op": "JUMP", "pc": 1257, + "op": "JUMP", + "gas": 1548007, + "gasCost": 8, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -32967,11 +33476,11 @@ ] }, { - "depth": 2, - "gas": 1564790, - "gasCost": 1, - "op": "JUMPDEST", "pc": 781, + "op": "JUMPDEST", + "gas": 1547999, + "gasCost": 1, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -32987,11 +33496,11 @@ ] }, { - "depth": 2, - "gas": 1564789, - "gasCost": 3, - "op": "PUSH1", "pc": 782, + "op": "PUSH1", + "gas": 1547998, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -33007,11 +33516,11 @@ ] }, { - "depth": 2, - "gas": 1564786, - "gasCost": 3, - "op": "DUP2", "pc": 784, + "op": "DUP2", + "gas": 1547995, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -33028,11 +33537,11 @@ ] }, { - "depth": 2, - "gas": 1564783, - "gasCost": 3, - "op": "SWAP1", "pc": 785, + "op": "SWAP1", + "gas": 1547992, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -33050,11 +33559,11 @@ ] }, { - "depth": 2, - "gas": 1564780, - "gasCost": 2, - "op": "POP", "pc": 786, + "op": "POP", + "gas": 1547989, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -33072,11 +33581,11 @@ ] }, { - "depth": 2, - "gas": 1564778, - "gasCost": 3, - "op": "SWAP2", "pc": 787, + "op": "SWAP2", + "gas": 1547987, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -33093,11 +33602,11 @@ ] }, { - "depth": 2, - "gas": 1564775, - "gasCost": 3, - "op": "SWAP1", "pc": 788, + "op": "SWAP1", + "gas": 1547984, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -33114,11 +33623,11 @@ ] }, { - "depth": 2, - "gas": 1564772, - "gasCost": 2, - "op": "POP", "pc": 789, + "op": "POP", + "gas": 1547981, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -33135,11 +33644,11 @@ ] }, { - "depth": 2, - "gas": 1564770, - "gasCost": 8, - "op": "JUMP", "pc": 790, + "op": "JUMP", + "gas": 1547979, + "gasCost": 8, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -33155,11 +33664,11 @@ ] }, { - "depth": 2, - "gas": 1564762, - "gasCost": 1, - "op": "JUMPDEST", "pc": 1258, + "op": "JUMPDEST", + "gas": 1547971, + "gasCost": 1, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -33174,11 +33683,11 @@ ] }, { - "depth": 2, - "gas": 1564761, - "gasCost": 3, - "op": "SWAP2", "pc": 1259, + "op": "SWAP2", + "gas": 1547970, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -33193,11 +33702,11 @@ ] }, { - "depth": 2, - "gas": 1564758, - "gasCost": 2, - "op": "POP", "pc": 1260, + "op": "POP", + "gas": 1547967, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -33212,11 +33721,11 @@ ] }, { - "depth": 2, - "gas": 1564756, - "gasCost": 3, - "op": "PUSH2", "pc": 1261, + "op": "PUSH2", + "gas": 1547965, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -33230,11 +33739,11 @@ ] }, { - "depth": 2, - "gas": 1564753, - "gasCost": 3, - "op": "DUP4", "pc": 1264, + "op": "DUP4", + "gas": 1547962, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -33249,11 +33758,11 @@ ] }, { - "depth": 2, - "gas": 1564750, - "gasCost": 3, - "op": "PUSH2", "pc": 1265, + "op": "PUSH2", + "gas": 1547959, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -33269,11 +33778,11 @@ ] }, { - "depth": 2, - "gas": 1564747, - "gasCost": 8, - "op": "JUMP", "pc": 1268, + "op": "JUMP", + "gas": 1547956, + "gasCost": 8, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -33290,11 +33799,11 @@ ] }, { - "depth": 2, - "gas": 1564739, - "gasCost": 1, - "op": "JUMPDEST", "pc": 781, + "op": "JUMPDEST", + "gas": 1547948, + "gasCost": 1, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -33310,11 +33819,11 @@ ] }, { - "depth": 2, - "gas": 1564738, - "gasCost": 3, - "op": "PUSH1", "pc": 782, + "op": "PUSH1", + "gas": 1547947, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -33330,11 +33839,11 @@ ] }, { - "depth": 2, - "gas": 1564735, - "gasCost": 3, - "op": "DUP2", "pc": 784, + "op": "DUP2", + "gas": 1547944, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -33351,11 +33860,11 @@ ] }, { - "depth": 2, - "gas": 1564732, - "gasCost": 3, - "op": "SWAP1", "pc": 785, + "op": "SWAP1", + "gas": 1547941, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -33373,11 +33882,11 @@ ] }, { - "depth": 2, - "gas": 1564729, - "gasCost": 2, - "op": "POP", "pc": 786, + "op": "POP", + "gas": 1547938, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -33395,11 +33904,11 @@ ] }, { - "depth": 2, - "gas": 1564727, - "gasCost": 3, - "op": "SWAP2", "pc": 787, + "op": "SWAP2", + "gas": 1547936, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -33416,11 +33925,11 @@ ] }, { - "depth": 2, - "gas": 1564724, - "gasCost": 3, - "op": "SWAP1", "pc": 788, + "op": "SWAP1", + "gas": 1547933, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -33437,11 +33946,11 @@ ] }, { - "depth": 2, - "gas": 1564721, - "gasCost": 2, - "op": "POP", "pc": 789, + "op": "POP", + "gas": 1547930, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -33458,11 +33967,11 @@ ] }, { - "depth": 2, - "gas": 1564719, - "gasCost": 8, - "op": "JUMP", "pc": 790, + "op": "JUMP", + "gas": 1547928, + "gasCost": 8, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -33478,11 +33987,11 @@ ] }, { - "depth": 2, - "gas": 1564711, - "gasCost": 1, - "op": "JUMPDEST", "pc": 1269, + "op": "JUMPDEST", + "gas": 1547920, + "gasCost": 1, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -33497,11 +34006,11 @@ ] }, { - "depth": 2, - "gas": 1564710, - "gasCost": 3, - "op": "SWAP3", "pc": 1270, + "op": "SWAP3", + "gas": 1547919, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -33516,11 +34025,11 @@ ] }, { - "depth": 2, - "gas": 1564707, - "gasCost": 2, - "op": "POP", "pc": 1271, + "op": "POP", + "gas": 1547916, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -33535,11 +34044,11 @@ ] }, { - "depth": 2, - "gas": 1564705, - "gasCost": 3, - "op": "DUP3", "pc": 1272, + "op": "DUP3", + "gas": 1547914, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -33553,11 +34062,11 @@ ] }, { - "depth": 2, - "gas": 1564702, - "gasCost": 3, - "op": "DUP3", "pc": 1273, + "op": "PUSH32", + "gas": 1547911, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -33572,11 +34081,11 @@ ] }, { - "depth": 2, - "gas": 1564699, + "pc": 1306, + "op": "SUB", + "gas": 1547908, "gasCost": 3, - "op": "ADD", - "pc": 1274, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -33588,15 +34097,34 @@ "0x3e8", "0x0", "0x1", - "0x3e8" + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" ] }, { + "pc": 1307, + "op": "DUP3", + "gas": 1547905, + "gasCost": 3, "depth": 2, - "gas": 1564696, + "stack": [ + "0xa0712d68", + "0xd9", + "0x3e8", + "0x0", + "0x2a2", + "0x29d", + "0x1", + "0x3e8", + "0x0", + "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe" + ] + }, + { + "pc": 1308, + "op": "GT", + "gas": 1547902, "gasCost": 3, - "op": "SWAP1", - "pc": 1275, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -33607,15 +34135,16 @@ "0x1", "0x3e8", "0x0", - "0x3e9" + "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe", + "0x3e8" ] }, { + "pc": 1309, + "op": "ISZERO", + "gas": 1547899, + "gasCost": 3, "depth": 2, - "gas": 1564693, - "gasCost": 2, - "op": "POP", - "pc": 1276, "stack": [ "0xa0712d68", "0xd9", @@ -33625,16 +34154,16 @@ "0x29d", "0x1", "0x3e8", - "0x3e9", + "0x0", "0x0" ] }, { - "depth": 2, - "gas": 1564691, + "pc": 1310, + "op": "PUSH2", + "gas": 1547896, "gasCost": 3, - "op": "DUP1", - "pc": 1277, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -33644,15 +34173,16 @@ "0x29d", "0x1", "0x3e8", - "0x3e9" + "0x0", + "0x1" ] }, { + "pc": 1313, + "op": "JUMPI", + "gas": 1547893, + "gasCost": 10, "depth": 2, - "gas": 1564688, - "gasCost": 3, - "op": "DUP3", - "pc": 1278, "stack": [ "0xa0712d68", "0xd9", @@ -33662,16 +34192,17 @@ "0x29d", "0x1", "0x3e8", - "0x3e9", - "0x3e9" + "0x0", + "0x1", + "0x52a" ] }, { + "pc": 1322, + "op": "JUMPDEST", + "gas": 1547883, + "gasCost": 1, "depth": 2, - "gas": 1564685, - "gasCost": 3, - "op": "GT", - "pc": 1279, "stack": [ "0xa0712d68", "0xd9", @@ -33681,17 +34212,15 @@ "0x29d", "0x1", "0x3e8", - "0x3e9", - "0x3e9", - "0x3e8" + "0x0" ] }, { - "depth": 2, - "gas": 1564682, + "pc": 1323, + "op": "DUP3", + "gas": 1547882, "gasCost": 3, - "op": "ISZERO", - "pc": 1280, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -33701,16 +34230,15 @@ "0x29d", "0x1", "0x3e8", - "0x3e9", "0x0" ] }, { - "depth": 2, - "gas": 1564679, + "pc": 1324, + "op": "DUP3", + "gas": 1547879, "gasCost": 3, - "op": "PUSH2", - "pc": 1281, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -33720,16 +34248,16 @@ "0x29d", "0x1", "0x3e8", - "0x3e9", + "0x0", "0x1" ] }, { + "pc": 1325, + "op": "ADD", + "gas": 1547876, + "gasCost": 3, "depth": 2, - "gas": 1564676, - "gasCost": 10, - "op": "JUMPI", - "pc": 1284, "stack": [ "0xa0712d68", "0xd9", @@ -33739,17 +34267,17 @@ "0x29d", "0x1", "0x3e8", - "0x3e9", + "0x0", "0x1", - "0x50d" + "0x3e8" ] }, { + "pc": 1326, + "op": "SWAP1", + "gas": 1547873, + "gasCost": 3, "depth": 2, - "gas": 1564666, - "gasCost": 1, - "op": "JUMPDEST", - "pc": 1293, "stack": [ "0xa0712d68", "0xd9", @@ -33759,15 +34287,35 @@ "0x29d", "0x1", "0x3e8", + "0x0", "0x3e9" ] }, { + "pc": 1327, + "op": "POP", + "gas": 1547870, + "gasCost": 2, "depth": 2, - "gas": 1564665, - "gasCost": 3, + "stack": [ + "0xa0712d68", + "0xd9", + "0x3e8", + "0x0", + "0x2a2", + "0x29d", + "0x1", + "0x3e8", + "0x3e9", + "0x0" + ] + }, + { + "pc": 1328, "op": "SWAP3", - "pc": 1294, + "gas": 1547868, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -33781,11 +34329,11 @@ ] }, { - "depth": 2, - "gas": 1564662, - "gasCost": 3, + "pc": 1329, "op": "SWAP2", - "pc": 1295, + "gas": 1547865, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -33799,11 +34347,11 @@ ] }, { - "depth": 2, - "gas": 1564659, - "gasCost": 2, + "pc": 1330, "op": "POP", - "pc": 1296, + "gas": 1547862, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -33817,11 +34365,11 @@ ] }, { - "depth": 2, - "gas": 1564657, - "gasCost": 2, + "pc": 1331, "op": "POP", - "pc": 1297, + "gas": 1547860, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -33834,11 +34382,11 @@ ] }, { - "depth": 2, - "gas": 1564655, - "gasCost": 8, + "pc": 1332, "op": "JUMP", - "pc": 1298, + "gas": 1547858, + "gasCost": 8, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -33850,11 +34398,11 @@ ] }, { - "depth": 2, - "gas": 1564647, - "gasCost": 1, - "op": "JUMPDEST", "pc": 669, + "op": "JUMPDEST", + "gas": 1547850, + "gasCost": 1, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -33865,11 +34413,11 @@ ] }, { - "depth": 2, - "gas": 1564646, - "gasCost": 3, - "op": "PUSH2", "pc": 670, + "op": "PUSH2", + "gas": 1547849, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -33880,11 +34428,11 @@ ] }, { - "depth": 2, - "gas": 1564643, - "gasCost": 8, - "op": "JUMP", "pc": 673, + "op": "JUMP", + "gas": 1547846, + "gasCost": 8, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -33896,11 +34444,11 @@ ] }, { - "depth": 2, - "gas": 1564635, - "gasCost": 1, - "op": "JUMPDEST", "pc": 376, + "op": "JUMPDEST", + "gas": 1547838, + "gasCost": 1, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -33911,11 +34459,11 @@ ] }, { - "depth": 2, - "gas": 1564634, - "gasCost": 3, - "op": "PUSH1", "pc": 377, + "op": "PUSH1", + "gas": 1547837, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -33926,11 +34474,11 @@ ] }, { - "depth": 2, - "gas": 1564631, - "gasCost": 2, - "op": "CALLER", "pc": 379, + "op": "CALLER", + "gas": 1547834, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -33942,11 +34490,11 @@ ] }, { - "depth": 2, - "gas": 1564629, - "gasCost": 3, - "op": "PUSH20", "pc": 380, + "op": "PUSH20", + "gas": 1547832, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -33959,11 +34507,11 @@ ] }, { - "depth": 2, - "gas": 1564626, - "gasCost": 3, - "op": "AND", "pc": 401, + "op": "AND", + "gas": 1547829, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -33977,11 +34525,11 @@ ] }, { - "depth": 2, - "gas": 1564623, - "gasCost": 3, - "op": "PUSH32", "pc": 402, + "op": "PUSH32", + "gas": 1547826, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -33994,11 +34542,11 @@ ] }, { - "depth": 2, - "gas": 1564620, - "gasCost": 3, - "op": "DUP4", "pc": 435, + "op": "DUP4", + "gas": 1547823, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -34012,11 +34560,11 @@ ] }, { - "depth": 2, - "gas": 1564617, - "gasCost": 3, - "op": "PUSH1", "pc": 436, + "op": "PUSH1", + "gas": 1547820, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -34031,11 +34579,11 @@ ] }, { - "depth": 2, - "gas": 1564614, - "gasCost": 3, - "op": "MLOAD", "pc": 438, + "op": "MLOAD", + "gas": 1547817, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -34051,11 +34599,11 @@ ] }, { - "depth": 2, - "gas": 1564611, - "gasCost": 3, - "op": "PUSH2", "pc": 439, + "op": "PUSH2", + "gas": 1547814, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -34071,11 +34619,11 @@ ] }, { - "depth": 2, - "gas": 1564608, - "gasCost": 3, - "op": "SWAP2", "pc": 442, + "op": "SWAP2", + "gas": 1547811, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -34092,11 +34640,11 @@ ] }, { - "depth": 2, - "gas": 1564605, - "gasCost": 3, - "op": "SWAP1", "pc": 443, + "op": "SWAP1", + "gas": 1547808, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -34113,11 +34661,11 @@ ] }, { - "depth": 2, - "gas": 1564602, - "gasCost": 3, - "op": "PUSH2", "pc": 444, + "op": "PUSH2", + "gas": 1547805, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -34134,11 +34682,11 @@ ] }, { - "depth": 2, - "gas": 1564599, - "gasCost": 8, - "op": "JUMP", "pc": 447, + "op": "JUMP", + "gas": 1547802, + "gasCost": 8, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -34156,11 +34704,11 @@ ] }, { - "depth": 2, - "gas": 1564591, - "gasCost": 1, - "op": "JUMPDEST", "pc": 1154, + "op": "JUMPDEST", + "gas": 1547794, + "gasCost": 1, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -34177,11 +34725,11 @@ ] }, { - "depth": 2, - "gas": 1564590, - "gasCost": 3, - "op": "PUSH1", "pc": 1155, + "op": "PUSH1", + "gas": 1547793, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -34198,11 +34746,11 @@ ] }, { - "depth": 2, - "gas": 1564587, - "gasCost": 3, - "op": "PUSH1", "pc": 1157, + "op": "PUSH1", + "gas": 1547790, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -34220,11 +34768,11 @@ ] }, { - "depth": 2, - "gas": 1564584, - "gasCost": 3, - "op": "DUP3", "pc": 1159, + "op": "DUP3", + "gas": 1547787, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -34243,11 +34791,11 @@ ] }, { - "depth": 2, - "gas": 1564581, - "gasCost": 3, - "op": "ADD", "pc": 1160, + "op": "ADD", + "gas": 1547784, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -34267,11 +34815,11 @@ ] }, { - "depth": 2, - "gas": 1564578, - "gasCost": 3, - "op": "SWAP1", "pc": 1161, + "op": "SWAP1", + "gas": 1547781, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -34290,11 +34838,11 @@ ] }, { - "depth": 2, - "gas": 1564575, - "gasCost": 2, - "op": "POP", "pc": 1162, + "op": "POP", + "gas": 1547778, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -34313,11 +34861,11 @@ ] }, { - "depth": 2, - "gas": 1564573, - "gasCost": 3, - "op": "PUSH2", "pc": 1163, + "op": "PUSH2", + "gas": 1547776, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -34335,11 +34883,11 @@ ] }, { - "depth": 2, - "gas": 1564570, - "gasCost": 3, - "op": "PUSH1", "pc": 1166, + "op": "PUSH1", + "gas": 1547773, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -34358,11 +34906,11 @@ ] }, { - "depth": 2, - "gas": 1564567, - "gasCost": 3, - "op": "DUP4", "pc": 1168, + "op": "DUP4", + "gas": 1547770, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -34382,11 +34930,11 @@ ] }, { - "depth": 2, - "gas": 1564564, - "gasCost": 3, - "op": "ADD", "pc": 1169, + "op": "ADD", + "gas": 1547767, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -34407,11 +34955,11 @@ ] }, { - "depth": 2, - "gas": 1564561, - "gasCost": 3, - "op": "DUP5", "pc": 1170, + "op": "DUP5", + "gas": 1547764, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -34431,11 +34979,11 @@ ] }, { - "depth": 2, - "gas": 1564558, - "gasCost": 3, - "op": "PUSH2", "pc": 1171, + "op": "PUSH2", + "gas": 1547761, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -34456,11 +35004,11 @@ ] }, { - "depth": 2, - "gas": 1564555, - "gasCost": 8, - "op": "JUMP", "pc": 1174, + "op": "JUMP", + "gas": 1547758, + "gasCost": 8, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -34482,11 +35030,11 @@ ] }, { - "depth": 2, - "gas": 1564547, - "gasCost": 1, - "op": "JUMPDEST", "pc": 880, + "op": "JUMPDEST", + "gas": 1547750, + "gasCost": 1, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -34507,11 +35055,11 @@ ] }, { - "depth": 2, - "gas": 1564546, - "gasCost": 3, - "op": "PUSH2", "pc": 881, + "op": "PUSH2", + "gas": 1547749, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -34532,11 +35080,11 @@ ] }, { - "depth": 2, - "gas": 1564543, - "gasCost": 3, - "op": "DUP2", "pc": 884, + "op": "DUP2", + "gas": 1547746, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -34558,11 +35106,11 @@ ] }, { - "depth": 2, - "gas": 1564540, - "gasCost": 3, - "op": "PUSH2", "pc": 885, + "op": "PUSH2", + "gas": 1547743, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -34585,11 +35133,11 @@ ] }, { - "depth": 2, - "gas": 1564537, - "gasCost": 8, - "op": "JUMP", "pc": 888, + "op": "JUMP", + "gas": 1547740, + "gasCost": 8, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -34613,11 +35161,11 @@ ] }, { - "depth": 2, - "gas": 1564529, - "gasCost": 1, - "op": "JUMPDEST", "pc": 781, + "op": "JUMPDEST", + "gas": 1547732, + "gasCost": 1, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -34640,11 +35188,11 @@ ] }, { - "depth": 2, - "gas": 1564528, - "gasCost": 3, - "op": "PUSH1", "pc": 782, + "op": "PUSH1", + "gas": 1547731, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -34667,11 +35215,11 @@ ] }, { - "depth": 2, - "gas": 1564525, - "gasCost": 3, - "op": "DUP2", "pc": 784, + "op": "DUP2", + "gas": 1547728, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -34695,11 +35243,11 @@ ] }, { - "depth": 2, - "gas": 1564522, - "gasCost": 3, - "op": "SWAP1", "pc": 785, + "op": "SWAP1", + "gas": 1547725, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -34724,11 +35272,11 @@ ] }, { - "depth": 2, - "gas": 1564519, - "gasCost": 2, - "op": "POP", "pc": 786, + "op": "POP", + "gas": 1547722, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -34753,11 +35301,11 @@ ] }, { - "depth": 2, - "gas": 1564517, - "gasCost": 3, - "op": "SWAP2", "pc": 787, + "op": "SWAP2", + "gas": 1547720, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -34781,11 +35329,11 @@ ] }, { - "depth": 2, - "gas": 1564514, - "gasCost": 3, - "op": "SWAP1", "pc": 788, + "op": "SWAP1", + "gas": 1547717, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -34809,11 +35357,11 @@ ] }, { - "depth": 2, - "gas": 1564511, - "gasCost": 2, - "op": "POP", "pc": 789, + "op": "POP", + "gas": 1547714, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -34837,11 +35385,11 @@ ] }, { - "depth": 2, - "gas": 1564509, - "gasCost": 8, - "op": "JUMP", "pc": 790, + "op": "JUMP", + "gas": 1547712, + "gasCost": 8, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -34864,11 +35412,11 @@ ] }, { - "depth": 2, - "gas": 1564501, - "gasCost": 1, - "op": "JUMPDEST", "pc": 889, + "op": "JUMPDEST", + "gas": 1547704, + "gasCost": 1, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -34890,11 +35438,11 @@ ] }, { - "depth": 2, - "gas": 1564500, - "gasCost": 3, - "op": "DUP3", "pc": 890, + "op": "DUP3", + "gas": 1547703, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -34916,11 +35464,11 @@ ] }, { - "depth": 2, - "gas": 1564497, - "gasCost": 3, - "op": "MSTORE", "pc": 891, + "op": "MSTORE", + "gas": 1547700, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -34943,11 +35491,11 @@ ] }, { - "depth": 2, - "gas": 1564494, - "gasCost": 2, - "op": "POP", "pc": 892, + "op": "POP", + "gas": 1547697, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -34968,11 +35516,11 @@ ] }, { - "depth": 2, - "gas": 1564492, - "gasCost": 2, - "op": "POP", "pc": 893, + "op": "POP", + "gas": 1547695, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -34992,11 +35540,11 @@ ] }, { - "depth": 2, - "gas": 1564490, - "gasCost": 8, - "op": "JUMP", "pc": 894, + "op": "JUMP", + "gas": 1547693, + "gasCost": 8, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -35015,11 +35563,11 @@ ] }, { - "depth": 2, - "gas": 1564482, - "gasCost": 1, - "op": "JUMPDEST", "pc": 1175, + "op": "JUMPDEST", + "gas": 1547685, + "gasCost": 1, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -35037,11 +35585,11 @@ ] }, { - "depth": 2, - "gas": 1564481, - "gasCost": 3, - "op": "DUP2", "pc": 1176, + "op": "DUP2", + "gas": 1547684, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -35059,11 +35607,11 @@ ] }, { - "depth": 2, - "gas": 1564478, - "gasCost": 3, - "op": "DUP2", "pc": 1177, + "op": "DUP2", + "gas": 1547681, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -35082,11 +35630,11 @@ ] }, { - "depth": 2, - "gas": 1564475, - "gasCost": 3, - "op": "SUB", "pc": 1178, + "op": "SUB", + "gas": 1547678, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -35106,11 +35654,11 @@ ] }, { - "depth": 2, - "gas": 1564472, - "gasCost": 3, - "op": "PUSH1", "pc": 1179, + "op": "PUSH1", + "gas": 1547675, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -35129,11 +35677,11 @@ ] }, { - "depth": 2, - "gas": 1564469, - "gasCost": 3, - "op": "DUP4", "pc": 1181, + "op": "DUP4", + "gas": 1547672, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -35153,11 +35701,11 @@ ] }, { - "depth": 2, - "gas": 1564466, - "gasCost": 3, - "op": "ADD", "pc": 1182, + "op": "ADD", + "gas": 1547669, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -35178,11 +35726,11 @@ ] }, { - "depth": 2, - "gas": 1564463, - "gasCost": 3, - "op": "MSTORE", "pc": 1183, + "op": "MSTORE", + "gas": 1547666, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -35202,11 +35750,11 @@ ] }, { - "depth": 2, - "gas": 1564460, - "gasCost": 3, - "op": "PUSH2", "pc": 1184, + "op": "PUSH2", + "gas": 1547663, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -35224,11 +35772,11 @@ ] }, { - "depth": 2, - "gas": 1564457, - "gasCost": 3, - "op": "DUP2", "pc": 1187, + "op": "DUP2", + "gas": 1547660, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -35247,11 +35795,11 @@ ] }, { - "depth": 2, - "gas": 1564454, - "gasCost": 3, - "op": "PUSH2", "pc": 1188, + "op": "PUSH2", + "gas": 1547657, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -35271,11 +35819,11 @@ ] }, { - "depth": 2, - "gas": 1564451, - "gasCost": 8, - "op": "JUMP", "pc": 1191, + "op": "JUMP", + "gas": 1547654, + "gasCost": 8, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -35296,11 +35844,11 @@ ] }, { - "depth": 2, - "gas": 1564443, - "gasCost": 1, - "op": "JUMPDEST", "pc": 1119, + "op": "JUMPDEST", + "gas": 1547646, + "gasCost": 1, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -35320,11 +35868,11 @@ ] }, { - "depth": 2, - "gas": 1564442, - "gasCost": 3, - "op": "PUSH1", "pc": 1120, + "op": "PUSH1", + "gas": 1547645, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -35344,11 +35892,11 @@ ] }, { - "depth": 2, - "gas": 1564439, - "gasCost": 3, - "op": "PUSH2", "pc": 1122, + "op": "PUSH2", + "gas": 1547642, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -35369,11 +35917,11 @@ ] }, { - "depth": 2, - "gas": 1564436, - "gasCost": 3, - "op": "PUSH1", "pc": 1125, + "op": "PUSH1", + "gas": 1547639, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -35395,66 +35943,11 @@ ] }, { - "depth": 2, - "gas": 1564433, - "gasCost": 3, - "op": "DUP4", "pc": 1127, - "stack": [ - "0xa0712d68", - "0xd9", - "0x3e8", - "0x0", - "0x2a2", - "0x3e9", - "0x0", - "Tracer.address", - "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x1c0", - "0x3e9", - "0x80", - "0xc0", - "0x4a8", - "0xc0", - "0x0", - "0x46c", - "0xe" - ] - }, - { - "depth": 2, - "gas": 1564430, + "op": "DUP4", + "gas": 1547636, "gasCost": 3, - "op": "PUSH2", - "pc": 1128, - "stack": [ - "0xa0712d68", - "0xd9", - "0x3e8", - "0x0", - "0x2a2", - "0x3e9", - "0x0", - "Tracer.address", - "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", - "0x1c0", - "0x3e9", - "0x80", - "0xc0", - "0x4a8", - "0xc0", - "0x0", - "0x46c", - "0xe", - "0xc0" - ] - }, - { "depth": 2, - "gas": 1564427, - "gasCost": 8, - "op": "JUMP", - "pc": 1131, "stack": [ "0xa0712d68", "0xd9", @@ -35473,17 +35966,15 @@ "0xc0", "0x0", "0x46c", - "0xe", - "0xc0", - "0x425" + "0xe" ] }, { + "pc": 1128, + "op": "PUSH2", + "gas": 1547633, + "gasCost": 3, "depth": 2, - "gas": 1564419, - "gasCost": 1, - "op": "JUMPDEST", - "pc": 1061, "stack": [ "0xa0712d68", "0xd9", @@ -35507,11 +35998,11 @@ ] }, { + "pc": 1131, + "op": "JUMP", + "gas": 1547630, + "gasCost": 8, "depth": 2, - "gas": 1564418, - "gasCost": 3, - "op": "PUSH1", - "pc": 1062, "stack": [ "0xa0712d68", "0xd9", @@ -35531,15 +36022,72 @@ "0x0", "0x46c", "0xe", - "0xc0" + "0xc0", + "0x425" ] }, { + "pc": 1061, + "op": "JUMPDEST", + "gas": 1547622, + "gasCost": 1, "depth": 2, - "gas": 1564415, + "stack": [ + "0xa0712d68", + "0xd9", + "0x3e8", + "0x0", + "0x2a2", + "0x3e9", + "0x0", + "Tracer.address", + "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", + "0x1c0", + "0x3e9", + "0x80", + "0xc0", + "0x4a8", + "0xc0", + "0x0", + "0x46c", + "0xe", + "0xc0" + ] + }, + { + "pc": 1062, + "op": "PUSH1", + "gas": 1547621, "gasCost": 3, - "op": "DUP3", + "depth": 2, + "stack": [ + "0xa0712d68", + "0xd9", + "0x3e8", + "0x0", + "0x2a2", + "0x3e9", + "0x0", + "Tracer.address", + "0xa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0", + "0x1c0", + "0x3e9", + "0x80", + "0xc0", + "0x4a8", + "0xc0", + "0x0", + "0x46c", + "0xe", + "0xc0" + ] + }, + { "pc": 1064, + "op": "DUP3", + "gas": 1547618, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -35564,11 +36112,11 @@ ] }, { - "depth": 2, - "gas": 1564412, - "gasCost": 3, - "op": "DUP3", "pc": 1065, + "op": "DUP3", + "gas": 1547615, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -35594,11 +36142,11 @@ ] }, { - "depth": 2, - "gas": 1564409, - "gasCost": 3, - "op": "MSTORE", "pc": 1066, + "op": "MSTORE", + "gas": 1547612, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -35625,11 +36173,11 @@ ] }, { - "depth": 2, - "gas": 1564406, - "gasCost": 3, - "op": "PUSH1", "pc": 1067, + "op": "PUSH1", + "gas": 1547609, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -35654,11 +36202,11 @@ ] }, { - "depth": 2, - "gas": 1564403, - "gasCost": 3, - "op": "DUP3", "pc": 1069, + "op": "DUP3", + "gas": 1547606, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -35684,11 +36232,11 @@ ] }, { - "depth": 2, - "gas": 1564400, - "gasCost": 3, - "op": "ADD", "pc": 1070, + "op": "ADD", + "gas": 1547603, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -35715,11 +36263,11 @@ ] }, { - "depth": 2, - "gas": 1564397, - "gasCost": 3, - "op": "SWAP1", "pc": 1071, + "op": "SWAP1", + "gas": 1547600, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -35745,11 +36293,11 @@ ] }, { - "depth": 2, - "gas": 1564394, - "gasCost": 2, - "op": "POP", "pc": 1072, + "op": "POP", + "gas": 1547597, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -35775,11 +36323,11 @@ ] }, { - "depth": 2, - "gas": 1564392, - "gasCost": 3, - "op": "SWAP3", "pc": 1073, + "op": "SWAP3", + "gas": 1547595, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -35804,11 +36352,11 @@ ] }, { - "depth": 2, - "gas": 1564389, - "gasCost": 3, - "op": "SWAP2", "pc": 1074, + "op": "SWAP2", + "gas": 1547592, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -35833,11 +36381,11 @@ ] }, { - "depth": 2, - "gas": 1564386, - "gasCost": 2, - "op": "POP", "pc": 1075, + "op": "POP", + "gas": 1547589, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -35862,11 +36410,11 @@ ] }, { - "depth": 2, - "gas": 1564384, - "gasCost": 2, - "op": "POP", "pc": 1076, + "op": "POP", + "gas": 1547587, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -35890,11 +36438,11 @@ ] }, { - "depth": 2, - "gas": 1564382, - "gasCost": 8, - "op": "JUMP", "pc": 1077, + "op": "JUMP", + "gas": 1547585, + "gasCost": 8, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -35917,11 +36465,11 @@ ] }, { - "depth": 2, - "gas": 1564374, - "gasCost": 1, - "op": "JUMPDEST", "pc": 1132, + "op": "JUMPDEST", + "gas": 1547577, + "gasCost": 1, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -35943,11 +36491,11 @@ ] }, { - "depth": 2, - "gas": 1564373, - "gasCost": 3, - "op": "SWAP2", "pc": 1133, + "op": "SWAP2", + "gas": 1547576, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -35969,11 +36517,11 @@ ] }, { - "depth": 2, - "gas": 1564370, - "gasCost": 2, - "op": "POP", "pc": 1134, + "op": "POP", + "gas": 1547573, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -35995,11 +36543,11 @@ ] }, { - "depth": 2, - "gas": 1564368, - "gasCost": 3, - "op": "PUSH2", "pc": 1135, + "op": "PUSH2", + "gas": 1547571, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -36020,11 +36568,11 @@ ] }, { - "depth": 2, - "gas": 1564365, - "gasCost": 3, - "op": "DUP3", "pc": 1138, + "op": "DUP3", + "gas": 1547568, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -36046,11 +36594,11 @@ ] }, { - "depth": 2, - "gas": 1564362, - "gasCost": 3, - "op": "PUSH2", "pc": 1139, + "op": "PUSH2", + "gas": 1547565, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -36073,11 +36621,11 @@ ] }, { - "depth": 2, - "gas": 1564359, - "gasCost": 8, - "op": "JUMP", "pc": 1142, + "op": "JUMP", + "gas": 1547562, + "gasCost": 8, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -36101,11 +36649,11 @@ ] }, { - "depth": 2, - "gas": 1564351, - "gasCost": 1, - "op": "JUMPDEST", "pc": 1078, + "op": "JUMPDEST", + "gas": 1547554, + "gasCost": 1, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -36128,11 +36676,11 @@ ] }, { - "depth": 2, - "gas": 1564350, - "gasCost": 3, - "op": "PUSH32", "pc": 1079, + "op": "PUSH32", + "gas": 1547553, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -36155,11 +36703,11 @@ ] }, { - "depth": 2, - "gas": 1564347, - "gasCost": 3, - "op": "PUSH1", "pc": 1112, + "op": "PUSH1", + "gas": 1547550, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -36183,11 +36731,11 @@ ] }, { - "depth": 2, - "gas": 1564344, - "gasCost": 3, - "op": "DUP3", "pc": 1114, + "op": "DUP3", + "gas": 1547547, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -36212,11 +36760,11 @@ ] }, { - "depth": 2, - "gas": 1564341, - "gasCost": 3, - "op": "ADD", "pc": 1115, + "op": "ADD", + "gas": 1547544, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -36242,11 +36790,11 @@ ] }, { - "depth": 2, - "gas": 1564338, - "gasCost": 3, - "op": "MSTORE", "pc": 1116, + "op": "MSTORE", + "gas": 1547541, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -36271,11 +36819,11 @@ ] }, { - "depth": 2, - "gas": 1564335, - "gasCost": 2, - "op": "POP", "pc": 1117, + "op": "POP", + "gas": 1547538, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -36298,11 +36846,11 @@ ] }, { - "depth": 2, - "gas": 1564333, - "gasCost": 8, - "op": "JUMP", "pc": 1118, + "op": "JUMP", + "gas": 1547536, + "gasCost": 8, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -36324,11 +36872,11 @@ ] }, { - "depth": 2, - "gas": 1564325, - "gasCost": 1, - "op": "JUMPDEST", "pc": 1143, + "op": "JUMPDEST", + "gas": 1547528, + "gasCost": 1, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -36349,11 +36897,11 @@ ] }, { - "depth": 2, - "gas": 1564324, - "gasCost": 3, - "op": "PUSH1", "pc": 1144, + "op": "PUSH1", + "gas": 1547527, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -36374,11 +36922,11 @@ ] }, { - "depth": 2, - "gas": 1564321, - "gasCost": 3, - "op": "DUP3", "pc": 1146, + "op": "DUP3", + "gas": 1547524, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -36400,11 +36948,11 @@ ] }, { - "depth": 2, - "gas": 1564318, - "gasCost": 3, - "op": "ADD", "pc": 1147, + "op": "ADD", + "gas": 1547521, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -36427,11 +36975,11 @@ ] }, { - "depth": 2, - "gas": 1564315, - "gasCost": 3, - "op": "SWAP1", "pc": 1148, + "op": "SWAP1", + "gas": 1547518, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -36453,11 +37001,11 @@ ] }, { - "depth": 2, - "gas": 1564312, - "gasCost": 2, - "op": "POP", "pc": 1149, + "op": "POP", + "gas": 1547515, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -36479,11 +37027,11 @@ ] }, { - "depth": 2, - "gas": 1564310, - "gasCost": 3, - "op": "SWAP2", "pc": 1150, + "op": "SWAP2", + "gas": 1547513, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -36504,11 +37052,11 @@ ] }, { - "depth": 2, - "gas": 1564307, - "gasCost": 3, - "op": "SWAP1", "pc": 1151, + "op": "SWAP1", + "gas": 1547510, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -36529,11 +37077,11 @@ ] }, { - "depth": 2, - "gas": 1564304, - "gasCost": 2, - "op": "POP", "pc": 1152, + "op": "POP", + "gas": 1547507, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -36554,11 +37102,11 @@ ] }, { - "depth": 2, - "gas": 1564302, - "gasCost": 8, - "op": "JUMP", "pc": 1153, + "op": "JUMP", + "gas": 1547505, + "gasCost": 8, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -36578,11 +37126,11 @@ ] }, { - "depth": 2, - "gas": 1564294, - "gasCost": 1, - "op": "JUMPDEST", "pc": 1192, + "op": "JUMPDEST", + "gas": 1547497, + "gasCost": 1, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -36601,11 +37149,11 @@ ] }, { - "depth": 2, - "gas": 1564293, - "gasCost": 3, - "op": "SWAP1", "pc": 1193, + "op": "SWAP1", + "gas": 1547496, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -36624,11 +37172,11 @@ ] }, { - "depth": 2, - "gas": 1564290, - "gasCost": 2, - "op": "POP", "pc": 1194, + "op": "POP", + "gas": 1547493, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -36647,11 +37195,11 @@ ] }, { - "depth": 2, - "gas": 1564288, - "gasCost": 3, - "op": "SWAP3", "pc": 1195, + "op": "SWAP3", + "gas": 1547491, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -36669,11 +37217,11 @@ ] }, { - "depth": 2, - "gas": 1564285, - "gasCost": 3, - "op": "SWAP2", "pc": 1196, + "op": "SWAP2", + "gas": 1547488, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -36691,11 +37239,11 @@ ] }, { - "depth": 2, - "gas": 1564282, - "gasCost": 2, - "op": "POP", "pc": 1197, + "op": "POP", + "gas": 1547485, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -36713,11 +37261,11 @@ ] }, { - "depth": 2, - "gas": 1564280, - "gasCost": 2, - "op": "POP", "pc": 1198, + "op": "POP", + "gas": 1547483, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -36734,11 +37282,11 @@ ] }, { - "depth": 2, - "gas": 1564278, - "gasCost": 8, - "op": "JUMP", "pc": 1199, + "op": "JUMP", + "gas": 1547481, + "gasCost": 8, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -36754,11 +37302,11 @@ ] }, { - "depth": 2, - "gas": 1564270, - "gasCost": 1, - "op": "JUMPDEST", "pc": 448, + "op": "JUMPDEST", + "gas": 1547473, + "gasCost": 1, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -36773,11 +37321,11 @@ ] }, { - "depth": 2, - "gas": 1564269, - "gasCost": 3, - "op": "PUSH1", "pc": 449, + "op": "PUSH1", + "gas": 1547472, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -36792,11 +37340,11 @@ ] }, { - "depth": 2, - "gas": 1564266, - "gasCost": 3, - "op": "MLOAD", "pc": 451, + "op": "MLOAD", + "gas": 1547469, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -36812,11 +37360,11 @@ ] }, { - "depth": 2, - "gas": 1564263, - "gasCost": 3, - "op": "DUP1", "pc": 452, + "op": "DUP1", + "gas": 1547466, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -36832,11 +37380,11 @@ ] }, { - "depth": 2, - "gas": 1564260, - "gasCost": 3, - "op": "SWAP2", "pc": 453, + "op": "SWAP2", + "gas": 1547463, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -36853,11 +37401,11 @@ ] }, { - "depth": 2, - "gas": 1564257, - "gasCost": 3, - "op": "SUB", "pc": 454, + "op": "SUB", + "gas": 1547460, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -36874,11 +37422,11 @@ ] }, { - "depth": 2, - "gas": 1564254, - "gasCost": 3, - "op": "SWAP1", "pc": 455, + "op": "SWAP1", + "gas": 1547457, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -36894,11 +37442,11 @@ ] }, { - "depth": 2, - "gas": 1564251, - "gasCost": 2149, - "op": "LOG2", "pc": 456, + "op": "LOG2", + "gas": 1547454, + "gasCost": 2149, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -36914,11 +37462,11 @@ ] }, { - "depth": 2, - "gas": 1562102, - "gasCost": 3, - "op": "DUP2", "pc": 457, + "op": "DUP2", + "gas": 1545305, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -36930,11 +37478,11 @@ ] }, { - "depth": 2, - "gas": 1562099, - "gasCost": 3, - "op": "PUSH1", "pc": 458, + "op": "PUSH1", + "gas": 1545302, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -36947,11 +37495,11 @@ ] }, { - "depth": 2, - "gas": 1562096, - "gasCost": 3, - "op": "PUSH1", "pc": 460, + "op": "PUSH1", + "gas": 1545299, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -36965,11 +37513,11 @@ ] }, { - "depth": 2, - "gas": 1562093, - "gasCost": 3, - "op": "DUP3", "pc": 462, + "op": "DUP3", + "gas": 1545296, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -36984,11 +37532,11 @@ ] }, { - "depth": 2, - "gas": 1562090, - "gasCost": 3, - "op": "DUP3", "pc": 463, + "op": "DUP3", + "gas": 1545293, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -37004,11 +37552,11 @@ ] }, { - "depth": 2, - "gas": 1562087, - "gasCost": 200, - "op": "SLOAD", "pc": 464, + "op": "SLOAD", + "gas": 1545290, + "gasCost": 100, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -37030,11 +37578,11 @@ } }, { - "depth": 2, - "gas": 1561887, - "gasCost": 3, - "op": "PUSH2", "pc": 465, + "op": "PUSH2", + "gas": 1545190, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -37051,11 +37599,11 @@ ] }, { - "depth": 2, - "gas": 1561884, - "gasCost": 3, - "op": "SWAP2", "pc": 468, + "op": "SWAP2", + "gas": 1545187, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -37073,11 +37621,11 @@ ] }, { - "depth": 2, - "gas": 1561881, - "gasCost": 3, - "op": "SWAP1", "pc": 469, + "op": "SWAP1", + "gas": 1545184, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -37095,11 +37643,11 @@ ] }, { - "depth": 2, - "gas": 1561878, - "gasCost": 3, - "op": "PUSH2", "pc": 470, + "op": "PUSH2", + "gas": 1545181, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -37117,11 +37665,11 @@ ] }, { - "depth": 2, - "gas": 1561875, - "gasCost": 8, - "op": "JUMP", "pc": 473, + "op": "JUMP", + "gas": 1545178, + "gasCost": 8, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -37140,11 +37688,11 @@ ] }, { - "depth": 2, - "gas": 1561867, - "gasCost": 1, - "op": "JUMPDEST", "pc": 1247, + "op": "JUMPDEST", + "gas": 1545170, + "gasCost": 1, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -37162,11 +37710,11 @@ ] }, { - "depth": 2, - "gas": 1561866, - "gasCost": 3, - "op": "PUSH1", "pc": 1248, + "op": "PUSH1", + "gas": 1545169, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -37184,11 +37732,11 @@ ] }, { - "depth": 2, - "gas": 1561863, - "gasCost": 3, - "op": "PUSH2", "pc": 1250, + "op": "PUSH2", + "gas": 1545166, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -37207,11 +37755,11 @@ ] }, { - "depth": 2, - "gas": 1561860, - "gasCost": 3, - "op": "DUP3", "pc": 1253, + "op": "DUP3", + "gas": 1545163, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -37231,11 +37779,11 @@ ] }, { - "depth": 2, - "gas": 1561857, - "gasCost": 3, - "op": "PUSH2", "pc": 1254, + "op": "PUSH2", + "gas": 1545160, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -37256,11 +37804,11 @@ ] }, { - "depth": 2, - "gas": 1561854, - "gasCost": 8, - "op": "JUMP", "pc": 1257, + "op": "JUMP", + "gas": 1545157, + "gasCost": 8, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -37282,11 +37830,11 @@ ] }, { - "depth": 2, - "gas": 1561846, - "gasCost": 1, - "op": "JUMPDEST", "pc": 781, + "op": "JUMPDEST", + "gas": 1545149, + "gasCost": 1, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -37307,11 +37855,11 @@ ] }, { - "depth": 2, - "gas": 1561845, - "gasCost": 3, - "op": "PUSH1", "pc": 782, + "op": "PUSH1", + "gas": 1545148, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -37332,11 +37880,11 @@ ] }, { - "depth": 2, - "gas": 1561842, - "gasCost": 3, - "op": "DUP2", "pc": 784, + "op": "DUP2", + "gas": 1545145, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -37358,11 +37906,11 @@ ] }, { - "depth": 2, - "gas": 1561839, - "gasCost": 3, - "op": "SWAP1", "pc": 785, + "op": "SWAP1", + "gas": 1545142, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -37385,11 +37933,11 @@ ] }, { - "depth": 2, - "gas": 1561836, - "gasCost": 2, - "op": "POP", "pc": 786, + "op": "POP", + "gas": 1545139, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -37412,11 +37960,11 @@ ] }, { - "depth": 2, - "gas": 1561834, - "gasCost": 3, - "op": "SWAP2", "pc": 787, + "op": "SWAP2", + "gas": 1545137, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -37438,11 +37986,11 @@ ] }, { - "depth": 2, - "gas": 1561831, - "gasCost": 3, - "op": "SWAP1", "pc": 788, + "op": "SWAP1", + "gas": 1545134, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -37464,11 +38012,11 @@ ] }, { - "depth": 2, - "gas": 1561828, - "gasCost": 2, - "op": "POP", "pc": 789, + "op": "POP", + "gas": 1545131, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -37490,11 +38038,11 @@ ] }, { - "depth": 2, - "gas": 1561826, - "gasCost": 8, - "op": "JUMP", "pc": 790, + "op": "JUMP", + "gas": 1545129, + "gasCost": 8, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -37515,11 +38063,11 @@ ] }, { - "depth": 2, - "gas": 1561818, - "gasCost": 1, - "op": "JUMPDEST", "pc": 1258, + "op": "JUMPDEST", + "gas": 1545121, + "gasCost": 1, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -37539,11 +38087,11 @@ ] }, { - "depth": 2, - "gas": 1561817, - "gasCost": 3, - "op": "SWAP2", "pc": 1259, + "op": "SWAP2", + "gas": 1545120, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -37563,11 +38111,11 @@ ] }, { - "depth": 2, - "gas": 1561814, - "gasCost": 2, - "op": "POP", "pc": 1260, + "op": "POP", + "gas": 1545117, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -37587,11 +38135,11 @@ ] }, { - "depth": 2, - "gas": 1561812, - "gasCost": 3, - "op": "PUSH2", "pc": 1261, + "op": "PUSH2", + "gas": 1545115, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -37610,11 +38158,11 @@ ] }, { - "depth": 2, - "gas": 1561809, - "gasCost": 3, - "op": "DUP4", "pc": 1264, + "op": "DUP4", + "gas": 1545112, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -37634,11 +38182,11 @@ ] }, { - "depth": 2, - "gas": 1561806, - "gasCost": 3, - "op": "PUSH2", "pc": 1265, + "op": "PUSH2", + "gas": 1545109, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -37659,11 +38207,11 @@ ] }, { - "depth": 2, - "gas": 1561803, - "gasCost": 8, - "op": "JUMP", "pc": 1268, + "op": "JUMP", + "gas": 1545106, + "gasCost": 8, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -37685,11 +38233,11 @@ ] }, { - "depth": 2, - "gas": 1561795, - "gasCost": 1, - "op": "JUMPDEST", "pc": 781, + "op": "JUMPDEST", + "gas": 1545098, + "gasCost": 1, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -37710,11 +38258,11 @@ ] }, { - "depth": 2, - "gas": 1561794, - "gasCost": 3, - "op": "PUSH1", "pc": 782, + "op": "PUSH1", + "gas": 1545097, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -37735,11 +38283,11 @@ ] }, { - "depth": 2, - "gas": 1561791, - "gasCost": 3, - "op": "DUP2", "pc": 784, + "op": "DUP2", + "gas": 1545094, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -37761,11 +38309,11 @@ ] }, { - "depth": 2, - "gas": 1561788, - "gasCost": 3, - "op": "SWAP1", "pc": 785, + "op": "SWAP1", + "gas": 1545091, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -37788,11 +38336,11 @@ ] }, { - "depth": 2, - "gas": 1561785, - "gasCost": 2, - "op": "POP", "pc": 786, + "op": "POP", + "gas": 1545088, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -37815,11 +38363,11 @@ ] }, { - "depth": 2, - "gas": 1561783, - "gasCost": 3, - "op": "SWAP2", "pc": 787, + "op": "SWAP2", + "gas": 1545086, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -37841,11 +38389,11 @@ ] }, { - "depth": 2, - "gas": 1561780, - "gasCost": 3, - "op": "SWAP1", "pc": 788, + "op": "SWAP1", + "gas": 1545083, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -37867,11 +38415,11 @@ ] }, { - "depth": 2, - "gas": 1561777, - "gasCost": 2, - "op": "POP", "pc": 789, + "op": "POP", + "gas": 1545080, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -37893,11 +38441,11 @@ ] }, { - "depth": 2, - "gas": 1561775, - "gasCost": 8, - "op": "JUMP", "pc": 790, + "op": "JUMP", + "gas": 1545078, + "gasCost": 8, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -37918,11 +38466,11 @@ ] }, { - "depth": 2, - "gas": 1561767, - "gasCost": 1, - "op": "JUMPDEST", "pc": 1269, + "op": "JUMPDEST", + "gas": 1545070, + "gasCost": 1, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -37942,11 +38490,11 @@ ] }, { - "depth": 2, - "gas": 1561766, - "gasCost": 3, - "op": "SWAP3", "pc": 1270, + "op": "SWAP3", + "gas": 1545069, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -37966,11 +38514,11 @@ ] }, { - "depth": 2, - "gas": 1561763, - "gasCost": 2, - "op": "POP", "pc": 1271, + "op": "POP", + "gas": 1545066, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -37990,11 +38538,11 @@ ] }, { - "depth": 2, - "gas": 1561761, - "gasCost": 3, - "op": "DUP3", "pc": 1272, + "op": "DUP3", + "gas": 1545064, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -38013,11 +38561,11 @@ ] }, { - "depth": 2, - "gas": 1561758, - "gasCost": 3, - "op": "DUP3", "pc": 1273, + "op": "PUSH32", + "gas": 1545061, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -38037,11 +38585,11 @@ ] }, { - "depth": 2, - "gas": 1561755, + "pc": 1306, + "op": "SUB", + "gas": 1545058, "gasCost": 3, - "op": "ADD", - "pc": 1274, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -38058,15 +38606,39 @@ "0x1d6329f1c35ca4bfabb9f5610000000001", "0x0", "0x3e9", - "0x1d6329f1c35ca4bfabb9f5610000000001" + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" ] }, { + "pc": 1307, + "op": "DUP3", + "gas": 1545055, + "gasCost": 3, "depth": 2, - "gas": 1561752, + "stack": [ + "0xa0712d68", + "0xd9", + "0x3e8", + "0x0", + "0x2a2", + "0x3e9", + "0x0", + "0x3e9", + "0x2", + "0x0", + "0x1da", + "0x3e9", + "0x1d6329f1c35ca4bfabb9f5610000000001", + "0x0", + "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc16" + ] + }, + { + "pc": 1308, + "op": "GT", + "gas": 1545052, "gasCost": 3, - "op": "SWAP1", - "pc": 1275, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -38082,15 +38654,16 @@ "0x3e9", "0x1d6329f1c35ca4bfabb9f5610000000001", "0x0", - "0x1d6329f1c35ca4bfabb9f56100000003ea" + "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc16", + "0x1d6329f1c35ca4bfabb9f5610000000001" ] }, { + "pc": 1309, + "op": "ISZERO", + "gas": 1545049, + "gasCost": 3, "depth": 2, - "gas": 1561749, - "gasCost": 2, - "op": "POP", - "pc": 1276, "stack": [ "0xa0712d68", "0xd9", @@ -38105,16 +38678,16 @@ "0x1da", "0x3e9", "0x1d6329f1c35ca4bfabb9f5610000000001", - "0x1d6329f1c35ca4bfabb9f56100000003ea", + "0x0", "0x0" ] }, { - "depth": 2, - "gas": 1561747, + "pc": 1310, + "op": "PUSH2", + "gas": 1545046, "gasCost": 3, - "op": "DUP1", - "pc": 1277, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -38129,15 +38702,16 @@ "0x1da", "0x3e9", "0x1d6329f1c35ca4bfabb9f5610000000001", - "0x1d6329f1c35ca4bfabb9f56100000003ea" + "0x0", + "0x1" ] }, { + "pc": 1313, + "op": "JUMPI", + "gas": 1545043, + "gasCost": 10, "depth": 2, - "gas": 1561744, - "gasCost": 3, - "op": "DUP3", - "pc": 1278, "stack": [ "0xa0712d68", "0xd9", @@ -38152,16 +38726,17 @@ "0x1da", "0x3e9", "0x1d6329f1c35ca4bfabb9f5610000000001", - "0x1d6329f1c35ca4bfabb9f56100000003ea", - "0x1d6329f1c35ca4bfabb9f56100000003ea" + "0x0", + "0x1", + "0x52a" ] }, { + "pc": 1322, + "op": "JUMPDEST", + "gas": 1545033, + "gasCost": 1, "depth": 2, - "gas": 1561741, - "gasCost": 3, - "op": "GT", - "pc": 1279, "stack": [ "0xa0712d68", "0xd9", @@ -38176,17 +38751,15 @@ "0x1da", "0x3e9", "0x1d6329f1c35ca4bfabb9f5610000000001", - "0x1d6329f1c35ca4bfabb9f56100000003ea", - "0x1d6329f1c35ca4bfabb9f56100000003ea", - "0x1d6329f1c35ca4bfabb9f5610000000001" + "0x0" ] }, { - "depth": 2, - "gas": 1561738, + "pc": 1323, + "op": "DUP3", + "gas": 1545032, "gasCost": 3, - "op": "ISZERO", - "pc": 1280, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -38201,16 +38774,15 @@ "0x1da", "0x3e9", "0x1d6329f1c35ca4bfabb9f5610000000001", - "0x1d6329f1c35ca4bfabb9f56100000003ea", "0x0" ] }, { - "depth": 2, - "gas": 1561735, + "pc": 1324, + "op": "DUP3", + "gas": 1545029, "gasCost": 3, - "op": "PUSH2", - "pc": 1281, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -38225,16 +38797,16 @@ "0x1da", "0x3e9", "0x1d6329f1c35ca4bfabb9f5610000000001", - "0x1d6329f1c35ca4bfabb9f56100000003ea", - "0x1" + "0x0", + "0x3e9" ] }, { + "pc": 1325, + "op": "ADD", + "gas": 1545026, + "gasCost": 3, "depth": 2, - "gas": 1561732, - "gasCost": 10, - "op": "JUMPI", - "pc": 1284, "stack": [ "0xa0712d68", "0xd9", @@ -38249,17 +38821,17 @@ "0x1da", "0x3e9", "0x1d6329f1c35ca4bfabb9f5610000000001", - "0x1d6329f1c35ca4bfabb9f56100000003ea", - "0x1", - "0x50d" + "0x0", + "0x3e9", + "0x1d6329f1c35ca4bfabb9f5610000000001" ] }, { + "pc": 1326, + "op": "SWAP1", + "gas": 1545023, + "gasCost": 3, "depth": 2, - "gas": 1561722, - "gasCost": 1, - "op": "JUMPDEST", - "pc": 1293, "stack": [ "0xa0712d68", "0xd9", @@ -38274,15 +38846,40 @@ "0x1da", "0x3e9", "0x1d6329f1c35ca4bfabb9f5610000000001", + "0x0", "0x1d6329f1c35ca4bfabb9f56100000003ea" ] }, { + "pc": 1327, + "op": "POP", + "gas": 1545020, + "gasCost": 2, "depth": 2, - "gas": 1561721, - "gasCost": 3, + "stack": [ + "0xa0712d68", + "0xd9", + "0x3e8", + "0x0", + "0x2a2", + "0x3e9", + "0x0", + "0x3e9", + "0x2", + "0x0", + "0x1da", + "0x3e9", + "0x1d6329f1c35ca4bfabb9f5610000000001", + "0x1d6329f1c35ca4bfabb9f56100000003ea", + "0x0" + ] + }, + { + "pc": 1328, "op": "SWAP3", - "pc": 1294, + "gas": 1545018, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -38301,11 +38898,11 @@ ] }, { - "depth": 2, - "gas": 1561718, - "gasCost": 3, + "pc": 1329, "op": "SWAP2", - "pc": 1295, + "gas": 1545015, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -38324,11 +38921,11 @@ ] }, { - "depth": 2, - "gas": 1561715, - "gasCost": 2, + "pc": 1330, "op": "POP", - "pc": 1296, + "gas": 1545012, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -38347,11 +38944,11 @@ ] }, { - "depth": 2, - "gas": 1561713, - "gasCost": 2, + "pc": 1331, "op": "POP", - "pc": 1297, + "gas": 1545010, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -38369,11 +38966,11 @@ ] }, { - "depth": 2, - "gas": 1561711, - "gasCost": 8, + "pc": 1332, "op": "JUMP", - "pc": 1298, + "gas": 1545008, + "gasCost": 8, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -38390,11 +38987,11 @@ ] }, { - "depth": 2, - "gas": 1561703, - "gasCost": 1, - "op": "JUMPDEST", "pc": 474, + "op": "JUMPDEST", + "gas": 1545000, + "gasCost": 1, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -38410,11 +39007,11 @@ ] }, { - "depth": 2, - "gas": 1561702, - "gasCost": 3, - "op": "SWAP3", "pc": 475, + "op": "SWAP3", + "gas": 1544999, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -38430,11 +39027,11 @@ ] }, { - "depth": 2, - "gas": 1561699, - "gasCost": 2, - "op": "POP", "pc": 476, + "op": "POP", + "gas": 1544996, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -38450,11 +39047,11 @@ ] }, { - "depth": 2, - "gas": 1561697, - "gasCost": 2, - "op": "POP", "pc": 477, + "op": "POP", + "gas": 1544994, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -38469,11 +39066,11 @@ ] }, { - "depth": 2, - "gas": 1561695, - "gasCost": 3, - "op": "DUP2", "pc": 478, + "op": "DUP2", + "gas": 1544992, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -38487,11 +39084,11 @@ ] }, { - "depth": 2, - "gas": 1561692, - "gasCost": 3, - "op": "SWAP1", "pc": 479, + "op": "SWAP1", + "gas": 1544989, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -38506,11 +39103,11 @@ ] }, { - "depth": 2, - "gas": 1561689, - "gasCost": 200, - "op": "SSTORE", "pc": 480, + "op": "SSTORE", + "gas": 1544986, + "gasCost": 100, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -38530,11 +39127,11 @@ } }, { - "depth": 2, - "gas": 1561489, - "gasCost": 2, - "op": "POP", "pc": 481, + "op": "POP", + "gas": 1544886, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -38546,12 +39143,12 @@ "0x1d6329f1c35ca4bfabb9f56100000003ea" ] }, - { - "depth": 2, - "gas": 1561487, - "gasCost": 3, - "op": "PUSH1", + { "pc": 482, + "op": "PUSH1", + "gas": 1544884, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -38563,11 +39160,11 @@ ] }, { - "depth": 2, - "gas": 1561484, - "gasCost": 3, - "op": "SWAP1", "pc": 484, + "op": "SWAP1", + "gas": 1544881, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -38580,11 +39177,11 @@ ] }, { - "depth": 2, - "gas": 1561481, - "gasCost": 2, - "op": "POP", "pc": 485, + "op": "POP", + "gas": 1544878, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -38597,11 +39194,11 @@ ] }, { - "depth": 2, - "gas": 1561479, - "gasCost": 3, - "op": "SWAP2", "pc": 486, + "op": "SWAP2", + "gas": 1544876, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -38613,11 +39210,11 @@ ] }, { - "depth": 2, - "gas": 1561476, - "gasCost": 3, - "op": "SWAP1", "pc": 487, + "op": "SWAP1", + "gas": 1544873, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -38629,11 +39226,11 @@ ] }, { - "depth": 2, - "gas": 1561473, - "gasCost": 2, - "op": "POP", "pc": 488, + "op": "POP", + "gas": 1544870, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -38645,11 +39242,11 @@ ] }, { - "depth": 2, - "gas": 1561471, - "gasCost": 8, - "op": "JUMP", "pc": 489, + "op": "JUMP", + "gas": 1544868, + "gasCost": 8, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -38660,11 +39257,11 @@ ] }, { - "depth": 2, - "gas": 1561463, - "gasCost": 1, - "op": "JUMPDEST", "pc": 674, + "op": "JUMPDEST", + "gas": 1544860, + "gasCost": 1, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -38674,11 +39271,11 @@ ] }, { - "depth": 2, - "gas": 1561462, - "gasCost": 2, - "op": "POP", "pc": 675, + "op": "POP", + "gas": 1544859, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -38688,11 +39285,11 @@ ] }, { - "depth": 2, - "gas": 1561460, - "gasCost": 3, - "op": "PUSH2", "pc": 676, + "op": "PUSH2", + "gas": 1544857, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -38701,11 +39298,11 @@ ] }, { - "depth": 2, - "gas": 1561457, - "gasCost": 3, - "op": "PUSH2", "pc": 679, + "op": "PUSH2", + "gas": 1544854, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -38715,11 +39312,11 @@ ] }, { - "depth": 2, - "gas": 1561454, - "gasCost": 8, - "op": "JUMP", "pc": 682, + "op": "JUMP", + "gas": 1544851, + "gasCost": 8, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -38730,11 +39327,11 @@ ] }, { - "depth": 2, - "gas": 1561446, - "gasCost": 1, - "op": "JUMPDEST", "pc": 297, + "op": "JUMPDEST", + "gas": 1544843, + "gasCost": 1, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -38744,11 +39341,11 @@ ] }, { - "depth": 2, - "gas": 1561445, - "gasCost": 3, - "op": "PUSH1", "pc": 298, + "op": "PUSH1", + "gas": 1544842, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -38758,11 +39355,11 @@ ] }, { - "depth": 2, - "gas": 1561442, - "gasCost": 3, - "op": "DUP1", "pc": 300, + "op": "DUP1", + "gas": 1544839, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -38773,11 +39370,11 @@ ] }, { - "depth": 2, - "gas": 1561439, - "gasCost": 3, - "op": "PUSH1", "pc": 301, + "op": "PUSH1", + "gas": 1544836, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -38789,11 +39386,11 @@ ] }, { - "depth": 2, - "gas": 1561436, - "gasCost": 3, - "op": "MLOAD", "pc": 303, + "op": "MLOAD", + "gas": 1544833, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -38806,11 +39403,11 @@ ] }, { - "depth": 2, - "gas": 1561433, - "gasCost": 3, - "op": "DUP1", "pc": 304, + "op": "DUP1", + "gas": 1544830, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -38823,11 +39420,11 @@ ] }, { - "depth": 2, - "gas": 1561430, - "gasCost": 3, - "op": "PUSH1", "pc": 305, + "op": "PUSH1", + "gas": 1544827, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -38841,11 +39438,11 @@ ] }, { - "depth": 2, - "gas": 1561427, - "gasCost": 3, - "op": "ADD", "pc": 307, + "op": "ADD", + "gas": 1544824, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -38860,11 +39457,11 @@ ] }, { - "depth": 2, - "gas": 1561424, - "gasCost": 3, - "op": "PUSH1", "pc": 308, + "op": "PUSH1", + "gas": 1544821, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -38878,11 +39475,11 @@ ] }, { - "depth": 2, - "gas": 1561421, - "gasCost": 3, - "op": "MSTORE", "pc": 310, + "op": "MSTORE", + "gas": 1544818, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -38897,11 +39494,11 @@ ] }, { - "depth": 2, - "gas": 1561418, - "gasCost": 3, - "op": "DUP1", "pc": 311, + "op": "DUP1", + "gas": 1544815, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -38914,11 +39511,11 @@ ] }, { - "depth": 2, - "gas": 1561415, - "gasCost": 3, - "op": "PUSH1", "pc": 312, + "op": "PUSH1", + "gas": 1544812, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -38932,11 +39529,11 @@ ] }, { - "depth": 2, - "gas": 1561412, - "gasCost": 3, - "op": "DUP2", "pc": 314, + "op": "DUP2", + "gas": 1544809, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -38951,11 +39548,11 @@ ] }, { - "depth": 2, - "gas": 1561409, - "gasCost": 3, - "op": "MSTORE", "pc": 315, + "op": "MSTORE", + "gas": 1544806, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -38971,11 +39568,11 @@ ] }, { - "depth": 2, - "gas": 1561406, - "gasCost": 3, - "op": "PUSH1", "pc": 316, + "op": "PUSH1", + "gas": 1544803, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -38989,11 +39586,11 @@ ] }, { - "depth": 2, - "gas": 1561403, - "gasCost": 3, - "op": "ADD", "pc": 318, + "op": "ADD", + "gas": 1544800, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -39008,11 +39605,11 @@ ] }, { - "depth": 2, - "gas": 1561400, - "gasCost": 3, - "op": "PUSH32", "pc": 319, + "op": "PUSH32", + "gas": 1544797, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -39026,11 +39623,11 @@ ] }, { - "depth": 2, - "gas": 1561397, - "gasCost": 3, - "op": "DUP2", "pc": 352, + "op": "DUP2", + "gas": 1544794, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -39045,11 +39642,11 @@ ] }, { - "depth": 2, - "gas": 1561394, - "gasCost": 3, - "op": "MSTORE", "pc": 353, + "op": "MSTORE", + "gas": 1544791, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -39065,11 +39662,11 @@ ] }, { - "depth": 2, - "gas": 1561391, - "gasCost": 2, - "op": "POP", "pc": 354, + "op": "POP", + "gas": 1544788, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -39083,11 +39680,11 @@ ] }, { - "depth": 2, - "gas": 1561389, - "gasCost": 3, - "op": "SWAP1", "pc": 355, + "op": "SWAP1", + "gas": 1544786, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -39100,11 +39697,11 @@ ] }, { - "depth": 2, - "gas": 1561386, - "gasCost": 2, - "op": "POP", "pc": 356, + "op": "POP", + "gas": 1544783, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -39117,11 +39714,11 @@ ] }, { - "depth": 2, - "gas": 1561384, - "gasCost": 3, - "op": "PUSH1", "pc": 357, + "op": "PUSH1", + "gas": 1544781, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -39133,11 +39730,11 @@ ] }, { - "depth": 2, - "gas": 1561381, - "gasCost": 3, - "op": "DUP2", "pc": 359, + "op": "DUP2", + "gas": 1544778, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -39150,11 +39747,11 @@ ] }, { - "depth": 2, - "gas": 1561378, - "gasCost": 3, - "op": "DUP1", "pc": 360, + "op": "DUP1", + "gas": 1544775, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -39168,11 +39765,11 @@ ] }, { - "depth": 2, - "gas": 1561375, - "gasCost": 3, - "op": "MLOAD", "pc": 361, + "op": "MLOAD", + "gas": 1544772, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -39187,11 +39784,11 @@ ] }, { - "depth": 2, - "gas": 1561372, - "gasCost": 3, - "op": "SWAP1", "pc": 362, + "op": "SWAP1", + "gas": 1544769, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -39206,11 +39803,11 @@ ] }, { - "depth": 2, - "gas": 1561369, - "gasCost": 3, - "op": "PUSH1", "pc": 363, + "op": "PUSH1", + "gas": 1544766, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -39225,11 +39822,11 @@ ] }, { - "depth": 2, - "gas": 1561366, - "gasCost": 3, - "op": "ADD", "pc": 365, + "op": "ADD", + "gas": 1544763, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -39245,11 +39842,11 @@ ] }, { - "depth": 2, - "gas": 1561363, - "gasCost": 36, - "op": "KECCAK256", "pc": 366, + "op": "KECCAK256", + "gas": 1544760, + "gasCost": 36, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -39264,11 +39861,11 @@ ] }, { - "depth": 2, - "gas": 1561327, - "gasCost": 3, - "op": "SWAP1", "pc": 367, + "op": "SWAP1", + "gas": 1544724, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -39282,11 +39879,11 @@ ] }, { - "depth": 2, - "gas": 1561324, - "gasCost": 2, - "op": "POP", "pc": 368, + "op": "POP", + "gas": 1544721, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -39300,11 +39897,11 @@ ] }, { - "depth": 2, - "gas": 1561322, - "gasCost": 3, - "op": "DUP1", "pc": 369, + "op": "DUP1", + "gas": 1544719, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -39317,11 +39914,11 @@ ] }, { - "depth": 2, - "gas": 1561319, - "gasCost": 3, - "op": "SWAP3", "pc": 370, + "op": "SWAP3", + "gas": 1544716, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -39335,11 +39932,11 @@ ] }, { - "depth": 2, - "gas": 1561316, - "gasCost": 2, - "op": "POP", "pc": 371, + "op": "POP", + "gas": 1544713, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -39353,11 +39950,11 @@ ] }, { - "depth": 2, - "gas": 1561314, - "gasCost": 2, - "op": "POP", "pc": 372, + "op": "POP", + "gas": 1544711, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -39370,11 +39967,11 @@ ] }, { - "depth": 2, - "gas": 1561312, - "gasCost": 2, - "op": "POP", "pc": 373, + "op": "POP", + "gas": 1544709, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -39386,11 +39983,11 @@ ] }, { - "depth": 2, - "gas": 1561310, - "gasCost": 3, - "op": "SWAP1", "pc": 374, + "op": "SWAP1", + "gas": 1544707, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -39401,11 +39998,11 @@ ] }, { - "depth": 2, - "gas": 1561307, - "gasCost": 8, - "op": "JUMP", "pc": 375, + "op": "JUMP", + "gas": 1544704, + "gasCost": 8, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -39416,11 +40013,11 @@ ] }, { - "depth": 2, - "gas": 1561299, - "gasCost": 1, - "op": "JUMPDEST", "pc": 683, + "op": "JUMPDEST", + "gas": 1544696, + "gasCost": 1, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -39430,11 +40027,11 @@ ] }, { - "depth": 2, - "gas": 1561298, - "gasCost": 2, - "op": "POP", "pc": 684, + "op": "POP", + "gas": 1544695, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -39444,11 +40041,11 @@ ] }, { - "depth": 2, - "gas": 1561296, - "gasCost": 3, - "op": "PUSH1", "pc": 685, + "op": "PUSH1", + "gas": 1544693, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -39457,11 +40054,11 @@ ] }, { - "depth": 2, - "gas": 1561293, - "gasCost": 3, - "op": "SWAP1", "pc": 687, + "op": "SWAP1", + "gas": 1544690, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -39471,11 +40068,11 @@ ] }, { - "depth": 2, - "gas": 1561290, - "gasCost": 2, - "op": "POP", "pc": 688, + "op": "POP", + "gas": 1544687, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -39485,11 +40082,11 @@ ] }, { - "depth": 2, - "gas": 1561288, - "gasCost": 3, - "op": "SWAP2", "pc": 689, + "op": "SWAP2", + "gas": 1544685, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xd9", @@ -39498,11 +40095,11 @@ ] }, { - "depth": 2, - "gas": 1561285, - "gasCost": 3, - "op": "SWAP1", "pc": 690, + "op": "SWAP1", + "gas": 1544682, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0x1", @@ -39511,11 +40108,11 @@ ] }, { - "depth": 2, - "gas": 1561282, - "gasCost": 2, - "op": "POP", "pc": 691, + "op": "POP", + "gas": 1544679, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0x1", @@ -39524,11 +40121,11 @@ ] }, { - "depth": 2, - "gas": 1561280, - "gasCost": 8, - "op": "JUMP", "pc": 692, + "op": "JUMP", + "gas": 1544677, + "gasCost": 8, + "depth": 2, "stack": [ "0xa0712d68", "0x1", @@ -39536,33 +40133,33 @@ ] }, { - "depth": 2, - "gas": 1561272, - "gasCost": 1, - "op": "JUMPDEST", "pc": 217, + "op": "JUMPDEST", + "gas": 1544669, + "gasCost": 1, + "depth": 2, "stack": [ "0xa0712d68", "0x1" ] }, { - "depth": 2, - "gas": 1561271, - "gasCost": 3, - "op": "PUSH1", "pc": 218, + "op": "PUSH1", + "gas": 1544668, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0x1" ] }, { - "depth": 2, - "gas": 1561268, - "gasCost": 3, - "op": "MLOAD", "pc": 220, + "op": "MLOAD", + "gas": 1544665, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0x1", @@ -39570,11 +40167,11 @@ ] }, { - "depth": 2, - "gas": 1561265, - "gasCost": 3, - "op": "PUSH2", "pc": 221, + "op": "PUSH2", + "gas": 1544662, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0x1", @@ -39582,11 +40179,11 @@ ] }, { - "depth": 2, - "gas": 1561262, - "gasCost": 3, - "op": "SWAP2", "pc": 224, + "op": "SWAP2", + "gas": 1544659, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0x1", @@ -39595,11 +40192,11 @@ ] }, { - "depth": 2, - "gas": 1561259, - "gasCost": 3, - "op": "SWAP1", "pc": 225, + "op": "SWAP1", + "gas": 1544656, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xe6", @@ -39608,11 +40205,11 @@ ] }, { - "depth": 2, - "gas": 1561256, - "gasCost": 3, - "op": "PUSH2", "pc": 226, + "op": "PUSH2", + "gas": 1544653, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xe6", @@ -39621,11 +40218,11 @@ ] }, { - "depth": 2, - "gas": 1561253, - "gasCost": 8, - "op": "JUMP", "pc": 229, + "op": "JUMP", + "gas": 1544650, + "gasCost": 8, + "depth": 2, "stack": [ "0xa0712d68", "0xe6", @@ -39635,11 +40232,11 @@ ] }, { - "depth": 2, - "gas": 1561245, - "gasCost": 1, - "op": "JUMPDEST", "pc": 895, + "op": "JUMPDEST", + "gas": 1544642, + "gasCost": 1, + "depth": 2, "stack": [ "0xa0712d68", "0xe6", @@ -39648,11 +40245,11 @@ ] }, { - "depth": 2, - "gas": 1561244, - "gasCost": 3, - "op": "PUSH1", "pc": 896, + "op": "PUSH1", + "gas": 1544641, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xe6", @@ -39661,11 +40258,11 @@ ] }, { - "depth": 2, - "gas": 1561241, - "gasCost": 3, - "op": "PUSH1", "pc": 898, + "op": "PUSH1", + "gas": 1544638, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xe6", @@ -39675,11 +40272,11 @@ ] }, { - "depth": 2, - "gas": 1561238, - "gasCost": 3, - "op": "DUP3", "pc": 900, + "op": "DUP3", + "gas": 1544635, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xe6", @@ -39690,11 +40287,11 @@ ] }, { - "depth": 2, - "gas": 1561235, - "gasCost": 3, - "op": "ADD", "pc": 901, + "op": "ADD", + "gas": 1544632, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xe6", @@ -39706,11 +40303,11 @@ ] }, { - "depth": 2, - "gas": 1561232, - "gasCost": 3, - "op": "SWAP1", "pc": 902, + "op": "SWAP1", + "gas": 1544629, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xe6", @@ -39721,11 +40318,11 @@ ] }, { - "depth": 2, - "gas": 1561229, - "gasCost": 2, - "op": "POP", "pc": 903, + "op": "POP", + "gas": 1544626, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xe6", @@ -39736,11 +40333,11 @@ ] }, { - "depth": 2, - "gas": 1561227, - "gasCost": 3, - "op": "PUSH2", "pc": 904, + "op": "PUSH2", + "gas": 1544624, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xe6", @@ -39750,11 +40347,11 @@ ] }, { - "depth": 2, - "gas": 1561224, - "gasCost": 3, - "op": "PUSH1", "pc": 907, + "op": "PUSH1", + "gas": 1544621, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xe6", @@ -39765,11 +40362,11 @@ ] }, { - "depth": 2, - "gas": 1561221, - "gasCost": 3, - "op": "DUP4", "pc": 909, + "op": "DUP4", + "gas": 1544618, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xe6", @@ -39781,11 +40378,11 @@ ] }, { - "depth": 2, - "gas": 1561218, - "gasCost": 3, - "op": "ADD", "pc": 910, + "op": "ADD", + "gas": 1544615, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xe6", @@ -39798,11 +40395,11 @@ ] }, { - "depth": 2, - "gas": 1561215, - "gasCost": 3, - "op": "DUP5", "pc": 911, + "op": "DUP5", + "gas": 1544612, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xe6", @@ -39814,11 +40411,11 @@ ] }, { - "depth": 2, - "gas": 1561212, - "gasCost": 3, - "op": "PUSH2", "pc": 912, + "op": "PUSH2", + "gas": 1544609, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xe6", @@ -39831,11 +40428,11 @@ ] }, { - "depth": 2, - "gas": 1561209, - "gasCost": 8, - "op": "JUMP", "pc": 915, + "op": "JUMP", + "gas": 1544606, + "gasCost": 8, + "depth": 2, "stack": [ "0xa0712d68", "0xe6", @@ -39849,11 +40446,11 @@ ] }, { - "depth": 2, - "gas": 1561201, - "gasCost": 1, - "op": "JUMPDEST", "pc": 880, + "op": "JUMPDEST", + "gas": 1544598, + "gasCost": 1, + "depth": 2, "stack": [ "0xa0712d68", "0xe6", @@ -39866,11 +40463,11 @@ ] }, { - "depth": 2, - "gas": 1561200, - "gasCost": 3, - "op": "PUSH2", "pc": 881, + "op": "PUSH2", + "gas": 1544597, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xe6", @@ -39883,11 +40480,11 @@ ] }, { - "depth": 2, - "gas": 1561197, - "gasCost": 3, - "op": "DUP2", "pc": 884, + "op": "DUP2", + "gas": 1544594, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xe6", @@ -39900,12 +40497,12 @@ "0x379" ] }, - { - "depth": 2, - "gas": 1561194, - "gasCost": 3, - "op": "PUSH2", + { "pc": 885, + "op": "PUSH2", + "gas": 1544591, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xe6", @@ -39920,11 +40517,11 @@ ] }, { - "depth": 2, - "gas": 1561191, - "gasCost": 8, - "op": "JUMP", "pc": 888, + "op": "JUMP", + "gas": 1544588, + "gasCost": 8, + "depth": 2, "stack": [ "0xa0712d68", "0xe6", @@ -39940,11 +40537,11 @@ ] }, { - "depth": 2, - "gas": 1561183, - "gasCost": 1, - "op": "JUMPDEST", "pc": 781, + "op": "JUMPDEST", + "gas": 1544580, + "gasCost": 1, + "depth": 2, "stack": [ "0xa0712d68", "0xe6", @@ -39959,11 +40556,11 @@ ] }, { - "depth": 2, - "gas": 1561182, - "gasCost": 3, - "op": "PUSH1", "pc": 782, + "op": "PUSH1", + "gas": 1544579, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xe6", @@ -39978,11 +40575,11 @@ ] }, { - "depth": 2, - "gas": 1561179, - "gasCost": 3, - "op": "DUP2", "pc": 784, + "op": "DUP2", + "gas": 1544576, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xe6", @@ -39998,11 +40595,11 @@ ] }, { - "depth": 2, - "gas": 1561176, - "gasCost": 3, - "op": "SWAP1", "pc": 785, + "op": "SWAP1", + "gas": 1544573, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xe6", @@ -40019,11 +40616,11 @@ ] }, { - "depth": 2, - "gas": 1561173, - "gasCost": 2, - "op": "POP", "pc": 786, + "op": "POP", + "gas": 1544570, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xe6", @@ -40040,11 +40637,11 @@ ] }, { - "depth": 2, - "gas": 1561171, - "gasCost": 3, - "op": "SWAP2", "pc": 787, + "op": "SWAP2", + "gas": 1544568, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xe6", @@ -40060,11 +40657,11 @@ ] }, { - "depth": 2, - "gas": 1561168, - "gasCost": 3, - "op": "SWAP1", "pc": 788, + "op": "SWAP1", + "gas": 1544565, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xe6", @@ -40080,11 +40677,11 @@ ] }, { - "depth": 2, - "gas": 1561165, - "gasCost": 2, - "op": "POP", "pc": 789, + "op": "POP", + "gas": 1544562, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xe6", @@ -40100,11 +40697,11 @@ ] }, { - "depth": 2, - "gas": 1561163, - "gasCost": 8, - "op": "JUMP", "pc": 790, + "op": "JUMP", + "gas": 1544560, + "gasCost": 8, + "depth": 2, "stack": [ "0xa0712d68", "0xe6", @@ -40119,11 +40716,11 @@ ] }, { - "depth": 2, - "gas": 1561155, - "gasCost": 1, - "op": "JUMPDEST", "pc": 889, + "op": "JUMPDEST", + "gas": 1544552, + "gasCost": 1, + "depth": 2, "stack": [ "0xa0712d68", "0xe6", @@ -40137,11 +40734,11 @@ ] }, { - "depth": 2, - "gas": 1561154, - "gasCost": 3, - "op": "DUP3", "pc": 890, + "op": "DUP3", + "gas": 1544551, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xe6", @@ -40155,11 +40752,11 @@ ] }, { - "depth": 2, - "gas": 1561151, - "gasCost": 3, - "op": "MSTORE", "pc": 891, + "op": "MSTORE", + "gas": 1544548, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xe6", @@ -40174,11 +40771,11 @@ ] }, { - "depth": 2, - "gas": 1561148, - "gasCost": 2, - "op": "POP", "pc": 892, + "op": "POP", + "gas": 1544545, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xe6", @@ -40191,11 +40788,11 @@ ] }, { - "depth": 2, - "gas": 1561146, - "gasCost": 2, - "op": "POP", "pc": 893, + "op": "POP", + "gas": 1544543, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xe6", @@ -40207,11 +40804,11 @@ ] }, { - "depth": 2, - "gas": 1561144, - "gasCost": 8, - "op": "JUMP", "pc": 894, + "op": "JUMP", + "gas": 1544541, + "gasCost": 8, + "depth": 2, "stack": [ "0xa0712d68", "0xe6", @@ -40222,11 +40819,11 @@ ] }, { - "depth": 2, - "gas": 1561136, - "gasCost": 1, - "op": "JUMPDEST", "pc": 916, + "op": "JUMPDEST", + "gas": 1544533, + "gasCost": 1, + "depth": 2, "stack": [ "0xa0712d68", "0xe6", @@ -40236,11 +40833,11 @@ ] }, { - "depth": 2, - "gas": 1561135, - "gasCost": 3, - "op": "SWAP3", "pc": 917, + "op": "SWAP3", + "gas": 1544532, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xe6", @@ -40250,11 +40847,11 @@ ] }, { - "depth": 2, - "gas": 1561132, - "gasCost": 3, - "op": "SWAP2", "pc": 918, + "op": "SWAP2", + "gas": 1544529, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xe0", @@ -40264,11 +40861,11 @@ ] }, { - "depth": 2, - "gas": 1561129, - "gasCost": 2, - "op": "POP", "pc": 919, + "op": "POP", + "gas": 1544526, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xe0", @@ -40278,11 +40875,11 @@ ] }, { - "depth": 2, - "gas": 1561127, - "gasCost": 2, - "op": "POP", "pc": 920, + "op": "POP", + "gas": 1544524, + "gasCost": 2, + "depth": 2, "stack": [ "0xa0712d68", "0xe0", @@ -40291,11 +40888,11 @@ ] }, { - "depth": 2, - "gas": 1561125, - "gasCost": 8, - "op": "JUMP", "pc": 921, + "op": "JUMP", + "gas": 1544522, + "gasCost": 8, + "depth": 2, "stack": [ "0xa0712d68", "0xe0", @@ -40303,33 +40900,33 @@ ] }, { - "depth": 2, - "gas": 1561117, - "gasCost": 1, - "op": "JUMPDEST", "pc": 230, + "op": "JUMPDEST", + "gas": 1544514, + "gasCost": 1, + "depth": 2, "stack": [ "0xa0712d68", "0xe0" ] }, { - "depth": 2, - "gas": 1561116, - "gasCost": 3, - "op": "PUSH1", "pc": 231, + "op": "PUSH1", + "gas": 1544513, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xe0" ] }, { - "depth": 2, - "gas": 1561113, - "gasCost": 3, - "op": "MLOAD", "pc": 233, + "op": "MLOAD", + "gas": 1544510, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xe0", @@ -40337,11 +40934,11 @@ ] }, { - "depth": 2, - "gas": 1561110, - "gasCost": 3, - "op": "DUP1", "pc": 234, + "op": "DUP1", + "gas": 1544507, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xe0", @@ -40349,11 +40946,11 @@ ] }, { - "depth": 2, - "gas": 1561107, - "gasCost": 3, - "op": "SWAP2", "pc": 235, + "op": "SWAP2", + "gas": 1544504, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xe0", @@ -40362,11 +40959,11 @@ ] }, { - "depth": 2, - "gas": 1561104, - "gasCost": 3, - "op": "SUB", "pc": 236, + "op": "SUB", + "gas": 1544501, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xc0", @@ -40375,11 +40972,11 @@ ] }, { - "depth": 2, - "gas": 1561101, - "gasCost": 3, - "op": "SWAP1", "pc": 237, + "op": "SWAP1", + "gas": 1544498, + "gasCost": 3, + "depth": 2, "stack": [ "0xa0712d68", "0xc0", @@ -40387,11 +40984,11 @@ ] }, { - "depth": 2, - "gas": 1561098, - "gasCost": 0, - "op": "RETURN", "pc": 238, + "op": "RETURN", + "gas": 1544495, + "gasCost": 0, + "depth": 2, "stack": [ "0xa0712d68", "0x20", @@ -40399,51 +40996,51 @@ ] }, { - "depth": 1, - "gas": 1585993, - "gasCost": 3, + "pc": 1133, "op": "ISZERO", - "pc": 1117, + "gas": 1569121, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xa0712d68", "0xe4", "0x1" ] }, { - "depth": 1, - "gas": 1585990, - "gasCost": 3, + "pc": 1134, "op": "DUP1", - "pc": 1118, + "gas": 1569118, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xa0712d68", "0xe4", "0x0" ] }, { - "depth": 1, - "gas": 1585987, - "gasCost": 3, + "pc": 1135, "op": "ISZERO", - "pc": 1119, + "gas": 1569115, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xa0712d68", "0xe4", "0x0", @@ -40451,17 +41048,17 @@ ] }, { - "depth": 1, - "gas": 1585984, - "gasCost": 3, + "pc": 1136, "op": "PUSH3", - "pc": 1120, + "gas": 1569112, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xa0712d68", "0xe4", "0x0", @@ -40469,109 +41066,109 @@ ] }, { - "depth": 1, - "gas": 1585981, - "gasCost": 10, + "pc": 1140, "op": "JUMPI", - "pc": 1124, + "gas": 1569109, + "gasCost": 10, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xa0712d68", "0xe4", "0x0", "0x1", - "0x46e" + "0x47e" ] }, { - "depth": 1, - "gas": 1585971, - "gasCost": 1, + "pc": 1150, "op": "JUMPDEST", - "pc": 1134, + "gas": 1569099, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xa0712d68", "0xe4", "0x0" ] }, { - "depth": 1, - "gas": 1585970, - "gasCost": 2, + "pc": 1151, "op": "POP", - "pc": 1135, + "gas": 1569098, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xa0712d68", "0xe4", "0x0" ] }, { - "depth": 1, - "gas": 1585968, - "gasCost": 2, + "pc": 1152, "op": "POP", - "pc": 1136, + "gas": 1569096, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xa0712d68", "0xe4" ] }, { - "depth": 1, - "gas": 1585966, - "gasCost": 2, + "pc": 1153, "op": "POP", - "pc": 1137, + "gas": 1569094, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae", "0xa0712d68" ] }, { - "depth": 1, - "gas": 1585964, - "gasCost": 2, + "pc": 1154, "op": "POP", - "pc": 1138, + "gas": 1569092, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x5b659fd8bdc52879d0c3697038537da40832b759" + "0x61a286b8e87e2d31c475d71c85a0020584c44bae" ] }, { - "depth": 1, - "gas": 1585962, - "gasCost": 3, + "pc": 1155, "op": "PUSH1", - "pc": 1139, + "gas": 1569090, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -40580,11 +41177,11 @@ ] }, { - "depth": 1, - "gas": 1585959, - "gasCost": 3, + "pc": 1157, "op": "MLOAD", - "pc": 1141, + "gas": 1569087, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -40594,11 +41191,11 @@ ] }, { - "depth": 1, - "gas": 1585956, - "gasCost": 2, + "pc": 1158, "op": "RETURNDATASIZE", - "pc": 1142, + "gas": 1569084, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -40608,11 +41205,11 @@ ] }, { - "depth": 1, - "gas": 1585954, - "gasCost": 3, + "pc": 1159, "op": "PUSH1", - "pc": 1143, + "gas": 1569082, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -40623,11 +41220,11 @@ ] }, { - "depth": 1, - "gas": 1585951, - "gasCost": 3, + "pc": 1161, "op": "NOT", - "pc": 1145, + "gas": 1569079, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -40639,11 +41236,11 @@ ] }, { - "depth": 1, - "gas": 1585948, - "gasCost": 3, + "pc": 1162, "op": "PUSH1", - "pc": 1146, + "gas": 1569076, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -40655,11 +41252,11 @@ ] }, { - "depth": 1, - "gas": 1585945, - "gasCost": 3, + "pc": 1164, "op": "DUP3", - "pc": 1148, + "gas": 1569073, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -40672,11 +41269,11 @@ ] }, { - "depth": 1, - "gas": 1585942, - "gasCost": 3, + "pc": 1165, "op": "ADD", - "pc": 1149, + "gas": 1569070, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -40690,11 +41287,11 @@ ] }, { - "depth": 1, - "gas": 1585939, - "gasCost": 3, + "pc": 1166, "op": "AND", - "pc": 1150, + "gas": 1569067, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -40707,11 +41304,11 @@ ] }, { - "depth": 1, - "gas": 1585936, - "gasCost": 3, + "pc": 1167, "op": "DUP3", - "pc": 1151, + "gas": 1569064, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -40723,11 +41320,11 @@ ] }, { - "depth": 1, - "gas": 1585933, - "gasCost": 3, + "pc": 1168, "op": "ADD", - "pc": 1152, + "gas": 1569061, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -40740,11 +41337,11 @@ ] }, { - "depth": 1, - "gas": 1585930, - "gasCost": 3, + "pc": 1169, "op": "DUP1", - "pc": 1153, + "gas": 1569058, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -40756,11 +41353,11 @@ ] }, { - "depth": 1, - "gas": 1585927, - "gasCost": 3, + "pc": 1170, "op": "PUSH1", - "pc": 1154, + "gas": 1569055, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -40773,11 +41370,11 @@ ] }, { - "depth": 1, - "gas": 1585924, - "gasCost": 3, + "pc": 1172, "op": "MSTORE", - "pc": 1156, + "gas": 1569052, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -40791,11 +41388,11 @@ ] }, { - "depth": 1, - "gas": 1585921, - "gasCost": 2, + "pc": 1173, "op": "POP", - "pc": 1157, + "gas": 1569049, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -40807,11 +41404,11 @@ ] }, { - "depth": 1, - "gas": 1585919, - "gasCost": 3, + "pc": 1174, "op": "DUP2", - "pc": 1158, + "gas": 1569047, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -40822,11 +41419,11 @@ ] }, { - "depth": 1, - "gas": 1585916, - "gasCost": 3, + "pc": 1175, "op": "ADD", - "pc": 1159, + "gas": 1569044, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -40838,11 +41435,11 @@ ] }, { - "depth": 1, - "gas": 1585913, - "gasCost": 3, + "pc": 1176, "op": "SWAP1", - "pc": 1160, + "gas": 1569041, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -40853,11 +41450,11 @@ ] }, { - "depth": 1, - "gas": 1585910, - "gasCost": 3, + "pc": 1177, "op": "PUSH3", - "pc": 1161, + "gas": 1569038, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -40868,11 +41465,11 @@ ] }, { - "depth": 1, - "gas": 1585907, - "gasCost": 3, + "pc": 1181, "op": "SWAP2", - "pc": 1165, + "gas": 1569035, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -40880,119 +41477,119 @@ "0x0", "0xe0", "0xc0", - "0x494" + "0x4a4" ] }, { - "depth": 1, - "gas": 1585904, - "gasCost": 3, + "pc": 1182, "op": "SWAP1", - "pc": 1166, + "gas": 1569032, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x494", + "0x4a4", "0xc0", "0xe0" ] }, { - "depth": 1, - "gas": 1585901, - "gasCost": 3, + "pc": 1183, "op": "PUSH3", - "pc": 1167, + "gas": 1569029, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x494", + "0x4a4", "0xe0", "0xc0" ] }, { - "depth": 1, - "gas": 1585898, - "gasCost": 8, + "pc": 1187, "op": "JUMP", - "pc": 1171, + "gas": 1569026, + "gasCost": 8, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x494", + "0x4a4", "0xe0", "0xc0", - "0xc69" + "0xcad" ] }, { - "depth": 1, - "gas": 1585890, - "gasCost": 1, + "pc": 3245, "op": "JUMPDEST", - "pc": 3177, + "gas": 1569018, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x494", + "0x4a4", "0xe0", "0xc0" ] }, { - "depth": 1, - "gas": 1585889, - "gasCost": 3, + "pc": 3246, "op": "PUSH1", - "pc": 3178, + "gas": 1569017, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x494", + "0x4a4", "0xe0", "0xc0" ] }, { - "depth": 1, - "gas": 1585886, - "gasCost": 3, + "pc": 3248, "op": "PUSH1", - "pc": 3180, + "gas": 1569014, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x494", + "0x4a4", "0xe0", "0xc0", "0x0" ] }, { - "depth": 1, - "gas": 1585883, - "gasCost": 3, + "pc": 3250, "op": "DUP3", - "pc": 3182, + "gas": 1569011, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x494", + "0x4a4", "0xe0", "0xc0", "0x0", @@ -41000,17 +41597,17 @@ ] }, { - "depth": 1, - "gas": 1585880, - "gasCost": 3, + "pc": 3251, "op": "DUP5", - "pc": 3183, + "gas": 1569008, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x494", + "0x4a4", "0xe0", "0xc0", "0x0", @@ -41019,17 +41616,17 @@ ] }, { - "depth": 1, - "gas": 1585877, - "gasCost": 3, + "pc": 3252, "op": "SUB", - "pc": 3184, + "gas": 1569005, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x494", + "0x4a4", "0xe0", "0xc0", "0x0", @@ -41039,17 +41636,17 @@ ] }, { - "depth": 1, - "gas": 1585874, - "gasCost": 3, + "pc": 3253, "op": "SLT", - "pc": 3185, + "gas": 1569002, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x494", + "0x4a4", "0xe0", "0xc0", "0x0", @@ -41058,17 +41655,17 @@ ] }, { - "depth": 1, - "gas": 1585871, - "gasCost": 3, + "pc": 3254, "op": "ISZERO", - "pc": 3186, + "gas": 1568999, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x494", + "0x4a4", "0xe0", "0xc0", "0x0", @@ -41076,17 +41673,17 @@ ] }, { - "depth": 1, - "gas": 1585868, - "gasCost": 3, + "pc": 3255, "op": "PUSH3", - "pc": 3187, + "gas": 1568996, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x494", + "0x4a4", "0xe0", "0xc0", "0x0", @@ -41094,70 +41691,70 @@ ] }, { - "depth": 1, - "gas": 1585865, - "gasCost": 10, + "pc": 3259, "op": "JUMPI", - "pc": 3191, + "gas": 1568993, + "gasCost": 10, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x494", + "0x4a4", "0xe0", "0xc0", "0x0", "0x1", - "0xc82" + "0xcc6" ] }, { - "depth": 1, - "gas": 1585855, - "gasCost": 1, + "pc": 3270, "op": "JUMPDEST", - "pc": 3202, + "gas": 1568983, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x494", + "0x4a4", "0xe0", "0xc0", "0x0" ] }, { - "depth": 1, - "gas": 1585854, - "gasCost": 3, + "pc": 3271, "op": "PUSH1", - "pc": 3203, + "gas": 1568982, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x494", + "0x4a4", "0xe0", "0xc0", "0x0" ] }, { - "depth": 1, - "gas": 1585851, - "gasCost": 3, + "pc": 3273, "op": "PUSH3", - "pc": 3205, + "gas": 1568979, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x494", + "0x4a4", "0xe0", "0xc0", "0x0", @@ -41165,211 +41762,211 @@ ] }, { - "depth": 1, - "gas": 1585848, - "gasCost": 3, + "pc": 3277, "op": "DUP5", - "pc": 3209, + "gas": 1568976, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x494", + "0x4a4", "0xe0", "0xc0", "0x0", "0x0", - "0xc92" + "0xcd6" ] }, { - "depth": 1, - "gas": 1585845, - "gasCost": 3, + "pc": 3278, "op": "DUP3", - "pc": 3210, + "gas": 1568973, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x494", + "0x4a4", "0xe0", "0xc0", "0x0", "0x0", - "0xc92", + "0xcd6", "0xe0" ] }, { - "depth": 1, - "gas": 1585842, - "gasCost": 3, + "pc": 3279, "op": "DUP6", - "pc": 3211, + "gas": 1568970, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x494", + "0x4a4", "0xe0", "0xc0", "0x0", "0x0", - "0xc92", + "0xcd6", "0xe0", "0x0" ] }, { - "depth": 1, - "gas": 1585839, - "gasCost": 3, + "pc": 3280, "op": "ADD", - "pc": 3212, + "gas": 1568967, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x494", + "0x4a4", "0xe0", "0xc0", "0x0", "0x0", - "0xc92", + "0xcd6", "0xe0", "0x0", "0xc0" ] }, { - "depth": 1, - "gas": 1585836, - "gasCost": 3, + "pc": 3281, "op": "PUSH3", - "pc": 3213, + "gas": 1568964, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x494", + "0x4a4", "0xe0", "0xc0", "0x0", "0x0", - "0xc92", + "0xcd6", "0xe0", "0xc0" ] }, { - "depth": 1, - "gas": 1585833, - "gasCost": 8, + "pc": 3285, "op": "JUMP", - "pc": 3217, + "gas": 1568961, + "gasCost": 8, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x494", + "0x4a4", "0xe0", "0xc0", "0x0", "0x0", - "0xc92", + "0xcd6", "0xe0", "0xc0", - "0xc52" + "0xc96" ] }, { - "depth": 1, - "gas": 1585825, - "gasCost": 1, + "pc": 3222, "op": "JUMPDEST", - "pc": 3154, + "gas": 1568953, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x494", + "0x4a4", "0xe0", "0xc0", "0x0", "0x0", - "0xc92", + "0xcd6", "0xe0", "0xc0" ] }, { - "depth": 1, - "gas": 1585824, - "gasCost": 3, + "pc": 3223, "op": "PUSH1", - "pc": 3155, + "gas": 1568952, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x494", + "0x4a4", "0xe0", "0xc0", "0x0", "0x0", - "0xc92", + "0xcd6", "0xe0", "0xc0" ] }, { - "depth": 1, - "gas": 1585821, - "gasCost": 3, + "pc": 3225, "op": "DUP2", - "pc": 3157, + "gas": 1568949, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x494", + "0x4a4", "0xe0", "0xc0", "0x0", "0x0", - "0xc92", + "0xcd6", "0xe0", "0xc0", "0x0" ] }, { - "depth": 1, - "gas": 1585818, - "gasCost": 3, + "pc": 3226, "op": "MLOAD", - "pc": 3158, + "gas": 1568946, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x494", + "0x4a4", "0xe0", "0xc0", "0x0", "0x0", - "0xc92", + "0xcd6", "0xe0", "0xc0", "0x0", @@ -41377,22 +41974,22 @@ ] }, { - "depth": 1, - "gas": 1585815, - "gasCost": 3, + "pc": 3227, "op": "SWAP1", - "pc": 3159, + "gas": 1568943, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x494", + "0x4a4", "0xe0", "0xc0", "0x0", "0x0", - "0xc92", + "0xcd6", "0xe0", "0xc0", "0x0", @@ -41400,22 +41997,22 @@ ] }, { - "depth": 1, - "gas": 1585812, - "gasCost": 2, + "pc": 3228, "op": "POP", - "pc": 3160, + "gas": 1568940, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x494", + "0x4a4", "0xe0", "0xc0", "0x0", "0x0", - "0xc92", + "0xcd6", "0xe0", "0xc0", "0x1", @@ -41423,721 +42020,721 @@ ] }, { - "depth": 1, - "gas": 1585810, - "gasCost": 3, + "pc": 3229, "op": "PUSH3", - "pc": 3161, + "gas": 1568938, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x494", + "0x4a4", "0xe0", "0xc0", "0x0", "0x0", - "0xc92", + "0xcd6", "0xe0", "0xc0", "0x1" ] }, { - "depth": 1, - "gas": 1585807, - "gasCost": 3, + "pc": 3233, "op": "DUP2", - "pc": 3165, + "gas": 1568935, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x494", + "0x4a4", "0xe0", "0xc0", "0x0", "0x0", - "0xc92", + "0xcd6", "0xe0", "0xc0", "0x1", - "0xc63" + "0xca7" ] }, { - "depth": 1, - "gas": 1585804, - "gasCost": 3, + "pc": 3234, "op": "PUSH3", - "pc": 3166, + "gas": 1568932, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x494", + "0x4a4", "0xe0", "0xc0", "0x0", "0x0", - "0xc92", + "0xcd6", "0xe0", "0xc0", "0x1", - "0xc63", + "0xca7", "0x1" ] }, { - "depth": 1, - "gas": 1585801, - "gasCost": 8, + "pc": 3238, "op": "JUMP", - "pc": 3170, + "gas": 1568929, + "gasCost": 8, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x494", + "0x4a4", "0xe0", "0xc0", "0x0", "0x0", - "0xc92", + "0xcd6", "0xe0", "0xc0", "0x1", - "0xc63", + "0xca7", "0x1", - "0x9d9" + "0x9fb" ] }, { - "depth": 1, - "gas": 1585793, - "gasCost": 1, + "pc": 2555, "op": "JUMPDEST", - "pc": 2521, + "gas": 1568921, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x494", + "0x4a4", "0xe0", "0xc0", "0x0", "0x0", - "0xc92", + "0xcd6", "0xe0", "0xc0", "0x1", - "0xc63", + "0xca7", "0x1" ] }, { - "depth": 1, - "gas": 1585792, - "gasCost": 3, + "pc": 2556, "op": "PUSH3", - "pc": 2522, + "gas": 1568920, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x494", + "0x4a4", "0xe0", "0xc0", "0x0", "0x0", - "0xc92", + "0xcd6", "0xe0", "0xc0", "0x1", - "0xc63", + "0xca7", "0x1" ] }, { - "depth": 1, - "gas": 1585789, - "gasCost": 3, + "pc": 2560, "op": "DUP2", - "pc": 2526, + "gas": 1568917, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x494", + "0x4a4", "0xe0", "0xc0", "0x0", "0x0", - "0xc92", + "0xcd6", "0xe0", "0xc0", "0x1", - "0xc63", + "0xca7", "0x1", - "0x9e4" + "0xa06" ] }, { - "depth": 1, - "gas": 1585786, - "gasCost": 3, + "pc": 2561, "op": "PUSH3", - "pc": 2527, + "gas": 1568914, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x494", + "0x4a4", "0xe0", "0xc0", "0x0", "0x0", - "0xc92", + "0xcd6", "0xe0", "0xc0", "0x1", - "0xc63", + "0xca7", "0x1", - "0x9e4", + "0xa06", "0x1" ] }, { - "depth": 1, - "gas": 1585783, - "gasCost": 8, + "pc": 2565, "op": "JUMP", - "pc": 2531, + "gas": 1568911, + "gasCost": 8, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x494", + "0x4a4", "0xe0", "0xc0", "0x0", "0x0", - "0xc92", + "0xcd6", "0xe0", "0xc0", "0x1", - "0xc63", + "0xca7", "0x1", - "0x9e4", + "0xa06", "0x1", - "0x95a" + "0x97c" ] }, { - "depth": 1, - "gas": 1585775, - "gasCost": 1, + "pc": 2428, "op": "JUMPDEST", - "pc": 2394, + "gas": 1568903, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x494", + "0x4a4", "0xe0", "0xc0", "0x0", "0x0", - "0xc92", + "0xcd6", "0xe0", "0xc0", "0x1", - "0xc63", + "0xca7", "0x1", - "0x9e4", + "0xa06", "0x1" ] }, { - "depth": 1, - "gas": 1585774, - "gasCost": 3, + "pc": 2429, "op": "PUSH1", - "pc": 2395, + "gas": 1568902, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x494", + "0x4a4", "0xe0", "0xc0", "0x0", "0x0", - "0xc92", + "0xcd6", "0xe0", "0xc0", "0x1", - "0xc63", + "0xca7", "0x1", - "0x9e4", + "0xa06", "0x1" ] }, { - "depth": 1, - "gas": 1585771, - "gasCost": 3, + "pc": 2431, "op": "DUP2", - "pc": 2397, + "gas": 1568899, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x494", + "0x4a4", "0xe0", "0xc0", "0x0", "0x0", - "0xc92", + "0xcd6", "0xe0", "0xc0", "0x1", - "0xc63", + "0xca7", "0x1", - "0x9e4", + "0xa06", "0x1", "0x0" ] }, { - "depth": 1, - "gas": 1585768, - "gasCost": 3, + "pc": 2432, "op": "SWAP1", - "pc": 2398, + "gas": 1568896, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x494", + "0x4a4", "0xe0", "0xc0", "0x0", "0x0", - "0xc92", + "0xcd6", "0xe0", "0xc0", "0x1", - "0xc63", + "0xca7", "0x1", - "0x9e4", + "0xa06", "0x1", "0x0", "0x1" ] }, { - "depth": 1, - "gas": 1585765, - "gasCost": 2, + "pc": 2433, "op": "POP", - "pc": 2399, + "gas": 1568893, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x494", + "0x4a4", "0xe0", "0xc0", "0x0", "0x0", - "0xc92", + "0xcd6", "0xe0", "0xc0", "0x1", - "0xc63", + "0xca7", "0x1", - "0x9e4", + "0xa06", "0x1", "0x1", "0x0" ] }, { - "depth": 1, - "gas": 1585763, - "gasCost": 3, + "pc": 2434, "op": "SWAP2", - "pc": 2400, + "gas": 1568891, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x494", + "0x4a4", "0xe0", "0xc0", "0x0", "0x0", - "0xc92", + "0xcd6", "0xe0", "0xc0", "0x1", - "0xc63", + "0xca7", "0x1", - "0x9e4", + "0xa06", "0x1", "0x1" ] }, { - "depth": 1, - "gas": 1585760, - "gasCost": 3, + "pc": 2435, "op": "SWAP1", - "pc": 2401, + "gas": 1568888, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x494", + "0x4a4", "0xe0", "0xc0", "0x0", "0x0", - "0xc92", + "0xcd6", "0xe0", "0xc0", "0x1", - "0xc63", + "0xca7", "0x1", "0x1", "0x1", - "0x9e4" + "0xa06" ] }, { - "depth": 1, - "gas": 1585757, - "gasCost": 2, + "pc": 2436, "op": "POP", - "pc": 2402, + "gas": 1568885, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x494", + "0x4a4", "0xe0", "0xc0", "0x0", "0x0", - "0xc92", + "0xcd6", "0xe0", "0xc0", "0x1", - "0xc63", + "0xca7", "0x1", "0x1", - "0x9e4", + "0xa06", "0x1" ] }, { - "depth": 1, - "gas": 1585755, - "gasCost": 8, + "pc": 2437, "op": "JUMP", - "pc": 2403, + "gas": 1568883, + "gasCost": 8, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x494", + "0x4a4", "0xe0", "0xc0", "0x0", "0x0", - "0xc92", + "0xcd6", "0xe0", "0xc0", "0x1", - "0xc63", + "0xca7", "0x1", "0x1", - "0x9e4" + "0xa06" ] }, { - "depth": 1, - "gas": 1585747, - "gasCost": 1, + "pc": 2566, "op": "JUMPDEST", - "pc": 2532, + "gas": 1568875, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x494", + "0x4a4", "0xe0", "0xc0", "0x0", "0x0", - "0xc92", + "0xcd6", "0xe0", "0xc0", "0x1", - "0xc63", + "0xca7", "0x1", "0x1" ] }, { - "depth": 1, - "gas": 1585746, - "gasCost": 3, + "pc": 2567, "op": "DUP2", - "pc": 2533, + "gas": 1568874, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x494", + "0x4a4", "0xe0", "0xc0", "0x0", "0x0", - "0xc92", + "0xcd6", "0xe0", "0xc0", "0x1", - "0xc63", + "0xca7", "0x1", "0x1" ] }, { - "depth": 1, - "gas": 1585743, - "gasCost": 3, + "pc": 2568, "op": "EQ", - "pc": 2534, + "gas": 1568871, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x494", + "0x4a4", "0xe0", "0xc0", "0x0", "0x0", - "0xc92", + "0xcd6", "0xe0", "0xc0", "0x1", - "0xc63", + "0xca7", "0x1", "0x1", "0x1" ] }, { - "depth": 1, - "gas": 1585740, - "gasCost": 3, + "pc": 2569, "op": "PUSH3", - "pc": 2535, + "gas": 1568868, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x494", + "0x4a4", "0xe0", "0xc0", "0x0", "0x0", - "0xc92", + "0xcd6", "0xe0", "0xc0", "0x1", - "0xc63", + "0xca7", "0x1", "0x1" ] }, { - "depth": 1, - "gas": 1585737, - "gasCost": 10, + "pc": 2573, "op": "JUMPI", - "pc": 2539, + "gas": 1568865, + "gasCost": 10, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x494", + "0x4a4", "0xe0", "0xc0", "0x0", "0x0", - "0xc92", + "0xcd6", "0xe0", "0xc0", "0x1", - "0xc63", + "0xca7", "0x1", "0x1", - "0x9f0" + "0xa12" ] }, { - "depth": 1, - "gas": 1585727, - "gasCost": 1, + "pc": 2578, "op": "JUMPDEST", - "pc": 2544, + "gas": 1568855, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x494", + "0x4a4", "0xe0", "0xc0", "0x0", "0x0", - "0xc92", + "0xcd6", "0xe0", "0xc0", "0x1", - "0xc63", + "0xca7", "0x1" ] }, { - "depth": 1, - "gas": 1585726, - "gasCost": 2, + "pc": 2579, "op": "POP", - "pc": 2545, + "gas": 1568854, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x494", + "0x4a4", "0xe0", "0xc0", "0x0", "0x0", - "0xc92", + "0xcd6", "0xe0", "0xc0", "0x1", - "0xc63", + "0xca7", "0x1" ] }, { - "depth": 1, - "gas": 1585724, - "gasCost": 8, + "pc": 2580, "op": "JUMP", - "pc": 2546, + "gas": 1568852, + "gasCost": 8, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x494", + "0x4a4", "0xe0", "0xc0", "0x0", "0x0", - "0xc92", + "0xcd6", "0xe0", "0xc0", "0x1", - "0xc63" + "0xca7" ] }, { - "depth": 1, - "gas": 1585716, - "gasCost": 1, + "pc": 3239, "op": "JUMPDEST", - "pc": 3171, + "gas": 1568844, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x494", + "0x4a4", "0xe0", "0xc0", "0x0", "0x0", - "0xc92", + "0xcd6", "0xe0", "0xc0", "0x1" ] }, { - "depth": 1, - "gas": 1585715, - "gasCost": 3, + "pc": 3240, "op": "SWAP3", - "pc": 3172, + "gas": 1568843, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x494", + "0x4a4", "0xe0", "0xc0", "0x0", "0x0", - "0xc92", + "0xcd6", "0xe0", "0xc0", "0x1" ] }, { - "depth": 1, - "gas": 1585712, - "gasCost": 3, + "pc": 3241, "op": "SWAP2", - "pc": 3173, + "gas": 1568840, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x494", + "0x4a4", "0xe0", "0xc0", "0x0", @@ -42145,84 +42742,84 @@ "0x1", "0xe0", "0xc0", - "0xc92" + "0xcd6" ] }, { - "depth": 1, - "gas": 1585709, - "gasCost": 2, + "pc": 3242, "op": "POP", - "pc": 3174, + "gas": 1568837, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x494", + "0x4a4", "0xe0", "0xc0", "0x0", "0x0", "0x1", - "0xc92", + "0xcd6", "0xc0", "0xe0" ] }, { - "depth": 1, - "gas": 1585707, - "gasCost": 2, + "pc": 3243, "op": "POP", - "pc": 3175, + "gas": 1568835, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x494", + "0x4a4", "0xe0", "0xc0", "0x0", "0x0", "0x1", - "0xc92", + "0xcd6", "0xc0" ] }, { - "depth": 1, - "gas": 1585705, - "gasCost": 8, + "pc": 3244, "op": "JUMP", - "pc": 3176, + "gas": 1568833, + "gasCost": 8, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x494", + "0x4a4", "0xe0", "0xc0", "0x0", "0x0", "0x1", - "0xc92" + "0xcd6" ] }, { - "depth": 1, - "gas": 1585697, - "gasCost": 1, + "pc": 3286, "op": "JUMPDEST", - "pc": 3218, + "gas": 1568825, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x494", + "0x4a4", "0xe0", "0xc0", "0x0", @@ -42231,17 +42828,17 @@ ] }, { - "depth": 1, - "gas": 1585696, - "gasCost": 3, + "pc": 3287, "op": "SWAP2", - "pc": 3219, + "gas": 1568824, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x494", + "0x4a4", "0xe0", "0xc0", "0x0", @@ -42250,17 +42847,17 @@ ] }, { - "depth": 1, - "gas": 1585693, - "gasCost": 2, + "pc": 3288, "op": "POP", - "pc": 3220, + "gas": 1568821, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x494", + "0x4a4", "0xe0", "0xc0", "0x1", @@ -42269,17 +42866,17 @@ ] }, { - "depth": 1, - "gas": 1585691, - "gasCost": 2, + "pc": 3289, "op": "POP", - "pc": 3221, + "gas": 1568819, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x494", + "0x4a4", "0xe0", "0xc0", "0x1", @@ -42287,28 +42884,28 @@ ] }, { - "depth": 1, - "gas": 1585689, - "gasCost": 3, + "pc": 3290, "op": "SWAP3", - "pc": 3222, + "gas": 1568817, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", - "0x494", + "0x4a4", "0xe0", "0xc0", "0x1" ] }, { - "depth": 1, - "gas": 1585686, - "gasCost": 3, + "pc": 3291, "op": "SWAP2", - "pc": 3223, + "gas": 1568814, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -42317,63 +42914,63 @@ "0x1", "0xe0", "0xc0", - "0x494" + "0x4a4" ] }, { - "depth": 1, - "gas": 1585683, - "gasCost": 2, + "pc": 3292, "op": "POP", - "pc": 3224, + "gas": 1568811, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", "0x1", - "0x494", + "0x4a4", "0xc0", "0xe0" ] }, { - "depth": 1, - "gas": 1585681, - "gasCost": 2, + "pc": 3293, "op": "POP", - "pc": 3225, + "gas": 1568809, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", "0x1", - "0x494", + "0x4a4", "0xc0" ] }, { - "depth": 1, - "gas": 1585679, - "gasCost": 8, + "pc": 3294, "op": "JUMP", - "pc": 3226, + "gas": 1568807, + "gasCost": 8, + "depth": 1, "stack": [ "0x3aa18088", "0x149", "0x3e8", "0x0", "0x1", - "0x494" + "0x4a4" ] }, { - "depth": 1, - "gas": 1585671, - "gasCost": 1, + "pc": 1188, "op": "JUMPDEST", - "pc": 1172, + "gas": 1568799, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -42383,11 +42980,11 @@ ] }, { - "depth": 1, - "gas": 1585670, - "gasCost": 2, + "pc": 1189, "op": "POP", - "pc": 1173, + "gas": 1568798, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -42397,11 +42994,11 @@ ] }, { - "depth": 1, - "gas": 1585668, - "gasCost": 3, + "pc": 1190, "op": "PUSH1", - "pc": 1174, + "gas": 1568796, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -42410,11 +43007,11 @@ ] }, { - "depth": 1, - "gas": 1585665, - "gasCost": 3, + "pc": 1192, "op": "SWAP1", - "pc": 1176, + "gas": 1568793, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -42424,11 +43021,11 @@ ] }, { - "depth": 1, - "gas": 1585662, - "gasCost": 2, + "pc": 1193, "op": "POP", - "pc": 1177, + "gas": 1568790, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -42438,11 +43035,11 @@ ] }, { - "depth": 1, - "gas": 1585660, - "gasCost": 3, + "pc": 1194, "op": "SWAP2", - "pc": 1178, + "gas": 1568788, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x149", @@ -42451,11 +43048,11 @@ ] }, { - "depth": 1, - "gas": 1585657, - "gasCost": 3, + "pc": 1195, "op": "SWAP1", - "pc": 1179, + "gas": 1568785, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x1", @@ -42464,11 +43061,11 @@ ] }, { - "depth": 1, - "gas": 1585654, - "gasCost": 2, + "pc": 1196, "op": "POP", - "pc": 1180, + "gas": 1568782, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x1", @@ -42477,11 +43074,11 @@ ] }, { - "depth": 1, - "gas": 1585652, - "gasCost": 8, + "pc": 1197, "op": "JUMP", - "pc": 1181, + "gas": 1568780, + "gasCost": 8, + "depth": 1, "stack": [ "0x3aa18088", "0x1", @@ -42489,33 +43086,33 @@ ] }, { - "depth": 1, - "gas": 1585644, - "gasCost": 1, - "op": "JUMPDEST", "pc": 329, + "op": "JUMPDEST", + "gas": 1568772, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x1" ] }, { - "depth": 1, - "gas": 1585643, - "gasCost": 3, - "op": "PUSH1", "pc": 330, + "op": "PUSH1", + "gas": 1568771, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x1" ] }, { - "depth": 1, - "gas": 1585640, - "gasCost": 3, - "op": "MLOAD", "pc": 332, + "op": "MLOAD", + "gas": 1568768, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x1", @@ -42523,11 +43120,11 @@ ] }, { - "depth": 1, - "gas": 1585637, - "gasCost": 3, - "op": "PUSH3", "pc": 333, + "op": "PUSH3", + "gas": 1568765, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x1", @@ -42535,11 +43132,11 @@ ] }, { - "depth": 1, - "gas": 1585634, - "gasCost": 3, - "op": "SWAP2", "pc": 337, + "op": "SWAP2", + "gas": 1568762, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x1", @@ -42548,11 +43145,11 @@ ] }, { - "depth": 1, - "gas": 1585631, - "gasCost": 3, - "op": "SWAP1", "pc": 338, + "op": "SWAP1", + "gas": 1568759, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x158", @@ -42561,11 +43158,11 @@ ] }, { - "depth": 1, - "gas": 1585628, - "gasCost": 3, - "op": "PUSH3", "pc": 339, + "op": "PUSH3", + "gas": 1568756, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x158", @@ -42574,25 +43171,25 @@ ] }, { - "depth": 1, - "gas": 1585625, - "gasCost": 8, - "op": "JUMP", "pc": 343, + "op": "JUMP", + "gas": 1568753, + "gasCost": 8, + "depth": 1, "stack": [ "0x3aa18088", "0x158", "0x1", "0xe0", - "0x975" + "0x997" ] }, { - "depth": 1, - "gas": 1585617, - "gasCost": 1, + "pc": 2455, "op": "JUMPDEST", - "pc": 2421, + "gas": 1568745, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x158", @@ -42601,11 +43198,11 @@ ] }, { - "depth": 1, - "gas": 1585616, - "gasCost": 3, + "pc": 2456, "op": "PUSH1", - "pc": 2422, + "gas": 1568744, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x158", @@ -42614,11 +43211,11 @@ ] }, { - "depth": 1, - "gas": 1585613, - "gasCost": 3, + "pc": 2458, "op": "PUSH1", - "pc": 2424, + "gas": 1568741, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x158", @@ -42628,11 +43225,11 @@ ] }, { - "depth": 1, - "gas": 1585610, - "gasCost": 3, + "pc": 2460, "op": "DUP3", - "pc": 2426, + "gas": 1568738, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x158", @@ -42643,11 +43240,11 @@ ] }, { - "depth": 1, - "gas": 1585607, - "gasCost": 3, + "pc": 2461, "op": "ADD", - "pc": 2427, + "gas": 1568735, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x158", @@ -42659,11 +43256,11 @@ ] }, { - "depth": 1, - "gas": 1585604, - "gasCost": 3, + "pc": 2462, "op": "SWAP1", - "pc": 2428, + "gas": 1568732, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x158", @@ -42674,11 +43271,11 @@ ] }, { - "depth": 1, - "gas": 1585601, - "gasCost": 2, + "pc": 2463, "op": "POP", - "pc": 2429, + "gas": 1568729, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x158", @@ -42689,11 +43286,11 @@ ] }, { - "depth": 1, - "gas": 1585599, - "gasCost": 3, + "pc": 2464, "op": "PUSH3", - "pc": 2430, + "gas": 1568727, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x158", @@ -42703,423 +43300,423 @@ ] }, { - "depth": 1, - "gas": 1585596, - "gasCost": 3, + "pc": 2468, "op": "PUSH1", - "pc": 2434, + "gas": 1568724, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x158", "0x1", "0xe0", "0x100", - "0x98c" + "0x9ae" ] }, { - "depth": 1, - "gas": 1585593, - "gasCost": 3, + "pc": 2470, "op": "DUP4", - "pc": 2436, + "gas": 1568721, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x158", "0x1", "0xe0", "0x100", - "0x98c", + "0x9ae", "0x0" ] }, { - "depth": 1, - "gas": 1585590, - "gasCost": 3, + "pc": 2471, "op": "ADD", - "pc": 2437, + "gas": 1568718, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x158", "0x1", "0xe0", "0x100", - "0x98c", + "0x9ae", "0x0", "0xe0" ] }, { - "depth": 1, - "gas": 1585587, - "gasCost": 3, + "pc": 2472, "op": "DUP5", - "pc": 2438, + "gas": 1568715, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x158", "0x1", "0xe0", "0x100", - "0x98c", + "0x9ae", "0xe0" ] }, { - "depth": 1, - "gas": 1585584, - "gasCost": 3, + "pc": 2473, "op": "PUSH3", - "pc": 2439, + "gas": 1568712, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x158", "0x1", "0xe0", "0x100", - "0x98c", + "0x9ae", "0xe0", "0x1" ] }, { - "depth": 1, - "gas": 1585581, - "gasCost": 8, + "pc": 2477, "op": "JUMP", - "pc": 2443, + "gas": 1568709, + "gasCost": 8, + "depth": 1, "stack": [ "0x3aa18088", "0x158", "0x1", "0xe0", "0x100", - "0x98c", + "0x9ae", "0xe0", "0x1", - "0x964" + "0x986" ] }, { - "depth": 1, - "gas": 1585573, - "gasCost": 1, + "pc": 2438, "op": "JUMPDEST", - "pc": 2404, + "gas": 1568701, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x158", "0x1", "0xe0", "0x100", - "0x98c", + "0x9ae", "0xe0", "0x1" ] }, { - "depth": 1, - "gas": 1585572, - "gasCost": 3, + "pc": 2439, "op": "PUSH3", - "pc": 2405, + "gas": 1568700, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x158", "0x1", "0xe0", "0x100", - "0x98c", + "0x9ae", "0xe0", "0x1" ] }, { - "depth": 1, - "gas": 1585569, - "gasCost": 3, + "pc": 2443, "op": "DUP2", - "pc": 2409, + "gas": 1568697, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x158", "0x1", "0xe0", "0x100", - "0x98c", + "0x9ae", "0xe0", "0x1", - "0x96f" + "0x991" ] }, { - "depth": 1, - "gas": 1585566, - "gasCost": 3, + "pc": 2444, "op": "PUSH3", - "pc": 2410, + "gas": 1568694, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x158", "0x1", "0xe0", "0x100", - "0x98c", + "0x9ae", "0xe0", "0x1", - "0x96f", + "0x991", "0x1" ] }, { - "depth": 1, - "gas": 1585563, - "gasCost": 8, + "pc": 2448, "op": "JUMP", - "pc": 2414, + "gas": 1568691, + "gasCost": 8, + "depth": 1, "stack": [ "0x3aa18088", "0x158", "0x1", "0xe0", "0x100", - "0x98c", + "0x9ae", "0xe0", "0x1", - "0x96f", + "0x991", "0x1", - "0x95a" + "0x97c" ] }, { - "depth": 1, - "gas": 1585555, - "gasCost": 1, + "pc": 2428, "op": "JUMPDEST", - "pc": 2394, + "gas": 1568683, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x158", "0x1", "0xe0", "0x100", - "0x98c", + "0x9ae", "0xe0", "0x1", - "0x96f", + "0x991", "0x1" ] }, { - "depth": 1, - "gas": 1585554, - "gasCost": 3, + "pc": 2429, "op": "PUSH1", - "pc": 2395, + "gas": 1568682, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x158", "0x1", "0xe0", "0x100", - "0x98c", + "0x9ae", "0xe0", "0x1", - "0x96f", + "0x991", "0x1" ] }, { - "depth": 1, - "gas": 1585551, - "gasCost": 3, + "pc": 2431, "op": "DUP2", - "pc": 2397, + "gas": 1568679, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x158", "0x1", "0xe0", "0x100", - "0x98c", + "0x9ae", "0xe0", "0x1", - "0x96f", + "0x991", "0x1", "0x0" ] }, { - "depth": 1, - "gas": 1585548, - "gasCost": 3, + "pc": 2432, "op": "SWAP1", - "pc": 2398, + "gas": 1568676, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x158", "0x1", "0xe0", "0x100", - "0x98c", + "0x9ae", "0xe0", "0x1", - "0x96f", + "0x991", "0x1", "0x0", "0x1" ] }, { - "depth": 1, - "gas": 1585545, - "gasCost": 2, + "pc": 2433, "op": "POP", - "pc": 2399, + "gas": 1568673, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x158", "0x1", "0xe0", "0x100", - "0x98c", + "0x9ae", "0xe0", "0x1", - "0x96f", + "0x991", "0x1", "0x1", "0x0" ] }, { - "depth": 1, - "gas": 1585543, - "gasCost": 3, + "pc": 2434, "op": "SWAP2", - "pc": 2400, + "gas": 1568671, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x158", "0x1", "0xe0", "0x100", - "0x98c", + "0x9ae", "0xe0", "0x1", - "0x96f", + "0x991", "0x1", "0x1" ] }, { - "depth": 1, - "gas": 1585540, - "gasCost": 3, + "pc": 2435, "op": "SWAP1", - "pc": 2401, + "gas": 1568668, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x158", "0x1", "0xe0", "0x100", - "0x98c", + "0x9ae", "0xe0", "0x1", "0x1", "0x1", - "0x96f" + "0x991" ] }, { - "depth": 1, - "gas": 1585537, - "gasCost": 2, + "pc": 2436, "op": "POP", - "pc": 2402, + "gas": 1568665, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x158", "0x1", "0xe0", "0x100", - "0x98c", + "0x9ae", "0xe0", "0x1", "0x1", - "0x96f", + "0x991", "0x1" ] }, { - "depth": 1, - "gas": 1585535, - "gasCost": 8, + "pc": 2437, "op": "JUMP", - "pc": 2403, + "gas": 1568663, + "gasCost": 8, + "depth": 1, "stack": [ "0x3aa18088", "0x158", "0x1", "0xe0", "0x100", - "0x98c", + "0x9ae", "0xe0", "0x1", "0x1", - "0x96f" + "0x991" ] }, { - "depth": 1, - "gas": 1585527, - "gasCost": 1, + "pc": 2449, "op": "JUMPDEST", - "pc": 2415, + "gas": 1568655, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x158", "0x1", "0xe0", "0x100", - "0x98c", + "0x9ae", "0xe0", "0x1", "0x1" ] }, { - "depth": 1, - "gas": 1585526, - "gasCost": 3, + "pc": 2450, "op": "DUP3", - "pc": 2416, + "gas": 1568654, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x158", "0x1", "0xe0", "0x100", - "0x98c", + "0x9ae", "0xe0", "0x1", "0x1" ] }, { - "depth": 1, - "gas": 1585523, - "gasCost": 3, + "pc": 2451, "op": "MSTORE", - "pc": 2417, + "gas": 1568651, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x158", "0x1", "0xe0", "0x100", - "0x98c", + "0x9ae", "0xe0", "0x1", "0x1", @@ -43127,59 +43724,59 @@ ] }, { - "depth": 1, - "gas": 1585520, - "gasCost": 2, + "pc": 2452, "op": "POP", - "pc": 2418, + "gas": 1568648, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x158", "0x1", "0xe0", "0x100", - "0x98c", + "0x9ae", "0xe0", "0x1" ] }, { - "depth": 1, - "gas": 1585518, - "gasCost": 2, + "pc": 2453, "op": "POP", - "pc": 2419, + "gas": 1568646, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x158", "0x1", "0xe0", "0x100", - "0x98c", + "0x9ae", "0xe0" ] }, { - "depth": 1, - "gas": 1585516, - "gasCost": 8, + "pc": 2454, "op": "JUMP", - "pc": 2420, + "gas": 1568644, + "gasCost": 8, + "depth": 1, "stack": [ "0x3aa18088", "0x158", "0x1", "0xe0", "0x100", - "0x98c" + "0x9ae" ] }, { - "depth": 1, - "gas": 1585508, - "gasCost": 1, + "pc": 2478, "op": "JUMPDEST", - "pc": 2444, + "gas": 1568636, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x158", @@ -43189,11 +43786,11 @@ ] }, { - "depth": 1, - "gas": 1585507, - "gasCost": 3, + "pc": 2479, "op": "SWAP3", - "pc": 2445, + "gas": 1568635, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x158", @@ -43203,11 +43800,11 @@ ] }, { - "depth": 1, - "gas": 1585504, - "gasCost": 3, + "pc": 2480, "op": "SWAP2", - "pc": 2446, + "gas": 1568632, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x100", @@ -43217,11 +43814,11 @@ ] }, { - "depth": 1, - "gas": 1585501, - "gasCost": 2, + "pc": 2481, "op": "POP", - "pc": 2447, + "gas": 1568629, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x100", @@ -43231,11 +43828,11 @@ ] }, { - "depth": 1, - "gas": 1585499, - "gasCost": 2, + "pc": 2482, "op": "POP", - "pc": 2448, + "gas": 1568627, + "gasCost": 2, + "depth": 1, "stack": [ "0x3aa18088", "0x100", @@ -43244,11 +43841,11 @@ ] }, { - "depth": 1, - "gas": 1585497, - "gasCost": 8, + "pc": 2483, "op": "JUMP", - "pc": 2449, + "gas": 1568625, + "gasCost": 8, + "depth": 1, "stack": [ "0x3aa18088", "0x100", @@ -43256,33 +43853,33 @@ ] }, { - "depth": 1, - "gas": 1585489, - "gasCost": 1, - "op": "JUMPDEST", "pc": 344, + "op": "JUMPDEST", + "gas": 1568617, + "gasCost": 1, + "depth": 1, "stack": [ "0x3aa18088", "0x100" ] }, { - "depth": 1, - "gas": 1585488, - "gasCost": 3, - "op": "PUSH1", "pc": 345, + "op": "PUSH1", + "gas": 1568616, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x100" ] }, { - "depth": 1, - "gas": 1585485, - "gasCost": 3, - "op": "MLOAD", "pc": 347, + "op": "MLOAD", + "gas": 1568613, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x100", @@ -43290,11 +43887,11 @@ ] }, { - "depth": 1, - "gas": 1585482, - "gasCost": 3, - "op": "DUP1", "pc": 348, + "op": "DUP1", + "gas": 1568610, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x100", @@ -43302,11 +43899,11 @@ ] }, { - "depth": 1, - "gas": 1585479, - "gasCost": 3, - "op": "SWAP2", "pc": 349, + "op": "SWAP2", + "gas": 1568607, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0x100", @@ -43315,11 +43912,11 @@ ] }, { - "depth": 1, - "gas": 1585476, - "gasCost": 3, - "op": "SUB", "pc": 350, + "op": "SUB", + "gas": 1568604, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0xe0", @@ -43328,11 +43925,11 @@ ] }, { - "depth": 1, - "gas": 1585473, - "gasCost": 3, - "op": "SWAP1", "pc": 351, + "op": "SWAP1", + "gas": 1568601, + "gasCost": 3, + "depth": 1, "stack": [ "0x3aa18088", "0xe0", @@ -43340,11 +43937,11 @@ ] }, { - "depth": 1, - "gas": 1585470, - "gasCost": 0, - "op": "RETURN", "pc": 352, + "op": "RETURN", + "gas": 1568598, + "gasCost": 0, + "depth": 1, "stack": [ "0x3aa18088", "0x20", diff --git a/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint2.prestateDiffTracer.json b/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint2.prestateDiffTracer.json index 18c76fb6f..289c3dbdf 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint2.prestateDiffTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint2.prestateDiffTracer.json @@ -1,10 +1,11 @@ { "post": { "0x0000000000000000000000000000000000000000": { - "balance": "0xbfad67940" + "balance": "0x1beb69b" }, - "0x5b659fd8bdc52879d0c3697038537da40832b759": { - "code": "0x608060405234801561001057600080fd5b50600436106100625760003560e01c80631c717069146100675780631c93908c1461008557806392954362146100b5578063a0712d68146100bf578063b69ef8a8146100ef578063c9353cb51461010d575b600080fd5b61006f610129565b60405161007c91906102ed565b60405180910390f35b61009f600480360381019061009a9190610343565b610178565b6040516100ac919061037f565b60405180910390f35b6100bd6101ea565b005b6100d960048036038101906100d49190610343565b610225565b6040516100e6919061037f565b60405180910390f35b6100f76102b5565b604051610104919061037f565b60405180910390f35b610127600480360381019061012291906103f8565b6102bb565b005b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516101c09190610482565b60405180910390a281600260008282546101da91906104df565b9250508190555060029050919050565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161021c9061055f565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405161026d91906105cb565b60405180910390a28160008082825461028691906104df565b925050819055506102a260018361029d91906104df565b610178565b506102ab610129565b5060019050919050565b60005481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b6000819050919050565b6102e7816102d4565b82525050565b600060208201905061030260008301846102de565b92915050565b600080fd5b6000819050919050565b6103208161030d565b811461032b57600080fd5b50565b60008135905061033d81610317565b92915050565b60006020828403121561035957610358610308565b5b60006103678482850161032e565b91505092915050565b6103798161030d565b82525050565b60006020820190506103946000830184610370565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006103c58261039a565b9050919050565b6103d5816103ba565b81146103e057600080fd5b50565b6000813590506103f2816103cc565b92915050565b60006020828403121561040e5761040d610308565b5b600061041c848285016103e3565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600061046c600e83610425565b915061047782610436565b602082019050919050565b60006040820190506104976000830184610370565b81810360208301526104a88161045f565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006104ea8261030d565b91506104f58361030d565b925082820190508082111561050d5761050c6104b0565b5b92915050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b6000610549601783610425565b915061055482610513565b602082019050919050565b600060208201905081810360008301526105788161053c565b9050919050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006105b5600583610425565b91506105c08261057f565b602082019050919050565b60006040820190506105e06000830184610370565b81810360208301526105f1816105a8565b90509291505056fea26469706673582212202a0a0fa5842e91cc0c1e5b645f7286aad7193a83c3b2f8c8e4c1b35008af0d6f64736f6c63430008140033", + "0x61a286b8e87e2d31c475d71c85a0020584c44bae": { + "code": "0x608060405234801561001057600080fd5b50600436106100625760003560e01c80631c717069146100675780631c93908c1461008557806392954362146100b5578063a0712d68146100bf578063b69ef8a8146100ef578063c9353cb51461010d575b600080fd5b61006f610129565b60405161007c91906102ed565b60405180910390f35b61009f600480360381019061009a9190610343565b610178565b6040516100ac919061037f565b60405180910390f35b6100bd6101ea565b005b6100d960048036038101906100d49190610343565b610225565b6040516100e6919061037f565b60405180910390f35b6100f76102b5565b604051610104919061037f565b60405180910390f35b610127600480360381019061012291906103f8565b6102bb565b005b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516101c09190610482565b60405180910390a281600260008282546101da91906104df565b9250508190555060029050919050565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161021c90610581565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405161026d91906105ed565b60405180910390a28160008082825461028691906104df565b925050819055506102a260018361029d91906104df565b610178565b506102ab610129565b5060019050919050565b60005481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b6000819050919050565b6102e7816102d4565b82525050565b600060208201905061030260008301846102de565b92915050565b600080fd5b6000819050919050565b6103208161030d565b811461032b57600080fd5b50565b60008135905061033d81610317565b92915050565b60006020828403121561035957610358610308565b5b60006103678482850161032e565b91505092915050565b6103798161030d565b82525050565b60006020820190506103946000830184610370565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006103c58261039a565b9050919050565b6103d5816103ba565b81146103e057600080fd5b50565b6000813590506103f2816103cc565b92915050565b60006020828403121561040e5761040d610308565b5b600061041c848285016103e3565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600061046c600e83610425565b915061047782610436565b602082019050919050565b60006040820190506104976000830184610370565b81810360208301526104a88161045f565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006104ea8261030d565b91506104f58361030d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561052a576105296104b0565b5b828201905092915050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b600061056b601783610425565b915061057682610535565b602082019050919050565b6000602082019050818103600083015261059a8161055e565b9050919050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006105d7600583610425565b91506105e2826105a1565b602082019050919050565b60006040820190506106026000830184610370565b8181036020830152610613816105ca565b90509291505056fea26469706673582212208743accab6cfcd1c8ccb3f51b787d679e803a77ce24ec642bd068883132fd5fa64736f6c63430008090033", + "nonce": 1, "storage": { "0x0000000000000000000000000000000000000000000000000000000000000000": "0x0000000000000000000000000000001d6329f1c35ca4bfabb9f56100000003e8", "0x0000000000000000000000000000000000000000000000000000000000000001": "0x0000000000000000000000000000000000000000000000000000000000000001", @@ -12,13 +13,13 @@ } }, "OWNER.address": { - "balance": "0xc9f2c9ccfd8d27db9679386c0", - "nonce": 362 + "balance": "0x360ee5cfde69ec5c29", + "nonce": 83 }, "Tracer.address": { "nonce": 2, "storage": { - "0x0000000000000000000000000000000000000000000000000000000000000000": "0x0000000000000000000000005b659fd8bdc52879d0c3697038537da40832b759", + "0x0000000000000000000000000000000000000000000000000000000000000000": "0x00000000000000000000000061a286b8e87e2d31c475d71c85a0020584c44bae", "0x0000000000000000000000000000000000000000000000000000000000000001": "0x00000000000000000000000000000000000000000000000000000000000003e8", "0x0000000000000000000000000000000000000000000000000000000000000003": "0x00000000000000000000000000000000000000000000000000000000000003e9" } @@ -26,15 +27,15 @@ }, "pre": { "0x0000000000000000000000000000000000000000": { - "balance": "0x0" + "balance": "0x1b69ad1" }, "OWNER.address": { - "balance": "0xc9f2c9ccfd8d27dc5626a0000", - "nonce": 361 + "balance": "0x360ee5cfe1af4203d1", + "nonce": 82 }, "Tracer.address": { "balance": "0x0", - "code": "0x60806040523480156200001157600080fd5b5060043610620000ac5760003560e01c80638bfe44ff116200006f5780638bfe44ff14620001975780639295436214620001a3578063a0712d6814620001af578063b69ef8a814620001e5578063c9353cb5146200020757620000ac565b806312065fe014620000b15780631c71706914620000d35780631c93908c14620000f55780633aa18088146200012b5780637f29c3941462000161575b600080fd5b620000bb62000227565b604051620000ca919062000975565b60405180910390f35b620000dd62000231565b604051620000ec9190620009ad565b60405180910390f35b6200011360048036038101906200010d919062000a0a565b62000280565b60405162000122919062000975565b60405180910390f35b62000149600480360381019062000143919062000a0a565b620002f6565b60405162000158919062000975565b60405180910390f35b6200017f600480360381019062000179919062000a0a565b6200049e565b6040516200018e919062000975565b60405180910390f35b620001a162000771565b005b620001ad620007b3565b005b620001cd6004803603810190620001c7919062000a0a565b620007f0565b604051620001dc919062000975565b60405180910390f35b620001ef6200092d565b604051620001fe919062000975565b60405180910390f35b6200022560048036038101906200021f919062000aa1565b62000933565b005b6000600154905090565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620002ca919062000b34565b60405180910390a28160036000828254620002e6919062000b95565b9250508190555060029050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405162000340919062000c20565b60405180910390a260405162000356906200094c565b604051809103906000f08015801562000373573d6000803e3d6000fd5b506000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508160016000828254620003c7919062000b95565b92505081905550620003e7600183620003e1919062000b95565b62000280565b50620003f262000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b81526004016200044e919062000975565b6020604051808303816000875af11580156200046e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000494919062000c69565b5060019050919050565b60003073ffffffffffffffffffffffffffffffffffffffff1663929543626040518163ffffffff1660e01b815260040160006040518083038186803b158015620004e757600080fd5b505afa925050508015620004f9575060015b620005e1576200050862000ca8565b806308c379a0036200056c57506200051f62000d43565b806200052c57506200056e565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a816040516200055d919062000e56565b60405180910390a150620005db565b505b3d80600081146200059c576040519150601f19603f3d011682016040523d82523d6000602084013e620005a1565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620005d19062000ef0565b60405180910390a1505b620005e2565b5b3073ffffffffffffffffffffffffffffffffffffffff16638bfe44ff6040518163ffffffff1660e01b815260040160006040518083038186803b1580156200062957600080fd5b505afa9250505080156200063b575060015b62000723576200064a62000ca8565b806308c379a003620006ae57506200066162000d43565b806200066e5750620006b0565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a816040516200069f919062000e56565b60405180910390a1506200071d565b505b3d8060008114620006de576040519150601f19603f3d011682016040523d82523d6000602084013e620006e3565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620007139062000ef0565b60405180910390a1505b62000724565b5b600062000768576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200075f9062000f62565b60405180910390fd5b60019050919050565b6001806040517fcf479181000000000000000000000000000000000000000000000000000000008152600401620007aa92919062000fd1565b60405180910390fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007e7906200104e565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200083a919062000c20565b60405180910390a2816001600082825462000856919062000b95565b925050819055506200087660018362000870919062000b95565b62000280565b506200088162000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b8152600401620008dd919062000975565b6020604051808303816000875af1158015620008fd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000923919062000c69565b5060019050919050565b60015481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b610a9f806200107183390190565b6000819050919050565b6200096f816200095a565b82525050565b60006020820190506200098c600083018462000964565b92915050565b6000819050919050565b620009a78162000992565b82525050565b6000602082019050620009c460008301846200099c565b92915050565b6000604051905090565b600080fd5b620009e4816200095a565b8114620009f057600080fd5b50565b60008135905062000a0481620009d9565b92915050565b60006020828403121562000a235762000a22620009d4565b5b600062000a3384828501620009f3565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000a698262000a3c565b9050919050565b62000a7b8162000a5c565b811462000a8757600080fd5b50565b60008135905062000a9b8162000a70565b92915050565b60006020828403121562000aba5762000ab9620009d4565b5b600062000aca8482850162000a8a565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000b1c600e8362000ad3565b915062000b298262000ae4565b602082019050919050565b600060408201905062000b4b600083018462000964565b818103602083015262000b5e8162000b0d565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000ba2826200095a565b915062000baf836200095a565b925082820190508082111562000bca5762000bc962000b66565b5b92915050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b600062000c0860058362000ad3565b915062000c158262000bd0565b602082019050919050565b600060408201905062000c37600083018462000964565b818103602083015262000c4a8162000bf9565b905092915050565b60008151905062000c6381620009d9565b92915050565b60006020828403121562000c825762000c81620009d4565b5b600062000c928482850162000c52565b91505092915050565b60008160e01c9050919050565b600060033d111562000cca5760046000803e62000cc760005162000c9b565b90505b90565b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000d188262000ccd565b810181811067ffffffffffffffff8211171562000d3a5762000d3962000cde565b5b80604052505050565b600060443d1062000ddb5762000d58620009ca565b60043d036004823e80513d602482011167ffffffffffffffff8211171562000d8257505062000ddb565b808201805167ffffffffffffffff81111562000da2575050505062000ddb565b80602083010160043d03850181111562000dc157505050505062000ddb565b62000dd28260200185018662000d0d565b82955050505050505b90565b600081519050919050565b60005b8381101562000e0957808201518184015260208101905062000dec565b60008484015250505050565b600062000e228262000dde565b62000e2e818562000ad3565b935062000e4081856020860162000de9565b62000e4b8162000ccd565b840191505092915050565b6000602082019050818103600083015262000e72818462000e15565b905092915050565b7f45787465726e616c2063616c6c206661696c656420776974686f757420616e2060008201527f6572726f72206d65737361676500000000000000000000000000000000000000602082015250565b600062000ed8602d8362000ad3565b915062000ee58262000e7a565b604082019050919050565b6000602082019050818103600083015262000f0b8162000ec9565b9050919050565b7f494e53554646494349454e542042414c414e4345000000000000000000000000600082015250565b600062000f4a60148362000ad3565b915062000f578262000f12565b602082019050919050565b6000602082019050818103600083015262000f7d8162000f3b565b9050919050565b6000819050919050565b6000819050919050565b600062000fb962000fb362000fad8462000f84565b62000f8e565b6200095a565b9050919050565b62000fcb8162000f98565b82525050565b600060408201905062000fe8600083018562000fc0565b62000ff7602083018462000fc0565b9392505050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b60006200103660178362000ad3565b9150620010438262000ffe565b602082019050919050565b60006020820190508181036000830152620010698162001027565b905091905056fe60806040526000600160006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b50600160009054906101000a900460ff161562000080576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200007790620002b5565b60405180910390fd5b60018060006101000a81548160ff021916908315150217905550620000bc701d6329f1c35ca4bfabb9f5610000000000620000c360201b60201c565b5062000460565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200010d919062000342565b60405180910390a281600080828254620001289190620003a3565b925050819055506200014e600183620001429190620003a3565b6200016960201b60201c565b506200015f620001df60201b60201c565b5060019050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620001b391906200042e565b60405180910390a28160026000828254620001cf9190620003a3565b9250508190555060029050919050565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b600082825260208201905092915050565b7f436f6e747261637420696e7374616e63652068617320616c726561647920626560008201527f656e20696e697469616c697a6564000000000000000000000000000000000000602082015250565b60006200029d602e836200022e565b9150620002aa826200023f565b604082019050919050565b60006020820190508181036000830152620002d0816200028e565b9050919050565b6000819050919050565b620002ec81620002d7565b82525050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006200032a6005836200022e565b91506200033782620002f2565b602082019050919050565b6000604082019050620003596000830184620002e1565b81810360208301526200036c816200031b565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620003b082620002d7565b9150620003bd83620002d7565b9250828201905080821115620003d857620003d762000374565b5b92915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000416600e836200022e565b91506200042382620003de565b602082019050919050565b6000604082019050620004456000830184620002e1565b8181036020830152620004588162000407565b905092915050565b61062f80620004706000396000f3fe608060405234801561001057600080fd5b50600436106100625760003560e01c80631c717069146100675780631c93908c1461008557806392954362146100b5578063a0712d68146100bf578063b69ef8a8146100ef578063c9353cb51461010d575b600080fd5b61006f610129565b60405161007c91906102ed565b60405180910390f35b61009f600480360381019061009a9190610343565b610178565b6040516100ac919061037f565b60405180910390f35b6100bd6101ea565b005b6100d960048036038101906100d49190610343565b610225565b6040516100e6919061037f565b60405180910390f35b6100f76102b5565b604051610104919061037f565b60405180910390f35b610127600480360381019061012291906103f8565b6102bb565b005b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516101c09190610482565b60405180910390a281600260008282546101da91906104df565b9250508190555060029050919050565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161021c9061055f565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405161026d91906105cb565b60405180910390a28160008082825461028691906104df565b925050819055506102a260018361029d91906104df565b610178565b506102ab610129565b5060019050919050565b60005481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b6000819050919050565b6102e7816102d4565b82525050565b600060208201905061030260008301846102de565b92915050565b600080fd5b6000819050919050565b6103208161030d565b811461032b57600080fd5b50565b60008135905061033d81610317565b92915050565b60006020828403121561035957610358610308565b5b60006103678482850161032e565b91505092915050565b6103798161030d565b82525050565b60006020820190506103946000830184610370565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006103c58261039a565b9050919050565b6103d5816103ba565b81146103e057600080fd5b50565b6000813590506103f2816103cc565b92915050565b60006020828403121561040e5761040d610308565b5b600061041c848285016103e3565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600061046c600e83610425565b915061047782610436565b602082019050919050565b60006040820190506104976000830184610370565b81810360208301526104a88161045f565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006104ea8261030d565b91506104f58361030d565b925082820190508082111561050d5761050c6104b0565b5b92915050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b6000610549601783610425565b915061055482610513565b602082019050919050565b600060208201905081810360008301526105788161053c565b9050919050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006105b5600583610425565b91506105c08261057f565b602082019050919050565b60006040820190506105e06000830184610370565b81810360208301526105f1816105a8565b90509291505056fea26469706673582212202a0a0fa5842e91cc0c1e5b645f7286aad7193a83c3b2f8c8e4c1b35008af0d6f64736f6c63430008140033a264697066735822122036f326b9881542090544d5d6e9f2ff18b13ec09bd4994f14891a84e97f4d6db964736f6c63430008140033", + "code": "0x60806040523480156200001157600080fd5b5060043610620000ac5760003560e01c80638bfe44ff116200006f5780638bfe44ff14620001975780639295436214620001a3578063a0712d6814620001af578063b69ef8a814620001e5578063c9353cb5146200020757620000ac565b806312065fe014620000b15780631c71706914620000d35780631c93908c14620000f55780633aa18088146200012b5780637f29c3941462000161575b600080fd5b620000bb62000227565b604051620000ca919062000997565b60405180910390f35b620000dd62000231565b604051620000ec9190620009cf565b60405180910390f35b6200011360048036038101906200010d919062000a2c565b62000280565b60405162000122919062000997565b60405180910390f35b62000149600480360381019062000143919062000a2c565b620002f6565b60405162000158919062000997565b60405180910390f35b6200017f600480360381019062000179919062000a2c565b620004ae565b6040516200018e919062000997565b60405180910390f35b620001a162000783565b005b620001ad620007c5565b005b620001cd6004803603810190620001c7919062000a2c565b62000802565b604051620001dc919062000997565b60405180910390f35b620001ef6200094f565b604051620001fe919062000997565b60405180910390f35b6200022560048036038101906200021f919062000ac3565b62000955565b005b6000600154905090565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620002ca919062000b56565b60405180910390a28160036000828254620002e6919062000bb7565b9250508190555060029050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405162000340919062000c64565b60405180910390a260405162000356906200096e565b604051809103906000f08015801562000373573d6000803e3d6000fd5b506000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508160016000828254620003c7919062000bb7565b92505081905550620003e7600183620003e1919062000bb7565b62000280565b50620003f262000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b81526004016200044e919062000997565b602060405180830381600087803b1580156200046957600080fd5b505af11580156200047e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004a4919062000cad565b5060019050919050565b60003073ffffffffffffffffffffffffffffffffffffffff1663929543626040518163ffffffff1660e01b815260040160006040518083038186803b158015620004f757600080fd5b505afa92505050801562000509575060015b620005f2576200051862000cec565b806308c379a014156200057d57506200053062000d87565b806200053d57506200057f565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a816040516200056e919062000eab565b60405180910390a150620005ec565b505b3d8060008114620005ad576040519150601f19603f3d011682016040523d82523d6000602084013e620005b2565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620005e29062000f45565b60405180910390a1505b620005f3565b5b3073ffffffffffffffffffffffffffffffffffffffff16638bfe44ff6040518163ffffffff1660e01b815260040160006040518083038186803b1580156200063a57600080fd5b505afa9250505080156200064c575060015b62000735576200065b62000cec565b806308c379a01415620006c057506200067362000d87565b80620006805750620006c2565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a81604051620006b1919062000eab565b60405180910390a1506200072f565b505b3d8060008114620006f0576040519150601f19603f3d011682016040523d82523d6000602084013e620006f5565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620007259062000f45565b60405180910390a1505b62000736565b5b60006200077a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007719062000fb7565b60405180910390fd5b60019050919050565b6001806040517fcf479181000000000000000000000000000000000000000000000000000000008152600401620007bc92919062001026565b60405180910390fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007f990620010a3565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200084c919062000c64565b60405180910390a2816001600082825462000868919062000bb7565b925050819055506200088860018362000882919062000bb7565b62000280565b506200089362000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b8152600401620008ef919062000997565b602060405180830381600087803b1580156200090a57600080fd5b505af11580156200091f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000945919062000cad565b5060019050919050565b60015481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b610ae380620010c683390190565b6000819050919050565b62000991816200097c565b82525050565b6000602082019050620009ae600083018462000986565b92915050565b6000819050919050565b620009c981620009b4565b82525050565b6000602082019050620009e66000830184620009be565b92915050565b6000604051905090565b600080fd5b62000a06816200097c565b811462000a1257600080fd5b50565b60008135905062000a2681620009fb565b92915050565b60006020828403121562000a455762000a44620009f6565b5b600062000a558482850162000a15565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000a8b8262000a5e565b9050919050565b62000a9d8162000a7e565b811462000aa957600080fd5b50565b60008135905062000abd8162000a92565b92915050565b60006020828403121562000adc5762000adb620009f6565b5b600062000aec8482850162000aac565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000b3e600e8362000af5565b915062000b4b8262000b06565b602082019050919050565b600060408201905062000b6d600083018462000986565b818103602083015262000b808162000b2f565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000bc4826200097c565b915062000bd1836200097c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000c095762000c0862000b88565b5b828201905092915050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b600062000c4c60058362000af5565b915062000c598262000c14565b602082019050919050565b600060408201905062000c7b600083018462000986565b818103602083015262000c8e8162000c3d565b905092915050565b60008151905062000ca781620009fb565b92915050565b60006020828403121562000cc65762000cc5620009f6565b5b600062000cd68482850162000c96565b91505092915050565b60008160e01c9050919050565b600060033d111562000d0e5760046000803e62000d0b60005162000cdf565b90505b90565b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000d5c8262000d11565b810181811067ffffffffffffffff8211171562000d7e5762000d7d62000d22565b5b80604052505050565b600060443d101562000d995762000e26565b62000da3620009ec565b60043d036004823e80513d602482011167ffffffffffffffff8211171562000dcd57505062000e26565b808201805167ffffffffffffffff81111562000ded575050505062000e26565b80602083010160043d03850181111562000e0c57505050505062000e26565b62000e1d8260200185018662000d51565b82955050505050505b90565b600081519050919050565b60005b8381101562000e5457808201518184015260208101905062000e37565b8381111562000e64576000848401525b50505050565b600062000e778262000e29565b62000e83818562000af5565b935062000e9581856020860162000e34565b62000ea08162000d11565b840191505092915050565b6000602082019050818103600083015262000ec7818462000e6a565b905092915050565b7f45787465726e616c2063616c6c206661696c656420776974686f757420616e2060008201527f6572726f72206d65737361676500000000000000000000000000000000000000602082015250565b600062000f2d602d8362000af5565b915062000f3a8262000ecf565b604082019050919050565b6000602082019050818103600083015262000f608162000f1e565b9050919050565b7f494e53554646494349454e542042414c414e4345000000000000000000000000600082015250565b600062000f9f60148362000af5565b915062000fac8262000f67565b602082019050919050565b6000602082019050818103600083015262000fd28162000f90565b9050919050565b6000819050919050565b6000819050919050565b60006200100e62001008620010028462000fd9565b62000fe3565b6200097c565b9050919050565b620010208162000fed565b82525050565b60006040820190506200103d600083018562001015565b6200104c602083018462001015565b9392505050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b60006200108b60178362000af5565b9150620010988262001053565b602082019050919050565b60006020820190508181036000830152620010be816200107c565b905091905056fe60806040526000600160006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b50600160009054906101000a900460ff161562000080576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200007790620002b5565b60405180910390fd5b60018060006101000a81548160ff021916908315150217905550620000bc701d6329f1c35ca4bfabb9f5610000000000620000c360201b60201c565b5062000482565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200010d919062000342565b60405180910390a281600080828254620001289190620003a3565b925050819055506200014e600183620001429190620003a3565b6200016960201b60201c565b506200015f620001df60201b60201c565b5060019050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620001b3919062000450565b60405180910390a28160026000828254620001cf9190620003a3565b9250508190555060029050919050565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b600082825260208201905092915050565b7f436f6e747261637420696e7374616e63652068617320616c726561647920626560008201527f656e20696e697469616c697a6564000000000000000000000000000000000000602082015250565b60006200029d602e836200022e565b9150620002aa826200023f565b604082019050919050565b60006020820190508181036000830152620002d0816200028e565b9050919050565b6000819050919050565b620002ec81620002d7565b82525050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006200032a6005836200022e565b91506200033782620002f2565b602082019050919050565b6000604082019050620003596000830184620002e1565b81810360208301526200036c816200031b565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620003b082620002d7565b9150620003bd83620002d7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620003f557620003f462000374565b5b828201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000438600e836200022e565b9150620004458262000400565b602082019050919050565b6000604082019050620004676000830184620002e1565b81810360208301526200047a8162000429565b905092915050565b61065180620004926000396000f3fe608060405234801561001057600080fd5b50600436106100625760003560e01c80631c717069146100675780631c93908c1461008557806392954362146100b5578063a0712d68146100bf578063b69ef8a8146100ef578063c9353cb51461010d575b600080fd5b61006f610129565b60405161007c91906102ed565b60405180910390f35b61009f600480360381019061009a9190610343565b610178565b6040516100ac919061037f565b60405180910390f35b6100bd6101ea565b005b6100d960048036038101906100d49190610343565b610225565b6040516100e6919061037f565b60405180910390f35b6100f76102b5565b604051610104919061037f565b60405180910390f35b610127600480360381019061012291906103f8565b6102bb565b005b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516101c09190610482565b60405180910390a281600260008282546101da91906104df565b9250508190555060029050919050565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161021c90610581565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405161026d91906105ed565b60405180910390a28160008082825461028691906104df565b925050819055506102a260018361029d91906104df565b610178565b506102ab610129565b5060019050919050565b60005481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b6000819050919050565b6102e7816102d4565b82525050565b600060208201905061030260008301846102de565b92915050565b600080fd5b6000819050919050565b6103208161030d565b811461032b57600080fd5b50565b60008135905061033d81610317565b92915050565b60006020828403121561035957610358610308565b5b60006103678482850161032e565b91505092915050565b6103798161030d565b82525050565b60006020820190506103946000830184610370565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006103c58261039a565b9050919050565b6103d5816103ba565b81146103e057600080fd5b50565b6000813590506103f2816103cc565b92915050565b60006020828403121561040e5761040d610308565b5b600061041c848285016103e3565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600061046c600e83610425565b915061047782610436565b602082019050919050565b60006040820190506104976000830184610370565b81810360208301526104a88161045f565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006104ea8261030d565b91506104f58361030d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561052a576105296104b0565b5b828201905092915050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b600061056b601783610425565b915061057682610535565b602082019050919050565b6000602082019050818103600083015261059a8161055e565b9050919050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006105d7600583610425565b91506105e2826105a1565b602082019050919050565b60006040820190506106026000830184610370565b8181036020830152610613816105ca565b90509291505056fea26469706673582212208743accab6cfcd1c8ccb3f51b787d679e803a77ce24ec642bd068883132fd5fa64736f6c63430008090033a264697066735822122066241fedca9ebd69f0cd9e4879f75428f5d4bf734eb072e52934a8b3161581f064736f6c63430008090033", "nonce": 1 } } diff --git a/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint2.prestateTracer.json b/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint2.prestateTracer.json index 2a8d067d0..e498b7623 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint2.prestateTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/Tracer.mint2.prestateTracer.json @@ -1,14 +1,22 @@ { "0x0000000000000000000000000000000000000000": { - "balance": "0x0" + "balance": "0x1b69ad1" + }, + "0x61a286b8e87e2d31c475d71c85a0020584c44bae": { + "balance": "0x0", + "storage": { + "0x0000000000000000000000000000000000000000000000000000000000000000": "0x0000000000000000000000000000000000000000000000000000000000000000", + "0x0000000000000000000000000000000000000000000000000000000000000001": "0x0000000000000000000000000000000000000000000000000000000000000000", + "0x0000000000000000000000000000000000000000000000000000000000000002": "0x0000000000000000000000000000000000000000000000000000000000000000" + } }, "OWNER.address": { - "balance": "0xc9f2c9ccfd8d27dc5626a0000", - "nonce": 361 + "balance": "0x360ee5cfe1af4203d1", + "nonce": 82 }, "Tracer.address": { "balance": "0x0", - "code": "0x60806040523480156200001157600080fd5b5060043610620000ac5760003560e01c80638bfe44ff116200006f5780638bfe44ff14620001975780639295436214620001a3578063a0712d6814620001af578063b69ef8a814620001e5578063c9353cb5146200020757620000ac565b806312065fe014620000b15780631c71706914620000d35780631c93908c14620000f55780633aa18088146200012b5780637f29c3941462000161575b600080fd5b620000bb62000227565b604051620000ca919062000975565b60405180910390f35b620000dd62000231565b604051620000ec9190620009ad565b60405180910390f35b6200011360048036038101906200010d919062000a0a565b62000280565b60405162000122919062000975565b60405180910390f35b62000149600480360381019062000143919062000a0a565b620002f6565b60405162000158919062000975565b60405180910390f35b6200017f600480360381019062000179919062000a0a565b6200049e565b6040516200018e919062000975565b60405180910390f35b620001a162000771565b005b620001ad620007b3565b005b620001cd6004803603810190620001c7919062000a0a565b620007f0565b604051620001dc919062000975565b60405180910390f35b620001ef6200092d565b604051620001fe919062000975565b60405180910390f35b6200022560048036038101906200021f919062000aa1565b62000933565b005b6000600154905090565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620002ca919062000b34565b60405180910390a28160036000828254620002e6919062000b95565b9250508190555060029050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405162000340919062000c20565b60405180910390a260405162000356906200094c565b604051809103906000f08015801562000373573d6000803e3d6000fd5b506000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508160016000828254620003c7919062000b95565b92505081905550620003e7600183620003e1919062000b95565b62000280565b50620003f262000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b81526004016200044e919062000975565b6020604051808303816000875af11580156200046e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000494919062000c69565b5060019050919050565b60003073ffffffffffffffffffffffffffffffffffffffff1663929543626040518163ffffffff1660e01b815260040160006040518083038186803b158015620004e757600080fd5b505afa925050508015620004f9575060015b620005e1576200050862000ca8565b806308c379a0036200056c57506200051f62000d43565b806200052c57506200056e565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a816040516200055d919062000e56565b60405180910390a150620005db565b505b3d80600081146200059c576040519150601f19603f3d011682016040523d82523d6000602084013e620005a1565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620005d19062000ef0565b60405180910390a1505b620005e2565b5b3073ffffffffffffffffffffffffffffffffffffffff16638bfe44ff6040518163ffffffff1660e01b815260040160006040518083038186803b1580156200062957600080fd5b505afa9250505080156200063b575060015b62000723576200064a62000ca8565b806308c379a003620006ae57506200066162000d43565b806200066e5750620006b0565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a816040516200069f919062000e56565b60405180910390a1506200071d565b505b3d8060008114620006de576040519150601f19603f3d011682016040523d82523d6000602084013e620006e3565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620007139062000ef0565b60405180910390a1505b62000724565b5b600062000768576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200075f9062000f62565b60405180910390fd5b60019050919050565b6001806040517fcf479181000000000000000000000000000000000000000000000000000000008152600401620007aa92919062000fd1565b60405180910390fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007e7906200104e565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200083a919062000c20565b60405180910390a2816001600082825462000856919062000b95565b925050819055506200087660018362000870919062000b95565b62000280565b506200088162000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b8152600401620008dd919062000975565b6020604051808303816000875af1158015620008fd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000923919062000c69565b5060019050919050565b60015481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b610a9f806200107183390190565b6000819050919050565b6200096f816200095a565b82525050565b60006020820190506200098c600083018462000964565b92915050565b6000819050919050565b620009a78162000992565b82525050565b6000602082019050620009c460008301846200099c565b92915050565b6000604051905090565b600080fd5b620009e4816200095a565b8114620009f057600080fd5b50565b60008135905062000a0481620009d9565b92915050565b60006020828403121562000a235762000a22620009d4565b5b600062000a3384828501620009f3565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000a698262000a3c565b9050919050565b62000a7b8162000a5c565b811462000a8757600080fd5b50565b60008135905062000a9b8162000a70565b92915050565b60006020828403121562000aba5762000ab9620009d4565b5b600062000aca8482850162000a8a565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000b1c600e8362000ad3565b915062000b298262000ae4565b602082019050919050565b600060408201905062000b4b600083018462000964565b818103602083015262000b5e8162000b0d565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000ba2826200095a565b915062000baf836200095a565b925082820190508082111562000bca5762000bc962000b66565b5b92915050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b600062000c0860058362000ad3565b915062000c158262000bd0565b602082019050919050565b600060408201905062000c37600083018462000964565b818103602083015262000c4a8162000bf9565b905092915050565b60008151905062000c6381620009d9565b92915050565b60006020828403121562000c825762000c81620009d4565b5b600062000c928482850162000c52565b91505092915050565b60008160e01c9050919050565b600060033d111562000cca5760046000803e62000cc760005162000c9b565b90505b90565b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000d188262000ccd565b810181811067ffffffffffffffff8211171562000d3a5762000d3962000cde565b5b80604052505050565b600060443d1062000ddb5762000d58620009ca565b60043d036004823e80513d602482011167ffffffffffffffff8211171562000d8257505062000ddb565b808201805167ffffffffffffffff81111562000da2575050505062000ddb565b80602083010160043d03850181111562000dc157505050505062000ddb565b62000dd28260200185018662000d0d565b82955050505050505b90565b600081519050919050565b60005b8381101562000e0957808201518184015260208101905062000dec565b60008484015250505050565b600062000e228262000dde565b62000e2e818562000ad3565b935062000e4081856020860162000de9565b62000e4b8162000ccd565b840191505092915050565b6000602082019050818103600083015262000e72818462000e15565b905092915050565b7f45787465726e616c2063616c6c206661696c656420776974686f757420616e2060008201527f6572726f72206d65737361676500000000000000000000000000000000000000602082015250565b600062000ed8602d8362000ad3565b915062000ee58262000e7a565b604082019050919050565b6000602082019050818103600083015262000f0b8162000ec9565b9050919050565b7f494e53554646494349454e542042414c414e4345000000000000000000000000600082015250565b600062000f4a60148362000ad3565b915062000f578262000f12565b602082019050919050565b6000602082019050818103600083015262000f7d8162000f3b565b9050919050565b6000819050919050565b6000819050919050565b600062000fb962000fb362000fad8462000f84565b62000f8e565b6200095a565b9050919050565b62000fcb8162000f98565b82525050565b600060408201905062000fe8600083018562000fc0565b62000ff7602083018462000fc0565b9392505050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b60006200103660178362000ad3565b9150620010438262000ffe565b602082019050919050565b60006020820190508181036000830152620010698162001027565b905091905056fe60806040526000600160006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b50600160009054906101000a900460ff161562000080576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200007790620002b5565b60405180910390fd5b60018060006101000a81548160ff021916908315150217905550620000bc701d6329f1c35ca4bfabb9f5610000000000620000c360201b60201c565b5062000460565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200010d919062000342565b60405180910390a281600080828254620001289190620003a3565b925050819055506200014e600183620001429190620003a3565b6200016960201b60201c565b506200015f620001df60201b60201c565b5060019050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620001b391906200042e565b60405180910390a28160026000828254620001cf9190620003a3565b9250508190555060029050919050565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b600082825260208201905092915050565b7f436f6e747261637420696e7374616e63652068617320616c726561647920626560008201527f656e20696e697469616c697a6564000000000000000000000000000000000000602082015250565b60006200029d602e836200022e565b9150620002aa826200023f565b604082019050919050565b60006020820190508181036000830152620002d0816200028e565b9050919050565b6000819050919050565b620002ec81620002d7565b82525050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006200032a6005836200022e565b91506200033782620002f2565b602082019050919050565b6000604082019050620003596000830184620002e1565b81810360208301526200036c816200031b565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620003b082620002d7565b9150620003bd83620002d7565b9250828201905080821115620003d857620003d762000374565b5b92915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000416600e836200022e565b91506200042382620003de565b602082019050919050565b6000604082019050620004456000830184620002e1565b8181036020830152620004588162000407565b905092915050565b61062f80620004706000396000f3fe608060405234801561001057600080fd5b50600436106100625760003560e01c80631c717069146100675780631c93908c1461008557806392954362146100b5578063a0712d68146100bf578063b69ef8a8146100ef578063c9353cb51461010d575b600080fd5b61006f610129565b60405161007c91906102ed565b60405180910390f35b61009f600480360381019061009a9190610343565b610178565b6040516100ac919061037f565b60405180910390f35b6100bd6101ea565b005b6100d960048036038101906100d49190610343565b610225565b6040516100e6919061037f565b60405180910390f35b6100f76102b5565b604051610104919061037f565b60405180910390f35b610127600480360381019061012291906103f8565b6102bb565b005b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516101c09190610482565b60405180910390a281600260008282546101da91906104df565b9250508190555060029050919050565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161021c9061055f565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405161026d91906105cb565b60405180910390a28160008082825461028691906104df565b925050819055506102a260018361029d91906104df565b610178565b506102ab610129565b5060019050919050565b60005481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b6000819050919050565b6102e7816102d4565b82525050565b600060208201905061030260008301846102de565b92915050565b600080fd5b6000819050919050565b6103208161030d565b811461032b57600080fd5b50565b60008135905061033d81610317565b92915050565b60006020828403121561035957610358610308565b5b60006103678482850161032e565b91505092915050565b6103798161030d565b82525050565b60006020820190506103946000830184610370565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006103c58261039a565b9050919050565b6103d5816103ba565b81146103e057600080fd5b50565b6000813590506103f2816103cc565b92915050565b60006020828403121561040e5761040d610308565b5b600061041c848285016103e3565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600061046c600e83610425565b915061047782610436565b602082019050919050565b60006040820190506104976000830184610370565b81810360208301526104a88161045f565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006104ea8261030d565b91506104f58361030d565b925082820190508082111561050d5761050c6104b0565b5b92915050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b6000610549601783610425565b915061055482610513565b602082019050919050565b600060208201905081810360008301526105788161053c565b9050919050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006105b5600583610425565b91506105c08261057f565b602082019050919050565b60006040820190506105e06000830184610370565b81810360208301526105f1816105a8565b90509291505056fea26469706673582212202a0a0fa5842e91cc0c1e5b645f7286aad7193a83c3b2f8c8e4c1b35008af0d6f64736f6c63430008140033a264697066735822122036f326b9881542090544d5d6e9f2ff18b13ec09bd4994f14891a84e97f4d6db964736f6c63430008140033", + "code": "0x60806040523480156200001157600080fd5b5060043610620000ac5760003560e01c80638bfe44ff116200006f5780638bfe44ff14620001975780639295436214620001a3578063a0712d6814620001af578063b69ef8a814620001e5578063c9353cb5146200020757620000ac565b806312065fe014620000b15780631c71706914620000d35780631c93908c14620000f55780633aa18088146200012b5780637f29c3941462000161575b600080fd5b620000bb62000227565b604051620000ca919062000997565b60405180910390f35b620000dd62000231565b604051620000ec9190620009cf565b60405180910390f35b6200011360048036038101906200010d919062000a2c565b62000280565b60405162000122919062000997565b60405180910390f35b62000149600480360381019062000143919062000a2c565b620002f6565b60405162000158919062000997565b60405180910390f35b6200017f600480360381019062000179919062000a2c565b620004ae565b6040516200018e919062000997565b60405180910390f35b620001a162000783565b005b620001ad620007c5565b005b620001cd6004803603810190620001c7919062000a2c565b62000802565b604051620001dc919062000997565b60405180910390f35b620001ef6200094f565b604051620001fe919062000997565b60405180910390f35b6200022560048036038101906200021f919062000ac3565b62000955565b005b6000600154905090565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620002ca919062000b56565b60405180910390a28160036000828254620002e6919062000bb7565b9250508190555060029050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405162000340919062000c64565b60405180910390a260405162000356906200096e565b604051809103906000f08015801562000373573d6000803e3d6000fd5b506000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508160016000828254620003c7919062000bb7565b92505081905550620003e7600183620003e1919062000bb7565b62000280565b50620003f262000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b81526004016200044e919062000997565b602060405180830381600087803b1580156200046957600080fd5b505af11580156200047e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004a4919062000cad565b5060019050919050565b60003073ffffffffffffffffffffffffffffffffffffffff1663929543626040518163ffffffff1660e01b815260040160006040518083038186803b158015620004f757600080fd5b505afa92505050801562000509575060015b620005f2576200051862000cec565b806308c379a014156200057d57506200053062000d87565b806200053d57506200057f565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a816040516200056e919062000eab565b60405180910390a150620005ec565b505b3d8060008114620005ad576040519150601f19603f3d011682016040523d82523d6000602084013e620005b2565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620005e29062000f45565b60405180910390a1505b620005f3565b5b3073ffffffffffffffffffffffffffffffffffffffff16638bfe44ff6040518163ffffffff1660e01b815260040160006040518083038186803b1580156200063a57600080fd5b505afa9250505080156200064c575060015b62000735576200065b62000cec565b806308c379a01415620006c057506200067362000d87565b80620006805750620006c2565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a81604051620006b1919062000eab565b60405180910390a1506200072f565b505b3d8060008114620006f0576040519150601f19603f3d011682016040523d82523d6000602084013e620006f5565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620007259062000f45565b60405180910390a1505b62000736565b5b60006200077a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007719062000fb7565b60405180910390fd5b60019050919050565b6001806040517fcf479181000000000000000000000000000000000000000000000000000000008152600401620007bc92919062001026565b60405180910390fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007f990620010a3565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200084c919062000c64565b60405180910390a2816001600082825462000868919062000bb7565b925050819055506200088860018362000882919062000bb7565b62000280565b506200089362000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b8152600401620008ef919062000997565b602060405180830381600087803b1580156200090a57600080fd5b505af11580156200091f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000945919062000cad565b5060019050919050565b60015481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b610ae380620010c683390190565b6000819050919050565b62000991816200097c565b82525050565b6000602082019050620009ae600083018462000986565b92915050565b6000819050919050565b620009c981620009b4565b82525050565b6000602082019050620009e66000830184620009be565b92915050565b6000604051905090565b600080fd5b62000a06816200097c565b811462000a1257600080fd5b50565b60008135905062000a2681620009fb565b92915050565b60006020828403121562000a455762000a44620009f6565b5b600062000a558482850162000a15565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000a8b8262000a5e565b9050919050565b62000a9d8162000a7e565b811462000aa957600080fd5b50565b60008135905062000abd8162000a92565b92915050565b60006020828403121562000adc5762000adb620009f6565b5b600062000aec8482850162000aac565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000b3e600e8362000af5565b915062000b4b8262000b06565b602082019050919050565b600060408201905062000b6d600083018462000986565b818103602083015262000b808162000b2f565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000bc4826200097c565b915062000bd1836200097c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000c095762000c0862000b88565b5b828201905092915050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b600062000c4c60058362000af5565b915062000c598262000c14565b602082019050919050565b600060408201905062000c7b600083018462000986565b818103602083015262000c8e8162000c3d565b905092915050565b60008151905062000ca781620009fb565b92915050565b60006020828403121562000cc65762000cc5620009f6565b5b600062000cd68482850162000c96565b91505092915050565b60008160e01c9050919050565b600060033d111562000d0e5760046000803e62000d0b60005162000cdf565b90505b90565b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000d5c8262000d11565b810181811067ffffffffffffffff8211171562000d7e5762000d7d62000d22565b5b80604052505050565b600060443d101562000d995762000e26565b62000da3620009ec565b60043d036004823e80513d602482011167ffffffffffffffff8211171562000dcd57505062000e26565b808201805167ffffffffffffffff81111562000ded575050505062000e26565b80602083010160043d03850181111562000e0c57505050505062000e26565b62000e1d8260200185018662000d51565b82955050505050505b90565b600081519050919050565b60005b8381101562000e5457808201518184015260208101905062000e37565b8381111562000e64576000848401525b50505050565b600062000e778262000e29565b62000e83818562000af5565b935062000e9581856020860162000e34565b62000ea08162000d11565b840191505092915050565b6000602082019050818103600083015262000ec7818462000e6a565b905092915050565b7f45787465726e616c2063616c6c206661696c656420776974686f757420616e2060008201527f6572726f72206d65737361676500000000000000000000000000000000000000602082015250565b600062000f2d602d8362000af5565b915062000f3a8262000ecf565b604082019050919050565b6000602082019050818103600083015262000f608162000f1e565b9050919050565b7f494e53554646494349454e542042414c414e4345000000000000000000000000600082015250565b600062000f9f60148362000af5565b915062000fac8262000f67565b602082019050919050565b6000602082019050818103600083015262000fd28162000f90565b9050919050565b6000819050919050565b6000819050919050565b60006200100e62001008620010028462000fd9565b62000fe3565b6200097c565b9050919050565b620010208162000fed565b82525050565b60006040820190506200103d600083018562001015565b6200104c602083018462001015565b9392505050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b60006200108b60178362000af5565b9150620010988262001053565b602082019050919050565b60006020820190508181036000830152620010be816200107c565b905091905056fe60806040526000600160006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b50600160009054906101000a900460ff161562000080576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200007790620002b5565b60405180910390fd5b60018060006101000a81548160ff021916908315150217905550620000bc701d6329f1c35ca4bfabb9f5610000000000620000c360201b60201c565b5062000482565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200010d919062000342565b60405180910390a281600080828254620001289190620003a3565b925050819055506200014e600183620001429190620003a3565b6200016960201b60201c565b506200015f620001df60201b60201c565b5060019050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620001b3919062000450565b60405180910390a28160026000828254620001cf9190620003a3565b9250508190555060029050919050565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b600082825260208201905092915050565b7f436f6e747261637420696e7374616e63652068617320616c726561647920626560008201527f656e20696e697469616c697a6564000000000000000000000000000000000000602082015250565b60006200029d602e836200022e565b9150620002aa826200023f565b604082019050919050565b60006020820190508181036000830152620002d0816200028e565b9050919050565b6000819050919050565b620002ec81620002d7565b82525050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006200032a6005836200022e565b91506200033782620002f2565b602082019050919050565b6000604082019050620003596000830184620002e1565b81810360208301526200036c816200031b565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620003b082620002d7565b9150620003bd83620002d7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620003f557620003f462000374565b5b828201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000438600e836200022e565b9150620004458262000400565b602082019050919050565b6000604082019050620004676000830184620002e1565b81810360208301526200047a8162000429565b905092915050565b61065180620004926000396000f3fe608060405234801561001057600080fd5b50600436106100625760003560e01c80631c717069146100675780631c93908c1461008557806392954362146100b5578063a0712d68146100bf578063b69ef8a8146100ef578063c9353cb51461010d575b600080fd5b61006f610129565b60405161007c91906102ed565b60405180910390f35b61009f600480360381019061009a9190610343565b610178565b6040516100ac919061037f565b60405180910390f35b6100bd6101ea565b005b6100d960048036038101906100d49190610343565b610225565b6040516100e6919061037f565b60405180910390f35b6100f76102b5565b604051610104919061037f565b60405180910390f35b610127600480360381019061012291906103f8565b6102bb565b005b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516101c09190610482565b60405180910390a281600260008282546101da91906104df565b9250508190555060029050919050565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161021c90610581565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405161026d91906105ed565b60405180910390a28160008082825461028691906104df565b925050819055506102a260018361029d91906104df565b610178565b506102ab610129565b5060019050919050565b60005481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b6000819050919050565b6102e7816102d4565b82525050565b600060208201905061030260008301846102de565b92915050565b600080fd5b6000819050919050565b6103208161030d565b811461032b57600080fd5b50565b60008135905061033d81610317565b92915050565b60006020828403121561035957610358610308565b5b60006103678482850161032e565b91505092915050565b6103798161030d565b82525050565b60006020820190506103946000830184610370565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006103c58261039a565b9050919050565b6103d5816103ba565b81146103e057600080fd5b50565b6000813590506103f2816103cc565b92915050565b60006020828403121561040e5761040d610308565b5b600061041c848285016103e3565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600061046c600e83610425565b915061047782610436565b602082019050919050565b60006040820190506104976000830184610370565b81810360208301526104a88161045f565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006104ea8261030d565b91506104f58361030d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561052a576105296104b0565b5b828201905092915050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b600061056b601783610425565b915061057682610535565b602082019050919050565b6000602082019050818103600083015261059a8161055e565b9050919050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006105d7600583610425565b91506105e2826105a1565b602082019050919050565b60006040820190506106026000830184610370565b8181036020830152610613816105ca565b90509291505056fea26469706673582212208743accab6cfcd1c8ccb3f51b787d679e803a77ce24ec642bd068883132fd5fa64736f6c63430008090033a264697066735822122066241fedca9ebd69f0cd9e4879f75428f5d4bf734eb072e52934a8b3161581f064736f6c63430008090033", "nonce": 1, "storage": { "0x0000000000000000000000000000000000000000000000000000000000000000": "0x0000000000000000000000000000000000000000000000000000000000000000", diff --git a/test/historicstate/hardhat/scripts/geth_traces/Tracer.readableRevert.callTracer.json b/test/historicstate/hardhat/scripts/geth_traces/Tracer.readableRevert.callTracer.json index 703f1e4b9..e8896f379 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/Tracer.readableRevert.callTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/Tracer.readableRevert.callTracer.json @@ -1,35 +1,35 @@ { + "from": "OWNER.address", + "gas": "0x200b20", + "gasUsed": "0x70ff", + "to": "Tracer.address", + "input": "0x7f29c39400000000000000000000000000000000000000000000000000000000000003e8", + "output": "0x08c379a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000014494e53554646494349454e542042414c414e4345000000000000000000000000", + "error": "execution reverted", + "revertReason": "INSUFFICIENT BALANCE", "calls": [ { - "error": "execution reverted", "from": "Tracer.address", - "gas": "0x1f3084", - "gasUsed": "0x484", + "gas": "0x1f3655", + "gasUsed": "0x1c8", + "to": "Tracer.address", "input": "0x92954362", "output": "0x08c379a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000017546869732066756e6374696f6e20726576657274656421000000000000000000", + "error": "execution reverted", "revertReason": "This function reverted!", - "to": "Tracer.address", "type": "STATICCALL" }, { - "error": "execution reverted", "from": "Tracer.address", - "gas": "0x1f1e7f", - "gasUsed": "0x574", + "gas": "0x1f28cc", + "gasUsed": "0x2b8", + "to": "Tracer.address", "input": "0x8bfe44ff", "output": "0xcf47918100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001", - "to": "Tracer.address", + "error": "execution reverted", "type": "STATICCALL" } ], - "error": "execution reverted", - "from": "OWNER.address", - "gas": "0x1fb708", - "gasUsed": "0x7b73", - "input": "0x7f29c39400000000000000000000000000000000000000000000000000000000000003e8", - "output": "0x08c379a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000014494e53554646494349454e542042414c414e4345000000000000000000000000", - "revertReason": "INSUFFICIENT BALANCE", - "to": "Tracer.address", - "type": "CALL", - "value": "0x0" + "value": "0x0", + "type": "CALL" } \ No newline at end of file diff --git a/test/historicstate/hardhat/scripts/geth_traces/Tracer.readableRevert.defaultTracer.json b/test/historicstate/hardhat/scripts/geth_traces/Tracer.readableRevert.defaultTracer.json index 86c44ea42..df6d34099 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/Tracer.readableRevert.defaultTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/Tracer.readableRevert.defaultTracer.json @@ -1,83 +1,83 @@ { + "gas": 28927, "failed": true, - "gas": 31603, "returnValue": "08c379a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000014494e53554646494349454e542042414c414e4345000000000000000000000000", "structLogs": [ { - "depth": 1, - "gas": 2078472, - "gasCost": 3, - "op": "PUSH1", "pc": 0, + "op": "PUSH1", + "gas": 2078784, + "gasCost": 3, + "depth": 1, "stack": [] }, { - "depth": 1, - "gas": 2078469, - "gasCost": 3, - "op": "PUSH1", "pc": 2, + "op": "PUSH1", + "gas": 2078781, + "gasCost": 3, + "depth": 1, "stack": [ "0x80" ] }, { - "depth": 1, - "gas": 2078466, - "gasCost": 12, - "op": "MSTORE", "pc": 4, + "op": "MSTORE", + "gas": 2078778, + "gasCost": 12, + "depth": 1, "stack": [ "0x80", "0x40" ] }, { - "depth": 1, - "gas": 2078454, - "gasCost": 2, - "op": "CALLVALUE", "pc": 5, + "op": "CALLVALUE", + "gas": 2078766, + "gasCost": 2, + "depth": 1, "stack": [] }, { - "depth": 1, - "gas": 2078452, - "gasCost": 3, - "op": "DUP1", "pc": 6, + "op": "DUP1", + "gas": 2078764, + "gasCost": 3, + "depth": 1, "stack": [ "0x0" ] }, { - "depth": 1, - "gas": 2078449, - "gasCost": 3, - "op": "ISZERO", "pc": 7, + "op": "ISZERO", + "gas": 2078761, + "gasCost": 3, + "depth": 1, "stack": [ "0x0", "0x0" ] }, { - "depth": 1, - "gas": 2078446, - "gasCost": 3, - "op": "PUSH3", "pc": 8, + "op": "PUSH3", + "gas": 2078758, + "gasCost": 3, + "depth": 1, "stack": [ "0x0", "0x1" ] }, { - "depth": 1, - "gas": 2078443, - "gasCost": 10, - "op": "JUMPI", "pc": 12, + "op": "JUMPI", + "gas": 2078755, + "gasCost": 10, + "depth": 1, "stack": [ "0x0", "0x1", @@ -85,141 +85,141 @@ ] }, { - "depth": 1, - "gas": 2078433, - "gasCost": 1, - "op": "JUMPDEST", "pc": 17, + "op": "JUMPDEST", + "gas": 2078745, + "gasCost": 1, + "depth": 1, "stack": [ "0x0" ] }, { - "depth": 1, - "gas": 2078432, - "gasCost": 2, - "op": "POP", "pc": 18, + "op": "POP", + "gas": 2078744, + "gasCost": 2, + "depth": 1, "stack": [ "0x0" ] }, { - "depth": 1, - "gas": 2078430, - "gasCost": 3, - "op": "PUSH1", "pc": 19, + "op": "PUSH1", + "gas": 2078742, + "gasCost": 3, + "depth": 1, "stack": [] }, { - "depth": 1, - "gas": 2078427, - "gasCost": 2, - "op": "CALLDATASIZE", "pc": 21, + "op": "CALLDATASIZE", + "gas": 2078739, + "gasCost": 2, + "depth": 1, "stack": [ "0x4" ] }, { - "depth": 1, - "gas": 2078425, - "gasCost": 3, - "op": "LT", "pc": 22, + "op": "LT", + "gas": 2078737, + "gasCost": 3, + "depth": 1, "stack": [ "0x4", "0x24" ] }, { - "depth": 1, - "gas": 2078422, - "gasCost": 3, - "op": "PUSH3", "pc": 23, + "op": "PUSH3", + "gas": 2078734, + "gasCost": 3, + "depth": 1, "stack": [ "0x0" ] }, { - "depth": 1, - "gas": 2078419, - "gasCost": 10, - "op": "JUMPI", "pc": 27, + "op": "JUMPI", + "gas": 2078731, + "gasCost": 10, + "depth": 1, "stack": [ "0x0", "0xac" ] }, { - "depth": 1, - "gas": 2078409, - "gasCost": 3, - "op": "PUSH1", "pc": 28, + "op": "PUSH1", + "gas": 2078721, + "gasCost": 3, + "depth": 1, "stack": [] }, { - "depth": 1, - "gas": 2078406, - "gasCost": 3, - "op": "CALLDATALOAD", "pc": 30, + "op": "CALLDATALOAD", + "gas": 2078718, + "gasCost": 3, + "depth": 1, "stack": [ "0x0" ] }, { - "depth": 1, - "gas": 2078403, - "gasCost": 3, - "op": "PUSH1", "pc": 31, + "op": "PUSH1", + "gas": 2078715, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c39400000000000000000000000000000000000000000000000000000000" ] }, { - "depth": 1, - "gas": 2078400, - "gasCost": 3, - "op": "SHR", "pc": 33, + "op": "SHR", + "gas": 2078712, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c39400000000000000000000000000000000000000000000000000000000", "0xe0" ] }, { - "depth": 1, - "gas": 2078397, - "gasCost": 3, - "op": "DUP1", "pc": 34, + "op": "DUP1", + "gas": 2078709, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394" ] }, { - "depth": 1, - "gas": 2078394, - "gasCost": 3, - "op": "PUSH4", "pc": 35, + "op": "PUSH4", + "gas": 2078706, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x7f29c394" ] }, { - "depth": 1, - "gas": 2078391, - "gasCost": 3, - "op": "GT", "pc": 40, + "op": "GT", + "gas": 2078703, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x7f29c394", @@ -227,22 +227,22 @@ ] }, { - "depth": 1, - "gas": 2078388, - "gasCost": 3, - "op": "PUSH3", "pc": 41, + "op": "PUSH3", + "gas": 2078700, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x1" ] }, { - "depth": 1, - "gas": 2078385, - "gasCost": 10, - "op": "JUMPI", "pc": 45, + "op": "JUMPI", + "gas": 2078697, + "gasCost": 10, + "depth": 1, "stack": [ "0x7f29c394", "0x1", @@ -250,42 +250,42 @@ ] }, { - "depth": 1, - "gas": 2078375, - "gasCost": 1, - "op": "JUMPDEST", "pc": 111, + "op": "JUMPDEST", + "gas": 2078687, + "gasCost": 1, + "depth": 1, "stack": [ "0x7f29c394" ] }, { - "depth": 1, - "gas": 2078374, - "gasCost": 3, - "op": "DUP1", "pc": 112, + "op": "DUP1", + "gas": 2078686, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394" ] }, { - "depth": 1, - "gas": 2078371, - "gasCost": 3, - "op": "PUSH4", "pc": 113, + "op": "PUSH4", + "gas": 2078683, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x7f29c394" ] }, { - "depth": 1, - "gas": 2078368, - "gasCost": 3, - "op": "EQ", "pc": 118, + "op": "EQ", + "gas": 2078680, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x7f29c394", @@ -293,22 +293,22 @@ ] }, { - "depth": 1, - "gas": 2078365, - "gasCost": 3, - "op": "PUSH3", "pc": 119, + "op": "PUSH3", + "gas": 2078677, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x0" ] }, { - "depth": 1, - "gas": 2078362, - "gasCost": 10, - "op": "JUMPI", "pc": 123, + "op": "JUMPI", + "gas": 2078674, + "gasCost": 10, + "depth": 1, "stack": [ "0x7f29c394", "0x0", @@ -316,32 +316,32 @@ ] }, { - "depth": 1, - "gas": 2078352, - "gasCost": 3, - "op": "DUP1", "pc": 124, + "op": "DUP1", + "gas": 2078664, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394" ] }, { - "depth": 1, - "gas": 2078349, - "gasCost": 3, - "op": "PUSH4", "pc": 125, + "op": "PUSH4", + "gas": 2078661, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x7f29c394" ] }, { - "depth": 1, - "gas": 2078346, - "gasCost": 3, - "op": "EQ", "pc": 130, + "op": "EQ", + "gas": 2078658, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x7f29c394", @@ -349,22 +349,22 @@ ] }, { - "depth": 1, - "gas": 2078343, - "gasCost": 3, - "op": "PUSH3", "pc": 131, + "op": "PUSH3", + "gas": 2078655, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x0" ] }, { - "depth": 1, - "gas": 2078340, - "gasCost": 10, - "op": "JUMPI", "pc": 135, + "op": "JUMPI", + "gas": 2078652, + "gasCost": 10, + "depth": 1, "stack": [ "0x7f29c394", "0x0", @@ -372,32 +372,32 @@ ] }, { - "depth": 1, - "gas": 2078330, - "gasCost": 3, - "op": "DUP1", "pc": 136, + "op": "DUP1", + "gas": 2078642, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394" ] }, { - "depth": 1, - "gas": 2078327, - "gasCost": 3, - "op": "PUSH4", "pc": 137, + "op": "PUSH4", + "gas": 2078639, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x7f29c394" ] }, { - "depth": 1, - "gas": 2078324, - "gasCost": 3, - "op": "EQ", "pc": 142, + "op": "EQ", + "gas": 2078636, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x7f29c394", @@ -405,22 +405,22 @@ ] }, { - "depth": 1, - "gas": 2078321, - "gasCost": 3, - "op": "PUSH3", "pc": 143, + "op": "PUSH3", + "gas": 2078633, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x0" ] }, { - "depth": 1, - "gas": 2078318, - "gasCost": 10, - "op": "JUMPI", "pc": 147, + "op": "JUMPI", + "gas": 2078630, + "gasCost": 10, + "depth": 1, "stack": [ "0x7f29c394", "0x0", @@ -428,55 +428,55 @@ ] }, { - "depth": 1, - "gas": 2078308, - "gasCost": 3, - "op": "DUP1", "pc": 148, + "op": "DUP1", + "gas": 2078620, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394" ] }, { - "depth": 1, - "gas": 2078305, - "gasCost": 3, - "op": "PUSH4", "pc": 149, + "op": "PUSH4", + "gas": 2078617, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x7f29c394" ] }, { - "depth": 1, - "gas": 2078302, - "gasCost": 3, - "op": "EQ", "pc": 154, + "op": "EQ", + "gas": 2078614, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x7f29c394", "0x3aa18088" ] }, - { - "depth": 1, - "gas": 2078299, - "gasCost": 3, - "op": "PUSH3", + { "pc": 155, + "op": "PUSH3", + "gas": 2078611, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x0" ] }, { - "depth": 1, - "gas": 2078296, - "gasCost": 10, - "op": "JUMPI", "pc": 159, + "op": "JUMPI", + "gas": 2078608, + "gasCost": 10, + "depth": 1, "stack": [ "0x7f29c394", "0x0", @@ -484,32 +484,32 @@ ] }, { - "depth": 1, - "gas": 2078286, - "gasCost": 3, - "op": "DUP1", "pc": 160, + "op": "DUP1", + "gas": 2078598, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394" ] }, { - "depth": 1, - "gas": 2078283, - "gasCost": 3, - "op": "PUSH4", "pc": 161, + "op": "PUSH4", + "gas": 2078595, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x7f29c394" ] }, { - "depth": 1, - "gas": 2078280, - "gasCost": 3, - "op": "EQ", "pc": 166, + "op": "EQ", + "gas": 2078592, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x7f29c394", @@ -517,22 +517,22 @@ ] }, { - "depth": 1, - "gas": 2078277, - "gasCost": 3, - "op": "PUSH3", "pc": 167, + "op": "PUSH3", + "gas": 2078589, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x1" ] }, { - "depth": 1, - "gas": 2078274, - "gasCost": 10, - "op": "JUMPI", "pc": 171, + "op": "JUMPI", + "gas": 2078586, + "gasCost": 10, + "depth": 1, "stack": [ "0x7f29c394", "0x1", @@ -540,42 +540,42 @@ ] }, { - "depth": 1, - "gas": 2078264, - "gasCost": 1, - "op": "JUMPDEST", "pc": 353, + "op": "JUMPDEST", + "gas": 2078576, + "gasCost": 1, + "depth": 1, "stack": [ "0x7f29c394" ] }, { - "depth": 1, - "gas": 2078263, - "gasCost": 3, - "op": "PUSH3", "pc": 354, + "op": "PUSH3", + "gas": 2078575, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394" ] }, { - "depth": 1, - "gas": 2078260, - "gasCost": 3, - "op": "PUSH1", "pc": 358, + "op": "PUSH1", + "gas": 2078572, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f" ] }, { - "depth": 1, - "gas": 2078257, - "gasCost": 3, - "op": "DUP1", "pc": 360, + "op": "DUP1", + "gas": 2078569, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -583,11 +583,11 @@ ] }, { - "depth": 1, - "gas": 2078254, - "gasCost": 2, - "op": "CALLDATASIZE", "pc": 361, + "op": "CALLDATASIZE", + "gas": 2078566, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -596,11 +596,11 @@ ] }, { - "depth": 1, - "gas": 2078252, - "gasCost": 3, - "op": "SUB", "pc": 362, + "op": "SUB", + "gas": 2078564, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -610,11 +610,11 @@ ] }, { - "depth": 1, - "gas": 2078249, - "gasCost": 3, - "op": "DUP2", "pc": 363, + "op": "DUP2", + "gas": 2078561, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -623,11 +623,11 @@ ] }, { - "depth": 1, - "gas": 2078246, - "gasCost": 3, - "op": "ADD", "pc": 364, + "op": "ADD", + "gas": 2078558, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -637,11 +637,11 @@ ] }, { - "depth": 1, - "gas": 2078243, - "gasCost": 3, - "op": "SWAP1", "pc": 365, + "op": "SWAP1", + "gas": 2078555, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -650,11 +650,11 @@ ] }, { - "depth": 1, - "gas": 2078240, - "gasCost": 3, - "op": "PUSH3", "pc": 366, + "op": "PUSH3", + "gas": 2078552, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -663,11 +663,11 @@ ] }, { - "depth": 1, - "gas": 2078237, - "gasCost": 3, - "op": "SWAP2", "pc": 370, + "op": "SWAP2", + "gas": 2078549, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -677,11 +677,11 @@ ] }, { - "depth": 1, - "gas": 2078234, - "gasCost": 3, - "op": "SWAP1", "pc": 371, + "op": "SWAP1", + "gas": 2078546, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -691,11 +691,11 @@ ] }, { - "depth": 1, - "gas": 2078231, - "gasCost": 3, - "op": "PUSH3", "pc": 372, + "op": "PUSH3", + "gas": 2078543, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -705,26 +705,26 @@ ] }, { - "depth": 1, - "gas": 2078228, - "gasCost": 8, - "op": "JUMP", "pc": 376, + "op": "JUMP", + "gas": 2078540, + "gasCost": 8, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x179", "0x24", "0x4", - "0xa0a" + "0xa2c" ] }, { - "depth": 1, - "gas": 2078220, - "gasCost": 1, + "pc": 2604, "op": "JUMPDEST", - "pc": 2570, + "gas": 2078532, + "gasCost": 1, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -734,11 +734,11 @@ ] }, { - "depth": 1, - "gas": 2078219, - "gasCost": 3, + "pc": 2605, "op": "PUSH1", - "pc": 2571, + "gas": 2078531, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -748,11 +748,11 @@ ] }, { - "depth": 1, - "gas": 2078216, - "gasCost": 3, + "pc": 2607, "op": "PUSH1", - "pc": 2573, + "gas": 2078528, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -763,11 +763,11 @@ ] }, { - "depth": 1, - "gas": 2078213, - "gasCost": 3, + "pc": 2609, "op": "DUP3", - "pc": 2575, + "gas": 2078525, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -779,11 +779,11 @@ ] }, { - "depth": 1, - "gas": 2078210, - "gasCost": 3, + "pc": 2610, "op": "DUP5", - "pc": 2576, + "gas": 2078522, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -796,11 +796,11 @@ ] }, { - "depth": 1, - "gas": 2078207, - "gasCost": 3, + "pc": 2611, "op": "SUB", - "pc": 2577, + "gas": 2078519, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -814,11 +814,11 @@ ] }, { - "depth": 1, - "gas": 2078204, - "gasCost": 3, + "pc": 2612, "op": "SLT", - "pc": 2578, + "gas": 2078516, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -831,11 +831,11 @@ ] }, { - "depth": 1, - "gas": 2078201, - "gasCost": 3, + "pc": 2613, "op": "ISZERO", - "pc": 2579, + "gas": 2078513, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -847,11 +847,11 @@ ] }, { - "depth": 1, - "gas": 2078198, - "gasCost": 3, + "pc": 2614, "op": "PUSH3", - "pc": 2580, + "gas": 2078510, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -863,11 +863,11 @@ ] }, { - "depth": 1, - "gas": 2078195, - "gasCost": 10, + "pc": 2618, "op": "JUMPI", - "pc": 2584, + "gas": 2078507, + "gasCost": 10, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -876,15 +876,15 @@ "0x4", "0x0", "0x1", - "0xa23" + "0xa45" ] }, { - "depth": 1, - "gas": 2078185, - "gasCost": 1, + "pc": 2629, "op": "JUMPDEST", - "pc": 2595, + "gas": 2078497, + "gasCost": 1, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -895,11 +895,11 @@ ] }, { - "depth": 1, - "gas": 2078184, - "gasCost": 3, + "pc": 2630, "op": "PUSH1", - "pc": 2596, + "gas": 2078496, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -910,11 +910,11 @@ ] }, { - "depth": 1, - "gas": 2078181, - "gasCost": 3, + "pc": 2632, "op": "PUSH3", - "pc": 2598, + "gas": 2078493, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -926,11 +926,11 @@ ] }, { - "depth": 1, - "gas": 2078178, - "gasCost": 3, + "pc": 2636, "op": "DUP5", - "pc": 2602, + "gas": 2078490, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -939,15 +939,15 @@ "0x4", "0x0", "0x0", - "0xa33" + "0xa55" ] }, { - "depth": 1, - "gas": 2078175, - "gasCost": 3, + "pc": 2637, "op": "DUP3", - "pc": 2603, + "gas": 2078487, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -956,16 +956,16 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24" ] }, { - "depth": 1, - "gas": 2078172, - "gasCost": 3, + "pc": 2638, "op": "DUP6", - "pc": 2604, + "gas": 2078484, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -974,17 +974,17 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x0" ] }, { - "depth": 1, - "gas": 2078169, - "gasCost": 3, + "pc": 2639, "op": "ADD", - "pc": 2605, + "gas": 2078481, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -993,18 +993,18 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x0", "0x4" ] }, { - "depth": 1, - "gas": 2078166, - "gasCost": 3, + "pc": 2640, "op": "PUSH3", - "pc": 2606, + "gas": 2078478, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -1013,17 +1013,17 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4" ] }, { - "depth": 1, - "gas": 2078163, - "gasCost": 8, + "pc": 2644, "op": "JUMP", - "pc": 2610, + "gas": 2078475, + "gasCost": 8, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -1032,18 +1032,18 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", - "0x9f3" + "0xa15" ] }, { - "depth": 1, - "gas": 2078155, - "gasCost": 1, + "pc": 2581, "op": "JUMPDEST", - "pc": 2547, + "gas": 2078467, + "gasCost": 1, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -1052,17 +1052,17 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4" ] }, { - "depth": 1, - "gas": 2078154, - "gasCost": 3, + "pc": 2582, "op": "PUSH1", - "pc": 2548, + "gas": 2078466, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -1071,17 +1071,17 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4" ] }, { - "depth": 1, - "gas": 2078151, - "gasCost": 3, + "pc": 2584, "op": "DUP2", - "pc": 2550, + "gas": 2078463, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -1090,18 +1090,18 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x0" ] }, { - "depth": 1, - "gas": 2078148, - "gasCost": 3, + "pc": 2585, "op": "CALLDATALOAD", - "pc": 2551, + "gas": 2078460, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -1110,7 +1110,7 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x0", @@ -1118,11 +1118,11 @@ ] }, { - "depth": 1, - "gas": 2078145, - "gasCost": 3, + "pc": 2586, "op": "SWAP1", - "pc": 2552, + "gas": 2078457, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -1131,7 +1131,7 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x0", @@ -1139,11 +1139,11 @@ ] }, { - "depth": 1, - "gas": 2078142, - "gasCost": 2, + "pc": 2587, "op": "POP", - "pc": 2553, + "gas": 2078454, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -1152,7 +1152,7 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8", @@ -1160,11 +1160,11 @@ ] }, { - "depth": 1, - "gas": 2078140, - "gasCost": 3, + "pc": 2588, "op": "PUSH3", - "pc": 2554, + "gas": 2078452, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -1173,18 +1173,18 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8" ] }, { - "depth": 1, - "gas": 2078137, - "gasCost": 3, + "pc": 2592, "op": "DUP2", - "pc": 2558, + "gas": 2078449, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -1193,19 +1193,19 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8", - "0xa04" + "0xa26" ] }, { - "depth": 1, - "gas": 2078134, - "gasCost": 3, + "pc": 2593, "op": "PUSH3", - "pc": 2559, + "gas": 2078446, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -1214,20 +1214,20 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8", - "0xa04", + "0xa26", "0x3e8" ] }, { - "depth": 1, - "gas": 2078131, - "gasCost": 8, + "pc": 2597, "op": "JUMP", - "pc": 2563, + "gas": 2078443, + "gasCost": 8, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -1236,21 +1236,21 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8", - "0xa04", + "0xa26", "0x3e8", - "0x9d9" + "0x9fb" ] }, { - "depth": 1, - "gas": 2078123, - "gasCost": 1, + "pc": 2555, "op": "JUMPDEST", - "pc": 2521, + "gas": 2078435, + "gasCost": 1, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -1259,20 +1259,20 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8", - "0xa04", + "0xa26", "0x3e8" ] }, { - "depth": 1, - "gas": 2078122, - "gasCost": 3, + "pc": 2556, "op": "PUSH3", - "pc": 2522, + "gas": 2078434, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -1281,20 +1281,20 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8", - "0xa04", + "0xa26", "0x3e8" ] }, { - "depth": 1, - "gas": 2078119, - "gasCost": 3, + "pc": 2560, "op": "DUP2", - "pc": 2526, + "gas": 2078431, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -1303,21 +1303,21 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8", - "0xa04", + "0xa26", "0x3e8", - "0x9e4" + "0xa06" ] }, { - "depth": 1, - "gas": 2078116, - "gasCost": 3, + "pc": 2561, "op": "PUSH3", - "pc": 2527, + "gas": 2078428, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -1326,22 +1326,22 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8", - "0xa04", + "0xa26", "0x3e8", - "0x9e4", + "0xa06", "0x3e8" ] }, { - "depth": 1, - "gas": 2078113, - "gasCost": 8, + "pc": 2565, "op": "JUMP", - "pc": 2531, + "gas": 2078425, + "gasCost": 8, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -1350,23 +1350,23 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8", - "0xa04", + "0xa26", "0x3e8", - "0x9e4", + "0xa06", "0x3e8", - "0x95a" + "0x97c" ] }, { - "depth": 1, - "gas": 2078105, - "gasCost": 1, + "pc": 2428, "op": "JUMPDEST", - "pc": 2394, + "gas": 2078417, + "gasCost": 1, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -1375,22 +1375,22 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8", - "0xa04", + "0xa26", "0x3e8", - "0x9e4", + "0xa06", "0x3e8" ] }, { - "depth": 1, - "gas": 2078104, - "gasCost": 3, + "pc": 2429, "op": "PUSH1", - "pc": 2395, + "gas": 2078416, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -1399,22 +1399,22 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8", - "0xa04", + "0xa26", "0x3e8", - "0x9e4", + "0xa06", "0x3e8" ] }, { - "depth": 1, - "gas": 2078101, - "gasCost": 3, + "pc": 2431, "op": "DUP2", - "pc": 2397, + "gas": 2078413, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -1423,23 +1423,23 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8", - "0xa04", + "0xa26", "0x3e8", - "0x9e4", + "0xa06", "0x3e8", "0x0" ] }, { - "depth": 1, - "gas": 2078098, - "gasCost": 3, + "pc": 2432, "op": "SWAP1", - "pc": 2398, + "gas": 2078410, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -1448,24 +1448,24 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8", - "0xa04", + "0xa26", "0x3e8", - "0x9e4", + "0xa06", "0x3e8", "0x0", "0x3e8" ] }, { - "depth": 1, - "gas": 2078095, - "gasCost": 2, + "pc": 2433, "op": "POP", - "pc": 2399, + "gas": 2078407, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -1474,24 +1474,24 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8", - "0xa04", + "0xa26", "0x3e8", - "0x9e4", + "0xa06", "0x3e8", "0x3e8", "0x0" ] }, { - "depth": 1, - "gas": 2078093, - "gasCost": 3, + "pc": 2434, "op": "SWAP2", - "pc": 2400, + "gas": 2078405, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -1500,23 +1500,23 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8", - "0xa04", + "0xa26", "0x3e8", - "0x9e4", + "0xa06", "0x3e8", "0x3e8" ] }, { - "depth": 1, - "gas": 2078090, - "gasCost": 3, + "pc": 2435, "op": "SWAP1", - "pc": 2401, + "gas": 2078402, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -1525,23 +1525,23 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8", - "0xa04", + "0xa26", "0x3e8", "0x3e8", "0x3e8", - "0x9e4" + "0xa06" ] }, { - "depth": 1, - "gas": 2078087, - "gasCost": 2, + "pc": 2436, "op": "POP", - "pc": 2402, + "gas": 2078399, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -1550,23 +1550,23 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8", - "0xa04", + "0xa26", "0x3e8", "0x3e8", - "0x9e4", + "0xa06", "0x3e8" ] }, { - "depth": 1, - "gas": 2078085, - "gasCost": 8, + "pc": 2437, "op": "JUMP", - "pc": 2403, + "gas": 2078397, + "gasCost": 8, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -1575,22 +1575,22 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8", - "0xa04", + "0xa26", "0x3e8", "0x3e8", - "0x9e4" + "0xa06" ] }, { - "depth": 1, - "gas": 2078077, - "gasCost": 1, + "pc": 2566, "op": "JUMPDEST", - "pc": 2532, + "gas": 2078389, + "gasCost": 1, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -1599,21 +1599,21 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8", - "0xa04", + "0xa26", "0x3e8", "0x3e8" ] }, { - "depth": 1, - "gas": 2078076, - "gasCost": 3, + "pc": 2567, "op": "DUP2", - "pc": 2533, + "gas": 2078388, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -1622,21 +1622,21 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8", - "0xa04", + "0xa26", "0x3e8", "0x3e8" ] }, { - "depth": 1, - "gas": 2078073, - "gasCost": 3, + "pc": 2568, "op": "EQ", - "pc": 2534, + "gas": 2078385, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -1645,22 +1645,22 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8", - "0xa04", + "0xa26", "0x3e8", "0x3e8", "0x3e8" ] }, { - "depth": 1, - "gas": 2078070, - "gasCost": 3, + "pc": 2569, "op": "PUSH3", - "pc": 2535, + "gas": 2078382, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -1669,21 +1669,21 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8", - "0xa04", + "0xa26", "0x3e8", "0x1" ] }, { - "depth": 1, - "gas": 2078067, - "gasCost": 10, + "pc": 2573, "op": "JUMPI", - "pc": 2539, + "gas": 2078379, + "gasCost": 10, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -1692,22 +1692,22 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8", - "0xa04", + "0xa26", "0x3e8", "0x1", - "0x9f0" + "0xa12" ] }, { - "depth": 1, - "gas": 2078057, - "gasCost": 1, + "pc": 2578, "op": "JUMPDEST", - "pc": 2544, + "gas": 2078369, + "gasCost": 1, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -1716,20 +1716,20 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8", - "0xa04", + "0xa26", "0x3e8" ] }, { - "depth": 1, - "gas": 2078056, - "gasCost": 2, + "pc": 2579, "op": "POP", - "pc": 2545, + "gas": 2078368, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -1738,20 +1738,20 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8", - "0xa04", + "0xa26", "0x3e8" ] }, { - "depth": 1, - "gas": 2078054, - "gasCost": 8, + "pc": 2580, "op": "JUMP", - "pc": 2546, + "gas": 2078366, + "gasCost": 8, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -1760,19 +1760,19 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8", - "0xa04" + "0xa26" ] }, { - "depth": 1, - "gas": 2078046, - "gasCost": 1, + "pc": 2598, "op": "JUMPDEST", - "pc": 2564, + "gas": 2078358, + "gasCost": 1, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -1781,18 +1781,18 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8" ] }, { - "depth": 1, - "gas": 2078045, - "gasCost": 3, + "pc": 2599, "op": "SWAP3", - "pc": 2565, + "gas": 2078357, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -1801,18 +1801,18 @@ "0x4", "0x0", "0x0", - "0xa33", + "0xa55", "0x24", "0x4", "0x3e8" ] }, { - "depth": 1, - "gas": 2078042, - "gasCost": 3, + "pc": 2600, "op": "SWAP2", - "pc": 2566, + "gas": 2078354, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -1824,15 +1824,15 @@ "0x3e8", "0x24", "0x4", - "0xa33" + "0xa55" ] }, { - "depth": 1, - "gas": 2078039, - "gasCost": 2, + "pc": 2601, "op": "POP", - "pc": 2567, + "gas": 2078351, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -1842,17 +1842,17 @@ "0x0", "0x0", "0x3e8", - "0xa33", + "0xa55", "0x4", "0x24" ] }, { - "depth": 1, - "gas": 2078037, - "gasCost": 2, + "pc": 2602, "op": "POP", - "pc": 2568, + "gas": 2078349, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -1862,16 +1862,16 @@ "0x0", "0x0", "0x3e8", - "0xa33", + "0xa55", "0x4" ] }, { - "depth": 1, - "gas": 2078035, - "gasCost": 8, + "pc": 2603, "op": "JUMP", - "pc": 2569, + "gas": 2078347, + "gasCost": 8, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -1881,15 +1881,15 @@ "0x0", "0x0", "0x3e8", - "0xa33" + "0xa55" ] }, { - "depth": 1, - "gas": 2078027, - "gasCost": 1, + "pc": 2645, "op": "JUMPDEST", - "pc": 2611, + "gas": 2078339, + "gasCost": 1, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -1902,11 +1902,11 @@ ] }, { - "depth": 1, - "gas": 2078026, - "gasCost": 3, + "pc": 2646, "op": "SWAP2", - "pc": 2612, + "gas": 2078338, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -1919,11 +1919,11 @@ ] }, { - "depth": 1, - "gas": 2078023, - "gasCost": 2, + "pc": 2647, "op": "POP", - "pc": 2613, + "gas": 2078335, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -1936,11 +1936,11 @@ ] }, { - "depth": 1, - "gas": 2078021, - "gasCost": 2, + "pc": 2648, "op": "POP", - "pc": 2614, + "gas": 2078333, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -1952,11 +1952,11 @@ ] }, { - "depth": 1, - "gas": 2078019, - "gasCost": 3, + "pc": 2649, "op": "SWAP3", - "pc": 2615, + "gas": 2078331, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -1967,11 +1967,11 @@ ] }, { - "depth": 1, - "gas": 2078016, - "gasCost": 3, + "pc": 2650, "op": "SWAP2", - "pc": 2616, + "gas": 2078328, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -1982,11 +1982,11 @@ ] }, { - "depth": 1, - "gas": 2078013, - "gasCost": 2, + "pc": 2651, "op": "POP", - "pc": 2617, + "gas": 2078325, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -1997,11 +1997,11 @@ ] }, { - "depth": 1, - "gas": 2078011, - "gasCost": 2, + "pc": 2652, "op": "POP", - "pc": 2618, + "gas": 2078323, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -2011,11 +2011,11 @@ ] }, { - "depth": 1, - "gas": 2078009, - "gasCost": 8, + "pc": 2653, "op": "JUMP", - "pc": 2619, + "gas": 2078321, + "gasCost": 8, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -2024,11 +2024,11 @@ ] }, { - "depth": 1, - "gas": 2078001, - "gasCost": 1, - "op": "JUMPDEST", "pc": 377, + "op": "JUMPDEST", + "gas": 2078313, + "gasCost": 1, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -2036,11 +2036,11 @@ ] }, { - "depth": 1, - "gas": 2078000, - "gasCost": 3, - "op": "PUSH3", "pc": 378, + "op": "PUSH3", + "gas": 2078312, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -2048,24 +2048,24 @@ ] }, { - "depth": 1, - "gas": 2077997, - "gasCost": 8, - "op": "JUMP", "pc": 382, + "op": "JUMP", + "gas": 2078309, + "gasCost": 8, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", - "0x49e" + "0x4ae" ] }, { - "depth": 1, - "gas": 2077989, - "gasCost": 1, + "pc": 1198, "op": "JUMPDEST", - "pc": 1182, + "gas": 2078301, + "gasCost": 1, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -2073,11 +2073,11 @@ ] }, { - "depth": 1, - "gas": 2077988, - "gasCost": 3, + "pc": 1199, "op": "PUSH1", - "pc": 1183, + "gas": 2078300, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -2085,11 +2085,11 @@ ] }, { - "depth": 1, - "gas": 2077985, - "gasCost": 2, + "pc": 1201, "op": "ADDRESS", - "pc": 1185, + "gas": 2078297, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -2098,11 +2098,11 @@ ] }, { - "depth": 1, - "gas": 2077983, - "gasCost": 3, + "pc": 1202, "op": "PUSH20", - "pc": 1186, + "gas": 2078295, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -2112,11 +2112,11 @@ ] }, { - "depth": 1, - "gas": 2077980, - "gasCost": 3, + "pc": 1223, "op": "AND", - "pc": 1207, + "gas": 2078292, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -2127,11 +2127,11 @@ ] }, { - "depth": 1, - "gas": 2077977, - "gasCost": 3, + "pc": 1224, "op": "PUSH4", - "pc": 1208, + "gas": 2078289, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -2141,11 +2141,11 @@ ] }, { - "depth": 1, - "gas": 2077974, - "gasCost": 3, + "pc": 1229, "op": "PUSH1", - "pc": 1213, + "gas": 2078286, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -2156,11 +2156,11 @@ ] }, { - "depth": 1, - "gas": 2077971, - "gasCost": 3, + "pc": 1231, "op": "MLOAD", - "pc": 1215, + "gas": 2078283, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -2172,11 +2172,11 @@ ] }, { - "depth": 1, - "gas": 2077968, - "gasCost": 3, + "pc": 1232, "op": "DUP2", - "pc": 1216, + "gas": 2078280, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -2188,11 +2188,11 @@ ] }, { - "depth": 1, - "gas": 2077965, - "gasCost": 3, + "pc": 1233, "op": "PUSH4", - "pc": 1217, + "gas": 2078277, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -2205,11 +2205,11 @@ ] }, { - "depth": 1, - "gas": 2077962, - "gasCost": 3, + "pc": 1238, "op": "AND", - "pc": 1222, + "gas": 2078274, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -2223,11 +2223,11 @@ ] }, { - "depth": 1, - "gas": 2077959, - "gasCost": 3, + "pc": 1239, "op": "PUSH1", - "pc": 1223, + "gas": 2078271, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -2240,11 +2240,11 @@ ] }, { - "depth": 1, - "gas": 2077956, - "gasCost": 3, + "pc": 1241, "op": "SHL", - "pc": 1225, + "gas": 2078268, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -2258,11 +2258,11 @@ ] }, { - "depth": 1, - "gas": 2077953, - "gasCost": 3, + "pc": 1242, "op": "DUP2", - "pc": 1226, + "gas": 2078265, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -2275,11 +2275,11 @@ ] }, { - "depth": 1, - "gas": 2077950, - "gasCost": 9, + "pc": 1243, "op": "MSTORE", - "pc": 1227, + "gas": 2078262, + "gasCost": 9, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -2293,11 +2293,11 @@ ] }, { - "depth": 1, - "gas": 2077941, - "gasCost": 3, + "pc": 1244, "op": "PUSH1", - "pc": 1228, + "gas": 2078253, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -2309,11 +2309,11 @@ ] }, { - "depth": 1, - "gas": 2077938, - "gasCost": 3, + "pc": 1246, "op": "ADD", - "pc": 1230, + "gas": 2078250, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -2326,11 +2326,11 @@ ] }, { - "depth": 1, - "gas": 2077935, - "gasCost": 3, + "pc": 1247, "op": "PUSH1", - "pc": 1231, + "gas": 2078247, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -2342,11 +2342,11 @@ ] }, { - "depth": 1, - "gas": 2077932, - "gasCost": 3, + "pc": 1249, "op": "PUSH1", - "pc": 1233, + "gas": 2078244, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -2359,11 +2359,11 @@ ] }, { - "depth": 1, - "gas": 2077929, - "gasCost": 3, + "pc": 1251, "op": "MLOAD", - "pc": 1235, + "gas": 2078241, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -2377,11 +2377,11 @@ ] }, { - "depth": 1, - "gas": 2077926, - "gasCost": 3, + "pc": 1252, "op": "DUP1", - "pc": 1236, + "gas": 2078238, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -2395,11 +2395,11 @@ ] }, { - "depth": 1, - "gas": 2077923, - "gasCost": 3, + "pc": 1253, "op": "DUP4", - "pc": 1237, + "gas": 2078235, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -2414,11 +2414,11 @@ ] }, { - "depth": 1, - "gas": 2077920, - "gasCost": 3, + "pc": 1254, "op": "SUB", - "pc": 1238, + "gas": 2078232, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -2434,11 +2434,11 @@ ] }, { - "depth": 1, - "gas": 2077917, - "gasCost": 3, + "pc": 1255, "op": "DUP2", - "pc": 1239, + "gas": 2078229, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -2453,11 +2453,11 @@ ] }, { - "depth": 1, - "gas": 2077914, - "gasCost": 3, + "pc": 1256, "op": "DUP7", - "pc": 1240, + "gas": 2078226, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -2473,11 +2473,11 @@ ] }, { - "depth": 1, - "gas": 2077911, - "gasCost": 3, + "pc": 1257, "op": "DUP1", - "pc": 1241, + "gas": 2078223, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -2494,11 +2494,11 @@ ] }, { - "depth": 1, - "gas": 2077908, - "gasCost": 700, + "pc": 1258, "op": "EXTCODESIZE", - "pc": 1242, + "gas": 2078220, + "gasCost": 100, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -2516,11 +2516,11 @@ ] }, { - "depth": 1, - "gas": 2077208, - "gasCost": 3, + "pc": 1259, "op": "ISZERO", - "pc": 1243, + "gas": 2078120, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -2534,15 +2534,15 @@ "0x4", "0x80", "Tracer.address", - "0x1b45" + "0x1bde" ] }, { - "depth": 1, - "gas": 2077205, - "gasCost": 3, + "pc": 1260, "op": "DUP1", - "pc": 1244, + "gas": 2078117, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -2560,11 +2560,11 @@ ] }, { - "depth": 1, - "gas": 2077202, - "gasCost": 3, + "pc": 1261, "op": "ISZERO", - "pc": 1245, + "gas": 2078114, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -2583,11 +2583,11 @@ ] }, { - "depth": 1, - "gas": 2077199, - "gasCost": 3, + "pc": 1262, "op": "PUSH3", - "pc": 1246, + "gas": 2078111, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -2606,11 +2606,11 @@ ] }, { - "depth": 1, - "gas": 2077196, - "gasCost": 10, + "pc": 1266, "op": "JUMPI", - "pc": 1250, + "gas": 2078108, + "gasCost": 10, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -2626,15 +2626,15 @@ "Tracer.address", "0x0", "0x1", - "0x4e7" + "0x4f7" ] }, { - "depth": 1, - "gas": 2077186, - "gasCost": 1, + "pc": 1271, "op": "JUMPDEST", - "pc": 1255, + "gas": 2078098, + "gasCost": 1, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -2652,11 +2652,11 @@ ] }, { - "depth": 1, - "gas": 2077185, - "gasCost": 2, + "pc": 1272, "op": "POP", - "pc": 1256, + "gas": 2078097, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -2674,11 +2674,11 @@ ] }, { - "depth": 1, - "gas": 2077183, - "gasCost": 2, + "pc": 1273, "op": "GAS", - "pc": 1257, + "gas": 2078095, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -2695,11 +2695,11 @@ ] }, { - "depth": 1, - "gas": 2077181, - "gasCost": 1156, + "pc": 1274, "op": "STATICCALL", - "pc": 1258, + "gas": 2078093, + "gasCost": 2045625, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -2713,84 +2713,84 @@ "0x4", "0x80", "Tracer.address", - "0x1fb1fd" + "0x1fb58d" ] }, { - "depth": 2, - "gas": 2044036, - "gasCost": 3, - "op": "PUSH1", "pc": 0, + "op": "PUSH1", + "gas": 2045525, + "gasCost": 3, + "depth": 2, "stack": [] }, { - "depth": 2, - "gas": 2044033, - "gasCost": 3, - "op": "PUSH1", "pc": 2, + "op": "PUSH1", + "gas": 2045522, + "gasCost": 3, + "depth": 2, "stack": [ "0x80" ] }, { - "depth": 2, - "gas": 2044030, - "gasCost": 12, - "op": "MSTORE", "pc": 4, + "op": "MSTORE", + "gas": 2045519, + "gasCost": 12, + "depth": 2, "stack": [ "0x80", "0x40" ] }, { - "depth": 2, - "gas": 2044018, - "gasCost": 2, - "op": "CALLVALUE", "pc": 5, + "op": "CALLVALUE", + "gas": 2045507, + "gasCost": 2, + "depth": 2, "stack": [] }, { - "depth": 2, - "gas": 2044016, - "gasCost": 3, - "op": "DUP1", "pc": 6, + "op": "DUP1", + "gas": 2045505, + "gasCost": 3, + "depth": 2, "stack": [ "0x0" ] }, { - "depth": 2, - "gas": 2044013, - "gasCost": 3, - "op": "ISZERO", "pc": 7, + "op": "ISZERO", + "gas": 2045502, + "gasCost": 3, + "depth": 2, "stack": [ "0x0", "0x0" ] }, { - "depth": 2, - "gas": 2044010, - "gasCost": 3, - "op": "PUSH3", "pc": 8, + "op": "PUSH3", + "gas": 2045499, + "gasCost": 3, + "depth": 2, "stack": [ "0x0", "0x1" ] }, { - "depth": 2, - "gas": 2044007, - "gasCost": 10, - "op": "JUMPI", "pc": 12, + "op": "JUMPI", + "gas": 2045496, + "gasCost": 10, + "depth": 2, "stack": [ "0x0", "0x1", @@ -2798,141 +2798,141 @@ ] }, { - "depth": 2, - "gas": 2043997, - "gasCost": 1, - "op": "JUMPDEST", "pc": 17, + "op": "JUMPDEST", + "gas": 2045486, + "gasCost": 1, + "depth": 2, "stack": [ "0x0" ] }, { - "depth": 2, - "gas": 2043996, - "gasCost": 2, - "op": "POP", "pc": 18, + "op": "POP", + "gas": 2045485, + "gasCost": 2, + "depth": 2, "stack": [ "0x0" ] }, { - "depth": 2, - "gas": 2043994, - "gasCost": 3, - "op": "PUSH1", "pc": 19, + "op": "PUSH1", + "gas": 2045483, + "gasCost": 3, + "depth": 2, "stack": [] }, { - "depth": 2, - "gas": 2043991, - "gasCost": 2, - "op": "CALLDATASIZE", "pc": 21, + "op": "CALLDATASIZE", + "gas": 2045480, + "gasCost": 2, + "depth": 2, "stack": [ "0x4" ] }, { - "depth": 2, - "gas": 2043989, - "gasCost": 3, - "op": "LT", "pc": 22, + "op": "LT", + "gas": 2045478, + "gasCost": 3, + "depth": 2, "stack": [ "0x4", "0x4" ] }, { - "depth": 2, - "gas": 2043986, - "gasCost": 3, - "op": "PUSH3", "pc": 23, + "op": "PUSH3", + "gas": 2045475, + "gasCost": 3, + "depth": 2, "stack": [ "0x0" ] }, { - "depth": 2, - "gas": 2043983, - "gasCost": 10, - "op": "JUMPI", "pc": 27, + "op": "JUMPI", + "gas": 2045472, + "gasCost": 10, + "depth": 2, "stack": [ "0x0", "0xac" ] }, { - "depth": 2, - "gas": 2043973, - "gasCost": 3, - "op": "PUSH1", "pc": 28, + "op": "PUSH1", + "gas": 2045462, + "gasCost": 3, + "depth": 2, "stack": [] }, { - "depth": 2, - "gas": 2043970, - "gasCost": 3, - "op": "CALLDATALOAD", "pc": 30, + "op": "CALLDATALOAD", + "gas": 2045459, + "gasCost": 3, + "depth": 2, "stack": [ "0x0" ] }, - { - "depth": 2, - "gas": 2043967, - "gasCost": 3, - "op": "PUSH1", + { "pc": 31, + "op": "PUSH1", + "gas": 2045456, + "gasCost": 3, + "depth": 2, "stack": [ "0x9295436200000000000000000000000000000000000000000000000000000000" ] }, { - "depth": 2, - "gas": 2043964, - "gasCost": 3, - "op": "SHR", "pc": 33, + "op": "SHR", + "gas": 2045453, + "gasCost": 3, + "depth": 2, "stack": [ "0x9295436200000000000000000000000000000000000000000000000000000000", "0xe0" ] }, { - "depth": 2, - "gas": 2043961, - "gasCost": 3, - "op": "DUP1", "pc": 34, + "op": "DUP1", + "gas": 2045450, + "gasCost": 3, + "depth": 2, "stack": [ "0x92954362" ] }, { - "depth": 2, - "gas": 2043958, - "gasCost": 3, - "op": "PUSH4", "pc": 35, + "op": "PUSH4", + "gas": 2045447, + "gasCost": 3, + "depth": 2, "stack": [ "0x92954362", "0x92954362" ] }, { - "depth": 2, - "gas": 2043955, - "gasCost": 3, - "op": "GT", "pc": 40, + "op": "GT", + "gas": 2045444, + "gasCost": 3, + "depth": 2, "stack": [ "0x92954362", "0x92954362", @@ -2940,22 +2940,22 @@ ] }, { - "depth": 2, - "gas": 2043952, - "gasCost": 3, - "op": "PUSH3", "pc": 41, + "op": "PUSH3", + "gas": 2045441, + "gasCost": 3, + "depth": 2, "stack": [ "0x92954362", "0x0" ] }, { - "depth": 2, - "gas": 2043949, - "gasCost": 10, - "op": "JUMPI", "pc": 45, + "op": "JUMPI", + "gas": 2045438, + "gasCost": 10, + "depth": 2, "stack": [ "0x92954362", "0x0", @@ -2963,32 +2963,32 @@ ] }, { - "depth": 2, - "gas": 2043939, - "gasCost": 3, - "op": "DUP1", "pc": 46, + "op": "DUP1", + "gas": 2045428, + "gasCost": 3, + "depth": 2, "stack": [ "0x92954362" ] }, { - "depth": 2, - "gas": 2043936, - "gasCost": 3, - "op": "PUSH4", "pc": 47, + "op": "PUSH4", + "gas": 2045425, + "gasCost": 3, + "depth": 2, "stack": [ "0x92954362", "0x92954362" ] }, { - "depth": 2, - "gas": 2043933, - "gasCost": 3, - "op": "EQ", "pc": 52, + "op": "EQ", + "gas": 2045422, + "gasCost": 3, + "depth": 2, "stack": [ "0x92954362", "0x92954362", @@ -2996,22 +2996,22 @@ ] }, { - "depth": 2, - "gas": 2043930, - "gasCost": 3, - "op": "PUSH3", "pc": 53, + "op": "PUSH3", + "gas": 2045419, + "gasCost": 3, + "depth": 2, "stack": [ "0x92954362", "0x0" ] }, { - "depth": 2, - "gas": 2043927, - "gasCost": 10, - "op": "JUMPI", "pc": 57, + "op": "JUMPI", + "gas": 2045416, + "gasCost": 10, + "depth": 2, "stack": [ "0x92954362", "0x0", @@ -3019,32 +3019,32 @@ ] }, { - "depth": 2, - "gas": 2043917, - "gasCost": 3, - "op": "DUP1", "pc": 58, + "op": "DUP1", + "gas": 2045406, + "gasCost": 3, + "depth": 2, "stack": [ "0x92954362" ] }, { - "depth": 2, - "gas": 2043914, - "gasCost": 3, - "op": "PUSH4", "pc": 59, + "op": "PUSH4", + "gas": 2045403, + "gasCost": 3, + "depth": 2, "stack": [ "0x92954362", "0x92954362" ] }, { - "depth": 2, - "gas": 2043911, - "gasCost": 3, - "op": "EQ", "pc": 64, + "op": "EQ", + "gas": 2045400, + "gasCost": 3, + "depth": 2, "stack": [ "0x92954362", "0x92954362", @@ -3052,22 +3052,22 @@ ] }, { - "depth": 2, - "gas": 2043908, - "gasCost": 3, - "op": "PUSH3", "pc": 65, + "op": "PUSH3", + "gas": 2045397, + "gasCost": 3, + "depth": 2, "stack": [ "0x92954362", "0x1" ] }, { - "depth": 2, - "gas": 2043905, - "gasCost": 10, - "op": "JUMPI", "pc": 69, + "op": "JUMPI", + "gas": 2045394, + "gasCost": 10, + "depth": 2, "stack": [ "0x92954362", "0x1", @@ -3075,76 +3075,76 @@ ] }, { - "depth": 2, - "gas": 2043895, - "gasCost": 1, - "op": "JUMPDEST", "pc": 419, + "op": "JUMPDEST", + "gas": 2045384, + "gasCost": 1, + "depth": 2, "stack": [ "0x92954362" ] }, { - "depth": 2, - "gas": 2043894, - "gasCost": 3, - "op": "PUSH3", "pc": 420, + "op": "PUSH3", + "gas": 2045383, + "gasCost": 3, + "depth": 2, "stack": [ "0x92954362" ] }, { - "depth": 2, - "gas": 2043891, - "gasCost": 3, - "op": "PUSH3", "pc": 424, + "op": "PUSH3", + "gas": 2045380, + "gasCost": 3, + "depth": 2, "stack": [ "0x92954362", "0x1ad" ] }, { - "depth": 2, - "gas": 2043888, - "gasCost": 8, - "op": "JUMP", "pc": 428, + "op": "JUMP", + "gas": 2045377, + "gasCost": 8, + "depth": 2, "stack": [ "0x92954362", "0x1ad", - "0x7b3" + "0x7c5" ] }, { - "depth": 2, - "gas": 2043880, - "gasCost": 1, + "pc": 1989, "op": "JUMPDEST", - "pc": 1971, + "gas": 2045369, + "gasCost": 1, + "depth": 2, "stack": [ "0x92954362", "0x1ad" ] }, { - "depth": 2, - "gas": 2043879, - "gasCost": 3, + "pc": 1990, "op": "PUSH1", - "pc": 1972, + "gas": 2045368, + "gasCost": 3, + "depth": 2, "stack": [ "0x92954362", "0x1ad" ] }, { - "depth": 2, - "gas": 2043876, - "gasCost": 3, + "pc": 1992, "op": "MLOAD", - "pc": 1974, + "gas": 2045365, + "gasCost": 3, + "depth": 2, "stack": [ "0x92954362", "0x1ad", @@ -3152,11 +3152,11 @@ ] }, { - "depth": 2, - "gas": 2043873, - "gasCost": 3, + "pc": 1993, "op": "PUSH32", - "pc": 1975, + "gas": 2045362, + "gasCost": 3, + "depth": 2, "stack": [ "0x92954362", "0x1ad", @@ -3164,11 +3164,11 @@ ] }, { - "depth": 2, - "gas": 2043870, - "gasCost": 3, + "pc": 2026, "op": "DUP2", - "pc": 2008, + "gas": 2045359, + "gasCost": 3, + "depth": 2, "stack": [ "0x92954362", "0x1ad", @@ -3177,11 +3177,11 @@ ] }, { - "depth": 2, - "gas": 2043867, - "gasCost": 9, + "pc": 2027, "op": "MSTORE", - "pc": 2009, + "gas": 2045356, + "gasCost": 9, + "depth": 2, "stack": [ "0x92954362", "0x1ad", @@ -3191,11 +3191,11 @@ ] }, { - "depth": 2, - "gas": 2043858, - "gasCost": 3, + "pc": 2028, "op": "PUSH1", - "pc": 2010, + "gas": 2045347, + "gasCost": 3, + "depth": 2, "stack": [ "0x92954362", "0x1ad", @@ -3203,11 +3203,11 @@ ] }, { - "depth": 2, - "gas": 2043855, - "gasCost": 3, + "pc": 2030, "op": "ADD", - "pc": 2012, + "gas": 2045344, + "gasCost": 3, + "depth": 2, "stack": [ "0x92954362", "0x1ad", @@ -3216,11 +3216,11 @@ ] }, { - "depth": 2, - "gas": 2043852, - "gasCost": 3, + "pc": 2031, "op": "PUSH3", - "pc": 2013, + "gas": 2045341, + "gasCost": 3, + "depth": 2, "stack": [ "0x92954362", "0x1ad", @@ -3228,110 +3228,110 @@ ] }, { - "depth": 2, - "gas": 2043849, - "gasCost": 3, + "pc": 2035, "op": "SWAP1", - "pc": 2017, + "gas": 2045338, + "gasCost": 3, + "depth": 2, "stack": [ "0x92954362", "0x1ad", "0x84", - "0x7e7" + "0x7f9" ] }, { - "depth": 2, - "gas": 2043846, - "gasCost": 3, + "pc": 2036, "op": "PUSH3", - "pc": 2018, + "gas": 2045335, + "gasCost": 3, + "depth": 2, "stack": [ "0x92954362", "0x1ad", - "0x7e7", + "0x7f9", "0x84" ] }, { - "depth": 2, - "gas": 2043843, - "gasCost": 8, + "pc": 2040, "op": "JUMP", - "pc": 2022, + "gas": 2045332, + "gasCost": 8, + "depth": 2, "stack": [ "0x92954362", "0x1ad", - "0x7e7", + "0x7f9", "0x84", - "0x104e" + "0x10a3" ] }, { - "depth": 2, - "gas": 2043835, - "gasCost": 1, + "pc": 4259, "op": "JUMPDEST", - "pc": 4174, + "gas": 2045324, + "gasCost": 1, + "depth": 2, "stack": [ "0x92954362", "0x1ad", - "0x7e7", + "0x7f9", "0x84" ] }, { - "depth": 2, - "gas": 2043834, - "gasCost": 3, + "pc": 4260, "op": "PUSH1", - "pc": 4175, + "gas": 2045323, + "gasCost": 3, + "depth": 2, "stack": [ "0x92954362", "0x1ad", - "0x7e7", + "0x7f9", "0x84" ] }, { - "depth": 2, - "gas": 2043831, - "gasCost": 3, + "pc": 4262, "op": "PUSH1", - "pc": 4177, + "gas": 2045320, + "gasCost": 3, + "depth": 2, "stack": [ "0x92954362", "0x1ad", - "0x7e7", + "0x7f9", "0x84", "0x0" ] }, { - "depth": 2, - "gas": 2043828, - "gasCost": 3, + "pc": 4264, "op": "DUP3", - "pc": 4179, + "gas": 2045317, + "gasCost": 3, + "depth": 2, "stack": [ "0x92954362", "0x1ad", - "0x7e7", + "0x7f9", "0x84", "0x0", "0x20" ] }, { - "depth": 2, - "gas": 2043825, - "gasCost": 3, + "pc": 4265, "op": "ADD", - "pc": 4180, + "gas": 2045314, + "gasCost": 3, + "depth": 2, "stack": [ "0x92954362", "0x1ad", - "0x7e7", + "0x7f9", "0x84", "0x0", "0x20", @@ -3339,74 +3339,74 @@ ] }, { - "depth": 2, - "gas": 2043822, - "gasCost": 3, + "pc": 4266, "op": "SWAP1", - "pc": 4181, + "gas": 2045311, + "gasCost": 3, + "depth": 2, "stack": [ "0x92954362", "0x1ad", - "0x7e7", + "0x7f9", "0x84", "0x0", "0xa4" ] }, { - "depth": 2, - "gas": 2043819, - "gasCost": 2, + "pc": 4267, "op": "POP", - "pc": 4182, + "gas": 2045308, + "gasCost": 2, + "depth": 2, "stack": [ "0x92954362", "0x1ad", - "0x7e7", + "0x7f9", "0x84", "0xa4", "0x0" ] }, { - "depth": 2, - "gas": 2043817, - "gasCost": 3, + "pc": 4268, "op": "DUP2", - "pc": 4183, + "gas": 2045306, + "gasCost": 3, + "depth": 2, "stack": [ "0x92954362", "0x1ad", - "0x7e7", + "0x7f9", "0x84", "0xa4" ] }, { - "depth": 2, - "gas": 2043814, - "gasCost": 3, + "pc": 4269, "op": "DUP2", - "pc": 4184, + "gas": 2045303, + "gasCost": 3, + "depth": 2, "stack": [ "0x92954362", "0x1ad", - "0x7e7", + "0x7f9", "0x84", "0xa4", "0x84" ] }, { - "depth": 2, - "gas": 2043811, - "gasCost": 3, + "pc": 4270, "op": "SUB", - "pc": 4185, + "gas": 2045300, + "gasCost": 3, + "depth": 2, "stack": [ "0x92954362", "0x1ad", - "0x7e7", + "0x7f9", "0x84", "0xa4", "0x84", @@ -3414,30 +3414,30 @@ ] }, { - "depth": 2, - "gas": 2043808, - "gasCost": 3, + "pc": 4271, "op": "PUSH1", - "pc": 4186, + "gas": 2045297, + "gasCost": 3, + "depth": 2, "stack": [ "0x92954362", "0x1ad", - "0x7e7", + "0x7f9", "0x84", "0xa4", "0x20" ] }, { - "depth": 2, - "gas": 2043805, - "gasCost": 3, + "pc": 4273, "op": "DUP4", - "pc": 4188, + "gas": 2045294, + "gasCost": 3, + "depth": 2, "stack": [ "0x92954362", "0x1ad", - "0x7e7", + "0x7f9", "0x84", "0xa4", "0x20", @@ -3445,15 +3445,15 @@ ] }, { - "depth": 2, - "gas": 2043802, - "gasCost": 3, + "pc": 4274, "op": "ADD", - "pc": 4189, + "gas": 2045291, + "gasCost": 3, + "depth": 2, "stack": [ "0x92954362", "0x1ad", - "0x7e7", + "0x7f9", "0x84", "0xa4", "0x20", @@ -3462,15 +3462,15 @@ ] }, { - "depth": 2, - "gas": 2043799, - "gasCost": 6, + "pc": 4275, "op": "MSTORE", - "pc": 4190, + "gas": 2045288, + "gasCost": 6, + "depth": 2, "stack": [ "0x92954362", "0x1ad", - "0x7e7", + "0x7f9", "0x84", "0xa4", "0x20", @@ -3478,271 +3478,271 @@ ] }, { - "depth": 2, - "gas": 2043793, - "gasCost": 3, + "pc": 4276, "op": "PUSH3", - "pc": 4191, + "gas": 2045282, + "gasCost": 3, + "depth": 2, "stack": [ "0x92954362", "0x1ad", - "0x7e7", + "0x7f9", "0x84", "0xa4" ] }, { - "depth": 2, - "gas": 2043790, - "gasCost": 3, + "pc": 4280, "op": "DUP2", - "pc": 4195, + "gas": 2045279, + "gasCost": 3, + "depth": 2, "stack": [ "0x92954362", "0x1ad", - "0x7e7", + "0x7f9", "0x84", "0xa4", - "0x1069" + "0x10be" ] }, { - "depth": 2, - "gas": 2043787, - "gasCost": 3, + "pc": 4281, "op": "PUSH3", - "pc": 4196, + "gas": 2045276, + "gasCost": 3, + "depth": 2, "stack": [ "0x92954362", "0x1ad", - "0x7e7", + "0x7f9", "0x84", "0xa4", - "0x1069", + "0x10be", "0xa4" ] }, { - "depth": 2, - "gas": 2043784, - "gasCost": 8, + "pc": 4285, "op": "JUMP", - "pc": 4200, + "gas": 2045273, + "gasCost": 8, + "depth": 2, "stack": [ "0x92954362", "0x1ad", - "0x7e7", + "0x7f9", "0x84", "0xa4", - "0x1069", + "0x10be", "0xa4", - "0x1027" + "0x107c" ] }, { - "depth": 2, - "gas": 2043776, - "gasCost": 1, + "pc": 4220, "op": "JUMPDEST", - "pc": 4135, + "gas": 2045265, + "gasCost": 1, + "depth": 2, "stack": [ "0x92954362", "0x1ad", - "0x7e7", + "0x7f9", "0x84", "0xa4", - "0x1069", + "0x10be", "0xa4" ] }, { - "depth": 2, - "gas": 2043775, - "gasCost": 3, + "pc": 4221, "op": "PUSH1", - "pc": 4136, + "gas": 2045264, + "gasCost": 3, + "depth": 2, "stack": [ "0x92954362", "0x1ad", - "0x7e7", + "0x7f9", "0x84", "0xa4", - "0x1069", + "0x10be", "0xa4" ] }, { - "depth": 2, - "gas": 2043772, - "gasCost": 3, + "pc": 4223, "op": "PUSH3", - "pc": 4138, + "gas": 2045261, + "gasCost": 3, + "depth": 2, "stack": [ "0x92954362", "0x1ad", - "0x7e7", + "0x7f9", "0x84", "0xa4", - "0x1069", + "0x10be", "0xa4", "0x0" ] }, { - "depth": 2, - "gas": 2043769, - "gasCost": 3, + "pc": 4227, "op": "PUSH1", - "pc": 4142, + "gas": 2045258, + "gasCost": 3, + "depth": 2, "stack": [ "0x92954362", "0x1ad", - "0x7e7", + "0x7f9", "0x84", "0xa4", - "0x1069", + "0x10be", "0xa4", "0x0", - "0x1036" + "0x108b" ] }, { - "depth": 2, - "gas": 2043766, - "gasCost": 3, + "pc": 4229, "op": "DUP4", - "pc": 4144, + "gas": 2045255, + "gasCost": 3, + "depth": 2, "stack": [ "0x92954362", "0x1ad", - "0x7e7", + "0x7f9", "0x84", "0xa4", - "0x1069", + "0x10be", "0xa4", "0x0", - "0x1036", + "0x108b", "0x17" ] }, { - "depth": 2, - "gas": 2043763, - "gasCost": 3, + "pc": 4230, "op": "PUSH3", - "pc": 4145, + "gas": 2045252, + "gasCost": 3, + "depth": 2, "stack": [ "0x92954362", "0x1ad", - "0x7e7", + "0x7f9", "0x84", "0xa4", - "0x1069", + "0x10be", "0xa4", "0x0", - "0x1036", + "0x108b", "0x17", "0xa4" ] }, { - "depth": 2, - "gas": 2043760, - "gasCost": 8, + "pc": 4234, "op": "JUMP", - "pc": 4149, + "gas": 2045249, + "gasCost": 8, + "depth": 2, "stack": [ "0x92954362", "0x1ad", - "0x7e7", + "0x7f9", "0x84", "0xa4", - "0x1069", + "0x10be", "0xa4", "0x0", - "0x1036", + "0x108b", "0x17", "0xa4", - "0xad3" + "0xaf5" ] }, { - "depth": 2, - "gas": 2043752, - "gasCost": 1, + "pc": 2805, "op": "JUMPDEST", - "pc": 2771, + "gas": 2045241, + "gasCost": 1, + "depth": 2, "stack": [ "0x92954362", "0x1ad", - "0x7e7", + "0x7f9", "0x84", "0xa4", - "0x1069", + "0x10be", "0xa4", "0x0", - "0x1036", + "0x108b", "0x17", "0xa4" ] }, { - "depth": 2, - "gas": 2043751, - "gasCost": 3, + "pc": 2806, "op": "PUSH1", - "pc": 2772, + "gas": 2045240, + "gasCost": 3, + "depth": 2, "stack": [ "0x92954362", "0x1ad", - "0x7e7", + "0x7f9", "0x84", "0xa4", - "0x1069", + "0x10be", "0xa4", "0x0", - "0x1036", + "0x108b", "0x17", "0xa4" ] }, { - "depth": 2, - "gas": 2043748, - "gasCost": 3, + "pc": 2808, "op": "DUP3", - "pc": 2774, + "gas": 2045237, + "gasCost": 3, + "depth": 2, "stack": [ "0x92954362", "0x1ad", - "0x7e7", + "0x7f9", "0x84", "0xa4", - "0x1069", + "0x10be", "0xa4", "0x0", - "0x1036", + "0x108b", "0x17", "0xa4", "0x0" ] }, { - "depth": 2, - "gas": 2043745, - "gasCost": 3, + "pc": 2809, "op": "DUP3", - "pc": 2775, + "gas": 2045234, + "gasCost": 3, + "depth": 2, "stack": [ "0x92954362", "0x1ad", - "0x7e7", + "0x7f9", "0x84", "0xa4", - "0x1069", + "0x10be", "0xa4", "0x0", - "0x1036", + "0x108b", "0x17", "0xa4", "0x0", @@ -3750,21 +3750,21 @@ ] }, { - "depth": 2, - "gas": 2043742, - "gasCost": 6, + "pc": 2810, "op": "MSTORE", - "pc": 2776, + "gas": 2045231, + "gasCost": 6, + "depth": 2, "stack": [ "0x92954362", "0x1ad", - "0x7e7", + "0x7f9", "0x84", "0xa4", - "0x1069", + "0x10be", "0xa4", "0x0", - "0x1036", + "0x108b", "0x17", "0xa4", "0x0", @@ -3773,42 +3773,42 @@ ] }, { - "depth": 2, - "gas": 2043736, - "gasCost": 3, + "pc": 2811, "op": "PUSH1", - "pc": 2777, + "gas": 2045225, + "gasCost": 3, + "depth": 2, "stack": [ "0x92954362", "0x1ad", - "0x7e7", + "0x7f9", "0x84", "0xa4", - "0x1069", + "0x10be", "0xa4", "0x0", - "0x1036", + "0x108b", "0x17", "0xa4", "0x0" ] }, { - "depth": 2, - "gas": 2043733, - "gasCost": 3, + "pc": 2813, "op": "DUP3", - "pc": 2779, + "gas": 2045222, + "gasCost": 3, + "depth": 2, "stack": [ "0x92954362", "0x1ad", - "0x7e7", + "0x7f9", "0x84", "0xa4", - "0x1069", + "0x10be", "0xa4", "0x0", - "0x1036", + "0x108b", "0x17", "0xa4", "0x0", @@ -3816,21 +3816,21 @@ ] }, { - "depth": 2, - "gas": 2043730, - "gasCost": 3, + "pc": 2814, "op": "ADD", - "pc": 2780, + "gas": 2045219, + "gasCost": 3, + "depth": 2, "stack": [ "0x92954362", "0x1ad", - "0x7e7", + "0x7f9", "0x84", "0xa4", - "0x1069", + "0x10be", "0xa4", "0x0", - "0x1036", + "0x108b", "0x17", "0xa4", "0x0", @@ -3839,21 +3839,21 @@ ] }, { - "depth": 2, - "gas": 2043727, - "gasCost": 3, + "pc": 2815, "op": "SWAP1", - "pc": 2781, + "gas": 2045216, + "gasCost": 3, + "depth": 2, "stack": [ "0x92954362", "0x1ad", - "0x7e7", + "0x7f9", "0x84", "0xa4", - "0x1069", + "0x10be", "0xa4", "0x0", - "0x1036", + "0x108b", "0x17", "0xa4", "0x0", @@ -3861,21 +3861,21 @@ ] }, { - "depth": 2, - "gas": 2043724, - "gasCost": 2, + "pc": 2816, "op": "POP", - "pc": 2782, + "gas": 2045213, + "gasCost": 2, + "depth": 2, "stack": [ "0x92954362", "0x1ad", - "0x7e7", + "0x7f9", "0x84", "0xa4", - "0x1069", + "0x10be", "0xa4", "0x0", - "0x1036", + "0x108b", "0x17", "0xa4", "0xc4", @@ -3883,330 +3883,330 @@ ] }, { - "depth": 2, - "gas": 2043722, - "gasCost": 3, + "pc": 2817, "op": "SWAP3", - "pc": 2783, + "gas": 2045211, + "gasCost": 3, + "depth": 2, "stack": [ "0x92954362", "0x1ad", - "0x7e7", + "0x7f9", "0x84", "0xa4", - "0x1069", + "0x10be", "0xa4", "0x0", - "0x1036", + "0x108b", "0x17", "0xa4", "0xc4" ] }, { - "depth": 2, - "gas": 2043719, - "gasCost": 3, + "pc": 2818, "op": "SWAP2", - "pc": 2784, + "gas": 2045208, + "gasCost": 3, + "depth": 2, "stack": [ "0x92954362", "0x1ad", - "0x7e7", + "0x7f9", "0x84", "0xa4", - "0x1069", + "0x10be", "0xa4", "0x0", "0xc4", "0x17", "0xa4", - "0x1036" + "0x108b" ] }, { - "depth": 2, - "gas": 2043716, - "gasCost": 2, + "pc": 2819, "op": "POP", - "pc": 2785, + "gas": 2045205, + "gasCost": 2, + "depth": 2, "stack": [ "0x92954362", "0x1ad", - "0x7e7", + "0x7f9", "0x84", "0xa4", - "0x1069", + "0x10be", "0xa4", "0x0", "0xc4", - "0x1036", + "0x108b", "0xa4", "0x17" ] }, { - "depth": 2, - "gas": 2043714, - "gasCost": 2, + "pc": 2820, "op": "POP", - "pc": 2786, + "gas": 2045203, + "gasCost": 2, + "depth": 2, "stack": [ "0x92954362", "0x1ad", - "0x7e7", + "0x7f9", "0x84", "0xa4", - "0x1069", + "0x10be", "0xa4", "0x0", "0xc4", - "0x1036", + "0x108b", "0xa4" ] }, { - "depth": 2, - "gas": 2043712, - "gasCost": 8, + "pc": 2821, "op": "JUMP", - "pc": 2787, + "gas": 2045201, + "gasCost": 8, + "depth": 2, "stack": [ "0x92954362", "0x1ad", - "0x7e7", + "0x7f9", "0x84", "0xa4", - "0x1069", + "0x10be", "0xa4", "0x0", "0xc4", - "0x1036" + "0x108b" ] }, { - "depth": 2, - "gas": 2043704, - "gasCost": 1, + "pc": 4235, "op": "JUMPDEST", - "pc": 4150, + "gas": 2045193, + "gasCost": 1, + "depth": 2, "stack": [ "0x92954362", "0x1ad", - "0x7e7", + "0x7f9", "0x84", "0xa4", - "0x1069", + "0x10be", "0xa4", "0x0", "0xc4" ] }, { - "depth": 2, - "gas": 2043703, - "gasCost": 3, + "pc": 4236, "op": "SWAP2", - "pc": 4151, + "gas": 2045192, + "gasCost": 3, + "depth": 2, "stack": [ "0x92954362", "0x1ad", - "0x7e7", + "0x7f9", "0x84", "0xa4", - "0x1069", + "0x10be", "0xa4", "0x0", "0xc4" ] }, { - "depth": 2, - "gas": 2043700, - "gasCost": 2, + "pc": 4237, "op": "POP", - "pc": 4152, + "gas": 2045189, + "gasCost": 2, + "depth": 2, "stack": [ "0x92954362", "0x1ad", - "0x7e7", + "0x7f9", "0x84", "0xa4", - "0x1069", + "0x10be", "0xc4", "0x0", "0xa4" ] }, { - "depth": 2, - "gas": 2043698, - "gasCost": 3, + "pc": 4238, "op": "PUSH3", - "pc": 4153, + "gas": 2045187, + "gasCost": 3, + "depth": 2, "stack": [ "0x92954362", "0x1ad", - "0x7e7", + "0x7f9", "0x84", "0xa4", - "0x1069", + "0x10be", "0xc4", "0x0" ] }, { - "depth": 2, - "gas": 2043695, - "gasCost": 3, + "pc": 4242, "op": "DUP3", - "pc": 4157, + "gas": 2045184, + "gasCost": 3, + "depth": 2, "stack": [ "0x92954362", "0x1ad", - "0x7e7", + "0x7f9", "0x84", "0xa4", - "0x1069", + "0x10be", "0xc4", "0x0", - "0x1043" + "0x1098" ] }, { - "depth": 2, - "gas": 2043692, - "gasCost": 3, + "pc": 4243, "op": "PUSH3", - "pc": 4158, + "gas": 2045181, + "gasCost": 3, + "depth": 2, "stack": [ "0x92954362", "0x1ad", - "0x7e7", + "0x7f9", "0x84", "0xa4", - "0x1069", + "0x10be", "0xc4", "0x0", - "0x1043", + "0x1098", "0xc4" ] }, { - "depth": 2, - "gas": 2043689, - "gasCost": 8, + "pc": 4247, "op": "JUMP", - "pc": 4162, + "gas": 2045178, + "gasCost": 8, + "depth": 2, "stack": [ "0x92954362", "0x1ad", - "0x7e7", + "0x7f9", "0x84", "0xa4", - "0x1069", + "0x10be", "0xc4", "0x0", - "0x1043", + "0x1098", "0xc4", - "0xffe" + "0x1053" ] }, { - "depth": 2, - "gas": 2043681, - "gasCost": 1, + "pc": 4179, "op": "JUMPDEST", - "pc": 4094, + "gas": 2045170, + "gasCost": 1, + "depth": 2, "stack": [ "0x92954362", "0x1ad", - "0x7e7", + "0x7f9", "0x84", "0xa4", - "0x1069", + "0x10be", "0xc4", "0x0", - "0x1043", + "0x1098", "0xc4" ] }, { - "depth": 2, - "gas": 2043680, - "gasCost": 3, + "pc": 4180, "op": "PUSH32", - "pc": 4095, + "gas": 2045169, + "gasCost": 3, + "depth": 2, "stack": [ "0x92954362", "0x1ad", - "0x7e7", + "0x7f9", "0x84", "0xa4", - "0x1069", + "0x10be", "0xc4", "0x0", - "0x1043", + "0x1098", "0xc4" ] }, { - "depth": 2, - "gas": 2043677, - "gasCost": 3, + "pc": 4213, "op": "PUSH1", - "pc": 4128, + "gas": 2045166, + "gasCost": 3, + "depth": 2, "stack": [ "0x92954362", "0x1ad", - "0x7e7", + "0x7f9", "0x84", "0xa4", - "0x1069", + "0x10be", "0xc4", "0x0", - "0x1043", + "0x1098", "0xc4", "0x546869732066756e6374696f6e20726576657274656421000000000000000000" ] }, { - "depth": 2, - "gas": 2043674, - "gasCost": 3, + "pc": 4215, "op": "DUP3", - "pc": 4130, + "gas": 2045163, + "gasCost": 3, + "depth": 2, "stack": [ "0x92954362", "0x1ad", - "0x7e7", + "0x7f9", "0x84", "0xa4", - "0x1069", + "0x10be", "0xc4", "0x0", - "0x1043", + "0x1098", "0xc4", "0x546869732066756e6374696f6e20726576657274656421000000000000000000", "0x0" ] }, { - "depth": 2, - "gas": 2043671, - "gasCost": 3, + "pc": 4216, "op": "ADD", - "pc": 4131, + "gas": 2045160, + "gasCost": 3, + "depth": 2, "stack": [ "0x92954362", "0x1ad", - "0x7e7", + "0x7f9", "0x84", "0xa4", - "0x1069", + "0x10be", "0xc4", "0x0", - "0x1043", + "0x1098", "0xc4", "0x546869732066756e6374696f6e20726576657274656421000000000000000000", "0x0", @@ -4214,128 +4214,128 @@ ] }, { - "depth": 2, - "gas": 2043668, - "gasCost": 6, + "pc": 4217, "op": "MSTORE", - "pc": 4132, + "gas": 2045157, + "gasCost": 6, + "depth": 2, "stack": [ "0x92954362", "0x1ad", - "0x7e7", + "0x7f9", "0x84", "0xa4", - "0x1069", + "0x10be", "0xc4", "0x0", - "0x1043", + "0x1098", "0xc4", "0x546869732066756e6374696f6e20726576657274656421000000000000000000", "0xc4" ] }, { - "depth": 2, - "gas": 2043662, - "gasCost": 2, + "pc": 4218, "op": "POP", - "pc": 4133, + "gas": 2045151, + "gasCost": 2, + "depth": 2, "stack": [ "0x92954362", "0x1ad", - "0x7e7", + "0x7f9", "0x84", "0xa4", - "0x1069", + "0x10be", "0xc4", "0x0", - "0x1043", + "0x1098", "0xc4" ] }, { - "depth": 2, - "gas": 2043660, - "gasCost": 8, + "pc": 4219, "op": "JUMP", - "pc": 4134, + "gas": 2045149, + "gasCost": 8, + "depth": 2, "stack": [ "0x92954362", "0x1ad", - "0x7e7", + "0x7f9", "0x84", "0xa4", - "0x1069", + "0x10be", "0xc4", "0x0", - "0x1043" + "0x1098" ] }, { - "depth": 2, - "gas": 2043652, - "gasCost": 1, + "pc": 4248, "op": "JUMPDEST", - "pc": 4163, + "gas": 2045141, + "gasCost": 1, + "depth": 2, "stack": [ "0x92954362", "0x1ad", - "0x7e7", + "0x7f9", "0x84", "0xa4", - "0x1069", + "0x10be", "0xc4", "0x0" ] }, { - "depth": 2, - "gas": 2043651, - "gasCost": 3, + "pc": 4249, "op": "PUSH1", - "pc": 4164, + "gas": 2045140, + "gasCost": 3, + "depth": 2, "stack": [ "0x92954362", "0x1ad", - "0x7e7", + "0x7f9", "0x84", "0xa4", - "0x1069", + "0x10be", "0xc4", "0x0" ] }, { - "depth": 2, - "gas": 2043648, - "gasCost": 3, + "pc": 4251, "op": "DUP3", - "pc": 4166, + "gas": 2045137, + "gasCost": 3, + "depth": 2, "stack": [ "0x92954362", "0x1ad", - "0x7e7", + "0x7f9", "0x84", "0xa4", - "0x1069", + "0x10be", "0xc4", "0x0", "0x20" ] }, { - "depth": 2, - "gas": 2043645, - "gasCost": 3, + "pc": 4252, "op": "ADD", - "pc": 4167, + "gas": 2045134, + "gasCost": 3, + "depth": 2, "stack": [ "0x92954362", "0x1ad", - "0x7e7", + "0x7f9", "0x84", "0xa4", - "0x1069", + "0x10be", "0xc4", "0x0", "0x20", @@ -4343,214 +4343,214 @@ ] }, { - "depth": 2, - "gas": 2043642, - "gasCost": 3, + "pc": 4253, "op": "SWAP1", - "pc": 4168, + "gas": 2045131, + "gasCost": 3, + "depth": 2, "stack": [ "0x92954362", "0x1ad", - "0x7e7", + "0x7f9", "0x84", "0xa4", - "0x1069", + "0x10be", "0xc4", "0x0", "0xe4" ] }, { - "depth": 2, - "gas": 2043639, - "gasCost": 2, + "pc": 4254, "op": "POP", - "pc": 4169, + "gas": 2045128, + "gasCost": 2, + "depth": 2, "stack": [ "0x92954362", "0x1ad", - "0x7e7", + "0x7f9", "0x84", "0xa4", - "0x1069", + "0x10be", "0xc4", "0xe4", "0x0" ] }, { - "depth": 2, - "gas": 2043637, - "gasCost": 3, + "pc": 4255, "op": "SWAP2", - "pc": 4170, + "gas": 2045126, + "gasCost": 3, + "depth": 2, "stack": [ "0x92954362", "0x1ad", - "0x7e7", + "0x7f9", "0x84", "0xa4", - "0x1069", + "0x10be", "0xc4", "0xe4" ] }, { - "depth": 2, - "gas": 2043634, - "gasCost": 3, + "pc": 4256, "op": "SWAP1", - "pc": 4171, + "gas": 2045123, + "gasCost": 3, + "depth": 2, "stack": [ "0x92954362", "0x1ad", - "0x7e7", + "0x7f9", "0x84", "0xa4", "0xe4", "0xc4", - "0x1069" + "0x10be" ] }, { - "depth": 2, - "gas": 2043631, - "gasCost": 2, + "pc": 4257, "op": "POP", - "pc": 4172, + "gas": 2045120, + "gasCost": 2, + "depth": 2, "stack": [ "0x92954362", "0x1ad", - "0x7e7", + "0x7f9", "0x84", "0xa4", "0xe4", - "0x1069", + "0x10be", "0xc4" ] }, { - "depth": 2, - "gas": 2043629, - "gasCost": 8, + "pc": 4258, "op": "JUMP", - "pc": 4173, + "gas": 2045118, + "gasCost": 8, + "depth": 2, "stack": [ "0x92954362", "0x1ad", - "0x7e7", + "0x7f9", "0x84", "0xa4", "0xe4", - "0x1069" + "0x10be" ] }, { - "depth": 2, - "gas": 2043621, - "gasCost": 1, + "pc": 4286, "op": "JUMPDEST", - "pc": 4201, + "gas": 2045110, + "gasCost": 1, + "depth": 2, "stack": [ "0x92954362", "0x1ad", - "0x7e7", + "0x7f9", "0x84", "0xa4", "0xe4" ] }, { - "depth": 2, - "gas": 2043620, - "gasCost": 3, + "pc": 4287, "op": "SWAP1", - "pc": 4202, + "gas": 2045109, + "gasCost": 3, + "depth": 2, "stack": [ "0x92954362", "0x1ad", - "0x7e7", + "0x7f9", "0x84", "0xa4", "0xe4" ] }, { - "depth": 2, - "gas": 2043617, - "gasCost": 2, + "pc": 4288, "op": "POP", - "pc": 4203, + "gas": 2045106, + "gasCost": 2, + "depth": 2, "stack": [ "0x92954362", "0x1ad", - "0x7e7", + "0x7f9", "0x84", "0xe4", "0xa4" ] }, { - "depth": 2, - "gas": 2043615, - "gasCost": 3, + "pc": 4289, "op": "SWAP2", - "pc": 4204, + "gas": 2045104, + "gasCost": 3, + "depth": 2, "stack": [ "0x92954362", "0x1ad", - "0x7e7", + "0x7f9", "0x84", "0xe4" ] }, { - "depth": 2, - "gas": 2043612, - "gasCost": 3, + "pc": 4290, "op": "SWAP1", - "pc": 4205, + "gas": 2045101, + "gasCost": 3, + "depth": 2, "stack": [ "0x92954362", "0x1ad", "0xe4", "0x84", - "0x7e7" + "0x7f9" ] }, { - "depth": 2, - "gas": 2043609, - "gasCost": 2, + "pc": 4291, "op": "POP", - "pc": 4206, + "gas": 2045098, + "gasCost": 2, + "depth": 2, "stack": [ "0x92954362", "0x1ad", "0xe4", - "0x7e7", + "0x7f9", "0x84" ] }, { - "depth": 2, - "gas": 2043607, - "gasCost": 8, + "pc": 4292, "op": "JUMP", - "pc": 4207, + "gas": 2045096, + "gasCost": 8, + "depth": 2, "stack": [ "0x92954362", "0x1ad", "0xe4", - "0x7e7" + "0x7f9" ] }, { - "depth": 2, - "gas": 2043599, - "gasCost": 1, + "pc": 2041, "op": "JUMPDEST", - "pc": 2023, + "gas": 2045088, + "gasCost": 1, + "depth": 2, "stack": [ "0x92954362", "0x1ad", @@ -4558,11 +4558,11 @@ ] }, { - "depth": 2, - "gas": 2043598, - "gasCost": 3, + "pc": 2042, "op": "PUSH1", - "pc": 2024, + "gas": 2045087, + "gasCost": 3, + "depth": 2, "stack": [ "0x92954362", "0x1ad", @@ -4570,11 +4570,11 @@ ] }, { - "depth": 2, - "gas": 2043595, - "gasCost": 3, + "pc": 2044, "op": "MLOAD", - "pc": 2026, + "gas": 2045084, + "gasCost": 3, + "depth": 2, "stack": [ "0x92954362", "0x1ad", @@ -4582,12 +4582,12 @@ "0x40" ] }, - { - "depth": 2, - "gas": 2043592, - "gasCost": 3, + { + "pc": 2045, "op": "DUP1", - "pc": 2027, + "gas": 2045081, + "gasCost": 3, + "depth": 2, "stack": [ "0x92954362", "0x1ad", @@ -4596,11 +4596,11 @@ ] }, { - "depth": 2, - "gas": 2043589, - "gasCost": 3, + "pc": 2046, "op": "SWAP2", - "pc": 2028, + "gas": 2045078, + "gasCost": 3, + "depth": 2, "stack": [ "0x92954362", "0x1ad", @@ -4610,11 +4610,11 @@ ] }, { - "depth": 2, - "gas": 2043586, - "gasCost": 3, + "pc": 2047, "op": "SUB", - "pc": 2029, + "gas": 2045075, + "gasCost": 3, + "depth": 2, "stack": [ "0x92954362", "0x1ad", @@ -4624,11 +4624,11 @@ ] }, { - "depth": 2, - "gas": 2043583, - "gasCost": 3, + "pc": 2048, "op": "SWAP1", - "pc": 2030, + "gas": 2045072, + "gasCost": 3, + "depth": 2, "stack": [ "0x92954362", "0x1ad", @@ -4637,11 +4637,11 @@ ] }, { - "depth": 2, - "gas": 2043580, - "gasCost": 0, + "pc": 2049, "op": "REVERT", - "pc": 2031, + "gas": 2045069, + "gasCost": 0, + "depth": 2, "stack": [ "0x92954362", "0x1ad", @@ -4650,11 +4650,11 @@ ] }, { - "depth": 1, - "gas": 2076025, - "gasCost": 3, + "pc": 1275, "op": "SWAP3", - "pc": 1259, + "gas": 2077537, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -4667,11 +4667,11 @@ ] }, { - "depth": 1, - "gas": 2076022, - "gasCost": 2, + "pc": 1276, "op": "POP", - "pc": 1260, + "gas": 2077534, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -4684,11 +4684,11 @@ ] }, { - "depth": 1, - "gas": 2076020, - "gasCost": 2, + "pc": 1277, "op": "POP", - "pc": 1261, + "gas": 2077532, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -4700,11 +4700,11 @@ ] }, { - "depth": 1, - "gas": 2076018, - "gasCost": 2, + "pc": 1278, "op": "POP", - "pc": 1262, + "gas": 2077530, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -4715,11 +4715,11 @@ ] }, { - "depth": 1, - "gas": 2076016, - "gasCost": 3, + "pc": 1279, "op": "DUP1", - "pc": 1263, + "gas": 2077528, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -4729,11 +4729,11 @@ ] }, { - "depth": 1, - "gas": 2076013, - "gasCost": 3, + "pc": 1280, "op": "ISZERO", - "pc": 1264, + "gas": 2077525, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -4744,11 +4744,11 @@ ] }, { - "depth": 1, - "gas": 2076010, - "gasCost": 3, + "pc": 1281, "op": "PUSH3", - "pc": 1265, + "gas": 2077522, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -4759,11 +4759,11 @@ ] }, { - "depth": 1, - "gas": 2076007, - "gasCost": 10, + "pc": 1285, "op": "JUMPI", - "pc": 1269, + "gas": 2077519, + "gasCost": 10, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -4771,15 +4771,15 @@ "0x0", "0x0", "0x1", - "0x4f9" + "0x509" ] }, { - "depth": 1, - "gas": 2075997, - "gasCost": 1, + "pc": 1289, "op": "JUMPDEST", - "pc": 1273, + "gas": 2077509, + "gasCost": 1, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -4789,11 +4789,11 @@ ] }, { - "depth": 1, - "gas": 2075996, - "gasCost": 3, + "pc": 1290, "op": "PUSH3", - "pc": 1274, + "gas": 2077508, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -4803,26 +4803,26 @@ ] }, { - "depth": 1, - "gas": 2075993, - "gasCost": 10, + "pc": 1294, "op": "JUMPI", - "pc": 1278, + "gas": 2077505, + "gasCost": 10, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", "0x0", - "0x5e1" + "0x5f2" ] }, { - "depth": 1, - "gas": 2075983, - "gasCost": 3, + "pc": 1295, "op": "PUSH3", - "pc": 1279, + "gas": 2077495, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -4831,219 +4831,219 @@ ] }, { - "depth": 1, - "gas": 2075980, - "gasCost": 3, + "pc": 1299, "op": "PUSH3", - "pc": 1283, + "gas": 2077492, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x508" + "0x518" ] }, { - "depth": 1, - "gas": 2075977, - "gasCost": 8, + "pc": 1303, "op": "JUMP", - "pc": 1287, + "gas": 2077489, + "gasCost": 8, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x508", - "0xca8" + "0x518", + "0xcec" ] }, { - "depth": 1, - "gas": 2075969, - "gasCost": 1, + "pc": 3308, "op": "JUMPDEST", - "pc": 3240, + "gas": 2077481, + "gasCost": 1, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x508" + "0x518" ] }, { - "depth": 1, - "gas": 2075968, - "gasCost": 3, + "pc": 3309, "op": "PUSH1", - "pc": 3241, + "gas": 2077480, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x508" + "0x518" ] }, { - "depth": 1, - "gas": 2075965, - "gasCost": 3, + "pc": 3311, "op": "PUSH1", - "pc": 3243, + "gas": 2077477, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x508", + "0x518", "0x0" ] }, { - "depth": 1, - "gas": 2075962, - "gasCost": 2, + "pc": 3313, "op": "RETURNDATASIZE", - "pc": 3245, + "gas": 2077474, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x508", + "0x518", "0x0", "0x3" ] }, { - "depth": 1, - "gas": 2075960, - "gasCost": 3, + "pc": 3314, "op": "GT", - "pc": 3246, + "gas": 2077472, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x508", + "0x518", "0x0", "0x3", "0x64" ] }, { - "depth": 1, - "gas": 2075957, - "gasCost": 3, + "pc": 3315, "op": "ISZERO", - "pc": 3247, + "gas": 2077469, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x508", + "0x518", "0x0", "0x1" ] }, { - "depth": 1, - "gas": 2075954, - "gasCost": 3, + "pc": 3316, "op": "PUSH3", - "pc": 3248, + "gas": 2077466, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x508", + "0x518", "0x0", "0x0" ] }, { - "depth": 1, - "gas": 2075951, - "gasCost": 10, + "pc": 3320, "op": "JUMPI", - "pc": 3252, + "gas": 2077463, + "gasCost": 10, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x508", + "0x518", "0x0", "0x0", - "0xcca" + "0xd0e" ] }, { - "depth": 1, - "gas": 2075941, - "gasCost": 3, + "pc": 3321, "op": "PUSH1", - "pc": 3253, + "gas": 2077453, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x508", + "0x518", "0x0" ] }, { - "depth": 1, - "gas": 2075938, - "gasCost": 3, + "pc": 3323, "op": "PUSH1", - "pc": 3255, + "gas": 2077450, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x508", + "0x518", "0x0", "0x4" ] }, { - "depth": 1, - "gas": 2075935, - "gasCost": 3, + "pc": 3325, "op": "DUP1", - "pc": 3257, + "gas": 2077447, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x508", + "0x518", "0x0", "0x4", "0x0" ] }, { - "depth": 1, - "gas": 2075932, - "gasCost": 6, + "pc": 3326, "op": "RETURNDATACOPY", - "pc": 3258, + "gas": 2077444, + "gasCost": 6, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x508", + "0x518", "0x0", "0x4", "0x0", @@ -5051,173 +5051,173 @@ ] }, { - "depth": 1, - "gas": 2075926, - "gasCost": 3, + "pc": 3327, "op": "PUSH3", - "pc": 3259, + "gas": 2077438, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x508", + "0x518", "0x0" ] }, { - "depth": 1, - "gas": 2075923, - "gasCost": 3, + "pc": 3331, "op": "PUSH1", - "pc": 3263, + "gas": 2077435, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x508", + "0x518", "0x0", - "0xcc7" + "0xd0b" ] }, { - "depth": 1, - "gas": 2075920, - "gasCost": 3, + "pc": 3333, "op": "MLOAD", - "pc": 3265, + "gas": 2077432, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x508", + "0x518", "0x0", - "0xcc7", + "0xd0b", "0x0" ] }, { - "depth": 1, - "gas": 2075917, - "gasCost": 3, + "pc": 3334, "op": "PUSH3", - "pc": 3266, + "gas": 2077429, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x508", + "0x518", "0x0", - "0xcc7", + "0xd0b", "0x8c379a000000000000000000000000000000000000000000000000000000000" ] }, { - "depth": 1, - "gas": 2075914, - "gasCost": 8, + "pc": 3338, "op": "JUMP", - "pc": 3270, + "gas": 2077426, + "gasCost": 8, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x508", + "0x518", "0x0", - "0xcc7", + "0xd0b", "0x8c379a000000000000000000000000000000000000000000000000000000000", - "0xc9b" + "0xcdf" ] }, { - "depth": 1, - "gas": 2075906, - "gasCost": 1, + "pc": 3295, "op": "JUMPDEST", - "pc": 3227, + "gas": 2077418, + "gasCost": 1, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x508", + "0x518", "0x0", - "0xcc7", + "0xd0b", "0x8c379a000000000000000000000000000000000000000000000000000000000" ] }, { - "depth": 1, - "gas": 2075905, - "gasCost": 3, + "pc": 3296, "op": "PUSH1", - "pc": 3228, + "gas": 2077417, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x508", + "0x518", "0x0", - "0xcc7", + "0xd0b", "0x8c379a000000000000000000000000000000000000000000000000000000000" ] }, { - "depth": 1, - "gas": 2075902, - "gasCost": 3, + "pc": 3298, "op": "DUP2", - "pc": 3230, + "gas": 2077414, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x508", + "0x518", "0x0", - "0xcc7", + "0xd0b", "0x8c379a000000000000000000000000000000000000000000000000000000000", "0x0" ] }, { - "depth": 1, - "gas": 2075899, - "gasCost": 3, + "pc": 3299, "op": "PUSH1", - "pc": 3231, + "gas": 2077411, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x508", + "0x518", "0x0", - "0xcc7", + "0xd0b", "0x8c379a000000000000000000000000000000000000000000000000000000000", "0x0", "0x8c379a000000000000000000000000000000000000000000000000000000000" ] }, { - "depth": 1, - "gas": 2075896, - "gasCost": 3, + "pc": 3301, "op": "SHR", - "pc": 3233, + "gas": 2077408, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x508", + "0x518", "0x0", - "0xcc7", + "0xd0b", "0x8c379a000000000000000000000000000000000000000000000000000000000", "0x0", "0x8c379a000000000000000000000000000000000000000000000000000000000", @@ -5225,213 +5225,213 @@ ] }, { - "depth": 1, - "gas": 2075893, - "gasCost": 3, + "pc": 3302, "op": "SWAP1", - "pc": 3234, + "gas": 2077405, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x508", + "0x518", "0x0", - "0xcc7", + "0xd0b", "0x8c379a000000000000000000000000000000000000000000000000000000000", "0x0", "0x8c379a0" ] }, { - "depth": 1, - "gas": 2075890, - "gasCost": 2, + "pc": 3303, "op": "POP", - "pc": 3235, + "gas": 2077402, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x508", + "0x518", "0x0", - "0xcc7", + "0xd0b", "0x8c379a000000000000000000000000000000000000000000000000000000000", "0x8c379a0", "0x0" ] }, { - "depth": 1, - "gas": 2075888, - "gasCost": 3, + "pc": 3304, "op": "SWAP2", - "pc": 3236, + "gas": 2077400, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x508", + "0x518", "0x0", - "0xcc7", + "0xd0b", "0x8c379a000000000000000000000000000000000000000000000000000000000", "0x8c379a0" ] }, { - "depth": 1, - "gas": 2075885, - "gasCost": 3, + "pc": 3305, "op": "SWAP1", - "pc": 3237, + "gas": 2077397, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x508", + "0x518", "0x0", "0x8c379a0", "0x8c379a000000000000000000000000000000000000000000000000000000000", - "0xcc7" + "0xd0b" ] }, { - "depth": 1, - "gas": 2075882, - "gasCost": 2, + "pc": 3306, "op": "POP", - "pc": 3238, + "gas": 2077394, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x508", + "0x518", "0x0", "0x8c379a0", - "0xcc7", + "0xd0b", "0x8c379a000000000000000000000000000000000000000000000000000000000" ] }, { - "depth": 1, - "gas": 2075880, - "gasCost": 8, + "pc": 3307, "op": "JUMP", - "pc": 3239, + "gas": 2077392, + "gasCost": 8, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x508", + "0x518", "0x0", "0x8c379a0", - "0xcc7" + "0xd0b" ] }, { - "depth": 1, - "gas": 2075872, - "gasCost": 1, + "pc": 3339, "op": "JUMPDEST", - "pc": 3271, + "gas": 2077384, + "gasCost": 1, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x508", + "0x518", "0x0", "0x8c379a0" ] }, { - "depth": 1, - "gas": 2075871, - "gasCost": 3, + "pc": 3340, "op": "SWAP1", - "pc": 3272, + "gas": 2077383, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x508", + "0x518", "0x0", "0x8c379a0" ] }, { - "depth": 1, - "gas": 2075868, - "gasCost": 2, + "pc": 3341, "op": "POP", - "pc": 3273, + "gas": 2077380, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x508", + "0x518", "0x8c379a0", "0x0" ] }, { - "depth": 1, - "gas": 2075866, - "gasCost": 1, + "pc": 3342, "op": "JUMPDEST", - "pc": 3274, + "gas": 2077378, + "gasCost": 1, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x508", + "0x518", "0x8c379a0" ] }, { - "depth": 1, - "gas": 2075865, - "gasCost": 3, + "pc": 3343, "op": "SWAP1", - "pc": 3275, + "gas": 2077377, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x508", + "0x518", "0x8c379a0" ] }, { - "depth": 1, - "gas": 2075862, - "gasCost": 8, + "pc": 3344, "op": "JUMP", - "pc": 3276, + "gas": 2077374, + "gasCost": 8, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", "0x8c379a0", - "0x508" + "0x518" ] }, { - "depth": 1, - "gas": 2075854, - "gasCost": 1, + "pc": 1304, "op": "JUMPDEST", - "pc": 1288, + "gas": 2077366, + "gasCost": 1, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -5441,11 +5441,11 @@ ] }, { - "depth": 1, - "gas": 2075853, - "gasCost": 3, + "pc": 1305, "op": "DUP1", - "pc": 1289, + "gas": 2077365, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -5455,42 +5455,57 @@ ] }, { + "pc": 1306, + "op": "PUSH4", + "gas": 2077362, + "gasCost": 3, "depth": 1, - "gas": 2075850, + "stack": [ + "0x7f29c394", + "0x17f", + "0x3e8", + "0x0", + "0x8c379a0", + "0x8c379a0" + ] + }, + { + "pc": 1311, + "op": "EQ", + "gas": 2077359, "gasCost": 3, - "op": "PUSH4", - "pc": 1290, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", "0x8c379a0", + "0x8c379a0", "0x8c379a0" ] }, { - "depth": 1, - "gas": 2075847, + "pc": 1312, + "op": "ISZERO", + "gas": 2077356, "gasCost": 3, - "op": "SUB", - "pc": 1295, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", "0x8c379a0", - "0x8c379a0", - "0x8c379a0" + "0x1" ] }, { - "depth": 1, - "gas": 2075844, - "gasCost": 3, + "pc": 1313, "op": "PUSH3", - "pc": 1296, + "gas": 2077353, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -5501,11 +5516,11 @@ ] }, { - "depth": 1, - "gas": 2075841, - "gasCost": 10, + "pc": 1317, "op": "JUMPI", - "pc": 1300, + "gas": 2077350, + "gasCost": 10, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -5513,15 +5528,15 @@ "0x0", "0x8c379a0", "0x0", - "0x56c" + "0x57d" ] }, { - "depth": 1, - "gas": 2075831, - "gasCost": 2, + "pc": 1318, "op": "POP", - "pc": 1301, + "gas": 2077340, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -5531,11 +5546,11 @@ ] }, { - "depth": 1, - "gas": 2075829, - "gasCost": 3, + "pc": 1319, "op": "PUSH3", - "pc": 1302, + "gas": 2077338, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -5544,389 +5559,420 @@ ] }, { - "depth": 1, - "gas": 2075826, - "gasCost": 3, + "pc": 1323, "op": "PUSH3", - "pc": 1306, + "gas": 2077335, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f" + "0x530" ] }, { - "depth": 1, - "gas": 2075823, - "gasCost": 8, + "pc": 1327, "op": "JUMP", - "pc": 1310, + "gas": 2077332, + "gasCost": 8, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", - "0xd43" + "0x530", + "0xd87" ] }, { - "depth": 1, - "gas": 2075815, - "gasCost": 1, + "pc": 3463, "op": "JUMPDEST", - "pc": 3395, + "gas": 2077324, + "gasCost": 1, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f" + "0x530" ] }, { - "depth": 1, - "gas": 2075814, - "gasCost": 3, + "pc": 3464, "op": "PUSH1", - "pc": 3396, + "gas": 2077323, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f" + "0x530" ] }, { - "depth": 1, - "gas": 2075811, - "gasCost": 3, + "pc": 3466, "op": "PUSH1", - "pc": 3398, + "gas": 2077320, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0" ] }, { - "depth": 1, - "gas": 2075808, - "gasCost": 2, + "pc": 3468, "op": "RETURNDATASIZE", - "pc": 3400, + "gas": 2077317, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x44" ] }, { - "depth": 1, - "gas": 2075806, - "gasCost": 3, + "pc": 3469, "op": "LT", - "pc": 3401, + "gas": 2077315, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x44", "0x64" ] }, { - "depth": 1, - "gas": 2075803, + "pc": 3470, + "op": "ISZERO", + "gas": 2077312, "gasCost": 3, - "op": "PUSH3", - "pc": 3402, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x0" ] }, { + "pc": 3471, + "op": "PUSH3", + "gas": 2077309, + "gasCost": 3, "depth": 1, - "gas": 2075800, - "gasCost": 10, - "op": "JUMPI", - "pc": 3406, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", + "0x0", + "0x1" + ] + }, + { + "pc": 3475, + "op": "JUMPI", + "gas": 2077306, + "gasCost": 10, + "depth": 1, + "stack": [ + "0x7f29c394", + "0x17f", + "0x3e8", "0x0", + "0x530", "0x0", - "0xddb" + "0x1", + "0xd99" ] }, { + "pc": 3481, + "op": "JUMPDEST", + "gas": 2077296, + "gasCost": 1, "depth": 1, - "gas": 2075790, - "gasCost": 3, - "op": "PUSH3", - "pc": 3407, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0" ] }, { - "depth": 1, - "gas": 2075787, + "pc": 3482, + "op": "PUSH3", + "gas": 2077295, "gasCost": 3, + "depth": 1, + "stack": [ + "0x7f29c394", + "0x17f", + "0x3e8", + "0x0", + "0x530", + "0x0" + ] + }, + { + "pc": 3486, "op": "PUSH3", - "pc": 3411, + "gas": 2077292, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", - "0xd58" + "0xda3" ] }, { - "depth": 1, - "gas": 2075784, - "gasCost": 8, + "pc": 3490, "op": "JUMP", - "pc": 3415, + "gas": 2077289, + "gasCost": 8, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", - "0xd58", - "0x9ca" + "0xda3", + "0x9ec" ] }, { - "depth": 1, - "gas": 2075776, - "gasCost": 1, + "pc": 2540, "op": "JUMPDEST", - "pc": 2506, + "gas": 2077281, + "gasCost": 1, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", - "0xd58" + "0xda3" ] }, { - "depth": 1, - "gas": 2075775, - "gasCost": 3, + "pc": 2541, "op": "PUSH1", - "pc": 2507, + "gas": 2077280, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", - "0xd58" + "0xda3" ] }, { - "depth": 1, - "gas": 2075772, - "gasCost": 3, + "pc": 2543, "op": "PUSH1", - "pc": 2509, + "gas": 2077277, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", - "0xd58", + "0xda3", "0x0" ] }, { - "depth": 1, - "gas": 2075769, - "gasCost": 3, + "pc": 2545, "op": "MLOAD", - "pc": 2511, + "gas": 2077274, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", - "0xd58", + "0xda3", "0x0", "0x40" ] }, { - "depth": 1, - "gas": 2075766, - "gasCost": 3, + "pc": 2546, "op": "SWAP1", - "pc": 2512, + "gas": 2077271, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", - "0xd58", + "0xda3", "0x0", "0x80" ] }, { - "depth": 1, - "gas": 2075763, - "gasCost": 2, + "pc": 2547, "op": "POP", - "pc": 2513, + "gas": 2077268, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", - "0xd58", + "0xda3", "0x80", "0x0" ] }, { - "depth": 1, - "gas": 2075761, - "gasCost": 3, + "pc": 2548, "op": "SWAP1", - "pc": 2514, + "gas": 2077266, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", - "0xd58", + "0xda3", "0x80" ] }, { - "depth": 1, - "gas": 2075758, - "gasCost": 8, + "pc": 2549, "op": "JUMP", - "pc": 2515, + "gas": 2077263, + "gasCost": 8, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", - "0xd58" + "0xda3" ] }, { - "depth": 1, - "gas": 2075750, - "gasCost": 1, + "pc": 3491, "op": "JUMPDEST", - "pc": 3416, + "gas": 2077255, + "gasCost": 1, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80" ] }, { - "depth": 1, - "gas": 2075749, - "gasCost": 3, + "pc": 3492, "op": "PUSH1", - "pc": 3417, + "gas": 2077254, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80" ] }, { - "depth": 1, - "gas": 2075746, - "gasCost": 2, + "pc": 3494, "op": "RETURNDATASIZE", - "pc": 3419, + "gas": 2077251, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x4" ] }, { - "depth": 1, - "gas": 2075744, - "gasCost": 3, + "pc": 3495, "op": "SUB", - "pc": 3420, + "gas": 2077249, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x4", @@ -5934,34 +5980,34 @@ ] }, { - "depth": 1, - "gas": 2075741, - "gasCost": 3, + "pc": 3496, "op": "PUSH1", - "pc": 3421, + "gas": 2077246, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x60" ] }, { - "depth": 1, - "gas": 2075738, - "gasCost": 3, + "pc": 3498, "op": "DUP3", - "pc": 3423, + "gas": 2077243, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x60", @@ -5969,17 +6015,17 @@ ] }, { - "depth": 1, - "gas": 2075735, - "gasCost": 18, + "pc": 3499, "op": "RETURNDATACOPY", - "pc": 3424, + "gas": 2077240, + "gasCost": 18, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x60", @@ -5988,67 +6034,67 @@ ] }, { - "depth": 1, - "gas": 2075717, - "gasCost": 3, + "pc": 3500, "op": "DUP1", - "pc": 3425, + "gas": 2077222, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80" ] }, { - "depth": 1, - "gas": 2075714, - "gasCost": 3, + "pc": 3501, "op": "MLOAD", - "pc": 3426, + "gas": 2077219, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x80" ] }, { - "depth": 1, - "gas": 2075711, - "gasCost": 2, + "pc": 3502, "op": "RETURNDATASIZE", - "pc": 3427, + "gas": 2077216, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20" ] }, { - "depth": 1, - "gas": 2075709, - "gasCost": 3, + "pc": 3503, "op": "PUSH1", - "pc": 3428, + "gas": 2077214, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", @@ -6056,17 +6102,17 @@ ] }, { - "depth": 1, - "gas": 2075706, - "gasCost": 3, + "pc": 3505, "op": "DUP3", - "pc": 3430, + "gas": 2077211, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", @@ -6075,17 +6121,17 @@ ] }, { - "depth": 1, - "gas": 2075703, - "gasCost": 3, + "pc": 3506, "op": "ADD", - "pc": 3431, + "gas": 2077208, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", @@ -6095,17 +6141,17 @@ ] }, { - "depth": 1, - "gas": 2075700, - "gasCost": 3, + "pc": 3507, "op": "GT", - "pc": 3432, + "gas": 2077205, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", @@ -6114,17 +6160,17 @@ ] }, { - "depth": 1, - "gas": 2075697, - "gasCost": 3, + "pc": 3508, "op": "PUSH8", - "pc": 3433, + "gas": 2077202, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", @@ -6132,17 +6178,17 @@ ] }, { - "depth": 1, - "gas": 2075694, - "gasCost": 3, + "pc": 3517, "op": "DUP3", - "pc": 3442, + "gas": 2077199, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", @@ -6151,17 +6197,17 @@ ] }, { - "depth": 1, - "gas": 2075691, - "gasCost": 3, + "pc": 3518, "op": "GT", - "pc": 3443, + "gas": 2077196, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", @@ -6171,17 +6217,17 @@ ] }, { - "depth": 1, - "gas": 2075688, - "gasCost": 3, + "pc": 3519, "op": "OR", - "pc": 3444, + "gas": 2077193, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", @@ -6190,17 +6236,17 @@ ] }, { - "depth": 1, - "gas": 2075685, - "gasCost": 3, + "pc": 3520, "op": "ISZERO", - "pc": 3445, + "gas": 2077190, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", @@ -6208,17 +6254,17 @@ ] }, { - "depth": 1, - "gas": 2075682, - "gasCost": 3, + "pc": 3521, "op": "PUSH3", - "pc": 3446, + "gas": 2077187, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", @@ -6226,70 +6272,70 @@ ] }, { - "depth": 1, - "gas": 2075679, - "gasCost": 10, + "pc": 3525, "op": "JUMPI", - "pc": 3450, + "gas": 2077184, + "gasCost": 10, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", "0x1", - "0xd82" + "0xdcd" ] }, { - "depth": 1, - "gas": 2075669, - "gasCost": 1, + "pc": 3533, "op": "JUMPDEST", - "pc": 3458, + "gas": 2077174, + "gasCost": 1, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20" ] }, { - "depth": 1, - "gas": 2075668, - "gasCost": 3, + "pc": 3534, "op": "DUP1", - "pc": 3459, + "gas": 2077173, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20" ] }, { - "depth": 1, - "gas": 2075665, - "gasCost": 3, + "pc": 3535, "op": "DUP3", - "pc": 3460, + "gas": 2077170, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", @@ -6297,17 +6343,17 @@ ] }, { - "depth": 1, - "gas": 2075662, - "gasCost": 3, + "pc": 3536, "op": "ADD", - "pc": 3461, + "gas": 2077167, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", @@ -6316,17 +6362,17 @@ ] }, { - "depth": 1, - "gas": 2075659, - "gasCost": 3, + "pc": 3537, "op": "DUP1", - "pc": 3462, + "gas": 2077164, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", @@ -6334,17 +6380,17 @@ ] }, { - "depth": 1, - "gas": 2075656, - "gasCost": 3, + "pc": 3538, "op": "MLOAD", - "pc": 3463, + "gas": 2077161, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", @@ -6353,17 +6399,17 @@ ] }, { - "depth": 1, - "gas": 2075653, - "gasCost": 3, + "pc": 3539, "op": "PUSH8", - "pc": 3464, + "gas": 2077158, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", @@ -6372,17 +6418,17 @@ ] }, { - "depth": 1, - "gas": 2075650, - "gasCost": 3, + "pc": 3548, "op": "DUP2", - "pc": 3473, + "gas": 2077155, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", @@ -6392,17 +6438,17 @@ ] }, { - "depth": 1, - "gas": 2075647, - "gasCost": 3, + "pc": 3549, "op": "GT", - "pc": 3474, + "gas": 2077152, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", @@ -6413,17 +6459,17 @@ ] }, { - "depth": 1, - "gas": 2075644, - "gasCost": 3, + "pc": 3550, "op": "ISZERO", - "pc": 3475, + "gas": 2077149, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", @@ -6433,17 +6479,17 @@ ] }, { - "depth": 1, - "gas": 2075641, - "gasCost": 3, + "pc": 3551, "op": "PUSH3", - "pc": 3476, + "gas": 2077146, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", @@ -6453,38 +6499,38 @@ ] }, { - "depth": 1, - "gas": 2075638, - "gasCost": 10, + "pc": 3555, "op": "JUMPI", - "pc": 3480, + "gas": 2077143, + "gasCost": 10, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", "0xa0", "0x17", "0x1", - "0xda2" + "0xded" ] }, { - "depth": 1, - "gas": 2075628, - "gasCost": 1, + "pc": 3565, "op": "JUMPDEST", - "pc": 3490, + "gas": 2077133, + "gasCost": 1, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", @@ -6493,17 +6539,17 @@ ] }, { - "depth": 1, - "gas": 2075627, - "gasCost": 3, + "pc": 3566, "op": "DUP1", - "pc": 3491, + "gas": 2077132, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", @@ -6512,17 +6558,17 @@ ] }, { - "depth": 1, - "gas": 2075624, - "gasCost": 3, + "pc": 3567, "op": "PUSH1", - "pc": 3492, + "gas": 2077129, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", @@ -6532,17 +6578,17 @@ ] }, { - "depth": 1, - "gas": 2075621, - "gasCost": 3, + "pc": 3569, "op": "DUP4", - "pc": 3494, + "gas": 2077126, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", @@ -6553,17 +6599,17 @@ ] }, { - "depth": 1, - "gas": 2075618, - "gasCost": 3, + "pc": 3570, "op": "ADD", - "pc": 3495, + "gas": 2077123, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", @@ -6575,17 +6621,17 @@ ] }, { - "depth": 1, - "gas": 2075615, - "gasCost": 3, + "pc": 3571, "op": "ADD", - "pc": 3496, + "gas": 2077120, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", @@ -6596,17 +6642,17 @@ ] }, { - "depth": 1, - "gas": 2075612, - "gasCost": 3, + "pc": 3572, "op": "PUSH1", - "pc": 3497, + "gas": 2077117, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", @@ -6616,17 +6662,17 @@ ] }, { - "depth": 1, - "gas": 2075609, - "gasCost": 2, + "pc": 3574, "op": "RETURNDATASIZE", - "pc": 3499, + "gas": 2077114, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", @@ -6637,17 +6683,17 @@ ] }, { - "depth": 1, - "gas": 2075607, - "gasCost": 3, + "pc": 3575, "op": "SUB", - "pc": 3500, + "gas": 2077112, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", @@ -6659,17 +6705,17 @@ ] }, { - "depth": 1, - "gas": 2075604, - "gasCost": 3, + "pc": 3576, "op": "DUP6", - "pc": 3501, + "gas": 2077109, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", @@ -6680,17 +6726,17 @@ ] }, { - "depth": 1, - "gas": 2075601, - "gasCost": 3, + "pc": 3577, "op": "ADD", - "pc": 3502, + "gas": 2077106, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", @@ -6702,17 +6748,17 @@ ] }, { - "depth": 1, - "gas": 2075598, - "gasCost": 3, + "pc": 3578, "op": "DUP2", - "pc": 3503, + "gas": 2077103, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", @@ -6723,17 +6769,17 @@ ] }, { - "depth": 1, - "gas": 2075595, - "gasCost": 3, + "pc": 3579, "op": "GT", - "pc": 3504, + "gas": 2077100, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", @@ -6745,17 +6791,17 @@ ] }, { - "depth": 1, - "gas": 2075592, - "gasCost": 3, + "pc": 3580, "op": "ISZERO", - "pc": 3505, + "gas": 2077097, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", @@ -6766,17 +6812,17 @@ ] }, { - "depth": 1, - "gas": 2075589, - "gasCost": 3, + "pc": 3581, "op": "PUSH3", - "pc": 3506, + "gas": 2077094, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", @@ -6787,17 +6833,17 @@ ] }, { - "depth": 1, - "gas": 2075586, - "gasCost": 10, + "pc": 3585, "op": "JUMPI", - "pc": 3510, + "gas": 2077091, + "gasCost": 10, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", @@ -6805,21 +6851,21 @@ "0x17", "0xd7", "0x1", - "0xdc1" + "0xe0c" ] }, { - "depth": 1, - "gas": 2075576, - "gasCost": 1, + "pc": 3596, "op": "JUMPDEST", - "pc": 3521, + "gas": 2077081, + "gasCost": 1, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", @@ -6829,17 +6875,17 @@ ] }, { - "depth": 1, - "gas": 2075575, - "gasCost": 3, + "pc": 3597, "op": "PUSH3", - "pc": 3522, + "gas": 2077080, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", @@ -6849,458 +6895,458 @@ ] }, { - "depth": 1, - "gas": 2075572, - "gasCost": 3, + "pc": 3601, "op": "DUP3", - "pc": 3526, + "gas": 2077077, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xdd2" + "0xe1d" ] }, { - "depth": 1, - "gas": 2075569, - "gasCost": 3, + "pc": 3602, "op": "PUSH1", - "pc": 3527, + "gas": 2077074, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xdd2", + "0xe1d", "0x17" ] }, { - "depth": 1, - "gas": 2075566, - "gasCost": 3, + "pc": 3604, "op": "ADD", - "pc": 3529, + "gas": 2077071, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xdd2", + "0xe1d", "0x17", "0x20" ] }, { - "depth": 1, - "gas": 2075563, - "gasCost": 3, + "pc": 3605, "op": "DUP6", - "pc": 3530, + "gas": 2077068, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xdd2", + "0xe1d", "0x37" ] }, { - "depth": 1, - "gas": 2075560, - "gasCost": 3, + "pc": 3606, "op": "ADD", - "pc": 3531, + "gas": 2077065, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xdd2", + "0xe1d", "0x37", "0x20" ] }, { - "depth": 1, - "gas": 2075557, - "gasCost": 3, + "pc": 3607, "op": "DUP7", - "pc": 3532, + "gas": 2077062, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xdd2", + "0xe1d", "0x57" ] }, { - "depth": 1, - "gas": 2075554, - "gasCost": 3, + "pc": 3608, "op": "PUSH3", - "pc": 3533, + "gas": 2077059, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xdd2", + "0xe1d", "0x57", "0x80" ] }, { - "depth": 1, - "gas": 2075551, - "gasCost": 8, + "pc": 3612, "op": "JUMP", - "pc": 3537, + "gas": 2077056, + "gasCost": 8, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xdd2", + "0xe1d", "0x57", "0x80", - "0xd0d" + "0xd51" ] }, { - "depth": 1, - "gas": 2075543, - "gasCost": 1, + "pc": 3409, "op": "JUMPDEST", - "pc": 3341, + "gas": 2077048, + "gasCost": 1, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xdd2", + "0xe1d", "0x57", "0x80" ] }, { - "depth": 1, - "gas": 2075542, - "gasCost": 3, + "pc": 3410, "op": "PUSH3", - "pc": 3342, + "gas": 2077047, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xdd2", + "0xe1d", "0x57", "0x80" ] }, { - "depth": 1, - "gas": 2075539, - "gasCost": 3, + "pc": 3414, "op": "DUP3", - "pc": 3346, + "gas": 2077044, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xdd2", + "0xe1d", "0x57", "0x80", - "0xd18" + "0xd5c" ] }, { - "depth": 1, - "gas": 2075536, - "gasCost": 3, + "pc": 3415, "op": "PUSH3", - "pc": 3347, + "gas": 2077041, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xdd2", + "0xe1d", "0x57", "0x80", - "0xd18", + "0xd5c", "0x57" ] }, { - "depth": 1, - "gas": 2075533, - "gasCost": 8, + "pc": 3419, "op": "JUMP", - "pc": 3351, + "gas": 2077038, + "gasCost": 8, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xdd2", + "0xe1d", "0x57", "0x80", - "0xd18", + "0xd5c", "0x57", - "0xccd" + "0xd11" ] }, { - "depth": 1, - "gas": 2075525, - "gasCost": 1, + "pc": 3345, "op": "JUMPDEST", - "pc": 3277, + "gas": 2077030, + "gasCost": 1, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xdd2", + "0xe1d", "0x57", "0x80", - "0xd18", + "0xd5c", "0x57" ] }, { - "depth": 1, - "gas": 2075524, - "gasCost": 3, + "pc": 3346, "op": "PUSH1", - "pc": 3278, + "gas": 2077029, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xdd2", + "0xe1d", "0x57", "0x80", - "0xd18", + "0xd5c", "0x57" ] }, { - "depth": 1, - "gas": 2075521, - "gasCost": 3, + "pc": 3348, "op": "PUSH1", - "pc": 3280, + "gas": 2077026, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xdd2", + "0xe1d", "0x57", "0x80", - "0xd18", + "0xd5c", "0x57", "0x0" ] }, { - "depth": 1, - "gas": 2075518, - "gasCost": 3, + "pc": 3350, "op": "NOT", - "pc": 3282, + "gas": 2077023, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xdd2", + "0xe1d", "0x57", "0x80", - "0xd18", + "0xd5c", "0x57", "0x0", "0x1f" ] }, { - "depth": 1, - "gas": 2075515, - "gasCost": 3, + "pc": 3351, "op": "PUSH1", - "pc": 3283, + "gas": 2077020, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xdd2", + "0xe1d", "0x57", "0x80", - "0xd18", + "0xd5c", "0x57", "0x0", "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" ] }, { - "depth": 1, - "gas": 2075512, - "gasCost": 3, + "pc": 3353, "op": "DUP4", - "pc": 3285, + "gas": 2077017, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xdd2", + "0xe1d", "0x57", "0x80", - "0xd18", + "0xd5c", "0x57", "0x0", "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", @@ -7308,27 +7354,27 @@ ] }, { - "depth": 1, - "gas": 2075509, - "gasCost": 3, + "pc": 3354, "op": "ADD", - "pc": 3286, + "gas": 2077014, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xdd2", + "0xe1d", "0x57", "0x80", - "0xd18", + "0xd5c", "0x57", "0x0", "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", @@ -7337,27 +7383,27 @@ ] }, { - "depth": 1, - "gas": 2075506, - "gasCost": 3, + "pc": 3355, "op": "AND", - "pc": 3287, + "gas": 2077011, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xdd2", + "0xe1d", "0x57", "0x80", - "0xd18", + "0xd5c", "0x57", "0x0", "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", @@ -7365,229 +7411,229 @@ ] }, { - "depth": 1, - "gas": 2075503, - "gasCost": 3, + "pc": 3356, "op": "SWAP1", - "pc": 3288, + "gas": 2077008, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xdd2", + "0xe1d", "0x57", "0x80", - "0xd18", + "0xd5c", "0x57", "0x0", "0x60" ] }, { - "depth": 1, - "gas": 2075500, - "gasCost": 2, + "pc": 3357, "op": "POP", - "pc": 3289, + "gas": 2077005, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xdd2", + "0xe1d", "0x57", "0x80", - "0xd18", + "0xd5c", "0x57", "0x60", "0x0" ] }, { - "depth": 1, - "gas": 2075498, - "gasCost": 3, + "pc": 3358, "op": "SWAP2", - "pc": 3290, + "gas": 2077003, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xdd2", + "0xe1d", "0x57", "0x80", - "0xd18", + "0xd5c", "0x57", "0x60" ] }, { - "depth": 1, - "gas": 2075495, - "gasCost": 3, + "pc": 3359, "op": "SWAP1", - "pc": 3291, + "gas": 2077000, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xdd2", + "0xe1d", "0x57", "0x80", "0x60", "0x57", - "0xd18" + "0xd5c" ] }, { - "depth": 1, - "gas": 2075492, - "gasCost": 2, + "pc": 3360, "op": "POP", - "pc": 3292, + "gas": 2076997, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xdd2", + "0xe1d", "0x57", "0x80", "0x60", - "0xd18", + "0xd5c", "0x57" ] }, { - "depth": 1, - "gas": 2075490, - "gasCost": 8, + "pc": 3361, "op": "JUMP", - "pc": 3293, + "gas": 2076995, + "gasCost": 8, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xdd2", + "0xe1d", "0x57", "0x80", "0x60", - "0xd18" + "0xd5c" ] }, { - "depth": 1, - "gas": 2075482, - "gasCost": 1, + "pc": 3420, "op": "JUMPDEST", - "pc": 3352, + "gas": 2076987, + "gasCost": 1, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xdd2", + "0xe1d", "0x57", "0x80", "0x60" ] }, { - "depth": 1, - "gas": 2075481, - "gasCost": 3, + "pc": 3421, "op": "DUP2", - "pc": 3353, + "gas": 2076986, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xdd2", + "0xe1d", "0x57", "0x80", "0x60" ] }, { - "depth": 1, - "gas": 2075478, - "gasCost": 3, + "pc": 3422, "op": "ADD", - "pc": 3354, + "gas": 2076983, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xdd2", + "0xe1d", "0x57", "0x80", "0x60", @@ -7595,48 +7641,48 @@ ] }, { - "depth": 1, - "gas": 2075475, - "gasCost": 3, + "pc": 3423, "op": "DUP2", - "pc": 3355, + "gas": 2076980, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xdd2", + "0xe1d", "0x57", "0x80", "0xe0" ] }, { - "depth": 1, - "gas": 2075472, - "gasCost": 3, + "pc": 3424, "op": "DUP2", - "pc": 3356, + "gas": 2076977, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xdd2", + "0xe1d", "0x57", "0x80", "0xe0", @@ -7644,24 +7690,24 @@ ] }, { - "depth": 1, - "gas": 2075469, - "gasCost": 3, + "pc": 3425, "op": "LT", - "pc": 3357, + "gas": 2076974, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xdd2", + "0xe1d", "0x57", "0x80", "0xe0", @@ -7670,24 +7716,24 @@ ] }, { - "depth": 1, - "gas": 2075466, - "gasCost": 3, + "pc": 3426, "op": "PUSH8", - "pc": 3358, + "gas": 2076971, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xdd2", + "0xe1d", "0x57", "0x80", "0xe0", @@ -7695,24 +7741,24 @@ ] }, { - "depth": 1, - "gas": 2075463, - "gasCost": 3, + "pc": 3435, "op": "DUP3", - "pc": 3367, + "gas": 2076968, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xdd2", + "0xe1d", "0x57", "0x80", "0xe0", @@ -7721,24 +7767,24 @@ ] }, { - "depth": 1, - "gas": 2075460, - "gasCost": 3, + "pc": 3436, "op": "GT", - "pc": 3368, + "gas": 2076965, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xdd2", + "0xe1d", "0x57", "0x80", "0xe0", @@ -7748,24 +7794,24 @@ ] }, { - "depth": 1, - "gas": 2075457, - "gasCost": 3, + "pc": 3437, "op": "OR", - "pc": 3369, + "gas": 2076962, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xdd2", + "0xe1d", "0x57", "0x80", "0xe0", @@ -7774,24 +7820,24 @@ ] }, { - "depth": 1, - "gas": 2075454, - "gasCost": 3, + "pc": 3438, "op": "ISZERO", - "pc": 3370, + "gas": 2076959, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xdd2", + "0xe1d", "0x57", "0x80", "0xe0", @@ -7799,24 +7845,24 @@ ] }, { - "depth": 1, - "gas": 2075451, - "gasCost": 3, + "pc": 3439, "op": "PUSH3", - "pc": 3371, + "gas": 2076956, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xdd2", + "0xe1d", "0x57", "0x80", "0xe0", @@ -7824,98 +7870,98 @@ ] }, { - "depth": 1, - "gas": 2075448, - "gasCost": 10, + "pc": 3443, "op": "JUMPI", - "pc": 3375, + "gas": 2076953, + "gasCost": 10, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xdd2", + "0xe1d", "0x57", "0x80", "0xe0", "0x1", - "0xd3a" + "0xd7e" ] }, { - "depth": 1, - "gas": 2075438, - "gasCost": 1, + "pc": 3454, "op": "JUMPDEST", - "pc": 3386, + "gas": 2076943, + "gasCost": 1, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xdd2", + "0xe1d", "0x57", "0x80", "0xe0" ] }, { - "depth": 1, - "gas": 2075437, - "gasCost": 3, + "pc": 3455, "op": "DUP1", - "pc": 3387, + "gas": 2076942, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xdd2", + "0xe1d", "0x57", "0x80", "0xe0" ] }, { - "depth": 1, - "gas": 2075434, - "gasCost": 3, + "pc": 3456, "op": "PUSH1", - "pc": 3388, + "gas": 2076939, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xdd2", + "0xe1d", "0x57", "0x80", "0xe0", @@ -7923,24 +7969,24 @@ ] }, { - "depth": 1, - "gas": 2075431, - "gasCost": 3, + "pc": 3458, "op": "MSTORE", - "pc": 3390, + "gas": 2076936, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xdd2", + "0xe1d", "0x57", "0x80", "0xe0", @@ -7949,107 +7995,107 @@ ] }, { - "depth": 1, - "gas": 2075428, - "gasCost": 2, + "pc": 3459, "op": "POP", - "pc": 3391, + "gas": 2076933, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xdd2", + "0xe1d", "0x57", "0x80", "0xe0" ] }, { - "depth": 1, - "gas": 2075426, - "gasCost": 2, + "pc": 3460, "op": "POP", - "pc": 3392, + "gas": 2076931, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xdd2", + "0xe1d", "0x57", "0x80" ] }, { - "depth": 1, - "gas": 2075424, - "gasCost": 2, + "pc": 3461, "op": "POP", - "pc": 3393, + "gas": 2076929, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xdd2", + "0xe1d", "0x57" ] }, { - "depth": 1, - "gas": 2075422, - "gasCost": 8, + "pc": 3462, "op": "JUMP", - "pc": 3394, + "gas": 2076927, + "gasCost": 8, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", "0xa0", "0x17", "0xd7", - "0xdd2" + "0xe1d" ] }, { - "depth": 1, - "gas": 2075414, - "gasCost": 1, + "pc": 3613, "op": "JUMPDEST", - "pc": 3538, + "gas": 2076919, + "gasCost": 1, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", @@ -8059,17 +8105,17 @@ ] }, { - "depth": 1, - "gas": 2075413, - "gasCost": 3, + "pc": 3614, "op": "DUP3", - "pc": 3539, + "gas": 2076918, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", @@ -8079,17 +8125,17 @@ ] }, { - "depth": 1, - "gas": 2075410, - "gasCost": 3, + "pc": 3615, "op": "SWAP6", - "pc": 3540, + "gas": 2076915, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0x0", "0x80", "0x20", @@ -8100,17 +8146,17 @@ ] }, { - "depth": 1, - "gas": 2075407, - "gasCost": 2, + "pc": 3616, "op": "POP", - "pc": 3541, + "gas": 2076912, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0xa0", "0x80", "0x20", @@ -8121,17 +8167,17 @@ ] }, { - "depth": 1, - "gas": 2075405, - "gasCost": 2, + "pc": 3617, "op": "POP", - "pc": 3542, + "gas": 2076910, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0xa0", "0x80", "0x20", @@ -8141,17 +8187,17 @@ ] }, { - "depth": 1, - "gas": 2075403, - "gasCost": 2, + "pc": 3618, "op": "POP", - "pc": 3543, + "gas": 2076908, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", + "0x530", "0xa0", "0x80", "0x20", @@ -8160,209 +8206,332 @@ ] }, { + "pc": 3619, + "op": "POP", + "gas": 2076906, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x7f29c394", + "0x17f", + "0x3e8", + "0x0", + "0x530", + "0xa0", + "0x80", + "0x20", + "0xa0" + ] + }, + { + "pc": 3620, + "op": "POP", + "gas": 2076904, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x7f29c394", + "0x17f", + "0x3e8", + "0x0", + "0x530", + "0xa0", + "0x80", + "0x20" + ] + }, + { + "pc": 3621, + "op": "POP", + "gas": 2076902, + "gasCost": 2, + "depth": 1, + "stack": [ + "0x7f29c394", + "0x17f", + "0x3e8", + "0x0", + "0x530", + "0xa0", + "0x80" + ] + }, + { + "pc": 3622, + "op": "JUMPDEST", + "gas": 2076900, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x7f29c394", + "0x17f", + "0x3e8", + "0x0", + "0x530", + "0xa0" + ] + }, + { + "pc": 3623, + "op": "SWAP1", + "gas": 2076899, + "gasCost": 3, + "depth": 1, + "stack": [ + "0x7f29c394", + "0x17f", + "0x3e8", + "0x0", + "0x530", + "0xa0" + ] + }, + { + "pc": 3624, + "op": "JUMP", + "gas": 2076896, + "gasCost": 8, + "depth": 1, + "stack": [ + "0x7f29c394", + "0x17f", + "0x3e8", + "0x0", + "0xa0", + "0x530" + ] + }, + { + "pc": 1328, + "op": "JUMPDEST", + "gas": 2076888, + "gasCost": 1, + "depth": 1, + "stack": [ + "0x7f29c394", + "0x17f", + "0x3e8", + "0x0", + "0xa0" + ] + }, + { + "pc": 1329, + "op": "DUP1", + "gas": 2076887, + "gasCost": 3, "depth": 1, - "gas": 2075401, - "gasCost": 2, - "op": "POP", - "pc": 3544, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", - "0xa0", - "0x80", - "0x20", "0xa0" ] }, { + "pc": 1330, + "op": "PUSH3", + "gas": 2076884, + "gasCost": 3, "depth": 1, - "gas": 2075399, - "gasCost": 2, - "op": "POP", - "pc": 3545, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", "0xa0", - "0x80", - "0x20" + "0xa0" ] }, { + "pc": 1334, + "op": "JUMPI", + "gas": 2076881, + "gasCost": 10, "depth": 1, - "gas": 2075397, - "gasCost": 2, - "op": "POP", - "pc": 3546, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", "0xa0", - "0x80" + "0xa0", + "0x53d" ] }, { - "depth": 1, - "gas": 2075395, - "gasCost": 1, + "pc": 1341, "op": "JUMPDEST", - "pc": 3547, + "gas": 2076871, + "gasCost": 1, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", "0xa0" ] }, { - "depth": 1, - "gas": 2075394, + "pc": 1342, + "op": "PUSH32", + "gas": 2076870, "gasCost": 3, - "op": "SWAP1", - "pc": 3548, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x51f", "0xa0" ] }, { + "pc": 1375, + "op": "DUP2", + "gas": 2076867, + "gasCost": 3, "depth": 1, - "gas": 2075391, - "gasCost": 8, - "op": "JUMP", - "pc": 3549, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", "0xa0", - "0x51f" + "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a" ] }, { + "pc": 1376, + "op": "PUSH1", + "gas": 2076864, + "gasCost": 3, "depth": 1, - "gas": 2075383, - "gasCost": 1, - "op": "JUMPDEST", - "pc": 1311, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", + "0xa0", + "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", "0xa0" ] }, { - "depth": 1, - "gas": 2075382, + "pc": 1378, + "op": "MLOAD", + "gas": 2076861, "gasCost": 3, - "op": "DUP1", - "pc": 1312, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0xa0" + "0xa0", + "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", + "0xa0", + "0x40" ] }, { - "depth": 1, - "gas": 2075379, - "gasCost": 3, + "pc": 1379, "op": "PUSH3", - "pc": 1313, + "gas": 2076858, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", "0xa0", - "0xa0" + "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", + "0xa0", + "0xe0" ] }, { + "pc": 1383, + "op": "SWAP2", + "gas": 2076855, + "gasCost": 3, "depth": 1, - "gas": 2075376, - "gasCost": 10, - "op": "JUMPI", - "pc": 1317, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", "0xa0", + "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", "0xa0", - "0x52c" + "0xe0", + "0x56e" ] }, { + "pc": 1384, + "op": "SWAP1", + "gas": 2076852, + "gasCost": 3, "depth": 1, - "gas": 2075366, - "gasCost": 1, - "op": "JUMPDEST", - "pc": 1324, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", + "0xa0", + "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", + "0x56e", + "0xe0", "0xa0" ] }, { - "depth": 1, - "gas": 2075365, + "pc": 1385, + "op": "PUSH3", + "gas": 2076849, "gasCost": 3, - "op": "PUSH32", - "pc": 1325, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0xa0" + "0xa0", + "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", + "0x56e", + "0xa0", + "0xe0" ] }, { + "pc": 1389, + "op": "JUMP", + "gas": 2076846, + "gasCost": 8, "depth": 1, - "gas": 2075362, - "gasCost": 3, - "op": "DUP2", - "pc": 1358, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", "0xa0", - "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a" + "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", + "0x56e", + "0xa0", + "0xe0", + "0xeab" ] }, { + "pc": 3755, + "op": "JUMPDEST", + "gas": 2076838, + "gasCost": 1, "depth": 1, - "gas": 2075359, - "gasCost": 3, - "op": "PUSH1", - "pc": 1359, "stack": [ "0x7f29c394", "0x17f", @@ -8370,15 +8539,17 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0xa0" + "0x56e", + "0xa0", + "0xe0" ] }, { - "depth": 1, - "gas": 2075356, + "pc": 3756, + "op": "PUSH1", + "gas": 2076837, "gasCost": 3, - "op": "MLOAD", - "pc": 1361, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -8386,16 +8557,17 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", + "0x56e", "0xa0", - "0x40" + "0xe0" ] }, { - "depth": 1, - "gas": 2075353, + "pc": 3758, + "op": "PUSH1", + "gas": 2076834, "gasCost": 3, - "op": "PUSH3", - "pc": 1362, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -8403,16 +8575,18 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", + "0x56e", "0xa0", - "0xe0" + "0xe0", + "0x0" ] }, { - "depth": 1, - "gas": 2075350, + "pc": 3760, + "op": "DUP3", + "gas": 2076831, "gasCost": 3, - "op": "SWAP2", - "pc": 1366, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -8420,17 +8594,19 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", + "0x56e", "0xa0", "0xe0", - "0x55d" + "0x0", + "0x20" ] }, { - "depth": 1, - "gas": 2075347, + "pc": 3761, + "op": "ADD", + "gas": 2076828, "gasCost": 3, - "op": "SWAP1", - "pc": 1367, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -8438,17 +8614,20 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", + "0xa0", "0xe0", - "0xa0" + "0x0", + "0x20", + "0xe0" ] }, { - "depth": 1, - "gas": 2075344, + "pc": 3762, + "op": "SWAP1", + "gas": 2076825, "gasCost": 3, - "op": "PUSH3", - "pc": 1368, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -8456,17 +8635,19 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", - "0xe0" + "0xe0", + "0x0", + "0x100" ] }, { + "pc": 3763, + "op": "POP", + "gas": 2076822, + "gasCost": 2, "depth": 1, - "gas": 2075341, - "gasCost": 8, - "op": "JUMP", - "pc": 1372, "stack": [ "0x7f29c394", "0x17f", @@ -8474,18 +8655,19 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", - "0xe56" + "0x100", + "0x0" ] }, { + "pc": 3764, + "op": "DUP2", + "gas": 2076820, + "gasCost": 3, "depth": 1, - "gas": 2075333, - "gasCost": 1, - "op": "JUMPDEST", - "pc": 3670, "stack": [ "0x7f29c394", "0x17f", @@ -8493,17 +8675,18 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", - "0xe0" + "0xe0", + "0x100" ] }, { - "depth": 1, - "gas": 2075332, + "pc": 3765, + "op": "DUP2", + "gas": 2076817, "gasCost": 3, - "op": "PUSH1", - "pc": 3671, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -8511,17 +8694,19 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", + "0xe0", + "0x100", "0xe0" ] }, { - "depth": 1, - "gas": 2075329, + "pc": 3766, + "op": "SUB", + "gas": 2076814, "gasCost": 3, - "op": "PUSH1", - "pc": 3673, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -8529,18 +8714,20 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", - "0x0" + "0x100", + "0xe0", + "0x100" ] }, { - "depth": 1, - "gas": 2075326, + "pc": 3767, + "op": "PUSH1", + "gas": 2076811, "gasCost": 3, - "op": "DUP3", - "pc": 3675, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -8548,19 +8735,19 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", - "0x0", + "0x100", "0x20" ] }, { - "depth": 1, - "gas": 2075323, + "pc": 3769, + "op": "DUP4", + "gas": 2076808, "gasCost": 3, - "op": "ADD", - "pc": 3676, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -8568,20 +8755,20 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", - "0x0", + "0x100", "0x20", - "0xe0" + "0x0" ] }, { - "depth": 1, - "gas": 2075320, + "pc": 3770, + "op": "ADD", + "gas": 2076805, "gasCost": 3, - "op": "SWAP1", - "pc": 3677, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -8589,19 +8776,21 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", + "0x100", + "0x20", "0x0", - "0x100" + "0xe0" ] }, { + "pc": 3771, + "op": "MSTORE", + "gas": 2076802, + "gasCost": 6, "depth": 1, - "gas": 2075317, - "gasCost": 2, - "op": "POP", - "pc": 3678, "stack": [ "0x7f29c394", "0x17f", @@ -8609,19 +8798,20 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0x0" + "0x20", + "0xe0" ] }, { - "depth": 1, - "gas": 2075315, + "pc": 3772, + "op": "PUSH3", + "gas": 2076796, "gasCost": 3, - "op": "DUP2", - "pc": 3679, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -8629,18 +8819,18 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100" ] }, { - "depth": 1, - "gas": 2075312, - "gasCost": 3, + "pc": 3776, "op": "DUP2", - "pc": 3680, + "gas": 2076793, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -8648,19 +8838,19 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe0" + "0xec7" ] }, { - "depth": 1, - "gas": 2075309, + "pc": 3777, + "op": "DUP5", + "gas": 2076790, "gasCost": 3, - "op": "SUB", - "pc": 3681, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -8668,20 +8858,20 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe0", + "0xec7", "0x100" ] }, { - "depth": 1, - "gas": 2075306, + "pc": 3778, + "op": "PUSH3", + "gas": 2076787, "gasCost": 3, - "op": "PUSH1", - "pc": 3682, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -8689,19 +8879,21 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0x20" + "0xec7", + "0x100", + "0xa0" ] }, { + "pc": 3782, + "op": "JUMP", + "gas": 2076784, + "gasCost": 8, "depth": 1, - "gas": 2075303, - "gasCost": 3, - "op": "DUP4", - "pc": 3684, "stack": [ "0x7f29c394", "0x17f", @@ -8709,20 +8901,22 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0x20", - "0x0" + "0xec7", + "0x100", + "0xa0", + "0xe6a" ] }, { + "pc": 3690, + "op": "JUMPDEST", + "gas": 2076776, + "gasCost": 1, "depth": 1, - "gas": 2075300, - "gasCost": 3, - "op": "ADD", - "pc": 3685, "stack": [ "0x7f29c394", "0x17f", @@ -8730,21 +8924,21 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0x20", - "0x0", - "0xe0" + "0xec7", + "0x100", + "0xa0" ] }, { - "depth": 1, - "gas": 2075297, - "gasCost": 6, - "op": "MSTORE", - "pc": 3686, + "pc": 3691, + "op": "PUSH1", + "gas": 2076775, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -8752,20 +8946,21 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0x20", - "0xe0" + "0xec7", + "0x100", + "0xa0" ] }, { - "depth": 1, - "gas": 2075291, - "gasCost": 3, + "pc": 3693, "op": "PUSH3", - "pc": 3687, + "gas": 2076772, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -8773,18 +8968,22 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", - "0x100" + "0x100", + "0xec7", + "0x100", + "0xa0", + "0x0" ] }, { - "depth": 1, - "gas": 2075288, + "pc": 3697, + "op": "DUP3", + "gas": 2076769, "gasCost": 3, - "op": "DUP2", - "pc": 3691, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -8792,19 +8991,23 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72" + "0xec7", + "0x100", + "0xa0", + "0x0", + "0xe77" ] }, { - "depth": 1, - "gas": 2075285, + "pc": 3698, + "op": "PUSH3", + "gas": 2076766, "gasCost": 3, - "op": "DUP5", - "pc": 3692, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -8812,20 +9015,24 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", - "0x100" + "0xec7", + "0x100", + "0xa0", + "0x0", + "0xe77", + "0xa0" ] }, { + "pc": 3702, + "op": "JUMP", + "gas": 2076763, + "gasCost": 8, "depth": 1, - "gas": 2075282, - "gasCost": 3, - "op": "PUSH3", - "pc": 3693, "stack": [ "0x7f29c394", "0x17f", @@ -8833,21 +9040,25 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x100", - "0xa0" + "0xa0", + "0x0", + "0xe77", + "0xa0", + "0xe29" ] }, { + "pc": 3625, + "op": "JUMPDEST", + "gas": 2076755, + "gasCost": 1, "depth": 1, - "gas": 2075279, - "gasCost": 8, - "op": "JUMP", - "pc": 3697, "stack": [ "0x7f29c394", "0x17f", @@ -8855,22 +9066,24 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x100", "0xa0", - "0xe15" + "0x0", + "0xe77", + "0xa0" ] }, { + "pc": 3626, + "op": "PUSH1", + "gas": 2076754, + "gasCost": 3, "depth": 1, - "gas": 2075271, - "gasCost": 1, - "op": "JUMPDEST", - "pc": 3605, "stack": [ "0x7f29c394", "0x17f", @@ -8878,21 +9091,24 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x100", + "0xa0", + "0x0", + "0xe77", "0xa0" ] }, { - "depth": 1, - "gas": 2075270, + "pc": 3628, + "op": "DUP2", + "gas": 2076751, "gasCost": 3, - "op": "PUSH1", - "pc": 3606, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -8900,21 +9116,25 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x100", - "0xa0" + "0xa0", + "0x0", + "0xe77", + "0xa0", + "0x0" ] }, { - "depth": 1, - "gas": 2075267, + "pc": 3629, + "op": "MLOAD", + "gas": 2076748, "gasCost": 3, - "op": "PUSH3", - "pc": 3608, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -8922,22 +9142,26 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x100", "0xa0", - "0x0" + "0x0", + "0xe77", + "0xa0", + "0x0", + "0xa0" ] }, { - "depth": 1, - "gas": 2075264, + "pc": 3630, + "op": "SWAP1", + "gas": 2076745, "gasCost": 3, - "op": "DUP3", - "pc": 3612, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -8945,23 +9169,26 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x100", "0xa0", "0x0", - "0xe22" + "0xe77", + "0xa0", + "0x0", + "0x17" ] }, { + "pc": 3631, + "op": "POP", + "gas": 2076742, + "gasCost": 2, "depth": 1, - "gas": 2075261, - "gasCost": 3, - "op": "PUSH3", - "pc": 3613, "stack": [ "0x7f29c394", "0x17f", @@ -8969,24 +9196,26 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x100", "0xa0", "0x0", - "0xe22", - "0xa0" + "0xe77", + "0xa0", + "0x17", + "0x0" ] }, { + "pc": 3632, + "op": "SWAP2", + "gas": 2076740, + "gasCost": 3, "depth": 1, - "gas": 2075258, - "gasCost": 8, - "op": "JUMP", - "pc": 3617, "stack": [ "0x7f29c394", "0x17f", @@ -8994,25 +9223,25 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x100", "0xa0", "0x0", - "0xe22", + "0xe77", "0xa0", - "0xdde" + "0x17" ] }, { + "pc": 3633, + "op": "SWAP1", + "gas": 2076737, + "gasCost": 3, "depth": 1, - "gas": 2075250, - "gasCost": 1, - "op": "JUMPDEST", - "pc": 3550, "stack": [ "0x7f29c394", "0x17f", @@ -9020,24 +9249,25 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x100", "0xa0", "0x0", - "0xe22", - "0xa0" + "0x17", + "0xa0", + "0xe77" ] }, { + "pc": 3634, + "op": "POP", + "gas": 2076734, + "gasCost": 2, "depth": 1, - "gas": 2075249, - "gasCost": 3, - "op": "PUSH1", - "pc": 3551, "stack": [ "0x7f29c394", "0x17f", @@ -9045,24 +9275,25 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x100", "0xa0", "0x0", - "0xe22", + "0x17", + "0xe77", "0xa0" ] }, { + "pc": 3635, + "op": "JUMP", + "gas": 2076732, + "gasCost": 8, "depth": 1, - "gas": 2075246, - "gasCost": 3, - "op": "DUP2", - "pc": 3553, "stack": [ "0x7f29c394", "0x17f", @@ -9070,25 +9301,24 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x100", "0xa0", "0x0", - "0xe22", - "0xa0", - "0x0" + "0x17", + "0xe77" ] }, { + "pc": 3703, + "op": "JUMPDEST", + "gas": 2076724, + "gasCost": 1, "depth": 1, - "gas": 2075243, - "gasCost": 3, - "op": "MLOAD", - "pc": 3554, "stack": [ "0x7f29c394", "0x17f", @@ -9096,26 +9326,23 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x100", "0xa0", "0x0", - "0xe22", - "0xa0", - "0x0", - "0xa0" + "0x17" ] }, { - "depth": 1, - "gas": 2075240, + "pc": 3704, + "op": "PUSH3", + "gas": 2076723, "gasCost": 3, - "op": "SWAP1", - "pc": 3555, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -9123,26 +9350,23 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x100", "0xa0", "0x0", - "0xe22", - "0xa0", - "0x0", "0x17" ] }, { + "pc": 3708, + "op": "DUP2", + "gas": 2076720, + "gasCost": 3, "depth": 1, - "gas": 2075237, - "gasCost": 2, - "op": "POP", - "pc": 3556, "stack": [ "0x7f29c394", "0x17f", @@ -9150,26 +9374,24 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x100", "0xa0", "0x0", - "0xe22", - "0xa0", "0x17", - "0x0" + "0xe83" ] }, { - "depth": 1, - "gas": 2075235, + "pc": 3709, + "op": "DUP6", + "gas": 2076717, "gasCost": 3, - "op": "SWAP2", - "pc": 3557, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -9177,25 +9399,25 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x100", "0xa0", "0x0", - "0xe22", - "0xa0", + "0x17", + "0xe83", "0x17" ] }, { - "depth": 1, - "gas": 2075232, + "pc": 3710, + "op": "PUSH3", + "gas": 2076714, "gasCost": 3, - "op": "SWAP1", - "pc": 3558, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -9203,25 +9425,26 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x100", "0xa0", "0x0", "0x17", - "0xa0", - "0xe22" + "0xe83", + "0x17", + "0x100" ] }, { + "pc": 3714, + "op": "JUMP", + "gas": 2076711, + "gasCost": 8, "depth": 1, - "gas": 2075229, - "gasCost": 2, - "op": "POP", - "pc": 3559, "stack": [ "0x7f29c394", "0x17f", @@ -9229,25 +9452,27 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x100", "0xa0", "0x0", "0x17", - "0xe22", - "0xa0" + "0xe83", + "0x17", + "0x100", + "0xaf5" ] }, { + "pc": 2805, + "op": "JUMPDEST", + "gas": 2076703, + "gasCost": 1, "depth": 1, - "gas": 2075227, - "gasCost": 8, - "op": "JUMP", - "pc": 3560, "stack": [ "0x7f29c394", "0x17f", @@ -9255,24 +9480,26 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x100", "0xa0", "0x0", "0x17", - "0xe22" + "0xe83", + "0x17", + "0x100" ] }, { + "pc": 2806, + "op": "PUSH1", + "gas": 2076702, + "gasCost": 3, "depth": 1, - "gas": 2075219, - "gasCost": 1, - "op": "JUMPDEST", - "pc": 3618, "stack": [ "0x7f29c394", "0x17f", @@ -9280,23 +9507,26 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x100", "0xa0", "0x0", - "0x17" + "0x17", + "0xe83", + "0x17", + "0x100" ] }, { - "depth": 1, - "gas": 2075218, + "pc": 2808, + "op": "DUP3", + "gas": 2076699, "gasCost": 3, - "op": "PUSH3", - "pc": 3619, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -9304,23 +9534,27 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x100", "0xa0", "0x0", - "0x17" + "0x17", + "0xe83", + "0x17", + "0x100", + "0x0" ] }, { - "depth": 1, - "gas": 2075215, + "pc": 2809, + "op": "DUP3", + "gas": 2076696, "gasCost": 3, - "op": "DUP2", - "pc": 3623, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -9328,24 +9562,28 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x100", "0xa0", "0x0", "0x17", - "0xe2e" + "0xe83", + "0x17", + "0x100", + "0x0", + "0x17" ] }, { + "pc": 2810, + "op": "MSTORE", + "gas": 2076693, + "gasCost": 6, "depth": 1, - "gas": 2075212, - "gasCost": 3, - "op": "DUP6", - "pc": 3624, "stack": [ "0x7f29c394", "0x17f", @@ -9353,25 +9591,29 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x100", "0xa0", "0x0", "0x17", - "0xe2e", - "0x17" + "0xe83", + "0x17", + "0x100", + "0x0", + "0x17", + "0x100" ] }, { - "depth": 1, - "gas": 2075209, + "pc": 2811, + "op": "PUSH1", + "gas": 2076687, "gasCost": 3, - "op": "PUSH3", - "pc": 3625, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -9379,26 +9621,27 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x100", "0xa0", "0x0", "0x17", - "0xe2e", + "0xe83", "0x17", - "0x100" + "0x100", + "0x0" ] }, { + "pc": 2813, + "op": "DUP3", + "gas": 2076684, + "gasCost": 3, "depth": 1, - "gas": 2075206, - "gasCost": 8, - "op": "JUMP", - "pc": 3629, "stack": [ "0x7f29c394", "0x17f", @@ -9406,27 +9649,28 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x100", "0xa0", "0x0", "0x17", - "0xe2e", + "0xe83", "0x17", "0x100", - "0xad3" + "0x0", + "0x20" ] }, { + "pc": 2814, + "op": "ADD", + "gas": 2076681, + "gasCost": 3, "depth": 1, - "gas": 2075198, - "gasCost": 1, - "op": "JUMPDEST", - "pc": 2771, "stack": [ "0x7f29c394", "0x17f", @@ -9434,26 +9678,29 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x100", "0xa0", "0x0", "0x17", - "0xe2e", + "0xe83", "0x17", + "0x100", + "0x0", + "0x20", "0x100" ] }, { - "depth": 1, - "gas": 2075197, + "pc": 2815, + "op": "SWAP1", + "gas": 2076678, "gasCost": 3, - "op": "PUSH1", - "pc": 2772, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -9461,26 +9708,28 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x100", "0xa0", "0x0", "0x17", - "0xe2e", + "0xe83", "0x17", - "0x100" + "0x100", + "0x0", + "0x120" ] }, { + "pc": 2816, + "op": "POP", + "gas": 2076675, + "gasCost": 2, "depth": 1, - "gas": 2075194, - "gasCost": 3, - "op": "DUP3", - "pc": 2774, "stack": [ "0x7f29c394", "0x17f", @@ -9488,27 +9737,28 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x100", "0xa0", "0x0", "0x17", - "0xe2e", + "0xe83", "0x17", "0x100", + "0x120", "0x0" ] }, { - "depth": 1, - "gas": 2075191, + "pc": 2817, + "op": "SWAP3", + "gas": 2076673, "gasCost": 3, - "op": "DUP3", - "pc": 2775, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -9516,28 +9766,27 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x100", "0xa0", "0x0", "0x17", - "0xe2e", + "0xe83", "0x17", "0x100", - "0x0", - "0x17" + "0x120" ] }, { + "pc": 2818, + "op": "SWAP2", + "gas": 2076670, + "gasCost": 3, "depth": 1, - "gas": 2075188, - "gasCost": 6, - "op": "MSTORE", - "pc": 2776, "stack": [ "0x7f29c394", "0x17f", @@ -9545,29 +9794,27 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x100", "0xa0", "0x0", "0x17", - "0xe2e", + "0x120", "0x17", "0x100", - "0x0", - "0x17", - "0x100" + "0xe83" ] }, { + "pc": 2819, + "op": "POP", + "gas": 2076667, + "gasCost": 2, "depth": 1, - "gas": 2075182, - "gasCost": 3, - "op": "PUSH1", - "pc": 2777, "stack": [ "0x7f29c394", "0x17f", @@ -9575,27 +9822,27 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x100", "0xa0", "0x0", "0x17", - "0xe2e", - "0x17", + "0x120", + "0xe83", "0x100", - "0x0" + "0x17" ] }, { + "pc": 2820, + "op": "POP", + "gas": 2076665, + "gasCost": 2, "depth": 1, - "gas": 2075179, - "gasCost": 3, - "op": "DUP3", - "pc": 2779, "stack": [ "0x7f29c394", "0x17f", @@ -9603,28 +9850,26 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x100", "0xa0", "0x0", "0x17", - "0xe2e", - "0x17", - "0x100", - "0x0", - "0x20" + "0x120", + "0xe83", + "0x100" ] }, { + "pc": 2821, + "op": "JUMP", + "gas": 2076663, + "gasCost": 8, "depth": 1, - "gas": 2075176, - "gasCost": 3, - "op": "ADD", - "pc": 2780, "stack": [ "0x7f29c394", "0x17f", @@ -9632,29 +9877,25 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x100", "0xa0", "0x0", "0x17", - "0xe2e", - "0x17", - "0x100", - "0x0", - "0x20", - "0x100" + "0x120", + "0xe83" ] }, { + "pc": 3715, + "op": "JUMPDEST", + "gas": 2076655, + "gasCost": 1, "depth": 1, - "gas": 2075173, - "gasCost": 3, - "op": "SWAP1", - "pc": 2781, "stack": [ "0x7f29c394", "0x17f", @@ -9662,28 +9903,24 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x100", "0xa0", "0x0", "0x17", - "0xe2e", - "0x17", - "0x100", - "0x0", "0x120" ] }, { + "pc": 3716, + "op": "SWAP4", + "gas": 2076654, + "gasCost": 3, "depth": 1, - "gas": 2075170, - "gasCost": 2, - "op": "POP", - "pc": 2782, "stack": [ "0x7f29c394", "0x17f", @@ -9691,28 +9928,24 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x100", "0xa0", "0x0", "0x17", - "0xe2e", - "0x17", - "0x100", - "0x120", - "0x0" + "0x120" ] }, { + "pc": 3717, + "op": "POP", + "gas": 2076651, + "gasCost": 2, "depth": 1, - "gas": 2075168, - "gasCost": 3, - "op": "SWAP3", - "pc": 2783, "stack": [ "0x7f29c394", "0x17f", @@ -9720,27 +9953,24 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", - "0x100", + "0xec7", + "0x120", "0xa0", "0x0", "0x17", - "0xe2e", - "0x17", - "0x100", - "0x120" + "0x100" ] }, { - "depth": 1, - "gas": 2075165, + "pc": 3718, + "op": "PUSH3", + "gas": 2076649, "gasCost": 3, - "op": "SWAP2", - "pc": 2784, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -9748,27 +9978,23 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", - "0x100", + "0xec7", + "0x120", "0xa0", "0x0", - "0x17", - "0x120", - "0x17", - "0x100", - "0xe2e" + "0x17" ] }, { + "pc": 3722, + "op": "DUP2", + "gas": 2076646, + "gasCost": 3, "depth": 1, - "gas": 2075162, - "gasCost": 2, - "op": "POP", - "pc": 2785, "stack": [ "0x7f29c394", "0x17f", @@ -9776,27 +10002,24 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", - "0x100", + "0xec7", + "0x120", "0xa0", "0x0", "0x17", - "0x120", - "0xe2e", - "0x100", - "0x17" + "0xe95" ] }, { + "pc": 3723, + "op": "DUP6", + "gas": 2076643, + "gasCost": 3, "depth": 1, - "gas": 2075160, - "gasCost": 2, - "op": "POP", - "pc": 2786, "stack": [ "0x7f29c394", "0x17f", @@ -9804,26 +10027,25 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", - "0x100", + "0xec7", + "0x120", "0xa0", "0x0", "0x17", - "0x120", - "0xe2e", - "0x100" + "0xe95", + "0x17" ] }, { + "pc": 3724, + "op": "PUSH1", + "gas": 2076640, + "gasCost": 3, "depth": 1, - "gas": 2075158, - "gasCost": 8, - "op": "JUMP", - "pc": 2787, "stack": [ "0x7f29c394", "0x17f", @@ -9831,25 +10053,26 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", - "0x100", + "0xec7", + "0x120", "0xa0", "0x0", "0x17", - "0x120", - "0xe2e" + "0xe95", + "0x17", + "0x120" ] }, { + "pc": 3726, + "op": "DUP7", + "gas": 2076637, + "gasCost": 3, "depth": 1, - "gas": 2075150, - "gasCost": 1, - "op": "JUMPDEST", - "pc": 3630, "stack": [ "0x7f29c394", "0x17f", @@ -9857,24 +10080,27 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", - "0x100", + "0xec7", + "0x120", "0xa0", "0x0", "0x17", - "0x120" + "0xe95", + "0x17", + "0x120", + "0x20" ] }, { - "depth": 1, - "gas": 2075149, + "pc": 3727, + "op": "ADD", + "gas": 2076634, "gasCost": 3, - "op": "SWAP4", - "pc": 3631, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -9882,24 +10108,28 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", - "0x100", + "0xec7", + "0x120", "0xa0", "0x0", "0x17", - "0x120" + "0xe95", + "0x17", + "0x120", + "0x20", + "0xa0" ] }, { + "pc": 3728, + "op": "PUSH3", + "gas": 2076631, + "gasCost": 3, "depth": 1, - "gas": 2075146, - "gasCost": 2, - "op": "POP", - "pc": 3632, "stack": [ "0x7f29c394", "0x17f", @@ -9907,24 +10137,27 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x120", "0xa0", "0x0", "0x17", - "0x100" + "0xe95", + "0x17", + "0x120", + "0xc0" ] }, { + "pc": 3732, + "op": "JUMP", + "gas": 2076628, + "gasCost": 8, "depth": 1, - "gas": 2075144, - "gasCost": 3, - "op": "PUSH3", - "pc": 3633, "stack": [ "0x7f29c394", "0x17f", @@ -9932,23 +10165,28 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x120", "0xa0", "0x0", - "0x17" + "0x17", + "0xe95", + "0x17", + "0x120", + "0xc0", + "0xe34" ] }, { + "pc": 3636, + "op": "JUMPDEST", + "gas": 2076620, + "gasCost": 1, "depth": 1, - "gas": 2075141, - "gasCost": 3, - "op": "DUP2", - "pc": 3637, "stack": [ "0x7f29c394", "0x17f", @@ -9956,24 +10194,27 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x120", "0xa0", "0x0", "0x17", - "0xe40" + "0xe95", + "0x17", + "0x120", + "0xc0" ] }, { - "depth": 1, - "gas": 2075138, + "pc": 3637, + "op": "PUSH1", + "gas": 2076619, "gasCost": 3, - "op": "DUP6", - "pc": 3638, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -9981,25 +10222,27 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x120", "0xa0", "0x0", "0x17", - "0xe40", - "0x17" + "0xe95", + "0x17", + "0x120", + "0xc0" ] }, { - "depth": 1, - "gas": 2075135, - "gasCost": 3, - "op": "PUSH1", "pc": 3639, + "op": "JUMPDEST", + "gas": 2076616, + "gasCost": 1, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -10007,26 +10250,28 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x120", "0xa0", "0x0", "0x17", - "0xe40", + "0xe95", "0x17", - "0x120" + "0x120", + "0xc0", + "0x0" ] }, { - "depth": 1, - "gas": 2075132, + "pc": 3640, + "op": "DUP4", + "gas": 2076615, "gasCost": 3, - "op": "DUP7", - "pc": 3641, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -10034,27 +10279,28 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x120", "0xa0", "0x0", "0x17", - "0xe40", + "0xe95", "0x17", "0x120", - "0x20" + "0xc0", + "0x0" ] }, { - "depth": 1, - "gas": 2075129, + "pc": 3641, + "op": "DUP2", + "gas": 2076612, "gasCost": 3, - "op": "ADD", - "pc": 3642, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -10062,28 +10308,29 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x120", "0xa0", "0x0", "0x17", - "0xe40", + "0xe95", "0x17", "0x120", - "0x20", - "0xa0" + "0xc0", + "0x0", + "0x17" ] }, { - "depth": 1, - "gas": 2075126, + "pc": 3642, + "op": "LT", + "gas": 2076609, "gasCost": 3, - "op": "PUSH3", - "pc": 3643, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -10091,27 +10338,30 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x120", "0xa0", "0x0", "0x17", - "0xe40", + "0xe95", "0x17", "0x120", - "0xc0" + "0xc0", + "0x0", + "0x17", + "0x0" ] }, { + "pc": 3643, + "op": "ISZERO", + "gas": 2076606, + "gasCost": 3, "depth": 1, - "gas": 2075123, - "gasCost": 8, - "op": "JUMP", - "pc": 3647, "stack": [ "0x7f29c394", "0x17f", @@ -10119,28 +10369,29 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x120", "0xa0", "0x0", "0x17", - "0xe40", + "0xe95", "0x17", "0x120", "0xc0", - "0xde9" + "0x0", + "0x1" ] }, { + "pc": 3644, + "op": "PUSH3", + "gas": 2076603, + "gasCost": 3, "depth": 1, - "gas": 2075115, - "gasCost": 1, - "op": "JUMPDEST", - "pc": 3561, "stack": [ "0x7f29c394", "0x17f", @@ -10148,27 +10399,29 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x120", "0xa0", "0x0", "0x17", - "0xe40", + "0xe95", "0x17", "0x120", - "0xc0" + "0xc0", + "0x0", + "0x0" ] }, { + "pc": 3648, + "op": "JUMPI", + "gas": 2076600, + "gasCost": 10, "depth": 1, - "gas": 2075114, - "gasCost": 3, - "op": "PUSH1", - "pc": 3562, "stack": [ "0x7f29c394", "0x17f", @@ -10176,27 +10429,30 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x120", "0xa0", "0x0", "0x17", - "0xe40", + "0xe95", "0x17", "0x120", - "0xc0" + "0xc0", + "0x0", + "0x0", + "0xe54" ] }, { + "pc": 3649, + "op": "DUP1", + "gas": 2076590, + "gasCost": 3, "depth": 1, - "gas": 2075111, - "gasCost": 1, - "op": "JUMPDEST", - "pc": 3564, "stack": [ "0x7f29c394", "0x17f", @@ -10204,16 +10460,16 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x120", "0xa0", "0x0", "0x17", - "0xe40", + "0xe95", "0x17", "0x120", "0xc0", @@ -10221,11 +10477,11 @@ ] }, { - "depth": 1, - "gas": 2075110, + "pc": 3650, + "op": "DUP3", + "gas": 2076587, "gasCost": 3, - "op": "DUP4", - "pc": 3565, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -10233,28 +10489,29 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x120", "0xa0", "0x0", "0x17", - "0xe40", + "0xe95", "0x17", "0x120", "0xc0", + "0x0", "0x0" ] }, { - "depth": 1, - "gas": 2075107, + "pc": 3651, + "op": "ADD", + "gas": 2076584, "gasCost": 3, - "op": "DUP2", - "pc": 3566, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -10262,29 +10519,30 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x120", "0xa0", "0x0", "0x17", - "0xe40", + "0xe95", "0x17", "0x120", "0xc0", "0x0", - "0x17" + "0x0", + "0xc0" ] }, { - "depth": 1, - "gas": 2075104, + "pc": 3652, + "op": "MLOAD", + "gas": 2076581, "gasCost": 3, - "op": "LT", - "pc": 3567, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -10292,30 +10550,29 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x120", "0xa0", "0x0", "0x17", - "0xe40", + "0xe95", "0x17", "0x120", "0xc0", "0x0", - "0x17", - "0x0" + "0xc0" ] }, { - "depth": 1, - "gas": 2075101, + "pc": 3653, + "op": "DUP2", + "gas": 2076578, "gasCost": 3, - "op": "ISZERO", - "pc": 3568, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -10323,29 +10580,29 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x120", "0xa0", "0x0", "0x17", - "0xe40", + "0xe95", "0x17", "0x120", "0xc0", "0x0", - "0x1" + "0x546869732066756e6374696f6e20726576657274656421000000000000000000" ] }, { - "depth": 1, - "gas": 2075098, + "pc": 3654, + "op": "DUP5", + "gas": 2076575, "gasCost": 3, - "op": "PUSH3", - "pc": 3569, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -10353,29 +10610,30 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x120", "0xa0", "0x0", "0x17", - "0xe40", + "0xe95", "0x17", "0x120", "0xc0", "0x0", + "0x546869732066756e6374696f6e20726576657274656421000000000000000000", "0x0" ] }, { + "pc": 3655, + "op": "ADD", + "gas": 2076572, + "gasCost": 3, "depth": 1, - "gas": 2075095, - "gasCost": 10, - "op": "JUMPI", - "pc": 3573, "stack": [ "0x7f29c394", "0x17f", @@ -10383,30 +10641,31 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x120", "0xa0", "0x0", "0x17", - "0xe40", + "0xe95", "0x17", "0x120", "0xc0", "0x0", + "0x546869732066756e6374696f6e20726576657274656421000000000000000000", "0x0", - "0xe09" + "0x120" ] }, { + "pc": 3656, + "op": "MSTORE", + "gas": 2076569, + "gasCost": 6, "depth": 1, - "gas": 2075085, - "gasCost": 3, - "op": "DUP1", - "pc": 3574, "stack": [ "0x7f29c394", "0x17f", @@ -10414,28 +10673,30 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x120", "0xa0", "0x0", "0x17", - "0xe40", + "0xe95", "0x17", "0x120", "0xc0", - "0x0" + "0x0", + "0x546869732066756e6374696f6e20726576657274656421000000000000000000", + "0x120" ] }, { - "depth": 1, - "gas": 2075082, + "pc": 3657, + "op": "PUSH1", + "gas": 2076563, "gasCost": 3, - "op": "DUP3", - "pc": 3575, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -10443,29 +10704,28 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x120", "0xa0", "0x0", "0x17", - "0xe40", + "0xe95", "0x17", "0x120", "0xc0", - "0x0", "0x0" ] }, { - "depth": 1, - "gas": 2075079, + "pc": 3659, + "op": "DUP2", + "gas": 2076560, "gasCost": 3, - "op": "ADD", - "pc": 3576, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -10473,30 +10733,29 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x120", "0xa0", "0x0", "0x17", - "0xe40", + "0xe95", "0x17", "0x120", "0xc0", "0x0", - "0x0", - "0xc0" + "0x20" ] }, { - "depth": 1, - "gas": 2075076, + "pc": 3660, + "op": "ADD", + "gas": 2076557, "gasCost": 3, - "op": "MLOAD", - "pc": 3577, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -10504,29 +10763,30 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x120", "0xa0", "0x0", "0x17", - "0xe40", + "0xe95", "0x17", "0x120", "0xc0", "0x0", - "0xc0" + "0x20", + "0x0" ] }, { - "depth": 1, - "gas": 2075073, + "pc": 3661, + "op": "SWAP1", + "gas": 2076554, "gasCost": 3, - "op": "DUP2", - "pc": 3578, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -10534,29 +10794,29 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x120", "0xa0", "0x0", "0x17", - "0xe40", + "0xe95", "0x17", "0x120", "0xc0", "0x0", - "0x546869732066756e6374696f6e20726576657274656421000000000000000000" + "0x20" ] }, { + "pc": 3662, + "op": "POP", + "gas": 2076551, + "gasCost": 2, "depth": 1, - "gas": 2075070, - "gasCost": 3, - "op": "DUP5", - "pc": 3579, "stack": [ "0x7f29c394", "0x17f", @@ -10564,30 +10824,29 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x120", "0xa0", "0x0", "0x17", - "0xe40", + "0xe95", "0x17", "0x120", "0xc0", - "0x0", - "0x546869732066756e6374696f6e20726576657274656421000000000000000000", + "0x20", "0x0" ] }, { - "depth": 1, - "gas": 2075067, + "pc": 3663, + "op": "PUSH3", + "gas": 2076549, "gasCost": 3, - "op": "ADD", - "pc": 3580, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -10595,31 +10854,28 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x120", "0xa0", "0x0", "0x17", - "0xe40", + "0xe95", "0x17", "0x120", "0xc0", - "0x0", - "0x546869732066756e6374696f6e20726576657274656421000000000000000000", - "0x0", - "0x120" + "0x20" ] }, { + "pc": 3667, + "op": "JUMP", + "gas": 2076546, + "gasCost": 8, "depth": 1, - "gas": 2075064, - "gasCost": 6, - "op": "MSTORE", - "pc": 3581, "stack": [ "0x7f29c394", "0x17f", @@ -10627,30 +10883,29 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x120", "0xa0", "0x0", "0x17", - "0xe40", + "0xe95", "0x17", "0x120", "0xc0", - "0x0", - "0x546869732066756e6374696f6e20726576657274656421000000000000000000", - "0x120" + "0x20", + "0xe37" ] }, { + "pc": 3639, + "op": "JUMPDEST", + "gas": 2076538, + "gasCost": 1, "depth": 1, - "gas": 2075058, - "gasCost": 3, - "op": "PUSH1", - "pc": 3582, "stack": [ "0x7f29c394", "0x17f", @@ -10658,28 +10913,28 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x120", "0xa0", "0x0", "0x17", - "0xe40", + "0xe95", "0x17", "0x120", "0xc0", - "0x0" + "0x20" ] }, { - "depth": 1, - "gas": 2075055, + "pc": 3640, + "op": "DUP4", + "gas": 2076537, "gasCost": 3, - "op": "DUP2", - "pc": 3584, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -10687,29 +10942,28 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x120", "0xa0", "0x0", "0x17", - "0xe40", + "0xe95", "0x17", "0x120", "0xc0", - "0x0", "0x20" ] }, { - "depth": 1, - "gas": 2075052, + "pc": 3641, + "op": "DUP2", + "gas": 2076534, "gasCost": 3, - "op": "ADD", - "pc": 3585, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -10717,30 +10971,29 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x120", "0xa0", "0x0", "0x17", - "0xe40", + "0xe95", "0x17", "0x120", "0xc0", - "0x0", "0x20", - "0x0" + "0x17" ] }, { - "depth": 1, - "gas": 2075049, + "pc": 3642, + "op": "LT", + "gas": 2076531, "gasCost": 3, - "op": "SWAP1", - "pc": 3586, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -10748,29 +11001,30 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x120", "0xa0", "0x0", "0x17", - "0xe40", + "0xe95", "0x17", "0x120", "0xc0", - "0x0", + "0x20", + "0x17", "0x20" ] }, { + "pc": 3643, + "op": "ISZERO", + "gas": 2076528, + "gasCost": 3, "depth": 1, - "gas": 2075046, - "gasCost": 2, - "op": "POP", - "pc": 3587, "stack": [ "0x7f29c394", "0x17f", @@ -10778,16 +11032,16 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x120", "0xa0", "0x0", "0x17", - "0xe40", + "0xe95", "0x17", "0x120", "0xc0", @@ -10796,11 +11050,11 @@ ] }, { - "depth": 1, - "gas": 2075044, - "gasCost": 3, + "pc": 3644, "op": "PUSH3", - "pc": 3588, + "gas": 2076525, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -10808,28 +11062,29 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x120", "0xa0", "0x0", "0x17", - "0xe40", + "0xe95", "0x17", "0x120", "0xc0", - "0x20" + "0x20", + "0x1" ] }, { + "pc": 3648, + "op": "JUMPI", + "gas": 2076522, + "gasCost": 10, "depth": 1, - "gas": 2075041, - "gasCost": 8, - "op": "JUMP", - "pc": 3592, "stack": [ "0x7f29c394", "0x17f", @@ -10837,29 +11092,30 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x120", "0xa0", "0x0", "0x17", - "0xe40", + "0xe95", "0x17", "0x120", "0xc0", "0x20", - "0xdec" + "0x1", + "0xe54" ] }, { - "depth": 1, - "gas": 2075033, - "gasCost": 1, + "pc": 3668, "op": "JUMPDEST", - "pc": 3564, + "gas": 2076512, + "gasCost": 1, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -10867,16 +11123,16 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x120", "0xa0", "0x0", "0x17", - "0xe40", + "0xe95", "0x17", "0x120", "0xc0", @@ -10884,11 +11140,11 @@ ] }, { - "depth": 1, - "gas": 2075032, - "gasCost": 3, + "pc": 3669, "op": "DUP4", - "pc": 3565, + "gas": 2076511, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -10896,16 +11152,16 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x120", "0xa0", "0x0", "0x17", - "0xe40", + "0xe95", "0x17", "0x120", "0xc0", @@ -10913,11 +11169,11 @@ ] }, { - "depth": 1, - "gas": 2075029, - "gasCost": 3, + "pc": 3670, "op": "DUP2", - "pc": 3566, + "gas": 2076508, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -10925,16 +11181,16 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x120", "0xa0", "0x0", "0x17", - "0xe40", + "0xe95", "0x17", "0x120", "0xc0", @@ -10943,11 +11199,11 @@ ] }, { - "depth": 1, - "gas": 2075026, + "pc": 3671, + "op": "GT", + "gas": 2076505, "gasCost": 3, - "op": "LT", - "pc": 3567, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -10955,16 +11211,16 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x120", "0xa0", "0x0", "0x17", - "0xe40", + "0xe95", "0x17", "0x120", "0xc0", @@ -10974,11 +11230,11 @@ ] }, { - "depth": 1, - "gas": 2075023, - "gasCost": 3, + "pc": 3672, "op": "ISZERO", - "pc": 3568, + "gas": 2076502, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -10986,29 +11242,29 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x120", "0xa0", "0x0", "0x17", - "0xe40", + "0xe95", "0x17", "0x120", "0xc0", "0x20", - "0x0" + "0x1" ] }, { - "depth": 1, - "gas": 2075020, - "gasCost": 3, + "pc": 3673, "op": "PUSH3", - "pc": 3569, + "gas": 2076499, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -11016,29 +11272,29 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x120", "0xa0", "0x0", "0x17", - "0xe40", + "0xe95", "0x17", "0x120", "0xc0", "0x20", - "0x1" + "0x0" ] }, { - "depth": 1, - "gas": 2075017, - "gasCost": 10, + "pc": 3677, "op": "JUMPI", - "pc": 3573, + "gas": 2076496, + "gasCost": 10, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -11046,30 +11302,30 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x120", "0xa0", "0x0", "0x17", - "0xe40", + "0xe95", "0x17", "0x120", "0xc0", "0x20", - "0x1", - "0xe09" + "0x0", + "0xe64" ] }, { + "pc": 3678, + "op": "PUSH1", + "gas": 2076486, + "gasCost": 3, "depth": 1, - "gas": 2075007, - "gasCost": 1, - "op": "JUMPDEST", - "pc": 3593, "stack": [ "0x7f29c394", "0x17f", @@ -11077,16 +11333,16 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x120", "0xa0", "0x0", "0x17", - "0xe40", + "0xe95", "0x17", "0x120", "0xc0", @@ -11094,11 +11350,11 @@ ] }, { - "depth": 1, - "gas": 2075006, + "pc": 3680, + "op": "DUP5", + "gas": 2076483, "gasCost": 3, - "op": "PUSH1", - "pc": 3594, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -11106,28 +11362,29 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x120", "0xa0", "0x0", "0x17", - "0xe40", + "0xe95", "0x17", "0x120", "0xc0", - "0x20" + "0x20", + "0x0" ] }, { - "depth": 1, - "gas": 2075003, - "gasCost": 3, + "pc": 3681, "op": "DUP5", - "pc": 3596, + "gas": 2076480, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -11135,29 +11392,30 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x120", "0xa0", "0x0", "0x17", - "0xe40", + "0xe95", "0x17", "0x120", "0xc0", "0x20", - "0x0" + "0x0", + "0x17" ] }, { - "depth": 1, - "gas": 2075000, + "pc": 3682, + "op": "ADD", + "gas": 2076477, "gasCost": 3, - "op": "DUP5", - "pc": 3597, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -11165,30 +11423,31 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x120", "0xa0", "0x0", "0x17", - "0xe40", + "0xe95", "0x17", "0x120", "0xc0", "0x20", "0x0", - "0x17" + "0x17", + "0x120" ] }, { + "pc": 3683, + "op": "MSTORE", + "gas": 2076474, + "gasCost": 6, "depth": 1, - "gas": 2074997, - "gasCost": 3, - "op": "ADD", - "pc": 3598, "stack": [ "0x7f29c394", "0x17f", @@ -11196,31 +11455,30 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x120", "0xa0", "0x0", "0x17", - "0xe40", + "0xe95", "0x17", "0x120", "0xc0", "0x20", "0x0", - "0x17", - "0x120" + "0x137" ] }, { + "pc": 3684, + "op": "JUMPDEST", + "gas": 2076468, + "gasCost": 1, "depth": 1, - "gas": 2074994, - "gasCost": 6, - "op": "MSTORE", - "pc": 3599, "stack": [ "0x7f29c394", "0x17f", @@ -11228,30 +11486,28 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x120", "0xa0", "0x0", "0x17", - "0xe40", + "0xe95", "0x17", "0x120", "0xc0", - "0x20", - "0x0", - "0x137" + "0x20" ] }, { - "depth": 1, - "gas": 2074988, - "gasCost": 2, + "pc": 3685, "op": "POP", - "pc": 3600, + "gas": 2076467, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -11259,16 +11515,16 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x120", "0xa0", "0x0", "0x17", - "0xe40", + "0xe95", "0x17", "0x120", "0xc0", @@ -11276,11 +11532,11 @@ ] }, { - "depth": 1, - "gas": 2074986, - "gasCost": 2, + "pc": 3686, "op": "POP", - "pc": 3601, + "gas": 2076465, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -11288,27 +11544,27 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x120", "0xa0", "0x0", "0x17", - "0xe40", + "0xe95", "0x17", "0x120", "0xc0" ] }, { - "depth": 1, - "gas": 2074984, - "gasCost": 2, + "pc": 3687, "op": "POP", - "pc": 3602, + "gas": 2076463, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -11316,26 +11572,26 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x120", "0xa0", "0x0", "0x17", - "0xe40", + "0xe95", "0x17", "0x120" ] }, { - "depth": 1, - "gas": 2074982, - "gasCost": 2, + "pc": 3688, "op": "POP", - "pc": 3603, + "gas": 2076461, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -11343,25 +11599,25 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x120", "0xa0", "0x0", "0x17", - "0xe40", + "0xe95", "0x17" ] }, { - "depth": 1, - "gas": 2074980, - "gasCost": 8, + "pc": 3689, "op": "JUMP", - "pc": 3604, + "gas": 2076459, + "gasCost": 8, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -11369,24 +11625,24 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x120", "0xa0", "0x0", "0x17", - "0xe40" + "0xe95" ] }, - { - "depth": 1, - "gas": 2074972, - "gasCost": 1, + { + "pc": 3733, "op": "JUMPDEST", - "pc": 3648, + "gas": 2076451, + "gasCost": 1, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -11394,11 +11650,11 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x120", "0xa0", "0x0", @@ -11406,11 +11662,11 @@ ] }, { - "depth": 1, - "gas": 2074971, - "gasCost": 3, + "pc": 3734, "op": "PUSH3", - "pc": 3649, + "gas": 2076450, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -11418,11 +11674,11 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x120", "0xa0", "0x0", @@ -11430,11 +11686,11 @@ ] }, { - "depth": 1, - "gas": 2074968, - "gasCost": 3, + "pc": 3738, "op": "DUP2", - "pc": 3653, + "gas": 2076447, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -11442,24 +11698,24 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x120", "0xa0", "0x0", "0x17", - "0xe4b" + "0xea0" ] }, { - "depth": 1, - "gas": 2074965, - "gasCost": 3, + "pc": 3739, "op": "PUSH3", - "pc": 3654, + "gas": 2076444, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -11467,25 +11723,25 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x120", "0xa0", "0x0", "0x17", - "0xe4b", + "0xea0", "0x17" ] }, { - "depth": 1, - "gas": 2074962, - "gasCost": 8, + "pc": 3743, "op": "JUMP", - "pc": 3658, + "gas": 2076441, + "gasCost": 8, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -11493,26 +11749,26 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x120", "0xa0", "0x0", "0x17", - "0xe4b", + "0xea0", "0x17", - "0xccd" + "0xd11" ] }, { - "depth": 1, - "gas": 2074954, - "gasCost": 1, + "pc": 3345, "op": "JUMPDEST", - "pc": 3277, + "gas": 2076433, + "gasCost": 1, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -11520,25 +11776,25 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x120", "0xa0", "0x0", "0x17", - "0xe4b", + "0xea0", "0x17" ] }, { - "depth": 1, - "gas": 2074953, - "gasCost": 3, + "pc": 3346, "op": "PUSH1", - "pc": 3278, + "gas": 2076432, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -11546,25 +11802,25 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x120", "0xa0", "0x0", "0x17", - "0xe4b", + "0xea0", "0x17" ] }, { - "depth": 1, - "gas": 2074950, - "gasCost": 3, + "pc": 3348, "op": "PUSH1", - "pc": 3280, + "gas": 2076429, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -11572,26 +11828,26 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x120", "0xa0", "0x0", "0x17", - "0xe4b", + "0xea0", "0x17", "0x0" ] }, { - "depth": 1, - "gas": 2074947, - "gasCost": 3, + "pc": 3350, "op": "NOT", - "pc": 3282, + "gas": 2076426, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -11599,27 +11855,27 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x120", "0xa0", "0x0", "0x17", - "0xe4b", + "0xea0", "0x17", "0x0", "0x1f" ] }, { - "depth": 1, - "gas": 2074944, - "gasCost": 3, + "pc": 3351, "op": "PUSH1", - "pc": 3283, + "gas": 2076423, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -11627,27 +11883,27 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x120", "0xa0", "0x0", "0x17", - "0xe4b", + "0xea0", "0x17", "0x0", "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" ] }, { - "depth": 1, - "gas": 2074941, - "gasCost": 3, + "pc": 3353, "op": "DUP4", - "pc": 3285, + "gas": 2076420, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -11655,16 +11911,16 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x120", "0xa0", "0x0", "0x17", - "0xe4b", + "0xea0", "0x17", "0x0", "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", @@ -11672,11 +11928,11 @@ ] }, { - "depth": 1, - "gas": 2074938, - "gasCost": 3, + "pc": 3354, "op": "ADD", - "pc": 3286, + "gas": 2076417, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -11684,16 +11940,16 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x120", "0xa0", "0x0", "0x17", - "0xe4b", + "0xea0", "0x17", "0x0", "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", @@ -11702,11 +11958,11 @@ ] }, { - "depth": 1, - "gas": 2074935, - "gasCost": 3, + "pc": 3355, "op": "AND", - "pc": 3287, + "gas": 2076414, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -11714,16 +11970,16 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x120", "0xa0", "0x0", "0x17", - "0xe4b", + "0xea0", "0x17", "0x0", "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", @@ -11731,11 +11987,11 @@ ] }, { - "depth": 1, - "gas": 2074932, - "gasCost": 3, + "pc": 3356, "op": "SWAP1", - "pc": 3288, + "gas": 2076411, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -11743,27 +11999,27 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x120", "0xa0", "0x0", "0x17", - "0xe4b", + "0xea0", "0x17", "0x0", "0x20" ] }, { - "depth": 1, - "gas": 2074929, - "gasCost": 2, + "pc": 3357, "op": "POP", - "pc": 3289, + "gas": 2076408, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -11771,27 +12027,27 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x120", "0xa0", "0x0", "0x17", - "0xe4b", + "0xea0", "0x17", "0x20", "0x0" ] }, { - "depth": 1, - "gas": 2074927, - "gasCost": 3, + "pc": 3358, "op": "SWAP2", - "pc": 3290, + "gas": 2076406, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -11799,26 +12055,26 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x120", "0xa0", "0x0", "0x17", - "0xe4b", + "0xea0", "0x17", "0x20" ] }, { - "depth": 1, - "gas": 2074924, - "gasCost": 3, + "pc": 3359, "op": "SWAP1", - "pc": 3291, + "gas": 2076403, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -11826,26 +12082,26 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x120", "0xa0", "0x0", "0x17", "0x20", "0x17", - "0xe4b" + "0xea0" ] }, { - "depth": 1, - "gas": 2074921, - "gasCost": 2, + "pc": 3360, "op": "POP", - "pc": 3292, + "gas": 2076400, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -11853,26 +12109,26 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x120", "0xa0", "0x0", "0x17", "0x20", - "0xe4b", + "0xea0", "0x17" ] }, { - "depth": 1, - "gas": 2074919, - "gasCost": 8, + "pc": 3361, "op": "JUMP", - "pc": 3293, + "gas": 2076398, + "gasCost": 8, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -11880,25 +12136,25 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x120", "0xa0", "0x0", "0x17", "0x20", - "0xe4b" + "0xea0" ] }, { - "depth": 1, - "gas": 2074911, - "gasCost": 1, + "pc": 3744, "op": "JUMPDEST", - "pc": 3659, + "gas": 2076390, + "gasCost": 1, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -11906,11 +12162,11 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x120", "0xa0", "0x0", @@ -11919,11 +12175,11 @@ ] }, { - "depth": 1, - "gas": 2074910, - "gasCost": 3, + "pc": 3745, "op": "DUP5", - "pc": 3660, + "gas": 2076389, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -11931,11 +12187,11 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x120", "0xa0", "0x0", @@ -11944,11 +12200,11 @@ ] }, { - "depth": 1, - "gas": 2074907, - "gasCost": 3, + "pc": 3746, "op": "ADD", - "pc": 3661, + "gas": 2076386, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -11956,11 +12212,11 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x120", "0xa0", "0x0", @@ -11970,11 +12226,11 @@ ] }, { - "depth": 1, - "gas": 2074904, - "gasCost": 3, + "pc": 3747, "op": "SWAP2", - "pc": 3662, + "gas": 2076383, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -11982,11 +12238,11 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x120", "0xa0", "0x0", @@ -11995,11 +12251,11 @@ ] }, { - "depth": 1, - "gas": 2074901, - "gasCost": 2, + "pc": 3748, "op": "POP", - "pc": 3663, + "gas": 2076380, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -12007,11 +12263,11 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x120", "0xa0", "0x140", @@ -12020,11 +12276,11 @@ ] }, { - "depth": 1, - "gas": 2074899, - "gasCost": 2, + "pc": 3749, "op": "POP", - "pc": 3664, + "gas": 2076378, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -12032,11 +12288,11 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x120", "0xa0", "0x140", @@ -12044,11 +12300,11 @@ ] }, { - "depth": 1, - "gas": 2074897, - "gasCost": 3, + "pc": 3750, "op": "SWAP3", - "pc": 3665, + "gas": 2076376, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -12056,22 +12312,22 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", - "0xe72", + "0xec7", "0x120", "0xa0", "0x140" ] }, { - "depth": 1, - "gas": 2074894, - "gasCost": 3, + "pc": 3751, "op": "SWAP2", - "pc": 3666, + "gas": 2076373, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -12079,22 +12335,22 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", "0x140", "0x120", "0xa0", - "0xe72" + "0xec7" ] }, { - "depth": 1, - "gas": 2074891, - "gasCost": 2, + "pc": 3752, "op": "POP", - "pc": 3667, + "gas": 2076370, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -12102,22 +12358,22 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", "0x140", - "0xe72", + "0xec7", "0xa0", "0x120" ] }, { - "depth": 1, - "gas": 2074889, - "gasCost": 2, + "pc": 3753, "op": "POP", - "pc": 3668, + "gas": 2076368, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -12125,21 +12381,21 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", "0x140", - "0xe72", + "0xec7", "0xa0" ] }, { - "depth": 1, - "gas": 2074887, - "gasCost": 8, + "pc": 3754, "op": "JUMP", - "pc": 3669, + "gas": 2076366, + "gasCost": 8, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -12147,20 +12403,20 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", "0x140", - "0xe72" + "0xec7" ] }, { - "depth": 1, - "gas": 2074879, - "gasCost": 1, + "pc": 3783, "op": "JUMPDEST", - "pc": 3698, + "gas": 2076358, + "gasCost": 1, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -12168,7 +12424,7 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", @@ -12176,11 +12432,11 @@ ] }, { - "depth": 1, - "gas": 2074878, - "gasCost": 3, + "pc": 3784, "op": "SWAP1", - "pc": 3699, + "gas": 2076357, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -12188,7 +12444,7 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x100", @@ -12196,11 +12452,11 @@ ] }, { - "depth": 1, - "gas": 2074875, - "gasCost": 2, + "pc": 3785, "op": "POP", - "pc": 3700, + "gas": 2076354, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -12208,7 +12464,7 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x140", @@ -12216,11 +12472,11 @@ ] }, { - "depth": 1, - "gas": 2074873, - "gasCost": 3, + "pc": 3786, "op": "SWAP3", - "pc": 3701, + "gas": 2076352, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -12228,18 +12484,18 @@ "0x0", "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x55d", + "0x56e", "0xa0", "0xe0", "0x140" ] }, { - "depth": 1, - "gas": 2074870, - "gasCost": 3, + "pc": 3787, "op": "SWAP2", - "pc": 3702, + "gas": 2076349, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -12250,15 +12506,15 @@ "0x140", "0xa0", "0xe0", - "0x55d" + "0x56e" ] }, { - "depth": 1, - "gas": 2074867, - "gasCost": 2, + "pc": 3788, "op": "POP", - "pc": 3703, + "gas": 2076346, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -12267,17 +12523,17 @@ "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", "0x140", - "0x55d", + "0x56e", "0xe0", "0xa0" ] }, { - "depth": 1, - "gas": 2074865, - "gasCost": 2, + "pc": 3789, "op": "POP", - "pc": 3704, + "gas": 2076344, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -12286,16 +12542,16 @@ "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", "0x140", - "0x55d", + "0x56e", "0xe0" ] }, { - "depth": 1, - "gas": 2074863, - "gasCost": 8, + "pc": 3790, "op": "JUMP", - "pc": 3705, + "gas": 2076342, + "gasCost": 8, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -12304,15 +12560,15 @@ "0xa0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", "0x140", - "0x55d" + "0x56e" ] }, { - "depth": 1, - "gas": 2074855, - "gasCost": 1, + "pc": 1390, "op": "JUMPDEST", - "pc": 1373, + "gas": 2076334, + "gasCost": 1, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -12324,11 +12580,11 @@ ] }, { - "depth": 1, - "gas": 2074854, - "gasCost": 3, + "pc": 1391, "op": "PUSH1", - "pc": 1374, + "gas": 2076333, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -12340,11 +12596,11 @@ ] }, { - "depth": 1, - "gas": 2074851, - "gasCost": 3, + "pc": 1393, "op": "MLOAD", - "pc": 1376, + "gas": 2076330, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -12357,11 +12613,11 @@ ] }, { - "depth": 1, - "gas": 2074848, - "gasCost": 3, + "pc": 1394, "op": "DUP1", - "pc": 1377, + "gas": 2076327, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -12374,11 +12630,11 @@ ] }, { - "depth": 1, - "gas": 2074845, - "gasCost": 3, + "pc": 1395, "op": "SWAP2", - "pc": 1378, + "gas": 2076324, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -12392,11 +12648,11 @@ ] }, { - "depth": 1, - "gas": 2074842, - "gasCost": 3, + "pc": 1396, "op": "SUB", - "pc": 1379, + "gas": 2076321, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -12410,11 +12666,11 @@ ] }, { - "depth": 1, - "gas": 2074839, - "gasCost": 3, + "pc": 1397, "op": "SWAP1", - "pc": 1380, + "gas": 2076318, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -12427,11 +12683,11 @@ ] }, { - "depth": 1, - "gas": 2074836, - "gasCost": 1518, + "pc": 1398, "op": "LOG1", - "pc": 1381, + "gas": 2076315, + "gasCost": 1518, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -12444,11 +12700,11 @@ ] }, { - "depth": 1, - "gas": 2073318, - "gasCost": 2, + "pc": 1399, "op": "POP", - "pc": 1382, + "gas": 2074797, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -12458,11 +12714,11 @@ ] }, { - "depth": 1, - "gas": 2073316, - "gasCost": 3, + "pc": 1400, "op": "PUSH3", - "pc": 1383, + "gas": 2074795, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -12471,25 +12727,25 @@ ] }, { - "depth": 1, - "gas": 2073313, - "gasCost": 8, + "pc": 1404, "op": "JUMP", - "pc": 1387, + "gas": 2074792, + "gasCost": 8, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x5db" + "0x5ec" ] }, { - "depth": 1, - "gas": 2073305, - "gasCost": 1, + "pc": 1516, "op": "JUMPDEST", - "pc": 1499, + "gas": 2074784, + "gasCost": 1, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -12498,11 +12754,11 @@ ] }, { - "depth": 1, - "gas": 2073304, - "gasCost": 3, + "pc": 1517, "op": "PUSH3", - "pc": 1500, + "gas": 2074783, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -12511,25 +12767,25 @@ ] }, { - "depth": 1, - "gas": 2073301, - "gasCost": 8, + "pc": 1521, "op": "JUMP", - "pc": 1504, + "gas": 2074780, + "gasCost": 8, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x5e2" + "0x5f3" ] }, { - "depth": 1, - "gas": 2073293, - "gasCost": 1, + "pc": 1523, "op": "JUMPDEST", - "pc": 1506, + "gas": 2074772, + "gasCost": 1, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -12538,11 +12794,11 @@ ] }, { - "depth": 1, - "gas": 2073292, - "gasCost": 2, + "pc": 1524, "op": "ADDRESS", - "pc": 1507, + "gas": 2074771, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -12551,11 +12807,11 @@ ] }, { - "depth": 1, - "gas": 2073290, - "gasCost": 3, + "pc": 1525, "op": "PUSH20", - "pc": 1508, + "gas": 2074769, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -12565,11 +12821,11 @@ ] }, { - "depth": 1, - "gas": 2073287, - "gasCost": 3, + "pc": 1546, "op": "AND", - "pc": 1529, + "gas": 2074766, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -12580,11 +12836,11 @@ ] }, { - "depth": 1, - "gas": 2073284, - "gasCost": 3, + "pc": 1547, "op": "PUSH4", - "pc": 1530, + "gas": 2074763, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -12594,11 +12850,11 @@ ] }, { - "depth": 1, - "gas": 2073281, - "gasCost": 3, + "pc": 1552, "op": "PUSH1", - "pc": 1535, + "gas": 2074760, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -12609,11 +12865,11 @@ ] }, { - "depth": 1, - "gas": 2073278, - "gasCost": 3, + "pc": 1554, "op": "MLOAD", - "pc": 1537, + "gas": 2074757, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -12625,11 +12881,11 @@ ] }, { - "depth": 1, - "gas": 2073275, - "gasCost": 3, + "pc": 1555, "op": "DUP2", - "pc": 1538, + "gas": 2074754, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -12641,11 +12897,11 @@ ] }, { - "depth": 1, - "gas": 2073272, - "gasCost": 3, + "pc": 1556, "op": "PUSH4", - "pc": 1539, + "gas": 2074751, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -12658,11 +12914,11 @@ ] }, { - "depth": 1, - "gas": 2073269, - "gasCost": 3, + "pc": 1561, "op": "AND", - "pc": 1544, + "gas": 2074748, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -12676,11 +12932,11 @@ ] }, { - "depth": 1, - "gas": 2073266, - "gasCost": 3, + "pc": 1562, "op": "PUSH1", - "pc": 1545, + "gas": 2074745, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -12693,11 +12949,11 @@ ] }, { - "depth": 1, - "gas": 2073263, - "gasCost": 3, + "pc": 1564, "op": "SHL", - "pc": 1547, + "gas": 2074742, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -12711,11 +12967,11 @@ ] }, { - "depth": 1, - "gas": 2073260, - "gasCost": 3, + "pc": 1565, "op": "DUP2", - "pc": 1548, + "gas": 2074739, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -12728,11 +12984,11 @@ ] }, { - "depth": 1, - "gas": 2073257, - "gasCost": 3, + "pc": 1566, "op": "MSTORE", - "pc": 1549, + "gas": 2074736, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -12746,11 +13002,11 @@ ] }, { - "depth": 1, - "gas": 2073254, - "gasCost": 3, + "pc": 1567, "op": "PUSH1", - "pc": 1550, + "gas": 2074733, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -12762,11 +13018,11 @@ ] }, { - "depth": 1, - "gas": 2073251, - "gasCost": 3, + "pc": 1569, "op": "ADD", - "pc": 1552, + "gas": 2074730, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -12779,11 +13035,11 @@ ] }, { - "depth": 1, - "gas": 2073248, - "gasCost": 3, + "pc": 1570, "op": "PUSH1", - "pc": 1553, + "gas": 2074727, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -12795,11 +13051,11 @@ ] }, { - "depth": 1, - "gas": 2073245, - "gasCost": 3, + "pc": 1572, "op": "PUSH1", - "pc": 1555, + "gas": 2074724, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -12812,11 +13068,11 @@ ] }, { - "depth": 1, - "gas": 2073242, - "gasCost": 3, + "pc": 1574, "op": "MLOAD", - "pc": 1557, + "gas": 2074721, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -12830,11 +13086,11 @@ ] }, { - "depth": 1, - "gas": 2073239, - "gasCost": 3, + "pc": 1575, "op": "DUP1", - "pc": 1558, + "gas": 2074718, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -12848,11 +13104,11 @@ ] }, { - "depth": 1, - "gas": 2073236, - "gasCost": 3, + "pc": 1576, "op": "DUP4", - "pc": 1559, + "gas": 2074715, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -12867,11 +13123,11 @@ ] }, { - "depth": 1, - "gas": 2073233, - "gasCost": 3, + "pc": 1577, "op": "SUB", - "pc": 1560, + "gas": 2074712, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -12887,11 +13143,11 @@ ] }, { - "depth": 1, - "gas": 2073230, - "gasCost": 3, + "pc": 1578, "op": "DUP2", - "pc": 1561, + "gas": 2074709, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -12906,11 +13162,11 @@ ] }, { - "depth": 1, - "gas": 2073227, - "gasCost": 3, + "pc": 1579, "op": "DUP7", - "pc": 1562, + "gas": 2074706, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -12926,11 +13182,11 @@ ] }, { - "depth": 1, - "gas": 2073224, - "gasCost": 3, + "pc": 1580, "op": "DUP1", - "pc": 1563, + "gas": 2074703, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -12947,11 +13203,11 @@ ] }, { - "depth": 1, - "gas": 2073221, - "gasCost": 700, + "pc": 1581, "op": "EXTCODESIZE", - "pc": 1564, + "gas": 2074700, + "gasCost": 100, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -12969,11 +13225,11 @@ ] }, { - "depth": 1, - "gas": 2072521, - "gasCost": 3, + "pc": 1582, "op": "ISZERO", - "pc": 1565, + "gas": 2074600, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -12987,15 +13243,15 @@ "0x4", "0xe0", "Tracer.address", - "0x1b45" + "0x1bde" ] }, { - "depth": 1, - "gas": 2072518, - "gasCost": 3, + "pc": 1583, "op": "DUP1", - "pc": 1566, + "gas": 2074597, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -13013,11 +13269,11 @@ ] }, { - "depth": 1, - "gas": 2072515, - "gasCost": 3, + "pc": 1584, "op": "ISZERO", - "pc": 1567, + "gas": 2074594, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -13036,11 +13292,11 @@ ] }, { - "depth": 1, - "gas": 2072512, - "gasCost": 3, + "pc": 1585, "op": "PUSH3", - "pc": 1568, + "gas": 2074591, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -13059,11 +13315,11 @@ ] }, { - "depth": 1, - "gas": 2072509, - "gasCost": 10, + "pc": 1589, "op": "JUMPI", - "pc": 1572, + "gas": 2074588, + "gasCost": 10, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -13079,15 +13335,15 @@ "Tracer.address", "0x0", "0x1", - "0x629" + "0x63a" ] }, { - "depth": 1, - "gas": 2072499, - "gasCost": 1, + "pc": 1594, "op": "JUMPDEST", - "pc": 1577, + "gas": 2074578, + "gasCost": 1, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -13105,11 +13361,11 @@ ] }, { - "depth": 1, - "gas": 2072498, - "gasCost": 2, + "pc": 1595, "op": "POP", - "pc": 1578, + "gas": 2074577, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -13127,11 +13383,11 @@ ] }, { - "depth": 1, - "gas": 2072496, - "gasCost": 2, + "pc": 1596, "op": "GAS", - "pc": 1579, + "gas": 2074575, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -13148,11 +13404,11 @@ ] }, { - "depth": 1, - "gas": 2072494, - "gasCost": 1396, + "pc": 1597, "op": "STATICCALL", - "pc": 1580, + "gas": 2074573, + "gasCost": 2042160, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -13166,84 +13422,84 @@ "0x4", "0xe0", "Tracer.address", - "0x1f9fae" + "0x1fa7cd" ] }, { - "depth": 2, - "gas": 2039423, - "gasCost": 3, - "op": "PUSH1", "pc": 0, + "op": "PUSH1", + "gas": 2042060, + "gasCost": 3, + "depth": 2, "stack": [] }, { - "depth": 2, - "gas": 2039420, - "gasCost": 3, - "op": "PUSH1", "pc": 2, + "op": "PUSH1", + "gas": 2042057, + "gasCost": 3, + "depth": 2, "stack": [ "0x80" ] }, { - "depth": 2, - "gas": 2039417, - "gasCost": 12, - "op": "MSTORE", "pc": 4, + "op": "MSTORE", + "gas": 2042054, + "gasCost": 12, + "depth": 2, "stack": [ "0x80", "0x40" ] }, { - "depth": 2, - "gas": 2039405, - "gasCost": 2, - "op": "CALLVALUE", "pc": 5, + "op": "CALLVALUE", + "gas": 2042042, + "gasCost": 2, + "depth": 2, "stack": [] }, { - "depth": 2, - "gas": 2039403, - "gasCost": 3, - "op": "DUP1", "pc": 6, + "op": "DUP1", + "gas": 2042040, + "gasCost": 3, + "depth": 2, "stack": [ "0x0" ] }, { - "depth": 2, - "gas": 2039400, - "gasCost": 3, - "op": "ISZERO", "pc": 7, + "op": "ISZERO", + "gas": 2042037, + "gasCost": 3, + "depth": 2, "stack": [ "0x0", "0x0" ] }, { - "depth": 2, - "gas": 2039397, - "gasCost": 3, - "op": "PUSH3", "pc": 8, + "op": "PUSH3", + "gas": 2042034, + "gasCost": 3, + "depth": 2, "stack": [ "0x0", "0x1" ] }, { - "depth": 2, - "gas": 2039394, - "gasCost": 10, - "op": "JUMPI", "pc": 12, + "op": "JUMPI", + "gas": 2042031, + "gasCost": 10, + "depth": 2, "stack": [ "0x0", "0x1", @@ -13251,141 +13507,141 @@ ] }, { - "depth": 2, - "gas": 2039384, - "gasCost": 1, - "op": "JUMPDEST", "pc": 17, + "op": "JUMPDEST", + "gas": 2042021, + "gasCost": 1, + "depth": 2, "stack": [ "0x0" ] }, { - "depth": 2, - "gas": 2039383, - "gasCost": 2, - "op": "POP", "pc": 18, + "op": "POP", + "gas": 2042020, + "gasCost": 2, + "depth": 2, "stack": [ "0x0" ] }, { - "depth": 2, - "gas": 2039381, - "gasCost": 3, - "op": "PUSH1", "pc": 19, + "op": "PUSH1", + "gas": 2042018, + "gasCost": 3, + "depth": 2, "stack": [] }, { - "depth": 2, - "gas": 2039378, - "gasCost": 2, - "op": "CALLDATASIZE", "pc": 21, + "op": "CALLDATASIZE", + "gas": 2042015, + "gasCost": 2, + "depth": 2, "stack": [ "0x4" ] }, { - "depth": 2, - "gas": 2039376, - "gasCost": 3, - "op": "LT", "pc": 22, + "op": "LT", + "gas": 2042013, + "gasCost": 3, + "depth": 2, "stack": [ "0x4", "0x4" ] }, { - "depth": 2, - "gas": 2039373, - "gasCost": 3, - "op": "PUSH3", "pc": 23, + "op": "PUSH3", + "gas": 2042010, + "gasCost": 3, + "depth": 2, "stack": [ "0x0" ] }, { - "depth": 2, - "gas": 2039370, - "gasCost": 10, - "op": "JUMPI", "pc": 27, + "op": "JUMPI", + "gas": 2042007, + "gasCost": 10, + "depth": 2, "stack": [ "0x0", "0xac" ] }, { - "depth": 2, - "gas": 2039360, - "gasCost": 3, - "op": "PUSH1", "pc": 28, + "op": "PUSH1", + "gas": 2041997, + "gasCost": 3, + "depth": 2, "stack": [] }, { - "depth": 2, - "gas": 2039357, - "gasCost": 3, - "op": "CALLDATALOAD", "pc": 30, + "op": "CALLDATALOAD", + "gas": 2041994, + "gasCost": 3, + "depth": 2, "stack": [ "0x0" ] }, { - "depth": 2, - "gas": 2039354, - "gasCost": 3, - "op": "PUSH1", "pc": 31, + "op": "PUSH1", + "gas": 2041991, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff00000000000000000000000000000000000000000000000000000000" ] }, { - "depth": 2, - "gas": 2039351, - "gasCost": 3, - "op": "SHR", "pc": 33, + "op": "SHR", + "gas": 2041988, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff00000000000000000000000000000000000000000000000000000000", "0xe0" ] }, { - "depth": 2, - "gas": 2039348, - "gasCost": 3, - "op": "DUP1", "pc": 34, + "op": "DUP1", + "gas": 2041985, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff" ] }, { - "depth": 2, - "gas": 2039345, - "gasCost": 3, - "op": "PUSH4", "pc": 35, + "op": "PUSH4", + "gas": 2041982, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x8bfe44ff" ] }, { - "depth": 2, - "gas": 2039342, - "gasCost": 3, - "op": "GT", "pc": 40, + "op": "GT", + "gas": 2041979, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x8bfe44ff", @@ -13393,22 +13649,22 @@ ] }, { - "depth": 2, - "gas": 2039339, - "gasCost": 3, - "op": "PUSH3", "pc": 41, + "op": "PUSH3", + "gas": 2041976, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x0" ] }, { - "depth": 2, - "gas": 2039336, - "gasCost": 10, - "op": "JUMPI", "pc": 45, + "op": "JUMPI", + "gas": 2041973, + "gasCost": 10, + "depth": 2, "stack": [ "0x8bfe44ff", "0x0", @@ -13416,32 +13672,32 @@ ] }, { - "depth": 2, - "gas": 2039326, - "gasCost": 3, - "op": "DUP1", "pc": 46, + "op": "DUP1", + "gas": 2041963, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff" ] }, { - "depth": 2, - "gas": 2039323, - "gasCost": 3, - "op": "PUSH4", "pc": 47, + "op": "PUSH4", + "gas": 2041960, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x8bfe44ff" ] }, { - "depth": 2, - "gas": 2039320, - "gasCost": 3, - "op": "EQ", "pc": 52, + "op": "EQ", + "gas": 2041957, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x8bfe44ff", @@ -13449,22 +13705,22 @@ ] }, { - "depth": 2, - "gas": 2039317, - "gasCost": 3, - "op": "PUSH3", "pc": 53, + "op": "PUSH3", + "gas": 2041954, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1" ] }, { - "depth": 2, - "gas": 2039314, - "gasCost": 10, - "op": "JUMPI", "pc": 57, + "op": "JUMPI", + "gas": 2041951, + "gasCost": 10, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1", @@ -13472,76 +13728,76 @@ ] }, { - "depth": 2, - "gas": 2039304, - "gasCost": 1, - "op": "JUMPDEST", "pc": 407, + "op": "JUMPDEST", + "gas": 2041941, + "gasCost": 1, + "depth": 2, "stack": [ "0x8bfe44ff" ] }, { - "depth": 2, - "gas": 2039303, - "gasCost": 3, - "op": "PUSH3", "pc": 408, + "op": "PUSH3", + "gas": 2041940, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff" ] }, { - "depth": 2, - "gas": 2039300, - "gasCost": 3, - "op": "PUSH3", "pc": 412, + "op": "PUSH3", + "gas": 2041937, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1" ] }, { - "depth": 2, - "gas": 2039297, - "gasCost": 8, - "op": "JUMP", "pc": 416, + "op": "JUMP", + "gas": 2041934, + "gasCost": 8, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x771" + "0x783" ] }, { - "depth": 2, - "gas": 2039289, - "gasCost": 1, + "pc": 1923, "op": "JUMPDEST", - "pc": 1905, + "gas": 2041926, + "gasCost": 1, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1" ] }, { - "depth": 2, - "gas": 2039288, - "gasCost": 3, + "pc": 1924, "op": "PUSH1", - "pc": 1906, + "gas": 2041925, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1" ] }, { - "depth": 2, - "gas": 2039285, - "gasCost": 3, + "pc": 1926, "op": "DUP1", - "pc": 1908, + "gas": 2041922, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", @@ -13549,11 +13805,11 @@ ] }, { - "depth": 2, - "gas": 2039282, - "gasCost": 3, + "pc": 1927, "op": "PUSH1", - "pc": 1909, + "gas": 2041919, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", @@ -13562,11 +13818,11 @@ ] }, { - "depth": 2, - "gas": 2039279, - "gasCost": 3, + "pc": 1929, "op": "MLOAD", - "pc": 1911, + "gas": 2041916, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", @@ -13576,11 +13832,11 @@ ] }, { - "depth": 2, - "gas": 2039276, - "gasCost": 3, + "pc": 1930, "op": "PUSH32", - "pc": 1912, + "gas": 2041913, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", @@ -13590,11 +13846,11 @@ ] }, { - "depth": 2, - "gas": 2039273, - "gasCost": 3, + "pc": 1963, "op": "DUP2", - "pc": 1945, + "gas": 2041910, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", @@ -13605,11 +13861,11 @@ ] }, { - "depth": 2, - "gas": 2039270, - "gasCost": 9, + "pc": 1964, "op": "MSTORE", - "pc": 1946, + "gas": 2041907, + "gasCost": 9, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", @@ -13621,11 +13877,11 @@ ] }, { - "depth": 2, - "gas": 2039261, - "gasCost": 3, + "pc": 1965, "op": "PUSH1", - "pc": 1947, + "gas": 2041898, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", @@ -13635,11 +13891,11 @@ ] }, { - "depth": 2, - "gas": 2039258, - "gasCost": 3, + "pc": 1967, "op": "ADD", - "pc": 1949, + "gas": 2041895, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", @@ -13650,11 +13906,11 @@ ] }, { - "depth": 2, - "gas": 2039255, - "gasCost": 3, + "pc": 1968, "op": "PUSH3", - "pc": 1950, + "gas": 2041892, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", @@ -13664,121 +13920,121 @@ ] }, { - "depth": 2, - "gas": 2039252, - "gasCost": 3, + "pc": 1972, "op": "SWAP3", - "pc": 1954, + "gas": 2041889, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", "0x1", "0x1", "0x84", - "0x7aa" + "0x7bc" ] }, { - "depth": 2, - "gas": 2039249, - "gasCost": 3, + "pc": 1973, "op": "SWAP2", - "pc": 1955, + "gas": 2041886, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x84", "0x1" ] }, { - "depth": 2, - "gas": 2039246, - "gasCost": 3, + "pc": 1974, "op": "SWAP1", - "pc": 1956, + "gas": 2041883, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x84", "0x1" ] }, { - "depth": 2, - "gas": 2039243, - "gasCost": 3, + "pc": 1975, "op": "PUSH3", - "pc": 1957, + "gas": 2041880, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84" ] }, { - "depth": 2, - "gas": 2039240, - "gasCost": 8, + "pc": 1979, "op": "JUMP", - "pc": 1961, + "gas": 2041877, + "gasCost": 8, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", - "0xfd1" + "0x1026" ] }, { - "depth": 2, - "gas": 2039232, - "gasCost": 1, + "pc": 4134, "op": "JUMPDEST", - "pc": 4049, + "gas": 2041869, + "gasCost": 1, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84" ] }, { - "depth": 2, - "gas": 2039231, - "gasCost": 3, + "pc": 4135, "op": "PUSH1", - "pc": 4050, + "gas": 2041868, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84" ] }, { - "depth": 2, - "gas": 2039228, - "gasCost": 3, + "pc": 4137, "op": "PUSH1", - "pc": 4052, + "gas": 2041865, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", @@ -13786,15 +14042,15 @@ ] }, { - "depth": 2, - "gas": 2039225, - "gasCost": 3, + "pc": 4139, "op": "DUP3", - "pc": 4054, + "gas": 2041862, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", @@ -13803,15 +14059,15 @@ ] }, { - "depth": 2, - "gas": 2039222, - "gasCost": 3, + "pc": 4140, "op": "ADD", - "pc": 4055, + "gas": 2041859, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", @@ -13821,15 +14077,15 @@ ] }, { - "depth": 2, - "gas": 2039219, - "gasCost": 3, + "pc": 4141, "op": "SWAP1", - "pc": 4056, + "gas": 2041856, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", @@ -13838,15 +14094,15 @@ ] }, { - "depth": 2, - "gas": 2039216, - "gasCost": 2, + "pc": 4142, "op": "POP", - "pc": 4057, + "gas": 2041853, + "gasCost": 2, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", @@ -13855,15 +14111,15 @@ ] }, { - "depth": 2, - "gas": 2039214, - "gasCost": 3, + "pc": 4143, "op": "PUSH3", - "pc": 4058, + "gas": 2041851, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", @@ -13871,1465 +14127,1465 @@ ] }, { - "depth": 2, - "gas": 2039211, - "gasCost": 3, + "pc": 4147, "op": "PUSH1", - "pc": 4062, + "gas": 2041848, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xfe8" + "0x103d" ] }, { - "depth": 2, - "gas": 2039208, - "gasCost": 3, + "pc": 4149, "op": "DUP4", - "pc": 4064, + "gas": 2041845, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xfe8", + "0x103d", "0x0" ] }, { - "depth": 2, - "gas": 2039205, - "gasCost": 3, + "pc": 4150, "op": "ADD", - "pc": 4065, + "gas": 2041842, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xfe8", + "0x103d", "0x0", "0x84" ] }, { - "depth": 2, - "gas": 2039202, - "gasCost": 3, + "pc": 4151, "op": "DUP6", - "pc": 4066, + "gas": 2041839, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xfe8", + "0x103d", "0x84" ] }, { - "depth": 2, - "gas": 2039199, - "gasCost": 3, + "pc": 4152, "op": "PUSH3", - "pc": 4067, + "gas": 2041836, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xfe8", + "0x103d", "0x84", "0x1" ] }, { - "depth": 2, - "gas": 2039196, - "gasCost": 8, + "pc": 4156, "op": "JUMP", - "pc": 4071, + "gas": 2041833, + "gasCost": 8, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xfe8", + "0x103d", "0x84", "0x1", - "0xfc0" + "0x1015" ] }, { - "depth": 2, - "gas": 2039188, - "gasCost": 1, + "pc": 4117, "op": "JUMPDEST", - "pc": 4032, + "gas": 2041825, + "gasCost": 1, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xfe8", + "0x103d", "0x84", "0x1" ] }, { - "depth": 2, - "gas": 2039187, - "gasCost": 3, + "pc": 4118, "op": "PUSH3", - "pc": 4033, + "gas": 2041824, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xfe8", + "0x103d", "0x84", "0x1" ] }, { - "depth": 2, - "gas": 2039184, - "gasCost": 3, + "pc": 4122, "op": "DUP2", - "pc": 4037, + "gas": 2041821, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xfe8", + "0x103d", "0x84", "0x1", - "0xfcb" + "0x1020" ] }, { - "depth": 2, - "gas": 2039181, - "gasCost": 3, + "pc": 4123, "op": "PUSH3", - "pc": 4038, + "gas": 2041818, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xfe8", + "0x103d", "0x84", "0x1", - "0xfcb", + "0x1020", "0x1" ] }, { - "depth": 2, - "gas": 2039178, - "gasCost": 8, + "pc": 4127, "op": "JUMP", - "pc": 4042, + "gas": 2041815, + "gasCost": 8, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xfe8", + "0x103d", "0x84", "0x1", - "0xfcb", + "0x1020", "0x1", - "0xf98" + "0xfed" ] }, { - "depth": 2, - "gas": 2039170, - "gasCost": 1, + "pc": 4077, "op": "JUMPDEST", - "pc": 3992, + "gas": 2041807, + "gasCost": 1, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xfe8", + "0x103d", "0x84", "0x1", - "0xfcb", + "0x1020", "0x1" ] }, { - "depth": 2, - "gas": 2039169, - "gasCost": 3, + "pc": 4078, "op": "PUSH1", - "pc": 3993, + "gas": 2041806, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xfe8", + "0x103d", "0x84", "0x1", - "0xfcb", + "0x1020", "0x1" ] }, { - "depth": 2, - "gas": 2039166, - "gasCost": 3, + "pc": 4080, "op": "PUSH3", - "pc": 3995, + "gas": 2041803, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xfe8", + "0x103d", "0x84", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0" ] }, { - "depth": 2, - "gas": 2039163, - "gasCost": 3, + "pc": 4084, "op": "PUSH3", - "pc": 3999, + "gas": 2041800, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xfe8", + "0x103d", "0x84", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", - "0xfb9" + "0x100e" ] }, { - "depth": 2, - "gas": 2039160, - "gasCost": 3, + "pc": 4088, "op": "PUSH3", - "pc": 4003, + "gas": 2041797, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xfe8", + "0x103d", "0x84", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", - "0xfb9", - "0xfb3" + "0x100e", + "0x1008" ] }, { - "depth": 2, - "gas": 2039157, - "gasCost": 3, + "pc": 4092, "op": "DUP5", - "pc": 4007, + "gas": 2041794, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xfe8", + "0x103d", "0x84", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", - "0xfb9", - "0xfb3", - "0xfad" + "0x100e", + "0x1008", + "0x1002" ] }, { - "depth": 2, - "gas": 2039154, - "gasCost": 3, + "pc": 4093, "op": "PUSH3", - "pc": 4008, + "gas": 2041791, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xfe8", + "0x103d", "0x84", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", - "0xfb9", - "0xfb3", - "0xfad", + "0x100e", + "0x1008", + "0x1002", "0x1" ] }, { - "depth": 2, - "gas": 2039151, - "gasCost": 8, + "pc": 4097, "op": "JUMP", - "pc": 4012, + "gas": 2041788, + "gasCost": 8, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xfe8", + "0x103d", "0x84", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", - "0xfb9", - "0xfb3", - "0xfad", + "0x100e", + "0x1008", + "0x1002", "0x1", - "0xf84" + "0xfd9" ] }, { - "depth": 2, - "gas": 2039143, - "gasCost": 1, + "pc": 4057, "op": "JUMPDEST", - "pc": 3972, + "gas": 2041780, + "gasCost": 1, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xfe8", + "0x103d", "0x84", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", - "0xfb9", - "0xfb3", - "0xfad", + "0x100e", + "0x1008", + "0x1002", "0x1" ] }, { - "depth": 2, - "gas": 2039142, - "gasCost": 3, + "pc": 4058, "op": "PUSH1", - "pc": 3973, + "gas": 2041779, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xfe8", + "0x103d", "0x84", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", - "0xfb9", - "0xfb3", - "0xfad", + "0x100e", + "0x1008", + "0x1002", "0x1" ] }, { - "depth": 2, - "gas": 2039139, - "gasCost": 3, + "pc": 4060, "op": "DUP2", - "pc": 3975, + "gas": 2041776, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xfe8", + "0x103d", "0x84", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", - "0xfb9", - "0xfb3", - "0xfad", + "0x100e", + "0x1008", + "0x1002", "0x1", "0x0" ] }, { - "depth": 2, - "gas": 2039136, - "gasCost": 3, + "pc": 4061, "op": "SWAP1", - "pc": 3976, + "gas": 2041773, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xfe8", + "0x103d", "0x84", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", - "0xfb9", - "0xfb3", - "0xfad", + "0x100e", + "0x1008", + "0x1002", "0x1", "0x0", "0x1" ] }, { - "depth": 2, - "gas": 2039133, - "gasCost": 2, + "pc": 4062, "op": "POP", - "pc": 3977, + "gas": 2041770, + "gasCost": 2, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xfe8", + "0x103d", "0x84", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", - "0xfb9", - "0xfb3", - "0xfad", + "0x100e", + "0x1008", + "0x1002", "0x1", "0x1", "0x0" ] }, { - "depth": 2, - "gas": 2039131, - "gasCost": 3, + "pc": 4063, "op": "SWAP2", - "pc": 3978, + "gas": 2041768, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xfe8", + "0x103d", "0x84", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", - "0xfb9", - "0xfb3", - "0xfad", + "0x100e", + "0x1008", + "0x1002", "0x1", "0x1" ] }, { - "depth": 2, - "gas": 2039128, - "gasCost": 3, + "pc": 4064, "op": "SWAP1", - "pc": 3979, + "gas": 2041765, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xfe8", + "0x103d", "0x84", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", - "0xfb9", - "0xfb3", + "0x100e", + "0x1008", "0x1", "0x1", - "0xfad" + "0x1002" ] }, { - "depth": 2, - "gas": 2039125, - "gasCost": 2, + "pc": 4065, "op": "POP", - "pc": 3980, + "gas": 2041762, + "gasCost": 2, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xfe8", + "0x103d", "0x84", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", - "0xfb9", - "0xfb3", + "0x100e", + "0x1008", "0x1", - "0xfad", + "0x1002", "0x1" ] }, { - "depth": 2, - "gas": 2039123, - "gasCost": 8, + "pc": 4066, "op": "JUMP", - "pc": 3981, + "gas": 2041760, + "gasCost": 8, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xfe8", + "0x103d", "0x84", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", - "0xfb9", - "0xfb3", + "0x100e", + "0x1008", "0x1", - "0xfad" + "0x1002" ] }, { - "depth": 2, - "gas": 2039115, - "gasCost": 1, + "pc": 4098, "op": "JUMPDEST", - "pc": 4013, + "gas": 2041752, + "gasCost": 1, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xfe8", + "0x103d", "0x84", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", - "0xfb9", - "0xfb3", + "0x100e", + "0x1008", "0x1" ] }, { - "depth": 2, - "gas": 2039114, - "gasCost": 3, + "pc": 4099, "op": "PUSH3", - "pc": 4014, + "gas": 2041751, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xfe8", + "0x103d", "0x84", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", - "0xfb9", - "0xfb3", + "0x100e", + "0x1008", "0x1" ] }, { - "depth": 2, - "gas": 2039111, - "gasCost": 8, + "pc": 4103, "op": "JUMP", - "pc": 4018, + "gas": 2041748, + "gasCost": 8, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xfe8", + "0x103d", "0x84", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", - "0xfb9", - "0xfb3", + "0x100e", + "0x1008", "0x1", - "0xf8e" + "0xfe3" ] }, { - "depth": 2, - "gas": 2039103, - "gasCost": 1, + "pc": 4067, "op": "JUMPDEST", - "pc": 3982, + "gas": 2041740, + "gasCost": 1, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xfe8", + "0x103d", "0x84", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", - "0xfb9", - "0xfb3", + "0x100e", + "0x1008", "0x1" ] }, { - "depth": 2, - "gas": 2039102, - "gasCost": 3, + "pc": 4068, "op": "PUSH1", - "pc": 3983, + "gas": 2041739, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xfe8", + "0x103d", "0x84", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", - "0xfb9", - "0xfb3", + "0x100e", + "0x1008", "0x1" ] }, { - "depth": 2, - "gas": 2039099, - "gasCost": 3, + "pc": 4070, "op": "DUP2", - "pc": 3985, + "gas": 2041736, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xfe8", + "0x103d", "0x84", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", - "0xfb9", - "0xfb3", + "0x100e", + "0x1008", "0x1", "0x0" ] }, { - "depth": 2, - "gas": 2039096, - "gasCost": 3, + "pc": 4071, "op": "SWAP1", - "pc": 3986, + "gas": 2041733, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xfe8", + "0x103d", "0x84", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", - "0xfb9", - "0xfb3", + "0x100e", + "0x1008", "0x1", "0x0", "0x1" ] }, { - "depth": 2, - "gas": 2039093, - "gasCost": 2, + "pc": 4072, "op": "POP", - "pc": 3987, + "gas": 2041730, + "gasCost": 2, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xfe8", + "0x103d", "0x84", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", - "0xfb9", - "0xfb3", + "0x100e", + "0x1008", "0x1", "0x1", "0x0" ] }, { - "depth": 2, - "gas": 2039091, - "gasCost": 3, + "pc": 4073, "op": "SWAP2", - "pc": 3988, + "gas": 2041728, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xfe8", + "0x103d", "0x84", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", - "0xfb9", - "0xfb3", + "0x100e", + "0x1008", "0x1", "0x1" ] }, { - "depth": 2, - "gas": 2039088, - "gasCost": 3, + "pc": 4074, "op": "SWAP1", - "pc": 3989, + "gas": 2041725, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xfe8", + "0x103d", "0x84", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", - "0xfb9", + "0x100e", "0x1", "0x1", - "0xfb3" + "0x1008" ] }, { - "depth": 2, - "gas": 2039085, - "gasCost": 2, + "pc": 4075, "op": "POP", - "pc": 3990, + "gas": 2041722, + "gasCost": 2, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xfe8", + "0x103d", "0x84", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", - "0xfb9", + "0x100e", "0x1", - "0xfb3", + "0x1008", "0x1" ] }, { - "depth": 2, - "gas": 2039083, - "gasCost": 8, + "pc": 4076, "op": "JUMP", - "pc": 3991, + "gas": 2041720, + "gasCost": 8, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xfe8", + "0x103d", "0x84", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", - "0xfb9", + "0x100e", "0x1", - "0xfb3" + "0x1008" ] }, { - "depth": 2, - "gas": 2039075, - "gasCost": 1, + "pc": 4104, "op": "JUMPDEST", - "pc": 4019, + "gas": 2041712, + "gasCost": 1, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xfe8", + "0x103d", "0x84", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", - "0xfb9", + "0x100e", "0x1" ] }, { - "depth": 2, - "gas": 2039074, - "gasCost": 3, + "pc": 4105, "op": "PUSH3", - "pc": 4020, + "gas": 2041711, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xfe8", + "0x103d", "0x84", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", - "0xfb9", + "0x100e", "0x1" ] }, { - "depth": 2, - "gas": 2039071, - "gasCost": 8, + "pc": 4109, "op": "JUMP", - "pc": 4024, + "gas": 2041708, + "gasCost": 8, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xfe8", + "0x103d", "0x84", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", - "0xfb9", + "0x100e", "0x1", - "0x95a" + "0x97c" ] }, { - "depth": 2, - "gas": 2039063, - "gasCost": 1, + "pc": 2428, "op": "JUMPDEST", - "pc": 2394, + "gas": 2041700, + "gasCost": 1, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xfe8", + "0x103d", "0x84", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", - "0xfb9", + "0x100e", "0x1" ] }, { - "depth": 2, - "gas": 2039062, - "gasCost": 3, + "pc": 2429, "op": "PUSH1", - "pc": 2395, + "gas": 2041699, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xfe8", + "0x103d", "0x84", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", - "0xfb9", + "0x100e", "0x1" ] }, { - "depth": 2, - "gas": 2039059, - "gasCost": 3, + "pc": 2431, "op": "DUP2", - "pc": 2397, + "gas": 2041696, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xfe8", + "0x103d", "0x84", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", - "0xfb9", + "0x100e", "0x1", "0x0" ] }, { - "depth": 2, - "gas": 2039056, - "gasCost": 3, + "pc": 2432, "op": "SWAP1", - "pc": 2398, + "gas": 2041693, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xfe8", + "0x103d", "0x84", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", - "0xfb9", + "0x100e", "0x1", "0x0", "0x1" ] }, { - "depth": 2, - "gas": 2039053, - "gasCost": 2, + "pc": 2433, "op": "POP", - "pc": 2399, + "gas": 2041690, + "gasCost": 2, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xfe8", + "0x103d", "0x84", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", - "0xfb9", + "0x100e", "0x1", "0x1", "0x0" ] }, { - "depth": 2, - "gas": 2039051, - "gasCost": 3, + "pc": 2434, "op": "SWAP2", - "pc": 2400, + "gas": 2041688, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xfe8", + "0x103d", "0x84", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", - "0xfb9", + "0x100e", "0x1", "0x1" ] }, { - "depth": 2, - "gas": 2039048, - "gasCost": 3, + "pc": 2435, "op": "SWAP1", - "pc": 2401, + "gas": 2041685, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xfe8", + "0x103d", "0x84", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", "0x1", "0x1", - "0xfb9" + "0x100e" ] }, { - "depth": 2, - "gas": 2039045, - "gasCost": 2, + "pc": 2436, "op": "POP", - "pc": 2402, + "gas": 2041682, + "gasCost": 2, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xfe8", + "0x103d", "0x84", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", "0x1", - "0xfb9", + "0x100e", "0x1" ] }, { - "depth": 2, - "gas": 2039043, - "gasCost": 8, + "pc": 2437, "op": "JUMP", - "pc": 2403, + "gas": 2041680, + "gasCost": 8, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xfe8", + "0x103d", "0x84", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", "0x1", - "0xfb9" + "0x100e" ] }, { - "depth": 2, - "gas": 2039035, - "gasCost": 1, + "pc": 4110, "op": "JUMPDEST", - "pc": 4025, + "gas": 2041672, + "gasCost": 1, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xfe8", + "0x103d", "0x84", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", "0x1" ] }, { - "depth": 2, - "gas": 2039034, - "gasCost": 3, + "pc": 4111, "op": "SWAP1", - "pc": 4026, + "gas": 2041671, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xfe8", + "0x103d", "0x84", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", "0x1" ] }, { - "depth": 2, - "gas": 2039031, - "gasCost": 2, + "pc": 4112, "op": "POP", - "pc": 4027, + "gas": 2041668, + "gasCost": 2, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xfe8", + "0x103d", "0x84", "0x1", - "0xfcb", + "0x1020", "0x1", "0x1", "0x0" ] }, { - "depth": 2, - "gas": 2039029, - "gasCost": 3, + "pc": 4113, "op": "SWAP2", - "pc": 4028, + "gas": 2041666, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xfe8", + "0x103d", "0x84", "0x1", - "0xfcb", + "0x1020", "0x1", "0x1" ] }, { - "depth": 2, - "gas": 2039026, - "gasCost": 3, + "pc": 4114, "op": "SWAP1", - "pc": 4029, + "gas": 2041663, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xfe8", + "0x103d", "0x84", "0x1", "0x1", "0x1", - "0xfcb" + "0x1020" ] }, - { - "depth": 2, - "gas": 2039023, - "gasCost": 2, + { + "pc": 4115, "op": "POP", - "pc": 4030, + "gas": 2041660, + "gasCost": 2, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xfe8", + "0x103d", "0x84", "0x1", "0x1", - "0xfcb", + "0x1020", "0x1" ] }, { - "depth": 2, - "gas": 2039021, - "gasCost": 8, + "pc": 4116, "op": "JUMP", - "pc": 4031, + "gas": 2041658, + "gasCost": 8, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xfe8", + "0x103d", "0x84", "0x1", "0x1", - "0xfcb" + "0x1020" ] }, { - "depth": 2, - "gas": 2039013, - "gasCost": 1, + "pc": 4128, "op": "JUMPDEST", - "pc": 4043, + "gas": 2041650, + "gasCost": 1, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xfe8", + "0x103d", "0x84", "0x1", "0x1" ] }, { - "depth": 2, - "gas": 2039012, - "gasCost": 3, + "pc": 4129, "op": "DUP3", - "pc": 4044, + "gas": 2041649, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xfe8", + "0x103d", "0x84", "0x1", "0x1" ] }, { - "depth": 2, - "gas": 2039009, - "gasCost": 6, + "pc": 4130, "op": "MSTORE", - "pc": 4045, + "gas": 2041646, + "gasCost": 6, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xfe8", + "0x103d", "0x84", "0x1", "0x1", @@ -15337,69 +15593,69 @@ ] }, { - "depth": 2, - "gas": 2039003, - "gasCost": 2, + "pc": 4131, "op": "POP", - "pc": 4046, + "gas": 2041640, + "gasCost": 2, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xfe8", + "0x103d", "0x84", "0x1" ] }, { - "depth": 2, - "gas": 2039001, - "gasCost": 2, + "pc": 4132, "op": "POP", - "pc": 4047, + "gas": 2041638, + "gasCost": 2, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xfe8", + "0x103d", "0x84" ] }, { - "depth": 2, - "gas": 2038999, - "gasCost": 8, + "pc": 4133, "op": "JUMP", - "pc": 4048, + "gas": 2041636, + "gasCost": 8, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xfe8" + "0x103d" ] }, { - "depth": 2, - "gas": 2038991, - "gasCost": 1, + "pc": 4157, "op": "JUMPDEST", - "pc": 4072, + "gas": 2041628, + "gasCost": 1, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", @@ -15407,15 +15663,15 @@ ] }, { - "depth": 2, - "gas": 2038990, - "gasCost": 3, + "pc": 4158, "op": "PUSH3", - "pc": 4073, + "gas": 2041627, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", @@ -15423,1465 +15679,1465 @@ ] }, { - "depth": 2, - "gas": 2038987, - "gasCost": 3, + "pc": 4162, "op": "PUSH1", - "pc": 4077, + "gas": 2041624, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xff7" + "0x104c" ] }, { - "depth": 2, - "gas": 2038984, - "gasCost": 3, + "pc": 4164, "op": "DUP4", - "pc": 4079, + "gas": 2041621, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xff7", + "0x104c", "0x20" ] }, { - "depth": 2, - "gas": 2038981, - "gasCost": 3, + "pc": 4165, "op": "ADD", - "pc": 4080, + "gas": 2041618, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xff7", + "0x104c", "0x20", "0x84" ] }, { - "depth": 2, - "gas": 2038978, - "gasCost": 3, + "pc": 4166, "op": "DUP5", - "pc": 4081, + "gas": 2041615, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xff7", + "0x104c", "0xa4" ] }, { - "depth": 2, - "gas": 2038975, - "gasCost": 3, + "pc": 4167, "op": "PUSH3", - "pc": 4082, + "gas": 2041612, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xff7", + "0x104c", "0xa4", "0x1" ] }, { - "depth": 2, - "gas": 2038972, - "gasCost": 8, + "pc": 4171, "op": "JUMP", - "pc": 4086, + "gas": 2041609, + "gasCost": 8, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xff7", + "0x104c", "0xa4", "0x1", - "0xfc0" + "0x1015" ] }, { - "depth": 2, - "gas": 2038964, - "gasCost": 1, + "pc": 4117, "op": "JUMPDEST", - "pc": 4032, + "gas": 2041601, + "gasCost": 1, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xff7", + "0x104c", "0xa4", "0x1" ] }, { - "depth": 2, - "gas": 2038963, - "gasCost": 3, + "pc": 4118, "op": "PUSH3", - "pc": 4033, + "gas": 2041600, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xff7", + "0x104c", "0xa4", "0x1" ] }, { - "depth": 2, - "gas": 2038960, - "gasCost": 3, + "pc": 4122, "op": "DUP2", - "pc": 4037, + "gas": 2041597, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xff7", + "0x104c", "0xa4", "0x1", - "0xfcb" + "0x1020" ] }, { - "depth": 2, - "gas": 2038957, - "gasCost": 3, + "pc": 4123, "op": "PUSH3", - "pc": 4038, + "gas": 2041594, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xff7", + "0x104c", "0xa4", "0x1", - "0xfcb", + "0x1020", "0x1" ] }, { - "depth": 2, - "gas": 2038954, - "gasCost": 8, + "pc": 4127, "op": "JUMP", - "pc": 4042, + "gas": 2041591, + "gasCost": 8, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xff7", + "0x104c", "0xa4", "0x1", - "0xfcb", + "0x1020", "0x1", - "0xf98" + "0xfed" ] }, { - "depth": 2, - "gas": 2038946, - "gasCost": 1, + "pc": 4077, "op": "JUMPDEST", - "pc": 3992, + "gas": 2041583, + "gasCost": 1, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xff7", + "0x104c", "0xa4", "0x1", - "0xfcb", + "0x1020", "0x1" ] }, { - "depth": 2, - "gas": 2038945, - "gasCost": 3, + "pc": 4078, "op": "PUSH1", - "pc": 3993, + "gas": 2041582, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xff7", + "0x104c", "0xa4", "0x1", - "0xfcb", + "0x1020", "0x1" ] }, { - "depth": 2, - "gas": 2038942, - "gasCost": 3, + "pc": 4080, "op": "PUSH3", - "pc": 3995, + "gas": 2041579, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xff7", + "0x104c", "0xa4", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0" ] }, { - "depth": 2, - "gas": 2038939, - "gasCost": 3, + "pc": 4084, "op": "PUSH3", - "pc": 3999, + "gas": 2041576, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xff7", + "0x104c", "0xa4", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", - "0xfb9" + "0x100e" ] }, { - "depth": 2, - "gas": 2038936, - "gasCost": 3, + "pc": 4088, "op": "PUSH3", - "pc": 4003, + "gas": 2041573, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xff7", + "0x104c", "0xa4", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", - "0xfb9", - "0xfb3" + "0x100e", + "0x1008" ] }, { - "depth": 2, - "gas": 2038933, - "gasCost": 3, + "pc": 4092, "op": "DUP5", - "pc": 4007, + "gas": 2041570, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xff7", + "0x104c", "0xa4", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", - "0xfb9", - "0xfb3", - "0xfad" + "0x100e", + "0x1008", + "0x1002" ] }, { - "depth": 2, - "gas": 2038930, - "gasCost": 3, + "pc": 4093, "op": "PUSH3", - "pc": 4008, + "gas": 2041567, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xff7", + "0x104c", "0xa4", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", - "0xfb9", - "0xfb3", - "0xfad", + "0x100e", + "0x1008", + "0x1002", "0x1" ] }, { - "depth": 2, - "gas": 2038927, - "gasCost": 8, + "pc": 4097, "op": "JUMP", - "pc": 4012, + "gas": 2041564, + "gasCost": 8, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xff7", + "0x104c", "0xa4", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", - "0xfb9", - "0xfb3", - "0xfad", + "0x100e", + "0x1008", + "0x1002", "0x1", - "0xf84" + "0xfd9" ] }, { - "depth": 2, - "gas": 2038919, - "gasCost": 1, + "pc": 4057, "op": "JUMPDEST", - "pc": 3972, + "gas": 2041556, + "gasCost": 1, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xff7", + "0x104c", "0xa4", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", - "0xfb9", - "0xfb3", - "0xfad", + "0x100e", + "0x1008", + "0x1002", "0x1" ] }, { - "depth": 2, - "gas": 2038918, - "gasCost": 3, + "pc": 4058, "op": "PUSH1", - "pc": 3973, + "gas": 2041555, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xff7", + "0x104c", "0xa4", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", - "0xfb9", - "0xfb3", - "0xfad", + "0x100e", + "0x1008", + "0x1002", "0x1" ] }, { - "depth": 2, - "gas": 2038915, - "gasCost": 3, + "pc": 4060, "op": "DUP2", - "pc": 3975, + "gas": 2041552, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xff7", + "0x104c", "0xa4", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", - "0xfb9", - "0xfb3", - "0xfad", + "0x100e", + "0x1008", + "0x1002", "0x1", "0x0" ] }, { - "depth": 2, - "gas": 2038912, - "gasCost": 3, + "pc": 4061, "op": "SWAP1", - "pc": 3976, + "gas": 2041549, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xff7", + "0x104c", "0xa4", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", - "0xfb9", - "0xfb3", - "0xfad", + "0x100e", + "0x1008", + "0x1002", "0x1", "0x0", "0x1" ] }, { - "depth": 2, - "gas": 2038909, - "gasCost": 2, + "pc": 4062, "op": "POP", - "pc": 3977, + "gas": 2041546, + "gasCost": 2, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xff7", + "0x104c", "0xa4", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", - "0xfb9", - "0xfb3", - "0xfad", + "0x100e", + "0x1008", + "0x1002", "0x1", "0x1", "0x0" ] }, { - "depth": 2, - "gas": 2038907, - "gasCost": 3, + "pc": 4063, "op": "SWAP2", - "pc": 3978, + "gas": 2041544, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xff7", + "0x104c", "0xa4", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", - "0xfb9", - "0xfb3", - "0xfad", + "0x100e", + "0x1008", + "0x1002", "0x1", "0x1" ] }, { - "depth": 2, - "gas": 2038904, - "gasCost": 3, + "pc": 4064, "op": "SWAP1", - "pc": 3979, + "gas": 2041541, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xff7", + "0x104c", "0xa4", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", - "0xfb9", - "0xfb3", + "0x100e", + "0x1008", "0x1", "0x1", - "0xfad" + "0x1002" ] }, { - "depth": 2, - "gas": 2038901, - "gasCost": 2, + "pc": 4065, "op": "POP", - "pc": 3980, + "gas": 2041538, + "gasCost": 2, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xff7", + "0x104c", "0xa4", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", - "0xfb9", - "0xfb3", + "0x100e", + "0x1008", "0x1", - "0xfad", + "0x1002", "0x1" ] }, { - "depth": 2, - "gas": 2038899, - "gasCost": 8, + "pc": 4066, "op": "JUMP", - "pc": 3981, + "gas": 2041536, + "gasCost": 8, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xff7", + "0x104c", "0xa4", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", - "0xfb9", - "0xfb3", + "0x100e", + "0x1008", "0x1", - "0xfad" + "0x1002" ] }, { - "depth": 2, - "gas": 2038891, - "gasCost": 1, + "pc": 4098, "op": "JUMPDEST", - "pc": 4013, + "gas": 2041528, + "gasCost": 1, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xff7", + "0x104c", "0xa4", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", - "0xfb9", - "0xfb3", + "0x100e", + "0x1008", "0x1" ] }, { - "depth": 2, - "gas": 2038890, - "gasCost": 3, + "pc": 4099, "op": "PUSH3", - "pc": 4014, + "gas": 2041527, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xff7", + "0x104c", "0xa4", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", - "0xfb9", - "0xfb3", + "0x100e", + "0x1008", "0x1" ] }, { - "depth": 2, - "gas": 2038887, - "gasCost": 8, + "pc": 4103, "op": "JUMP", - "pc": 4018, + "gas": 2041524, + "gasCost": 8, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xff7", + "0x104c", "0xa4", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", - "0xfb9", - "0xfb3", + "0x100e", + "0x1008", "0x1", - "0xf8e" + "0xfe3" ] }, { - "depth": 2, - "gas": 2038879, - "gasCost": 1, + "pc": 4067, "op": "JUMPDEST", - "pc": 3982, + "gas": 2041516, + "gasCost": 1, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xff7", + "0x104c", "0xa4", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", - "0xfb9", - "0xfb3", + "0x100e", + "0x1008", "0x1" ] }, { - "depth": 2, - "gas": 2038878, - "gasCost": 3, + "pc": 4068, "op": "PUSH1", - "pc": 3983, + "gas": 2041515, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xff7", + "0x104c", "0xa4", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", - "0xfb9", - "0xfb3", + "0x100e", + "0x1008", "0x1" ] }, { - "depth": 2, - "gas": 2038875, - "gasCost": 3, + "pc": 4070, "op": "DUP2", - "pc": 3985, + "gas": 2041512, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xff7", + "0x104c", "0xa4", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", - "0xfb9", - "0xfb3", + "0x100e", + "0x1008", "0x1", "0x0" ] }, { - "depth": 2, - "gas": 2038872, - "gasCost": 3, + "pc": 4071, "op": "SWAP1", - "pc": 3986, + "gas": 2041509, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xff7", + "0x104c", "0xa4", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", - "0xfb9", - "0xfb3", + "0x100e", + "0x1008", "0x1", "0x0", "0x1" ] }, { - "depth": 2, - "gas": 2038869, - "gasCost": 2, + "pc": 4072, "op": "POP", - "pc": 3987, + "gas": 2041506, + "gasCost": 2, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xff7", + "0x104c", "0xa4", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", - "0xfb9", - "0xfb3", + "0x100e", + "0x1008", "0x1", "0x1", "0x0" ] }, { - "depth": 2, - "gas": 2038867, - "gasCost": 3, + "pc": 4073, "op": "SWAP2", - "pc": 3988, + "gas": 2041504, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xff7", + "0x104c", "0xa4", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", - "0xfb9", - "0xfb3", + "0x100e", + "0x1008", "0x1", "0x1" ] }, { - "depth": 2, - "gas": 2038864, - "gasCost": 3, + "pc": 4074, "op": "SWAP1", - "pc": 3989, + "gas": 2041501, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xff7", + "0x104c", "0xa4", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", - "0xfb9", + "0x100e", "0x1", "0x1", - "0xfb3" + "0x1008" ] }, { - "depth": 2, - "gas": 2038861, - "gasCost": 2, + "pc": 4075, "op": "POP", - "pc": 3990, + "gas": 2041498, + "gasCost": 2, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xff7", + "0x104c", "0xa4", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", - "0xfb9", + "0x100e", "0x1", - "0xfb3", + "0x1008", "0x1" ] }, { - "depth": 2, - "gas": 2038859, - "gasCost": 8, + "pc": 4076, "op": "JUMP", - "pc": 3991, + "gas": 2041496, + "gasCost": 8, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xff7", + "0x104c", "0xa4", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", - "0xfb9", + "0x100e", "0x1", - "0xfb3" + "0x1008" ] }, { - "depth": 2, - "gas": 2038851, - "gasCost": 1, + "pc": 4104, "op": "JUMPDEST", - "pc": 4019, + "gas": 2041488, + "gasCost": 1, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xff7", + "0x104c", "0xa4", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", - "0xfb9", + "0x100e", "0x1" ] }, { - "depth": 2, - "gas": 2038850, - "gasCost": 3, + "pc": 4105, "op": "PUSH3", - "pc": 4020, + "gas": 2041487, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xff7", + "0x104c", "0xa4", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", - "0xfb9", + "0x100e", "0x1" ] }, { - "depth": 2, - "gas": 2038847, - "gasCost": 8, + "pc": 4109, "op": "JUMP", - "pc": 4024, + "gas": 2041484, + "gasCost": 8, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xff7", + "0x104c", "0xa4", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", - "0xfb9", + "0x100e", "0x1", - "0x95a" + "0x97c" ] }, { - "depth": 2, - "gas": 2038839, - "gasCost": 1, + "pc": 2428, "op": "JUMPDEST", - "pc": 2394, + "gas": 2041476, + "gasCost": 1, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xff7", + "0x104c", "0xa4", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", - "0xfb9", + "0x100e", "0x1" ] }, { - "depth": 2, - "gas": 2038838, - "gasCost": 3, + "pc": 2429, "op": "PUSH1", - "pc": 2395, + "gas": 2041475, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xff7", + "0x104c", "0xa4", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", - "0xfb9", + "0x100e", "0x1" ] }, { - "depth": 2, - "gas": 2038835, - "gasCost": 3, + "pc": 2431, "op": "DUP2", - "pc": 2397, + "gas": 2041472, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xff7", + "0x104c", "0xa4", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", - "0xfb9", + "0x100e", "0x1", "0x0" ] }, { - "depth": 2, - "gas": 2038832, - "gasCost": 3, + "pc": 2432, "op": "SWAP1", - "pc": 2398, + "gas": 2041469, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xff7", + "0x104c", "0xa4", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", - "0xfb9", + "0x100e", "0x1", "0x0", "0x1" ] }, { - "depth": 2, - "gas": 2038829, - "gasCost": 2, + "pc": 2433, "op": "POP", - "pc": 2399, + "gas": 2041466, + "gasCost": 2, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xff7", + "0x104c", "0xa4", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", - "0xfb9", + "0x100e", "0x1", "0x1", "0x0" ] }, { - "depth": 2, - "gas": 2038827, - "gasCost": 3, + "pc": 2434, "op": "SWAP2", - "pc": 2400, + "gas": 2041464, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xff7", + "0x104c", "0xa4", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", - "0xfb9", + "0x100e", "0x1", "0x1" ] }, { - "depth": 2, - "gas": 2038824, - "gasCost": 3, + "pc": 2435, "op": "SWAP1", - "pc": 2401, + "gas": 2041461, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xff7", + "0x104c", "0xa4", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", "0x1", "0x1", - "0xfb9" + "0x100e" ] }, { - "depth": 2, - "gas": 2038821, - "gasCost": 2, + "pc": 2436, "op": "POP", - "pc": 2402, + "gas": 2041458, + "gasCost": 2, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xff7", + "0x104c", "0xa4", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", "0x1", - "0xfb9", + "0x100e", "0x1" ] }, { - "depth": 2, - "gas": 2038819, - "gasCost": 8, + "pc": 2437, "op": "JUMP", - "pc": 2403, + "gas": 2041456, + "gasCost": 8, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xff7", + "0x104c", "0xa4", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", "0x1", - "0xfb9" + "0x100e" ] }, { - "depth": 2, - "gas": 2038811, - "gasCost": 1, + "pc": 4110, "op": "JUMPDEST", - "pc": 4025, + "gas": 2041448, + "gasCost": 1, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xff7", + "0x104c", "0xa4", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", "0x1" ] }, { - "depth": 2, - "gas": 2038810, - "gasCost": 3, + "pc": 4111, "op": "SWAP1", - "pc": 4026, + "gas": 2041447, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xff7", + "0x104c", "0xa4", "0x1", - "0xfcb", + "0x1020", "0x1", "0x0", "0x1" ] }, { - "depth": 2, - "gas": 2038807, - "gasCost": 2, + "pc": 4112, "op": "POP", - "pc": 4027, + "gas": 2041444, + "gasCost": 2, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xff7", + "0x104c", "0xa4", "0x1", - "0xfcb", + "0x1020", "0x1", "0x1", "0x0" ] }, { - "depth": 2, - "gas": 2038805, - "gasCost": 3, + "pc": 4113, "op": "SWAP2", - "pc": 4028, + "gas": 2041442, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xff7", + "0x104c", "0xa4", "0x1", - "0xfcb", + "0x1020", "0x1", "0x1" ] }, { - "depth": 2, - "gas": 2038802, - "gasCost": 3, + "pc": 4114, "op": "SWAP1", - "pc": 4029, + "gas": 2041439, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xff7", + "0x104c", "0xa4", "0x1", "0x1", "0x1", - "0xfcb" + "0x1020" ] }, { - "depth": 2, - "gas": 2038799, - "gasCost": 2, + "pc": 4115, "op": "POP", - "pc": 4030, + "gas": 2041436, + "gasCost": 2, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xff7", + "0x104c", "0xa4", "0x1", "0x1", - "0xfcb", + "0x1020", "0x1" ] }, { - "depth": 2, - "gas": 2038797, - "gasCost": 8, + "pc": 4116, "op": "JUMP", - "pc": 4031, + "gas": 2041434, + "gasCost": 8, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xff7", + "0x104c", "0xa4", "0x1", "0x1", - "0xfcb" + "0x1020" ] }, { - "depth": 2, - "gas": 2038789, - "gasCost": 1, + "pc": 4128, "op": "JUMPDEST", - "pc": 4043, + "gas": 2041426, + "gasCost": 1, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xff7", + "0x104c", "0xa4", "0x1", "0x1" ] }, { - "depth": 2, - "gas": 2038788, - "gasCost": 3, + "pc": 4129, "op": "DUP3", - "pc": 4044, + "gas": 2041425, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xff7", + "0x104c", "0xa4", "0x1", "0x1" ] }, { - "depth": 2, - "gas": 2038785, - "gasCost": 6, + "pc": 4130, "op": "MSTORE", - "pc": 4045, + "gas": 2041422, + "gasCost": 6, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xff7", + "0x104c", "0xa4", "0x1", "0x1", @@ -16889,69 +17145,69 @@ ] }, { - "depth": 2, - "gas": 2038779, - "gasCost": 2, + "pc": 4131, "op": "POP", - "pc": 4046, + "gas": 2041416, + "gasCost": 2, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xff7", + "0x104c", "0xa4", "0x1" ] }, { - "depth": 2, - "gas": 2038777, - "gasCost": 2, + "pc": 4132, "op": "POP", - "pc": 4047, + "gas": 2041414, + "gasCost": 2, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xff7", + "0x104c", "0xa4" ] }, { - "depth": 2, - "gas": 2038775, - "gasCost": 8, + "pc": 4133, "op": "JUMP", - "pc": 4048, + "gas": 2041412, + "gasCost": 8, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", "0xc4", - "0xff7" + "0x104c" ] }, { - "depth": 2, - "gas": 2038767, - "gasCost": 1, + "pc": 4172, "op": "JUMPDEST", - "pc": 4087, + "gas": 2041404, + "gasCost": 1, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", @@ -16959,15 +17215,15 @@ ] }, { - "depth": 2, - "gas": 2038766, - "gasCost": 3, + "pc": 4173, "op": "SWAP4", - "pc": 4088, + "gas": 2041403, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", - "0x7aa", + "0x7bc", "0x1", "0x1", "0x84", @@ -16975,11 +17231,11 @@ ] }, { - "depth": 2, - "gas": 2038763, - "gasCost": 3, + "pc": 4174, "op": "SWAP3", - "pc": 4089, + "gas": 2041400, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", @@ -16987,73 +17243,73 @@ "0x1", "0x1", "0x84", - "0x7aa" + "0x7bc" ] }, { - "depth": 2, - "gas": 2038760, - "gasCost": 2, + "pc": 4175, "op": "POP", - "pc": 4090, + "gas": 2041397, + "gasCost": 2, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", "0xc4", - "0x7aa", + "0x7bc", "0x1", "0x84", "0x1" ] }, { - "depth": 2, - "gas": 2038758, - "gasCost": 2, + "pc": 4176, "op": "POP", - "pc": 4091, + "gas": 2041395, + "gasCost": 2, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", "0xc4", - "0x7aa", + "0x7bc", "0x1", "0x84" ] }, { - "depth": 2, - "gas": 2038756, - "gasCost": 2, + "pc": 4177, "op": "POP", - "pc": 4092, + "gas": 2041393, + "gasCost": 2, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", "0xc4", - "0x7aa", + "0x7bc", "0x1" ] }, { - "depth": 2, - "gas": 2038754, - "gasCost": 8, + "pc": 4178, "op": "JUMP", - "pc": 4093, + "gas": 2041391, + "gasCost": 8, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", "0xc4", - "0x7aa" + "0x7bc" ] }, { - "depth": 2, - "gas": 2038746, - "gasCost": 1, + "pc": 1980, "op": "JUMPDEST", - "pc": 1962, + "gas": 2041383, + "gasCost": 1, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", @@ -17061,11 +17317,11 @@ ] }, { - "depth": 2, - "gas": 2038745, - "gasCost": 3, + "pc": 1981, "op": "PUSH1", - "pc": 1963, + "gas": 2041382, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", @@ -17073,11 +17329,11 @@ ] }, { - "depth": 2, - "gas": 2038742, - "gasCost": 3, + "pc": 1983, "op": "MLOAD", - "pc": 1965, + "gas": 2041379, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", @@ -17086,11 +17342,11 @@ ] }, { - "depth": 2, - "gas": 2038739, - "gasCost": 3, + "pc": 1984, "op": "DUP1", - "pc": 1966, + "gas": 2041376, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", @@ -17099,11 +17355,11 @@ ] }, { - "depth": 2, - "gas": 2038736, - "gasCost": 3, + "pc": 1985, "op": "SWAP2", - "pc": 1967, + "gas": 2041373, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", @@ -17113,11 +17369,11 @@ ] }, { - "depth": 2, - "gas": 2038733, - "gasCost": 3, + "pc": 1986, "op": "SUB", - "pc": 1968, + "gas": 2041370, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", @@ -17127,11 +17383,11 @@ ] }, { - "depth": 2, - "gas": 2038730, - "gasCost": 3, + "pc": 1987, "op": "SWAP1", - "pc": 1969, + "gas": 2041367, + "gasCost": 3, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", @@ -17140,11 +17396,11 @@ ] }, { - "depth": 2, - "gas": 2038727, - "gasCost": 0, + "pc": 1988, "op": "REVERT", - "pc": 1970, + "gas": 2041364, + "gasCost": 0, + "depth": 2, "stack": [ "0x8bfe44ff", "0x1a1", @@ -17153,11 +17409,11 @@ ] }, { - "depth": 1, - "gas": 2071098, - "gasCost": 3, + "pc": 1598, "op": "SWAP3", - "pc": 1581, + "gas": 2073777, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -17170,11 +17426,11 @@ ] }, { - "depth": 1, - "gas": 2071095, - "gasCost": 2, + "pc": 1599, "op": "POP", - "pc": 1582, + "gas": 2073774, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -17187,11 +17443,11 @@ ] }, { - "depth": 1, - "gas": 2071093, - "gasCost": 2, + "pc": 1600, "op": "POP", - "pc": 1583, + "gas": 2073772, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -17203,11 +17459,11 @@ ] }, { - "depth": 1, - "gas": 2071091, - "gasCost": 2, + "pc": 1601, "op": "POP", - "pc": 1584, + "gas": 2073770, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -17218,11 +17474,11 @@ ] }, { - "depth": 1, - "gas": 2071089, - "gasCost": 3, + "pc": 1602, "op": "DUP1", - "pc": 1585, + "gas": 2073768, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -17232,11 +17488,11 @@ ] }, { - "depth": 1, - "gas": 2071086, - "gasCost": 3, + "pc": 1603, "op": "ISZERO", - "pc": 1586, + "gas": 2073765, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -17247,11 +17503,11 @@ ] }, { - "depth": 1, - "gas": 2071083, - "gasCost": 3, + "pc": 1604, "op": "PUSH3", - "pc": 1587, + "gas": 2073762, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -17262,11 +17518,11 @@ ] }, { - "depth": 1, - "gas": 2071080, - "gasCost": 10, + "pc": 1608, "op": "JUMPI", - "pc": 1591, + "gas": 2073759, + "gasCost": 10, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -17274,15 +17530,15 @@ "0x0", "0x0", "0x1", - "0x63b" + "0x64c" ] }, { - "depth": 1, - "gas": 2071070, - "gasCost": 1, + "pc": 1612, "op": "JUMPDEST", - "pc": 1595, + "gas": 2073749, + "gasCost": 1, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -17292,11 +17548,11 @@ ] }, { - "depth": 1, - "gas": 2071069, - "gasCost": 3, + "pc": 1613, "op": "PUSH3", - "pc": 1596, + "gas": 2073748, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -17306,26 +17562,26 @@ ] }, { - "depth": 1, - "gas": 2071066, - "gasCost": 10, + "pc": 1617, "op": "JUMPI", - "pc": 1600, + "gas": 2073745, + "gasCost": 10, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", "0x0", - "0x723" + "0x735" ] }, { - "depth": 1, - "gas": 2071056, - "gasCost": 3, + "pc": 1618, "op": "PUSH3", - "pc": 1601, + "gas": 2073735, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -17334,219 +17590,219 @@ ] }, { - "depth": 1, - "gas": 2071053, - "gasCost": 3, + "pc": 1622, "op": "PUSH3", - "pc": 1605, + "gas": 2073732, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x64a" + "0x65b" ] }, { - "depth": 1, - "gas": 2071050, - "gasCost": 8, + "pc": 1626, "op": "JUMP", - "pc": 1609, + "gas": 2073729, + "gasCost": 8, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x64a", - "0xca8" + "0x65b", + "0xcec" ] }, { - "depth": 1, - "gas": 2071042, - "gasCost": 1, + "pc": 3308, "op": "JUMPDEST", - "pc": 3240, + "gas": 2073721, + "gasCost": 1, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x64a" + "0x65b" ] }, { - "depth": 1, - "gas": 2071041, - "gasCost": 3, + "pc": 3309, "op": "PUSH1", - "pc": 3241, + "gas": 2073720, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x64a" + "0x65b" ] }, { - "depth": 1, - "gas": 2071038, - "gasCost": 3, + "pc": 3311, "op": "PUSH1", - "pc": 3243, + "gas": 2073717, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x64a", + "0x65b", "0x0" ] }, { - "depth": 1, - "gas": 2071035, - "gasCost": 2, + "pc": 3313, "op": "RETURNDATASIZE", - "pc": 3245, + "gas": 2073714, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x64a", + "0x65b", "0x0", "0x3" ] }, { - "depth": 1, - "gas": 2071033, - "gasCost": 3, + "pc": 3314, "op": "GT", - "pc": 3246, + "gas": 2073712, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x64a", + "0x65b", "0x0", "0x3", "0x44" ] }, { - "depth": 1, - "gas": 2071030, - "gasCost": 3, + "pc": 3315, "op": "ISZERO", - "pc": 3247, + "gas": 2073709, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x64a", + "0x65b", "0x0", "0x1" ] }, { - "depth": 1, - "gas": 2071027, - "gasCost": 3, + "pc": 3316, "op": "PUSH3", - "pc": 3248, + "gas": 2073706, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x64a", + "0x65b", "0x0", "0x0" ] }, { - "depth": 1, - "gas": 2071024, - "gasCost": 10, + "pc": 3320, "op": "JUMPI", - "pc": 3252, + "gas": 2073703, + "gasCost": 10, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x64a", + "0x65b", "0x0", "0x0", - "0xcca" + "0xd0e" ] }, { - "depth": 1, - "gas": 2071014, - "gasCost": 3, + "pc": 3321, "op": "PUSH1", - "pc": 3253, + "gas": 2073693, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x64a", + "0x65b", "0x0" ] }, { - "depth": 1, - "gas": 2071011, - "gasCost": 3, + "pc": 3323, "op": "PUSH1", - "pc": 3255, + "gas": 2073690, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x64a", + "0x65b", "0x0", "0x4" ] }, { - "depth": 1, - "gas": 2071008, - "gasCost": 3, + "pc": 3325, "op": "DUP1", - "pc": 3257, + "gas": 2073687, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x64a", + "0x65b", "0x0", "0x4", "0x0" ] }, { - "depth": 1, - "gas": 2071005, - "gasCost": 6, + "pc": 3326, "op": "RETURNDATACOPY", - "pc": 3258, + "gas": 2073684, + "gasCost": 6, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x64a", + "0x65b", "0x0", "0x4", "0x0", @@ -17554,173 +17810,173 @@ ] }, { - "depth": 1, - "gas": 2070999, - "gasCost": 3, + "pc": 3327, "op": "PUSH3", - "pc": 3259, + "gas": 2073678, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x64a", + "0x65b", "0x0" ] }, { - "depth": 1, - "gas": 2070996, - "gasCost": 3, + "pc": 3331, "op": "PUSH1", - "pc": 3263, + "gas": 2073675, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x64a", + "0x65b", "0x0", - "0xcc7" + "0xd0b" ] }, { - "depth": 1, - "gas": 2070993, - "gasCost": 3, + "pc": 3333, "op": "MLOAD", - "pc": 3265, + "gas": 2073672, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x64a", + "0x65b", "0x0", - "0xcc7", + "0xd0b", "0x0" ] }, { - "depth": 1, - "gas": 2070990, - "gasCost": 3, + "pc": 3334, "op": "PUSH3", - "pc": 3266, + "gas": 2073669, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x64a", + "0x65b", "0x0", - "0xcc7", + "0xd0b", "0xcf47918100000000000000000000000000000000000000000000000000000000" ] }, { - "depth": 1, - "gas": 2070987, - "gasCost": 8, + "pc": 3338, "op": "JUMP", - "pc": 3270, + "gas": 2073666, + "gasCost": 8, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x64a", + "0x65b", "0x0", - "0xcc7", + "0xd0b", "0xcf47918100000000000000000000000000000000000000000000000000000000", - "0xc9b" + "0xcdf" ] }, { - "depth": 1, - "gas": 2070979, - "gasCost": 1, + "pc": 3295, "op": "JUMPDEST", - "pc": 3227, + "gas": 2073658, + "gasCost": 1, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x64a", + "0x65b", "0x0", - "0xcc7", + "0xd0b", "0xcf47918100000000000000000000000000000000000000000000000000000000" ] }, { - "depth": 1, - "gas": 2070978, - "gasCost": 3, + "pc": 3296, "op": "PUSH1", - "pc": 3228, + "gas": 2073657, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x64a", + "0x65b", "0x0", - "0xcc7", + "0xd0b", "0xcf47918100000000000000000000000000000000000000000000000000000000" ] }, { - "depth": 1, - "gas": 2070975, - "gasCost": 3, + "pc": 3298, "op": "DUP2", - "pc": 3230, + "gas": 2073654, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x64a", + "0x65b", "0x0", - "0xcc7", + "0xd0b", "0xcf47918100000000000000000000000000000000000000000000000000000000", "0x0" ] }, { - "depth": 1, - "gas": 2070972, - "gasCost": 3, + "pc": 3299, "op": "PUSH1", - "pc": 3231, + "gas": 2073651, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x64a", + "0x65b", "0x0", - "0xcc7", + "0xd0b", "0xcf47918100000000000000000000000000000000000000000000000000000000", "0x0", "0xcf47918100000000000000000000000000000000000000000000000000000000" ] }, { - "depth": 1, - "gas": 2070969, - "gasCost": 3, + "pc": 3301, "op": "SHR", - "pc": 3233, + "gas": 2073648, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x64a", + "0x65b", "0x0", - "0xcc7", + "0xd0b", "0xcf47918100000000000000000000000000000000000000000000000000000000", "0x0", "0xcf47918100000000000000000000000000000000000000000000000000000000", @@ -17728,213 +17984,213 @@ ] }, { - "depth": 1, - "gas": 2070966, - "gasCost": 3, + "pc": 3302, "op": "SWAP1", - "pc": 3234, + "gas": 2073645, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x64a", + "0x65b", "0x0", - "0xcc7", + "0xd0b", "0xcf47918100000000000000000000000000000000000000000000000000000000", "0x0", "0xcf479181" ] }, { - "depth": 1, - "gas": 2070963, - "gasCost": 2, + "pc": 3303, "op": "POP", - "pc": 3235, + "gas": 2073642, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x64a", + "0x65b", "0x0", - "0xcc7", + "0xd0b", "0xcf47918100000000000000000000000000000000000000000000000000000000", "0xcf479181", "0x0" ] }, { - "depth": 1, - "gas": 2070961, - "gasCost": 3, + "pc": 3304, "op": "SWAP2", - "pc": 3236, + "gas": 2073640, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x64a", + "0x65b", "0x0", - "0xcc7", + "0xd0b", "0xcf47918100000000000000000000000000000000000000000000000000000000", "0xcf479181" ] }, { - "depth": 1, - "gas": 2070958, - "gasCost": 3, + "pc": 3305, "op": "SWAP1", - "pc": 3237, + "gas": 2073637, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x64a", + "0x65b", "0x0", "0xcf479181", "0xcf47918100000000000000000000000000000000000000000000000000000000", - "0xcc7" + "0xd0b" ] }, { - "depth": 1, - "gas": 2070955, - "gasCost": 2, + "pc": 3306, "op": "POP", - "pc": 3238, + "gas": 2073634, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x64a", + "0x65b", "0x0", "0xcf479181", - "0xcc7", + "0xd0b", "0xcf47918100000000000000000000000000000000000000000000000000000000" ] }, { - "depth": 1, - "gas": 2070953, - "gasCost": 8, + "pc": 3307, "op": "JUMP", - "pc": 3239, + "gas": 2073632, + "gasCost": 8, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x64a", + "0x65b", "0x0", "0xcf479181", - "0xcc7" + "0xd0b" ] }, { - "depth": 1, - "gas": 2070945, - "gasCost": 1, + "pc": 3339, "op": "JUMPDEST", - "pc": 3271, + "gas": 2073624, + "gasCost": 1, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x64a", + "0x65b", "0x0", "0xcf479181" ] }, { - "depth": 1, - "gas": 2070944, - "gasCost": 3, + "pc": 3340, "op": "SWAP1", - "pc": 3272, + "gas": 2073623, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x64a", + "0x65b", "0x0", "0xcf479181" ] }, { - "depth": 1, - "gas": 2070941, - "gasCost": 2, + "pc": 3341, "op": "POP", - "pc": 3273, + "gas": 2073620, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x64a", + "0x65b", "0xcf479181", "0x0" ] }, { - "depth": 1, - "gas": 2070939, - "gasCost": 1, + "pc": 3342, "op": "JUMPDEST", - "pc": 3274, + "gas": 2073618, + "gasCost": 1, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x64a", + "0x65b", "0xcf479181" ] }, { - "depth": 1, - "gas": 2070938, - "gasCost": 3, + "pc": 3343, "op": "SWAP1", - "pc": 3275, + "gas": 2073617, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x64a", + "0x65b", "0xcf479181" ] }, { - "depth": 1, - "gas": 2070935, - "gasCost": 8, + "pc": 3344, "op": "JUMP", - "pc": 3276, + "gas": 2073614, + "gasCost": 8, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", "0xcf479181", - "0x64a" + "0x65b" ] }, { - "depth": 1, - "gas": 2070927, - "gasCost": 1, + "pc": 1627, "op": "JUMPDEST", - "pc": 1610, + "gas": 2073606, + "gasCost": 1, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -17944,11 +18200,11 @@ ] }, { - "depth": 1, - "gas": 2070926, - "gasCost": 3, + "pc": 1628, "op": "DUP1", - "pc": 1611, + "gas": 2073605, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -17958,11 +18214,11 @@ ] }, { - "depth": 1, - "gas": 2070923, - "gasCost": 3, + "pc": 1629, "op": "PUSH4", - "pc": 1612, + "gas": 2073602, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -17973,11 +18229,11 @@ ] }, { - "depth": 1, - "gas": 2070920, + "pc": 1634, + "op": "EQ", + "gas": 2073599, "gasCost": 3, - "op": "SUB", - "pc": 1617, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -17989,42 +18245,57 @@ ] }, { - "depth": 1, - "gas": 2070917, + "pc": 1635, + "op": "ISZERO", + "gas": 2073596, "gasCost": 3, - "op": "PUSH3", - "pc": 1618, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", "0xcf479181", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff397be81f" + "0x0" ] }, { + "pc": 1636, + "op": "PUSH3", + "gas": 2073593, + "gasCost": 3, "depth": 1, - "gas": 2070914, - "gasCost": 10, - "op": "JUMPI", - "pc": 1622, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", "0xcf479181", - "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff397be81f", - "0x6ae" + "0x1" ] }, { + "pc": 1640, + "op": "JUMPI", + "gas": 2073590, + "gasCost": 10, "depth": 1, - "gas": 2070904, - "gasCost": 1, + "stack": [ + "0x7f29c394", + "0x17f", + "0x3e8", + "0x0", + "0xcf479181", + "0x1", + "0x6c0" + ] + }, + { + "pc": 1728, "op": "JUMPDEST", - "pc": 1710, + "gas": 2073580, + "gasCost": 1, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -18034,11 +18305,11 @@ ] }, { - "depth": 1, - "gas": 2070903, - "gasCost": 2, + "pc": 1729, "op": "POP", - "pc": 1711, + "gas": 2073579, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -18048,11 +18319,11 @@ ] }, { - "depth": 1, - "gas": 2070901, - "gasCost": 1, + "pc": 1730, "op": "JUMPDEST", - "pc": 1712, + "gas": 2073577, + "gasCost": 1, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -18061,11 +18332,11 @@ ] }, { - "depth": 1, - "gas": 2070900, - "gasCost": 2, + "pc": 1731, "op": "RETURNDATASIZE", - "pc": 1713, + "gas": 2073576, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -18074,11 +18345,11 @@ ] }, { - "depth": 1, - "gas": 2070898, - "gasCost": 3, + "pc": 1732, "op": "DUP1", - "pc": 1714, + "gas": 2073574, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -18088,11 +18359,11 @@ ] }, { - "depth": 1, - "gas": 2070895, - "gasCost": 3, + "pc": 1733, "op": "PUSH1", - "pc": 1715, + "gas": 2073571, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -18103,11 +18374,11 @@ ] }, { - "depth": 1, - "gas": 2070892, - "gasCost": 3, + "pc": 1735, "op": "DUP2", - "pc": 1717, + "gas": 2073568, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -18119,11 +18390,11 @@ ] }, { - "depth": 1, - "gas": 2070889, - "gasCost": 3, + "pc": 1736, "op": "EQ", - "pc": 1718, + "gas": 2073565, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -18136,11 +18407,11 @@ ] }, { - "depth": 1, - "gas": 2070886, - "gasCost": 3, + "pc": 1737, "op": "PUSH3", - "pc": 1719, + "gas": 2073562, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -18152,11 +18423,11 @@ ] }, { - "depth": 1, - "gas": 2070883, - "gasCost": 10, + "pc": 1741, "op": "JUMPI", - "pc": 1723, + "gas": 2073559, + "gasCost": 10, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -18165,15 +18436,15 @@ "0x44", "0x44", "0x0", - "0x6de" + "0x6f0" ] }, { - "depth": 1, - "gas": 2070873, - "gasCost": 3, + "pc": 1742, "op": "PUSH1", - "pc": 1724, + "gas": 2073549, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -18184,11 +18455,11 @@ ] }, { - "depth": 1, - "gas": 2070870, - "gasCost": 3, + "pc": 1744, "op": "MLOAD", - "pc": 1726, + "gas": 2073546, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -18200,11 +18471,11 @@ ] }, { - "depth": 1, - "gas": 2070867, - "gasCost": 3, + "pc": 1745, "op": "SWAP2", - "pc": 1727, + "gas": 2073543, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -18216,11 +18487,11 @@ ] }, { - "depth": 1, - "gas": 2070864, - "gasCost": 2, + "pc": 1746, "op": "POP", - "pc": 1728, + "gas": 2073540, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -18232,11 +18503,11 @@ ] }, { - "depth": 1, - "gas": 2070862, - "gasCost": 3, + "pc": 1747, "op": "PUSH1", - "pc": 1729, + "gas": 2073538, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -18247,11 +18518,11 @@ ] }, { - "depth": 1, - "gas": 2070859, - "gasCost": 3, + "pc": 1749, "op": "NOT", - "pc": 1731, + "gas": 2073535, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -18263,11 +18534,11 @@ ] }, { - "depth": 1, - "gas": 2070856, - "gasCost": 3, + "pc": 1750, "op": "PUSH1", - "pc": 1732, + "gas": 2073532, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -18279,11 +18550,11 @@ ] }, { - "depth": 1, - "gas": 2070853, - "gasCost": 2, + "pc": 1752, "op": "RETURNDATASIZE", - "pc": 1734, + "gas": 2073529, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -18296,11 +18567,11 @@ ] }, { - "depth": 1, - "gas": 2070851, - "gasCost": 3, + "pc": 1753, "op": "ADD", - "pc": 1735, + "gas": 2073527, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -18314,11 +18585,11 @@ ] }, { - "depth": 1, - "gas": 2070848, - "gasCost": 3, + "pc": 1754, "op": "AND", - "pc": 1736, + "gas": 2073524, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -18331,11 +18602,11 @@ ] }, { - "depth": 1, - "gas": 2070845, - "gasCost": 3, + "pc": 1755, "op": "DUP3", - "pc": 1737, + "gas": 2073521, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -18347,11 +18618,11 @@ ] }, { - "depth": 1, - "gas": 2070842, - "gasCost": 3, + "pc": 1756, "op": "ADD", - "pc": 1738, + "gas": 2073518, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -18364,11 +18635,11 @@ ] }, { - "depth": 1, - "gas": 2070839, - "gasCost": 3, + "pc": 1757, "op": "PUSH1", - "pc": 1739, + "gas": 2073515, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -18380,11 +18651,11 @@ ] }, { - "depth": 1, - "gas": 2070836, - "gasCost": 3, + "pc": 1759, "op": "MSTORE", - "pc": 1741, + "gas": 2073512, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -18397,11 +18668,11 @@ ] }, { - "depth": 1, - "gas": 2070833, - "gasCost": 2, + "pc": 1760, "op": "RETURNDATASIZE", - "pc": 1742, + "gas": 2073509, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -18412,11 +18683,11 @@ ] }, { - "depth": 1, - "gas": 2070831, - "gasCost": 3, + "pc": 1761, "op": "DUP3", - "pc": 1743, + "gas": 2073507, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -18428,11 +18699,11 @@ ] }, { - "depth": 1, - "gas": 2070828, - "gasCost": 3, + "pc": 1762, "op": "MSTORE", - "pc": 1744, + "gas": 2073504, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -18445,11 +18716,11 @@ ] }, { - "depth": 1, - "gas": 2070825, - "gasCost": 2, + "pc": 1763, "op": "RETURNDATASIZE", - "pc": 1745, + "gas": 2073501, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -18460,11 +18731,11 @@ ] }, { - "depth": 1, - "gas": 2070823, - "gasCost": 3, + "pc": 1764, "op": "PUSH1", - "pc": 1746, + "gas": 2073499, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -18476,11 +18747,11 @@ ] }, { - "depth": 1, - "gas": 2070820, - "gasCost": 3, + "pc": 1766, "op": "PUSH1", - "pc": 1748, + "gas": 2073496, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -18493,11 +18764,11 @@ ] }, { - "depth": 1, - "gas": 2070817, - "gasCost": 3, + "pc": 1768, "op": "DUP5", - "pc": 1750, + "gas": 2073493, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -18511,11 +18782,11 @@ ] }, { - "depth": 1, - "gas": 2070814, - "gasCost": 3, + "pc": 1769, "op": "ADD", - "pc": 1751, + "gas": 2073490, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -18530,11 +18801,11 @@ ] }, { - "depth": 1, - "gas": 2070811, - "gasCost": 12, + "pc": 1770, "op": "RETURNDATACOPY", - "pc": 1752, + "gas": 2073487, + "gasCost": 12, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -18548,11 +18819,11 @@ ] }, { - "depth": 1, - "gas": 2070799, - "gasCost": 3, + "pc": 1771, "op": "PUSH3", - "pc": 1753, + "gas": 2073475, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -18563,11 +18834,11 @@ ] }, { - "depth": 1, - "gas": 2070796, - "gasCost": 8, + "pc": 1775, "op": "JUMP", - "pc": 1757, + "gas": 2073472, + "gasCost": 8, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -18575,15 +18846,15 @@ "0x0", "0xe0", "0x44", - "0x6e3" + "0x6f5" ] }, { - "depth": 1, - "gas": 2070788, - "gasCost": 1, + "pc": 1781, "op": "JUMPDEST", - "pc": 1763, + "gas": 2073464, + "gasCost": 1, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -18594,11 +18865,11 @@ ] }, { - "depth": 1, - "gas": 2070787, - "gasCost": 2, + "pc": 1782, "op": "POP", - "pc": 1764, + "gas": 2073463, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -18609,11 +18880,11 @@ ] }, { - "depth": 1, - "gas": 2070785, - "gasCost": 3, + "pc": 1783, "op": "PUSH32", - "pc": 1765, + "gas": 2073461, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -18623,11 +18894,11 @@ ] }, { - "depth": 1, - "gas": 2070782, - "gasCost": 3, + "pc": 1816, "op": "PUSH1", - "pc": 1798, + "gas": 2073458, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -18638,11 +18909,11 @@ ] }, { - "depth": 1, - "gas": 2070779, - "gasCost": 3, + "pc": 1818, "op": "MLOAD", - "pc": 1800, + "gas": 2073455, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -18654,11 +18925,11 @@ ] }, { - "depth": 1, - "gas": 2070776, - "gasCost": 3, + "pc": 1819, "op": "PUSH3", - "pc": 1801, + "gas": 2073452, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -18670,11 +18941,11 @@ ] }, { - "depth": 1, - "gas": 2070773, - "gasCost": 3, + "pc": 1823, "op": "SWAP1", - "pc": 1805, + "gas": 2073449, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -18683,15 +18954,15 @@ "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", "0x160", - "0x713" + "0x725" ] }, { - "depth": 1, - "gas": 2070770, - "gasCost": 3, + "pc": 1824, "op": "PUSH3", - "pc": 1806, + "gas": 2073446, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -18699,16 +18970,16 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x713", + "0x725", "0x160" ] }, { - "depth": 1, - "gas": 2070767, - "gasCost": 8, + "pc": 1828, "op": "JUMP", - "pc": 1810, + "gas": 2073443, + "gasCost": 8, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -18716,17 +18987,17 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x713", + "0x725", "0x160", - "0xef0" + "0xf45" ] }, { - "depth": 1, - "gas": 2070759, - "gasCost": 1, + "pc": 3909, "op": "JUMPDEST", - "pc": 3824, + "gas": 2073435, + "gasCost": 1, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -18734,16 +19005,16 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x713", + "0x725", "0x160" ] }, { - "depth": 1, - "gas": 2070758, - "gasCost": 3, + "pc": 3910, "op": "PUSH1", - "pc": 3825, + "gas": 2073434, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -18751,16 +19022,16 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x713", + "0x725", "0x160" ] }, { - "depth": 1, - "gas": 2070755, - "gasCost": 3, + "pc": 3912, "op": "PUSH1", - "pc": 3827, + "gas": 2073431, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -18768,17 +19039,17 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x713", + "0x725", "0x160", "0x0" ] }, { - "depth": 1, - "gas": 2070752, - "gasCost": 3, + "pc": 3914, "op": "DUP3", - "pc": 3829, + "gas": 2073428, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -18786,18 +19057,18 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x713", + "0x725", "0x160", "0x0", "0x20" ] }, { - "depth": 1, - "gas": 2070749, - "gasCost": 3, + "pc": 3915, "op": "ADD", - "pc": 3830, + "gas": 2073425, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -18805,7 +19076,7 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x713", + "0x725", "0x160", "0x0", "0x20", @@ -18813,11 +19084,11 @@ ] }, { - "depth": 1, - "gas": 2070746, - "gasCost": 3, + "pc": 3916, "op": "SWAP1", - "pc": 3831, + "gas": 2073422, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -18825,18 +19096,18 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x713", + "0x725", "0x160", "0x0", "0x180" ] }, { - "depth": 1, - "gas": 2070743, - "gasCost": 2, + "pc": 3917, "op": "POP", - "pc": 3832, + "gas": 2073419, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -18844,18 +19115,18 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x713", + "0x725", "0x160", "0x180", "0x0" ] }, { - "depth": 1, - "gas": 2070741, - "gasCost": 3, + "pc": 3918, "op": "DUP2", - "pc": 3833, + "gas": 2073417, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -18863,17 +19134,17 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x713", + "0x725", "0x160", "0x180" ] }, { - "depth": 1, - "gas": 2070738, - "gasCost": 3, + "pc": 3919, "op": "DUP2", - "pc": 3834, + "gas": 2073414, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -18881,18 +19152,18 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x713", + "0x725", "0x160", "0x180", "0x160" ] }, { - "depth": 1, - "gas": 2070735, - "gasCost": 3, + "pc": 3920, "op": "SUB", - "pc": 3835, + "gas": 2073411, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -18900,7 +19171,7 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x713", + "0x725", "0x160", "0x180", "0x160", @@ -18908,11 +19179,11 @@ ] }, { - "depth": 1, - "gas": 2070732, - "gasCost": 3, + "pc": 3921, "op": "PUSH1", - "pc": 3836, + "gas": 2073408, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -18920,18 +19191,18 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x713", + "0x725", "0x160", "0x180", "0x20" ] }, { - "depth": 1, - "gas": 2070729, - "gasCost": 3, + "pc": 3923, "op": "DUP4", - "pc": 3838, + "gas": 2073405, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -18939,7 +19210,7 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x713", + "0x725", "0x160", "0x180", "0x20", @@ -18947,11 +19218,11 @@ ] }, { - "depth": 1, - "gas": 2070726, - "gasCost": 3, + "pc": 3924, "op": "ADD", - "pc": 3839, + "gas": 2073402, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -18959,7 +19230,7 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x713", + "0x725", "0x160", "0x180", "0x20", @@ -18968,11 +19239,11 @@ ] }, { - "depth": 1, - "gas": 2070723, - "gasCost": 6, + "pc": 3925, "op": "MSTORE", - "pc": 3840, + "gas": 2073399, + "gasCost": 6, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -18980,7 +19251,7 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x713", + "0x725", "0x160", "0x180", "0x20", @@ -18988,11 +19259,11 @@ ] }, { - "depth": 1, - "gas": 2070717, - "gasCost": 3, + "pc": 3926, "op": "PUSH3", - "pc": 3841, + "gas": 2073393, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -19000,17 +19271,17 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x713", + "0x725", "0x160", "0x180" ] }, { - "depth": 1, - "gas": 2070714, - "gasCost": 3, + "pc": 3930, "op": "DUP2", - "pc": 3845, + "gas": 2073390, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -19018,18 +19289,18 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x713", + "0x725", "0x160", "0x180", - "0xf0b" + "0xf60" ] }, { - "depth": 1, - "gas": 2070711, - "gasCost": 3, + "pc": 3931, "op": "PUSH3", - "pc": 3846, + "gas": 2073387, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -19037,19 +19308,19 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x713", + "0x725", "0x160", "0x180", - "0xf0b", + "0xf60", "0x180" ] }, { - "depth": 1, - "gas": 2070708, - "gasCost": 8, + "pc": 3935, "op": "JUMP", - "pc": 3850, + "gas": 2073384, + "gasCost": 8, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -19057,20 +19328,20 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x713", + "0x725", "0x160", "0x180", - "0xf0b", + "0xf60", "0x180", - "0xec9" + "0xf1e" ] }, { - "depth": 1, - "gas": 2070700, - "gasCost": 1, + "pc": 3870, "op": "JUMPDEST", - "pc": 3785, + "gas": 2073376, + "gasCost": 1, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -19078,19 +19349,19 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x713", + "0x725", "0x160", "0x180", - "0xf0b", + "0xf60", "0x180" ] }, { - "depth": 1, - "gas": 2070699, - "gasCost": 3, + "pc": 3871, "op": "PUSH1", - "pc": 3786, + "gas": 2073375, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -19098,19 +19369,19 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x713", + "0x725", "0x160", "0x180", - "0xf0b", + "0xf60", "0x180" ] }, { - "depth": 1, - "gas": 2070696, - "gasCost": 3, + "pc": 3873, "op": "PUSH3", - "pc": 3788, + "gas": 2073372, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -19118,20 +19389,20 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x713", + "0x725", "0x160", "0x180", - "0xf0b", + "0xf60", "0x180", "0x0" ] }, { - "depth": 1, - "gas": 2070693, - "gasCost": 3, + "pc": 3877, "op": "PUSH1", - "pc": 3792, + "gas": 2073369, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -19139,21 +19410,21 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x713", + "0x725", "0x160", "0x180", - "0xf0b", + "0xf60", "0x180", "0x0", - "0xed8" + "0xf2d" ] }, { - "depth": 1, - "gas": 2070690, - "gasCost": 3, + "pc": 3879, "op": "DUP4", - "pc": 3794, + "gas": 2073366, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -19161,22 +19432,22 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x713", + "0x725", "0x160", "0x180", - "0xf0b", + "0xf60", "0x180", "0x0", - "0xed8", + "0xf2d", "0x2d" ] }, { - "depth": 1, - "gas": 2070687, - "gasCost": 3, + "pc": 3880, "op": "PUSH3", - "pc": 3795, + "gas": 2073363, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -19184,23 +19455,23 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x713", + "0x725", "0x160", "0x180", - "0xf0b", + "0xf60", "0x180", "0x0", - "0xed8", + "0xf2d", "0x2d", "0x180" ] }, - { - "depth": 1, - "gas": 2070684, - "gasCost": 8, + { + "pc": 3884, "op": "JUMP", - "pc": 3799, + "gas": 2073360, + "gasCost": 8, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -19208,24 +19479,24 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x713", + "0x725", "0x160", "0x180", - "0xf0b", + "0xf60", "0x180", "0x0", - "0xed8", + "0xf2d", "0x2d", "0x180", - "0xad3" + "0xaf5" ] }, { - "depth": 1, - "gas": 2070676, - "gasCost": 1, + "pc": 2805, "op": "JUMPDEST", - "pc": 2771, + "gas": 2073352, + "gasCost": 1, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -19233,23 +19504,23 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x713", + "0x725", "0x160", "0x180", - "0xf0b", + "0xf60", "0x180", "0x0", - "0xed8", + "0xf2d", "0x2d", "0x180" ] }, { - "depth": 1, - "gas": 2070675, - "gasCost": 3, + "pc": 2806, "op": "PUSH1", - "pc": 2772, + "gas": 2073351, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -19257,23 +19528,23 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x713", + "0x725", "0x160", "0x180", - "0xf0b", + "0xf60", "0x180", "0x0", - "0xed8", + "0xf2d", "0x2d", "0x180" ] }, { - "depth": 1, - "gas": 2070672, - "gasCost": 3, + "pc": 2808, "op": "DUP3", - "pc": 2774, + "gas": 2073348, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -19281,24 +19552,24 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x713", + "0x725", "0x160", "0x180", - "0xf0b", + "0xf60", "0x180", "0x0", - "0xed8", + "0xf2d", "0x2d", "0x180", "0x0" ] }, { - "depth": 1, - "gas": 2070669, - "gasCost": 3, + "pc": 2809, "op": "DUP3", - "pc": 2775, + "gas": 2073345, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -19306,13 +19577,13 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x713", + "0x725", "0x160", "0x180", - "0xf0b", + "0xf60", "0x180", "0x0", - "0xed8", + "0xf2d", "0x2d", "0x180", "0x0", @@ -19320,11 +19591,11 @@ ] }, { - "depth": 1, - "gas": 2070666, - "gasCost": 6, + "pc": 2810, "op": "MSTORE", - "pc": 2776, + "gas": 2073342, + "gasCost": 6, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -19332,13 +19603,13 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x713", + "0x725", "0x160", "0x180", - "0xf0b", + "0xf60", "0x180", "0x0", - "0xed8", + "0xf2d", "0x2d", "0x180", "0x0", @@ -19347,11 +19618,11 @@ ] }, { - "depth": 1, - "gas": 2070660, - "gasCost": 3, + "pc": 2811, "op": "PUSH1", - "pc": 2777, + "gas": 2073336, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -19359,24 +19630,24 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x713", + "0x725", "0x160", "0x180", - "0xf0b", + "0xf60", "0x180", "0x0", - "0xed8", + "0xf2d", "0x2d", "0x180", "0x0" ] }, { - "depth": 1, - "gas": 2070657, - "gasCost": 3, + "pc": 2813, "op": "DUP3", - "pc": 2779, + "gas": 2073333, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -19384,13 +19655,13 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x713", + "0x725", "0x160", "0x180", - "0xf0b", + "0xf60", "0x180", "0x0", - "0xed8", + "0xf2d", "0x2d", "0x180", "0x0", @@ -19398,11 +19669,11 @@ ] }, { - "depth": 1, - "gas": 2070654, - "gasCost": 3, + "pc": 2814, "op": "ADD", - "pc": 2780, + "gas": 2073330, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -19410,13 +19681,13 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x713", + "0x725", "0x160", "0x180", - "0xf0b", + "0xf60", "0x180", "0x0", - "0xed8", + "0xf2d", "0x2d", "0x180", "0x0", @@ -19425,11 +19696,11 @@ ] }, { - "depth": 1, - "gas": 2070651, - "gasCost": 3, + "pc": 2815, "op": "SWAP1", - "pc": 2781, + "gas": 2073327, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -19437,13 +19708,13 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x713", + "0x725", "0x160", "0x180", - "0xf0b", + "0xf60", "0x180", "0x0", - "0xed8", + "0xf2d", "0x2d", "0x180", "0x0", @@ -19451,11 +19722,11 @@ ] }, { - "depth": 1, - "gas": 2070648, - "gasCost": 2, + "pc": 2816, "op": "POP", - "pc": 2782, + "gas": 2073324, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -19463,13 +19734,13 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x713", + "0x725", "0x160", "0x180", - "0xf0b", + "0xf60", "0x180", "0x0", - "0xed8", + "0xf2d", "0x2d", "0x180", "0x1a0", @@ -19477,11 +19748,11 @@ ] }, { - "depth": 1, - "gas": 2070646, - "gasCost": 3, + "pc": 2817, "op": "SWAP3", - "pc": 2783, + "gas": 2073322, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -19489,24 +19760,24 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x713", + "0x725", "0x160", "0x180", - "0xf0b", + "0xf60", "0x180", "0x0", - "0xed8", + "0xf2d", "0x2d", "0x180", "0x1a0" ] }, { - "depth": 1, - "gas": 2070643, - "gasCost": 3, + "pc": 2818, "op": "SWAP2", - "pc": 2784, + "gas": 2073319, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -19514,24 +19785,24 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x713", + "0x725", "0x160", "0x180", - "0xf0b", + "0xf60", "0x180", "0x0", "0x1a0", "0x2d", "0x180", - "0xed8" + "0xf2d" ] }, { - "depth": 1, - "gas": 2070640, - "gasCost": 2, + "pc": 2819, "op": "POP", - "pc": 2785, + "gas": 2073316, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -19539,24 +19810,24 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x713", + "0x725", "0x160", "0x180", - "0xf0b", + "0xf60", "0x180", "0x0", "0x1a0", - "0xed8", + "0xf2d", "0x180", "0x2d" ] }, { - "depth": 1, - "gas": 2070638, - "gasCost": 2, + "pc": 2820, "op": "POP", - "pc": 2786, + "gas": 2073314, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -19564,23 +19835,23 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x713", + "0x725", "0x160", "0x180", - "0xf0b", + "0xf60", "0x180", "0x0", "0x1a0", - "0xed8", + "0xf2d", "0x180" ] }, { - "depth": 1, - "gas": 2070636, - "gasCost": 8, + "pc": 2821, "op": "JUMP", - "pc": 2787, + "gas": 2073312, + "gasCost": 8, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -19588,22 +19859,22 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x713", + "0x725", "0x160", "0x180", - "0xf0b", + "0xf60", "0x180", "0x0", "0x1a0", - "0xed8" + "0xf2d" ] }, { - "depth": 1, - "gas": 2070628, - "gasCost": 1, + "pc": 3885, "op": "JUMPDEST", - "pc": 3800, + "gas": 2073304, + "gasCost": 1, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -19611,21 +19882,21 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x713", + "0x725", "0x160", "0x180", - "0xf0b", + "0xf60", "0x180", "0x0", "0x1a0" ] }, { - "depth": 1, - "gas": 2070627, - "gasCost": 3, + "pc": 3886, "op": "SWAP2", - "pc": 3801, + "gas": 2073303, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -19633,21 +19904,21 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x713", + "0x725", "0x160", "0x180", - "0xf0b", + "0xf60", "0x180", "0x0", "0x1a0" ] }, { - "depth": 1, - "gas": 2070624, - "gasCost": 2, + "pc": 3887, "op": "POP", - "pc": 3802, + "gas": 2073300, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -19655,21 +19926,21 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x713", + "0x725", "0x160", "0x180", - "0xf0b", + "0xf60", "0x1a0", "0x0", "0x180" ] }, { - "depth": 1, - "gas": 2070622, - "gasCost": 3, + "pc": 3888, "op": "PUSH3", - "pc": 3803, + "gas": 2073298, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -19677,20 +19948,20 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x713", + "0x725", "0x160", "0x180", - "0xf0b", + "0xf60", "0x1a0", "0x0" ] }, { - "depth": 1, - "gas": 2070619, - "gasCost": 3, + "pc": 3892, "op": "DUP3", - "pc": 3807, + "gas": 2073295, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -19698,21 +19969,21 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x713", + "0x725", "0x160", "0x180", - "0xf0b", + "0xf60", "0x1a0", "0x0", - "0xee5" + "0xf3a" ] }, { - "depth": 1, - "gas": 2070616, - "gasCost": 3, + "pc": 3893, "op": "PUSH3", - "pc": 3808, + "gas": 2073292, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -19720,22 +19991,22 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x713", + "0x725", "0x160", "0x180", - "0xf0b", + "0xf60", "0x1a0", "0x0", - "0xee5", + "0xf3a", "0x1a0" ] }, { - "depth": 1, - "gas": 2070613, - "gasCost": 8, + "pc": 3897, "op": "JUMP", - "pc": 3812, + "gas": 2073289, + "gasCost": 8, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -19743,23 +20014,23 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x713", + "0x725", "0x160", "0x180", - "0xf0b", + "0xf60", "0x1a0", "0x0", - "0xee5", + "0xf3a", "0x1a0", - "0xe7a" + "0xecf" ] }, { - "depth": 1, - "gas": 2070605, - "gasCost": 1, + "pc": 3791, "op": "JUMPDEST", - "pc": 3706, + "gas": 2073281, + "gasCost": 1, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -19767,22 +20038,22 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x713", + "0x725", "0x160", "0x180", - "0xf0b", + "0xf60", "0x1a0", "0x0", - "0xee5", + "0xf3a", "0x1a0" ] }, { - "depth": 1, - "gas": 2070604, - "gasCost": 3, + "pc": 3792, "op": "PUSH32", - "pc": 3707, + "gas": 2073280, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -19790,22 +20061,22 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x713", + "0x725", "0x160", "0x180", - "0xf0b", + "0xf60", "0x1a0", "0x0", - "0xee5", + "0xf3a", "0x1a0" ] }, { - "depth": 1, - "gas": 2070601, - "gasCost": 3, + "pc": 3825, "op": "PUSH1", - "pc": 3740, + "gas": 2073277, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -19813,23 +20084,23 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x713", + "0x725", "0x160", "0x180", - "0xf0b", + "0xf60", "0x1a0", "0x0", - "0xee5", + "0xf3a", "0x1a0", "0x45787465726e616c2063616c6c206661696c656420776974686f757420616e20" ] }, { - "depth": 1, - "gas": 2070598, - "gasCost": 3, + "pc": 3827, "op": "DUP3", - "pc": 3742, + "gas": 2073274, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -19837,24 +20108,24 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x713", + "0x725", "0x160", "0x180", - "0xf0b", + "0xf60", "0x1a0", "0x0", - "0xee5", + "0xf3a", "0x1a0", "0x45787465726e616c2063616c6c206661696c656420776974686f757420616e20", "0x0" ] }, { - "depth": 1, - "gas": 2070595, - "gasCost": 3, + "pc": 3828, "op": "ADD", - "pc": 3743, + "gas": 2073271, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -19862,13 +20133,13 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x713", + "0x725", "0x160", "0x180", - "0xf0b", + "0xf60", "0x1a0", "0x0", - "0xee5", + "0xf3a", "0x1a0", "0x45787465726e616c2063616c6c206661696c656420776974686f757420616e20", "0x0", @@ -19876,11 +20147,11 @@ ] }, { - "depth": 1, - "gas": 2070592, - "gasCost": 6, + "pc": 3829, "op": "MSTORE", - "pc": 3744, + "gas": 2073268, + "gasCost": 6, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -19888,24 +20159,24 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x713", + "0x725", "0x160", "0x180", - "0xf0b", + "0xf60", "0x1a0", "0x0", - "0xee5", + "0xf3a", "0x1a0", "0x45787465726e616c2063616c6c206661696c656420776974686f757420616e20", "0x1a0" ] }, { - "depth": 1, - "gas": 2070586, - "gasCost": 3, + "pc": 3830, "op": "PUSH32", - "pc": 3745, + "gas": 2073262, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -19913,22 +20184,22 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x713", + "0x725", "0x160", "0x180", - "0xf0b", + "0xf60", "0x1a0", "0x0", - "0xee5", + "0xf3a", "0x1a0" ] }, { - "depth": 1, - "gas": 2070583, - "gasCost": 3, + "pc": 3863, "op": "PUSH1", - "pc": 3778, + "gas": 2073259, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -19936,23 +20207,23 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x713", + "0x725", "0x160", "0x180", - "0xf0b", + "0xf60", "0x1a0", "0x0", - "0xee5", + "0xf3a", "0x1a0", "0x6572726f72206d65737361676500000000000000000000000000000000000000" ] }, { - "depth": 1, - "gas": 2070580, - "gasCost": 3, + "pc": 3865, "op": "DUP3", - "pc": 3780, + "gas": 2073256, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -19960,24 +20231,24 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x713", + "0x725", "0x160", "0x180", - "0xf0b", + "0xf60", "0x1a0", "0x0", - "0xee5", + "0xf3a", "0x1a0", "0x6572726f72206d65737361676500000000000000000000000000000000000000", "0x20" ] }, { - "depth": 1, - "gas": 2070577, - "gasCost": 3, + "pc": 3866, "op": "ADD", - "pc": 3781, + "gas": 2073253, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -19985,13 +20256,13 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x713", + "0x725", "0x160", "0x180", - "0xf0b", + "0xf60", "0x1a0", "0x0", - "0xee5", + "0xf3a", "0x1a0", "0x6572726f72206d65737361676500000000000000000000000000000000000000", "0x20", @@ -19999,11 +20270,11 @@ ] }, { - "depth": 1, - "gas": 2070574, - "gasCost": 6, + "pc": 3867, "op": "MSTORE", - "pc": 3782, + "gas": 2073250, + "gasCost": 6, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -20011,24 +20282,24 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x713", + "0x725", "0x160", "0x180", - "0xf0b", + "0xf60", "0x1a0", "0x0", - "0xee5", + "0xf3a", "0x1a0", "0x6572726f72206d65737361676500000000000000000000000000000000000000", "0x1c0" ] }, { - "depth": 1, - "gas": 2070568, - "gasCost": 2, + "pc": 3868, "op": "POP", - "pc": 3783, + "gas": 2073244, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -20036,22 +20307,22 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x713", + "0x725", "0x160", "0x180", - "0xf0b", + "0xf60", "0x1a0", "0x0", - "0xee5", + "0xf3a", "0x1a0" ] }, { - "depth": 1, - "gas": 2070566, - "gasCost": 8, + "pc": 3869, "op": "JUMP", - "pc": 3784, + "gas": 2073242, + "gasCost": 8, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -20059,21 +20330,21 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x713", + "0x725", "0x160", "0x180", - "0xf0b", + "0xf60", "0x1a0", "0x0", - "0xee5" + "0xf3a" ] }, { - "depth": 1, - "gas": 2070558, - "gasCost": 1, + "pc": 3898, "op": "JUMPDEST", - "pc": 3813, + "gas": 2073234, + "gasCost": 1, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -20081,20 +20352,20 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x713", + "0x725", "0x160", "0x180", - "0xf0b", + "0xf60", "0x1a0", "0x0" ] }, { - "depth": 1, - "gas": 2070557, - "gasCost": 3, + "pc": 3899, "op": "PUSH1", - "pc": 3814, + "gas": 2073233, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -20102,20 +20373,20 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x713", + "0x725", "0x160", "0x180", - "0xf0b", + "0xf60", "0x1a0", "0x0" ] }, { - "depth": 1, - "gas": 2070554, - "gasCost": 3, + "pc": 3901, "op": "DUP3", - "pc": 3816, + "gas": 2073230, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -20123,21 +20394,21 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x713", + "0x725", "0x160", "0x180", - "0xf0b", + "0xf60", "0x1a0", "0x0", "0x40" ] }, { - "depth": 1, - "gas": 2070551, - "gasCost": 3, + "pc": 3902, "op": "ADD", - "pc": 3817, + "gas": 2073227, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -20145,10 +20416,10 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x713", + "0x725", "0x160", "0x180", - "0xf0b", + "0xf60", "0x1a0", "0x0", "0x40", @@ -20156,11 +20427,11 @@ ] }, { - "depth": 1, - "gas": 2070548, - "gasCost": 3, + "pc": 3903, "op": "SWAP1", - "pc": 3818, + "gas": 2073224, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -20168,21 +20439,21 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x713", + "0x725", "0x160", "0x180", - "0xf0b", + "0xf60", "0x1a0", "0x0", "0x1e0" ] }, { - "depth": 1, - "gas": 2070545, - "gasCost": 2, + "pc": 3904, "op": "POP", - "pc": 3819, + "gas": 2073221, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -20190,21 +20461,21 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x713", + "0x725", "0x160", "0x180", - "0xf0b", + "0xf60", "0x1a0", "0x1e0", "0x0" ] }, { - "depth": 1, - "gas": 2070543, - "gasCost": 3, + "pc": 3905, "op": "SWAP2", - "pc": 3820, + "gas": 2073219, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -20212,20 +20483,20 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x713", + "0x725", "0x160", "0x180", - "0xf0b", + "0xf60", "0x1a0", "0x1e0" ] }, { - "depth": 1, - "gas": 2070540, - "gasCost": 3, + "pc": 3906, "op": "SWAP1", - "pc": 3821, + "gas": 2073216, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -20233,20 +20504,20 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x713", + "0x725", "0x160", "0x180", "0x1e0", "0x1a0", - "0xf0b" + "0xf60" ] }, { - "depth": 1, - "gas": 2070537, - "gasCost": 2, + "pc": 3907, "op": "POP", - "pc": 3822, + "gas": 2073213, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -20254,20 +20525,20 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x713", + "0x725", "0x160", "0x180", "0x1e0", - "0xf0b", + "0xf60", "0x1a0" ] }, { - "depth": 1, - "gas": 2070535, - "gasCost": 8, + "pc": 3908, "op": "JUMP", - "pc": 3823, + "gas": 2073211, + "gasCost": 8, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -20275,19 +20546,19 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x713", + "0x725", "0x160", "0x180", "0x1e0", - "0xf0b" + "0xf60" ] }, { - "depth": 1, - "gas": 2070527, - "gasCost": 1, + "pc": 3936, "op": "JUMPDEST", - "pc": 3851, + "gas": 2073203, + "gasCost": 1, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -20295,18 +20566,18 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x713", + "0x725", "0x160", "0x180", "0x1e0" ] }, { - "depth": 1, - "gas": 2070526, - "gasCost": 3, + "pc": 3937, "op": "SWAP1", - "pc": 3852, + "gas": 2073202, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -20314,18 +20585,18 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x713", + "0x725", "0x160", "0x180", "0x1e0" ] }, { - "depth": 1, - "gas": 2070523, - "gasCost": 2, + "pc": 3938, "op": "POP", - "pc": 3853, + "gas": 2073199, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -20333,18 +20604,18 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x713", + "0x725", "0x160", "0x1e0", "0x180" ] }, { - "depth": 1, - "gas": 2070521, - "gasCost": 3, + "pc": 3939, "op": "SWAP2", - "pc": 3854, + "gas": 2073197, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -20352,17 +20623,17 @@ "0x0", "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", - "0x713", + "0x725", "0x160", "0x1e0" ] }, { - "depth": 1, - "gas": 2070518, - "gasCost": 3, + "pc": 3940, "op": "SWAP1", - "pc": 3855, + "gas": 2073194, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -20372,15 +20643,15 @@ "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", "0x1e0", "0x160", - "0x713" + "0x725" ] }, { - "depth": 1, - "gas": 2070515, - "gasCost": 2, + "pc": 3941, "op": "POP", - "pc": 3856, + "gas": 2073191, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -20389,16 +20660,16 @@ "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", "0x1e0", - "0x713", + "0x725", "0x160" ] }, { - "depth": 1, - "gas": 2070513, - "gasCost": 8, + "pc": 3942, "op": "JUMP", - "pc": 3857, + "gas": 2073189, + "gasCost": 8, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -20407,15 +20678,15 @@ "0xe0", "0x4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a", "0x1e0", - "0x713" + "0x725" ] }, { - "depth": 1, - "gas": 2070505, - "gasCost": 1, + "pc": 1829, "op": "JUMPDEST", - "pc": 1811, + "gas": 2073181, + "gasCost": 1, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -20427,11 +20698,11 @@ ] }, { - "depth": 1, - "gas": 2070504, - "gasCost": 3, + "pc": 1830, "op": "PUSH1", - "pc": 1812, + "gas": 2073180, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -20443,11 +20714,11 @@ ] }, { - "depth": 1, - "gas": 2070501, - "gasCost": 3, + "pc": 1832, "op": "MLOAD", - "pc": 1814, + "gas": 2073177, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -20460,11 +20731,11 @@ ] }, { - "depth": 1, - "gas": 2070498, - "gasCost": 3, + "pc": 1833, "op": "DUP1", - "pc": 1815, + "gas": 2073174, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -20477,11 +20748,11 @@ ] }, { - "depth": 1, - "gas": 2070495, - "gasCost": 3, + "pc": 1834, "op": "SWAP2", - "pc": 1816, + "gas": 2073171, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -20495,11 +20766,11 @@ ] }, { - "depth": 1, - "gas": 2070492, - "gasCost": 3, + "pc": 1835, "op": "SUB", - "pc": 1817, + "gas": 2073168, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -20513,11 +20784,11 @@ ] }, { - "depth": 1, - "gas": 2070489, - "gasCost": 3, + "pc": 1836, "op": "SWAP1", - "pc": 1818, + "gas": 2073165, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -20530,11 +20801,11 @@ ] }, { - "depth": 1, - "gas": 2070486, - "gasCost": 1774, + "pc": 1837, "op": "LOG1", - "pc": 1819, + "gas": 2073162, + "gasCost": 1774, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -20547,11 +20818,11 @@ ] }, { - "depth": 1, - "gas": 2068712, - "gasCost": 2, + "pc": 1838, "op": "POP", - "pc": 1820, + "gas": 2071388, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -20561,11 +20832,11 @@ ] }, { - "depth": 1, - "gas": 2068710, - "gasCost": 1, + "pc": 1839, "op": "JUMPDEST", - "pc": 1821, + "gas": 2071386, + "gasCost": 1, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -20574,11 +20845,11 @@ ] }, { - "depth": 1, - "gas": 2068709, - "gasCost": 3, + "pc": 1840, "op": "PUSH3", - "pc": 1822, + "gas": 2071385, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -20587,25 +20858,25 @@ ] }, { - "depth": 1, - "gas": 2068706, - "gasCost": 8, + "pc": 1844, "op": "JUMP", - "pc": 1826, + "gas": 2071382, + "gasCost": 8, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x724" + "0x736" ] }, { - "depth": 1, - "gas": 2068698, - "gasCost": 1, + "pc": 1846, "op": "JUMPDEST", - "pc": 1828, + "gas": 2071374, + "gasCost": 1, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -20614,11 +20885,11 @@ ] }, { - "depth": 1, - "gas": 2068697, - "gasCost": 3, + "pc": 1847, "op": "PUSH1", - "pc": 1829, + "gas": 2071373, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -20627,11 +20898,11 @@ ] }, { - "depth": 1, - "gas": 2068694, - "gasCost": 3, + "pc": 1849, "op": "PUSH3", - "pc": 1831, + "gas": 2071370, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -20641,26 +20912,26 @@ ] }, { - "depth": 1, - "gas": 2068691, - "gasCost": 10, + "pc": 1853, "op": "JUMPI", - "pc": 1835, + "gas": 2071367, + "gasCost": 10, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", "0x0", - "0x768" + "0x77a" ] }, { - "depth": 1, - "gas": 2068681, - "gasCost": 3, + "pc": 1854, "op": "PUSH1", - "pc": 1836, + "gas": 2071357, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -20669,11 +20940,11 @@ ] }, { - "depth": 1, - "gas": 2068678, - "gasCost": 3, + "pc": 1856, "op": "MLOAD", - "pc": 1838, + "gas": 2071354, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -20683,11 +20954,11 @@ ] }, { - "depth": 1, - "gas": 2068675, - "gasCost": 3, + "pc": 1857, "op": "PUSH32", - "pc": 1839, + "gas": 2071351, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -20697,11 +20968,11 @@ ] }, { - "depth": 1, - "gas": 2068672, - "gasCost": 3, + "pc": 1890, "op": "DUP2", - "pc": 1872, + "gas": 2071348, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -20712,11 +20983,11 @@ ] }, { - "depth": 1, - "gas": 2068669, - "gasCost": 3, + "pc": 1891, "op": "MSTORE", - "pc": 1873, + "gas": 2071345, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -20728,11 +20999,11 @@ ] }, { - "depth": 1, - "gas": 2068666, - "gasCost": 3, + "pc": 1892, "op": "PUSH1", - "pc": 1874, + "gas": 2071342, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -20742,11 +21013,11 @@ ] }, { - "depth": 1, - "gas": 2068663, - "gasCost": 3, + "pc": 1894, "op": "ADD", - "pc": 1876, + "gas": 2071339, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -20757,11 +21028,11 @@ ] }, { - "depth": 1, - "gas": 2068660, - "gasCost": 3, + "pc": 1895, "op": "PUSH3", - "pc": 1877, + "gas": 2071336, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -20771,126 +21042,126 @@ ] }, { - "depth": 1, - "gas": 2068657, - "gasCost": 3, + "pc": 1899, "op": "SWAP1", - "pc": 1881, + "gas": 2071333, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", "0x164", - "0x75f" + "0x771" ] }, { - "depth": 1, - "gas": 2068654, - "gasCost": 3, + "pc": 1900, "op": "PUSH3", - "pc": 1882, + "gas": 2071330, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x75f", + "0x771", "0x164" ] }, { - "depth": 1, - "gas": 2068651, - "gasCost": 8, + "pc": 1904, "op": "JUMP", - "pc": 1886, + "gas": 2071327, + "gasCost": 8, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x75f", + "0x771", "0x164", - "0xf62" + "0xfb7" ] }, { - "depth": 1, - "gas": 2068643, - "gasCost": 1, + "pc": 4023, "op": "JUMPDEST", - "pc": 3938, + "gas": 2071319, + "gasCost": 1, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x75f", + "0x771", "0x164" ] }, { - "depth": 1, - "gas": 2068642, - "gasCost": 3, + "pc": 4024, "op": "PUSH1", - "pc": 3939, + "gas": 2071318, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x75f", + "0x771", "0x164" ] }, { - "depth": 1, - "gas": 2068639, - "gasCost": 3, + "pc": 4026, "op": "PUSH1", - "pc": 3941, + "gas": 2071315, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x75f", + "0x771", "0x164", "0x0" ] }, { - "depth": 1, - "gas": 2068636, - "gasCost": 3, + "pc": 4028, "op": "DUP3", - "pc": 3943, + "gas": 2071312, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x75f", + "0x771", "0x164", "0x0", "0x20" ] }, { - "depth": 1, - "gas": 2068633, - "gasCost": 3, + "pc": 4029, "op": "ADD", - "pc": 3944, + "gas": 2071309, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x75f", + "0x771", "0x164", "0x0", "0x20", @@ -20898,84 +21169,84 @@ ] }, { - "depth": 1, - "gas": 2068630, - "gasCost": 3, + "pc": 4030, "op": "SWAP1", - "pc": 3945, + "gas": 2071306, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x75f", + "0x771", "0x164", "0x0", "0x184" ] }, { - "depth": 1, - "gas": 2068627, - "gasCost": 2, + "pc": 4031, "op": "POP", - "pc": 3946, + "gas": 2071303, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x75f", + "0x771", "0x164", "0x184", "0x0" ] }, { - "depth": 1, - "gas": 2068625, - "gasCost": 3, + "pc": 4032, "op": "DUP2", - "pc": 3947, + "gas": 2071301, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x75f", + "0x771", "0x164", "0x184" ] }, { - "depth": 1, - "gas": 2068622, - "gasCost": 3, + "pc": 4033, "op": "DUP2", - "pc": 3948, + "gas": 2071298, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x75f", + "0x771", "0x164", "0x184", "0x164" ] }, { - "depth": 1, - "gas": 2068619, - "gasCost": 3, + "pc": 4034, "op": "SUB", - "pc": 3949, + "gas": 2071295, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x75f", + "0x771", "0x164", "0x184", "0x164", @@ -20983,34 +21254,34 @@ ] }, { - "depth": 1, - "gas": 2068616, - "gasCost": 3, + "pc": 4035, "op": "PUSH1", - "pc": 3950, + "gas": 2071292, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x75f", + "0x771", "0x164", "0x184", "0x20" ] }, { - "depth": 1, - "gas": 2068613, - "gasCost": 3, + "pc": 4037, "op": "DUP4", - "pc": 3952, + "gas": 2071289, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x75f", + "0x771", "0x164", "0x184", "0x20", @@ -21018,17 +21289,17 @@ ] }, { - "depth": 1, - "gas": 2068610, - "gasCost": 3, + "pc": 4038, "op": "ADD", - "pc": 3953, + "gas": 2071286, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x75f", + "0x771", "0x164", "0x184", "0x20", @@ -21037,17 +21308,17 @@ ] }, { - "depth": 1, - "gas": 2068607, - "gasCost": 3, + "pc": 4039, "op": "MSTORE", - "pc": 3954, + "gas": 2071283, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x75f", + "0x771", "0x164", "0x184", "0x20", @@ -21055,301 +21326,301 @@ ] }, { - "depth": 1, - "gas": 2068604, - "gasCost": 3, + "pc": 4040, "op": "PUSH3", - "pc": 3955, + "gas": 2071280, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x75f", + "0x771", "0x164", "0x184" ] }, { - "depth": 1, - "gas": 2068601, - "gasCost": 3, + "pc": 4044, "op": "DUP2", - "pc": 3959, + "gas": 2071277, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x75f", + "0x771", "0x164", "0x184", - "0xf7d" + "0xfd2" ] }, { - "depth": 1, - "gas": 2068598, - "gasCost": 3, + "pc": 4045, "op": "PUSH3", - "pc": 3960, + "gas": 2071274, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x75f", + "0x771", "0x164", "0x184", - "0xf7d", + "0xfd2", "0x184" ] }, { - "depth": 1, - "gas": 2068595, - "gasCost": 8, + "pc": 4049, "op": "JUMP", - "pc": 3964, + "gas": 2071271, + "gasCost": 8, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x75f", + "0x771", "0x164", "0x184", - "0xf7d", + "0xfd2", "0x184", - "0xf3b" + "0xf90" ] }, { - "depth": 1, - "gas": 2068587, - "gasCost": 1, + "pc": 3984, "op": "JUMPDEST", - "pc": 3899, + "gas": 2071263, + "gasCost": 1, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x75f", + "0x771", "0x164", "0x184", - "0xf7d", + "0xfd2", "0x184" ] }, { - "depth": 1, - "gas": 2068586, - "gasCost": 3, + "pc": 3985, "op": "PUSH1", - "pc": 3900, + "gas": 2071262, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x75f", + "0x771", "0x164", "0x184", - "0xf7d", + "0xfd2", "0x184" ] }, { - "depth": 1, - "gas": 2068583, - "gasCost": 3, + "pc": 3987, "op": "PUSH3", - "pc": 3902, + "gas": 2071259, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x75f", + "0x771", "0x164", "0x184", - "0xf7d", + "0xfd2", "0x184", "0x0" ] }, { - "depth": 1, - "gas": 2068580, - "gasCost": 3, + "pc": 3991, "op": "PUSH1", - "pc": 3906, + "gas": 2071256, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x75f", + "0x771", "0x164", "0x184", - "0xf7d", + "0xfd2", "0x184", "0x0", - "0xf4a" + "0xf9f" ] }, { - "depth": 1, - "gas": 2068577, - "gasCost": 3, + "pc": 3993, "op": "DUP4", - "pc": 3908, + "gas": 2071253, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x75f", + "0x771", "0x164", "0x184", - "0xf7d", + "0xfd2", "0x184", "0x0", - "0xf4a", + "0xf9f", "0x14" ] }, { - "depth": 1, - "gas": 2068574, - "gasCost": 3, + "pc": 3994, "op": "PUSH3", - "pc": 3909, + "gas": 2071250, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x75f", + "0x771", "0x164", "0x184", - "0xf7d", + "0xfd2", "0x184", "0x0", - "0xf4a", + "0xf9f", "0x14", "0x184" ] }, { - "depth": 1, - "gas": 2068571, - "gasCost": 8, + "pc": 3998, "op": "JUMP", - "pc": 3913, + "gas": 2071247, + "gasCost": 8, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x75f", + "0x771", "0x164", "0x184", - "0xf7d", + "0xfd2", "0x184", "0x0", - "0xf4a", + "0xf9f", "0x14", "0x184", - "0xad3" + "0xaf5" ] }, { - "depth": 1, - "gas": 2068563, - "gasCost": 1, + "pc": 2805, "op": "JUMPDEST", - "pc": 2771, + "gas": 2071239, + "gasCost": 1, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x75f", + "0x771", "0x164", "0x184", - "0xf7d", + "0xfd2", "0x184", "0x0", - "0xf4a", + "0xf9f", "0x14", "0x184" ] }, { - "depth": 1, - "gas": 2068562, - "gasCost": 3, + "pc": 2806, "op": "PUSH1", - "pc": 2772, + "gas": 2071238, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x75f", + "0x771", "0x164", "0x184", - "0xf7d", + "0xfd2", "0x184", "0x0", - "0xf4a", + "0xf9f", "0x14", "0x184" ] }, { - "depth": 1, - "gas": 2068559, - "gasCost": 3, + "pc": 2808, "op": "DUP3", - "pc": 2774, + "gas": 2071235, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x75f", + "0x771", "0x164", "0x184", - "0xf7d", + "0xfd2", "0x184", "0x0", - "0xf4a", + "0xf9f", "0x14", "0x184", "0x0" ] }, { - "depth": 1, - "gas": 2068556, - "gasCost": 3, + "pc": 2809, "op": "DUP3", - "pc": 2775, + "gas": 2071232, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x75f", + "0x771", "0x164", "0x184", - "0xf7d", + "0xfd2", "0x184", "0x0", - "0xf4a", + "0xf9f", "0x14", "0x184", "0x0", @@ -21357,23 +21628,23 @@ ] }, { - "depth": 1, - "gas": 2068553, - "gasCost": 3, + "pc": 2810, "op": "MSTORE", - "pc": 2776, + "gas": 2071229, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x75f", + "0x771", "0x164", "0x184", - "0xf7d", + "0xfd2", "0x184", "0x0", - "0xf4a", + "0xf9f", "0x14", "0x184", "0x0", @@ -21382,46 +21653,46 @@ ] }, { - "depth": 1, - "gas": 2068550, - "gasCost": 3, + "pc": 2811, "op": "PUSH1", - "pc": 2777, + "gas": 2071226, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x75f", + "0x771", "0x164", "0x184", - "0xf7d", + "0xfd2", "0x184", "0x0", - "0xf4a", + "0xf9f", "0x14", "0x184", "0x0" ] }, { - "depth": 1, - "gas": 2068547, - "gasCost": 3, + "pc": 2813, "op": "DUP3", - "pc": 2779, + "gas": 2071223, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x75f", + "0x771", "0x164", "0x184", - "0xf7d", + "0xfd2", "0x184", "0x0", - "0xf4a", + "0xf9f", "0x14", "0x184", "0x0", @@ -21429,23 +21700,23 @@ ] }, { - "depth": 1, - "gas": 2068544, - "gasCost": 3, + "pc": 2814, "op": "ADD", - "pc": 2780, + "gas": 2071220, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x75f", + "0x771", "0x164", "0x184", - "0xf7d", + "0xfd2", "0x184", "0x0", - "0xf4a", + "0xf9f", "0x14", "0x184", "0x0", @@ -21454,23 +21725,23 @@ ] }, { - "depth": 1, - "gas": 2068541, - "gasCost": 3, + "pc": 2815, "op": "SWAP1", - "pc": 2781, + "gas": 2071217, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x75f", + "0x771", "0x164", "0x184", - "0xf7d", + "0xfd2", "0x184", "0x0", - "0xf4a", + "0xf9f", "0x14", "0x184", "0x0", @@ -21478,23 +21749,23 @@ ] }, { - "depth": 1, - "gas": 2068538, - "gasCost": 2, + "pc": 2816, "op": "POP", - "pc": 2782, + "gas": 2071214, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x75f", + "0x771", "0x164", "0x184", - "0xf7d", + "0xfd2", "0x184", "0x0", - "0xf4a", + "0xf9f", "0x14", "0x184", "0x1a4", @@ -21502,364 +21773,364 @@ ] }, { - "depth": 1, - "gas": 2068536, - "gasCost": 3, + "pc": 2817, "op": "SWAP3", - "pc": 2783, + "gas": 2071212, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x75f", + "0x771", "0x164", "0x184", - "0xf7d", + "0xfd2", "0x184", "0x0", - "0xf4a", + "0xf9f", "0x14", "0x184", "0x1a4" ] }, { - "depth": 1, - "gas": 2068533, - "gasCost": 3, + "pc": 2818, "op": "SWAP2", - "pc": 2784, + "gas": 2071209, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x75f", + "0x771", "0x164", "0x184", - "0xf7d", + "0xfd2", "0x184", "0x0", "0x1a4", "0x14", "0x184", - "0xf4a" + "0xf9f" ] }, { - "depth": 1, - "gas": 2068530, - "gasCost": 2, + "pc": 2819, "op": "POP", - "pc": 2785, + "gas": 2071206, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x75f", + "0x771", "0x164", "0x184", - "0xf7d", + "0xfd2", "0x184", "0x0", "0x1a4", - "0xf4a", + "0xf9f", "0x184", "0x14" ] }, { - "depth": 1, - "gas": 2068528, - "gasCost": 2, + "pc": 2820, "op": "POP", - "pc": 2786, + "gas": 2071204, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x75f", + "0x771", "0x164", "0x184", - "0xf7d", + "0xfd2", "0x184", "0x0", "0x1a4", - "0xf4a", + "0xf9f", "0x184" ] }, { - "depth": 1, - "gas": 2068526, - "gasCost": 8, + "pc": 2821, "op": "JUMP", - "pc": 2787, + "gas": 2071202, + "gasCost": 8, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x75f", + "0x771", "0x164", "0x184", - "0xf7d", + "0xfd2", "0x184", "0x0", "0x1a4", - "0xf4a" + "0xf9f" ] }, { - "depth": 1, - "gas": 2068518, - "gasCost": 1, + "pc": 3999, "op": "JUMPDEST", - "pc": 3914, + "gas": 2071194, + "gasCost": 1, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x75f", + "0x771", "0x164", "0x184", - "0xf7d", + "0xfd2", "0x184", "0x0", "0x1a4" ] }, { - "depth": 1, - "gas": 2068517, - "gasCost": 3, + "pc": 4000, "op": "SWAP2", - "pc": 3915, + "gas": 2071193, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x75f", + "0x771", "0x164", "0x184", - "0xf7d", + "0xfd2", "0x184", "0x0", "0x1a4" ] }, { - "depth": 1, - "gas": 2068514, - "gasCost": 2, + "pc": 4001, "op": "POP", - "pc": 3916, + "gas": 2071190, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x75f", + "0x771", "0x164", "0x184", - "0xf7d", + "0xfd2", "0x1a4", "0x0", "0x184" ] }, { - "depth": 1, - "gas": 2068512, - "gasCost": 3, + "pc": 4002, "op": "PUSH3", - "pc": 3917, + "gas": 2071188, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x75f", + "0x771", "0x164", "0x184", - "0xf7d", + "0xfd2", "0x1a4", "0x0" ] }, { - "depth": 1, - "gas": 2068509, - "gasCost": 3, + "pc": 4006, "op": "DUP3", - "pc": 3921, + "gas": 2071185, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x75f", + "0x771", "0x164", "0x184", - "0xf7d", + "0xfd2", "0x1a4", "0x0", - "0xf57" + "0xfac" ] }, { - "depth": 1, - "gas": 2068506, - "gasCost": 3, + "pc": 4007, "op": "PUSH3", - "pc": 3922, + "gas": 2071182, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x75f", + "0x771", "0x164", "0x184", - "0xf7d", + "0xfd2", "0x1a4", "0x0", - "0xf57", + "0xfac", "0x1a4" ] }, { - "depth": 1, - "gas": 2068503, - "gasCost": 8, + "pc": 4011, "op": "JUMP", - "pc": 3926, + "gas": 2071179, + "gasCost": 8, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x75f", + "0x771", "0x164", "0x184", - "0xf7d", + "0xfd2", "0x1a4", "0x0", - "0xf57", + "0xfac", "0x1a4", - "0xf12" + "0xf67" ] }, { - "depth": 1, - "gas": 2068495, - "gasCost": 1, + "pc": 3943, "op": "JUMPDEST", - "pc": 3858, + "gas": 2071171, + "gasCost": 1, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x75f", + "0x771", "0x164", "0x184", - "0xf7d", + "0xfd2", "0x1a4", "0x0", - "0xf57", + "0xfac", "0x1a4" ] }, { - "depth": 1, - "gas": 2068494, - "gasCost": 3, + "pc": 3944, "op": "PUSH32", - "pc": 3859, + "gas": 2071170, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x75f", + "0x771", "0x164", "0x184", - "0xf7d", + "0xfd2", "0x1a4", "0x0", - "0xf57", + "0xfac", "0x1a4" ] }, { - "depth": 1, - "gas": 2068491, - "gasCost": 3, + "pc": 3977, "op": "PUSH1", - "pc": 3892, + "gas": 2071167, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x75f", + "0x771", "0x164", "0x184", - "0xf7d", + "0xfd2", "0x1a4", "0x0", - "0xf57", + "0xfac", "0x1a4", "0x494e53554646494349454e542042414c414e4345000000000000000000000000" ] }, { - "depth": 1, - "gas": 2068488, - "gasCost": 3, + "pc": 3979, "op": "DUP3", - "pc": 3894, + "gas": 2071164, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x75f", + "0x771", "0x164", "0x184", - "0xf7d", + "0xfd2", "0x1a4", "0x0", - "0xf57", + "0xfac", "0x1a4", "0x494e53554646494349454e542042414c414e4345000000000000000000000000", "0x0" ] }, { - "depth": 1, - "gas": 2068485, - "gasCost": 3, + "pc": 3980, "op": "ADD", - "pc": 3895, + "gas": 2071161, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x75f", + "0x771", "0x164", "0x184", - "0xf7d", + "0xfd2", "0x1a4", "0x0", - "0xf57", + "0xfac", "0x1a4", "0x494e53554646494349454e542042414c414e4345000000000000000000000000", "0x0", @@ -21867,142 +22138,142 @@ ] }, { - "depth": 1, - "gas": 2068482, - "gasCost": 3, + "pc": 3981, "op": "MSTORE", - "pc": 3896, + "gas": 2071158, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x75f", + "0x771", "0x164", "0x184", - "0xf7d", + "0xfd2", "0x1a4", "0x0", - "0xf57", + "0xfac", "0x1a4", "0x494e53554646494349454e542042414c414e4345000000000000000000000000", "0x1a4" ] }, { - "depth": 1, - "gas": 2068479, - "gasCost": 2, + "pc": 3982, "op": "POP", - "pc": 3897, + "gas": 2071155, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x75f", + "0x771", "0x164", "0x184", - "0xf7d", + "0xfd2", "0x1a4", "0x0", - "0xf57", + "0xfac", "0x1a4" ] }, { - "depth": 1, - "gas": 2068477, - "gasCost": 8, + "pc": 3983, "op": "JUMP", - "pc": 3898, + "gas": 2071153, + "gasCost": 8, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x75f", + "0x771", "0x164", "0x184", - "0xf7d", + "0xfd2", "0x1a4", "0x0", - "0xf57" + "0xfac" ] }, { - "depth": 1, - "gas": 2068469, - "gasCost": 1, + "pc": 4012, "op": "JUMPDEST", - "pc": 3927, + "gas": 2071145, + "gasCost": 1, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x75f", + "0x771", "0x164", "0x184", - "0xf7d", + "0xfd2", "0x1a4", "0x0" ] }, { - "depth": 1, - "gas": 2068468, - "gasCost": 3, + "pc": 4013, "op": "PUSH1", - "pc": 3928, + "gas": 2071144, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x75f", + "0x771", "0x164", "0x184", - "0xf7d", + "0xfd2", "0x1a4", "0x0" ] }, { - "depth": 1, - "gas": 2068465, - "gasCost": 3, + "pc": 4015, "op": "DUP3", - "pc": 3930, + "gas": 2071141, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x75f", + "0x771", "0x164", "0x184", - "0xf7d", + "0xfd2", "0x1a4", "0x0", "0x20" ] }, { - "depth": 1, - "gas": 2068462, - "gasCost": 3, + "pc": 4016, "op": "ADD", - "pc": 3931, + "gas": 2071138, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x75f", + "0x771", "0x164", "0x184", - "0xf7d", + "0xfd2", "0x1a4", "0x0", "0x20", @@ -22010,193 +22281,193 @@ ] }, { - "depth": 1, - "gas": 2068459, - "gasCost": 3, + "pc": 4017, "op": "SWAP1", - "pc": 3932, + "gas": 2071135, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x75f", + "0x771", "0x164", "0x184", - "0xf7d", + "0xfd2", "0x1a4", "0x0", "0x1c4" ] }, { - "depth": 1, - "gas": 2068456, - "gasCost": 2, + "pc": 4018, "op": "POP", - "pc": 3933, + "gas": 2071132, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x75f", + "0x771", "0x164", "0x184", - "0xf7d", + "0xfd2", "0x1a4", "0x1c4", "0x0" ] }, { - "depth": 1, - "gas": 2068454, - "gasCost": 3, + "pc": 4019, "op": "SWAP2", - "pc": 3934, + "gas": 2071130, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x75f", + "0x771", "0x164", "0x184", - "0xf7d", + "0xfd2", "0x1a4", "0x1c4" ] }, { - "depth": 1, - "gas": 2068451, - "gasCost": 3, + "pc": 4020, "op": "SWAP1", - "pc": 3935, + "gas": 2071127, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x75f", + "0x771", "0x164", "0x184", "0x1c4", "0x1a4", - "0xf7d" + "0xfd2" ] }, { - "depth": 1, - "gas": 2068448, - "gasCost": 2, + "pc": 4021, "op": "POP", - "pc": 3936, + "gas": 2071124, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x75f", + "0x771", "0x164", "0x184", "0x1c4", - "0xf7d", + "0xfd2", "0x1a4" ] }, { - "depth": 1, - "gas": 2068446, - "gasCost": 8, + "pc": 4022, "op": "JUMP", - "pc": 3937, + "gas": 2071122, + "gasCost": 8, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x75f", + "0x771", "0x164", "0x184", "0x1c4", - "0xf7d" + "0xfd2" ] }, { - "depth": 1, - "gas": 2068438, - "gasCost": 1, + "pc": 4050, "op": "JUMPDEST", - "pc": 3965, + "gas": 2071114, + "gasCost": 1, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x75f", + "0x771", "0x164", "0x184", "0x1c4" ] }, { - "depth": 1, - "gas": 2068437, - "gasCost": 3, + "pc": 4051, "op": "SWAP1", - "pc": 3966, + "gas": 2071113, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x75f", + "0x771", "0x164", "0x184", "0x1c4" ] }, { - "depth": 1, - "gas": 2068434, - "gasCost": 2, + "pc": 4052, "op": "POP", - "pc": 3967, + "gas": 2071110, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x75f", + "0x771", "0x164", "0x1c4", "0x184" ] }, { - "depth": 1, - "gas": 2068432, - "gasCost": 3, + "pc": 4053, "op": "SWAP2", - "pc": 3968, + "gas": 2071108, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", - "0x75f", + "0x771", "0x164", "0x1c4" ] }, { - "depth": 1, - "gas": 2068429, - "gasCost": 3, + "pc": 4054, "op": "SWAP1", - "pc": 3969, + "gas": 2071105, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -22204,46 +22475,46 @@ "0x0", "0x1c4", "0x164", - "0x75f" + "0x771" ] }, { - "depth": 1, - "gas": 2068426, - "gasCost": 2, + "pc": 4055, "op": "POP", - "pc": 3970, + "gas": 2071102, + "gasCost": 2, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", "0x1c4", - "0x75f", + "0x771", "0x164" ] }, { - "depth": 1, - "gas": 2068424, - "gasCost": 8, + "pc": 4056, "op": "JUMP", - "pc": 3971, + "gas": 2071100, + "gasCost": 8, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", "0x3e8", "0x0", "0x1c4", - "0x75f" + "0x771" ] }, { - "depth": 1, - "gas": 2068416, - "gasCost": 1, + "pc": 1905, "op": "JUMPDEST", - "pc": 1887, + "gas": 2071092, + "gasCost": 1, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -22253,11 +22524,11 @@ ] }, { - "depth": 1, - "gas": 2068415, - "gasCost": 3, + "pc": 1906, "op": "PUSH1", - "pc": 1888, + "gas": 2071091, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -22267,11 +22538,11 @@ ] }, { - "depth": 1, - "gas": 2068412, - "gasCost": 3, + "pc": 1908, "op": "MLOAD", - "pc": 1890, + "gas": 2071088, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -22282,11 +22553,11 @@ ] }, { - "depth": 1, - "gas": 2068409, - "gasCost": 3, + "pc": 1909, "op": "DUP1", - "pc": 1891, + "gas": 2071085, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -22297,11 +22568,11 @@ ] }, { - "depth": 1, - "gas": 2068406, - "gasCost": 3, + "pc": 1910, "op": "SWAP2", - "pc": 1892, + "gas": 2071082, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -22313,11 +22584,11 @@ ] }, { - "depth": 1, - "gas": 2068403, - "gasCost": 3, + "pc": 1911, "op": "SUB", - "pc": 1893, + "gas": 2071079, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -22329,11 +22600,11 @@ ] }, { - "depth": 1, - "gas": 2068400, - "gasCost": 3, + "pc": 1912, "op": "SWAP1", - "pc": 1894, + "gas": 2071076, + "gasCost": 3, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", @@ -22344,11 +22615,11 @@ ] }, { - "depth": 1, - "gas": 2068397, - "gasCost": 0, + "pc": 1913, "op": "REVERT", - "pc": 1895, + "gas": 2071073, + "gasCost": 0, + "depth": 1, "stack": [ "0x7f29c394", "0x17f", diff --git a/test/historicstate/hardhat/scripts/geth_traces/Tracer.readableRevert.prestateDiffTracer.json b/test/historicstate/hardhat/scripts/geth_traces/Tracer.readableRevert.prestateDiffTracer.json index 7d33b79ee..adb54205d 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/Tracer.readableRevert.prestateDiffTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/Tracer.readableRevert.prestateDiffTracer.json @@ -1,20 +1,20 @@ { "post": { "0x0000000000000000000000000000000000000000": { - "balance": "0xbc5e59e0" + "balance": "0x1bf279a" }, "OWNER.address": { - "balance": "0xc9f2c9ccfd8d27dc4a60ba620", - "nonce": 363 + "balance": "0x360ee5cfde418e129e", + "nonce": 84 } }, "pre": { "0x0000000000000000000000000000000000000000": { - "balance": "0x0" + "balance": "0x1beb69b" }, "OWNER.address": { - "balance": "0xc9f2c9ccfd8d27dc5626a0000", - "nonce": 362 + "balance": "0x360ee5cfde69ec5c29", + "nonce": 83 } } } \ No newline at end of file diff --git a/test/historicstate/hardhat/scripts/geth_traces/Tracer.readableRevert.prestateTracer.json b/test/historicstate/hardhat/scripts/geth_traces/Tracer.readableRevert.prestateTracer.json index 00f2d4573..dac71a96a 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/Tracer.readableRevert.prestateTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/Tracer.readableRevert.prestateTracer.json @@ -1,14 +1,14 @@ { "0x0000000000000000000000000000000000000000": { - "balance": "0x0" + "balance": "0x1beb69b" }, "OWNER.address": { - "balance": "0xc9f2c9ccfd8d27dc5626a0000", - "nonce": 362 + "balance": "0x360ee5cfde69ec5c29", + "nonce": 83 }, "Tracer.address": { "balance": "0x0", - "code": "0x60806040523480156200001157600080fd5b5060043610620000ac5760003560e01c80638bfe44ff116200006f5780638bfe44ff14620001975780639295436214620001a3578063a0712d6814620001af578063b69ef8a814620001e5578063c9353cb5146200020757620000ac565b806312065fe014620000b15780631c71706914620000d35780631c93908c14620000f55780633aa18088146200012b5780637f29c3941462000161575b600080fd5b620000bb62000227565b604051620000ca919062000975565b60405180910390f35b620000dd62000231565b604051620000ec9190620009ad565b60405180910390f35b6200011360048036038101906200010d919062000a0a565b62000280565b60405162000122919062000975565b60405180910390f35b62000149600480360381019062000143919062000a0a565b620002f6565b60405162000158919062000975565b60405180910390f35b6200017f600480360381019062000179919062000a0a565b6200049e565b6040516200018e919062000975565b60405180910390f35b620001a162000771565b005b620001ad620007b3565b005b620001cd6004803603810190620001c7919062000a0a565b620007f0565b604051620001dc919062000975565b60405180910390f35b620001ef6200092d565b604051620001fe919062000975565b60405180910390f35b6200022560048036038101906200021f919062000aa1565b62000933565b005b6000600154905090565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620002ca919062000b34565b60405180910390a28160036000828254620002e6919062000b95565b9250508190555060029050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405162000340919062000c20565b60405180910390a260405162000356906200094c565b604051809103906000f08015801562000373573d6000803e3d6000fd5b506000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508160016000828254620003c7919062000b95565b92505081905550620003e7600183620003e1919062000b95565b62000280565b50620003f262000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b81526004016200044e919062000975565b6020604051808303816000875af11580156200046e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000494919062000c69565b5060019050919050565b60003073ffffffffffffffffffffffffffffffffffffffff1663929543626040518163ffffffff1660e01b815260040160006040518083038186803b158015620004e757600080fd5b505afa925050508015620004f9575060015b620005e1576200050862000ca8565b806308c379a0036200056c57506200051f62000d43565b806200052c57506200056e565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a816040516200055d919062000e56565b60405180910390a150620005db565b505b3d80600081146200059c576040519150601f19603f3d011682016040523d82523d6000602084013e620005a1565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620005d19062000ef0565b60405180910390a1505b620005e2565b5b3073ffffffffffffffffffffffffffffffffffffffff16638bfe44ff6040518163ffffffff1660e01b815260040160006040518083038186803b1580156200062957600080fd5b505afa9250505080156200063b575060015b62000723576200064a62000ca8565b806308c379a003620006ae57506200066162000d43565b806200066e5750620006b0565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a816040516200069f919062000e56565b60405180910390a1506200071d565b505b3d8060008114620006de576040519150601f19603f3d011682016040523d82523d6000602084013e620006e3565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620007139062000ef0565b60405180910390a1505b62000724565b5b600062000768576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200075f9062000f62565b60405180910390fd5b60019050919050565b6001806040517fcf479181000000000000000000000000000000000000000000000000000000008152600401620007aa92919062000fd1565b60405180910390fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007e7906200104e565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200083a919062000c20565b60405180910390a2816001600082825462000856919062000b95565b925050819055506200087660018362000870919062000b95565b62000280565b506200088162000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b8152600401620008dd919062000975565b6020604051808303816000875af1158015620008fd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000923919062000c69565b5060019050919050565b60015481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b610a9f806200107183390190565b6000819050919050565b6200096f816200095a565b82525050565b60006020820190506200098c600083018462000964565b92915050565b6000819050919050565b620009a78162000992565b82525050565b6000602082019050620009c460008301846200099c565b92915050565b6000604051905090565b600080fd5b620009e4816200095a565b8114620009f057600080fd5b50565b60008135905062000a0481620009d9565b92915050565b60006020828403121562000a235762000a22620009d4565b5b600062000a3384828501620009f3565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000a698262000a3c565b9050919050565b62000a7b8162000a5c565b811462000a8757600080fd5b50565b60008135905062000a9b8162000a70565b92915050565b60006020828403121562000aba5762000ab9620009d4565b5b600062000aca8482850162000a8a565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000b1c600e8362000ad3565b915062000b298262000ae4565b602082019050919050565b600060408201905062000b4b600083018462000964565b818103602083015262000b5e8162000b0d565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000ba2826200095a565b915062000baf836200095a565b925082820190508082111562000bca5762000bc962000b66565b5b92915050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b600062000c0860058362000ad3565b915062000c158262000bd0565b602082019050919050565b600060408201905062000c37600083018462000964565b818103602083015262000c4a8162000bf9565b905092915050565b60008151905062000c6381620009d9565b92915050565b60006020828403121562000c825762000c81620009d4565b5b600062000c928482850162000c52565b91505092915050565b60008160e01c9050919050565b600060033d111562000cca5760046000803e62000cc760005162000c9b565b90505b90565b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000d188262000ccd565b810181811067ffffffffffffffff8211171562000d3a5762000d3962000cde565b5b80604052505050565b600060443d1062000ddb5762000d58620009ca565b60043d036004823e80513d602482011167ffffffffffffffff8211171562000d8257505062000ddb565b808201805167ffffffffffffffff81111562000da2575050505062000ddb565b80602083010160043d03850181111562000dc157505050505062000ddb565b62000dd28260200185018662000d0d565b82955050505050505b90565b600081519050919050565b60005b8381101562000e0957808201518184015260208101905062000dec565b60008484015250505050565b600062000e228262000dde565b62000e2e818562000ad3565b935062000e4081856020860162000de9565b62000e4b8162000ccd565b840191505092915050565b6000602082019050818103600083015262000e72818462000e15565b905092915050565b7f45787465726e616c2063616c6c206661696c656420776974686f757420616e2060008201527f6572726f72206d65737361676500000000000000000000000000000000000000602082015250565b600062000ed8602d8362000ad3565b915062000ee58262000e7a565b604082019050919050565b6000602082019050818103600083015262000f0b8162000ec9565b9050919050565b7f494e53554646494349454e542042414c414e4345000000000000000000000000600082015250565b600062000f4a60148362000ad3565b915062000f578262000f12565b602082019050919050565b6000602082019050818103600083015262000f7d8162000f3b565b9050919050565b6000819050919050565b6000819050919050565b600062000fb962000fb362000fad8462000f84565b62000f8e565b6200095a565b9050919050565b62000fcb8162000f98565b82525050565b600060408201905062000fe8600083018562000fc0565b62000ff7602083018462000fc0565b9392505050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b60006200103660178362000ad3565b9150620010438262000ffe565b602082019050919050565b60006020820190508181036000830152620010698162001027565b905091905056fe60806040526000600160006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b50600160009054906101000a900460ff161562000080576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200007790620002b5565b60405180910390fd5b60018060006101000a81548160ff021916908315150217905550620000bc701d6329f1c35ca4bfabb9f5610000000000620000c360201b60201c565b5062000460565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200010d919062000342565b60405180910390a281600080828254620001289190620003a3565b925050819055506200014e600183620001429190620003a3565b6200016960201b60201c565b506200015f620001df60201b60201c565b5060019050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620001b391906200042e565b60405180910390a28160026000828254620001cf9190620003a3565b9250508190555060029050919050565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b600082825260208201905092915050565b7f436f6e747261637420696e7374616e63652068617320616c726561647920626560008201527f656e20696e697469616c697a6564000000000000000000000000000000000000602082015250565b60006200029d602e836200022e565b9150620002aa826200023f565b604082019050919050565b60006020820190508181036000830152620002d0816200028e565b9050919050565b6000819050919050565b620002ec81620002d7565b82525050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006200032a6005836200022e565b91506200033782620002f2565b602082019050919050565b6000604082019050620003596000830184620002e1565b81810360208301526200036c816200031b565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620003b082620002d7565b9150620003bd83620002d7565b9250828201905080821115620003d857620003d762000374565b5b92915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000416600e836200022e565b91506200042382620003de565b602082019050919050565b6000604082019050620004456000830184620002e1565b8181036020830152620004588162000407565b905092915050565b61062f80620004706000396000f3fe608060405234801561001057600080fd5b50600436106100625760003560e01c80631c717069146100675780631c93908c1461008557806392954362146100b5578063a0712d68146100bf578063b69ef8a8146100ef578063c9353cb51461010d575b600080fd5b61006f610129565b60405161007c91906102ed565b60405180910390f35b61009f600480360381019061009a9190610343565b610178565b6040516100ac919061037f565b60405180910390f35b6100bd6101ea565b005b6100d960048036038101906100d49190610343565b610225565b6040516100e6919061037f565b60405180910390f35b6100f76102b5565b604051610104919061037f565b60405180910390f35b610127600480360381019061012291906103f8565b6102bb565b005b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516101c09190610482565b60405180910390a281600260008282546101da91906104df565b9250508190555060029050919050565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161021c9061055f565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405161026d91906105cb565b60405180910390a28160008082825461028691906104df565b925050819055506102a260018361029d91906104df565b610178565b506102ab610129565b5060019050919050565b60005481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b6000819050919050565b6102e7816102d4565b82525050565b600060208201905061030260008301846102de565b92915050565b600080fd5b6000819050919050565b6103208161030d565b811461032b57600080fd5b50565b60008135905061033d81610317565b92915050565b60006020828403121561035957610358610308565b5b60006103678482850161032e565b91505092915050565b6103798161030d565b82525050565b60006020820190506103946000830184610370565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006103c58261039a565b9050919050565b6103d5816103ba565b81146103e057600080fd5b50565b6000813590506103f2816103cc565b92915050565b60006020828403121561040e5761040d610308565b5b600061041c848285016103e3565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600061046c600e83610425565b915061047782610436565b602082019050919050565b60006040820190506104976000830184610370565b81810360208301526104a88161045f565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006104ea8261030d565b91506104f58361030d565b925082820190508082111561050d5761050c6104b0565b5b92915050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b6000610549601783610425565b915061055482610513565b602082019050919050565b600060208201905081810360008301526105788161053c565b9050919050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006105b5600583610425565b91506105c08261057f565b602082019050919050565b60006040820190506105e06000830184610370565b81810360208301526105f1816105a8565b90509291505056fea26469706673582212202a0a0fa5842e91cc0c1e5b645f7286aad7193a83c3b2f8c8e4c1b35008af0d6f64736f6c63430008140033a264697066735822122036f326b9881542090544d5d6e9f2ff18b13ec09bd4994f14891a84e97f4d6db964736f6c63430008140033", + "code": "0x60806040523480156200001157600080fd5b5060043610620000ac5760003560e01c80638bfe44ff116200006f5780638bfe44ff14620001975780639295436214620001a3578063a0712d6814620001af578063b69ef8a814620001e5578063c9353cb5146200020757620000ac565b806312065fe014620000b15780631c71706914620000d35780631c93908c14620000f55780633aa18088146200012b5780637f29c3941462000161575b600080fd5b620000bb62000227565b604051620000ca919062000997565b60405180910390f35b620000dd62000231565b604051620000ec9190620009cf565b60405180910390f35b6200011360048036038101906200010d919062000a2c565b62000280565b60405162000122919062000997565b60405180910390f35b62000149600480360381019062000143919062000a2c565b620002f6565b60405162000158919062000997565b60405180910390f35b6200017f600480360381019062000179919062000a2c565b620004ae565b6040516200018e919062000997565b60405180910390f35b620001a162000783565b005b620001ad620007c5565b005b620001cd6004803603810190620001c7919062000a2c565b62000802565b604051620001dc919062000997565b60405180910390f35b620001ef6200094f565b604051620001fe919062000997565b60405180910390f35b6200022560048036038101906200021f919062000ac3565b62000955565b005b6000600154905090565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620002ca919062000b56565b60405180910390a28160036000828254620002e6919062000bb7565b9250508190555060029050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405162000340919062000c64565b60405180910390a260405162000356906200096e565b604051809103906000f08015801562000373573d6000803e3d6000fd5b506000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508160016000828254620003c7919062000bb7565b92505081905550620003e7600183620003e1919062000bb7565b62000280565b50620003f262000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b81526004016200044e919062000997565b602060405180830381600087803b1580156200046957600080fd5b505af11580156200047e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004a4919062000cad565b5060019050919050565b60003073ffffffffffffffffffffffffffffffffffffffff1663929543626040518163ffffffff1660e01b815260040160006040518083038186803b158015620004f757600080fd5b505afa92505050801562000509575060015b620005f2576200051862000cec565b806308c379a014156200057d57506200053062000d87565b806200053d57506200057f565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a816040516200056e919062000eab565b60405180910390a150620005ec565b505b3d8060008114620005ad576040519150601f19603f3d011682016040523d82523d6000602084013e620005b2565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620005e29062000f45565b60405180910390a1505b620005f3565b5b3073ffffffffffffffffffffffffffffffffffffffff16638bfe44ff6040518163ffffffff1660e01b815260040160006040518083038186803b1580156200063a57600080fd5b505afa9250505080156200064c575060015b62000735576200065b62000cec565b806308c379a01415620006c057506200067362000d87565b80620006805750620006c2565b7f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a81604051620006b1919062000eab565b60405180910390a1506200072f565b505b3d8060008114620006f0576040519150601f19603f3d011682016040523d82523d6000602084013e620006f5565b606091505b507f4f17d5cf0427b4fe5e5649c407d3021315cfaa7216c9e58c369ef3937c40801a604051620007259062000f45565b60405180910390a1505b62000736565b5b60006200077a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007719062000fb7565b60405180910390fd5b60019050919050565b6001806040517fcf479181000000000000000000000000000000000000000000000000000000008152600401620007bc92919062001026565b60405180910390fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007f990620010a3565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200084c919062000c64565b60405180910390a2816001600082825462000868919062000bb7565b925050819055506200088860018362000882919062000bb7565b62000280565b506200089362000231565b5060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b8152600401620008ef919062000997565b602060405180830381600087803b1580156200090a57600080fd5b505af11580156200091f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000945919062000cad565b5060019050919050565b60015481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b610ae380620010c683390190565b6000819050919050565b62000991816200097c565b82525050565b6000602082019050620009ae600083018462000986565b92915050565b6000819050919050565b620009c981620009b4565b82525050565b6000602082019050620009e66000830184620009be565b92915050565b6000604051905090565b600080fd5b62000a06816200097c565b811462000a1257600080fd5b50565b60008135905062000a2681620009fb565b92915050565b60006020828403121562000a455762000a44620009f6565b5b600062000a558482850162000a15565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000a8b8262000a5e565b9050919050565b62000a9d8162000a7e565b811462000aa957600080fd5b50565b60008135905062000abd8162000a92565b92915050565b60006020828403121562000adc5762000adb620009f6565b5b600062000aec8482850162000aac565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000b3e600e8362000af5565b915062000b4b8262000b06565b602082019050919050565b600060408201905062000b6d600083018462000986565b818103602083015262000b808162000b2f565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000bc4826200097c565b915062000bd1836200097c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000c095762000c0862000b88565b5b828201905092915050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b600062000c4c60058362000af5565b915062000c598262000c14565b602082019050919050565b600060408201905062000c7b600083018462000986565b818103602083015262000c8e8162000c3d565b905092915050565b60008151905062000ca781620009fb565b92915050565b60006020828403121562000cc65762000cc5620009f6565b5b600062000cd68482850162000c96565b91505092915050565b60008160e01c9050919050565b600060033d111562000d0e5760046000803e62000d0b60005162000cdf565b90505b90565b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000d5c8262000d11565b810181811067ffffffffffffffff8211171562000d7e5762000d7d62000d22565b5b80604052505050565b600060443d101562000d995762000e26565b62000da3620009ec565b60043d036004823e80513d602482011167ffffffffffffffff8211171562000dcd57505062000e26565b808201805167ffffffffffffffff81111562000ded575050505062000e26565b80602083010160043d03850181111562000e0c57505050505062000e26565b62000e1d8260200185018662000d51565b82955050505050505b90565b600081519050919050565b60005b8381101562000e5457808201518184015260208101905062000e37565b8381111562000e64576000848401525b50505050565b600062000e778262000e29565b62000e83818562000af5565b935062000e9581856020860162000e34565b62000ea08162000d11565b840191505092915050565b6000602082019050818103600083015262000ec7818462000e6a565b905092915050565b7f45787465726e616c2063616c6c206661696c656420776974686f757420616e2060008201527f6572726f72206d65737361676500000000000000000000000000000000000000602082015250565b600062000f2d602d8362000af5565b915062000f3a8262000ecf565b604082019050919050565b6000602082019050818103600083015262000f608162000f1e565b9050919050565b7f494e53554646494349454e542042414c414e4345000000000000000000000000600082015250565b600062000f9f60148362000af5565b915062000fac8262000f67565b602082019050919050565b6000602082019050818103600083015262000fd28162000f90565b9050919050565b6000819050919050565b6000819050919050565b60006200100e62001008620010028462000fd9565b62000fe3565b6200097c565b9050919050565b620010208162000fed565b82525050565b60006040820190506200103d600083018562001015565b6200104c602083018462001015565b9392505050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b60006200108b60178362000af5565b9150620010988262001053565b602082019050919050565b60006020820190508181036000830152620010be816200107c565b905091905056fe60806040526000600160006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b50600160009054906101000a900460ff161562000080576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200007790620002b5565b60405180910390fd5b60018060006101000a81548160ff021916908315150217905550620000bc701d6329f1c35ca4bfabb9f5610000000000620000c360201b60201c565b5062000482565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516200010d919062000342565b60405180910390a281600080828254620001289190620003a3565b925050819055506200014e600183620001429190620003a3565b6200016960201b60201c565b506200015f620001df60201b60201c565b5060019050919050565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac083604051620001b3919062000450565b60405180910390a28160026000828254620001cf9190620003a3565b9250508190555060029050919050565b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b600082825260208201905092915050565b7f436f6e747261637420696e7374616e63652068617320616c726561647920626560008201527f656e20696e697469616c697a6564000000000000000000000000000000000000602082015250565b60006200029d602e836200022e565b9150620002aa826200023f565b604082019050919050565b60006020820190508181036000830152620002d0816200028e565b9050919050565b6000819050919050565b620002ec81620002d7565b82525050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006200032a6005836200022e565b91506200033782620002f2565b602082019050919050565b6000604082019050620003596000830184620002e1565b81810360208301526200036c816200031b565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620003b082620002d7565b9150620003bd83620002d7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620003f557620003f462000374565b5b828201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600062000438600e836200022e565b9150620004458262000400565b602082019050919050565b6000604082019050620004676000830184620002e1565b81810360208301526200047a8162000429565b905092915050565b61065180620004926000396000f3fe608060405234801561001057600080fd5b50600436106100625760003560e01c80631c717069146100675780631c93908c1461008557806392954362146100b5578063a0712d68146100bf578063b69ef8a8146100ef578063c9353cb51461010d575b600080fd5b61006f610129565b60405161007c91906102ed565b60405180910390f35b61009f600480360381019061009a9190610343565b610178565b6040516100ac919061037f565b60405180910390f35b6100bd6101ea565b005b6100d960048036038101906100d49190610343565b610225565b6040516100e6919061037f565b60405180910390f35b6100f76102b5565b604051610104919061037f565b60405180910390f35b610127600480360381019061012291906103f8565b6102bb565b005b6000806040518060400160405280600d81526020017f48656c6c6f2c20776f726c6421000000000000000000000000000000000000008152509050600081805190602001209050809250505090565b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac0836040516101c09190610482565b60405180910390a281600260008282546101da91906104df565b9250508190555060029050919050565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161021c90610581565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff167fa61006ade9739809351a3d196f4b5afea31c2afe4852ee18c72f674514c24ac08360405161026d91906105ed565b60405180910390a28160008082825461028691906104df565b925050819055506102a260018361029d91906104df565b610178565b506102ab610129565b5060019050919050565b60005481565b8073ffffffffffffffffffffffffffffffffffffffff16ff5b6000819050919050565b6102e7816102d4565b82525050565b600060208201905061030260008301846102de565b92915050565b600080fd5b6000819050919050565b6103208161030d565b811461032b57600080fd5b50565b60008135905061033d81610317565b92915050565b60006020828403121561035957610358610308565b5b60006103678482850161032e565b91505092915050565b6103798161030d565b82525050565b60006020820190506103946000830184610370565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006103c58261039a565b9050919050565b6103d5816103ba565b81146103e057600080fd5b50565b6000813590506103f2816103cc565b92915050565b60006020828403121561040e5761040d610308565b5b600061041c848285016103e3565b91505092915050565b600082825260208201905092915050565b7f696e7465726e616c20746f706963000000000000000000000000000000000000600082015250565b600061046c600e83610425565b915061047782610436565b602082019050919050565b60006040820190506104976000830184610370565b81810360208301526104a88161045f565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006104ea8261030d565b91506104f58361030d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561052a576105296104b0565b5b828201905092915050565b7f546869732066756e6374696f6e20726576657274656421000000000000000000600082015250565b600061056b601783610425565b915061057682610535565b602082019050919050565b6000602082019050818103600083015261059a8161055e565b9050919050565b7f746f706963000000000000000000000000000000000000000000000000000000600082015250565b60006105d7600583610425565b91506105e2826105a1565b602082019050919050565b60006040820190506106026000830184610370565b8181036020830152610613816105ca565b90509291505056fea26469706673582212208743accab6cfcd1c8ccb3f51b787d679e803a77ce24ec642bd068883132fd5fa64736f6c63430008090033a264697066735822122066241fedca9ebd69f0cd9e4879f75428f5d4bf734eb072e52934a8b3161581f064736f6c63430008090033", "nonce": 2 } } \ No newline at end of file diff --git a/test/historicstate/hardhat/scripts/geth_traces/Tracer.transfer.callTracer.json b/test/historicstate/hardhat/scripts/geth_traces/Tracer.transfer.callTracer.json index e7ec9241d..9212c2d74 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/Tracer.transfer.callTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/Tracer.transfer.callTracer.json @@ -2,8 +2,8 @@ "from": "OWNER.address", "gas": "0x5208", "gasUsed": "0x5208", - "input": "0x", "to": "0x388c818ca8b9251b393131c08a736a67ccb19297", - "type": "CALL", - "value": "0x16345785d8a0000" + "input": "0x", + "value": "0x16345785d8a0000", + "type": "CALL" } \ No newline at end of file diff --git a/test/historicstate/hardhat/scripts/geth_traces/Tracer.transfer.defaultTracer.json b/test/historicstate/hardhat/scripts/geth_traces/Tracer.transfer.defaultTracer.json index 760f8a24b..9b0ab9d23 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/Tracer.transfer.defaultTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/Tracer.transfer.defaultTracer.json @@ -1,6 +1,6 @@ { - "failed": false, "gas": 21000, + "failed": false, "returnValue": "", "structLogs": [] } \ No newline at end of file diff --git a/test/historicstate/hardhat/scripts/geth_traces/Tracer.transfer.prestateDiffTracer.json b/test/historicstate/hardhat/scripts/geth_traces/Tracer.transfer.prestateDiffTracer.json index bd6d22123..ccd88db84 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/Tracer.transfer.prestateDiffTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/Tracer.transfer.prestateDiffTracer.json @@ -1,26 +1,26 @@ { "post": { "0x0000000000000000000000000000000000000000": { - "balance": "0x7d2b7500" + "balance": "0x1b69ad1" }, "0x388c818ca8b9251b393131c08a736a67ccb19297": { - "balance": "0xc7d713b49da0000" + "balance": "0x136dcc951d8c0000" }, "OWNER.address": { - "balance": "0xc9f2c9ccfd8d27dc4e53e8b00", - "nonce": 361 + "balance": "0x360ee5cfe1af4203d1", + "nonce": 82 } }, "pre": { "0x0000000000000000000000000000000000000000": { - "balance": "0x0" + "balance": "0x1b648c9" }, "0x388c818ca8b9251b393131c08a736a67ccb19297": { - "balance": "0xb1a2bc2ec500000" + "balance": "0x120a871cc0020000" }, "OWNER.address": { - "balance": "0xc9f2c9ccfda35c33dbff40000", - "nonce": 360 + "balance": "0x361049155a32982d79", + "nonce": 81 } } } \ No newline at end of file diff --git a/test/historicstate/hardhat/scripts/geth_traces/Tracer.transfer.prestateTracer.json b/test/historicstate/hardhat/scripts/geth_traces/Tracer.transfer.prestateTracer.json index fff570346..6246a1708 100644 --- a/test/historicstate/hardhat/scripts/geth_traces/Tracer.transfer.prestateTracer.json +++ b/test/historicstate/hardhat/scripts/geth_traces/Tracer.transfer.prestateTracer.json @@ -1,12 +1,12 @@ { "0x0000000000000000000000000000000000000000": { - "balance": "0x0" + "balance": "0x1b648c9" }, "0x388c818ca8b9251b393131c08a736a67ccb19297": { - "balance": "0xb1a2bc2ec500000" + "balance": "0x120a871cc0020000" }, "OWNER.address": { - "balance": "0xc9f2c9ccfda35c33dbff40000", - "nonce": 360 + "balance": "0x361049155a32982d79", + "nonce": 81 } } \ No newline at end of file From d702d901b608f55bc3b6fb8cbb3cf197688f7ca8 Mon Sep 17 00:00:00 2001 From: Stan Kladko <13399135+kladkogex@users.noreply.github.com> Date: Tue, 23 Apr 2024 18:52:47 +0100 Subject: [PATCH 29/34] #1859 added test contract --- libevm/LegacyVM.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/libevm/LegacyVM.cpp b/libevm/LegacyVM.cpp index 77a0423e4..2fdfb429c 100644 --- a/libevm/LegacyVM.cpp +++ b/libevm/LegacyVM.cpp @@ -231,7 +231,6 @@ void LegacyVM::interpretCases() { // CASE( CREATE2 ) { - if ( !m_schedule->haveCreate2 ) { ON_OP(); throwBadInstruction(); From 567659fa488b81456d1fca2f79230385a69e3138 Mon Sep 17 00:00:00 2001 From: Stan Kladko <13399135+kladkogex@users.noreply.github.com> Date: Tue, 23 Apr 2024 18:54:37 +0100 Subject: [PATCH 30/34] #1859 added test contract --- libhistoric/AlethStandardTrace.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/libhistoric/AlethStandardTrace.cpp b/libhistoric/AlethStandardTrace.cpp index 66488abfc..bc840eab8 100644 --- a/libhistoric/AlethStandardTrace.cpp +++ b/libhistoric/AlethStandardTrace.cpp @@ -207,7 +207,6 @@ void AlethStandardTrace::setTopFunctionCall( void AlethStandardTrace::recordFunctionReturned( evmc_status_code _status, const vector< uint8_t >& _returnData, uint64_t _gasUsed ) { - // note that m_gas remaining can be less than m_opGas. This happens in case // of out of gas revert STATE_CHECK( m_currentlyExecutingFunctionCall ) From c578e593c4c4848e2dfab6dc97a151d89a23193d Mon Sep 17 00:00:00 2001 From: Oleh Nikolaiev Date: Mon, 13 May 2024 19:00:03 +0100 Subject: [PATCH 31/34] #1890 add more logs for archive node --- libethereum/Client.cpp | 4 ++++ libethereum/SkaleHost.cpp | 1 + libhistoric/HistoricState.cpp | 17 ++++++++++++++++- libhistoric/HistoricState.h | 4 ++++ 4 files changed, 25 insertions(+), 1 deletion(-) diff --git a/libethereum/Client.cpp b/libethereum/Client.cpp index 19bd071b8..8f12991f7 100644 --- a/libethereum/Client.cpp +++ b/libethereum/Client.cpp @@ -717,6 +717,10 @@ size_t Client::syncTransactions( << cc::debug( " transactions in " ) << cc::size10( timer.elapsed() * 1000 ) << cc::debug( "(" ) << ( bool ) m_syncTransactionQueue << cc::debug( ")" ); + if ( chainParams().nodeInfo.syncNode ) + LOG( m_logger ) << "HSCT: " + << m_working.mutableState().mutableHistoricState().getBlockCommitTime(); + return goodReceipts; } diff --git a/libethereum/SkaleHost.cpp b/libethereum/SkaleHost.cpp index 01434a060..b1a140d6d 100644 --- a/libethereum/SkaleHost.cpp +++ b/libethereum/SkaleHost.cpp @@ -723,6 +723,7 @@ void SkaleHost::createBlock( const ConsensusExtFace::transactions_vector& _appro skaledTimeFinish - skaledTimeStart ) .count(); } + latestBlockTime = skaledTimeFinish; LOG( m_debugLogger ) << "Successfully imported " << n_succeeded << " of " << out_txns.size() << " transactions"; diff --git a/libhistoric/HistoricState.cpp b/libhistoric/HistoricState.cpp index d1e8f6d57..0bb845048 100644 --- a/libhistoric/HistoricState.cpp +++ b/libhistoric/HistoricState.cpp @@ -44,7 +44,8 @@ HistoricState::HistoricState( HistoricState const& _s ) m_unchangedCacheEntries( _s.m_unchangedCacheEntries ), m_nonExistingAccountsCache( _s.m_nonExistingAccountsCache ), m_unrevertablyTouched( _s.m_unrevertablyTouched ), - m_accountStartNonce( _s.m_accountStartNonce ) {} + m_accountStartNonce( _s.m_accountStartNonce ), + blockCommitTimeMs( _s.blockCommitTimeMs ) {} OverlayDB HistoricState::openDB( fs::path const& _basePath, h256 const& _genesisHash, WithExisting _we ) { @@ -137,6 +138,7 @@ HistoricState& HistoricState::operator=( HistoricState const& _s ) { m_nonExistingAccountsCache = _s.m_nonExistingAccountsCache; m_unrevertablyTouched = _s.m_unrevertablyTouched; m_accountStartNonce = _s.m_accountStartNonce; + blockCommitTimeMs = _s.blockCommitTimeMs; return *this; } @@ -194,11 +196,24 @@ void HistoricState::clearCacheIfTooLarge() const { } void HistoricState::commitExternalChanges( AccountMap const& _accountMap ) { + boost::chrono::high_resolution_clock::time_point historicStateStart = + boost::chrono::high_resolution_clock::now(); commitExternalChangesIntoTrieDB( _accountMap, m_state ); m_state.db()->commit(); m_changeLog.clear(); m_cache.clear(); m_unchangedCacheEntries.clear(); + boost::chrono::high_resolution_clock::time_point historicStateFinish = + boost::chrono::high_resolution_clock::now(); + blockCommitTimeMs += boost::chrono::duration_cast< boost::chrono::milliseconds >( + historicStateFinish - historicStateStart ) + .count(); +} + +uint64_t HistoricState::getBlockCommitTime() { + uint64_t retVal = blockCommitTimeMs; + blockCommitTimeMs = 0; + return retVal; } diff --git a/libhistoric/HistoricState.h b/libhistoric/HistoricState.h index ab07529b7..44fe6cf76 100644 --- a/libhistoric/HistoricState.h +++ b/libhistoric/HistoricState.h @@ -296,6 +296,8 @@ class HistoricState { void setRootFromDB(); + uint64_t getBlockCommitTime(); + private: /// Turns all "touched" empty accounts into non-alive accounts. void removeEmptyAccounts(); @@ -345,6 +347,8 @@ class HistoricState { AddressHash commitExternalChangesIntoTrieDB( AccountMap const& _cache, SecureTrieDB< Address, OverlayDB >& _state ); + + uint64_t blockCommitTimeMs = 0; }; std::ostream& operator<<( std::ostream& _out, HistoricState const& _s ); From 156c18ed66e8e2986e8046904dbb6337ad5784c5 Mon Sep 17 00:00:00 2001 From: Oleh Nikolaiev Date: Mon, 13 May 2024 19:37:53 +0100 Subject: [PATCH 32/34] #1890 fix build --- libethereum/Client.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libethereum/Client.cpp b/libethereum/Client.cpp index 8f12991f7..240bea3f7 100644 --- a/libethereum/Client.cpp +++ b/libethereum/Client.cpp @@ -717,10 +717,10 @@ size_t Client::syncTransactions( << cc::debug( " transactions in " ) << cc::size10( timer.elapsed() * 1000 ) << cc::debug( "(" ) << ( bool ) m_syncTransactionQueue << cc::debug( ")" ); - if ( chainParams().nodeInfo.syncNode ) - LOG( m_logger ) << "HSCT: " - << m_working.mutableState().mutableHistoricState().getBlockCommitTime(); - +#ifdef HISTORIC_STATE + LOG( m_logger ) << "HSCT: " + << m_working.mutableState().mutableHistoricState().getBlockCommitTime(); +#endif return goodReceipts; } From 0c6b99458af4ccb7964eb04be9cd688eccebdbab Mon Sep 17 00:00:00 2001 From: Oleh Nikolaiev Date: Mon, 13 May 2024 19:46:30 +0100 Subject: [PATCH 33/34] #1890 format --- libethereum/Client.cpp | 5 ++--- libhistoric/HistoricState.cpp | 12 ++++++------ libhistoric/HistoricState.h | 2 +- 3 files changed, 9 insertions(+), 10 deletions(-) diff --git a/libethereum/Client.cpp b/libethereum/Client.cpp index 240bea3f7..0e69541f5 100644 --- a/libethereum/Client.cpp +++ b/libethereum/Client.cpp @@ -713,9 +713,8 @@ size_t Client::syncTransactions( // Tell network about the new transactions. m_skaleHost->noteNewTransactions(); - ctrace << cc::debug( "Processed " ) << cc::size10( newPendingReceipts.size() ) - << cc::debug( " transactions in " ) << cc::size10( timer.elapsed() * 1000 ) - << cc::debug( "(" ) << ( bool ) m_syncTransactionQueue << cc::debug( ")" ); + ctrace << "Processed " << newPendingReceipts.size() << " transactions in " + << timer.elapsed() * 1000 << "(" << ( bool ) m_syncTransactionQueue << ")"; #ifdef HISTORIC_STATE LOG( m_logger ) << "HSCT: " diff --git a/libhistoric/HistoricState.cpp b/libhistoric/HistoricState.cpp index 0bb845048..b467d1aba 100644 --- a/libhistoric/HistoricState.cpp +++ b/libhistoric/HistoricState.cpp @@ -45,7 +45,7 @@ HistoricState::HistoricState( HistoricState const& _s ) m_nonExistingAccountsCache( _s.m_nonExistingAccountsCache ), m_unrevertablyTouched( _s.m_unrevertablyTouched ), m_accountStartNonce( _s.m_accountStartNonce ), - blockCommitTimeMs( _s.blockCommitTimeMs ) {} + m_blockCommitTimeMs( _s.m_blockCommitTimeMs ) {} OverlayDB HistoricState::openDB( fs::path const& _basePath, h256 const& _genesisHash, WithExisting _we ) { @@ -138,7 +138,7 @@ HistoricState& HistoricState::operator=( HistoricState const& _s ) { m_nonExistingAccountsCache = _s.m_nonExistingAccountsCache; m_unrevertablyTouched = _s.m_unrevertablyTouched; m_accountStartNonce = _s.m_accountStartNonce; - blockCommitTimeMs = _s.blockCommitTimeMs; + m_blockCommitTimeMs = _s.m_blockCommitTimeMs; return *this; } @@ -205,14 +205,14 @@ void HistoricState::commitExternalChanges( AccountMap const& _accountMap ) { m_unchangedCacheEntries.clear(); boost::chrono::high_resolution_clock::time_point historicStateFinish = boost::chrono::high_resolution_clock::now(); - blockCommitTimeMs += boost::chrono::duration_cast< boost::chrono::milliseconds >( + m_blockCommitTimeMs += boost::chrono::duration_cast< boost::chrono::milliseconds >( historicStateFinish - historicStateStart ) - .count(); + .count(); } uint64_t HistoricState::getBlockCommitTime() { - uint64_t retVal = blockCommitTimeMs; - blockCommitTimeMs = 0; + uint64_t retVal = m_blockCommitTimeMs; + m_blockCommitTimeMs = 0; return retVal; } diff --git a/libhistoric/HistoricState.h b/libhistoric/HistoricState.h index 44fe6cf76..9b5de2a97 100644 --- a/libhistoric/HistoricState.h +++ b/libhistoric/HistoricState.h @@ -348,7 +348,7 @@ class HistoricState { AddressHash commitExternalChangesIntoTrieDB( AccountMap const& _cache, SecureTrieDB< Address, OverlayDB >& _state ); - uint64_t blockCommitTimeMs = 0; + uint64_t m_blockCommitTimeMs = 0; }; std::ostream& operator<<( std::ostream& _out, HistoricState const& _s ); From c56e96aab97661cfc992cb3d35c55c2c904097f0 Mon Sep 17 00:00:00 2001 From: Oleh Nikolaiev Date: Tue, 14 May 2024 13:08:20 +0100 Subject: [PATCH 34/34] #1890 format --- libdevcore/LevelDB.h | 2 +- libethereum/Client.cpp | 2 +- libhistoric/HistoricState.cpp | 20 ++++++++------------ libhistoric/HistoricState.h | 4 ++-- 4 files changed, 12 insertions(+), 16 deletions(-) diff --git a/libdevcore/LevelDB.h b/libdevcore/LevelDB.h index c2a1f7ee9..514a93648 100644 --- a/libdevcore/LevelDB.h +++ b/libdevcore/LevelDB.h @@ -71,6 +71,7 @@ class LevelDB : public DatabaseFace { static std::atomic< uint64_t > g_keyDeletesStats; // count of the keys that are scheduled to be deleted but are not yet deleted static std::atomic< uint64_t > g_keysToBeDeletedStats; + static uint64_t getCurrentTimeMs(); private: std::unique_ptr< leveldb::DB > m_db; @@ -123,7 +124,6 @@ class LevelDB : public DatabaseFace { } }; void openDBInstanceUnsafe(); - uint64_t getCurrentTimeMs(); void reopenDataBaseIfNeeded(); }; diff --git a/libethereum/Client.cpp b/libethereum/Client.cpp index 0e69541f5..a2bcb2958 100644 --- a/libethereum/Client.cpp +++ b/libethereum/Client.cpp @@ -718,7 +718,7 @@ size_t Client::syncTransactions( #ifdef HISTORIC_STATE LOG( m_logger ) << "HSCT: " - << m_working.mutableState().mutableHistoricState().getBlockCommitTime(); + << m_working.mutableState().mutableHistoricState().getAndResetBlockCommitTime(); #endif return goodReceipts; } diff --git a/libhistoric/HistoricState.cpp b/libhistoric/HistoricState.cpp index b467d1aba..1e50521de 100644 --- a/libhistoric/HistoricState.cpp +++ b/libhistoric/HistoricState.cpp @@ -45,7 +45,7 @@ HistoricState::HistoricState( HistoricState const& _s ) m_nonExistingAccountsCache( _s.m_nonExistingAccountsCache ), m_unrevertablyTouched( _s.m_unrevertablyTouched ), m_accountStartNonce( _s.m_accountStartNonce ), - m_blockCommitTimeMs( _s.m_blockCommitTimeMs ) {} + m_totalTimeSpentInStateCommitsPerBlock( _s.m_totalTimeSpentInStateCommitsPerBlock ) {} OverlayDB HistoricState::openDB( fs::path const& _basePath, h256 const& _genesisHash, WithExisting _we ) { @@ -138,7 +138,7 @@ HistoricState& HistoricState::operator=( HistoricState const& _s ) { m_nonExistingAccountsCache = _s.m_nonExistingAccountsCache; m_unrevertablyTouched = _s.m_unrevertablyTouched; m_accountStartNonce = _s.m_accountStartNonce; - m_blockCommitTimeMs = _s.m_blockCommitTimeMs; + m_totalTimeSpentInStateCommitsPerBlock = _s.m_totalTimeSpentInStateCommitsPerBlock; return *this; } @@ -196,23 +196,19 @@ void HistoricState::clearCacheIfTooLarge() const { } void HistoricState::commitExternalChanges( AccountMap const& _accountMap ) { - boost::chrono::high_resolution_clock::time_point historicStateStart = - boost::chrono::high_resolution_clock::now(); + auto historicStateStart = dev::db::LevelDB::getCurrentTimeMs(); commitExternalChangesIntoTrieDB( _accountMap, m_state ); m_state.db()->commit(); m_changeLog.clear(); m_cache.clear(); m_unchangedCacheEntries.clear(); - boost::chrono::high_resolution_clock::time_point historicStateFinish = - boost::chrono::high_resolution_clock::now(); - m_blockCommitTimeMs += boost::chrono::duration_cast< boost::chrono::milliseconds >( - historicStateFinish - historicStateStart ) - .count(); + auto historicStateFinish = dev::db::LevelDB::getCurrentTimeMs(); + m_totalTimeSpentInStateCommitsPerBlock += historicStateFinish - historicStateStart; } -uint64_t HistoricState::getBlockCommitTime() { - uint64_t retVal = m_blockCommitTimeMs; - m_blockCommitTimeMs = 0; +uint64_t HistoricState::getAndResetBlockCommitTime() { + uint64_t retVal = m_totalTimeSpentInStateCommitsPerBlock; + m_totalTimeSpentInStateCommitsPerBlock = 0; return retVal; } diff --git a/libhistoric/HistoricState.h b/libhistoric/HistoricState.h index 9b5de2a97..f1273bb58 100644 --- a/libhistoric/HistoricState.h +++ b/libhistoric/HistoricState.h @@ -296,7 +296,7 @@ class HistoricState { void setRootFromDB(); - uint64_t getBlockCommitTime(); + uint64_t getAndResetBlockCommitTime(); private: /// Turns all "touched" empty accounts into non-alive accounts. @@ -348,7 +348,7 @@ class HistoricState { AddressHash commitExternalChangesIntoTrieDB( AccountMap const& _cache, SecureTrieDB< Address, OverlayDB >& _state ); - uint64_t m_blockCommitTimeMs = 0; + uint64_t m_totalTimeSpentInStateCommitsPerBlock = 0; }; std::ostream& operator<<( std::ostream& _out, HistoricState const& _s );