Skip to content

Instantly share code, notes, and snippets.

@renso3x
Created January 10, 2023 05:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save renso3x/6be778a6c6127320655f0fb7c0a4109a to your computer and use it in GitHub Desktop.
Save renso3x/6be778a6c6127320655f0fb7c0a4109a to your computer and use it in GitHub Desktop.
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.7+commit.e28d00a7.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.4.22 <0.9.0;
library TestsAccounts {
function getAccount(uint index) pure public returns (address) {
address[15] memory accounts;
accounts[0] = 0x5B38Da6a701c568545dCfcB03FcB875f56beddC4;
accounts[1] = 0xAb8483F64d9C6d1EcF9b849Ae677dD3315835cb2;
accounts[2] = 0x4B20993Bc481177ec7E8f571ceCaE8A9e22C02db;
accounts[3] = 0x78731D3Ca6b7E34aC0F824c42a7cC18A495cabaB;
accounts[4] = 0x617F2E2fD72FD9D5503197092aC168c91465E7f2;
accounts[5] = 0x17F6AD8Ef982297579C203069C1DbfFE4348c372;
accounts[6] = 0x5c6B0f7Bf3E7ce046039Bd8FABdfD3f9F5021678;
accounts[7] = 0x03C6FcED478cBbC9a4FAB34eF9f40767739D1Ff7;
accounts[8] = 0x1aE0EA34a72D944a8C7603FfB3eC30a6669E454C;
accounts[9] = 0x0A098Eda01Ce92ff4A4CCb7A4fFFb5A43EBC70DC;
accounts[10] = 0xCA35b7d915458EF540aDe6068dFe2F44E8fa733c;
accounts[11] = 0x14723A09ACff6D2A60DcdF7aA4AFf308FDDC160C;
accounts[12] = 0x4B0897b0513fdC7C541B6d9D7E929C4e5364D2dB;
accounts[13] = 0x583031D1113aD414F02576BD6afaBfb302140225;
accounts[14] = 0xdD870fA1b7C4700F2BD7f44238821C26f7392148;
return accounts[index];
}
}
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.4.22 <0.9.0;
library Assert {
event AssertionEvent(
bool passed,
string message,
string methodName
);
event AssertionEventUint(
bool passed,
string message,
string methodName,
uint256 returned,
uint256 expected
);
event AssertionEventInt(
bool passed,
string message,
string methodName,
int256 returned,
int256 expected
);
event AssertionEventBool(
bool passed,
string message,
string methodName,
bool returned,
bool expected
);
event AssertionEventAddress(
bool passed,
string message,
string methodName,
address returned,
address expected
);
event AssertionEventBytes32(
bool passed,
string message,
string methodName,
bytes32 returned,
bytes32 expected
);
event AssertionEventString(
bool passed,
string message,
string methodName,
string returned,
string expected
);
event AssertionEventUintInt(
bool passed,
string message,
string methodName,
uint256 returned,
int256 expected
);
event AssertionEventIntUint(
bool passed,
string message,
string methodName,
int256 returned,
uint256 expected
);
function ok(bool a, string memory message) public returns (bool result) {
result = a;
emit AssertionEvent(result, message, "ok");
}
function equal(uint256 a, uint256 b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventUint(result, message, "equal", a, b);
}
function equal(int256 a, int256 b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventInt(result, message, "equal", a, b);
}
function equal(bool a, bool b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventBool(result, message, "equal", a, b);
}
// TODO: only for certain versions of solc
//function equal(fixed a, fixed b, string message) public returns (bool result) {
// result = (a == b);
// emit AssertionEvent(result, message);
//}
// TODO: only for certain versions of solc
//function equal(ufixed a, ufixed b, string message) public returns (bool result) {
// result = (a == b);
// emit AssertionEvent(result, message);
//}
function equal(address a, address b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventAddress(result, message, "equal", a, b);
}
function equal(bytes32 a, bytes32 b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventBytes32(result, message, "equal", a, b);
}
function equal(string memory a, string memory b, string memory message) public returns (bool result) {
result = (keccak256(abi.encodePacked(a)) == keccak256(abi.encodePacked(b)));
emit AssertionEventString(result, message, "equal", a, b);
}
function notEqual(uint256 a, uint256 b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventUint(result, message, "notEqual", a, b);
}
function notEqual(int256 a, int256 b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventInt(result, message, "notEqual", a, b);
}
function notEqual(bool a, bool b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventBool(result, message, "notEqual", a, b);
}
// TODO: only for certain versions of solc
//function notEqual(fixed a, fixed b, string message) public returns (bool result) {
// result = (a != b);
// emit AssertionEvent(result, message);
//}
// TODO: only for certain versions of solc
//function notEqual(ufixed a, ufixed b, string message) public returns (bool result) {
// result = (a != b);
// emit AssertionEvent(result, message);
//}
function notEqual(address a, address b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventAddress(result, message, "notEqual", a, b);
}
function notEqual(bytes32 a, bytes32 b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventBytes32(result, message, "notEqual", a, b);
}
function notEqual(string memory a, string memory b, string memory message) public returns (bool result) {
result = (keccak256(abi.encodePacked(a)) != keccak256(abi.encodePacked(b)));
emit AssertionEventString(result, message, "notEqual", a, b);
}
/*----------------- Greater than --------------------*/
function greaterThan(uint256 a, uint256 b, string memory message) public returns (bool result) {
result = (a > b);
emit AssertionEventUint(result, message, "greaterThan", a, b);
}
function greaterThan(int256 a, int256 b, string memory message) public returns (bool result) {
result = (a > b);
emit AssertionEventInt(result, message, "greaterThan", a, b);
}
// TODO: safely compare between uint and int
function greaterThan(uint256 a, int256 b, string memory message) public returns (bool result) {
if(b < int(0)) {
// int is negative uint "a" always greater
result = true;
} else {
result = (a > uint(b));
}
emit AssertionEventUintInt(result, message, "greaterThan", a, b);
}
function greaterThan(int256 a, uint256 b, string memory message) public returns (bool result) {
if(a < int(0)) {
// int is negative uint "b" always greater
result = false;
} else {
result = (uint(a) > b);
}
emit AssertionEventIntUint(result, message, "greaterThan", a, b);
}
/*----------------- Lesser than --------------------*/
function lesserThan(uint256 a, uint256 b, string memory message) public returns (bool result) {
result = (a < b);
emit AssertionEventUint(result, message, "lesserThan", a, b);
}
function lesserThan(int256 a, int256 b, string memory message) public returns (bool result) {
result = (a < b);
emit AssertionEventInt(result, message, "lesserThan", a, b);
}
// TODO: safely compare between uint and int
function lesserThan(uint256 a, int256 b, string memory message) public returns (bool result) {
if(b < int(0)) {
// int is negative int "b" always lesser
result = false;
} else {
result = (a < uint(b));
}
emit AssertionEventUintInt(result, message, "lesserThan", a, b);
}
function lesserThan(int256 a, uint256 b, string memory message) public returns (bool result) {
if(a < int(0)) {
// int is negative int "a" always lesser
result = true;
} else {
result = (uint(a) < b);
}
emit AssertionEventIntUint(result, message, "lesserThan", a, b);
}
}
{
"overrides": [
{
"files": "*.sol",
"options": {
"printWidth": 80,
"tabWidth": 4,
"useTabs": false,
"singleQuote": false,
"bracketSpacing": false
}
},
{
"files": "*.yml",
"options": {}
},
{
"files": "*.yaml",
"options": {}
},
{
"files": "*.toml",
"options": {}
},
{
"files": "*.json",
"options": {}
},
{
"files": "*.js",
"options": {}
},
{
"files": "*.ts",
"options": {}
}
]
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"goerli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50610808806100206000396000f3fe608060405234801561001057600080fd5b50600436106100575760003560e01c80632e64cec11461005c5780636057361d1461007a5780636f760f41146100965780639e7a13ad146100b2578063b2ac62ef146100e3575b600080fd5b610064610113565b604051610071919061053c565b60405180910390f35b610094600480360381019061008f919061047f565b61011c565b005b6100b060048036038101906100ab9190610423565b610132565b005b6100cc60048036038101906100c7919061047f565b6101c8565b6040516100da929190610557565b60405180910390f35b6100fd60048036038101906100f891906103da565b610284565b60405161010a919061053c565b60405180910390f35b60008054905090565b6005816101299190610604565b60008190555050565b60006040518060400160405280838152602001848152509050600281908060018154018082558091505060019003906000526020600020906002020160009091909190915060008201518160000155602082015181600101908051906020019061019d9291906102b2565b505050816001846040516101b19190610525565b908152602001604051809103902081905550505050565b600281815481106101d857600080fd5b9060005260206000209060020201600091509050806000015490806001018054610201906106a6565b80601f016020809104026020016040519081016040528092919081815260200182805461022d906106a6565b801561027a5780601f1061024f5761010080835404028352916020019161027a565b820191906000526020600020905b81548152906001019060200180831161025d57829003601f168201915b5050505050905082565b6001818051602081018201805184825260208301602085012081835280955050505050506000915090505481565b8280546102be906106a6565b90600052602060002090601f0160209004810192826102e05760008555610327565b82601f106102f957805160ff1916838001178555610327565b82800160010185558215610327579182015b8281111561032657825182559160200191906001019061030b565b5b5090506103349190610338565b5090565b5b80821115610351576000816000905550600101610339565b5090565b6000610368610363846105ac565b610587565b9050828152602081018484840111156103845761038361079b565b5b61038f848285610664565b509392505050565b600082601f8301126103ac576103ab610796565b5b81356103bc848260208601610355565b91505092915050565b6000813590506103d4816107bb565b92915050565b6000602082840312156103f0576103ef6107a5565b5b600082013567ffffffffffffffff81111561040e5761040d6107a0565b5b61041a84828501610397565b91505092915050565b6000806040838503121561043a576104396107a5565b5b600083013567ffffffffffffffff811115610458576104576107a0565b5b61046485828601610397565b9250506020610475858286016103c5565b9150509250929050565b600060208284031215610495576104946107a5565b5b60006104a3848285016103c5565b91505092915050565b60006104b7826105dd565b6104c181856105e8565b93506104d1818560208601610673565b6104da816107aa565b840191505092915050565b60006104f0826105dd565b6104fa81856105f9565b935061050a818560208601610673565b80840191505092915050565b61051f8161065a565b82525050565b600061053182846104e5565b915081905092915050565b60006020820190506105516000830184610516565b92915050565b600060408201905061056c6000830185610516565b818103602083015261057e81846104ac565b90509392505050565b60006105916105a2565b905061059d82826106d8565b919050565b6000604051905090565b600067ffffffffffffffff8211156105c7576105c6610767565b5b6105d0826107aa565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600061060f8261065a565b915061061a8361065a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561064f5761064e610709565b5b828201905092915050565b6000819050919050565b82818337600083830152505050565b60005b83811015610691578082015181840152602081019050610676565b838111156106a0576000848401525b50505050565b600060028204905060018216806106be57607f821691505b602082108114156106d2576106d1610738565b5b50919050565b6106e1826107aa565b810181811067ffffffffffffffff82111715610700576106ff610767565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b6107c48161065a565b81146107cf57600080fd5b5056fea264697066735822122062d1a63d7c7eebfcdb861a583786a633f24b2492fcad4d6ee4b2925a719dd10b64736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x808 DUP1 PUSH2 0x20 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x57 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x2E64CEC1 EQ PUSH2 0x5C JUMPI DUP1 PUSH4 0x6057361D EQ PUSH2 0x7A JUMPI DUP1 PUSH4 0x6F760F41 EQ PUSH2 0x96 JUMPI DUP1 PUSH4 0x9E7A13AD EQ PUSH2 0xB2 JUMPI DUP1 PUSH4 0xB2AC62EF EQ PUSH2 0xE3 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x64 PUSH2 0x113 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x71 SWAP2 SWAP1 PUSH2 0x53C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x94 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x8F SWAP2 SWAP1 PUSH2 0x47F JUMP JUMPDEST PUSH2 0x11C JUMP JUMPDEST STOP JUMPDEST PUSH2 0xB0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xAB SWAP2 SWAP1 PUSH2 0x423 JUMP JUMPDEST PUSH2 0x132 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xCC PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xC7 SWAP2 SWAP1 PUSH2 0x47F JUMP JUMPDEST PUSH2 0x1C8 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xDA SWAP3 SWAP2 SWAP1 PUSH2 0x557 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xFD PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xF8 SWAP2 SWAP1 PUSH2 0x3DA JUMP JUMPDEST PUSH2 0x284 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x10A SWAP2 SWAP1 PUSH2 0x53C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x5 DUP2 PUSH2 0x129 SWAP2 SWAP1 PUSH2 0x604 JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 DUP4 DUP2 MSTORE PUSH1 0x20 ADD DUP5 DUP2 MSTORE POP SWAP1 POP PUSH1 0x2 DUP2 SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD SSTORE PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x19D SWAP3 SWAP2 SWAP1 PUSH2 0x2B2 JUMP JUMPDEST POP POP POP DUP2 PUSH1 0x1 DUP5 PUSH1 0x40 MLOAD PUSH2 0x1B1 SWAP2 SWAP1 PUSH2 0x525 JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 DUP2 SWAP1 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x2 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x1D8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH1 0x0 SWAP2 POP SWAP1 POP DUP1 PUSH1 0x0 ADD SLOAD SWAP1 DUP1 PUSH1 0x1 ADD DUP1 SLOAD PUSH2 0x201 SWAP1 PUSH2 0x6A6 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x22D SWAP1 PUSH2 0x6A6 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x27A JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x24F JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x27A JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x25D JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP DUP3 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP1 MLOAD PUSH1 0x20 DUP2 ADD DUP3 ADD DUP1 MLOAD DUP5 DUP3 MSTORE PUSH1 0x20 DUP4 ADD PUSH1 0x20 DUP6 ADD KECCAK256 DUP2 DUP4 MSTORE DUP1 SWAP6 POP POP POP POP POP POP PUSH1 0x0 SWAP2 POP SWAP1 POP SLOAD DUP2 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH2 0x2BE SWAP1 PUSH2 0x6A6 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0x2E0 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0x327 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0x2F9 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0x327 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0x327 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x326 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x30B JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x334 SWAP2 SWAP1 PUSH2 0x338 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x351 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x339 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x368 PUSH2 0x363 DUP5 PUSH2 0x5AC JUMP JUMPDEST PUSH2 0x587 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x384 JUMPI PUSH2 0x383 PUSH2 0x79B JUMP JUMPDEST JUMPDEST PUSH2 0x38F DUP5 DUP3 DUP6 PUSH2 0x664 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x3AC JUMPI PUSH2 0x3AB PUSH2 0x796 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x3BC DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x355 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x3D4 DUP2 PUSH2 0x7BB JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3F0 JUMPI PUSH2 0x3EF PUSH2 0x7A5 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP3 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x40E JUMPI PUSH2 0x40D PUSH2 0x7A0 JUMP JUMPDEST JUMPDEST PUSH2 0x41A DUP5 DUP3 DUP6 ADD PUSH2 0x397 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x43A JUMPI PUSH2 0x439 PUSH2 0x7A5 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x458 JUMPI PUSH2 0x457 PUSH2 0x7A0 JUMP JUMPDEST JUMPDEST PUSH2 0x464 DUP6 DUP3 DUP7 ADD PUSH2 0x397 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x475 DUP6 DUP3 DUP7 ADD PUSH2 0x3C5 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x495 JUMPI PUSH2 0x494 PUSH2 0x7A5 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x4A3 DUP5 DUP3 DUP6 ADD PUSH2 0x3C5 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4B7 DUP3 PUSH2 0x5DD JUMP JUMPDEST PUSH2 0x4C1 DUP2 DUP6 PUSH2 0x5E8 JUMP JUMPDEST SWAP4 POP PUSH2 0x4D1 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x673 JUMP JUMPDEST PUSH2 0x4DA DUP2 PUSH2 0x7AA JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4F0 DUP3 PUSH2 0x5DD JUMP JUMPDEST PUSH2 0x4FA DUP2 DUP6 PUSH2 0x5F9 JUMP JUMPDEST SWAP4 POP PUSH2 0x50A DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x673 JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x51F DUP2 PUSH2 0x65A JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x531 DUP3 DUP5 PUSH2 0x4E5 JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x551 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x516 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x56C PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0x516 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0x57E DUP2 DUP5 PUSH2 0x4AC JUMP JUMPDEST SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x591 PUSH2 0x5A2 JUMP JUMPDEST SWAP1 POP PUSH2 0x59D DUP3 DUP3 PUSH2 0x6D8 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x5C7 JUMPI PUSH2 0x5C6 PUSH2 0x767 JUMP JUMPDEST JUMPDEST PUSH2 0x5D0 DUP3 PUSH2 0x7AA JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x60F DUP3 PUSH2 0x65A JUMP JUMPDEST SWAP2 POP PUSH2 0x61A DUP4 PUSH2 0x65A JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x64F JUMPI PUSH2 0x64E PUSH2 0x709 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x691 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x676 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x6A0 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x6BE JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x6D2 JUMPI PUSH2 0x6D1 PUSH2 0x738 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x6E1 DUP3 PUSH2 0x7AA JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x700 JUMPI PUSH2 0x6FF PUSH2 0x767 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x7C4 DUP2 PUSH2 0x65A JUMP JUMPDEST DUP2 EQ PUSH2 0x7CF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH3 0xD1A63D PUSH29 0x7EEBFCDB861A583786A633F24B2492FCAD4D6EE4B2925A719DD10B6473 PUSH16 0x6C634300080700330000000000000000 ",
"sourceMap": "123:220:0:-:0;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@addPerson_81": {
"entryPoint": 306,
"id": 81,
"parameterSlots": 2,
"returnSlots": 0
},
"@nameToFavouriteNumber_26": {
"entryPoint": 644,
"id": 26,
"parameterSlots": 0,
"returnSlots": 0
},
"@people_35": {
"entryPoint": 456,
"id": 35,
"parameterSlots": 0,
"returnSlots": 0
},
"@retrieve_53": {
"entryPoint": 275,
"id": 53,
"parameterSlots": 0,
"returnSlots": 1
},
"@store_17": {
"entryPoint": 284,
"id": 17,
"parameterSlots": 1,
"returnSlots": 0
},
"abi_decode_available_length_t_string_memory_ptr": {
"entryPoint": 853,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_t_string_memory_ptr": {
"entryPoint": 919,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 965,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_string_memory_ptr": {
"entryPoint": 986,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_string_memory_ptrt_uint256": {
"entryPoint": 1059,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 1151,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 1196,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 1253,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 1302,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_packed_t_string_memory_ptr__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed": {
"entryPoint": 1317,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 1340,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256_t_string_memory_ptr__to_t_uint256_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 1367,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"allocate_memory": {
"entryPoint": 1415,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": 1442,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_allocation_size_t_string_memory_ptr": {
"entryPoint": 1452,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 1501,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 1512,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 1529,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 1540,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 1626,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_calldata_to_memory": {
"entryPoint": 1636,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"copy_memory_to_memory": {
"entryPoint": 1651,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 1702,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"finalize_allocation": {
"entryPoint": 1752,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"panic_error_0x11": {
"entryPoint": 1801,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 1848,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 1895,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": {
"entryPoint": 1942,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": {
"entryPoint": 1947,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": 1952,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 1957,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 1962,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"validator_revert_t_uint256": {
"entryPoint": 1979,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:7982:2",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "91:328:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "101:75:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "168:6:2"
}
],
"functionName": {
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "126:41:2"
},
"nodeType": "YulFunctionCall",
"src": "126:49:2"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "110:15:2"
},
"nodeType": "YulFunctionCall",
"src": "110:66:2"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "101:5:2"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "192:5:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "199:6:2"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "185:6:2"
},
"nodeType": "YulFunctionCall",
"src": "185:21:2"
},
"nodeType": "YulExpressionStatement",
"src": "185:21:2"
},
{
"nodeType": "YulVariableDeclaration",
"src": "215:27:2",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "230:5:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "237:4:2",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "226:3:2"
},
"nodeType": "YulFunctionCall",
"src": "226:16:2"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "219:3:2",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "280:83:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulIdentifier",
"src": "282:77:2"
},
"nodeType": "YulFunctionCall",
"src": "282:79:2"
},
"nodeType": "YulExpressionStatement",
"src": "282:79:2"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "261:3:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "266:6:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "257:3:2"
},
"nodeType": "YulFunctionCall",
"src": "257:16:2"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "275:3:2"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "254:2:2"
},
"nodeType": "YulFunctionCall",
"src": "254:25:2"
},
"nodeType": "YulIf",
"src": "251:112:2"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "396:3:2"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "401:3:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "406:6:2"
}
],
"functionName": {
"name": "copy_calldata_to_memory",
"nodeType": "YulIdentifier",
"src": "372:23:2"
},
"nodeType": "YulFunctionCall",
"src": "372:41:2"
},
"nodeType": "YulExpressionStatement",
"src": "372:41:2"
}
]
},
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "64:3:2",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "69:6:2",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "77:3:2",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "85:5:2",
"type": ""
}
],
"src": "7:412:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "501:278:2",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "550:83:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "552:77:2"
},
"nodeType": "YulFunctionCall",
"src": "552:79:2"
},
"nodeType": "YulExpressionStatement",
"src": "552:79:2"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "529:6:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "537:4:2",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "525:3:2"
},
"nodeType": "YulFunctionCall",
"src": "525:17:2"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "544:3:2"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "521:3:2"
},
"nodeType": "YulFunctionCall",
"src": "521:27:2"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "514:6:2"
},
"nodeType": "YulFunctionCall",
"src": "514:35:2"
},
"nodeType": "YulIf",
"src": "511:122:2"
},
{
"nodeType": "YulVariableDeclaration",
"src": "642:34:2",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "669:6:2"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "656:12:2"
},
"nodeType": "YulFunctionCall",
"src": "656:20:2"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "646:6:2",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "685:88:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "746:6:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "754:4:2",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "742:3:2"
},
"nodeType": "YulFunctionCall",
"src": "742:17:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "761:6:2"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "769:3:2"
}
],
"functionName": {
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "694:47:2"
},
"nodeType": "YulFunctionCall",
"src": "694:79:2"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "685:5:2"
}
]
}
]
},
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "479:6:2",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "487:3:2",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "495:5:2",
"type": ""
}
],
"src": "439:340:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "837:87:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "847:29:2",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "869:6:2"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "856:12:2"
},
"nodeType": "YulFunctionCall",
"src": "856:20:2"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "847:5:2"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "912:5:2"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "885:26:2"
},
"nodeType": "YulFunctionCall",
"src": "885:33:2"
},
"nodeType": "YulExpressionStatement",
"src": "885:33:2"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "815:6:2",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "823:3:2",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "831:5:2",
"type": ""
}
],
"src": "785:139:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1006:433:2",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1052:83:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "1054:77:2"
},
"nodeType": "YulFunctionCall",
"src": "1054:79:2"
},
"nodeType": "YulExpressionStatement",
"src": "1054:79:2"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1027:7:2"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1036:9:2"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1023:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1023:23:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1048:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1019:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1019:32:2"
},
"nodeType": "YulIf",
"src": "1016:119:2"
},
{
"nodeType": "YulBlock",
"src": "1145:287:2",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1160:45:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1191:9:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1202:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1187:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1187:17:2"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1174:12:2"
},
"nodeType": "YulFunctionCall",
"src": "1174:31:2"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1164:6:2",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1252:83:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "1254:77:2"
},
"nodeType": "YulFunctionCall",
"src": "1254:79:2"
},
"nodeType": "YulExpressionStatement",
"src": "1254:79:2"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1224:6:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1232:18:2",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1221:2:2"
},
"nodeType": "YulFunctionCall",
"src": "1221:30:2"
},
"nodeType": "YulIf",
"src": "1218:117:2"
},
{
"nodeType": "YulAssignment",
"src": "1349:73:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1394:9:2"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1405:6:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1390:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1390:22:2"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1414:7:2"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "1359:30:2"
},
"nodeType": "YulFunctionCall",
"src": "1359:63:2"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1349:6:2"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "976:9:2",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "987:7:2",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "999:6:2",
"type": ""
}
],
"src": "930:509:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1538:561:2",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1584:83:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "1586:77:2"
},
"nodeType": "YulFunctionCall",
"src": "1586:79:2"
},
"nodeType": "YulExpressionStatement",
"src": "1586:79:2"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1559:7:2"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1568:9:2"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1555:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1555:23:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1580:2:2",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1551:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1551:32:2"
},
"nodeType": "YulIf",
"src": "1548:119:2"
},
{
"nodeType": "YulBlock",
"src": "1677:287:2",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1692:45:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1723:9:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1734:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1719:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1719:17:2"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1706:12:2"
},
"nodeType": "YulFunctionCall",
"src": "1706:31:2"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1696:6:2",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1784:83:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "1786:77:2"
},
"nodeType": "YulFunctionCall",
"src": "1786:79:2"
},
"nodeType": "YulExpressionStatement",
"src": "1786:79:2"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1756:6:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1764:18:2",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1753:2:2"
},
"nodeType": "YulFunctionCall",
"src": "1753:30:2"
},
"nodeType": "YulIf",
"src": "1750:117:2"
},
{
"nodeType": "YulAssignment",
"src": "1881:73:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1926:9:2"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1937:6:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1922:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1922:22:2"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1946:7:2"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "1891:30:2"
},
"nodeType": "YulFunctionCall",
"src": "1891:63:2"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1881:6:2"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1974:118:2",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1989:16:2",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2003:2:2",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1993:6:2",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2019:63:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2054:9:2"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2065:6:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2050:3:2"
},
"nodeType": "YulFunctionCall",
"src": "2050:22:2"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2074:7:2"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "2029:20:2"
},
"nodeType": "YulFunctionCall",
"src": "2029:53:2"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2019:6:2"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptrt_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1500:9:2",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1511:7:2",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1523:6:2",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1531:6:2",
"type": ""
}
],
"src": "1445:654:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2171:263:2",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2217:83:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "2219:77:2"
},
"nodeType": "YulFunctionCall",
"src": "2219:79:2"
},
"nodeType": "YulExpressionStatement",
"src": "2219:79:2"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2192:7:2"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2201:9:2"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2188:3:2"
},
"nodeType": "YulFunctionCall",
"src": "2188:23:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2213:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2184:3:2"
},
"nodeType": "YulFunctionCall",
"src": "2184:32:2"
},
"nodeType": "YulIf",
"src": "2181:119:2"
},
{
"nodeType": "YulBlock",
"src": "2310:117:2",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2325:15:2",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2339:1:2",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2329:6:2",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2354:63:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2389:9:2"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2400:6:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2385:3:2"
},
"nodeType": "YulFunctionCall",
"src": "2385:22:2"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2409:7:2"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "2364:20:2"
},
"nodeType": "YulFunctionCall",
"src": "2364:53:2"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2354:6:2"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2141:9:2",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2152:7:2",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2164:6:2",
"type": ""
}
],
"src": "2105:329:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2532:272:2",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2542:53:2",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2589:5:2"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2556:32:2"
},
"nodeType": "YulFunctionCall",
"src": "2556:39:2"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2546:6:2",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2604:78:2",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2670:3:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2675:6:2"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2611:58:2"
},
"nodeType": "YulFunctionCall",
"src": "2611:71:2"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2604:3:2"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2717:5:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2724:4:2",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2713:3:2"
},
"nodeType": "YulFunctionCall",
"src": "2713:16:2"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2731:3:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2736:6:2"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "2691:21:2"
},
"nodeType": "YulFunctionCall",
"src": "2691:52:2"
},
"nodeType": "YulExpressionStatement",
"src": "2691:52:2"
},
{
"nodeType": "YulAssignment",
"src": "2752:46:2",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2763:3:2"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2790:6:2"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "2768:21:2"
},
"nodeType": "YulFunctionCall",
"src": "2768:29:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2759:3:2"
},
"nodeType": "YulFunctionCall",
"src": "2759:39:2"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2752:3:2"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2513:5:2",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2520:3:2",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2528:3:2",
"type": ""
}
],
"src": "2440:364:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2920:267:2",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2930:53:2",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2977:5:2"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2944:32:2"
},
"nodeType": "YulFunctionCall",
"src": "2944:39:2"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2934:6:2",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2992:96:2",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3076:3:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3081:6:2"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "2999:76:2"
},
"nodeType": "YulFunctionCall",
"src": "2999:89:2"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2992:3:2"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3123:5:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3130:4:2",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3119:3:2"
},
"nodeType": "YulFunctionCall",
"src": "3119:16:2"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3137:3:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3142:6:2"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "3097:21:2"
},
"nodeType": "YulFunctionCall",
"src": "3097:52:2"
},
"nodeType": "YulExpressionStatement",
"src": "3097:52:2"
},
{
"nodeType": "YulAssignment",
"src": "3158:23:2",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3169:3:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3174:6:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3165:3:2"
},
"nodeType": "YulFunctionCall",
"src": "3165:16:2"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3158:3:2"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2901:5:2",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2908:3:2",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2916:3:2",
"type": ""
}
],
"src": "2810:377:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3258:53:2",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3275:3:2"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3298:5:2"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "3280:17:2"
},
"nodeType": "YulFunctionCall",
"src": "3280:24:2"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3268:6:2"
},
"nodeType": "YulFunctionCall",
"src": "3268:37:2"
},
"nodeType": "YulExpressionStatement",
"src": "3268:37:2"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3246:5:2",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3253:3:2",
"type": ""
}
],
"src": "3193:118:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3453:139:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3464:102:2",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3553:6:2"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3562:3:2"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "3471:81:2"
},
"nodeType": "YulFunctionCall",
"src": "3471:95:2"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3464:3:2"
}
]
},
{
"nodeType": "YulAssignment",
"src": "3576:10:2",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3583:3:2"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3576:3:2"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_string_memory_ptr__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3432:3:2",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3438:6:2",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3449:3:2",
"type": ""
}
],
"src": "3317:275:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3696:124:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3706:26:2",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3718:9:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3729:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3714:3:2"
},
"nodeType": "YulFunctionCall",
"src": "3714:18:2"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3706:4:2"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3786:6:2"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3799:9:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3810:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3795:3:2"
},
"nodeType": "YulFunctionCall",
"src": "3795:17:2"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "3742:43:2"
},
"nodeType": "YulFunctionCall",
"src": "3742:71:2"
},
"nodeType": "YulExpressionStatement",
"src": "3742:71:2"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3668:9:2",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3680:6:2",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3691:4:2",
"type": ""
}
],
"src": "3598:222:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3972:277:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3982:26:2",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3994:9:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4005:2:2",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3990:3:2"
},
"nodeType": "YulFunctionCall",
"src": "3990:18:2"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3982:4:2"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4062:6:2"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4075:9:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4086:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4071:3:2"
},
"nodeType": "YulFunctionCall",
"src": "4071:17:2"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "4018:43:2"
},
"nodeType": "YulFunctionCall",
"src": "4018:71:2"
},
"nodeType": "YulExpressionStatement",
"src": "4018:71:2"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4110:9:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4121:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4106:3:2"
},
"nodeType": "YulFunctionCall",
"src": "4106:18:2"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4130:4:2"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4136:9:2"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4126:3:2"
},
"nodeType": "YulFunctionCall",
"src": "4126:20:2"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4099:6:2"
},
"nodeType": "YulFunctionCall",
"src": "4099:48:2"
},
"nodeType": "YulExpressionStatement",
"src": "4099:48:2"
},
{
"nodeType": "YulAssignment",
"src": "4156:86:2",
"value": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "4228:6:2"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4237:4:2"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "4164:63:2"
},
"nodeType": "YulFunctionCall",
"src": "4164:78:2"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4156:4:2"
}
]
}
]
},
"name": "abi_encode_tuple_t_uint256_t_string_memory_ptr__to_t_uint256_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3936:9:2",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "3948:6:2",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3956:6:2",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3967:4:2",
"type": ""
}
],
"src": "3826:423:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4296:88:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4306:30:2",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nodeType": "YulIdentifier",
"src": "4316:18:2"
},
"nodeType": "YulFunctionCall",
"src": "4316:20:2"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "4306:6:2"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "4365:6:2"
},
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "4373:4:2"
}
],
"functionName": {
"name": "finalize_allocation",
"nodeType": "YulIdentifier",
"src": "4345:19:2"
},
"nodeType": "YulFunctionCall",
"src": "4345:33:2"
},
"nodeType": "YulExpressionStatement",
"src": "4345:33:2"
}
]
},
"name": "allocate_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "4280:4:2",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "4289:6:2",
"type": ""
}
],
"src": "4255:129:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4430:35:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4440:19:2",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4456:2:2",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "4450:5:2"
},
"nodeType": "YulFunctionCall",
"src": "4450:9:2"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "4440:6:2"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "4423:6:2",
"type": ""
}
],
"src": "4390:75:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4538:241:2",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4643:22:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "4645:16:2"
},
"nodeType": "YulFunctionCall",
"src": "4645:18:2"
},
"nodeType": "YulExpressionStatement",
"src": "4645:18:2"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4615:6:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4623:18:2",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4612:2:2"
},
"nodeType": "YulFunctionCall",
"src": "4612:30:2"
},
"nodeType": "YulIf",
"src": "4609:56:2"
},
{
"nodeType": "YulAssignment",
"src": "4675:37:2",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4705:6:2"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "4683:21:2"
},
"nodeType": "YulFunctionCall",
"src": "4683:29:2"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "4675:4:2"
}
]
},
{
"nodeType": "YulAssignment",
"src": "4749:23:2",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "4761:4:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4767:4:2",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4757:3:2"
},
"nodeType": "YulFunctionCall",
"src": "4757:15:2"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "4749:4:2"
}
]
}
]
},
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4522:6:2",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "4533:4:2",
"type": ""
}
],
"src": "4471:308:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4844:40:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4855:22:2",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4871:5:2"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "4865:5:2"
},
"nodeType": "YulFunctionCall",
"src": "4865:12:2"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4855:6:2"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4827:5:2",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4837:6:2",
"type": ""
}
],
"src": "4785:99:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4986:73:2",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5003:3:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5008:6:2"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4996:6:2"
},
"nodeType": "YulFunctionCall",
"src": "4996:19:2"
},
"nodeType": "YulExpressionStatement",
"src": "4996:19:2"
},
{
"nodeType": "YulAssignment",
"src": "5024:29:2",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5043:3:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5048:4:2",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5039:3:2"
},
"nodeType": "YulFunctionCall",
"src": "5039:14:2"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "5024:11:2"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4958:3:2",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4963:6:2",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "4974:11:2",
"type": ""
}
],
"src": "4890:169:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5179:34:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5189:18:2",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5204:3:2"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "5189:11:2"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5151:3:2",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5156:6:2",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "5167:11:2",
"type": ""
}
],
"src": "5065:148:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5263:261:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5273:25:2",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5296:1:2"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "5278:17:2"
},
"nodeType": "YulFunctionCall",
"src": "5278:20:2"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5273:1:2"
}
]
},
{
"nodeType": "YulAssignment",
"src": "5307:25:2",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5330:1:2"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "5312:17:2"
},
"nodeType": "YulFunctionCall",
"src": "5312:20:2"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5307:1:2"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5470:22:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "5472:16:2"
},
"nodeType": "YulFunctionCall",
"src": "5472:18:2"
},
"nodeType": "YulExpressionStatement",
"src": "5472:18:2"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5391:1:2"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5398:66:2",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5466:1:2"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5394:3:2"
},
"nodeType": "YulFunctionCall",
"src": "5394:74:2"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "5388:2:2"
},
"nodeType": "YulFunctionCall",
"src": "5388:81:2"
},
"nodeType": "YulIf",
"src": "5385:107:2"
},
{
"nodeType": "YulAssignment",
"src": "5502:16:2",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5513:1:2"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5516:1:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5509:3:2"
},
"nodeType": "YulFunctionCall",
"src": "5509:9:2"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "5502:3:2"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "5250:1:2",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "5253:1:2",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "5259:3:2",
"type": ""
}
],
"src": "5219:305:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5575:32:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5585:16:2",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "5596:5:2"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "5585:7:2"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5557:5:2",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "5567:7:2",
"type": ""
}
],
"src": "5530:77:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5664:103:2",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "5687:3:2"
},
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "5692:3:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5697:6:2"
}
],
"functionName": {
"name": "calldatacopy",
"nodeType": "YulIdentifier",
"src": "5674:12:2"
},
"nodeType": "YulFunctionCall",
"src": "5674:30:2"
},
"nodeType": "YulExpressionStatement",
"src": "5674:30:2"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "5745:3:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5750:6:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5741:3:2"
},
"nodeType": "YulFunctionCall",
"src": "5741:16:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5759:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5734:6:2"
},
"nodeType": "YulFunctionCall",
"src": "5734:27:2"
},
"nodeType": "YulExpressionStatement",
"src": "5734:27:2"
}
]
},
"name": "copy_calldata_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "5646:3:2",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "5651:3:2",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5656:6:2",
"type": ""
}
],
"src": "5613:154:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5822:258:2",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5832:10:2",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5841:1:2",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "5836:1:2",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5901:63:2",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "5926:3:2"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5931:1:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5922:3:2"
},
"nodeType": "YulFunctionCall",
"src": "5922:11:2"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "5945:3:2"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5950:1:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5941:3:2"
},
"nodeType": "YulFunctionCall",
"src": "5941:11:2"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "5935:5:2"
},
"nodeType": "YulFunctionCall",
"src": "5935:18:2"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5915:6:2"
},
"nodeType": "YulFunctionCall",
"src": "5915:39:2"
},
"nodeType": "YulExpressionStatement",
"src": "5915:39:2"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5862:1:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5865:6:2"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "5859:2:2"
},
"nodeType": "YulFunctionCall",
"src": "5859:13:2"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "5873:19:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5875:15:2",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5884:1:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5887:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5880:3:2"
},
"nodeType": "YulFunctionCall",
"src": "5880:10:2"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5875:1:2"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "5855:3:2",
"statements": []
},
"src": "5851:113:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5998:76:2",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "6048:3:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6053:6:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6044:3:2"
},
"nodeType": "YulFunctionCall",
"src": "6044:16:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6062:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6037:6:2"
},
"nodeType": "YulFunctionCall",
"src": "6037:27:2"
},
"nodeType": "YulExpressionStatement",
"src": "6037:27:2"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5979:1:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5982:6:2"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "5976:2:2"
},
"nodeType": "YulFunctionCall",
"src": "5976:13:2"
},
"nodeType": "YulIf",
"src": "5973:101:2"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "5804:3:2",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "5809:3:2",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5814:6:2",
"type": ""
}
],
"src": "5773:307:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6137:269:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6147:22:2",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "6161:4:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6167:1:2",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "6157:3:2"
},
"nodeType": "YulFunctionCall",
"src": "6157:12:2"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6147:6:2"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "6178:38:2",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "6208:4:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6214:1:2",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "6204:3:2"
},
"nodeType": "YulFunctionCall",
"src": "6204:12:2"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "6182:18:2",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "6255:51:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6269:27:2",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6283:6:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6291:4:2",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "6279:3:2"
},
"nodeType": "YulFunctionCall",
"src": "6279:17:2"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6269:6:2"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "6235:18:2"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "6228:6:2"
},
"nodeType": "YulFunctionCall",
"src": "6228:26:2"
},
"nodeType": "YulIf",
"src": "6225:81:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6358:42:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "6372:16:2"
},
"nodeType": "YulFunctionCall",
"src": "6372:18:2"
},
"nodeType": "YulExpressionStatement",
"src": "6372:18:2"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "6322:18:2"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6345:6:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6353:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "6342:2:2"
},
"nodeType": "YulFunctionCall",
"src": "6342:14:2"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "6319:2:2"
},
"nodeType": "YulFunctionCall",
"src": "6319:38:2"
},
"nodeType": "YulIf",
"src": "6316:84:2"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "6121:4:2",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "6130:6:2",
"type": ""
}
],
"src": "6086:320:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6455:238:2",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6465:58:2",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "6487:6:2"
},
{
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "6517:4:2"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "6495:21:2"
},
"nodeType": "YulFunctionCall",
"src": "6495:27:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6483:3:2"
},
"nodeType": "YulFunctionCall",
"src": "6483:40:2"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "6469:10:2",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "6634:22:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "6636:16:2"
},
"nodeType": "YulFunctionCall",
"src": "6636:18:2"
},
"nodeType": "YulExpressionStatement",
"src": "6636:18:2"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "6577:10:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6589:18:2",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "6574:2:2"
},
"nodeType": "YulFunctionCall",
"src": "6574:34:2"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "6613:10:2"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "6625:6:2"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "6610:2:2"
},
"nodeType": "YulFunctionCall",
"src": "6610:22:2"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "6571:2:2"
},
"nodeType": "YulFunctionCall",
"src": "6571:62:2"
},
"nodeType": "YulIf",
"src": "6568:88:2"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6672:2:2",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "6676:10:2"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6665:6:2"
},
"nodeType": "YulFunctionCall",
"src": "6665:22:2"
},
"nodeType": "YulExpressionStatement",
"src": "6665:22:2"
}
]
},
"name": "finalize_allocation",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "6441:6:2",
"type": ""
},
{
"name": "size",
"nodeType": "YulTypedName",
"src": "6449:4:2",
"type": ""
}
],
"src": "6412:281:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6727:152:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6744:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6747:77:2",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6737:6:2"
},
"nodeType": "YulFunctionCall",
"src": "6737:88:2"
},
"nodeType": "YulExpressionStatement",
"src": "6737:88:2"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6841:1:2",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6844:4:2",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6834:6:2"
},
"nodeType": "YulFunctionCall",
"src": "6834:15:2"
},
"nodeType": "YulExpressionStatement",
"src": "6834:15:2"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6865:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6868:4:2",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6858:6:2"
},
"nodeType": "YulFunctionCall",
"src": "6858:15:2"
},
"nodeType": "YulExpressionStatement",
"src": "6858:15:2"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "6699:180:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6913:152:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6930:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6933:77:2",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6923:6:2"
},
"nodeType": "YulFunctionCall",
"src": "6923:88:2"
},
"nodeType": "YulExpressionStatement",
"src": "6923:88:2"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7027:1:2",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7030:4:2",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7020:6:2"
},
"nodeType": "YulFunctionCall",
"src": "7020:15:2"
},
"nodeType": "YulExpressionStatement",
"src": "7020:15:2"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7051:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7054:4:2",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7044:6:2"
},
"nodeType": "YulFunctionCall",
"src": "7044:15:2"
},
"nodeType": "YulExpressionStatement",
"src": "7044:15:2"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "6885:180:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7099:152:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7116:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7119:77:2",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7109:6:2"
},
"nodeType": "YulFunctionCall",
"src": "7109:88:2"
},
"nodeType": "YulExpressionStatement",
"src": "7109:88:2"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7213:1:2",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7216:4:2",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7206:6:2"
},
"nodeType": "YulFunctionCall",
"src": "7206:15:2"
},
"nodeType": "YulExpressionStatement",
"src": "7206:15:2"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7237:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7240:4:2",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7230:6:2"
},
"nodeType": "YulFunctionCall",
"src": "7230:15:2"
},
"nodeType": "YulExpressionStatement",
"src": "7230:15:2"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "7071:180:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7346:28:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7363:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7366:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7356:6:2"
},
"nodeType": "YulFunctionCall",
"src": "7356:12:2"
},
"nodeType": "YulExpressionStatement",
"src": "7356:12:2"
}
]
},
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulFunctionDefinition",
"src": "7257:117:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7469:28:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7486:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7489:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7479:6:2"
},
"nodeType": "YulFunctionCall",
"src": "7479:12:2"
},
"nodeType": "YulExpressionStatement",
"src": "7479:12:2"
}
]
},
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulFunctionDefinition",
"src": "7380:117:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7592:28:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7609:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7612:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7602:6:2"
},
"nodeType": "YulFunctionCall",
"src": "7602:12:2"
},
"nodeType": "YulExpressionStatement",
"src": "7602:12:2"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "7503:117:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7715:28:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7732:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7735:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7725:6:2"
},
"nodeType": "YulFunctionCall",
"src": "7725:12:2"
},
"nodeType": "YulExpressionStatement",
"src": "7725:12:2"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "7626:117:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7797:54:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7807:38:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7825:5:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7832:2:2",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7821:3:2"
},
"nodeType": "YulFunctionCall",
"src": "7821:14:2"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7841:2:2",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "7837:3:2"
},
"nodeType": "YulFunctionCall",
"src": "7837:7:2"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "7817:3:2"
},
"nodeType": "YulFunctionCall",
"src": "7817:28:2"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "7807:6:2"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7780:5:2",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "7790:6:2",
"type": ""
}
],
"src": "7749:102:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7900:79:2",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "7957:16:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7966:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7969:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7959:6:2"
},
"nodeType": "YulFunctionCall",
"src": "7959:12:2"
},
"nodeType": "YulExpressionStatement",
"src": "7959:12:2"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7923:5:2"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7948:5:2"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "7930:17:2"
},
"nodeType": "YulFunctionCall",
"src": "7930:24:2"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "7920:2:2"
},
"nodeType": "YulFunctionCall",
"src": "7920:35:2"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "7913:6:2"
},
"nodeType": "YulFunctionCall",
"src": "7913:43:2"
},
"nodeType": "YulIf",
"src": "7910:63:2"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7893:5:2",
"type": ""
}
],
"src": "7857:122:2"
}
]
},
"contents": "{\n\n function abi_decode_available_length_t_string_memory_ptr(src, length, end) -> array {\n array := allocate_memory(array_allocation_size_t_string_memory_ptr(length))\n mstore(array, length)\n let dst := add(array, 0x20)\n if gt(add(src, length), end) { revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() }\n copy_calldata_to_memory(src, dst, length)\n }\n\n // string\n function abi_decode_t_string_memory_ptr(offset, end) -> array {\n if iszero(slt(add(offset, 0x1f), end)) { revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() }\n let length := calldataload(offset)\n array := abi_decode_available_length_t_string_memory_ptr(add(offset, 0x20), length, end)\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_string_memory_ptr(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := calldataload(add(headStart, 0))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value0 := abi_decode_t_string_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_string_memory_ptrt_uint256(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := calldataload(add(headStart, 0))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value0 := abi_decode_t_string_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, length)\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_packed_t_string_memory_ptr__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed(pos , value0) -> end {\n\n pos := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value0, pos)\n\n end := pos\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_tuple_t_uint256_t_string_memory_ptr__to_t_uint256_t_string_memory_ptr__fromStack_reversed(headStart , value1, value0) -> tail {\n tail := add(headStart, 64)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n mstore(add(headStart, 32), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value1, tail)\n\n }\n\n function allocate_memory(size) -> memPtr {\n memPtr := allocate_unbounded()\n finalize_allocation(memPtr, size)\n }\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function array_allocation_size_t_string_memory_ptr(length) -> size {\n // Make sure we can allocate memory without overflow\n if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n\n size := round_up_to_mul_of_32(length)\n\n // add length slot\n size := add(size, 0x20)\n\n }\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, length) -> updated_pos {\n updated_pos := pos\n }\n\n function checked_add_t_uint256(x, y) -> sum {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n // overflow, if x > (maxValue - y)\n if gt(x, sub(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, y)) { panic_error_0x11() }\n\n sum := add(x, y)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function copy_calldata_to_memory(src, dst, length) {\n calldatacopy(dst, src, length)\n // clear end\n mstore(add(dst, length), 0)\n }\n\n function copy_memory_to_memory(src, dst, length) {\n let i := 0\n for { } lt(i, length) { i := add(i, 32) }\n {\n mstore(add(dst, i), mload(add(src, i)))\n }\n if gt(i, length)\n {\n // clear end\n mstore(add(dst, length), 0)\n }\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function finalize_allocation(memPtr, size) {\n let newFreePtr := add(memPtr, round_up_to_mul_of_32(size))\n // protect against overflow\n if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() {\n revert(0, 0)\n }\n\n function revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n}\n",
"id": 2,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106100575760003560e01c80632e64cec11461005c5780636057361d1461007a5780636f760f41146100965780639e7a13ad146100b2578063b2ac62ef146100e3575b600080fd5b610064610113565b604051610071919061053c565b60405180910390f35b610094600480360381019061008f919061047f565b61011c565b005b6100b060048036038101906100ab9190610423565b610132565b005b6100cc60048036038101906100c7919061047f565b6101c8565b6040516100da929190610557565b60405180910390f35b6100fd60048036038101906100f891906103da565b610284565b60405161010a919061053c565b60405180910390f35b60008054905090565b6005816101299190610604565b60008190555050565b60006040518060400160405280838152602001848152509050600281908060018154018082558091505060019003906000526020600020906002020160009091909190915060008201518160000155602082015181600101908051906020019061019d9291906102b2565b505050816001846040516101b19190610525565b908152602001604051809103902081905550505050565b600281815481106101d857600080fd5b9060005260206000209060020201600091509050806000015490806001018054610201906106a6565b80601f016020809104026020016040519081016040528092919081815260200182805461022d906106a6565b801561027a5780601f1061024f5761010080835404028352916020019161027a565b820191906000526020600020905b81548152906001019060200180831161025d57829003601f168201915b5050505050905082565b6001818051602081018201805184825260208301602085012081835280955050505050506000915090505481565b8280546102be906106a6565b90600052602060002090601f0160209004810192826102e05760008555610327565b82601f106102f957805160ff1916838001178555610327565b82800160010185558215610327579182015b8281111561032657825182559160200191906001019061030b565b5b5090506103349190610338565b5090565b5b80821115610351576000816000905550600101610339565b5090565b6000610368610363846105ac565b610587565b9050828152602081018484840111156103845761038361079b565b5b61038f848285610664565b509392505050565b600082601f8301126103ac576103ab610796565b5b81356103bc848260208601610355565b91505092915050565b6000813590506103d4816107bb565b92915050565b6000602082840312156103f0576103ef6107a5565b5b600082013567ffffffffffffffff81111561040e5761040d6107a0565b5b61041a84828501610397565b91505092915050565b6000806040838503121561043a576104396107a5565b5b600083013567ffffffffffffffff811115610458576104576107a0565b5b61046485828601610397565b9250506020610475858286016103c5565b9150509250929050565b600060208284031215610495576104946107a5565b5b60006104a3848285016103c5565b91505092915050565b60006104b7826105dd565b6104c181856105e8565b93506104d1818560208601610673565b6104da816107aa565b840191505092915050565b60006104f0826105dd565b6104fa81856105f9565b935061050a818560208601610673565b80840191505092915050565b61051f8161065a565b82525050565b600061053182846104e5565b915081905092915050565b60006020820190506105516000830184610516565b92915050565b600060408201905061056c6000830185610516565b818103602083015261057e81846104ac565b90509392505050565b60006105916105a2565b905061059d82826106d8565b919050565b6000604051905090565b600067ffffffffffffffff8211156105c7576105c6610767565b5b6105d0826107aa565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600061060f8261065a565b915061061a8361065a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561064f5761064e610709565b5b828201905092915050565b6000819050919050565b82818337600083830152505050565b60005b83811015610691578082015181840152602081019050610676565b838111156106a0576000848401525b50505050565b600060028204905060018216806106be57607f821691505b602082108114156106d2576106d1610738565b5b50919050565b6106e1826107aa565b810181811067ffffffffffffffff82111715610700576106ff610767565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b6107c48161065a565b81146107cf57600080fd5b5056fea264697066735822122062d1a63d7c7eebfcdb861a583786a633f24b2492fcad4d6ee4b2925a719dd10b64736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x57 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x2E64CEC1 EQ PUSH2 0x5C JUMPI DUP1 PUSH4 0x6057361D EQ PUSH2 0x7A JUMPI DUP1 PUSH4 0x6F760F41 EQ PUSH2 0x96 JUMPI DUP1 PUSH4 0x9E7A13AD EQ PUSH2 0xB2 JUMPI DUP1 PUSH4 0xB2AC62EF EQ PUSH2 0xE3 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x64 PUSH2 0x113 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x71 SWAP2 SWAP1 PUSH2 0x53C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x94 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x8F SWAP2 SWAP1 PUSH2 0x47F JUMP JUMPDEST PUSH2 0x11C JUMP JUMPDEST STOP JUMPDEST PUSH2 0xB0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xAB SWAP2 SWAP1 PUSH2 0x423 JUMP JUMPDEST PUSH2 0x132 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xCC PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xC7 SWAP2 SWAP1 PUSH2 0x47F JUMP JUMPDEST PUSH2 0x1C8 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xDA SWAP3 SWAP2 SWAP1 PUSH2 0x557 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xFD PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xF8 SWAP2 SWAP1 PUSH2 0x3DA JUMP JUMPDEST PUSH2 0x284 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x10A SWAP2 SWAP1 PUSH2 0x53C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x5 DUP2 PUSH2 0x129 SWAP2 SWAP1 PUSH2 0x604 JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 DUP4 DUP2 MSTORE PUSH1 0x20 ADD DUP5 DUP2 MSTORE POP SWAP1 POP PUSH1 0x2 DUP2 SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD SSTORE PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x19D SWAP3 SWAP2 SWAP1 PUSH2 0x2B2 JUMP JUMPDEST POP POP POP DUP2 PUSH1 0x1 DUP5 PUSH1 0x40 MLOAD PUSH2 0x1B1 SWAP2 SWAP1 PUSH2 0x525 JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 DUP2 SWAP1 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x2 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x1D8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH1 0x0 SWAP2 POP SWAP1 POP DUP1 PUSH1 0x0 ADD SLOAD SWAP1 DUP1 PUSH1 0x1 ADD DUP1 SLOAD PUSH2 0x201 SWAP1 PUSH2 0x6A6 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x22D SWAP1 PUSH2 0x6A6 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x27A JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x24F JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x27A JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x25D JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP DUP3 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP1 MLOAD PUSH1 0x20 DUP2 ADD DUP3 ADD DUP1 MLOAD DUP5 DUP3 MSTORE PUSH1 0x20 DUP4 ADD PUSH1 0x20 DUP6 ADD KECCAK256 DUP2 DUP4 MSTORE DUP1 SWAP6 POP POP POP POP POP POP PUSH1 0x0 SWAP2 POP SWAP1 POP SLOAD DUP2 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH2 0x2BE SWAP1 PUSH2 0x6A6 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0x2E0 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0x327 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0x2F9 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0x327 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0x327 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x326 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x30B JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x334 SWAP2 SWAP1 PUSH2 0x338 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x351 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x339 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x368 PUSH2 0x363 DUP5 PUSH2 0x5AC JUMP JUMPDEST PUSH2 0x587 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x384 JUMPI PUSH2 0x383 PUSH2 0x79B JUMP JUMPDEST JUMPDEST PUSH2 0x38F DUP5 DUP3 DUP6 PUSH2 0x664 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x3AC JUMPI PUSH2 0x3AB PUSH2 0x796 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x3BC DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x355 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x3D4 DUP2 PUSH2 0x7BB JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3F0 JUMPI PUSH2 0x3EF PUSH2 0x7A5 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP3 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x40E JUMPI PUSH2 0x40D PUSH2 0x7A0 JUMP JUMPDEST JUMPDEST PUSH2 0x41A DUP5 DUP3 DUP6 ADD PUSH2 0x397 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x43A JUMPI PUSH2 0x439 PUSH2 0x7A5 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x458 JUMPI PUSH2 0x457 PUSH2 0x7A0 JUMP JUMPDEST JUMPDEST PUSH2 0x464 DUP6 DUP3 DUP7 ADD PUSH2 0x397 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x475 DUP6 DUP3 DUP7 ADD PUSH2 0x3C5 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x495 JUMPI PUSH2 0x494 PUSH2 0x7A5 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x4A3 DUP5 DUP3 DUP6 ADD PUSH2 0x3C5 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4B7 DUP3 PUSH2 0x5DD JUMP JUMPDEST PUSH2 0x4C1 DUP2 DUP6 PUSH2 0x5E8 JUMP JUMPDEST SWAP4 POP PUSH2 0x4D1 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x673 JUMP JUMPDEST PUSH2 0x4DA DUP2 PUSH2 0x7AA JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4F0 DUP3 PUSH2 0x5DD JUMP JUMPDEST PUSH2 0x4FA DUP2 DUP6 PUSH2 0x5F9 JUMP JUMPDEST SWAP4 POP PUSH2 0x50A DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x673 JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x51F DUP2 PUSH2 0x65A JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x531 DUP3 DUP5 PUSH2 0x4E5 JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x551 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x516 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x56C PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0x516 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0x57E DUP2 DUP5 PUSH2 0x4AC JUMP JUMPDEST SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x591 PUSH2 0x5A2 JUMP JUMPDEST SWAP1 POP PUSH2 0x59D DUP3 DUP3 PUSH2 0x6D8 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x5C7 JUMPI PUSH2 0x5C6 PUSH2 0x767 JUMP JUMPDEST JUMPDEST PUSH2 0x5D0 DUP3 PUSH2 0x7AA JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x60F DUP3 PUSH2 0x65A JUMP JUMPDEST SWAP2 POP PUSH2 0x61A DUP4 PUSH2 0x65A JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x64F JUMPI PUSH2 0x64E PUSH2 0x709 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x691 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x676 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x6A0 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x6BE JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x6D2 JUMPI PUSH2 0x6D1 PUSH2 0x738 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x6E1 DUP3 PUSH2 0x7AA JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x700 JUMPI PUSH2 0x6FF PUSH2 0x767 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x7C4 DUP2 PUSH2 0x65A JUMP JUMPDEST DUP2 EQ PUSH2 0x7CF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH3 0xD1A63D PUSH29 0x7EEBFCDB861A583786A633F24B2492FCAD4D6EE4B2925A719DD10B6473 PUSH16 0x6C634300080700330000000000000000 ",
"sourceMap": "123:220:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1097:88:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;241:100:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1332:257:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;778:22;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;631:55;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1097:88;1137:7;1163:15;;1156:22;;1097:88;:::o;241:100:0:-;333:1;320:10;:14;;;;:::i;:::-;302:15;:32;;;;241:100;:::o;1332:257:1:-;1415:23;1441:52;;;;;;;;1461:16;1441:52;;;;1485:5;1441:52;;;1415:78;;1503:6;1515:9;1503:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;1566:16;1535:21;1557:5;1535:28;;;;;;:::i;:::-;;;;;;;;;;;;;:47;;;;1405:184;1332:257;;:::o;778:22::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;631:55::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:412:2:-;85:5;110:66;126:49;168:6;126:49;:::i;:::-;110:66;:::i;:::-;101:75;;199:6;192:5;185:21;237:4;230:5;226:16;275:3;266:6;261:3;257:16;254:25;251:112;;;282:79;;:::i;:::-;251:112;372:41;406:6;401:3;396;372:41;:::i;:::-;91:328;7:412;;;;;:::o;439:340::-;495:5;544:3;537:4;529:6;525:17;521:27;511:122;;552:79;;:::i;:::-;511:122;669:6;656:20;694:79;769:3;761:6;754:4;746:6;742:17;694:79;:::i;:::-;685:88;;501:278;439:340;;;;:::o;785:139::-;831:5;869:6;856:20;847:29;;885:33;912:5;885:33;:::i;:::-;785:139;;;;:::o;930:509::-;999:6;1048:2;1036:9;1027:7;1023:23;1019:32;1016:119;;;1054:79;;:::i;:::-;1016:119;1202:1;1191:9;1187:17;1174:31;1232:18;1224:6;1221:30;1218:117;;;1254:79;;:::i;:::-;1218:117;1359:63;1414:7;1405:6;1394:9;1390:22;1359:63;:::i;:::-;1349:73;;1145:287;930:509;;;;:::o;1445:654::-;1523:6;1531;1580:2;1568:9;1559:7;1555:23;1551:32;1548:119;;;1586:79;;:::i;:::-;1548:119;1734:1;1723:9;1719:17;1706:31;1764:18;1756:6;1753:30;1750:117;;;1786:79;;:::i;:::-;1750:117;1891:63;1946:7;1937:6;1926:9;1922:22;1891:63;:::i;:::-;1881:73;;1677:287;2003:2;2029:53;2074:7;2065:6;2054:9;2050:22;2029:53;:::i;:::-;2019:63;;1974:118;1445:654;;;;;:::o;2105:329::-;2164:6;2213:2;2201:9;2192:7;2188:23;2184:32;2181:119;;;2219:79;;:::i;:::-;2181:119;2339:1;2364:53;2409:7;2400:6;2389:9;2385:22;2364:53;:::i;:::-;2354:63;;2310:117;2105:329;;;;:::o;2440:364::-;2528:3;2556:39;2589:5;2556:39;:::i;:::-;2611:71;2675:6;2670:3;2611:71;:::i;:::-;2604:78;;2691:52;2736:6;2731:3;2724:4;2717:5;2713:16;2691:52;:::i;:::-;2768:29;2790:6;2768:29;:::i;:::-;2763:3;2759:39;2752:46;;2532:272;2440:364;;;;:::o;2810:377::-;2916:3;2944:39;2977:5;2944:39;:::i;:::-;2999:89;3081:6;3076:3;2999:89;:::i;:::-;2992:96;;3097:52;3142:6;3137:3;3130:4;3123:5;3119:16;3097:52;:::i;:::-;3174:6;3169:3;3165:16;3158:23;;2920:267;2810:377;;;;:::o;3193:118::-;3280:24;3298:5;3280:24;:::i;:::-;3275:3;3268:37;3193:118;;:::o;3317:275::-;3449:3;3471:95;3562:3;3553:6;3471:95;:::i;:::-;3464:102;;3583:3;3576:10;;3317:275;;;;:::o;3598:222::-;3691:4;3729:2;3718:9;3714:18;3706:26;;3742:71;3810:1;3799:9;3795:17;3786:6;3742:71;:::i;:::-;3598:222;;;;:::o;3826:423::-;3967:4;4005:2;3994:9;3990:18;3982:26;;4018:71;4086:1;4075:9;4071:17;4062:6;4018:71;:::i;:::-;4136:9;4130:4;4126:20;4121:2;4110:9;4106:18;4099:48;4164:78;4237:4;4228:6;4164:78;:::i;:::-;4156:86;;3826:423;;;;;:::o;4255:129::-;4289:6;4316:20;;:::i;:::-;4306:30;;4345:33;4373:4;4365:6;4345:33;:::i;:::-;4255:129;;;:::o;4390:75::-;4423:6;4456:2;4450:9;4440:19;;4390:75;:::o;4471:308::-;4533:4;4623:18;4615:6;4612:30;4609:56;;;4645:18;;:::i;:::-;4609:56;4683:29;4705:6;4683:29;:::i;:::-;4675:37;;4767:4;4761;4757:15;4749:23;;4471:308;;;:::o;4785:99::-;4837:6;4871:5;4865:12;4855:22;;4785:99;;;:::o;4890:169::-;4974:11;5008:6;5003:3;4996:19;5048:4;5043:3;5039:14;5024:29;;4890:169;;;;:::o;5065:148::-;5167:11;5204:3;5189:18;;5065:148;;;;:::o;5219:305::-;5259:3;5278:20;5296:1;5278:20;:::i;:::-;5273:25;;5312:20;5330:1;5312:20;:::i;:::-;5307:25;;5466:1;5398:66;5394:74;5391:1;5388:81;5385:107;;;5472:18;;:::i;:::-;5385:107;5516:1;5513;5509:9;5502:16;;5219:305;;;;:::o;5530:77::-;5567:7;5596:5;5585:16;;5530:77;;;:::o;5613:154::-;5697:6;5692:3;5687;5674:30;5759:1;5750:6;5745:3;5741:16;5734:27;5613:154;;;:::o;5773:307::-;5841:1;5851:113;5865:6;5862:1;5859:13;5851:113;;;5950:1;5945:3;5941:11;5935:18;5931:1;5926:3;5922:11;5915:39;5887:2;5884:1;5880:10;5875:15;;5851:113;;;5982:6;5979:1;5976:13;5973:101;;;6062:1;6053:6;6048:3;6044:16;6037:27;5973:101;5822:258;5773:307;;;:::o;6086:320::-;6130:6;6167:1;6161:4;6157:12;6147:22;;6214:1;6208:4;6204:12;6235:18;6225:81;;6291:4;6283:6;6279:17;6269:27;;6225:81;6353:2;6345:6;6342:14;6322:18;6319:38;6316:84;;;6372:18;;:::i;:::-;6316:84;6137:269;6086:320;;;:::o;6412:281::-;6495:27;6517:4;6495:27;:::i;:::-;6487:6;6483:40;6625:6;6613:10;6610:22;6589:18;6577:10;6574:34;6571:62;6568:88;;;6636:18;;:::i;:::-;6568:88;6676:10;6672:2;6665:22;6455:238;6412:281;;:::o;6699:180::-;6747:77;6744:1;6737:88;6844:4;6841:1;6834:15;6868:4;6865:1;6858:15;6885:180;6933:77;6930:1;6923:88;7030:4;7027:1;7020:15;7054:4;7051:1;7044:15;7071:180;7119:77;7116:1;7109:88;7216:4;7213:1;7206:15;7240:4;7237:1;7230:15;7257:117;7366:1;7363;7356:12;7380:117;7489:1;7486;7479:12;7503:117;7612:1;7609;7602:12;7626:117;7735:1;7732;7725:12;7749:102;7790:6;7841:2;7837:7;7832:2;7825:5;7821:14;7817:28;7807:38;;7749:102;;;:::o;7857:122::-;7930:24;7948:5;7930:24;:::i;:::-;7923:5;7920:35;7910:63;;7969:1;7966;7959:12;7910:63;7857:122;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "411200",
"executionCost": "449",
"totalCost": "411649"
},
"external": {
"addPerson(string,uint256)": "infinite",
"nameToFavouriteNumber(string)": "infinite",
"people(uint256)": "infinite",
"retrieve()": "2415",
"store(uint256)": "infinite"
}
},
"methodIdentifiers": {
"addPerson(string,uint256)": "6f760f41",
"nameToFavouriteNumber(string)": "b2ac62ef",
"people(uint256)": "9e7a13ad",
"retrieve()": "2e64cec1",
"store(uint256)": "6057361d"
}
},
"abi": [
{
"inputs": [
{
"internalType": "string",
"name": "_name",
"type": "string"
},
{
"internalType": "uint256",
"name": "_favouriteNumber",
"type": "uint256"
}
],
"name": "addPerson",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"name": "nameToFavouriteNumber",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "people",
"outputs": [
{
"internalType": "uint256",
"name": "favNumber",
"type": "uint256"
},
{
"internalType": "string",
"name": "name",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "retrieve",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_favNumber",
"type": "uint256"
}
],
"name": "store",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.7+commit.e28d00a7"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [
{
"internalType": "string",
"name": "_name",
"type": "string"
},
{
"internalType": "uint256",
"name": "_favouriteNumber",
"type": "uint256"
}
],
"name": "addPerson",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"name": "nameToFavouriteNumber",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "people",
"outputs": [
{
"internalType": "uint256",
"name": "favNumber",
"type": "uint256"
},
{
"internalType": "string",
"name": "name",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "retrieve",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_favNumber",
"type": "uint256"
}
],
"name": "store",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/ExtraStorage.sol": "ExtraStorage"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/ExtraStorage.sol": {
"keccak256": "0xae7d43fe3b7c5c229b6bab8b7f8030214500e5880ee99640bf71d1c28d976d76",
"license": "MIT",
"urls": [
"bzz-raw://0d9327cf83474bf10a76c9b81491284cc0c5ccce01377452cf1d654835b4a676",
"dweb:/ipfs/QmNRAsYkXuT7BkKaXKx4ifdJdZXcc9PxbEjVvZZyDV4tBv"
]
},
"contracts/SimpleStorage.sol": {
"keccak256": "0x3b9274eebb254a97108cb057b3d3ae5785e2ed0ac8047bff8d42bd0c70adcb90",
"license": "MIT",
"urls": [
"bzz-raw://e0b97817373873feb7faa46fd2962bab8b76f040b4240dac2d11b9d2a3872d7e",
"dweb:/ipfs/QmdmzP9T9EV6VmZvSAgSxdhQea8ewz2nC5652QgDWtUZZL"
]
}
},
"version": 1
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"goerli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50610777806100206000396000f3fe608060405234801561001057600080fd5b50600436106100575760003560e01c80632e64cec11461005c5780636057361d1461007a5780636f760f41146100965780639e7a13ad146100b2578063b2ac62ef146100e3575b600080fd5b610064610113565b6040516100719190610530565b60405180910390f35b610094600480360381019061008f9190610473565b61011c565b005b6100b060048036038101906100ab9190610417565b610126565b005b6100cc60048036038101906100c79190610473565b6101bc565b6040516100da92919061054b565b60405180910390f35b6100fd60048036038101906100f891906103ce565b610278565b60405161010a9190610530565b60405180910390f35b60008054905090565b8060008190555050565b6000604051806040016040528083815260200184815250905060028190806001815401808255809150506001900390600052602060002090600202016000909190919091506000820151816000015560208201518160010190805190602001906101919291906102a6565b505050816001846040516101a59190610519565b908152602001604051809103902081905550505050565b600281815481106101cc57600080fd5b90600052602060002090600202016000915090508060000154908060010180546101f590610644565b80601f016020809104026020016040519081016040528092919081815260200182805461022190610644565b801561026e5780601f106102435761010080835404028352916020019161026e565b820191906000526020600020905b81548152906001019060200180831161025157829003601f168201915b5050505050905082565b6001818051602081018201805184825260208301602085012081835280955050505050506000915090505481565b8280546102b290610644565b90600052602060002090601f0160209004810192826102d4576000855561031b565b82601f106102ed57805160ff191683800117855561031b565b8280016001018555821561031b579182015b8281111561031a5782518255916020019190600101906102ff565b5b509050610328919061032c565b5090565b5b8082111561034557600081600090555060010161032d565b5090565b600061035c610357846105a0565b61057b565b9050828152602081018484840111156103785761037761070a565b5b610383848285610602565b509392505050565b600082601f8301126103a05761039f610705565b5b81356103b0848260208601610349565b91505092915050565b6000813590506103c88161072a565b92915050565b6000602082840312156103e4576103e3610714565b5b600082013567ffffffffffffffff8111156104025761040161070f565b5b61040e8482850161038b565b91505092915050565b6000806040838503121561042e5761042d610714565b5b600083013567ffffffffffffffff81111561044c5761044b61070f565b5b6104588582860161038b565b9250506020610469858286016103b9565b9150509250929050565b60006020828403121561048957610488610714565b5b6000610497848285016103b9565b91505092915050565b60006104ab826105d1565b6104b581856105dc565b93506104c5818560208601610611565b6104ce81610719565b840191505092915050565b60006104e4826105d1565b6104ee81856105ed565b93506104fe818560208601610611565b80840191505092915050565b610513816105f8565b82525050565b600061052582846104d9565b915081905092915050565b6000602082019050610545600083018461050a565b92915050565b6000604082019050610560600083018561050a565b818103602083015261057281846104a0565b90509392505050565b6000610585610596565b90506105918282610676565b919050565b6000604051905090565b600067ffffffffffffffff8211156105bb576105ba6106d6565b5b6105c482610719565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b6000819050919050565b82818337600083830152505050565b60005b8381101561062f578082015181840152602081019050610614565b8381111561063e576000848401525b50505050565b6000600282049050600182168061065c57607f821691505b602082108114156106705761066f6106a7565b5b50919050565b61067f82610719565b810181811067ffffffffffffffff8211171561069e5761069d6106d6565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b610733816105f8565b811461073e57600080fd5b5056fea26469706673582212200313c938aeb2bf6c5416e6f933f57a53c4360448f669e13a950a8403d072146964736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x777 DUP1 PUSH2 0x20 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x57 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x2E64CEC1 EQ PUSH2 0x5C JUMPI DUP1 PUSH4 0x6057361D EQ PUSH2 0x7A JUMPI DUP1 PUSH4 0x6F760F41 EQ PUSH2 0x96 JUMPI DUP1 PUSH4 0x9E7A13AD EQ PUSH2 0xB2 JUMPI DUP1 PUSH4 0xB2AC62EF EQ PUSH2 0xE3 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x64 PUSH2 0x113 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x71 SWAP2 SWAP1 PUSH2 0x530 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x94 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x8F SWAP2 SWAP1 PUSH2 0x473 JUMP JUMPDEST PUSH2 0x11C JUMP JUMPDEST STOP JUMPDEST PUSH2 0xB0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xAB SWAP2 SWAP1 PUSH2 0x417 JUMP JUMPDEST PUSH2 0x126 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xCC PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xC7 SWAP2 SWAP1 PUSH2 0x473 JUMP JUMPDEST PUSH2 0x1BC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xDA SWAP3 SWAP2 SWAP1 PUSH2 0x54B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xFD PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xF8 SWAP2 SWAP1 PUSH2 0x3CE JUMP JUMPDEST PUSH2 0x278 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x10A SWAP2 SWAP1 PUSH2 0x530 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST DUP1 PUSH1 0x0 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 DUP4 DUP2 MSTORE PUSH1 0x20 ADD DUP5 DUP2 MSTORE POP SWAP1 POP PUSH1 0x2 DUP2 SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD SSTORE PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x191 SWAP3 SWAP2 SWAP1 PUSH2 0x2A6 JUMP JUMPDEST POP POP POP DUP2 PUSH1 0x1 DUP5 PUSH1 0x40 MLOAD PUSH2 0x1A5 SWAP2 SWAP1 PUSH2 0x519 JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 DUP2 SWAP1 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x2 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x1CC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH1 0x0 SWAP2 POP SWAP1 POP DUP1 PUSH1 0x0 ADD SLOAD SWAP1 DUP1 PUSH1 0x1 ADD DUP1 SLOAD PUSH2 0x1F5 SWAP1 PUSH2 0x644 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x221 SWAP1 PUSH2 0x644 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x26E JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x243 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x26E JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x251 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP DUP3 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP1 MLOAD PUSH1 0x20 DUP2 ADD DUP3 ADD DUP1 MLOAD DUP5 DUP3 MSTORE PUSH1 0x20 DUP4 ADD PUSH1 0x20 DUP6 ADD KECCAK256 DUP2 DUP4 MSTORE DUP1 SWAP6 POP POP POP POP POP POP PUSH1 0x0 SWAP2 POP SWAP1 POP SLOAD DUP2 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH2 0x2B2 SWAP1 PUSH2 0x644 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0x2D4 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0x31B JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0x2ED JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0x31B JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0x31B JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x31A JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x2FF JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x328 SWAP2 SWAP1 PUSH2 0x32C JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x345 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x32D JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x35C PUSH2 0x357 DUP5 PUSH2 0x5A0 JUMP JUMPDEST PUSH2 0x57B JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x378 JUMPI PUSH2 0x377 PUSH2 0x70A JUMP JUMPDEST JUMPDEST PUSH2 0x383 DUP5 DUP3 DUP6 PUSH2 0x602 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x3A0 JUMPI PUSH2 0x39F PUSH2 0x705 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x3B0 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x349 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x3C8 DUP2 PUSH2 0x72A JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3E4 JUMPI PUSH2 0x3E3 PUSH2 0x714 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP3 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x402 JUMPI PUSH2 0x401 PUSH2 0x70F JUMP JUMPDEST JUMPDEST PUSH2 0x40E DUP5 DUP3 DUP6 ADD PUSH2 0x38B JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x42E JUMPI PUSH2 0x42D PUSH2 0x714 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x44C JUMPI PUSH2 0x44B PUSH2 0x70F JUMP JUMPDEST JUMPDEST PUSH2 0x458 DUP6 DUP3 DUP7 ADD PUSH2 0x38B JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x469 DUP6 DUP3 DUP7 ADD PUSH2 0x3B9 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x489 JUMPI PUSH2 0x488 PUSH2 0x714 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x497 DUP5 DUP3 DUP6 ADD PUSH2 0x3B9 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4AB DUP3 PUSH2 0x5D1 JUMP JUMPDEST PUSH2 0x4B5 DUP2 DUP6 PUSH2 0x5DC JUMP JUMPDEST SWAP4 POP PUSH2 0x4C5 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x611 JUMP JUMPDEST PUSH2 0x4CE DUP2 PUSH2 0x719 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4E4 DUP3 PUSH2 0x5D1 JUMP JUMPDEST PUSH2 0x4EE DUP2 DUP6 PUSH2 0x5ED JUMP JUMPDEST SWAP4 POP PUSH2 0x4FE DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x611 JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x513 DUP2 PUSH2 0x5F8 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x525 DUP3 DUP5 PUSH2 0x4D9 JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x545 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x50A JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x560 PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0x50A JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0x572 DUP2 DUP5 PUSH2 0x4A0 JUMP JUMPDEST SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x585 PUSH2 0x596 JUMP JUMPDEST SWAP1 POP PUSH2 0x591 DUP3 DUP3 PUSH2 0x676 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x5BB JUMPI PUSH2 0x5BA PUSH2 0x6D6 JUMP JUMPDEST JUMPDEST PUSH2 0x5C4 DUP3 PUSH2 0x719 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x62F JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x614 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x63E JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x65C JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x670 JUMPI PUSH2 0x66F PUSH2 0x6A7 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x67F DUP3 PUSH2 0x719 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x69E JUMPI PUSH2 0x69D PUSH2 0x6D6 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x733 DUP2 PUSH2 0x5F8 JUMP JUMPDEST DUP2 EQ PUSH2 0x73E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SUB SGT 0xC9 CODESIZE 0xAE 0xB2 0xBF PUSH13 0x5416E6F933F57A53C4360448F6 PUSH10 0xE13A950A8403D0721469 PUSH5 0x736F6C6343 STOP ADDMOD SMOD STOP CALLER ",
"sourceMap": "171:1420:0:-:0;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@addPerson_62": {
"entryPoint": 294,
"id": 62,
"parameterSlots": 2,
"returnSlots": 0
},
"@nameToFavouriteNumber_7": {
"entryPoint": 632,
"id": 7,
"parameterSlots": 0,
"returnSlots": 0
},
"@people_16": {
"entryPoint": 444,
"id": 16,
"parameterSlots": 0,
"returnSlots": 0
},
"@retrieve_34": {
"entryPoint": 275,
"id": 34,
"parameterSlots": 0,
"returnSlots": 1
},
"@store_26": {
"entryPoint": 284,
"id": 26,
"parameterSlots": 1,
"returnSlots": 0
},
"abi_decode_available_length_t_string_memory_ptr": {
"entryPoint": 841,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_t_string_memory_ptr": {
"entryPoint": 907,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 953,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_string_memory_ptr": {
"entryPoint": 974,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_string_memory_ptrt_uint256": {
"entryPoint": 1047,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 1139,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 1184,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 1241,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 1290,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_packed_t_string_memory_ptr__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed": {
"entryPoint": 1305,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 1328,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256_t_string_memory_ptr__to_t_uint256_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 1355,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"allocate_memory": {
"entryPoint": 1403,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": 1430,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_allocation_size_t_string_memory_ptr": {
"entryPoint": 1440,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 1489,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 1500,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 1517,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 1528,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_calldata_to_memory": {
"entryPoint": 1538,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"copy_memory_to_memory": {
"entryPoint": 1553,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 1604,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"finalize_allocation": {
"entryPoint": 1654,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 1703,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 1750,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": {
"entryPoint": 1797,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": {
"entryPoint": 1802,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": 1807,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 1812,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 1817,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"validator_revert_t_uint256": {
"entryPoint": 1834,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:7485:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "91:328:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "101:75:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "168:6:1"
}
],
"functionName": {
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "126:41:1"
},
"nodeType": "YulFunctionCall",
"src": "126:49:1"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "110:15:1"
},
"nodeType": "YulFunctionCall",
"src": "110:66:1"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "101:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "192:5:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "199:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "185:6:1"
},
"nodeType": "YulFunctionCall",
"src": "185:21:1"
},
"nodeType": "YulExpressionStatement",
"src": "185:21:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "215:27:1",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "230:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "237:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "226:3:1"
},
"nodeType": "YulFunctionCall",
"src": "226:16:1"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "219:3:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "280:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulIdentifier",
"src": "282:77:1"
},
"nodeType": "YulFunctionCall",
"src": "282:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "282:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "261:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "266:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "257:3:1"
},
"nodeType": "YulFunctionCall",
"src": "257:16:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "275:3:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "254:2:1"
},
"nodeType": "YulFunctionCall",
"src": "254:25:1"
},
"nodeType": "YulIf",
"src": "251:112:1"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "396:3:1"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "401:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "406:6:1"
}
],
"functionName": {
"name": "copy_calldata_to_memory",
"nodeType": "YulIdentifier",
"src": "372:23:1"
},
"nodeType": "YulFunctionCall",
"src": "372:41:1"
},
"nodeType": "YulExpressionStatement",
"src": "372:41:1"
}
]
},
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "64:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "69:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "77:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "85:5:1",
"type": ""
}
],
"src": "7:412:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "501:278:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "550:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "552:77:1"
},
"nodeType": "YulFunctionCall",
"src": "552:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "552:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "529:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "537:4:1",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "525:3:1"
},
"nodeType": "YulFunctionCall",
"src": "525:17:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "544:3:1"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "521:3:1"
},
"nodeType": "YulFunctionCall",
"src": "521:27:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "514:6:1"
},
"nodeType": "YulFunctionCall",
"src": "514:35:1"
},
"nodeType": "YulIf",
"src": "511:122:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "642:34:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "669:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "656:12:1"
},
"nodeType": "YulFunctionCall",
"src": "656:20:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "646:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "685:88:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "746:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "754:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "742:3:1"
},
"nodeType": "YulFunctionCall",
"src": "742:17:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "761:6:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "769:3:1"
}
],
"functionName": {
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "694:47:1"
},
"nodeType": "YulFunctionCall",
"src": "694:79:1"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "685:5:1"
}
]
}
]
},
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "479:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "487:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "495:5:1",
"type": ""
}
],
"src": "439:340:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "837:87:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "847:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "869:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "856:12:1"
},
"nodeType": "YulFunctionCall",
"src": "856:20:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "847:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "912:5:1"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "885:26:1"
},
"nodeType": "YulFunctionCall",
"src": "885:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "885:33:1"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "815:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "823:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "831:5:1",
"type": ""
}
],
"src": "785:139:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1006:433:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1052:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "1054:77:1"
},
"nodeType": "YulFunctionCall",
"src": "1054:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "1054:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1027:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1036:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1023:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1023:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1048:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1019:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1019:32:1"
},
"nodeType": "YulIf",
"src": "1016:119:1"
},
{
"nodeType": "YulBlock",
"src": "1145:287:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1160:45:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1191:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1202:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1187:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1187:17:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1174:12:1"
},
"nodeType": "YulFunctionCall",
"src": "1174:31:1"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1164:6:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1252:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "1254:77:1"
},
"nodeType": "YulFunctionCall",
"src": "1254:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "1254:79:1"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1224:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1232:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1221:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1221:30:1"
},
"nodeType": "YulIf",
"src": "1218:117:1"
},
{
"nodeType": "YulAssignment",
"src": "1349:73:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1394:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1405:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1390:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1390:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1414:7:1"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "1359:30:1"
},
"nodeType": "YulFunctionCall",
"src": "1359:63:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1349:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "976:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "987:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "999:6:1",
"type": ""
}
],
"src": "930:509:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1538:561:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1584:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "1586:77:1"
},
"nodeType": "YulFunctionCall",
"src": "1586:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "1586:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1559:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1568:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1555:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1555:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1580:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1551:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1551:32:1"
},
"nodeType": "YulIf",
"src": "1548:119:1"
},
{
"nodeType": "YulBlock",
"src": "1677:287:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1692:45:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1723:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1734:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1719:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1719:17:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1706:12:1"
},
"nodeType": "YulFunctionCall",
"src": "1706:31:1"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1696:6:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1784:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "1786:77:1"
},
"nodeType": "YulFunctionCall",
"src": "1786:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "1786:79:1"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1756:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1764:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1753:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1753:30:1"
},
"nodeType": "YulIf",
"src": "1750:117:1"
},
{
"nodeType": "YulAssignment",
"src": "1881:73:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1926:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1937:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1922:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1922:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1946:7:1"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "1891:30:1"
},
"nodeType": "YulFunctionCall",
"src": "1891:63:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1881:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1974:118:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1989:16:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2003:2:1",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1993:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2019:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2054:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2065:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2050:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2050:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2074:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "2029:20:1"
},
"nodeType": "YulFunctionCall",
"src": "2029:53:1"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2019:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptrt_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1500:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1511:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1523:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1531:6:1",
"type": ""
}
],
"src": "1445:654:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2171:263:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2217:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "2219:77:1"
},
"nodeType": "YulFunctionCall",
"src": "2219:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "2219:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2192:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2201:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2188:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2188:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2213:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2184:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2184:32:1"
},
"nodeType": "YulIf",
"src": "2181:119:1"
},
{
"nodeType": "YulBlock",
"src": "2310:117:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2325:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2339:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2329:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2354:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2389:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2400:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2385:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2385:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2409:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "2364:20:1"
},
"nodeType": "YulFunctionCall",
"src": "2364:53:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2354:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2141:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2152:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2164:6:1",
"type": ""
}
],
"src": "2105:329:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2532:272:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2542:53:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2589:5:1"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2556:32:1"
},
"nodeType": "YulFunctionCall",
"src": "2556:39:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2546:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2604:78:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2670:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2675:6:1"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2611:58:1"
},
"nodeType": "YulFunctionCall",
"src": "2611:71:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2604:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2717:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2724:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2713:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2713:16:1"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2731:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2736:6:1"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "2691:21:1"
},
"nodeType": "YulFunctionCall",
"src": "2691:52:1"
},
"nodeType": "YulExpressionStatement",
"src": "2691:52:1"
},
{
"nodeType": "YulAssignment",
"src": "2752:46:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2763:3:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2790:6:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "2768:21:1"
},
"nodeType": "YulFunctionCall",
"src": "2768:29:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2759:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2759:39:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2752:3:1"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2513:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2520:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2528:3:1",
"type": ""
}
],
"src": "2440:364:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2920:267:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2930:53:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2977:5:1"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2944:32:1"
},
"nodeType": "YulFunctionCall",
"src": "2944:39:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2934:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2992:96:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3076:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3081:6:1"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "2999:76:1"
},
"nodeType": "YulFunctionCall",
"src": "2999:89:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2992:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3123:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3130:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3119:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3119:16:1"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3137:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3142:6:1"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "3097:21:1"
},
"nodeType": "YulFunctionCall",
"src": "3097:52:1"
},
"nodeType": "YulExpressionStatement",
"src": "3097:52:1"
},
{
"nodeType": "YulAssignment",
"src": "3158:23:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3169:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3174:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3165:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3165:16:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3158:3:1"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2901:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2908:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2916:3:1",
"type": ""
}
],
"src": "2810:377:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3258:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3275:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3298:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "3280:17:1"
},
"nodeType": "YulFunctionCall",
"src": "3280:24:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3268:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3268:37:1"
},
"nodeType": "YulExpressionStatement",
"src": "3268:37:1"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3246:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3253:3:1",
"type": ""
}
],
"src": "3193:118:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3453:139:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3464:102:1",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3553:6:1"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3562:3:1"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "3471:81:1"
},
"nodeType": "YulFunctionCall",
"src": "3471:95:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3464:3:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "3576:10:1",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3583:3:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3576:3:1"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_string_memory_ptr__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3432:3:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3438:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3449:3:1",
"type": ""
}
],
"src": "3317:275:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3696:124:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3706:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3718:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3729:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3714:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3714:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3706:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3786:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3799:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3810:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3795:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3795:17:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "3742:43:1"
},
"nodeType": "YulFunctionCall",
"src": "3742:71:1"
},
"nodeType": "YulExpressionStatement",
"src": "3742:71:1"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3668:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3680:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3691:4:1",
"type": ""
}
],
"src": "3598:222:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3972:277:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3982:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3994:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4005:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3990:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3990:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3982:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4062:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4075:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4086:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4071:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4071:17:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "4018:43:1"
},
"nodeType": "YulFunctionCall",
"src": "4018:71:1"
},
"nodeType": "YulExpressionStatement",
"src": "4018:71:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4110:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4121:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4106:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4106:18:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4130:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4136:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4126:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4126:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4099:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4099:48:1"
},
"nodeType": "YulExpressionStatement",
"src": "4099:48:1"
},
{
"nodeType": "YulAssignment",
"src": "4156:86:1",
"value": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "4228:6:1"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4237:4:1"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "4164:63:1"
},
"nodeType": "YulFunctionCall",
"src": "4164:78:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4156:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_uint256_t_string_memory_ptr__to_t_uint256_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3936:9:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "3948:6:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3956:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3967:4:1",
"type": ""
}
],
"src": "3826:423:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4296:88:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4306:30:1",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nodeType": "YulIdentifier",
"src": "4316:18:1"
},
"nodeType": "YulFunctionCall",
"src": "4316:20:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "4306:6:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "4365:6:1"
},
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "4373:4:1"
}
],
"functionName": {
"name": "finalize_allocation",
"nodeType": "YulIdentifier",
"src": "4345:19:1"
},
"nodeType": "YulFunctionCall",
"src": "4345:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "4345:33:1"
}
]
},
"name": "allocate_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "4280:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "4289:6:1",
"type": ""
}
],
"src": "4255:129:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4430:35:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4440:19:1",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4456:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "4450:5:1"
},
"nodeType": "YulFunctionCall",
"src": "4450:9:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "4440:6:1"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "4423:6:1",
"type": ""
}
],
"src": "4390:75:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4538:241:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4643:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "4645:16:1"
},
"nodeType": "YulFunctionCall",
"src": "4645:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "4645:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4615:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4623:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4612:2:1"
},
"nodeType": "YulFunctionCall",
"src": "4612:30:1"
},
"nodeType": "YulIf",
"src": "4609:56:1"
},
{
"nodeType": "YulAssignment",
"src": "4675:37:1",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4705:6:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "4683:21:1"
},
"nodeType": "YulFunctionCall",
"src": "4683:29:1"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "4675:4:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "4749:23:1",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "4761:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4767:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4757:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4757:15:1"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "4749:4:1"
}
]
}
]
},
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4522:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "4533:4:1",
"type": ""
}
],
"src": "4471:308:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4844:40:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4855:22:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4871:5:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "4865:5:1"
},
"nodeType": "YulFunctionCall",
"src": "4865:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4855:6:1"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4827:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4837:6:1",
"type": ""
}
],
"src": "4785:99:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4986:73:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5003:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5008:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4996:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4996:19:1"
},
"nodeType": "YulExpressionStatement",
"src": "4996:19:1"
},
{
"nodeType": "YulAssignment",
"src": "5024:29:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5043:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5048:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5039:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5039:14:1"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "5024:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4958:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4963:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "4974:11:1",
"type": ""
}
],
"src": "4890:169:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5179:34:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5189:18:1",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5204:3:1"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "5189:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5151:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5156:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "5167:11:1",
"type": ""
}
],
"src": "5065:148:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5264:32:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5274:16:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "5285:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "5274:7:1"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5246:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "5256:7:1",
"type": ""
}
],
"src": "5219:77:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5353:103:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "5376:3:1"
},
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "5381:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5386:6:1"
}
],
"functionName": {
"name": "calldatacopy",
"nodeType": "YulIdentifier",
"src": "5363:12:1"
},
"nodeType": "YulFunctionCall",
"src": "5363:30:1"
},
"nodeType": "YulExpressionStatement",
"src": "5363:30:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "5434:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5439:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5430:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5430:16:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5448:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5423:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5423:27:1"
},
"nodeType": "YulExpressionStatement",
"src": "5423:27:1"
}
]
},
"name": "copy_calldata_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "5335:3:1",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "5340:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5345:6:1",
"type": ""
}
],
"src": "5302:154:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5511:258:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5521:10:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5530:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "5525:1:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5590:63:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "5615:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5620:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5611:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5611:11:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "5634:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5639:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5630:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5630:11:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "5624:5:1"
},
"nodeType": "YulFunctionCall",
"src": "5624:18:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5604:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5604:39:1"
},
"nodeType": "YulExpressionStatement",
"src": "5604:39:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5551:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5554:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "5548:2:1"
},
"nodeType": "YulFunctionCall",
"src": "5548:13:1"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "5562:19:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5564:15:1",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5573:1:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5576:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5569:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5569:10:1"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5564:1:1"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "5544:3:1",
"statements": []
},
"src": "5540:113:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5687:76:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "5737:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5742:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5733:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5733:16:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5751:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5726:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5726:27:1"
},
"nodeType": "YulExpressionStatement",
"src": "5726:27:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5668:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5671:6:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "5665:2:1"
},
"nodeType": "YulFunctionCall",
"src": "5665:13:1"
},
"nodeType": "YulIf",
"src": "5662:101:1"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "5493:3:1",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "5498:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5503:6:1",
"type": ""
}
],
"src": "5462:307:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5826:269:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5836:22:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "5850:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5856:1:1",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "5846:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5846:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5836:6:1"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "5867:38:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "5897:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5903:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5893:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5893:12:1"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "5871:18:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5944:51:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5958:27:1",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5972:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5980:4:1",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5968:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5968:17:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5958:6:1"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "5924:18:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "5917:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5917:26:1"
},
"nodeType": "YulIf",
"src": "5914:81:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6047:42:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "6061:16:1"
},
"nodeType": "YulFunctionCall",
"src": "6061:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "6061:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "6011:18:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6034:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6042:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "6031:2:1"
},
"nodeType": "YulFunctionCall",
"src": "6031:14:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "6008:2:1"
},
"nodeType": "YulFunctionCall",
"src": "6008:38:1"
},
"nodeType": "YulIf",
"src": "6005:84:1"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "5810:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5819:6:1",
"type": ""
}
],
"src": "5775:320:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6144:238:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6154:58:1",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "6176:6:1"
},
{
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "6206:4:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "6184:21:1"
},
"nodeType": "YulFunctionCall",
"src": "6184:27:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6172:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6172:40:1"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "6158:10:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "6323:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "6325:16:1"
},
"nodeType": "YulFunctionCall",
"src": "6325:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "6325:18:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "6266:10:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6278:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "6263:2:1"
},
"nodeType": "YulFunctionCall",
"src": "6263:34:1"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "6302:10:1"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "6314:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "6299:2:1"
},
"nodeType": "YulFunctionCall",
"src": "6299:22:1"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "6260:2:1"
},
"nodeType": "YulFunctionCall",
"src": "6260:62:1"
},
"nodeType": "YulIf",
"src": "6257:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6361:2:1",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "6365:10:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6354:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6354:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "6354:22:1"
}
]
},
"name": "finalize_allocation",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "6130:6:1",
"type": ""
},
{
"name": "size",
"nodeType": "YulTypedName",
"src": "6138:4:1",
"type": ""
}
],
"src": "6101:281:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6416:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6433:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6436:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6426:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6426:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "6426:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6530:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6533:4:1",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6523:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6523:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "6523:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6554:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6557:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6547:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6547:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "6547:15:1"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "6388:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6602:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6619:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6622:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6612:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6612:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "6612:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6716:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6719:4:1",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6709:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6709:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "6709:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6740:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6743:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6733:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6733:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "6733:15:1"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "6574:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6849:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6866:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6869:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6859:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6859:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "6859:12:1"
}
]
},
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulFunctionDefinition",
"src": "6760:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6972:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6989:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6992:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6982:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6982:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "6982:12:1"
}
]
},
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulFunctionDefinition",
"src": "6883:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7095:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7112:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7115:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7105:6:1"
},
"nodeType": "YulFunctionCall",
"src": "7105:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "7105:12:1"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "7006:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7218:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7235:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7238:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7228:6:1"
},
"nodeType": "YulFunctionCall",
"src": "7228:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "7228:12:1"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "7129:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7300:54:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7310:38:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7328:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7335:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7324:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7324:14:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7344:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "7340:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7340:7:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "7320:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7320:28:1"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "7310:6:1"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7283:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "7293:6:1",
"type": ""
}
],
"src": "7252:102:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7403:79:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "7460:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7469:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7472:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7462:6:1"
},
"nodeType": "YulFunctionCall",
"src": "7462:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "7462:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7426:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7451:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "7433:17:1"
},
"nodeType": "YulFunctionCall",
"src": "7433:24:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "7423:2:1"
},
"nodeType": "YulFunctionCall",
"src": "7423:35:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "7416:6:1"
},
"nodeType": "YulFunctionCall",
"src": "7416:43:1"
},
"nodeType": "YulIf",
"src": "7413:63:1"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7396:5:1",
"type": ""
}
],
"src": "7360:122:1"
}
]
},
"contents": "{\n\n function abi_decode_available_length_t_string_memory_ptr(src, length, end) -> array {\n array := allocate_memory(array_allocation_size_t_string_memory_ptr(length))\n mstore(array, length)\n let dst := add(array, 0x20)\n if gt(add(src, length), end) { revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() }\n copy_calldata_to_memory(src, dst, length)\n }\n\n // string\n function abi_decode_t_string_memory_ptr(offset, end) -> array {\n if iszero(slt(add(offset, 0x1f), end)) { revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() }\n let length := calldataload(offset)\n array := abi_decode_available_length_t_string_memory_ptr(add(offset, 0x20), length, end)\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_string_memory_ptr(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := calldataload(add(headStart, 0))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value0 := abi_decode_t_string_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_string_memory_ptrt_uint256(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := calldataload(add(headStart, 0))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value0 := abi_decode_t_string_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, length)\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_packed_t_string_memory_ptr__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed(pos , value0) -> end {\n\n pos := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value0, pos)\n\n end := pos\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_tuple_t_uint256_t_string_memory_ptr__to_t_uint256_t_string_memory_ptr__fromStack_reversed(headStart , value1, value0) -> tail {\n tail := add(headStart, 64)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n mstore(add(headStart, 32), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value1, tail)\n\n }\n\n function allocate_memory(size) -> memPtr {\n memPtr := allocate_unbounded()\n finalize_allocation(memPtr, size)\n }\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function array_allocation_size_t_string_memory_ptr(length) -> size {\n // Make sure we can allocate memory without overflow\n if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n\n size := round_up_to_mul_of_32(length)\n\n // add length slot\n size := add(size, 0x20)\n\n }\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, length) -> updated_pos {\n updated_pos := pos\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function copy_calldata_to_memory(src, dst, length) {\n calldatacopy(dst, src, length)\n // clear end\n mstore(add(dst, length), 0)\n }\n\n function copy_memory_to_memory(src, dst, length) {\n let i := 0\n for { } lt(i, length) { i := add(i, 32) }\n {\n mstore(add(dst, i), mload(add(src, i)))\n }\n if gt(i, length)\n {\n // clear end\n mstore(add(dst, length), 0)\n }\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function finalize_allocation(memPtr, size) {\n let newFreePtr := add(memPtr, round_up_to_mul_of_32(size))\n // protect against overflow\n if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() {\n revert(0, 0)\n }\n\n function revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106100575760003560e01c80632e64cec11461005c5780636057361d1461007a5780636f760f41146100965780639e7a13ad146100b2578063b2ac62ef146100e3575b600080fd5b610064610113565b6040516100719190610530565b60405180910390f35b610094600480360381019061008f9190610473565b61011c565b005b6100b060048036038101906100ab9190610417565b610126565b005b6100cc60048036038101906100c79190610473565b6101bc565b6040516100da92919061054b565b60405180910390f35b6100fd60048036038101906100f891906103ce565b610278565b60405161010a9190610530565b60405180910390f35b60008054905090565b8060008190555050565b6000604051806040016040528083815260200184815250905060028190806001815401808255809150506001900390600052602060002090600202016000909190919091506000820151816000015560208201518160010190805190602001906101919291906102a6565b505050816001846040516101a59190610519565b908152602001604051809103902081905550505050565b600281815481106101cc57600080fd5b90600052602060002090600202016000915090508060000154908060010180546101f590610644565b80601f016020809104026020016040519081016040528092919081815260200182805461022190610644565b801561026e5780601f106102435761010080835404028352916020019161026e565b820191906000526020600020905b81548152906001019060200180831161025157829003601f168201915b5050505050905082565b6001818051602081018201805184825260208301602085012081835280955050505050506000915090505481565b8280546102b290610644565b90600052602060002090601f0160209004810192826102d4576000855561031b565b82601f106102ed57805160ff191683800117855561031b565b8280016001018555821561031b579182015b8281111561031a5782518255916020019190600101906102ff565b5b509050610328919061032c565b5090565b5b8082111561034557600081600090555060010161032d565b5090565b600061035c610357846105a0565b61057b565b9050828152602081018484840111156103785761037761070a565b5b610383848285610602565b509392505050565b600082601f8301126103a05761039f610705565b5b81356103b0848260208601610349565b91505092915050565b6000813590506103c88161072a565b92915050565b6000602082840312156103e4576103e3610714565b5b600082013567ffffffffffffffff8111156104025761040161070f565b5b61040e8482850161038b565b91505092915050565b6000806040838503121561042e5761042d610714565b5b600083013567ffffffffffffffff81111561044c5761044b61070f565b5b6104588582860161038b565b9250506020610469858286016103b9565b9150509250929050565b60006020828403121561048957610488610714565b5b6000610497848285016103b9565b91505092915050565b60006104ab826105d1565b6104b581856105dc565b93506104c5818560208601610611565b6104ce81610719565b840191505092915050565b60006104e4826105d1565b6104ee81856105ed565b93506104fe818560208601610611565b80840191505092915050565b610513816105f8565b82525050565b600061052582846104d9565b915081905092915050565b6000602082019050610545600083018461050a565b92915050565b6000604082019050610560600083018561050a565b818103602083015261057281846104a0565b90509392505050565b6000610585610596565b90506105918282610676565b919050565b6000604051905090565b600067ffffffffffffffff8211156105bb576105ba6106d6565b5b6105c482610719565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b6000819050919050565b82818337600083830152505050565b60005b8381101561062f578082015181840152602081019050610614565b8381111561063e576000848401525b50505050565b6000600282049050600182168061065c57607f821691505b602082108114156106705761066f6106a7565b5b50919050565b61067f82610719565b810181811067ffffffffffffffff8211171561069e5761069d6106d6565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b610733816105f8565b811461073e57600080fd5b5056fea26469706673582212200313c938aeb2bf6c5416e6f933f57a53c4360448f669e13a950a8403d072146964736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x57 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x2E64CEC1 EQ PUSH2 0x5C JUMPI DUP1 PUSH4 0x6057361D EQ PUSH2 0x7A JUMPI DUP1 PUSH4 0x6F760F41 EQ PUSH2 0x96 JUMPI DUP1 PUSH4 0x9E7A13AD EQ PUSH2 0xB2 JUMPI DUP1 PUSH4 0xB2AC62EF EQ PUSH2 0xE3 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x64 PUSH2 0x113 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x71 SWAP2 SWAP1 PUSH2 0x530 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x94 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x8F SWAP2 SWAP1 PUSH2 0x473 JUMP JUMPDEST PUSH2 0x11C JUMP JUMPDEST STOP JUMPDEST PUSH2 0xB0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xAB SWAP2 SWAP1 PUSH2 0x417 JUMP JUMPDEST PUSH2 0x126 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xCC PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xC7 SWAP2 SWAP1 PUSH2 0x473 JUMP JUMPDEST PUSH2 0x1BC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xDA SWAP3 SWAP2 SWAP1 PUSH2 0x54B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xFD PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xF8 SWAP2 SWAP1 PUSH2 0x3CE JUMP JUMPDEST PUSH2 0x278 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x10A SWAP2 SWAP1 PUSH2 0x530 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST DUP1 PUSH1 0x0 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 DUP4 DUP2 MSTORE PUSH1 0x20 ADD DUP5 DUP2 MSTORE POP SWAP1 POP PUSH1 0x2 DUP2 SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD SSTORE PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x191 SWAP3 SWAP2 SWAP1 PUSH2 0x2A6 JUMP JUMPDEST POP POP POP DUP2 PUSH1 0x1 DUP5 PUSH1 0x40 MLOAD PUSH2 0x1A5 SWAP2 SWAP1 PUSH2 0x519 JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 DUP2 SWAP1 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x2 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x1CC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH1 0x0 SWAP2 POP SWAP1 POP DUP1 PUSH1 0x0 ADD SLOAD SWAP1 DUP1 PUSH1 0x1 ADD DUP1 SLOAD PUSH2 0x1F5 SWAP1 PUSH2 0x644 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x221 SWAP1 PUSH2 0x644 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x26E JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x243 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x26E JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x251 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP DUP3 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP1 MLOAD PUSH1 0x20 DUP2 ADD DUP3 ADD DUP1 MLOAD DUP5 DUP3 MSTORE PUSH1 0x20 DUP4 ADD PUSH1 0x20 DUP6 ADD KECCAK256 DUP2 DUP4 MSTORE DUP1 SWAP6 POP POP POP POP POP POP PUSH1 0x0 SWAP2 POP SWAP1 POP SLOAD DUP2 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH2 0x2B2 SWAP1 PUSH2 0x644 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0x2D4 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0x31B JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0x2ED JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0x31B JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0x31B JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x31A JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x2FF JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x328 SWAP2 SWAP1 PUSH2 0x32C JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x345 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x32D JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x35C PUSH2 0x357 DUP5 PUSH2 0x5A0 JUMP JUMPDEST PUSH2 0x57B JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x378 JUMPI PUSH2 0x377 PUSH2 0x70A JUMP JUMPDEST JUMPDEST PUSH2 0x383 DUP5 DUP3 DUP6 PUSH2 0x602 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x3A0 JUMPI PUSH2 0x39F PUSH2 0x705 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x3B0 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x349 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x3C8 DUP2 PUSH2 0x72A JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3E4 JUMPI PUSH2 0x3E3 PUSH2 0x714 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP3 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x402 JUMPI PUSH2 0x401 PUSH2 0x70F JUMP JUMPDEST JUMPDEST PUSH2 0x40E DUP5 DUP3 DUP6 ADD PUSH2 0x38B JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x42E JUMPI PUSH2 0x42D PUSH2 0x714 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x44C JUMPI PUSH2 0x44B PUSH2 0x70F JUMP JUMPDEST JUMPDEST PUSH2 0x458 DUP6 DUP3 DUP7 ADD PUSH2 0x38B JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x469 DUP6 DUP3 DUP7 ADD PUSH2 0x3B9 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x489 JUMPI PUSH2 0x488 PUSH2 0x714 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x497 DUP5 DUP3 DUP6 ADD PUSH2 0x3B9 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4AB DUP3 PUSH2 0x5D1 JUMP JUMPDEST PUSH2 0x4B5 DUP2 DUP6 PUSH2 0x5DC JUMP JUMPDEST SWAP4 POP PUSH2 0x4C5 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x611 JUMP JUMPDEST PUSH2 0x4CE DUP2 PUSH2 0x719 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4E4 DUP3 PUSH2 0x5D1 JUMP JUMPDEST PUSH2 0x4EE DUP2 DUP6 PUSH2 0x5ED JUMP JUMPDEST SWAP4 POP PUSH2 0x4FE DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x611 JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x513 DUP2 PUSH2 0x5F8 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x525 DUP3 DUP5 PUSH2 0x4D9 JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x545 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x50A JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x560 PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0x50A JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0x572 DUP2 DUP5 PUSH2 0x4A0 JUMP JUMPDEST SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x585 PUSH2 0x596 JUMP JUMPDEST SWAP1 POP PUSH2 0x591 DUP3 DUP3 PUSH2 0x676 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x5BB JUMPI PUSH2 0x5BA PUSH2 0x6D6 JUMP JUMPDEST JUMPDEST PUSH2 0x5C4 DUP3 PUSH2 0x719 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x62F JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x614 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x63E JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x65C JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x670 JUMPI PUSH2 0x66F PUSH2 0x6A7 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x67F DUP3 PUSH2 0x719 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x69E JUMPI PUSH2 0x69D PUSH2 0x6D6 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x733 DUP2 PUSH2 0x5F8 JUMP JUMPDEST DUP2 EQ PUSH2 0x73E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SUB SGT 0xC9 CODESIZE 0xAE 0xB2 0xBF PUSH13 0x5416E6F933F57A53C4360448F6 PUSH10 0xE13A950A8403D0721469 PUSH5 0x736F6C6343 STOP ADDMOD SMOD STOP CALLER ",
"sourceMap": "171:1420:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1097:88;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;871:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1332:257;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;778:22;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;631:55;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1097:88;1137:7;1163:15;;1156:22;;1097:88;:::o;871:171::-;949:10;931:15;:28;;;;871:171;:::o;1332:257::-;1415:23;1441:52;;;;;;;;1461:16;1441:52;;;;1485:5;1441:52;;;1415:78;;1503:6;1515:9;1503:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;1566:16;1535:21;1557:5;1535:28;;;;;;:::i;:::-;;;;;;;;;;;;;:47;;;;1405:184;1332:257;;:::o;778:22::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;631:55::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:412:1:-;85:5;110:66;126:49;168:6;126:49;:::i;:::-;110:66;:::i;:::-;101:75;;199:6;192:5;185:21;237:4;230:5;226:16;275:3;266:6;261:3;257:16;254:25;251:112;;;282:79;;:::i;:::-;251:112;372:41;406:6;401:3;396;372:41;:::i;:::-;91:328;7:412;;;;;:::o;439:340::-;495:5;544:3;537:4;529:6;525:17;521:27;511:122;;552:79;;:::i;:::-;511:122;669:6;656:20;694:79;769:3;761:6;754:4;746:6;742:17;694:79;:::i;:::-;685:88;;501:278;439:340;;;;:::o;785:139::-;831:5;869:6;856:20;847:29;;885:33;912:5;885:33;:::i;:::-;785:139;;;;:::o;930:509::-;999:6;1048:2;1036:9;1027:7;1023:23;1019:32;1016:119;;;1054:79;;:::i;:::-;1016:119;1202:1;1191:9;1187:17;1174:31;1232:18;1224:6;1221:30;1218:117;;;1254:79;;:::i;:::-;1218:117;1359:63;1414:7;1405:6;1394:9;1390:22;1359:63;:::i;:::-;1349:73;;1145:287;930:509;;;;:::o;1445:654::-;1523:6;1531;1580:2;1568:9;1559:7;1555:23;1551:32;1548:119;;;1586:79;;:::i;:::-;1548:119;1734:1;1723:9;1719:17;1706:31;1764:18;1756:6;1753:30;1750:117;;;1786:79;;:::i;:::-;1750:117;1891:63;1946:7;1937:6;1926:9;1922:22;1891:63;:::i;:::-;1881:73;;1677:287;2003:2;2029:53;2074:7;2065:6;2054:9;2050:22;2029:53;:::i;:::-;2019:63;;1974:118;1445:654;;;;;:::o;2105:329::-;2164:6;2213:2;2201:9;2192:7;2188:23;2184:32;2181:119;;;2219:79;;:::i;:::-;2181:119;2339:1;2364:53;2409:7;2400:6;2389:9;2385:22;2364:53;:::i;:::-;2354:63;;2310:117;2105:329;;;;:::o;2440:364::-;2528:3;2556:39;2589:5;2556:39;:::i;:::-;2611:71;2675:6;2670:3;2611:71;:::i;:::-;2604:78;;2691:52;2736:6;2731:3;2724:4;2717:5;2713:16;2691:52;:::i;:::-;2768:29;2790:6;2768:29;:::i;:::-;2763:3;2759:39;2752:46;;2532:272;2440:364;;;;:::o;2810:377::-;2916:3;2944:39;2977:5;2944:39;:::i;:::-;2999:89;3081:6;3076:3;2999:89;:::i;:::-;2992:96;;3097:52;3142:6;3137:3;3130:4;3123:5;3119:16;3097:52;:::i;:::-;3174:6;3169:3;3165:16;3158:23;;2920:267;2810:377;;;;:::o;3193:118::-;3280:24;3298:5;3280:24;:::i;:::-;3275:3;3268:37;3193:118;;:::o;3317:275::-;3449:3;3471:95;3562:3;3553:6;3471:95;:::i;:::-;3464:102;;3583:3;3576:10;;3317:275;;;;:::o;3598:222::-;3691:4;3729:2;3718:9;3714:18;3706:26;;3742:71;3810:1;3799:9;3795:17;3786:6;3742:71;:::i;:::-;3598:222;;;;:::o;3826:423::-;3967:4;4005:2;3994:9;3990:18;3982:26;;4018:71;4086:1;4075:9;4071:17;4062:6;4018:71;:::i;:::-;4136:9;4130:4;4126:20;4121:2;4110:9;4106:18;4099:48;4164:78;4237:4;4228:6;4164:78;:::i;:::-;4156:86;;3826:423;;;;;:::o;4255:129::-;4289:6;4316:20;;:::i;:::-;4306:30;;4345:33;4373:4;4365:6;4345:33;:::i;:::-;4255:129;;;:::o;4390:75::-;4423:6;4456:2;4450:9;4440:19;;4390:75;:::o;4471:308::-;4533:4;4623:18;4615:6;4612:30;4609:56;;;4645:18;;:::i;:::-;4609:56;4683:29;4705:6;4683:29;:::i;:::-;4675:37;;4767:4;4761;4757:15;4749:23;;4471:308;;;:::o;4785:99::-;4837:6;4871:5;4865:12;4855:22;;4785:99;;;:::o;4890:169::-;4974:11;5008:6;5003:3;4996:19;5048:4;5043:3;5039:14;5024:29;;4890:169;;;;:::o;5065:148::-;5167:11;5204:3;5189:18;;5065:148;;;;:::o;5219:77::-;5256:7;5285:5;5274:16;;5219:77;;;:::o;5302:154::-;5386:6;5381:3;5376;5363:30;5448:1;5439:6;5434:3;5430:16;5423:27;5302:154;;;:::o;5462:307::-;5530:1;5540:113;5554:6;5551:1;5548:13;5540:113;;;5639:1;5634:3;5630:11;5624:18;5620:1;5615:3;5611:11;5604:39;5576:2;5573:1;5569:10;5564:15;;5540:113;;;5671:6;5668:1;5665:13;5662:101;;;5751:1;5742:6;5737:3;5733:16;5726:27;5662:101;5511:258;5462:307;;;:::o;5775:320::-;5819:6;5856:1;5850:4;5846:12;5836:22;;5903:1;5897:4;5893:12;5924:18;5914:81;;5980:4;5972:6;5968:17;5958:27;;5914:81;6042:2;6034:6;6031:14;6011:18;6008:38;6005:84;;;6061:18;;:::i;:::-;6005:84;5826:269;5775:320;;;:::o;6101:281::-;6184:27;6206:4;6184:27;:::i;:::-;6176:6;6172:40;6314:6;6302:10;6299:22;6278:18;6266:10;6263:34;6260:62;6257:88;;;6325:18;;:::i;:::-;6257:88;6365:10;6361:2;6354:22;6144:238;6101:281;;:::o;6388:180::-;6436:77;6433:1;6426:88;6533:4;6530:1;6523:15;6557:4;6554:1;6547:15;6574:180;6622:77;6619:1;6612:88;6719:4;6716:1;6709:15;6743:4;6740:1;6733:15;6760:117;6869:1;6866;6859:12;6883:117;6992:1;6989;6982:12;7006:117;7115:1;7112;7105:12;7129:117;7238:1;7235;7228:12;7252:102;7293:6;7344:2;7340:7;7335:2;7328:5;7324:14;7320:28;7310:38;;7252:102;;;:::o;7360:122::-;7433:24;7451:5;7433:24;:::i;:::-;7426:5;7423:35;7413:63;;7472:1;7469;7462:12;7413:63;7360:122;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "382200",
"executionCost": "418",
"totalCost": "382618"
},
"external": {
"addPerson(string,uint256)": "infinite",
"nameToFavouriteNumber(string)": "infinite",
"people(uint256)": "infinite",
"retrieve()": "2415",
"store(uint256)": "22520"
}
},
"methodIdentifiers": {
"addPerson(string,uint256)": "6f760f41",
"nameToFavouriteNumber(string)": "b2ac62ef",
"people(uint256)": "9e7a13ad",
"retrieve()": "2e64cec1",
"store(uint256)": "6057361d"
}
},
"abi": [
{
"inputs": [
{
"internalType": "string",
"name": "_name",
"type": "string"
},
{
"internalType": "uint256",
"name": "_favouriteNumber",
"type": "uint256"
}
],
"name": "addPerson",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"name": "nameToFavouriteNumber",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "people",
"outputs": [
{
"internalType": "uint256",
"name": "favNumber",
"type": "uint256"
},
{
"internalType": "string",
"name": "name",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "retrieve",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_favNumber",
"type": "uint256"
}
],
"name": "store",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.7+commit.e28d00a7"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [
{
"internalType": "string",
"name": "_name",
"type": "string"
},
{
"internalType": "uint256",
"name": "_favouriteNumber",
"type": "uint256"
}
],
"name": "addPerson",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"name": "nameToFavouriteNumber",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "people",
"outputs": [
{
"internalType": "uint256",
"name": "favNumber",
"type": "uint256"
},
{
"internalType": "string",
"name": "name",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "retrieve",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_favNumber",
"type": "uint256"
}
],
"name": "store",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/SimpleStorage.sol": "SimpleStorage"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/SimpleStorage.sol": {
"keccak256": "0x3b9274eebb254a97108cb057b3d3ae5785e2ed0ac8047bff8d42bd0c70adcb90",
"license": "MIT",
"urls": [
"bzz-raw://e0b97817373873feb7faa46fd2962bab8b76f040b4240dac2d11b9d2a3872d7e",
"dweb:/ipfs/QmdmzP9T9EV6VmZvSAgSxdhQea8ewz2nC5652QgDWtUZZL"
]
}
},
"version": 1
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"goerli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50610cbc806100206000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c80631563700f146100515780631dda65411461006d57806364591bf114610077578063c5f19c20146100a7575b600080fd5b61006b600480360381019061006691906103b0565b6100d7565b005b610075610189565b005b610091600480360381019061008c9190610356565b61021c565b60405161009e919061040e565b60405180910390f35b6100c160048036038101906100bc9190610356565b61025b565b6040516100ce9190610429565b60405180910390f35b60008083815481106100ec576100eb6104a4565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff16636057361d836040518263ffffffff1660e01b81526004016101529190610429565b600060405180830381600087803b15801561016c57600080fd5b505af1158015610180573d6000803e3d6000fd5b50505050505050565b60006040516101979061031f565b604051809103906000f0801580156101b3573d6000803e3d6000fd5b5090506000819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000818154811061022c57600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008082815481106102705761026f6104a4565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16632e64cec16040518163ffffffff1660e01b815260040160206040518083038186803b1580156102e057600080fd5b505afa1580156102f4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103189190610383565b9050919050565b610797806104f083390190565b60008135905061033b816104d8565b92915050565b600081519050610350816104d8565b92915050565b60006020828403121561036c5761036b6104d3565b5b600061037a8482850161032c565b91505092915050565b600060208284031215610399576103986104d3565b5b60006103a784828501610341565b91505092915050565b600080604083850312156103c7576103c66104d3565b5b60006103d58582860161032c565b92505060206103e68582860161032c565b9150509250929050565b6103f98161046e565b82525050565b61040881610464565b82525050565b600060208201905061042360008301846103f0565b92915050565b600060208201905061043e60008301846103ff565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061047982610480565b9050919050565b600061048b82610492565b9050919050565b600061049d82610444565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600080fd5b6104e181610464565b81146104ec57600080fd5b5056fe608060405234801561001057600080fd5b50610777806100206000396000f3fe608060405234801561001057600080fd5b50600436106100575760003560e01c80632e64cec11461005c5780636057361d1461007a5780636f760f41146100965780639e7a13ad146100b2578063b2ac62ef146100e3575b600080fd5b610064610113565b6040516100719190610530565b60405180910390f35b610094600480360381019061008f9190610473565b61011c565b005b6100b060048036038101906100ab9190610417565b610126565b005b6100cc60048036038101906100c79190610473565b6101bc565b6040516100da92919061054b565b60405180910390f35b6100fd60048036038101906100f891906103ce565b610278565b60405161010a9190610530565b60405180910390f35b60008054905090565b8060008190555050565b6000604051806040016040528083815260200184815250905060028190806001815401808255809150506001900390600052602060002090600202016000909190919091506000820151816000015560208201518160010190805190602001906101919291906102a6565b505050816001846040516101a59190610519565b908152602001604051809103902081905550505050565b600281815481106101cc57600080fd5b90600052602060002090600202016000915090508060000154908060010180546101f590610644565b80601f016020809104026020016040519081016040528092919081815260200182805461022190610644565b801561026e5780601f106102435761010080835404028352916020019161026e565b820191906000526020600020905b81548152906001019060200180831161025157829003601f168201915b5050505050905082565b6001818051602081018201805184825260208301602085012081835280955050505050506000915090505481565b8280546102b290610644565b90600052602060002090601f0160209004810192826102d4576000855561031b565b82601f106102ed57805160ff191683800117855561031b565b8280016001018555821561031b579182015b8281111561031a5782518255916020019190600101906102ff565b5b509050610328919061032c565b5090565b5b8082111561034557600081600090555060010161032d565b5090565b600061035c610357846105a0565b61057b565b9050828152602081018484840111156103785761037761070a565b5b610383848285610602565b509392505050565b600082601f8301126103a05761039f610705565b5b81356103b0848260208601610349565b91505092915050565b6000813590506103c88161072a565b92915050565b6000602082840312156103e4576103e3610714565b5b600082013567ffffffffffffffff8111156104025761040161070f565b5b61040e8482850161038b565b91505092915050565b6000806040838503121561042e5761042d610714565b5b600083013567ffffffffffffffff81111561044c5761044b61070f565b5b6104588582860161038b565b9250506020610469858286016103b9565b9150509250929050565b60006020828403121561048957610488610714565b5b6000610497848285016103b9565b91505092915050565b60006104ab826105d1565b6104b581856105dc565b93506104c5818560208601610611565b6104ce81610719565b840191505092915050565b60006104e4826105d1565b6104ee81856105ed565b93506104fe818560208601610611565b80840191505092915050565b610513816105f8565b82525050565b600061052582846104d9565b915081905092915050565b6000602082019050610545600083018461050a565b92915050565b6000604082019050610560600083018561050a565b818103602083015261057281846104a0565b90509392505050565b6000610585610596565b90506105918282610676565b919050565b6000604051905090565b600067ffffffffffffffff8211156105bb576105ba6106d6565b5b6105c482610719565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b6000819050919050565b82818337600083830152505050565b60005b8381101561062f578082015181840152602081019050610614565b8381111561063e576000848401525b50505050565b6000600282049050600182168061065c57607f821691505b602082108114156106705761066f6106a7565b5b50919050565b61067f82610719565b810181811067ffffffffffffffff8211171561069e5761069d6106d6565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b610733816105f8565b811461073e57600080fd5b5056fea26469706673582212200313c938aeb2bf6c5416e6f933f57a53c4360448f669e13a950a8403d072146964736f6c63430008070033a2646970667358221220b5c8963adafac31a9a2a26cefba6aac9ac31aea06e7e7a267e1d2ba0ccefb7f364736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xCBC DUP1 PUSH2 0x20 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x4C JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x1563700F EQ PUSH2 0x51 JUMPI DUP1 PUSH4 0x1DDA6541 EQ PUSH2 0x6D JUMPI DUP1 PUSH4 0x64591BF1 EQ PUSH2 0x77 JUMPI DUP1 PUSH4 0xC5F19C20 EQ PUSH2 0xA7 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x6B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x66 SWAP2 SWAP1 PUSH2 0x3B0 JUMP JUMPDEST PUSH2 0xD7 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x75 PUSH2 0x189 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x91 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x8C SWAP2 SWAP1 PUSH2 0x356 JUMP JUMPDEST PUSH2 0x21C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x9E SWAP2 SWAP1 PUSH2 0x40E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xC1 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xBC SWAP2 SWAP1 PUSH2 0x356 JUMP JUMPDEST PUSH2 0x25B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xCE SWAP2 SWAP1 PUSH2 0x429 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 DUP1 DUP4 DUP2 SLOAD DUP2 LT PUSH2 0xEC JUMPI PUSH2 0xEB PUSH2 0x4A4 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x6057361D DUP4 PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x152 SWAP2 SWAP1 PUSH2 0x429 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x16C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x180 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD PUSH2 0x197 SWAP1 PUSH2 0x31F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 PUSH1 0x0 CREATE DUP1 ISZERO DUP1 ISZERO PUSH2 0x1B3 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP SWAP1 POP PUSH1 0x0 DUP2 SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x22C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP2 POP SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0x270 JUMPI PUSH2 0x26F PUSH2 0x4A4 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x2E64CEC1 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x2E0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2F4 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x318 SWAP2 SWAP1 PUSH2 0x383 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x797 DUP1 PUSH2 0x4F0 DUP4 CODECOPY ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x33B DUP2 PUSH2 0x4D8 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x350 DUP2 PUSH2 0x4D8 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x36C JUMPI PUSH2 0x36B PUSH2 0x4D3 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x37A DUP5 DUP3 DUP6 ADD PUSH2 0x32C JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x399 JUMPI PUSH2 0x398 PUSH2 0x4D3 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x3A7 DUP5 DUP3 DUP6 ADD PUSH2 0x341 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x3C7 JUMPI PUSH2 0x3C6 PUSH2 0x4D3 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x3D5 DUP6 DUP3 DUP7 ADD PUSH2 0x32C JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x3E6 DUP6 DUP3 DUP7 ADD PUSH2 0x32C JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH2 0x3F9 DUP2 PUSH2 0x46E JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x408 DUP2 PUSH2 0x464 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x423 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x3F0 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x43E PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x3FF JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x479 DUP3 PUSH2 0x480 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x48B DUP3 PUSH2 0x492 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x49D DUP3 PUSH2 0x444 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x4E1 DUP2 PUSH2 0x464 JUMP JUMPDEST DUP2 EQ PUSH2 0x4EC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x777 DUP1 PUSH2 0x20 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x57 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x2E64CEC1 EQ PUSH2 0x5C JUMPI DUP1 PUSH4 0x6057361D EQ PUSH2 0x7A JUMPI DUP1 PUSH4 0x6F760F41 EQ PUSH2 0x96 JUMPI DUP1 PUSH4 0x9E7A13AD EQ PUSH2 0xB2 JUMPI DUP1 PUSH4 0xB2AC62EF EQ PUSH2 0xE3 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x64 PUSH2 0x113 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x71 SWAP2 SWAP1 PUSH2 0x530 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x94 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x8F SWAP2 SWAP1 PUSH2 0x473 JUMP JUMPDEST PUSH2 0x11C JUMP JUMPDEST STOP JUMPDEST PUSH2 0xB0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xAB SWAP2 SWAP1 PUSH2 0x417 JUMP JUMPDEST PUSH2 0x126 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xCC PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xC7 SWAP2 SWAP1 PUSH2 0x473 JUMP JUMPDEST PUSH2 0x1BC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xDA SWAP3 SWAP2 SWAP1 PUSH2 0x54B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xFD PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xF8 SWAP2 SWAP1 PUSH2 0x3CE JUMP JUMPDEST PUSH2 0x278 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x10A SWAP2 SWAP1 PUSH2 0x530 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST DUP1 PUSH1 0x0 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 DUP4 DUP2 MSTORE PUSH1 0x20 ADD DUP5 DUP2 MSTORE POP SWAP1 POP PUSH1 0x2 DUP2 SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD SSTORE PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x191 SWAP3 SWAP2 SWAP1 PUSH2 0x2A6 JUMP JUMPDEST POP POP POP DUP2 PUSH1 0x1 DUP5 PUSH1 0x40 MLOAD PUSH2 0x1A5 SWAP2 SWAP1 PUSH2 0x519 JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 DUP2 SWAP1 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x2 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x1CC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH1 0x0 SWAP2 POP SWAP1 POP DUP1 PUSH1 0x0 ADD SLOAD SWAP1 DUP1 PUSH1 0x1 ADD DUP1 SLOAD PUSH2 0x1F5 SWAP1 PUSH2 0x644 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x221 SWAP1 PUSH2 0x644 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x26E JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x243 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x26E JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x251 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP DUP3 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP1 MLOAD PUSH1 0x20 DUP2 ADD DUP3 ADD DUP1 MLOAD DUP5 DUP3 MSTORE PUSH1 0x20 DUP4 ADD PUSH1 0x20 DUP6 ADD KECCAK256 DUP2 DUP4 MSTORE DUP1 SWAP6 POP POP POP POP POP POP PUSH1 0x0 SWAP2 POP SWAP1 POP SLOAD DUP2 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH2 0x2B2 SWAP1 PUSH2 0x644 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0x2D4 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0x31B JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0x2ED JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0x31B JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0x31B JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x31A JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x2FF JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x328 SWAP2 SWAP1 PUSH2 0x32C JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x345 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x32D JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x35C PUSH2 0x357 DUP5 PUSH2 0x5A0 JUMP JUMPDEST PUSH2 0x57B JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x378 JUMPI PUSH2 0x377 PUSH2 0x70A JUMP JUMPDEST JUMPDEST PUSH2 0x383 DUP5 DUP3 DUP6 PUSH2 0x602 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x3A0 JUMPI PUSH2 0x39F PUSH2 0x705 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x3B0 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x349 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x3C8 DUP2 PUSH2 0x72A JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3E4 JUMPI PUSH2 0x3E3 PUSH2 0x714 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP3 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x402 JUMPI PUSH2 0x401 PUSH2 0x70F JUMP JUMPDEST JUMPDEST PUSH2 0x40E DUP5 DUP3 DUP6 ADD PUSH2 0x38B JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x42E JUMPI PUSH2 0x42D PUSH2 0x714 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x44C JUMPI PUSH2 0x44B PUSH2 0x70F JUMP JUMPDEST JUMPDEST PUSH2 0x458 DUP6 DUP3 DUP7 ADD PUSH2 0x38B JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x469 DUP6 DUP3 DUP7 ADD PUSH2 0x3B9 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x489 JUMPI PUSH2 0x488 PUSH2 0x714 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x497 DUP5 DUP3 DUP6 ADD PUSH2 0x3B9 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4AB DUP3 PUSH2 0x5D1 JUMP JUMPDEST PUSH2 0x4B5 DUP2 DUP6 PUSH2 0x5DC JUMP JUMPDEST SWAP4 POP PUSH2 0x4C5 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x611 JUMP JUMPDEST PUSH2 0x4CE DUP2 PUSH2 0x719 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4E4 DUP3 PUSH2 0x5D1 JUMP JUMPDEST PUSH2 0x4EE DUP2 DUP6 PUSH2 0x5ED JUMP JUMPDEST SWAP4 POP PUSH2 0x4FE DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x611 JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x513 DUP2 PUSH2 0x5F8 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x525 DUP3 DUP5 PUSH2 0x4D9 JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x545 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x50A JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x560 PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0x50A JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0x572 DUP2 DUP5 PUSH2 0x4A0 JUMP JUMPDEST SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x585 PUSH2 0x596 JUMP JUMPDEST SWAP1 POP PUSH2 0x591 DUP3 DUP3 PUSH2 0x676 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x5BB JUMPI PUSH2 0x5BA PUSH2 0x6D6 JUMP JUMPDEST JUMPDEST PUSH2 0x5C4 DUP3 PUSH2 0x719 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x62F JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x614 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x63E JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x65C JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x670 JUMPI PUSH2 0x66F PUSH2 0x6A7 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x67F DUP3 PUSH2 0x719 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x69E JUMPI PUSH2 0x69D PUSH2 0x6D6 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x733 DUP2 PUSH2 0x5F8 JUMP JUMPDEST DUP2 EQ PUSH2 0x73E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SUB SGT 0xC9 CODESIZE 0xAE 0xB2 0xBF PUSH13 0x5416E6F933F57A53C4360448F6 PUSH10 0xE13A950A8403D0721469 PUSH5 0x736F6C6343 STOP ADDMOD SMOD STOP CALLER LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xB5 0xC8 SWAP7 GASPRICE 0xDA STATICCALL 0xC3 BYTE SWAP11 0x2A 0x26 0xCE 0xFB 0xA6 0xAA 0xC9 0xAC BALANCE 0xAE LOG0 PUSH15 0x7E7A267E1D2BA0CCEFB7F364736F6C PUSH4 0x43000807 STOP CALLER ",
"sourceMap": "122:808:1:-:0;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@createSimpleStorageContract_88": {
"entryPoint": 393,
"id": 88,
"parameterSlots": 0,
"returnSlots": 0
},
"@sfGet_123": {
"entryPoint": 603,
"id": 123,
"parameterSlots": 1,
"returnSlots": 1
},
"@sfStore_109": {
"entryPoint": 215,
"id": 109,
"parameterSlots": 2,
"returnSlots": 0
},
"@simpleStorageArray_70": {
"entryPoint": 540,
"id": 70,
"parameterSlots": 0,
"returnSlots": 0
},
"abi_decode_t_uint256": {
"entryPoint": 812,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256_fromMemory": {
"entryPoint": 833,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 854,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256_fromMemory": {
"entryPoint": 899,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256t_uint256": {
"entryPoint": 944,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_encode_t_contract$_SimpleStorage_$63_to_t_address_fromStack": {
"entryPoint": 1008,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 1023,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_contract$_SimpleStorage_$63__to_t_address__fromStack_reversed": {
"entryPoint": 1038,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 1065,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 1092,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 1124,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"convert_t_contract$_SimpleStorage_$63_to_t_address": {
"entryPoint": 1134,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"convert_t_uint160_to_t_address": {
"entryPoint": 1152,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"convert_t_uint160_to_t_uint160": {
"entryPoint": 1170,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x32": {
"entryPoint": 1188,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 1235,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 1240,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:3526:2",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "59:87:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "69:29:2",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "91:6:2"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "78:12:2"
},
"nodeType": "YulFunctionCall",
"src": "78:20:2"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "69:5:2"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "134:5:2"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "107:26:2"
},
"nodeType": "YulFunctionCall",
"src": "107:33:2"
},
"nodeType": "YulExpressionStatement",
"src": "107:33:2"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "37:6:2",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "45:3:2",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "53:5:2",
"type": ""
}
],
"src": "7:139:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "215:80:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "225:22:2",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "240:6:2"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "234:5:2"
},
"nodeType": "YulFunctionCall",
"src": "234:13:2"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "225:5:2"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "283:5:2"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "256:26:2"
},
"nodeType": "YulFunctionCall",
"src": "256:33:2"
},
"nodeType": "YulExpressionStatement",
"src": "256:33:2"
}
]
},
"name": "abi_decode_t_uint256_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "193:6:2",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "201:3:2",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "209:5:2",
"type": ""
}
],
"src": "152:143:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "367:263:2",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "413:83:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "415:77:2"
},
"nodeType": "YulFunctionCall",
"src": "415:79:2"
},
"nodeType": "YulExpressionStatement",
"src": "415:79:2"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "388:7:2"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "397:9:2"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "384:3:2"
},
"nodeType": "YulFunctionCall",
"src": "384:23:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "409:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "380:3:2"
},
"nodeType": "YulFunctionCall",
"src": "380:32:2"
},
"nodeType": "YulIf",
"src": "377:119:2"
},
{
"nodeType": "YulBlock",
"src": "506:117:2",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "521:15:2",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "535:1:2",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "525:6:2",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "550:63:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "585:9:2"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "596:6:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "581:3:2"
},
"nodeType": "YulFunctionCall",
"src": "581:22:2"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "605:7:2"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "560:20:2"
},
"nodeType": "YulFunctionCall",
"src": "560:53:2"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "550:6:2"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "337:9:2",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "348:7:2",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "360:6:2",
"type": ""
}
],
"src": "301:329:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "713:274:2",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "759:83:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "761:77:2"
},
"nodeType": "YulFunctionCall",
"src": "761:79:2"
},
"nodeType": "YulExpressionStatement",
"src": "761:79:2"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "734:7:2"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "743:9:2"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "730:3:2"
},
"nodeType": "YulFunctionCall",
"src": "730:23:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "755:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "726:3:2"
},
"nodeType": "YulFunctionCall",
"src": "726:32:2"
},
"nodeType": "YulIf",
"src": "723:119:2"
},
{
"nodeType": "YulBlock",
"src": "852:128:2",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "867:15:2",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "881:1:2",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "871:6:2",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "896:74:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "942:9:2"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "953:6:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "938:3:2"
},
"nodeType": "YulFunctionCall",
"src": "938:22:2"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "962:7:2"
}
],
"functionName": {
"name": "abi_decode_t_uint256_fromMemory",
"nodeType": "YulIdentifier",
"src": "906:31:2"
},
"nodeType": "YulFunctionCall",
"src": "906:64:2"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "896:6:2"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "683:9:2",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "694:7:2",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "706:6:2",
"type": ""
}
],
"src": "636:351:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1076:391:2",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1122:83:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "1124:77:2"
},
"nodeType": "YulFunctionCall",
"src": "1124:79:2"
},
"nodeType": "YulExpressionStatement",
"src": "1124:79:2"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1097:7:2"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1106:9:2"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1093:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1093:23:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1118:2:2",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1089:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1089:32:2"
},
"nodeType": "YulIf",
"src": "1086:119:2"
},
{
"nodeType": "YulBlock",
"src": "1215:117:2",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1230:15:2",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1244:1:2",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1234:6:2",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1259:63:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1294:9:2"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1305:6:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1290:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1290:22:2"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1314:7:2"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "1269:20:2"
},
"nodeType": "YulFunctionCall",
"src": "1269:53:2"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1259:6:2"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1342:118:2",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1357:16:2",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1371:2:2",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1361:6:2",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1387:63:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1422:9:2"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1433:6:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1418:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1418:22:2"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1442:7:2"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "1397:20:2"
},
"nodeType": "YulFunctionCall",
"src": "1397:53:2"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1387:6:2"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1038:9:2",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1049:7:2",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1061:6:2",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1069:6:2",
"type": ""
}
],
"src": "993:474:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1558:86:2",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1575:3:2"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1631:5:2"
}
],
"functionName": {
"name": "convert_t_contract$_SimpleStorage_$63_to_t_address",
"nodeType": "YulIdentifier",
"src": "1580:50:2"
},
"nodeType": "YulFunctionCall",
"src": "1580:57:2"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1568:6:2"
},
"nodeType": "YulFunctionCall",
"src": "1568:70:2"
},
"nodeType": "YulExpressionStatement",
"src": "1568:70:2"
}
]
},
"name": "abi_encode_t_contract$_SimpleStorage_$63_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1546:5:2",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1553:3:2",
"type": ""
}
],
"src": "1473:171:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1715:53:2",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1732:3:2"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1755:5:2"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "1737:17:2"
},
"nodeType": "YulFunctionCall",
"src": "1737:24:2"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1725:6:2"
},
"nodeType": "YulFunctionCall",
"src": "1725:37:2"
},
"nodeType": "YulExpressionStatement",
"src": "1725:37:2"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1703:5:2",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1710:3:2",
"type": ""
}
],
"src": "1650:118:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1892:144:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1902:26:2",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1914:9:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1925:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1910:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1910:18:2"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1902:4:2"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2002:6:2"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2015:9:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2026:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2011:3:2"
},
"nodeType": "YulFunctionCall",
"src": "2011:17:2"
}
],
"functionName": {
"name": "abi_encode_t_contract$_SimpleStorage_$63_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "1938:63:2"
},
"nodeType": "YulFunctionCall",
"src": "1938:91:2"
},
"nodeType": "YulExpressionStatement",
"src": "1938:91:2"
}
]
},
"name": "abi_encode_tuple_t_contract$_SimpleStorage_$63__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1864:9:2",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1876:6:2",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1887:4:2",
"type": ""
}
],
"src": "1774:262:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2140:124:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2150:26:2",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2162:9:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2173:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2158:3:2"
},
"nodeType": "YulFunctionCall",
"src": "2158:18:2"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2150:4:2"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2230:6:2"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2243:9:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2254:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2239:3:2"
},
"nodeType": "YulFunctionCall",
"src": "2239:17:2"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "2186:43:2"
},
"nodeType": "YulFunctionCall",
"src": "2186:71:2"
},
"nodeType": "YulExpressionStatement",
"src": "2186:71:2"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2112:9:2",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2124:6:2",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "2135:4:2",
"type": ""
}
],
"src": "2042:222:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2310:35:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2320:19:2",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2336:2:2",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "2330:5:2"
},
"nodeType": "YulFunctionCall",
"src": "2330:9:2"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "2320:6:2"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "2303:6:2",
"type": ""
}
],
"src": "2270:75:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2396:81:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2406:65:2",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2421:5:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2428:42:2",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "2417:3:2"
},
"nodeType": "YulFunctionCall",
"src": "2417:54:2"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "2406:7:2"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2378:5:2",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "2388:7:2",
"type": ""
}
],
"src": "2351:126:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2528:32:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2538:16:2",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "2549:5:2"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "2538:7:2"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2510:5:2",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "2520:7:2",
"type": ""
}
],
"src": "2483:77:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2646:66:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2656:50:2",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2700:5:2"
}
],
"functionName": {
"name": "convert_t_uint160_to_t_address",
"nodeType": "YulIdentifier",
"src": "2669:30:2"
},
"nodeType": "YulFunctionCall",
"src": "2669:37:2"
},
"variableNames": [
{
"name": "converted",
"nodeType": "YulIdentifier",
"src": "2656:9:2"
}
]
}
]
},
"name": "convert_t_contract$_SimpleStorage_$63_to_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2626:5:2",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nodeType": "YulTypedName",
"src": "2636:9:2",
"type": ""
}
],
"src": "2566:146:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2778:66:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2788:50:2",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2832:5:2"
}
],
"functionName": {
"name": "convert_t_uint160_to_t_uint160",
"nodeType": "YulIdentifier",
"src": "2801:30:2"
},
"nodeType": "YulFunctionCall",
"src": "2801:37:2"
},
"variableNames": [
{
"name": "converted",
"nodeType": "YulIdentifier",
"src": "2788:9:2"
}
]
}
]
},
"name": "convert_t_uint160_to_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2758:5:2",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nodeType": "YulTypedName",
"src": "2768:9:2",
"type": ""
}
],
"src": "2718:126:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2910:53:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2920:37:2",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2951:5:2"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "2933:17:2"
},
"nodeType": "YulFunctionCall",
"src": "2933:24:2"
},
"variableNames": [
{
"name": "converted",
"nodeType": "YulIdentifier",
"src": "2920:9:2"
}
]
}
]
},
"name": "convert_t_uint160_to_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2890:5:2",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nodeType": "YulTypedName",
"src": "2900:9:2",
"type": ""
}
],
"src": "2850:113:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2997:152:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3014:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3017:77:2",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3007:6:2"
},
"nodeType": "YulFunctionCall",
"src": "3007:88:2"
},
"nodeType": "YulExpressionStatement",
"src": "3007:88:2"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3111:1:2",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3114:4:2",
"type": "",
"value": "0x32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3104:6:2"
},
"nodeType": "YulFunctionCall",
"src": "3104:15:2"
},
"nodeType": "YulExpressionStatement",
"src": "3104:15:2"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3135:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3138:4:2",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3128:6:2"
},
"nodeType": "YulFunctionCall",
"src": "3128:15:2"
},
"nodeType": "YulExpressionStatement",
"src": "3128:15:2"
}
]
},
"name": "panic_error_0x32",
"nodeType": "YulFunctionDefinition",
"src": "2969:180:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3244:28:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3261:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3264:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3254:6:2"
},
"nodeType": "YulFunctionCall",
"src": "3254:12:2"
},
"nodeType": "YulExpressionStatement",
"src": "3254:12:2"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "3155:117:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3367:28:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3384:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3387:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3377:6:2"
},
"nodeType": "YulFunctionCall",
"src": "3377:12:2"
},
"nodeType": "YulExpressionStatement",
"src": "3377:12:2"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "3278:117:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3444:79:2",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3501:16:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3510:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3513:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3503:6:2"
},
"nodeType": "YulFunctionCall",
"src": "3503:12:2"
},
"nodeType": "YulExpressionStatement",
"src": "3503:12:2"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3467:5:2"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3492:5:2"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "3474:17:2"
},
"nodeType": "YulFunctionCall",
"src": "3474:24:2"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "3464:2:2"
},
"nodeType": "YulFunctionCall",
"src": "3464:35:2"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3457:6:2"
},
"nodeType": "YulFunctionCall",
"src": "3457:43:2"
},
"nodeType": "YulIf",
"src": "3454:63:2"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3437:5:2",
"type": ""
}
],
"src": "3401:122:2"
}
]
},
"contents": "{\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_t_uint256_fromMemory(offset, end) -> value {\n value := mload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_uint256_fromMemory(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256_fromMemory(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_uint256t_uint256(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_encode_t_contract$_SimpleStorage_$63_to_t_address_fromStack(value, pos) {\n mstore(pos, convert_t_contract$_SimpleStorage_$63_to_t_address(value))\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_contract$_SimpleStorage_$63__to_t_address__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_contract$_SimpleStorage_$63_to_t_address_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function convert_t_contract$_SimpleStorage_$63_to_t_address(value) -> converted {\n converted := convert_t_uint160_to_t_address(value)\n }\n\n function convert_t_uint160_to_t_address(value) -> converted {\n converted := convert_t_uint160_to_t_uint160(value)\n }\n\n function convert_t_uint160_to_t_uint160(value) -> converted {\n converted := cleanup_t_uint160(value)\n }\n\n function panic_error_0x32() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x32)\n revert(0, 0x24)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n}\n",
"id": 2,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b506004361061004c5760003560e01c80631563700f146100515780631dda65411461006d57806364591bf114610077578063c5f19c20146100a7575b600080fd5b61006b600480360381019061006691906103b0565b6100d7565b005b610075610189565b005b610091600480360381019061008c9190610356565b61021c565b60405161009e919061040e565b60405180910390f35b6100c160048036038101906100bc9190610356565b61025b565b6040516100ce9190610429565b60405180910390f35b60008083815481106100ec576100eb6104a4565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff16636057361d836040518263ffffffff1660e01b81526004016101529190610429565b600060405180830381600087803b15801561016c57600080fd5b505af1158015610180573d6000803e3d6000fd5b50505050505050565b60006040516101979061031f565b604051809103906000f0801580156101b3573d6000803e3d6000fd5b5090506000819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000818154811061022c57600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008082815481106102705761026f6104a4565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16632e64cec16040518163ffffffff1660e01b815260040160206040518083038186803b1580156102e057600080fd5b505afa1580156102f4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103189190610383565b9050919050565b610797806104f083390190565b60008135905061033b816104d8565b92915050565b600081519050610350816104d8565b92915050565b60006020828403121561036c5761036b6104d3565b5b600061037a8482850161032c565b91505092915050565b600060208284031215610399576103986104d3565b5b60006103a784828501610341565b91505092915050565b600080604083850312156103c7576103c66104d3565b5b60006103d58582860161032c565b92505060206103e68582860161032c565b9150509250929050565b6103f98161046e565b82525050565b61040881610464565b82525050565b600060208201905061042360008301846103f0565b92915050565b600060208201905061043e60008301846103ff565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061047982610480565b9050919050565b600061048b82610492565b9050919050565b600061049d82610444565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600080fd5b6104e181610464565b81146104ec57600080fd5b5056fe608060405234801561001057600080fd5b50610777806100206000396000f3fe608060405234801561001057600080fd5b50600436106100575760003560e01c80632e64cec11461005c5780636057361d1461007a5780636f760f41146100965780639e7a13ad146100b2578063b2ac62ef146100e3575b600080fd5b610064610113565b6040516100719190610530565b60405180910390f35b610094600480360381019061008f9190610473565b61011c565b005b6100b060048036038101906100ab9190610417565b610126565b005b6100cc60048036038101906100c79190610473565b6101bc565b6040516100da92919061054b565b60405180910390f35b6100fd60048036038101906100f891906103ce565b610278565b60405161010a9190610530565b60405180910390f35b60008054905090565b8060008190555050565b6000604051806040016040528083815260200184815250905060028190806001815401808255809150506001900390600052602060002090600202016000909190919091506000820151816000015560208201518160010190805190602001906101919291906102a6565b505050816001846040516101a59190610519565b908152602001604051809103902081905550505050565b600281815481106101cc57600080fd5b90600052602060002090600202016000915090508060000154908060010180546101f590610644565b80601f016020809104026020016040519081016040528092919081815260200182805461022190610644565b801561026e5780601f106102435761010080835404028352916020019161026e565b820191906000526020600020905b81548152906001019060200180831161025157829003601f168201915b5050505050905082565b6001818051602081018201805184825260208301602085012081835280955050505050506000915090505481565b8280546102b290610644565b90600052602060002090601f0160209004810192826102d4576000855561031b565b82601f106102ed57805160ff191683800117855561031b565b8280016001018555821561031b579182015b8281111561031a5782518255916020019190600101906102ff565b5b509050610328919061032c565b5090565b5b8082111561034557600081600090555060010161032d565b5090565b600061035c610357846105a0565b61057b565b9050828152602081018484840111156103785761037761070a565b5b610383848285610602565b509392505050565b600082601f8301126103a05761039f610705565b5b81356103b0848260208601610349565b91505092915050565b6000813590506103c88161072a565b92915050565b6000602082840312156103e4576103e3610714565b5b600082013567ffffffffffffffff8111156104025761040161070f565b5b61040e8482850161038b565b91505092915050565b6000806040838503121561042e5761042d610714565b5b600083013567ffffffffffffffff81111561044c5761044b61070f565b5b6104588582860161038b565b9250506020610469858286016103b9565b9150509250929050565b60006020828403121561048957610488610714565b5b6000610497848285016103b9565b91505092915050565b60006104ab826105d1565b6104b581856105dc565b93506104c5818560208601610611565b6104ce81610719565b840191505092915050565b60006104e4826105d1565b6104ee81856105ed565b93506104fe818560208601610611565b80840191505092915050565b610513816105f8565b82525050565b600061052582846104d9565b915081905092915050565b6000602082019050610545600083018461050a565b92915050565b6000604082019050610560600083018561050a565b818103602083015261057281846104a0565b90509392505050565b6000610585610596565b90506105918282610676565b919050565b6000604051905090565b600067ffffffffffffffff8211156105bb576105ba6106d6565b5b6105c482610719565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b6000819050919050565b82818337600083830152505050565b60005b8381101561062f578082015181840152602081019050610614565b8381111561063e576000848401525b50505050565b6000600282049050600182168061065c57607f821691505b602082108114156106705761066f6106a7565b5b50919050565b61067f82610719565b810181811067ffffffffffffffff8211171561069e5761069d6106d6565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b610733816105f8565b811461073e57600080fd5b5056fea26469706673582212200313c938aeb2bf6c5416e6f933f57a53c4360448f669e13a950a8403d072146964736f6c63430008070033a2646970667358221220b5c8963adafac31a9a2a26cefba6aac9ac31aea06e7e7a267e1d2ba0ccefb7f364736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x4C JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x1563700F EQ PUSH2 0x51 JUMPI DUP1 PUSH4 0x1DDA6541 EQ PUSH2 0x6D JUMPI DUP1 PUSH4 0x64591BF1 EQ PUSH2 0x77 JUMPI DUP1 PUSH4 0xC5F19C20 EQ PUSH2 0xA7 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x6B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x66 SWAP2 SWAP1 PUSH2 0x3B0 JUMP JUMPDEST PUSH2 0xD7 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x75 PUSH2 0x189 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x91 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x8C SWAP2 SWAP1 PUSH2 0x356 JUMP JUMPDEST PUSH2 0x21C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x9E SWAP2 SWAP1 PUSH2 0x40E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xC1 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xBC SWAP2 SWAP1 PUSH2 0x356 JUMP JUMPDEST PUSH2 0x25B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xCE SWAP2 SWAP1 PUSH2 0x429 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 DUP1 DUP4 DUP2 SLOAD DUP2 LT PUSH2 0xEC JUMPI PUSH2 0xEB PUSH2 0x4A4 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x6057361D DUP4 PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x152 SWAP2 SWAP1 PUSH2 0x429 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x16C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x180 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD PUSH2 0x197 SWAP1 PUSH2 0x31F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 PUSH1 0x0 CREATE DUP1 ISZERO DUP1 ISZERO PUSH2 0x1B3 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP SWAP1 POP PUSH1 0x0 DUP2 SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x22C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP2 POP SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0x270 JUMPI PUSH2 0x26F PUSH2 0x4A4 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x2E64CEC1 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x2E0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2F4 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x318 SWAP2 SWAP1 PUSH2 0x383 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x797 DUP1 PUSH2 0x4F0 DUP4 CODECOPY ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x33B DUP2 PUSH2 0x4D8 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x350 DUP2 PUSH2 0x4D8 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x36C JUMPI PUSH2 0x36B PUSH2 0x4D3 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x37A DUP5 DUP3 DUP6 ADD PUSH2 0x32C JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x399 JUMPI PUSH2 0x398 PUSH2 0x4D3 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x3A7 DUP5 DUP3 DUP6 ADD PUSH2 0x341 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x3C7 JUMPI PUSH2 0x3C6 PUSH2 0x4D3 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x3D5 DUP6 DUP3 DUP7 ADD PUSH2 0x32C JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x3E6 DUP6 DUP3 DUP7 ADD PUSH2 0x32C JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH2 0x3F9 DUP2 PUSH2 0x46E JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x408 DUP2 PUSH2 0x464 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x423 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x3F0 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x43E PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x3FF JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x479 DUP3 PUSH2 0x480 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x48B DUP3 PUSH2 0x492 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x49D DUP3 PUSH2 0x444 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x4E1 DUP2 PUSH2 0x464 JUMP JUMPDEST DUP2 EQ PUSH2 0x4EC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x777 DUP1 PUSH2 0x20 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x57 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x2E64CEC1 EQ PUSH2 0x5C JUMPI DUP1 PUSH4 0x6057361D EQ PUSH2 0x7A JUMPI DUP1 PUSH4 0x6F760F41 EQ PUSH2 0x96 JUMPI DUP1 PUSH4 0x9E7A13AD EQ PUSH2 0xB2 JUMPI DUP1 PUSH4 0xB2AC62EF EQ PUSH2 0xE3 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x64 PUSH2 0x113 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x71 SWAP2 SWAP1 PUSH2 0x530 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x94 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x8F SWAP2 SWAP1 PUSH2 0x473 JUMP JUMPDEST PUSH2 0x11C JUMP JUMPDEST STOP JUMPDEST PUSH2 0xB0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xAB SWAP2 SWAP1 PUSH2 0x417 JUMP JUMPDEST PUSH2 0x126 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xCC PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xC7 SWAP2 SWAP1 PUSH2 0x473 JUMP JUMPDEST PUSH2 0x1BC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xDA SWAP3 SWAP2 SWAP1 PUSH2 0x54B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xFD PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xF8 SWAP2 SWAP1 PUSH2 0x3CE JUMP JUMPDEST PUSH2 0x278 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x10A SWAP2 SWAP1 PUSH2 0x530 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST DUP1 PUSH1 0x0 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 DUP4 DUP2 MSTORE PUSH1 0x20 ADD DUP5 DUP2 MSTORE POP SWAP1 POP PUSH1 0x2 DUP2 SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD SSTORE PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x191 SWAP3 SWAP2 SWAP1 PUSH2 0x2A6 JUMP JUMPDEST POP POP POP DUP2 PUSH1 0x1 DUP5 PUSH1 0x40 MLOAD PUSH2 0x1A5 SWAP2 SWAP1 PUSH2 0x519 JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 DUP2 SWAP1 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x2 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x1CC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH1 0x0 SWAP2 POP SWAP1 POP DUP1 PUSH1 0x0 ADD SLOAD SWAP1 DUP1 PUSH1 0x1 ADD DUP1 SLOAD PUSH2 0x1F5 SWAP1 PUSH2 0x644 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x221 SWAP1 PUSH2 0x644 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x26E JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x243 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x26E JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x251 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP DUP3 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP1 MLOAD PUSH1 0x20 DUP2 ADD DUP3 ADD DUP1 MLOAD DUP5 DUP3 MSTORE PUSH1 0x20 DUP4 ADD PUSH1 0x20 DUP6 ADD KECCAK256 DUP2 DUP4 MSTORE DUP1 SWAP6 POP POP POP POP POP POP PUSH1 0x0 SWAP2 POP SWAP1 POP SLOAD DUP2 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH2 0x2B2 SWAP1 PUSH2 0x644 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0x2D4 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0x31B JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0x2ED JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0x31B JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0x31B JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x31A JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x2FF JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x328 SWAP2 SWAP1 PUSH2 0x32C JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x345 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x32D JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x35C PUSH2 0x357 DUP5 PUSH2 0x5A0 JUMP JUMPDEST PUSH2 0x57B JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x378 JUMPI PUSH2 0x377 PUSH2 0x70A JUMP JUMPDEST JUMPDEST PUSH2 0x383 DUP5 DUP3 DUP6 PUSH2 0x602 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x3A0 JUMPI PUSH2 0x39F PUSH2 0x705 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x3B0 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x349 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x3C8 DUP2 PUSH2 0x72A JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3E4 JUMPI PUSH2 0x3E3 PUSH2 0x714 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP3 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x402 JUMPI PUSH2 0x401 PUSH2 0x70F JUMP JUMPDEST JUMPDEST PUSH2 0x40E DUP5 DUP3 DUP6 ADD PUSH2 0x38B JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x42E JUMPI PUSH2 0x42D PUSH2 0x714 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x44C JUMPI PUSH2 0x44B PUSH2 0x70F JUMP JUMPDEST JUMPDEST PUSH2 0x458 DUP6 DUP3 DUP7 ADD PUSH2 0x38B JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x469 DUP6 DUP3 DUP7 ADD PUSH2 0x3B9 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x489 JUMPI PUSH2 0x488 PUSH2 0x714 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x497 DUP5 DUP3 DUP6 ADD PUSH2 0x3B9 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4AB DUP3 PUSH2 0x5D1 JUMP JUMPDEST PUSH2 0x4B5 DUP2 DUP6 PUSH2 0x5DC JUMP JUMPDEST SWAP4 POP PUSH2 0x4C5 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x611 JUMP JUMPDEST PUSH2 0x4CE DUP2 PUSH2 0x719 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4E4 DUP3 PUSH2 0x5D1 JUMP JUMPDEST PUSH2 0x4EE DUP2 DUP6 PUSH2 0x5ED JUMP JUMPDEST SWAP4 POP PUSH2 0x4FE DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x611 JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x513 DUP2 PUSH2 0x5F8 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x525 DUP3 DUP5 PUSH2 0x4D9 JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x545 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x50A JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x560 PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0x50A JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0x572 DUP2 DUP5 PUSH2 0x4A0 JUMP JUMPDEST SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x585 PUSH2 0x596 JUMP JUMPDEST SWAP1 POP PUSH2 0x591 DUP3 DUP3 PUSH2 0x676 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x5BB JUMPI PUSH2 0x5BA PUSH2 0x6D6 JUMP JUMPDEST JUMPDEST PUSH2 0x5C4 DUP3 PUSH2 0x719 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x62F JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x614 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x63E JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x65C JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x670 JUMPI PUSH2 0x66F PUSH2 0x6A7 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x67F DUP3 PUSH2 0x719 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x69E JUMPI PUSH2 0x69D PUSH2 0x6D6 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x733 DUP2 PUSH2 0x5F8 JUMP JUMPDEST DUP2 EQ PUSH2 0x73E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SUB SGT 0xC9 CODESIZE 0xAE 0xB2 0xBF PUSH13 0x5416E6F933F57A53C4360448F6 PUSH10 0xE13A950A8403D0721469 PUSH5 0x736F6C6343 STOP ADDMOD SMOD STOP CALLER LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xB5 0xC8 SWAP7 GASPRICE 0xDA STATICCALL 0xC3 BYTE SWAP11 0x2A 0x26 0xCE 0xFB 0xA6 0xAA 0xC9 0xAC BALANCE 0xAE LOG0 PUSH15 0x7E7A267E1D2BA0CCEFB7F364736F6C PUSH4 0x43000807 STOP CALLER ",
"sourceMap": "122:808:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;446:329;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;280:160;;;:::i;:::-;;232:41;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;781:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;446:329;648:27;678:18;697:19;678:39;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;648:69;;727:13;:19;;;747:20;727:41;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;529:246;446:329;;:::o;280:160::-;336:27;366:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;336:49;;395:18;419:13;395:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;326:114;280:160::o;232:41::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;781:147::-;845:7;871:18;890:19;871:39;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:48;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;864:57;;781:147;;;:::o;-1:-1:-1:-;;;;;;;;:::o;7:139:2:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:143::-;209:5;240:6;234:13;225:22;;256:33;283:5;256:33;:::i;:::-;152:143;;;;:::o;301:329::-;360:6;409:2;397:9;388:7;384:23;380:32;377:119;;;415:79;;:::i;:::-;377:119;535:1;560:53;605:7;596:6;585:9;581:22;560:53;:::i;:::-;550:63;;506:117;301:329;;;;:::o;636:351::-;706:6;755:2;743:9;734:7;730:23;726:32;723:119;;;761:79;;:::i;:::-;723:119;881:1;906:64;962:7;953:6;942:9;938:22;906:64;:::i;:::-;896:74;;852:128;636:351;;;;:::o;993:474::-;1061:6;1069;1118:2;1106:9;1097:7;1093:23;1089:32;1086:119;;;1124:79;;:::i;:::-;1086:119;1244:1;1269:53;1314:7;1305:6;1294:9;1290:22;1269:53;:::i;:::-;1259:63;;1215:117;1371:2;1397:53;1442:7;1433:6;1422:9;1418:22;1397:53;:::i;:::-;1387:63;;1342:118;993:474;;;;;:::o;1473:171::-;1580:57;1631:5;1580:57;:::i;:::-;1575:3;1568:70;1473:171;;:::o;1650:118::-;1737:24;1755:5;1737:24;:::i;:::-;1732:3;1725:37;1650:118;;:::o;1774:262::-;1887:4;1925:2;1914:9;1910:18;1902:26;;1938:91;2026:1;2015:9;2011:17;2002:6;1938:91;:::i;:::-;1774:262;;;;:::o;2042:222::-;2135:4;2173:2;2162:9;2158:18;2150:26;;2186:71;2254:1;2243:9;2239:17;2230:6;2186:71;:::i;:::-;2042:222;;;;:::o;2351:126::-;2388:7;2428:42;2421:5;2417:54;2406:65;;2351:126;;;:::o;2483:77::-;2520:7;2549:5;2538:16;;2483:77;;;:::o;2566:146::-;2636:9;2669:37;2700:5;2669:37;:::i;:::-;2656:50;;2566:146;;;:::o;2718:126::-;2768:9;2801:37;2832:5;2801:37;:::i;:::-;2788:50;;2718:126;;;:::o;2850:113::-;2900:9;2933:24;2951:5;2933:24;:::i;:::-;2920:37;;2850:113;;;:::o;2969:180::-;3017:77;3014:1;3007:88;3114:4;3111:1;3104:15;3138:4;3135:1;3128:15;3278:117;3387:1;3384;3377:12;3401:122;3474:24;3492:5;3474:24;:::i;:::-;3467:5;3464:35;3454:63;;3513:1;3510;3503:12;3454:63;3401:122;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "652000",
"executionCost": "683",
"totalCost": "652683"
},
"external": {
"createSimpleStorageContract()": "infinite",
"sfGet(uint256)": "infinite",
"sfStore(uint256,uint256)": "infinite",
"simpleStorageArray(uint256)": "5064"
}
},
"methodIdentifiers": {
"createSimpleStorageContract()": "1dda6541",
"sfGet(uint256)": "c5f19c20",
"sfStore(uint256,uint256)": "1563700f",
"simpleStorageArray(uint256)": "64591bf1"
}
},
"abi": [
{
"inputs": [],
"name": "createSimpleStorageContract",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_simpleStorageIndex",
"type": "uint256"
}
],
"name": "sfGet",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_simpleStorageIndex",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "_simpleStorageNumber",
"type": "uint256"
}
],
"name": "sfStore",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "simpleStorageArray",
"outputs": [
{
"internalType": "contract SimpleStorage",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.7+commit.e28d00a7"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [],
"name": "createSimpleStorageContract",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_simpleStorageIndex",
"type": "uint256"
}
],
"name": "sfGet",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_simpleStorageIndex",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "_simpleStorageNumber",
"type": "uint256"
}
],
"name": "sfStore",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "simpleStorageArray",
"outputs": [
{
"internalType": "contract SimpleStorage",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/StorageFactory.sol": "StorageFactory"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/SimpleStorage.sol": {
"keccak256": "0x3b9274eebb254a97108cb057b3d3ae5785e2ed0ac8047bff8d42bd0c70adcb90",
"license": "MIT",
"urls": [
"bzz-raw://e0b97817373873feb7faa46fd2962bab8b76f040b4240dac2d11b9d2a3872d7e",
"dweb:/ipfs/QmdmzP9T9EV6VmZvSAgSxdhQea8ewz2nC5652QgDWtUZZL"
]
},
"contracts/StorageFactory.sol": {
"keccak256": "0x12336f05cdef7f4208148708cdfc798fe6d2b30d5949b45a59c37b8eb30bd0ea",
"license": "MIT",
"urls": [
"bzz-raw://9fb7c27c88f869805ecf67d593fb25582aca75d7628205bd9b00566e8f4c3c50",
"dweb:/ipfs/QmXM9jkTbyVStGgmrArPWgDjdVckRGvyGkhRSL3EQQssJA"
]
}
},
"version": 1
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./SimpleStorage.sol";
// Inheritance using "is" keyword
contract ExtraStorage is SimpleStorage {
// Override functions
// add "virtual" on the original method
function store(uint256 _favNumber) public override {
favouriteNumber = _favNumber + 5;
}
}
// SPDX-License-Identifier: MIT
pragma solidity 0.8.7; // Define solidity version 0.8.7 stable version
// EVM -> Ethereum Virtual Machine
// Avalanche, Fantom, Polygon
contract SimpleStorage {
// Solidity Types:
// boolean
// uint
// int
// address
// bytes
// bool hasFavouriteNumber = false;
// uint favNumber = 123;
// uint256 favNumber2 = 5;
// string favNumberIntext = "56";
// address myAddress = 0x2345cf1f5a82ba19D70E788c3B9C5AB3eDBA098C;
// bytes32 myBytes = "cat";
// -> initalize to 0
uint favouriteNumber;
// mapping acts as key value pair
mapping(string => uint256) public nameToFavouriteNumber;
// Struct
struct People {
uint favNumber;
string name;
}
People[] public people;
// virtual -> to able be overrideable from other contracts
function store(uint256 _favNumber) public virtual {
favouriteNumber = _favNumber;
// favouriteNumber = favouriteNumber + 1; // this will be expesinve
}
// view, pure -> doesn't have a gas fee
function retrieve() public view returns(uint256) {
return favouriteNumber;
}
// pure can not read from storage or from a state
// function see() public pure returns(uint256) {
// return (1+1);
// }
function addPerson(string memory _name, uint256 _favouriteNumber) public {
People memory newPerson = People({ favNumber: _favouriteNumber, name: _name });
people.push(newPerson);
nameToFavouriteNumber[_name] = _favouriteNumber;
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
// importing from other contracts
import "./SimpleStorage.sol";
contract StorageFactory {
// define a global variable
// [type] [accessiblility] [var_name]
SimpleStorage[] public simpleStorageArray;
function createSimpleStorageContract() public {
SimpleStorage simpleStorage = new SimpleStorage();
simpleStorageArray.push(simpleStorage);
}
function sfStore(uint256 _simpleStorageIndex, uint256 _simpleStorageNumber) public {
// Address
// ABI - Application Binary Interface -> you need to interact from other contract
SimpleStorage simpleStorage = simpleStorageArray[_simpleStorageIndex];
simpleStorage.store(_simpleStorageNumber);
}
function sfGet(uint256 _simpleStorageIndex) public view returns(uint256) {
return simpleStorageArray[_simpleStorageIndex].retrieve();
}
}
This file has been truncated, but you can view the full file.
{
"id": "d6240041e5f3bd075c94e618d26b0bdf",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.7",
"solcLongVersion": "0.8.7+commit.e28d00a7",
"input": {
"language": "Solidity",
"sources": {
"contracts/ExtraStorage.sol": {
"content": "// SPDX-License-Identifier: MIT\n\npragma solidity ^0.8.0;\n\nimport \"./SimpleStorage.sol\";\n\n// Inheritance using \"is\" keyword\ncontract ExtraStorage is SimpleStorage {\n\n // Override functions \n // add \"virtual\" on the original method \n function store(uint256 _favNumber) public override {\n favouriteNumber = _favNumber + 5;\n }\n}"
},
"contracts/SimpleStorage.sol": {
"content": "// SPDX-License-Identifier: MIT\npragma solidity 0.8.7; // Define solidity version 0.8.7 stable version\n\n// EVM -> Ethereum Virtual Machine\n// Avalanche, Fantom, Polygon \n\ncontract SimpleStorage {\n // Solidity Types:\n // boolean\n // uint\n // int\n // address \n // bytes\n \n // bool hasFavouriteNumber = false;\n // uint favNumber = 123;\n // uint256 favNumber2 = 5;\n // string favNumberIntext = \"56\";\n // address myAddress = 0x2345cf1f5a82ba19D70E788c3B9C5AB3eDBA098C;\n // bytes32 myBytes = \"cat\";\n\n // -> initalize to 0\n uint favouriteNumber;\n \n // mapping acts as key value pair\n mapping(string => uint256) public nameToFavouriteNumber;\n\n // Struct\n struct People {\n uint favNumber;\n string name;\n }\n People[] public people;\n\n // virtual -> to able be overrideable from other contracts\n function store(uint256 _favNumber) public virtual {\n favouriteNumber = _favNumber;\n // favouriteNumber = favouriteNumber + 1; // this will be expesinve\n } \n \n // view, pure -> doesn't have a gas fee\n function retrieve() public view returns(uint256) {\n return favouriteNumber;\n }\n\n // pure can not read from storage or from a state\n // function see() public pure returns(uint256) {\n // return (1+1);\n // }\n function addPerson(string memory _name, uint256 _favouriteNumber) public {\n People memory newPerson = People({ favNumber: _favouriteNumber, name: _name });\n people.push(newPerson);\n nameToFavouriteNumber[_name] = _favouriteNumber;\n }\n} \n\n"
}
},
"settings": {
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"": [
"ast"
],
"*": [
"abi",
"metadata",
"devdoc",
"userdoc",
"storageLayout",
"evm.legacyAssembly",
"evm.bytecode",
"evm.deployedBytecode",
"evm.methodIdentifiers",
"evm.gasEstimates",
"evm.assembly"
]
}
}
}
},
"output": {
"contracts": {
"contracts/ExtraStorage.sol": {
"ExtraStorage": {
"abi": [
{
"inputs": [
{
"internalType": "string",
"name": "_name",
"type": "string"
},
{
"internalType": "uint256",
"name": "_favouriteNumber",
"type": "uint256"
}
],
"name": "addPerson",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"name": "nameToFavouriteNumber",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "people",
"outputs": [
{
"internalType": "uint256",
"name": "favNumber",
"type": "uint256"
},
{
"internalType": "string",
"name": "name",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "retrieve",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_favNumber",
"type": "uint256"
}
],
"name": "store",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"evm": {
"assembly": " /* \"contracts/ExtraStorage.sol\":123:343 contract ExtraStorage is SimpleStorage {... */\n mstore(0x40, 0x80)\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\ntag_1:\n pop\n dataSize(sub_0)\n dup1\n dataOffset(sub_0)\n 0x00\n codecopy\n 0x00\n return\nstop\n\nsub_0: assembly {\n /* \"contracts/ExtraStorage.sol\":123:343 contract ExtraStorage is SimpleStorage {... */\n mstore(0x40, 0x80)\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\n tag_1:\n pop\n jumpi(tag_2, lt(calldatasize, 0x04))\n shr(0xe0, calldataload(0x00))\n dup1\n 0x2e64cec1\n eq\n tag_3\n jumpi\n dup1\n 0x6057361d\n eq\n tag_4\n jumpi\n dup1\n 0x6f760f41\n eq\n tag_5\n jumpi\n dup1\n 0x9e7a13ad\n eq\n tag_6\n jumpi\n dup1\n 0xb2ac62ef\n eq\n tag_7\n jumpi\n tag_2:\n 0x00\n dup1\n revert\n /* \"contracts/SimpleStorage.sol\":1097:1185 function retrieve() public view returns(uint256) {... */\n tag_3:\n tag_8\n tag_9\n jump\t// in\n tag_8:\n mload(0x40)\n tag_10\n swap2\n swap1\n tag_11\n jump\t// in\n tag_10:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/ExtraStorage.sol\":241:341 function store(uint256 _favNumber) public override {... */\n tag_4:\n tag_12\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_13\n swap2\n swap1\n tag_14\n jump\t// in\n tag_13:\n tag_15\n jump\t// in\n tag_12:\n stop\n /* \"contracts/SimpleStorage.sol\":1332:1589 function addPerson(string memory _name, uint256 _favouriteNumber) public {... */\n tag_5:\n tag_16\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_17\n swap2\n swap1\n tag_18\n jump\t// in\n tag_17:\n tag_19\n jump\t// in\n tag_16:\n stop\n /* \"contracts/SimpleStorage.sol\":778:800 People[] public people */\n tag_6:\n tag_20\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_21\n swap2\n swap1\n tag_14\n jump\t// in\n tag_21:\n tag_22\n jump\t// in\n tag_20:\n mload(0x40)\n tag_23\n swap3\n swap2\n swap1\n tag_24\n jump\t// in\n tag_23:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/SimpleStorage.sol\":631:686 mapping(string => uint256) public nameToFavouriteNumber */\n tag_7:\n tag_25\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_26\n swap2\n swap1\n tag_27\n jump\t// in\n tag_26:\n tag_28\n jump\t// in\n tag_25:\n mload(0x40)\n tag_29\n swap2\n swap1\n tag_11\n jump\t// in\n tag_29:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/SimpleStorage.sol\":1097:1185 function retrieve() public view returns(uint256) {... */\n tag_9:\n /* \"contracts/SimpleStorage.sol\":1137:1144 uint256 */\n 0x00\n /* \"contracts/SimpleStorage.sol\":1163:1178 favouriteNumber */\n dup1\n sload\n /* \"contracts/SimpleStorage.sol\":1156:1178 return favouriteNumber */\n swap1\n pop\n /* \"contracts/SimpleStorage.sol\":1097:1185 function retrieve() public view returns(uint256) {... */\n swap1\n jump\t// out\n /* \"contracts/ExtraStorage.sol\":241:341 function store(uint256 _favNumber) public override {... */\n tag_15:\n /* \"contracts/ExtraStorage.sol\":333:334 5 */\n 0x05\n /* \"contracts/ExtraStorage.sol\":320:330 _favNumber */\n dup2\n /* \"contracts/ExtraStorage.sol\":320:334 _favNumber + 5 */\n tag_32\n swap2\n swap1\n tag_33\n jump\t// in\n tag_32:\n /* \"contracts/ExtraStorage.sol\":302:317 favouriteNumber */\n 0x00\n /* \"contracts/ExtraStorage.sol\":302:334 favouriteNumber = _favNumber + 5 */\n dup2\n swap1\n sstore\n pop\n /* \"contracts/ExtraStorage.sol\":241:341 function store(uint256 _favNumber) public override {... */\n pop\n jump\t// out\n /* \"contracts/SimpleStorage.sol\":1332:1589 function addPerson(string memory _name, uint256 _favouriteNumber) public {... */\n tag_19:\n /* \"contracts/SimpleStorage.sol\":1415:1438 People memory newPerson */\n 0x00\n /* \"contracts/SimpleStorage.sol\":1441:1493 People({ favNumber: _favouriteNumber, name: _name }) */\n mload(0x40)\n dup1\n 0x40\n add\n 0x40\n mstore\n dup1\n /* \"contracts/SimpleStorage.sol\":1461:1477 _favouriteNumber */\n dup4\n /* \"contracts/SimpleStorage.sol\":1441:1493 People({ favNumber: _favouriteNumber, name: _name }) */\n dup2\n mstore\n 0x20\n add\n /* \"contracts/SimpleStorage.sol\":1485:1490 _name */\n dup5\n /* \"contracts/SimpleStorage.sol\":1441:1493 People({ favNumber: _favouriteNumber, name: _name }) */\n dup2\n mstore\n pop\n /* \"contracts/SimpleStorage.sol\":1415:1493 People memory newPerson = People({ favNumber: _favouriteNumber, name: _name }) */\n swap1\n pop\n /* \"contracts/SimpleStorage.sol\":1503:1509 people */\n 0x02\n /* \"contracts/SimpleStorage.sol\":1515:1524 newPerson */\n dup2\n /* \"contracts/SimpleStorage.sol\":1503:1525 people.push(newPerson) */\n swap1\n dup1\n 0x01\n dup2\n sload\n add\n dup1\n dup3\n sstore\n dup1\n swap2\n pop\n pop\n 0x01\n swap1\n sub\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n 0x02\n mul\n add\n 0x00\n swap1\n swap2\n swap1\n swap2\n swap1\n swap2\n pop\n 0x00\n dup3\n add\n mload\n dup2\n 0x00\n add\n sstore\n 0x20\n dup3\n add\n mload\n dup2\n 0x01\n add\n swap1\n dup1\n mload\n swap1\n 0x20\n add\n swap1\n tag_36\n swap3\n swap2\n swap1\n tag_37\n jump\t// in\n tag_36:\n pop\n pop\n pop\n /* \"contracts/SimpleStorage.sol\":1566:1582 _favouriteNumber */\n dup2\n /* \"contracts/SimpleStorage.sol\":1535:1556 nameToFavouriteNumber */\n 0x01\n /* \"contracts/SimpleStorage.sol\":1557:1562 _name */\n dup5\n /* \"contracts/SimpleStorage.sol\":1535:1563 nameToFavouriteNumber[_name] */\n mload(0x40)\n tag_38\n swap2\n swap1\n tag_39\n jump\t// in\n tag_38:\n swap1\n dup2\n mstore\n 0x20\n add\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n keccak256\n /* \"contracts/SimpleStorage.sol\":1535:1582 nameToFavouriteNumber[_name] = _favouriteNumber */\n dup2\n swap1\n sstore\n pop\n /* \"contracts/SimpleStorage.sol\":1405:1589 {... */\n pop\n /* \"contracts/SimpleStorage.sol\":1332:1589 function addPerson(string memory _name, uint256 _favouriteNumber) public {... */\n pop\n pop\n jump\t// out\n /* \"contracts/SimpleStorage.sol\":778:800 People[] public people */\n tag_22:\n 0x02\n dup2\n dup2\n sload\n dup2\n lt\n tag_40\n jumpi\n 0x00\n dup1\n revert\n tag_40:\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n 0x02\n mul\n add\n 0x00\n swap2\n pop\n swap1\n pop\n dup1\n 0x00\n add\n sload\n swap1\n dup1\n 0x01\n add\n dup1\n sload\n tag_42\n swap1\n tag_43\n jump\t// in\n tag_42:\n dup1\n 0x1f\n add\n 0x20\n dup1\n swap2\n div\n mul\n 0x20\n add\n mload(0x40)\n swap1\n dup2\n add\n 0x40\n mstore\n dup1\n swap3\n swap2\n swap1\n dup2\n dup2\n mstore\n 0x20\n add\n dup3\n dup1\n sload\n tag_44\n swap1\n tag_43\n jump\t// in\n tag_44:\n dup1\n iszero\n tag_45\n jumpi\n dup1\n 0x1f\n lt\n tag_46\n jumpi\n 0x0100\n dup1\n dup4\n sload\n div\n mul\n dup4\n mstore\n swap2\n 0x20\n add\n swap2\n jump(tag_45)\n tag_46:\n dup3\n add\n swap2\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n tag_47:\n dup2\n sload\n dup2\n mstore\n swap1\n 0x01\n add\n swap1\n 0x20\n add\n dup1\n dup4\n gt\n tag_47\n jumpi\n dup3\n swap1\n sub\n 0x1f\n and\n dup3\n add\n swap2\n tag_45:\n pop\n pop\n pop\n pop\n pop\n swap1\n pop\n dup3\n jump\t// out\n /* \"contracts/SimpleStorage.sol\":631:686 mapping(string => uint256) public nameToFavouriteNumber */\n tag_28:\n 0x01\n dup2\n dup1\n mload\n 0x20\n dup2\n add\n dup3\n add\n dup1\n mload\n dup5\n dup3\n mstore\n 0x20\n dup4\n add\n 0x20\n dup6\n add\n keccak256\n dup2\n dup4\n mstore\n dup1\n swap6\n pop\n pop\n pop\n pop\n pop\n pop\n 0x00\n swap2\n pop\n swap1\n pop\n sload\n dup2\n jump\t// out\n tag_37:\n dup3\n dup1\n sload\n tag_48\n swap1\n tag_43\n jump\t// in\n tag_48:\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n 0x1f\n add\n 0x20\n swap1\n div\n dup2\n add\n swap3\n dup3\n tag_50\n jumpi\n 0x00\n dup6\n sstore\n jump(tag_49)\n tag_50:\n dup3\n 0x1f\n lt\n tag_51\n jumpi\n dup1\n mload\n not(0xff)\n and\n dup4\n dup1\n add\n or\n dup6\n sstore\n jump(tag_49)\n tag_51:\n dup3\n dup1\n add\n 0x01\n add\n dup6\n sstore\n dup3\n iszero\n tag_49\n jumpi\n swap2\n dup3\n add\n tag_52:\n dup3\n dup2\n gt\n iszero\n tag_53\n jumpi\n dup3\n mload\n dup3\n sstore\n swap2\n 0x20\n add\n swap2\n swap1\n 0x01\n add\n swap1\n jump(tag_52)\n tag_53:\n tag_49:\n pop\n swap1\n pop\n tag_54\n swap2\n swap1\n tag_55\n jump\t// in\n tag_54:\n pop\n swap1\n jump\t// out\n tag_55:\n tag_56:\n dup1\n dup3\n gt\n iszero\n tag_57\n jumpi\n 0x00\n dup2\n 0x00\n swap1\n sstore\n pop\n 0x01\n add\n jump(tag_56)\n tag_57:\n pop\n swap1\n jump\t// out\n /* \"#utility.yul\":7:419 */\n tag_59:\n /* \"#utility.yul\":85:90 */\n 0x00\n /* \"#utility.yul\":110:176 */\n tag_61\n /* \"#utility.yul\":126:175 */\n tag_62\n /* \"#utility.yul\":168:174 */\n dup5\n /* \"#utility.yul\":126:175 */\n tag_63\n jump\t// in\n tag_62:\n /* \"#utility.yul\":110:176 */\n tag_64\n jump\t// in\n tag_61:\n /* \"#utility.yul\":101:176 */\n swap1\n pop\n /* \"#utility.yul\":199:205 */\n dup3\n /* \"#utility.yul\":192:197 */\n dup2\n /* \"#utility.yul\":185:206 */\n mstore\n /* \"#utility.yul\":237:241 */\n 0x20\n /* \"#utility.yul\":230:235 */\n dup2\n /* \"#utility.yul\":226:242 */\n add\n /* \"#utility.yul\":275:278 */\n dup5\n /* \"#utility.yul\":266:272 */\n dup5\n /* \"#utility.yul\":261:264 */\n dup5\n /* \"#utility.yul\":257:273 */\n add\n /* \"#utility.yul\":254:279 */\n gt\n /* \"#utility.yul\":251:363 */\n iszero\n tag_65\n jumpi\n /* \"#utility.yul\":282:361 */\n tag_66\n tag_67\n jump\t// in\n tag_66:\n /* \"#utility.yul\":251:363 */\n tag_65:\n /* \"#utility.yul\":372:413 */\n tag_68\n /* \"#utility.yul\":406:412 */\n dup5\n /* \"#utility.yul\":401:404 */\n dup3\n /* \"#utility.yul\":396:399 */\n dup6\n /* \"#utility.yul\":372:413 */\n tag_69\n jump\t// in\n tag_68:\n /* \"#utility.yul\":91:419 */\n pop\n /* \"#utility.yul\":7:419 */\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":439:779 */\n tag_70:\n /* \"#utility.yul\":495:500 */\n 0x00\n /* \"#utility.yul\":544:547 */\n dup3\n /* \"#utility.yul\":537:541 */\n 0x1f\n /* \"#utility.yul\":529:535 */\n dup4\n /* \"#utility.yul\":525:542 */\n add\n /* \"#utility.yul\":521:548 */\n slt\n /* \"#utility.yul\":511:633 */\n tag_72\n jumpi\n /* \"#utility.yul\":552:631 */\n tag_73\n tag_74\n jump\t// in\n tag_73:\n /* \"#utility.yul\":511:633 */\n tag_72:\n /* \"#utility.yul\":669:675 */\n dup2\n /* \"#utility.yul\":656:676 */\n calldataload\n /* \"#utility.yul\":694:773 */\n tag_75\n /* \"#utility.yul\":769:772 */\n dup5\n /* \"#utility.yul\":761:767 */\n dup3\n /* \"#utility.yul\":754:758 */\n 0x20\n /* \"#utility.yul\":746:752 */\n dup7\n /* \"#utility.yul\":742:759 */\n add\n /* \"#utility.yul\":694:773 */\n tag_59\n jump\t// in\n tag_75:\n /* \"#utility.yul\":685:773 */\n swap2\n pop\n /* \"#utility.yul\":501:779 */\n pop\n /* \"#utility.yul\":439:779 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":785:924 */\n tag_76:\n /* \"#utility.yul\":831:836 */\n 0x00\n /* \"#utility.yul\":869:875 */\n dup2\n /* \"#utility.yul\":856:876 */\n calldataload\n /* \"#utility.yul\":847:876 */\n swap1\n pop\n /* \"#utility.yul\":885:918 */\n tag_78\n /* \"#utility.yul\":912:917 */\n dup2\n /* \"#utility.yul\":885:918 */\n tag_79\n jump\t// in\n tag_78:\n /* \"#utility.yul\":785:924 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":930:1439 */\n tag_27:\n /* \"#utility.yul\":999:1005 */\n 0x00\n /* \"#utility.yul\":1048:1050 */\n 0x20\n /* \"#utility.yul\":1036:1045 */\n dup3\n /* \"#utility.yul\":1027:1034 */\n dup5\n /* \"#utility.yul\":1023:1046 */\n sub\n /* \"#utility.yul\":1019:1051 */\n slt\n /* \"#utility.yul\":1016:1135 */\n iszero\n tag_81\n jumpi\n /* \"#utility.yul\":1054:1133 */\n tag_82\n tag_83\n jump\t// in\n tag_82:\n /* \"#utility.yul\":1016:1135 */\n tag_81:\n /* \"#utility.yul\":1202:1203 */\n 0x00\n /* \"#utility.yul\":1191:1200 */\n dup3\n /* \"#utility.yul\":1187:1204 */\n add\n /* \"#utility.yul\":1174:1205 */\n calldataload\n /* \"#utility.yul\":1232:1250 */\n 0xffffffffffffffff\n /* \"#utility.yul\":1224:1230 */\n dup2\n /* \"#utility.yul\":1221:1251 */\n gt\n /* \"#utility.yul\":1218:1335 */\n iszero\n tag_84\n jumpi\n /* \"#utility.yul\":1254:1333 */\n tag_85\n tag_86\n jump\t// in\n tag_85:\n /* \"#utility.yul\":1218:1335 */\n tag_84:\n /* \"#utility.yul\":1359:1422 */\n tag_87\n /* \"#utility.yul\":1414:1421 */\n dup5\n /* \"#utility.yul\":1405:1411 */\n dup3\n /* \"#utility.yul\":1394:1403 */\n dup6\n /* \"#utility.yul\":1390:1412 */\n add\n /* \"#utility.yul\":1359:1422 */\n tag_70\n jump\t// in\n tag_87:\n /* \"#utility.yul\":1349:1422 */\n swap2\n pop\n /* \"#utility.yul\":1145:1432 */\n pop\n /* \"#utility.yul\":930:1439 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1445:2099 */\n tag_18:\n /* \"#utility.yul\":1523:1529 */\n 0x00\n /* \"#utility.yul\":1531:1537 */\n dup1\n /* \"#utility.yul\":1580:1582 */\n 0x40\n /* \"#utility.yul\":1568:1577 */\n dup4\n /* \"#utility.yul\":1559:1566 */\n dup6\n /* \"#utility.yul\":1555:1578 */\n sub\n /* \"#utility.yul\":1551:1583 */\n slt\n /* \"#utility.yul\":1548:1667 */\n iszero\n tag_89\n jumpi\n /* \"#utility.yul\":1586:1665 */\n tag_90\n tag_83\n jump\t// in\n tag_90:\n /* \"#utility.yul\":1548:1667 */\n tag_89:\n /* \"#utility.yul\":1734:1735 */\n 0x00\n /* \"#utility.yul\":1723:1732 */\n dup4\n /* \"#utility.yul\":1719:1736 */\n add\n /* \"#utility.yul\":1706:1737 */\n calldataload\n /* \"#utility.yul\":1764:1782 */\n 0xffffffffffffffff\n /* \"#utility.yul\":1756:1762 */\n dup2\n /* \"#utility.yul\":1753:1783 */\n gt\n /* \"#utility.yul\":1750:1867 */\n iszero\n tag_91\n jumpi\n /* \"#utility.yul\":1786:1865 */\n tag_92\n tag_86\n jump\t// in\n tag_92:\n /* \"#utility.yul\":1750:1867 */\n tag_91:\n /* \"#utility.yul\":1891:1954 */\n tag_93\n /* \"#utility.yul\":1946:1953 */\n dup6\n /* \"#utility.yul\":1937:1943 */\n dup3\n /* \"#utility.yul\":1926:1935 */\n dup7\n /* \"#utility.yul\":1922:1944 */\n add\n /* \"#utility.yul\":1891:1954 */\n tag_70\n jump\t// in\n tag_93:\n /* \"#utility.yul\":1881:1954 */\n swap3\n pop\n /* \"#utility.yul\":1677:1964 */\n pop\n /* \"#utility.yul\":2003:2005 */\n 0x20\n /* \"#utility.yul\":2029:2082 */\n tag_94\n /* \"#utility.yul\":2074:2081 */\n dup6\n /* \"#utility.yul\":2065:2071 */\n dup3\n /* \"#utility.yul\":2054:2063 */\n dup7\n /* \"#utility.yul\":2050:2072 */\n add\n /* \"#utility.yul\":2029:2082 */\n tag_76\n jump\t// in\n tag_94:\n /* \"#utility.yul\":2019:2082 */\n swap2\n pop\n /* \"#utility.yul\":1974:2092 */\n pop\n /* \"#utility.yul\":1445:2099 */\n swap3\n pop\n swap3\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":2105:2434 */\n tag_14:\n /* \"#utility.yul\":2164:2170 */\n 0x00\n /* \"#utility.yul\":2213:2215 */\n 0x20\n /* \"#utility.yul\":2201:2210 */\n dup3\n /* \"#utility.yul\":2192:2199 */\n dup5\n /* \"#utility.yul\":2188:2211 */\n sub\n /* \"#utility.yul\":2184:2216 */\n slt\n /* \"#utility.yul\":2181:2300 */\n iszero\n tag_96\n jumpi\n /* \"#utility.yul\":2219:2298 */\n tag_97\n tag_83\n jump\t// in\n tag_97:\n /* \"#utility.yul\":2181:2300 */\n tag_96:\n /* \"#utility.yul\":2339:2340 */\n 0x00\n /* \"#utility.yul\":2364:2417 */\n tag_98\n /* \"#utility.yul\":2409:2416 */\n dup5\n /* \"#utility.yul\":2400:2406 */\n dup3\n /* \"#utility.yul\":2389:2398 */\n dup6\n /* \"#utility.yul\":2385:2407 */\n add\n /* \"#utility.yul\":2364:2417 */\n tag_76\n jump\t// in\n tag_98:\n /* \"#utility.yul\":2354:2417 */\n swap2\n pop\n /* \"#utility.yul\":2310:2427 */\n pop\n /* \"#utility.yul\":2105:2434 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2440:2804 */\n tag_99:\n /* \"#utility.yul\":2528:2531 */\n 0x00\n /* \"#utility.yul\":2556:2595 */\n tag_101\n /* \"#utility.yul\":2589:2594 */\n dup3\n /* \"#utility.yul\":2556:2595 */\n tag_102\n jump\t// in\n tag_101:\n /* \"#utility.yul\":2611:2682 */\n tag_103\n /* \"#utility.yul\":2675:2681 */\n dup2\n /* \"#utility.yul\":2670:2673 */\n dup6\n /* \"#utility.yul\":2611:2682 */\n tag_104\n jump\t// in\n tag_103:\n /* \"#utility.yul\":2604:2682 */\n swap4\n pop\n /* \"#utility.yul\":2691:2743 */\n tag_105\n /* \"#utility.yul\":2736:2742 */\n dup2\n /* \"#utility.yul\":2731:2734 */\n dup6\n /* \"#utility.yul\":2724:2728 */\n 0x20\n /* \"#utility.yul\":2717:2722 */\n dup7\n /* \"#utility.yul\":2713:2729 */\n add\n /* \"#utility.yul\":2691:2743 */\n tag_106\n jump\t// in\n tag_105:\n /* \"#utility.yul\":2768:2797 */\n tag_107\n /* \"#utility.yul\":2790:2796 */\n dup2\n /* \"#utility.yul\":2768:2797 */\n tag_108\n jump\t// in\n tag_107:\n /* \"#utility.yul\":2763:2766 */\n dup5\n /* \"#utility.yul\":2759:2798 */\n add\n /* \"#utility.yul\":2752:2798 */\n swap2\n pop\n /* \"#utility.yul\":2532:2804 */\n pop\n /* \"#utility.yul\":2440:2804 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2810:3187 */\n tag_109:\n /* \"#utility.yul\":2916:2919 */\n 0x00\n /* \"#utility.yul\":2944:2983 */\n tag_111\n /* \"#utility.yul\":2977:2982 */\n dup3\n /* \"#utility.yul\":2944:2983 */\n tag_102\n jump\t// in\n tag_111:\n /* \"#utility.yul\":2999:3088 */\n tag_112\n /* \"#utility.yul\":3081:3087 */\n dup2\n /* \"#utility.yul\":3076:3079 */\n dup6\n /* \"#utility.yul\":2999:3088 */\n tag_113\n jump\t// in\n tag_112:\n /* \"#utility.yul\":2992:3088 */\n swap4\n pop\n /* \"#utility.yul\":3097:3149 */\n tag_114\n /* \"#utility.yul\":3142:3148 */\n dup2\n /* \"#utility.yul\":3137:3140 */\n dup6\n /* \"#utility.yul\":3130:3134 */\n 0x20\n /* \"#utility.yul\":3123:3128 */\n dup7\n /* \"#utility.yul\":3119:3135 */\n add\n /* \"#utility.yul\":3097:3149 */\n tag_106\n jump\t// in\n tag_114:\n /* \"#utility.yul\":3174:3180 */\n dup1\n /* \"#utility.yul\":3169:3172 */\n dup5\n /* \"#utility.yul\":3165:3181 */\n add\n /* \"#utility.yul\":3158:3181 */\n swap2\n pop\n /* \"#utility.yul\":2920:3187 */\n pop\n /* \"#utility.yul\":2810:3187 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3193:3311 */\n tag_115:\n /* \"#utility.yul\":3280:3304 */\n tag_117\n /* \"#utility.yul\":3298:3303 */\n dup2\n /* \"#utility.yul\":3280:3304 */\n tag_118\n jump\t// in\n tag_117:\n /* \"#utility.yul\":3275:3278 */\n dup3\n /* \"#utility.yul\":3268:3305 */\n mstore\n /* \"#utility.yul\":3193:3311 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3317:3592 */\n tag_39:\n /* \"#utility.yul\":3449:3452 */\n 0x00\n /* \"#utility.yul\":3471:3566 */\n tag_120\n /* \"#utility.yul\":3562:3565 */\n dup3\n /* \"#utility.yul\":3553:3559 */\n dup5\n /* \"#utility.yul\":3471:3566 */\n tag_109\n jump\t// in\n tag_120:\n /* \"#utility.yul\":3464:3566 */\n swap2\n pop\n /* \"#utility.yul\":3583:3586 */\n dup2\n /* \"#utility.yul\":3576:3586 */\n swap1\n pop\n /* \"#utility.yul\":3317:3592 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3598:3820 */\n tag_11:\n /* \"#utility.yul\":3691:3695 */\n 0x00\n /* \"#utility.yul\":3729:3731 */\n 0x20\n /* \"#utility.yul\":3718:3727 */\n dup3\n /* \"#utility.yul\":3714:3732 */\n add\n /* \"#utility.yul\":3706:3732 */\n swap1\n pop\n /* \"#utility.yul\":3742:3813 */\n tag_122\n /* \"#utility.yul\":3810:3811 */\n 0x00\n /* \"#utility.yul\":3799:3808 */\n dup4\n /* \"#utility.yul\":3795:3812 */\n add\n /* \"#utility.yul\":3786:3792 */\n dup5\n /* \"#utility.yul\":3742:3813 */\n tag_115\n jump\t// in\n tag_122:\n /* \"#utility.yul\":3598:3820 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3826:4249 */\n tag_24:\n /* \"#utility.yul\":3967:3971 */\n 0x00\n /* \"#utility.yul\":4005:4007 */\n 0x40\n /* \"#utility.yul\":3994:4003 */\n dup3\n /* \"#utility.yul\":3990:4008 */\n add\n /* \"#utility.yul\":3982:4008 */\n swap1\n pop\n /* \"#utility.yul\":4018:4089 */\n tag_124\n /* \"#utility.yul\":4086:4087 */\n 0x00\n /* \"#utility.yul\":4075:4084 */\n dup4\n /* \"#utility.yul\":4071:4088 */\n add\n /* \"#utility.yul\":4062:4068 */\n dup6\n /* \"#utility.yul\":4018:4089 */\n tag_115\n jump\t// in\n tag_124:\n /* \"#utility.yul\":4136:4145 */\n dup2\n /* \"#utility.yul\":4130:4134 */\n dup2\n /* \"#utility.yul\":4126:4146 */\n sub\n /* \"#utility.yul\":4121:4123 */\n 0x20\n /* \"#utility.yul\":4110:4119 */\n dup4\n /* \"#utility.yul\":4106:4124 */\n add\n /* \"#utility.yul\":4099:4147 */\n mstore\n /* \"#utility.yul\":4164:4242 */\n tag_125\n /* \"#utility.yul\":4237:4241 */\n dup2\n /* \"#utility.yul\":4228:4234 */\n dup5\n /* \"#utility.yul\":4164:4242 */\n tag_99\n jump\t// in\n tag_125:\n /* \"#utility.yul\":4156:4242 */\n swap1\n pop\n /* \"#utility.yul\":3826:4249 */\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":4255:4384 */\n tag_64:\n /* \"#utility.yul\":4289:4295 */\n 0x00\n /* \"#utility.yul\":4316:4336 */\n tag_127\n tag_128\n jump\t// in\n tag_127:\n /* \"#utility.yul\":4306:4336 */\n swap1\n pop\n /* \"#utility.yul\":4345:4378 */\n tag_129\n /* \"#utility.yul\":4373:4377 */\n dup3\n /* \"#utility.yul\":4365:4371 */\n dup3\n /* \"#utility.yul\":4345:4378 */\n tag_130\n jump\t// in\n tag_129:\n /* \"#utility.yul\":4255:4384 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":4390:4465 */\n tag_128:\n /* \"#utility.yul\":4423:4429 */\n 0x00\n /* \"#utility.yul\":4456:4458 */\n 0x40\n /* \"#utility.yul\":4450:4459 */\n mload\n /* \"#utility.yul\":4440:4459 */\n swap1\n pop\n /* \"#utility.yul\":4390:4465 */\n swap1\n jump\t// out\n /* \"#utility.yul\":4471:4779 */\n tag_63:\n /* \"#utility.yul\":4533:4537 */\n 0x00\n /* \"#utility.yul\":4623:4641 */\n 0xffffffffffffffff\n /* \"#utility.yul\":4615:4621 */\n dup3\n /* \"#utility.yul\":4612:4642 */\n gt\n /* \"#utility.yul\":4609:4665 */\n iszero\n tag_133\n jumpi\n /* \"#utility.yul\":4645:4663 */\n tag_134\n tag_135\n jump\t// in\n tag_134:\n /* \"#utility.yul\":4609:4665 */\n tag_133:\n /* \"#utility.yul\":4683:4712 */\n tag_136\n /* \"#utility.yul\":4705:4711 */\n dup3\n /* \"#utility.yul\":4683:4712 */\n tag_108\n jump\t// in\n tag_136:\n /* \"#utility.yul\":4675:4712 */\n swap1\n pop\n /* \"#utility.yul\":4767:4771 */\n 0x20\n /* \"#utility.yul\":4761:4765 */\n dup2\n /* \"#utility.yul\":4757:4772 */\n add\n /* \"#utility.yul\":4749:4772 */\n swap1\n pop\n /* \"#utility.yul\":4471:4779 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":4785:4884 */\n tag_102:\n /* \"#utility.yul\":4837:4843 */\n 0x00\n /* \"#utility.yul\":4871:4876 */\n dup2\n /* \"#utility.yul\":4865:4877 */\n mload\n /* \"#utility.yul\":4855:4877 */\n swap1\n pop\n /* \"#utility.yul\":4785:4884 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":4890:5059 */\n tag_104:\n /* \"#utility.yul\":4974:4985 */\n 0x00\n /* \"#utility.yul\":5008:5014 */\n dup3\n /* \"#utility.yul\":5003:5006 */\n dup3\n /* \"#utility.yul\":4996:5015 */\n mstore\n /* \"#utility.yul\":5048:5052 */\n 0x20\n /* \"#utility.yul\":5043:5046 */\n dup3\n /* \"#utility.yul\":5039:5053 */\n add\n /* \"#utility.yul\":5024:5053 */\n swap1\n pop\n /* \"#utility.yul\":4890:5059 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5065:5213 */\n tag_113:\n /* \"#utility.yul\":5167:5178 */\n 0x00\n /* \"#utility.yul\":5204:5207 */\n dup2\n /* \"#utility.yul\":5189:5207 */\n swap1\n pop\n /* \"#utility.yul\":5065:5213 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5219:5524 */\n tag_33:\n /* \"#utility.yul\":5259:5262 */\n 0x00\n /* \"#utility.yul\":5278:5298 */\n tag_141\n /* \"#utility.yul\":5296:5297 */\n dup3\n /* \"#utility.yul\":5278:5298 */\n tag_118\n jump\t// in\n tag_141:\n /* \"#utility.yul\":5273:5298 */\n swap2\n pop\n /* \"#utility.yul\":5312:5332 */\n tag_142\n /* \"#utility.yul\":5330:5331 */\n dup4\n /* \"#utility.yul\":5312:5332 */\n tag_118\n jump\t// in\n tag_142:\n /* \"#utility.yul\":5307:5332 */\n swap3\n pop\n /* \"#utility.yul\":5466:5467 */\n dup3\n /* \"#utility.yul\":5398:5464 */\n 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\n /* \"#utility.yul\":5394:5468 */\n sub\n /* \"#utility.yul\":5391:5392 */\n dup3\n /* \"#utility.yul\":5388:5469 */\n gt\n /* \"#utility.yul\":5385:5492 */\n iszero\n tag_143\n jumpi\n /* \"#utility.yul\":5472:5490 */\n tag_144\n tag_145\n jump\t// in\n tag_144:\n /* \"#utility.yul\":5385:5492 */\n tag_143:\n /* \"#utility.yul\":5516:5517 */\n dup3\n /* \"#utility.yul\":5513:5514 */\n dup3\n /* \"#utility.yul\":5509:5518 */\n add\n /* \"#utility.yul\":5502:5518 */\n swap1\n pop\n /* \"#utility.yul\":5219:5524 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5530:5607 */\n tag_118:\n /* \"#utility.yul\":5567:5574 */\n 0x00\n /* \"#utility.yul\":5596:5601 */\n dup2\n /* \"#utility.yul\":5585:5601 */\n swap1\n pop\n /* \"#utility.yul\":5530:5607 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":5613:5767 */\n tag_69:\n /* \"#utility.yul\":5697:5703 */\n dup3\n /* \"#utility.yul\":5692:5695 */\n dup2\n /* \"#utility.yul\":5687:5690 */\n dup4\n /* \"#utility.yul\":5674:5704 */\n calldatacopy\n /* \"#utility.yul\":5759:5760 */\n 0x00\n /* \"#utility.yul\":5750:5756 */\n dup4\n /* \"#utility.yul\":5745:5748 */\n dup4\n /* \"#utility.yul\":5741:5757 */\n add\n /* \"#utility.yul\":5734:5761 */\n mstore\n /* \"#utility.yul\":5613:5767 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5773:6080 */\n tag_106:\n /* \"#utility.yul\":5841:5842 */\n 0x00\n /* \"#utility.yul\":5851:5964 */\n tag_149:\n /* \"#utility.yul\":5865:5871 */\n dup4\n /* \"#utility.yul\":5862:5863 */\n dup2\n /* \"#utility.yul\":5859:5872 */\n lt\n /* \"#utility.yul\":5851:5964 */\n iszero\n tag_151\n jumpi\n /* \"#utility.yul\":5950:5951 */\n dup1\n /* \"#utility.yul\":5945:5948 */\n dup3\n /* \"#utility.yul\":5941:5952 */\n add\n /* \"#utility.yul\":5935:5953 */\n mload\n /* \"#utility.yul\":5931:5932 */\n dup2\n /* \"#utility.yul\":5926:5929 */\n dup5\n /* \"#utility.yul\":5922:5933 */\n add\n /* \"#utility.yul\":5915:5954 */\n mstore\n /* \"#utility.yul\":5887:5889 */\n 0x20\n /* \"#utility.yul\":5884:5885 */\n dup2\n /* \"#utility.yul\":5880:5890 */\n add\n /* \"#utility.yul\":5875:5890 */\n swap1\n pop\n /* \"#utility.yul\":5851:5964 */\n jump(tag_149)\n tag_151:\n /* \"#utility.yul\":5982:5988 */\n dup4\n /* \"#utility.yul\":5979:5980 */\n dup2\n /* \"#utility.yul\":5976:5989 */\n gt\n /* \"#utility.yul\":5973:6074 */\n iszero\n tag_152\n jumpi\n /* \"#utility.yul\":6062:6063 */\n 0x00\n /* \"#utility.yul\":6053:6059 */\n dup5\n /* \"#utility.yul\":6048:6051 */\n dup5\n /* \"#utility.yul\":6044:6060 */\n add\n /* \"#utility.yul\":6037:6064 */\n mstore\n /* \"#utility.yul\":5973:6074 */\n tag_152:\n /* \"#utility.yul\":5822:6080 */\n pop\n /* \"#utility.yul\":5773:6080 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":6086:6406 */\n tag_43:\n /* \"#utility.yul\":6130:6136 */\n 0x00\n /* \"#utility.yul\":6167:6168 */\n 0x02\n /* \"#utility.yul\":6161:6165 */\n dup3\n /* \"#utility.yul\":6157:6169 */\n div\n /* \"#utility.yul\":6147:6169 */\n swap1\n pop\n /* \"#utility.yul\":6214:6215 */\n 0x01\n /* \"#utility.yul\":6208:6212 */\n dup3\n /* \"#utility.yul\":6204:6216 */\n and\n /* \"#utility.yul\":6235:6253 */\n dup1\n /* \"#utility.yul\":6225:6306 */\n tag_154\n jumpi\n /* \"#utility.yul\":6291:6295 */\n 0x7f\n /* \"#utility.yul\":6283:6289 */\n dup3\n /* \"#utility.yul\":6279:6296 */\n and\n /* \"#utility.yul\":6269:6296 */\n swap2\n pop\n /* \"#utility.yul\":6225:6306 */\n tag_154:\n /* \"#utility.yul\":6353:6355 */\n 0x20\n /* \"#utility.yul\":6345:6351 */\n dup3\n /* \"#utility.yul\":6342:6356 */\n lt\n /* \"#utility.yul\":6322:6340 */\n dup2\n /* \"#utility.yul\":6319:6357 */\n eq\n /* \"#utility.yul\":6316:6400 */\n iszero\n tag_155\n jumpi\n /* \"#utility.yul\":6372:6390 */\n tag_156\n tag_157\n jump\t// in\n tag_156:\n /* \"#utility.yul\":6316:6400 */\n tag_155:\n /* \"#utility.yul\":6137:6406 */\n pop\n /* \"#utility.yul\":6086:6406 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":6412:6693 */\n tag_130:\n /* \"#utility.yul\":6495:6522 */\n tag_159\n /* \"#utility.yul\":6517:6521 */\n dup3\n /* \"#utility.yul\":6495:6522 */\n tag_108\n jump\t// in\n tag_159:\n /* \"#utility.yul\":6487:6493 */\n dup2\n /* \"#utility.yul\":6483:6523 */\n add\n /* \"#utility.yul\":6625:6631 */\n dup2\n /* \"#utility.yul\":6613:6623 */\n dup2\n /* \"#utility.yul\":6610:6632 */\n lt\n /* \"#utility.yul\":6589:6607 */\n 0xffffffffffffffff\n /* \"#utility.yul\":6577:6587 */\n dup3\n /* \"#utility.yul\":6574:6608 */\n gt\n /* \"#utility.yul\":6571:6633 */\n or\n /* \"#utility.yul\":6568:6656 */\n iszero\n tag_160\n jumpi\n /* \"#utility.yul\":6636:6654 */\n tag_161\n tag_135\n jump\t// in\n tag_161:\n /* \"#utility.yul\":6568:6656 */\n tag_160:\n /* \"#utility.yul\":6676:6686 */\n dup1\n /* \"#utility.yul\":6672:6674 */\n 0x40\n /* \"#utility.yul\":6665:6687 */\n mstore\n /* \"#utility.yul\":6455:6693 */\n pop\n /* \"#utility.yul\":6412:6693 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":6699:6879 */\n tag_145:\n /* \"#utility.yul\":6747:6824 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":6744:6745 */\n 0x00\n /* \"#utility.yul\":6737:6825 */\n mstore\n /* \"#utility.yul\":6844:6848 */\n 0x11\n /* \"#utility.yul\":6841:6842 */\n 0x04\n /* \"#utility.yul\":6834:6849 */\n mstore\n /* \"#utility.yul\":6868:6872 */\n 0x24\n /* \"#utility.yul\":6865:6866 */\n 0x00\n /* \"#utility.yul\":6858:6873 */\n revert\n /* \"#utility.yul\":6885:7065 */\n tag_157:\n /* \"#utility.yul\":6933:7010 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":6930:6931 */\n 0x00\n /* \"#utility.yul\":6923:7011 */\n mstore\n /* \"#utility.yul\":7030:7034 */\n 0x22\n /* \"#utility.yul\":7027:7028 */\n 0x04\n /* \"#utility.yul\":7020:7035 */\n mstore\n /* \"#utility.yul\":7054:7058 */\n 0x24\n /* \"#utility.yul\":7051:7052 */\n 0x00\n /* \"#utility.yul\":7044:7059 */\n revert\n /* \"#utility.yul\":7071:7251 */\n tag_135:\n /* \"#utility.yul\":7119:7196 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":7116:7117 */\n 0x00\n /* \"#utility.yul\":7109:7197 */\n mstore\n /* \"#utility.yul\":7216:7220 */\n 0x41\n /* \"#utility.yul\":7213:7214 */\n 0x04\n /* \"#utility.yul\":7206:7221 */\n mstore\n /* \"#utility.yul\":7240:7244 */\n 0x24\n /* \"#utility.yul\":7237:7238 */\n 0x00\n /* \"#utility.yul\":7230:7245 */\n revert\n /* \"#utility.yul\":7257:7374 */\n tag_74:\n /* \"#utility.yul\":7366:7367 */\n 0x00\n /* \"#utility.yul\":7363:7364 */\n dup1\n /* \"#utility.yul\":7356:7368 */\n revert\n /* \"#utility.yul\":7380:7497 */\n tag_67:\n /* \"#utility.yul\":7489:7490 */\n 0x00\n /* \"#utility.yul\":7486:7487 */\n dup1\n /* \"#utility.yul\":7479:7491 */\n revert\n /* \"#utility.yul\":7503:7620 */\n tag_86:\n /* \"#utility.yul\":7612:7613 */\n 0x00\n /* \"#utility.yul\":7609:7610 */\n dup1\n /* \"#utility.yul\":7602:7614 */\n revert\n /* \"#utility.yul\":7626:7743 */\n tag_83:\n /* \"#utility.yul\":7735:7736 */\n 0x00\n /* \"#utility.yul\":7732:7733 */\n dup1\n /* \"#utility.yul\":7725:7737 */\n revert\n /* \"#utility.yul\":7749:7851 */\n tag_108:\n /* \"#utility.yul\":7790:7796 */\n 0x00\n /* \"#utility.yul\":7841:7843 */\n 0x1f\n /* \"#utility.yul\":7837:7844 */\n not\n /* \"#utility.yul\":7832:7834 */\n 0x1f\n /* \"#utility.yul\":7825:7830 */\n dup4\n /* \"#utility.yul\":7821:7835 */\n add\n /* \"#utility.yul\":7817:7845 */\n and\n /* \"#utility.yul\":7807:7845 */\n swap1\n pop\n /* \"#utility.yul\":7749:7851 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":7857:7979 */\n tag_79:\n /* \"#utility.yul\":7930:7954 */\n tag_171\n /* \"#utility.yul\":7948:7953 */\n dup2\n /* \"#utility.yul\":7930:7954 */\n tag_118\n jump\t// in\n tag_171:\n /* \"#utility.yul\":7923:7928 */\n dup2\n /* \"#utility.yul\":7920:7955 */\n eq\n /* \"#utility.yul\":7910:7973 */\n tag_172\n jumpi\n /* \"#utility.yul\":7969:7970 */\n 0x00\n /* \"#utility.yul\":7966:7967 */\n dup1\n /* \"#utility.yul\":7959:7971 */\n revert\n /* \"#utility.yul\":7910:7973 */\n tag_172:\n /* \"#utility.yul\":7857:7979 */\n pop\n jump\t// out\n\n auxdata: 0xa264697066735822122062d1a63d7c7eebfcdb861a583786a633f24b2492fcad4d6ee4b2925a719dd10b64736f6c63430008070033\n}\n",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50610808806100206000396000f3fe608060405234801561001057600080fd5b50600436106100575760003560e01c80632e64cec11461005c5780636057361d1461007a5780636f760f41146100965780639e7a13ad146100b2578063b2ac62ef146100e3575b600080fd5b610064610113565b604051610071919061053c565b60405180910390f35b610094600480360381019061008f919061047f565b61011c565b005b6100b060048036038101906100ab9190610423565b610132565b005b6100cc60048036038101906100c7919061047f565b6101c8565b6040516100da929190610557565b60405180910390f35b6100fd60048036038101906100f891906103da565b610284565b60405161010a919061053c565b60405180910390f35b60008054905090565b6005816101299190610604565b60008190555050565b60006040518060400160405280838152602001848152509050600281908060018154018082558091505060019003906000526020600020906002020160009091909190915060008201518160000155602082015181600101908051906020019061019d9291906102b2565b505050816001846040516101b19190610525565b908152602001604051809103902081905550505050565b600281815481106101d857600080fd5b9060005260206000209060020201600091509050806000015490806001018054610201906106a6565b80601f016020809104026020016040519081016040528092919081815260200182805461022d906106a6565b801561027a5780601f1061024f5761010080835404028352916020019161027a565b820191906000526020600020905b81548152906001019060200180831161025d57829003601f168201915b5050505050905082565b6001818051602081018201805184825260208301602085012081835280955050505050506000915090505481565b8280546102be906106a6565b90600052602060002090601f0160209004810192826102e05760008555610327565b82601f106102f957805160ff1916838001178555610327565b82800160010185558215610327579182015b8281111561032657825182559160200191906001019061030b565b5b5090506103349190610338565b5090565b5b80821115610351576000816000905550600101610339565b5090565b6000610368610363846105ac565b610587565b9050828152602081018484840111156103845761038361079b565b5b61038f848285610664565b509392505050565b600082601f8301126103ac576103ab610796565b5b81356103bc848260208601610355565b91505092915050565b6000813590506103d4816107bb565b92915050565b6000602082840312156103f0576103ef6107a5565b5b600082013567ffffffffffffffff81111561040e5761040d6107a0565b5b61041a84828501610397565b91505092915050565b6000806040838503121561043a576104396107a5565b5b600083013567ffffffffffffffff811115610458576104576107a0565b5b61046485828601610397565b9250506020610475858286016103c5565b9150509250929050565b600060208284031215610495576104946107a5565b5b60006104a3848285016103c5565b91505092915050565b60006104b7826105dd565b6104c181856105e8565b93506104d1818560208601610673565b6104da816107aa565b840191505092915050565b60006104f0826105dd565b6104fa81856105f9565b935061050a818560208601610673565b80840191505092915050565b61051f8161065a565b82525050565b600061053182846104e5565b915081905092915050565b60006020820190506105516000830184610516565b92915050565b600060408201905061056c6000830185610516565b818103602083015261057e81846104ac565b90509392505050565b60006105916105a2565b905061059d82826106d8565b919050565b6000604051905090565b600067ffffffffffffffff8211156105c7576105c6610767565b5b6105d0826107aa565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600061060f8261065a565b915061061a8361065a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561064f5761064e610709565b5b828201905092915050565b6000819050919050565b82818337600083830152505050565b60005b83811015610691578082015181840152602081019050610676565b838111156106a0576000848401525b50505050565b600060028204905060018216806106be57607f821691505b602082108114156106d2576106d1610738565b5b50919050565b6106e1826107aa565b810181811067ffffffffffffffff82111715610700576106ff610767565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b6107c48161065a565b81146107cf57600080fd5b5056fea264697066735822122062d1a63d7c7eebfcdb861a583786a633f24b2492fcad4d6ee4b2925a719dd10b64736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x808 DUP1 PUSH2 0x20 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x57 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x2E64CEC1 EQ PUSH2 0x5C JUMPI DUP1 PUSH4 0x6057361D EQ PUSH2 0x7A JUMPI DUP1 PUSH4 0x6F760F41 EQ PUSH2 0x96 JUMPI DUP1 PUSH4 0x9E7A13AD EQ PUSH2 0xB2 JUMPI DUP1 PUSH4 0xB2AC62EF EQ PUSH2 0xE3 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x64 PUSH2 0x113 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x71 SWAP2 SWAP1 PUSH2 0x53C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x94 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x8F SWAP2 SWAP1 PUSH2 0x47F JUMP JUMPDEST PUSH2 0x11C JUMP JUMPDEST STOP JUMPDEST PUSH2 0xB0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xAB SWAP2 SWAP1 PUSH2 0x423 JUMP JUMPDEST PUSH2 0x132 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xCC PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xC7 SWAP2 SWAP1 PUSH2 0x47F JUMP JUMPDEST PUSH2 0x1C8 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xDA SWAP3 SWAP2 SWAP1 PUSH2 0x557 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xFD PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xF8 SWAP2 SWAP1 PUSH2 0x3DA JUMP JUMPDEST PUSH2 0x284 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x10A SWAP2 SWAP1 PUSH2 0x53C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x5 DUP2 PUSH2 0x129 SWAP2 SWAP1 PUSH2 0x604 JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 DUP4 DUP2 MSTORE PUSH1 0x20 ADD DUP5 DUP2 MSTORE POP SWAP1 POP PUSH1 0x2 DUP2 SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD SSTORE PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x19D SWAP3 SWAP2 SWAP1 PUSH2 0x2B2 JUMP JUMPDEST POP POP POP DUP2 PUSH1 0x1 DUP5 PUSH1 0x40 MLOAD PUSH2 0x1B1 SWAP2 SWAP1 PUSH2 0x525 JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 DUP2 SWAP1 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x2 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x1D8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH1 0x0 SWAP2 POP SWAP1 POP DUP1 PUSH1 0x0 ADD SLOAD SWAP1 DUP1 PUSH1 0x1 ADD DUP1 SLOAD PUSH2 0x201 SWAP1 PUSH2 0x6A6 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x22D SWAP1 PUSH2 0x6A6 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x27A JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x24F JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x27A JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x25D JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP DUP3 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP1 MLOAD PUSH1 0x20 DUP2 ADD DUP3 ADD DUP1 MLOAD DUP5 DUP3 MSTORE PUSH1 0x20 DUP4 ADD PUSH1 0x20 DUP6 ADD KECCAK256 DUP2 DUP4 MSTORE DUP1 SWAP6 POP POP POP POP POP POP PUSH1 0x0 SWAP2 POP SWAP1 POP SLOAD DUP2 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH2 0x2BE SWAP1 PUSH2 0x6A6 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0x2E0 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0x327 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0x2F9 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0x327 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0x327 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x326 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x30B JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x334 SWAP2 SWAP1 PUSH2 0x338 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x351 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x339 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x368 PUSH2 0x363 DUP5 PUSH2 0x5AC JUMP JUMPDEST PUSH2 0x587 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x384 JUMPI PUSH2 0x383 PUSH2 0x79B JUMP JUMPDEST JUMPDEST PUSH2 0x38F DUP5 DUP3 DUP6 PUSH2 0x664 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x3AC JUMPI PUSH2 0x3AB PUSH2 0x796 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x3BC DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x355 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x3D4 DUP2 PUSH2 0x7BB JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3F0 JUMPI PUSH2 0x3EF PUSH2 0x7A5 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP3 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x40E JUMPI PUSH2 0x40D PUSH2 0x7A0 JUMP JUMPDEST JUMPDEST PUSH2 0x41A DUP5 DUP3 DUP6 ADD PUSH2 0x397 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x43A JUMPI PUSH2 0x439 PUSH2 0x7A5 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x458 JUMPI PUSH2 0x457 PUSH2 0x7A0 JUMP JUMPDEST JUMPDEST PUSH2 0x464 DUP6 DUP3 DUP7 ADD PUSH2 0x397 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x475 DUP6 DUP3 DUP7 ADD PUSH2 0x3C5 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x495 JUMPI PUSH2 0x494 PUSH2 0x7A5 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x4A3 DUP5 DUP3 DUP6 ADD PUSH2 0x3C5 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4B7 DUP3 PUSH2 0x5DD JUMP JUMPDEST PUSH2 0x4C1 DUP2 DUP6 PUSH2 0x5E8 JUMP JUMPDEST SWAP4 POP PUSH2 0x4D1 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x673 JUMP JUMPDEST PUSH2 0x4DA DUP2 PUSH2 0x7AA JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4F0 DUP3 PUSH2 0x5DD JUMP JUMPDEST PUSH2 0x4FA DUP2 DUP6 PUSH2 0x5F9 JUMP JUMPDEST SWAP4 POP PUSH2 0x50A DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x673 JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x51F DUP2 PUSH2 0x65A JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x531 DUP3 DUP5 PUSH2 0x4E5 JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x551 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x516 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x56C PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0x516 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0x57E DUP2 DUP5 PUSH2 0x4AC JUMP JUMPDEST SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x591 PUSH2 0x5A2 JUMP JUMPDEST SWAP1 POP PUSH2 0x59D DUP3 DUP3 PUSH2 0x6D8 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x5C7 JUMPI PUSH2 0x5C6 PUSH2 0x767 JUMP JUMPDEST JUMPDEST PUSH2 0x5D0 DUP3 PUSH2 0x7AA JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x60F DUP3 PUSH2 0x65A JUMP JUMPDEST SWAP2 POP PUSH2 0x61A DUP4 PUSH2 0x65A JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x64F JUMPI PUSH2 0x64E PUSH2 0x709 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x691 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x676 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x6A0 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x6BE JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x6D2 JUMPI PUSH2 0x6D1 PUSH2 0x738 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x6E1 DUP3 PUSH2 0x7AA JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x700 JUMPI PUSH2 0x6FF PUSH2 0x767 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x7C4 DUP2 PUSH2 0x65A JUMP JUMPDEST DUP2 EQ PUSH2 0x7CF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH3 0xD1A63D PUSH29 0x7EEBFCDB861A583786A633F24B2492FCAD4D6EE4B2925A719DD10B6473 PUSH16 0x6C634300080700330000000000000000 ",
"sourceMap": "123:220:0:-:0;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@addPerson_81": {
"entryPoint": 306,
"id": 81,
"parameterSlots": 2,
"returnSlots": 0
},
"@nameToFavouriteNumber_26": {
"entryPoint": 644,
"id": 26,
"parameterSlots": 0,
"returnSlots": 0
},
"@people_35": {
"entryPoint": 456,
"id": 35,
"parameterSlots": 0,
"returnSlots": 0
},
"@retrieve_53": {
"entryPoint": 275,
"id": 53,
"parameterSlots": 0,
"returnSlots": 1
},
"@store_17": {
"entryPoint": 284,
"id": 17,
"parameterSlots": 1,
"returnSlots": 0
},
"abi_decode_available_length_t_string_memory_ptr": {
"entryPoint": 853,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_t_string_memory_ptr": {
"entryPoint": 919,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 965,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_string_memory_ptr": {
"entryPoint": 986,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_string_memory_ptrt_uint256": {
"entryPoint": 1059,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 1151,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 1196,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 1253,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 1302,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_packed_t_string_memory_ptr__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed": {
"entryPoint": 1317,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 1340,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256_t_string_memory_ptr__to_t_uint256_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 1367,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"allocate_memory": {
"entryPoint": 1415,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": 1442,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_allocation_size_t_string_memory_ptr": {
"entryPoint": 1452,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 1501,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 1512,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 1529,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 1540,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 1626,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_calldata_to_memory": {
"entryPoint": 1636,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"copy_memory_to_memory": {
"entryPoint": 1651,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 1702,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"finalize_allocation": {
"entryPoint": 1752,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"panic_error_0x11": {
"entryPoint": 1801,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 1848,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 1895,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": {
"entryPoint": 1942,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": {
"entryPoint": 1947,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": 1952,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 1957,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 1962,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"validator_revert_t_uint256": {
"entryPoint": 1979,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:7982:2",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "91:328:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "101:75:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "168:6:2"
}
],
"functionName": {
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "126:41:2"
},
"nodeType": "YulFunctionCall",
"src": "126:49:2"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "110:15:2"
},
"nodeType": "YulFunctionCall",
"src": "110:66:2"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "101:5:2"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "192:5:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "199:6:2"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "185:6:2"
},
"nodeType": "YulFunctionCall",
"src": "185:21:2"
},
"nodeType": "YulExpressionStatement",
"src": "185:21:2"
},
{
"nodeType": "YulVariableDeclaration",
"src": "215:27:2",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "230:5:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "237:4:2",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "226:3:2"
},
"nodeType": "YulFunctionCall",
"src": "226:16:2"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "219:3:2",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "280:83:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulIdentifier",
"src": "282:77:2"
},
"nodeType": "YulFunctionCall",
"src": "282:79:2"
},
"nodeType": "YulExpressionStatement",
"src": "282:79:2"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "261:3:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "266:6:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "257:3:2"
},
"nodeType": "YulFunctionCall",
"src": "257:16:2"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "275:3:2"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "254:2:2"
},
"nodeType": "YulFunctionCall",
"src": "254:25:2"
},
"nodeType": "YulIf",
"src": "251:112:2"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "396:3:2"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "401:3:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "406:6:2"
}
],
"functionName": {
"name": "copy_calldata_to_memory",
"nodeType": "YulIdentifier",
"src": "372:23:2"
},
"nodeType": "YulFunctionCall",
"src": "372:41:2"
},
"nodeType": "YulExpressionStatement",
"src": "372:41:2"
}
]
},
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "64:3:2",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "69:6:2",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "77:3:2",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "85:5:2",
"type": ""
}
],
"src": "7:412:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "501:278:2",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "550:83:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "552:77:2"
},
"nodeType": "YulFunctionCall",
"src": "552:79:2"
},
"nodeType": "YulExpressionStatement",
"src": "552:79:2"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "529:6:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "537:4:2",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "525:3:2"
},
"nodeType": "YulFunctionCall",
"src": "525:17:2"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "544:3:2"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "521:3:2"
},
"nodeType": "YulFunctionCall",
"src": "521:27:2"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "514:6:2"
},
"nodeType": "YulFunctionCall",
"src": "514:35:2"
},
"nodeType": "YulIf",
"src": "511:122:2"
},
{
"nodeType": "YulVariableDeclaration",
"src": "642:34:2",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "669:6:2"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "656:12:2"
},
"nodeType": "YulFunctionCall",
"src": "656:20:2"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "646:6:2",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "685:88:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "746:6:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "754:4:2",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "742:3:2"
},
"nodeType": "YulFunctionCall",
"src": "742:17:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "761:6:2"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "769:3:2"
}
],
"functionName": {
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "694:47:2"
},
"nodeType": "YulFunctionCall",
"src": "694:79:2"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "685:5:2"
}
]
}
]
},
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "479:6:2",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "487:3:2",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "495:5:2",
"type": ""
}
],
"src": "439:340:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "837:87:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "847:29:2",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "869:6:2"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "856:12:2"
},
"nodeType": "YulFunctionCall",
"src": "856:20:2"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "847:5:2"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "912:5:2"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "885:26:2"
},
"nodeType": "YulFunctionCall",
"src": "885:33:2"
},
"nodeType": "YulExpressionStatement",
"src": "885:33:2"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "815:6:2",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "823:3:2",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "831:5:2",
"type": ""
}
],
"src": "785:139:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1006:433:2",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1052:83:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "1054:77:2"
},
"nodeType": "YulFunctionCall",
"src": "1054:79:2"
},
"nodeType": "YulExpressionStatement",
"src": "1054:79:2"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1027:7:2"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1036:9:2"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1023:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1023:23:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1048:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1019:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1019:32:2"
},
"nodeType": "YulIf",
"src": "1016:119:2"
},
{
"nodeType": "YulBlock",
"src": "1145:287:2",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1160:45:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1191:9:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1202:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1187:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1187:17:2"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1174:12:2"
},
"nodeType": "YulFunctionCall",
"src": "1174:31:2"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1164:6:2",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1252:83:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "1254:77:2"
},
"nodeType": "YulFunctionCall",
"src": "1254:79:2"
},
"nodeType": "YulExpressionStatement",
"src": "1254:79:2"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1224:6:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1232:18:2",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1221:2:2"
},
"nodeType": "YulFunctionCall",
"src": "1221:30:2"
},
"nodeType": "YulIf",
"src": "1218:117:2"
},
{
"nodeType": "YulAssignment",
"src": "1349:73:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1394:9:2"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1405:6:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1390:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1390:22:2"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1414:7:2"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "1359:30:2"
},
"nodeType": "YulFunctionCall",
"src": "1359:63:2"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1349:6:2"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "976:9:2",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "987:7:2",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "999:6:2",
"type": ""
}
],
"src": "930:509:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1538:561:2",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1584:83:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "1586:77:2"
},
"nodeType": "YulFunctionCall",
"src": "1586:79:2"
},
"nodeType": "YulExpressionStatement",
"src": "1586:79:2"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1559:7:2"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1568:9:2"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1555:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1555:23:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1580:2:2",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1551:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1551:32:2"
},
"nodeType": "YulIf",
"src": "1548:119:2"
},
{
"nodeType": "YulBlock",
"src": "1677:287:2",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1692:45:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1723:9:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1734:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1719:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1719:17:2"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1706:12:2"
},
"nodeType": "YulFunctionCall",
"src": "1706:31:2"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1696:6:2",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1784:83:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "1786:77:2"
},
"nodeType": "YulFunctionCall",
"src": "1786:79:2"
},
"nodeType": "YulExpressionStatement",
"src": "1786:79:2"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1756:6:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1764:18:2",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1753:2:2"
},
"nodeType": "YulFunctionCall",
"src": "1753:30:2"
},
"nodeType": "YulIf",
"src": "1750:117:2"
},
{
"nodeType": "YulAssignment",
"src": "1881:73:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1926:9:2"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1937:6:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1922:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1922:22:2"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1946:7:2"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "1891:30:2"
},
"nodeType": "YulFunctionCall",
"src": "1891:63:2"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1881:6:2"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1974:118:2",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1989:16:2",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2003:2:2",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1993:6:2",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2019:63:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2054:9:2"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2065:6:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2050:3:2"
},
"nodeType": "YulFunctionCall",
"src": "2050:22:2"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2074:7:2"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "2029:20:2"
},
"nodeType": "YulFunctionCall",
"src": "2029:53:2"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2019:6:2"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptrt_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1500:9:2",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1511:7:2",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1523:6:2",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1531:6:2",
"type": ""
}
],
"src": "1445:654:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2171:263:2",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2217:83:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "2219:77:2"
},
"nodeType": "YulFunctionCall",
"src": "2219:79:2"
},
"nodeType": "YulExpressionStatement",
"src": "2219:79:2"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2192:7:2"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2201:9:2"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2188:3:2"
},
"nodeType": "YulFunctionCall",
"src": "2188:23:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2213:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2184:3:2"
},
"nodeType": "YulFunctionCall",
"src": "2184:32:2"
},
"nodeType": "YulIf",
"src": "2181:119:2"
},
{
"nodeType": "YulBlock",
"src": "2310:117:2",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2325:15:2",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2339:1:2",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2329:6:2",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2354:63:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2389:9:2"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2400:6:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2385:3:2"
},
"nodeType": "YulFunctionCall",
"src": "2385:22:2"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2409:7:2"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "2364:20:2"
},
"nodeType": "YulFunctionCall",
"src": "2364:53:2"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2354:6:2"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2141:9:2",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2152:7:2",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2164:6:2",
"type": ""
}
],
"src": "2105:329:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2532:272:2",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2542:53:2",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2589:5:2"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2556:32:2"
},
"nodeType": "YulFunctionCall",
"src": "2556:39:2"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2546:6:2",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2604:78:2",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2670:3:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2675:6:2"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2611:58:2"
},
"nodeType": "YulFunctionCall",
"src": "2611:71:2"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2604:3:2"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2717:5:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2724:4:2",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2713:3:2"
},
"nodeType": "YulFunctionCall",
"src": "2713:16:2"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2731:3:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2736:6:2"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "2691:21:2"
},
"nodeType": "YulFunctionCall",
"src": "2691:52:2"
},
"nodeType": "YulExpressionStatement",
"src": "2691:52:2"
},
{
"nodeType": "YulAssignment",
"src": "2752:46:2",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2763:3:2"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2790:6:2"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "2768:21:2"
},
"nodeType": "YulFunctionCall",
"src": "2768:29:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2759:3:2"
},
"nodeType": "YulFunctionCall",
"src": "2759:39:2"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2752:3:2"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2513:5:2",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2520:3:2",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2528:3:2",
"type": ""
}
],
"src": "2440:364:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2920:267:2",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2930:53:2",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2977:5:2"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2944:32:2"
},
"nodeType": "YulFunctionCall",
"src": "2944:39:2"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2934:6:2",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2992:96:2",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3076:3:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3081:6:2"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "2999:76:2"
},
"nodeType": "YulFunctionCall",
"src": "2999:89:2"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2992:3:2"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3123:5:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3130:4:2",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3119:3:2"
},
"nodeType": "YulFunctionCall",
"src": "3119:16:2"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3137:3:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3142:6:2"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "3097:21:2"
},
"nodeType": "YulFunctionCall",
"src": "3097:52:2"
},
"nodeType": "YulExpressionStatement",
"src": "3097:52:2"
},
{
"nodeType": "YulAssignment",
"src": "3158:23:2",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3169:3:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3174:6:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3165:3:2"
},
"nodeType": "YulFunctionCall",
"src": "3165:16:2"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3158:3:2"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2901:5:2",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2908:3:2",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2916:3:2",
"type": ""
}
],
"src": "2810:377:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3258:53:2",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3275:3:2"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3298:5:2"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "3280:17:2"
},
"nodeType": "YulFunctionCall",
"src": "3280:24:2"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3268:6:2"
},
"nodeType": "YulFunctionCall",
"src": "3268:37:2"
},
"nodeType": "YulExpressionStatement",
"src": "3268:37:2"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3246:5:2",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3253:3:2",
"type": ""
}
],
"src": "3193:118:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3453:139:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3464:102:2",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3553:6:2"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3562:3:2"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "3471:81:2"
},
"nodeType": "YulFunctionCall",
"src": "3471:95:2"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3464:3:2"
}
]
},
{
"nodeType": "YulAssignment",
"src": "3576:10:2",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3583:3:2"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3576:3:2"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_string_memory_ptr__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3432:3:2",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3438:6:2",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3449:3:2",
"type": ""
}
],
"src": "3317:275:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3696:124:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3706:26:2",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3718:9:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3729:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3714:3:2"
},
"nodeType": "YulFunctionCall",
"src": "3714:18:2"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3706:4:2"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3786:6:2"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3799:9:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3810:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3795:3:2"
},
"nodeType": "YulFunctionCall",
"src": "3795:17:2"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "3742:43:2"
},
"nodeType": "YulFunctionCall",
"src": "3742:71:2"
},
"nodeType": "YulExpressionStatement",
"src": "3742:71:2"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3668:9:2",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3680:6:2",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3691:4:2",
"type": ""
}
],
"src": "3598:222:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3972:277:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3982:26:2",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3994:9:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4005:2:2",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3990:3:2"
},
"nodeType": "YulFunctionCall",
"src": "3990:18:2"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3982:4:2"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4062:6:2"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4075:9:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4086:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4071:3:2"
},
"nodeType": "YulFunctionCall",
"src": "4071:17:2"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "4018:43:2"
},
"nodeType": "YulFunctionCall",
"src": "4018:71:2"
},
"nodeType": "YulExpressionStatement",
"src": "4018:71:2"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4110:9:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4121:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4106:3:2"
},
"nodeType": "YulFunctionCall",
"src": "4106:18:2"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4130:4:2"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4136:9:2"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4126:3:2"
},
"nodeType": "YulFunctionCall",
"src": "4126:20:2"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4099:6:2"
},
"nodeType": "YulFunctionCall",
"src": "4099:48:2"
},
"nodeType": "YulExpressionStatement",
"src": "4099:48:2"
},
{
"nodeType": "YulAssignment",
"src": "4156:86:2",
"value": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "4228:6:2"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4237:4:2"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "4164:63:2"
},
"nodeType": "YulFunctionCall",
"src": "4164:78:2"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4156:4:2"
}
]
}
]
},
"name": "abi_encode_tuple_t_uint256_t_string_memory_ptr__to_t_uint256_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3936:9:2",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "3948:6:2",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3956:6:2",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3967:4:2",
"type": ""
}
],
"src": "3826:423:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4296:88:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4306:30:2",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nodeType": "YulIdentifier",
"src": "4316:18:2"
},
"nodeType": "YulFunctionCall",
"src": "4316:20:2"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "4306:6:2"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "4365:6:2"
},
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "4373:4:2"
}
],
"functionName": {
"name": "finalize_allocation",
"nodeType": "YulIdentifier",
"src": "4345:19:2"
},
"nodeType": "YulFunctionCall",
"src": "4345:33:2"
},
"nodeType": "YulExpressionStatement",
"src": "4345:33:2"
}
]
},
"name": "allocate_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "4280:4:2",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "4289:6:2",
"type": ""
}
],
"src": "4255:129:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4430:35:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4440:19:2",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4456:2:2",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "4450:5:2"
},
"nodeType": "YulFunctionCall",
"src": "4450:9:2"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "4440:6:2"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "4423:6:2",
"type": ""
}
],
"src": "4390:75:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4538:241:2",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4643:22:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "4645:16:2"
},
"nodeType": "YulFunctionCall",
"src": "4645:18:2"
},
"nodeType": "YulExpressionStatement",
"src": "4645:18:2"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4615:6:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4623:18:2",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4612:2:2"
},
"nodeType": "YulFunctionCall",
"src": "4612:30:2"
},
"nodeType": "YulIf",
"src": "4609:56:2"
},
{
"nodeType": "YulAssignment",
"src": "4675:37:2",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4705:6:2"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "4683:21:2"
},
"nodeType": "YulFunctionCall",
"src": "4683:29:2"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "4675:4:2"
}
]
},
{
"nodeType": "YulAssignment",
"src": "4749:23:2",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "4761:4:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4767:4:2",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4757:3:2"
},
"nodeType": "YulFunctionCall",
"src": "4757:15:2"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "4749:4:2"
}
]
}
]
},
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4522:6:2",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "4533:4:2",
"type": ""
}
],
"src": "4471:308:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4844:40:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4855:22:2",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4871:5:2"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "4865:5:2"
},
"nodeType": "YulFunctionCall",
"src": "4865:12:2"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4855:6:2"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4827:5:2",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4837:6:2",
"type": ""
}
],
"src": "4785:99:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4986:73:2",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5003:3:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5008:6:2"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4996:6:2"
},
"nodeType": "YulFunctionCall",
"src": "4996:19:2"
},
"nodeType": "YulExpressionStatement",
"src": "4996:19:2"
},
{
"nodeType": "YulAssignment",
"src": "5024:29:2",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5043:3:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5048:4:2",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5039:3:2"
},
"nodeType": "YulFunctionCall",
"src": "5039:14:2"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "5024:11:2"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4958:3:2",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4963:6:2",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "4974:11:2",
"type": ""
}
],
"src": "4890:169:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5179:34:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5189:18:2",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5204:3:2"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "5189:11:2"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5151:3:2",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5156:6:2",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "5167:11:2",
"type": ""
}
],
"src": "5065:148:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5263:261:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5273:25:2",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5296:1:2"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "5278:17:2"
},
"nodeType": "YulFunctionCall",
"src": "5278:20:2"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5273:1:2"
}
]
},
{
"nodeType": "YulAssignment",
"src": "5307:25:2",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5330:1:2"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "5312:17:2"
},
"nodeType": "YulFunctionCall",
"src": "5312:20:2"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5307:1:2"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5470:22:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "5472:16:2"
},
"nodeType": "YulFunctionCall",
"src": "5472:18:2"
},
"nodeType": "YulExpressionStatement",
"src": "5472:18:2"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5391:1:2"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5398:66:2",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5466:1:2"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5394:3:2"
},
"nodeType": "YulFunctionCall",
"src": "5394:74:2"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "5388:2:2"
},
"nodeType": "YulFunctionCall",
"src": "5388:81:2"
},
"nodeType": "YulIf",
"src": "5385:107:2"
},
{
"nodeType": "YulAssignment",
"src": "5502:16:2",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5513:1:2"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5516:1:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5509:3:2"
},
"nodeType": "YulFunctionCall",
"src": "5509:9:2"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "5502:3:2"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "5250:1:2",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "5253:1:2",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "5259:3:2",
"type": ""
}
],
"src": "5219:305:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5575:32:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5585:16:2",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "5596:5:2"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "5585:7:2"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5557:5:2",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "5567:7:2",
"type": ""
}
],
"src": "5530:77:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5664:103:2",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "5687:3:2"
},
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "5692:3:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5697:6:2"
}
],
"functionName": {
"name": "calldatacopy",
"nodeType": "YulIdentifier",
"src": "5674:12:2"
},
"nodeType": "YulFunctionCall",
"src": "5674:30:2"
},
"nodeType": "YulExpressionStatement",
"src": "5674:30:2"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "5745:3:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5750:6:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5741:3:2"
},
"nodeType": "YulFunctionCall",
"src": "5741:16:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5759:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5734:6:2"
},
"nodeType": "YulFunctionCall",
"src": "5734:27:2"
},
"nodeType": "YulExpressionStatement",
"src": "5734:27:2"
}
]
},
"name": "copy_calldata_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "5646:3:2",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "5651:3:2",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5656:6:2",
"type": ""
}
],
"src": "5613:154:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5822:258:2",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5832:10:2",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5841:1:2",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "5836:1:2",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5901:63:2",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "5926:3:2"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5931:1:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5922:3:2"
},
"nodeType": "YulFunctionCall",
"src": "5922:11:2"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "5945:3:2"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5950:1:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5941:3:2"
},
"nodeType": "YulFunctionCall",
"src": "5941:11:2"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "5935:5:2"
},
"nodeType": "YulFunctionCall",
"src": "5935:18:2"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5915:6:2"
},
"nodeType": "YulFunctionCall",
"src": "5915:39:2"
},
"nodeType": "YulExpressionStatement",
"src": "5915:39:2"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5862:1:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5865:6:2"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "5859:2:2"
},
"nodeType": "YulFunctionCall",
"src": "5859:13:2"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "5873:19:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5875:15:2",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5884:1:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5887:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5880:3:2"
},
"nodeType": "YulFunctionCall",
"src": "5880:10:2"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5875:1:2"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "5855:3:2",
"statements": []
},
"src": "5851:113:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5998:76:2",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "6048:3:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6053:6:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6044:3:2"
},
"nodeType": "YulFunctionCall",
"src": "6044:16:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6062:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6037:6:2"
},
"nodeType": "YulFunctionCall",
"src": "6037:27:2"
},
"nodeType": "YulExpressionStatement",
"src": "6037:27:2"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5979:1:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5982:6:2"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "5976:2:2"
},
"nodeType": "YulFunctionCall",
"src": "5976:13:2"
},
"nodeType": "YulIf",
"src": "5973:101:2"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "5804:3:2",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "5809:3:2",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5814:6:2",
"type": ""
}
],
"src": "5773:307:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6137:269:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6147:22:2",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "6161:4:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6167:1:2",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "6157:3:2"
},
"nodeType": "YulFunctionCall",
"src": "6157:12:2"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6147:6:2"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "6178:38:2",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "6208:4:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6214:1:2",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "6204:3:2"
},
"nodeType": "YulFunctionCall",
"src": "6204:12:2"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "6182:18:2",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "6255:51:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6269:27:2",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6283:6:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6291:4:2",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "6279:3:2"
},
"nodeType": "YulFunctionCall",
"src": "6279:17:2"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6269:6:2"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "6235:18:2"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "6228:6:2"
},
"nodeType": "YulFunctionCall",
"src": "6228:26:2"
},
"nodeType": "YulIf",
"src": "6225:81:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6358:42:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "6372:16:2"
},
"nodeType": "YulFunctionCall",
"src": "6372:18:2"
},
"nodeType": "YulExpressionStatement",
"src": "6372:18:2"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "6322:18:2"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6345:6:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6353:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "6342:2:2"
},
"nodeType": "YulFunctionCall",
"src": "6342:14:2"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "6319:2:2"
},
"nodeType": "YulFunctionCall",
"src": "6319:38:2"
},
"nodeType": "YulIf",
"src": "6316:84:2"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "6121:4:2",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "6130:6:2",
"type": ""
}
],
"src": "6086:320:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6455:238:2",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6465:58:2",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "6487:6:2"
},
{
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "6517:4:2"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "6495:21:2"
},
"nodeType": "YulFunctionCall",
"src": "6495:27:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6483:3:2"
},
"nodeType": "YulFunctionCall",
"src": "6483:40:2"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "6469:10:2",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "6634:22:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "6636:16:2"
},
"nodeType": "YulFunctionCall",
"src": "6636:18:2"
},
"nodeType": "YulExpressionStatement",
"src": "6636:18:2"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "6577:10:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6589:18:2",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "6574:2:2"
},
"nodeType": "YulFunctionCall",
"src": "6574:34:2"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "6613:10:2"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "6625:6:2"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "6610:2:2"
},
"nodeType": "YulFunctionCall",
"src": "6610:22:2"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "6571:2:2"
},
"nodeType": "YulFunctionCall",
"src": "6571:62:2"
},
"nodeType": "YulIf",
"src": "6568:88:2"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6672:2:2",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "6676:10:2"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6665:6:2"
},
"nodeType": "YulFunctionCall",
"src": "6665:22:2"
},
"nodeType": "YulExpressionStatement",
"src": "6665:22:2"
}
]
},
"name": "finalize_allocation",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "6441:6:2",
"type": ""
},
{
"name": "size",
"nodeType": "YulTypedName",
"src": "6449:4:2",
"type": ""
}
],
"src": "6412:281:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6727:152:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6744:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6747:77:2",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6737:6:2"
},
"nodeType": "YulFunctionCall",
"src": "6737:88:2"
},
"nodeType": "YulExpressionStatement",
"src": "6737:88:2"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6841:1:2",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6844:4:2",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6834:6:2"
},
"nodeType": "YulFunctionCall",
"src": "6834:15:2"
},
"nodeType": "YulExpressionStatement",
"src": "6834:15:2"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6865:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6868:4:2",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6858:6:2"
},
"nodeType": "YulFunctionCall",
"src": "6858:15:2"
},
"nodeType": "YulExpressionStatement",
"src": "6858:15:2"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "6699:180:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6913:152:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6930:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6933:77:2",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6923:6:2"
},
"nodeType": "YulFunctionCall",
"src": "6923:88:2"
},
"nodeType": "YulExpressionStatement",
"src": "6923:88:2"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7027:1:2",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7030:4:2",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7020:6:2"
},
"nodeType": "YulFunctionCall",
"src": "7020:15:2"
},
"nodeType": "YulExpressionStatement",
"src": "7020:15:2"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7051:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7054:4:2",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7044:6:2"
},
"nodeType": "YulFunctionCall",
"src": "7044:15:2"
},
"nodeType": "YulExpressionStatement",
"src": "7044:15:2"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "6885:180:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7099:152:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7116:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7119:77:2",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7109:6:2"
},
"nodeType": "YulFunctionCall",
"src": "7109:88:2"
},
"nodeType": "YulExpressionStatement",
"src": "7109:88:2"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7213:1:2",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7216:4:2",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7206:6:2"
},
"nodeType": "YulFunctionCall",
"src": "7206:15:2"
},
"nodeType": "YulExpressionStatement",
"src": "7206:15:2"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7237:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7240:4:2",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7230:6:2"
},
"nodeType": "YulFunctionCall",
"src": "7230:15:2"
},
"nodeType": "YulExpressionStatement",
"src": "7230:15:2"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "7071:180:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7346:28:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7363:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7366:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7356:6:2"
},
"nodeType": "YulFunctionCall",
"src": "7356:12:2"
},
"nodeType": "YulExpressionStatement",
"src": "7356:12:2"
}
]
},
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulFunctionDefinition",
"src": "7257:117:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7469:28:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7486:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7489:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7479:6:2"
},
"nodeType": "YulFunctionCall",
"src": "7479:12:2"
},
"nodeType": "YulExpressionStatement",
"src": "7479:12:2"
}
]
},
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulFunctionDefinition",
"src": "7380:117:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7592:28:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7609:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7612:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7602:6:2"
},
"nodeType": "YulFunctionCall",
"src": "7602:12:2"
},
"nodeType": "YulExpressionStatement",
"src": "7602:12:2"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "7503:117:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7715:28:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7732:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7735:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7725:6:2"
},
"nodeType": "YulFunctionCall",
"src": "7725:12:2"
},
"nodeType": "YulExpressionStatement",
"src": "7725:12:2"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "7626:117:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7797:54:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7807:38:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7825:5:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7832:2:2",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7821:3:2"
},
"nodeType": "YulFunctionCall",
"src": "7821:14:2"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7841:2:2",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "7837:3:2"
},
"nodeType": "YulFunctionCall",
"src": "7837:7:2"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "7817:3:2"
},
"nodeType": "YulFunctionCall",
"src": "7817:28:2"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "7807:6:2"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7780:5:2",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "7790:6:2",
"type": ""
}
],
"src": "7749:102:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7900:79:2",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "7957:16:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7966:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7969:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7959:6:2"
},
"nodeType": "YulFunctionCall",
"src": "7959:12:2"
},
"nodeType": "YulExpressionStatement",
"src": "7959:12:2"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7923:5:2"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7948:5:2"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "7930:17:2"
},
"nodeType": "YulFunctionCall",
"src": "7930:24:2"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "7920:2:2"
},
"nodeType": "YulFunctionCall",
"src": "7920:35:2"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "7913:6:2"
},
"nodeType": "YulFunctionCall",
"src": "7913:43:2"
},
"nodeType": "YulIf",
"src": "7910:63:2"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7893:5:2",
"type": ""
}
],
"src": "7857:122:2"
}
]
},
"contents": "{\n\n function abi_decode_available_length_t_string_memory_ptr(src, length, end) -> array {\n array := allocate_memory(array_allocation_size_t_string_memory_ptr(length))\n mstore(array, length)\n let dst := add(array, 0x20)\n if gt(add(src, length), end) { revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() }\n copy_calldata_to_memory(src, dst, length)\n }\n\n // string\n function abi_decode_t_string_memory_ptr(offset, end) -> array {\n if iszero(slt(add(offset, 0x1f), end)) { revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() }\n let length := calldataload(offset)\n array := abi_decode_available_length_t_string_memory_ptr(add(offset, 0x20), length, end)\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_string_memory_ptr(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := calldataload(add(headStart, 0))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value0 := abi_decode_t_string_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_string_memory_ptrt_uint256(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := calldataload(add(headStart, 0))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value0 := abi_decode_t_string_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, length)\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_packed_t_string_memory_ptr__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed(pos , value0) -> end {\n\n pos := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value0, pos)\n\n end := pos\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_tuple_t_uint256_t_string_memory_ptr__to_t_uint256_t_string_memory_ptr__fromStack_reversed(headStart , value1, value0) -> tail {\n tail := add(headStart, 64)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n mstore(add(headStart, 32), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value1, tail)\n\n }\n\n function allocate_memory(size) -> memPtr {\n memPtr := allocate_unbounded()\n finalize_allocation(memPtr, size)\n }\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function array_allocation_size_t_string_memory_ptr(length) -> size {\n // Make sure we can allocate memory without overflow\n if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n\n size := round_up_to_mul_of_32(length)\n\n // add length slot\n size := add(size, 0x20)\n\n }\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, length) -> updated_pos {\n updated_pos := pos\n }\n\n function checked_add_t_uint256(x, y) -> sum {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n // overflow, if x > (maxValue - y)\n if gt(x, sub(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, y)) { panic_error_0x11() }\n\n sum := add(x, y)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function copy_calldata_to_memory(src, dst, length) {\n calldatacopy(dst, src, length)\n // clear end\n mstore(add(dst, length), 0)\n }\n\n function copy_memory_to_memory(src, dst, length) {\n let i := 0\n for { } lt(i, length) { i := add(i, 32) }\n {\n mstore(add(dst, i), mload(add(src, i)))\n }\n if gt(i, length)\n {\n // clear end\n mstore(add(dst, length), 0)\n }\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function finalize_allocation(memPtr, size) {\n let newFreePtr := add(memPtr, round_up_to_mul_of_32(size))\n // protect against overflow\n if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() {\n revert(0, 0)\n }\n\n function revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n}\n",
"id": 2,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106100575760003560e01c80632e64cec11461005c5780636057361d1461007a5780636f760f41146100965780639e7a13ad146100b2578063b2ac62ef146100e3575b600080fd5b610064610113565b604051610071919061053c565b60405180910390f35b610094600480360381019061008f919061047f565b61011c565b005b6100b060048036038101906100ab9190610423565b610132565b005b6100cc60048036038101906100c7919061047f565b6101c8565b6040516100da929190610557565b60405180910390f35b6100fd60048036038101906100f891906103da565b610284565b60405161010a919061053c565b60405180910390f35b60008054905090565b6005816101299190610604565b60008190555050565b60006040518060400160405280838152602001848152509050600281908060018154018082558091505060019003906000526020600020906002020160009091909190915060008201518160000155602082015181600101908051906020019061019d9291906102b2565b505050816001846040516101b19190610525565b908152602001604051809103902081905550505050565b600281815481106101d857600080fd5b9060005260206000209060020201600091509050806000015490806001018054610201906106a6565b80601f016020809104026020016040519081016040528092919081815260200182805461022d906106a6565b801561027a5780601f1061024f5761010080835404028352916020019161027a565b820191906000526020600020905b81548152906001019060200180831161025d57829003601f168201915b5050505050905082565b6001818051602081018201805184825260208301602085012081835280955050505050506000915090505481565b8280546102be906106a6565b90600052602060002090601f0160209004810192826102e05760008555610327565b82601f106102f957805160ff1916838001178555610327565b82800160010185558215610327579182015b8281111561032657825182559160200191906001019061030b565b5b5090506103349190610338565b5090565b5b80821115610351576000816000905550600101610339565b5090565b6000610368610363846105ac565b610587565b9050828152602081018484840111156103845761038361079b565b5b61038f848285610664565b509392505050565b600082601f8301126103ac576103ab610796565b5b81356103bc848260208601610355565b91505092915050565b6000813590506103d4816107bb565b92915050565b6000602082840312156103f0576103ef6107a5565b5b600082013567ffffffffffffffff81111561040e5761040d6107a0565b5b61041a84828501610397565b91505092915050565b6000806040838503121561043a576104396107a5565b5b600083013567ffffffffffffffff811115610458576104576107a0565b5b61046485828601610397565b9250506020610475858286016103c5565b9150509250929050565b600060208284031215610495576104946107a5565b5b60006104a3848285016103c5565b91505092915050565b60006104b7826105dd565b6104c181856105e8565b93506104d1818560208601610673565b6104da816107aa565b840191505092915050565b60006104f0826105dd565b6104fa81856105f9565b935061050a818560208601610673565b80840191505092915050565b61051f8161065a565b82525050565b600061053182846104e5565b915081905092915050565b60006020820190506105516000830184610516565b92915050565b600060408201905061056c6000830185610516565b818103602083015261057e81846104ac565b90509392505050565b60006105916105a2565b905061059d82826106d8565b919050565b6000604051905090565b600067ffffffffffffffff8211156105c7576105c6610767565b5b6105d0826107aa565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600061060f8261065a565b915061061a8361065a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561064f5761064e610709565b5b828201905092915050565b6000819050919050565b82818337600083830152505050565b60005b83811015610691578082015181840152602081019050610676565b838111156106a0576000848401525b50505050565b600060028204905060018216806106be57607f821691505b602082108114156106d2576106d1610738565b5b50919050565b6106e1826107aa565b810181811067ffffffffffffffff82111715610700576106ff610767565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b6107c48161065a565b81146107cf57600080fd5b5056fea264697066735822122062d1a63d7c7eebfcdb861a583786a633f24b2492fcad4d6ee4b2925a719dd10b64736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x57 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x2E64CEC1 EQ PUSH2 0x5C JUMPI DUP1 PUSH4 0x6057361D EQ PUSH2 0x7A JUMPI DUP1 PUSH4 0x6F760F41 EQ PUSH2 0x96 JUMPI DUP1 PUSH4 0x9E7A13AD EQ PUSH2 0xB2 JUMPI DUP1 PUSH4 0xB2AC62EF EQ PUSH2 0xE3 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x64 PUSH2 0x113 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x71 SWAP2 SWAP1 PUSH2 0x53C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x94 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x8F SWAP2 SWAP1 PUSH2 0x47F JUMP JUMPDEST PUSH2 0x11C JUMP JUMPDEST STOP JUMPDEST PUSH2 0xB0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xAB SWAP2 SWAP1 PUSH2 0x423 JUMP JUMPDEST PUSH2 0x132 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xCC PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xC7 SWAP2 SWAP1 PUSH2 0x47F JUMP JUMPDEST PUSH2 0x1C8 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xDA SWAP3 SWAP2 SWAP1 PUSH2 0x557 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xFD PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xF8 SWAP2 SWAP1 PUSH2 0x3DA JUMP JUMPDEST PUSH2 0x284 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x10A SWAP2 SWAP1 PUSH2 0x53C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x5 DUP2 PUSH2 0x129 SWAP2 SWAP1 PUSH2 0x604 JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 DUP4 DUP2 MSTORE PUSH1 0x20 ADD DUP5 DUP2 MSTORE POP SWAP1 POP PUSH1 0x2 DUP2 SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD SSTORE PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x19D SWAP3 SWAP2 SWAP1 PUSH2 0x2B2 JUMP JUMPDEST POP POP POP DUP2 PUSH1 0x1 DUP5 PUSH1 0x40 MLOAD PUSH2 0x1B1 SWAP2 SWAP1 PUSH2 0x525 JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 DUP2 SWAP1 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x2 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x1D8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH1 0x0 SWAP2 POP SWAP1 POP DUP1 PUSH1 0x0 ADD SLOAD SWAP1 DUP1 PUSH1 0x1 ADD DUP1 SLOAD PUSH2 0x201 SWAP1 PUSH2 0x6A6 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x22D SWAP1 PUSH2 0x6A6 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x27A JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x24F JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x27A JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x25D JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP DUP3 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP1 MLOAD PUSH1 0x20 DUP2 ADD DUP3 ADD DUP1 MLOAD DUP5 DUP3 MSTORE PUSH1 0x20 DUP4 ADD PUSH1 0x20 DUP6 ADD KECCAK256 DUP2 DUP4 MSTORE DUP1 SWAP6 POP POP POP POP POP POP PUSH1 0x0 SWAP2 POP SWAP1 POP SLOAD DUP2 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH2 0x2BE SWAP1 PUSH2 0x6A6 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0x2E0 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0x327 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0x2F9 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0x327 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0x327 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x326 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x30B JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x334 SWAP2 SWAP1 PUSH2 0x338 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x351 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x339 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x368 PUSH2 0x363 DUP5 PUSH2 0x5AC JUMP JUMPDEST PUSH2 0x587 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x384 JUMPI PUSH2 0x383 PUSH2 0x79B JUMP JUMPDEST JUMPDEST PUSH2 0x38F DUP5 DUP3 DUP6 PUSH2 0x664 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x3AC JUMPI PUSH2 0x3AB PUSH2 0x796 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x3BC DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x355 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x3D4 DUP2 PUSH2 0x7BB JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3F0 JUMPI PUSH2 0x3EF PUSH2 0x7A5 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP3 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x40E JUMPI PUSH2 0x40D PUSH2 0x7A0 JUMP JUMPDEST JUMPDEST PUSH2 0x41A DUP5 DUP3 DUP6 ADD PUSH2 0x397 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x43A JUMPI PUSH2 0x439 PUSH2 0x7A5 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x458 JUMPI PUSH2 0x457 PUSH2 0x7A0 JUMP JUMPDEST JUMPDEST PUSH2 0x464 DUP6 DUP3 DUP7 ADD PUSH2 0x397 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x475 DUP6 DUP3 DUP7 ADD PUSH2 0x3C5 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x495 JUMPI PUSH2 0x494 PUSH2 0x7A5 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x4A3 DUP5 DUP3 DUP6 ADD PUSH2 0x3C5 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4B7 DUP3 PUSH2 0x5DD JUMP JUMPDEST PUSH2 0x4C1 DUP2 DUP6 PUSH2 0x5E8 JUMP JUMPDEST SWAP4 POP PUSH2 0x4D1 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x673 JUMP JUMPDEST PUSH2 0x4DA DUP2 PUSH2 0x7AA JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4F0 DUP3 PUSH2 0x5DD JUMP JUMPDEST PUSH2 0x4FA DUP2 DUP6 PUSH2 0x5F9 JUMP JUMPDEST SWAP4 POP PUSH2 0x50A DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x673 JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x51F DUP2 PUSH2 0x65A JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x531 DUP3 DUP5 PUSH2 0x4E5 JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x551 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x516 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x56C PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0x516 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0x57E DUP2 DUP5 PUSH2 0x4AC JUMP JUMPDEST SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x591 PUSH2 0x5A2 JUMP JUMPDEST SWAP1 POP PUSH2 0x59D DUP3 DUP3 PUSH2 0x6D8 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x5C7 JUMPI PUSH2 0x5C6 PUSH2 0x767 JUMP JUMPDEST JUMPDEST PUSH2 0x5D0 DUP3 PUSH2 0x7AA JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x60F DUP3 PUSH2 0x65A JUMP JUMPDEST SWAP2 POP PUSH2 0x61A DUP4 PUSH2 0x65A JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x64F JUMPI PUSH2 0x64E PUSH2 0x709 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x691 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x676 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x6A0 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x6BE JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x6D2 JUMPI PUSH2 0x6D1 PUSH2 0x738 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x6E1 DUP3 PUSH2 0x7AA JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x700 JUMPI PUSH2 0x6FF PUSH2 0x767 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x7C4 DUP2 PUSH2 0x65A JUMP JUMPDEST DUP2 EQ PUSH2 0x7CF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH3 0xD1A63D PUSH29 0x7EEBFCDB861A583786A633F24B2492FCAD4D6EE4B2925A719DD10B6473 PUSH16 0x6C634300080700330000000000000000 ",
"sourceMap": "123:220:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1097:88:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;241:100:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1332:257:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;778:22;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;631:55;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1097:88;1137:7;1163:15;;1156:22;;1097:88;:::o;241:100:0:-;333:1;320:10;:14;;;;:::i;:::-;302:15;:32;;;;241:100;:::o;1332:257:1:-;1415:23;1441:52;;;;;;;;1461:16;1441:52;;;;1485:5;1441:52;;;1415:78;;1503:6;1515:9;1503:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;1566:16;1535:21;1557:5;1535:28;;;;;;:::i;:::-;;;;;;;;;;;;;:47;;;;1405:184;1332:257;;:::o;778:22::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;631:55::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:412:2:-;85:5;110:66;126:49;168:6;126:49;:::i;:::-;110:66;:::i;:::-;101:75;;199:6;192:5;185:21;237:4;230:5;226:16;275:3;266:6;261:3;257:16;254:25;251:112;;;282:79;;:::i;:::-;251:112;372:41;406:6;401:3;396;372:41;:::i;:::-;91:328;7:412;;;;;:::o;439:340::-;495:5;544:3;537:4;529:6;525:17;521:27;511:122;;552:79;;:::i;:::-;511:122;669:6;656:20;694:79;769:3;761:6;754:4;746:6;742:17;694:79;:::i;:::-;685:88;;501:278;439:340;;;;:::o;785:139::-;831:5;869:6;856:20;847:29;;885:33;912:5;885:33;:::i;:::-;785:139;;;;:::o;930:509::-;999:6;1048:2;1036:9;1027:7;1023:23;1019:32;1016:119;;;1054:79;;:::i;:::-;1016:119;1202:1;1191:9;1187:17;1174:31;1232:18;1224:6;1221:30;1218:117;;;1254:79;;:::i;:::-;1218:117;1359:63;1414:7;1405:6;1394:9;1390:22;1359:63;:::i;:::-;1349:73;;1145:287;930:509;;;;:::o;1445:654::-;1523:6;1531;1580:2;1568:9;1559:7;1555:23;1551:32;1548:119;;;1586:79;;:::i;:::-;1548:119;1734:1;1723:9;1719:17;1706:31;1764:18;1756:6;1753:30;1750:117;;;1786:79;;:::i;:::-;1750:117;1891:63;1946:7;1937:6;1926:9;1922:22;1891:63;:::i;:::-;1881:73;;1677:287;2003:2;2029:53;2074:7;2065:6;2054:9;2050:22;2029:53;:::i;:::-;2019:63;;1974:118;1445:654;;;;;:::o;2105:329::-;2164:6;2213:2;2201:9;2192:7;2188:23;2184:32;2181:119;;;2219:79;;:::i;:::-;2181:119;2339:1;2364:53;2409:7;2400:6;2389:9;2385:22;2364:53;:::i;:::-;2354:63;;2310:117;2105:329;;;;:::o;2440:364::-;2528:3;2556:39;2589:5;2556:39;:::i;:::-;2611:71;2675:6;2670:3;2611:71;:::i;:::-;2604:78;;2691:52;2736:6;2731:3;2724:4;2717:5;2713:16;2691:52;:::i;:::-;2768:29;2790:6;2768:29;:::i;:::-;2763:3;2759:39;2752:46;;2532:272;2440:364;;;;:::o;2810:377::-;2916:3;2944:39;2977:5;2944:39;:::i;:::-;2999:89;3081:6;3076:3;2999:89;:::i;:::-;2992:96;;3097:52;3142:6;3137:3;3130:4;3123:5;3119:16;3097:52;:::i;:::-;3174:6;3169:3;3165:16;3158:23;;2920:267;2810:377;;;;:::o;3193:118::-;3280:24;3298:5;3280:24;:::i;:::-;3275:3;3268:37;3193:118;;:::o;3317:275::-;3449:3;3471:95;3562:3;3553:6;3471:95;:::i;:::-;3464:102;;3583:3;3576:10;;3317:275;;;;:::o;3598:222::-;3691:4;3729:2;3718:9;3714:18;3706:26;;3742:71;3810:1;3799:9;3795:17;3786:6;3742:71;:::i;:::-;3598:222;;;;:::o;3826:423::-;3967:4;4005:2;3994:9;3990:18;3982:26;;4018:71;4086:1;4075:9;4071:17;4062:6;4018:71;:::i;:::-;4136:9;4130:4;4126:20;4121:2;4110:9;4106:18;4099:48;4164:78;4237:4;4228:6;4164:78;:::i;:::-;4156:86;;3826:423;;;;;:::o;4255:129::-;4289:6;4316:20;;:::i;:::-;4306:30;;4345:33;4373:4;4365:6;4345:33;:::i;:::-;4255:129;;;:::o;4390:75::-;4423:6;4456:2;4450:9;4440:19;;4390:75;:::o;4471:308::-;4533:4;4623:18;4615:6;4612:30;4609:56;;;4645:18;;:::i;:::-;4609:56;4683:29;4705:6;4683:29;:::i;:::-;4675:37;;4767:4;4761;4757:15;4749:23;;4471:308;;;:::o;4785:99::-;4837:6;4871:5;4865:12;4855:22;;4785:99;;;:::o;4890:169::-;4974:11;5008:6;5003:3;4996:19;5048:4;5043:3;5039:14;5024:29;;4890:169;;;;:::o;5065:148::-;5167:11;5204:3;5189:18;;5065:148;;;;:::o;5219:305::-;5259:3;5278:20;5296:1;5278:20;:::i;:::-;5273:25;;5312:20;5330:1;5312:20;:::i;:::-;5307:25;;5466:1;5398:66;5394:74;5391:1;5388:81;5385:107;;;5472:18;;:::i;:::-;5385:107;5516:1;5513;5509:9;5502:16;;5219:305;;;;:::o;5530:77::-;5567:7;5596:5;5585:16;;5530:77;;;:::o;5613:154::-;5697:6;5692:3;5687;5674:30;5759:1;5750:6;5745:3;5741:16;5734:27;5613:154;;;:::o;5773:307::-;5841:1;5851:113;5865:6;5862:1;5859:13;5851:113;;;5950:1;5945:3;5941:11;5935:18;5931:1;5926:3;5922:11;5915:39;5887:2;5884:1;5880:10;5875:15;;5851:113;;;5982:6;5979:1;5976:13;5973:101;;;6062:1;6053:6;6048:3;6044:16;6037:27;5973:101;5822:258;5773:307;;;:::o;6086:320::-;6130:6;6167:1;6161:4;6157:12;6147:22;;6214:1;6208:4;6204:12;6235:18;6225:81;;6291:4;6283:6;6279:17;6269:27;;6225:81;6353:2;6345:6;6342:14;6322:18;6319:38;6316:84;;;6372:18;;:::i;:::-;6316:84;6137:269;6086:320;;;:::o;6412:281::-;6495:27;6517:4;6495:27;:::i;:::-;6487:6;6483:40;6625:6;6613:10;6610:22;6589:18;6577:10;6574:34;6571:62;6568:88;;;6636:18;;:::i;:::-;6568:88;6676:10;6672:2;6665:22;6455:238;6412:281;;:::o;6699:180::-;6747:77;6744:1;6737:88;6844:4;6841:1;6834:15;6868:4;6865:1;6858:15;6885:180;6933:77;6930:1;6923:88;7030:4;7027:1;7020:15;7054:4;7051:1;7044:15;7071:180;7119:77;7116:1;7109:88;7216:4;7213:1;7206:15;7240:4;7237:1;7230:15;7257:117;7366:1;7363;7356:12;7380:117;7489:1;7486;7479:12;7503:117;7612:1;7609;7602:12;7626:117;7735:1;7732;7725:12;7749:102;7790:6;7841:2;7837:7;7832:2;7825:5;7821:14;7817:28;7807:38;;7749:102;;;:::o;7857:122::-;7930:24;7948:5;7930:24;:::i;:::-;7923:5;7920:35;7910:63;;7969:1;7966;7959:12;7910:63;7857:122;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "411200",
"executionCost": "449",
"totalCost": "411649"
},
"external": {
"addPerson(string,uint256)": "infinite",
"nameToFavouriteNumber(string)": "infinite",
"people(uint256)": "infinite",
"retrieve()": "2415",
"store(uint256)": "infinite"
}
},
"legacyAssembly": {
".code": [
{
"begin": 123,
"end": 343,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 123,
"end": 343,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 123,
"end": 343,
"name": "MSTORE",
"source": 0
},
{
"begin": 123,
"end": 343,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 123,
"end": 343,
"name": "DUP1",
"source": 0
},
{
"begin": 123,
"end": 343,
"name": "ISZERO",
"source": 0
},
{
"begin": 123,
"end": 343,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 123,
"end": 343,
"name": "JUMPI",
"source": 0
},
{
"begin": 123,
"end": 343,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 123,
"end": 343,
"name": "DUP1",
"source": 0
},
{
"begin": 123,
"end": 343,
"name": "REVERT",
"source": 0
},
{
"begin": 123,
"end": 343,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 123,
"end": 343,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 123,
"end": 343,
"name": "POP",
"source": 0
},
{
"begin": 123,
"end": 343,
"name": "PUSH #[$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 123,
"end": 343,
"name": "DUP1",
"source": 0
},
{
"begin": 123,
"end": 343,
"name": "PUSH [$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 123,
"end": 343,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 123,
"end": 343,
"name": "CODECOPY",
"source": 0
},
{
"begin": 123,
"end": 343,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 123,
"end": 343,
"name": "RETURN",
"source": 0
}
],
".data": {
"0": {
".auxdata": "a264697066735822122062d1a63d7c7eebfcdb861a583786a633f24b2492fcad4d6ee4b2925a719dd10b64736f6c63430008070033",
".code": [
{
"begin": 123,
"end": 343,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 123,
"end": 343,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 123,
"end": 343,
"name": "MSTORE",
"source": 0
},
{
"begin": 123,
"end": 343,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 123,
"end": 343,
"name": "DUP1",
"source": 0
},
{
"begin": 123,
"end": 343,
"name": "ISZERO",
"source": 0
},
{
"begin": 123,
"end": 343,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 123,
"end": 343,
"name": "JUMPI",
"source": 0
},
{
"begin": 123,
"end": 343,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 123,
"end": 343,
"name": "DUP1",
"source": 0
},
{
"begin": 123,
"end": 343,
"name": "REVERT",
"source": 0
},
{
"begin": 123,
"end": 343,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 123,
"end": 343,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 123,
"end": 343,
"name": "POP",
"source": 0
},
{
"begin": 123,
"end": 343,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 123,
"end": 343,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 123,
"end": 343,
"name": "LT",
"source": 0
},
{
"begin": 123,
"end": 343,
"name": "PUSH [tag]",
"source": 0,
"value": "2"
},
{
"begin": 123,
"end": 343,
"name": "JUMPI",
"source": 0
},
{
"begin": 123,
"end": 343,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 123,
"end": 343,
"name": "CALLDATALOAD",
"source": 0
},
{
"begin": 123,
"end": 343,
"name": "PUSH",
"source": 0,
"value": "E0"
},
{
"begin": 123,
"end": 343,
"name": "SHR",
"source": 0
},
{
"begin": 123,
"end": 343,
"name": "DUP1",
"source": 0
},
{
"begin": 123,
"end": 343,
"name": "PUSH",
"source": 0,
"value": "2E64CEC1"
},
{
"begin": 123,
"end": 343,
"name": "EQ",
"source": 0
},
{
"begin": 123,
"end": 343,
"name": "PUSH [tag]",
"source": 0,
"value": "3"
},
{
"begin": 123,
"end": 343,
"name": "JUMPI",
"source": 0
},
{
"begin": 123,
"end": 343,
"name": "DUP1",
"source": 0
},
{
"begin": 123,
"end": 343,
"name": "PUSH",
"source": 0,
"value": "6057361D"
},
{
"begin": 123,
"end": 343,
"name": "EQ",
"source": 0
},
{
"begin": 123,
"end": 343,
"name": "PUSH [tag]",
"source": 0,
"value": "4"
},
{
"begin": 123,
"end": 343,
"name": "JUMPI",
"source": 0
},
{
"begin": 123,
"end": 343,
"name": "DUP1",
"source": 0
},
{
"begin": 123,
"end": 343,
"name": "PUSH",
"source": 0,
"value": "6F760F41"
},
{
"begin": 123,
"end": 343,
"name": "EQ",
"source": 0
},
{
"begin": 123,
"end": 343,
"name": "PUSH [tag]",
"source": 0,
"value": "5"
},
{
"begin": 123,
"end": 343,
"name": "JUMPI",
"source": 0
},
{
"begin": 123,
"end": 343,
"name": "DUP1",
"source": 0
},
{
"begin": 123,
"end": 343,
"name": "PUSH",
"source": 0,
"value": "9E7A13AD"
},
{
"begin": 123,
"end": 343,
"name": "EQ",
"source": 0
},
{
"begin": 123,
"end": 343,
"name": "PUSH [tag]",
"source": 0,
"value": "6"
},
{
"begin": 123,
"end": 343,
"name": "JUMPI",
"source": 0
},
{
"begin": 123,
"end": 343,
"name": "DUP1",
"source": 0
},
{
"begin": 123,
"end": 343,
"name": "PUSH",
"source": 0,
"value": "B2AC62EF"
},
{
"begin": 123,
"end": 343,
"name": "EQ",
"source": 0
},
{
"begin": 123,
"end": 343,
"name": "PUSH [tag]",
"source": 0,
"value": "7"
},
{
"begin": 123,
"end": 343,
"name": "JUMPI",
"source": 0
},
{
"begin": 123,
"end": 343,
"name": "tag",
"source": 0,
"value": "2"
},
{
"begin": 123,
"end": 343,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 123,
"end": 343,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 123,
"end": 343,
"name": "DUP1",
"source": 0
},
{
"begin": 123,
"end": 343,
"name": "REVERT",
"source": 0
},
{
"begin": 1097,
"end": 1185,
"name": "tag",
"source": 1,
"value": "3"
},
{
"begin": 1097,
"end": 1185,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1097,
"end": 1185,
"name": "PUSH [tag]",
"source": 1,
"value": "8"
},
{
"begin": 1097,
"end": 1185,
"name": "PUSH [tag]",
"source": 1,
"value": "9"
},
{
"begin": 1097,
"end": 1185,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 1097,
"end": 1185,
"name": "tag",
"source": 1,
"value": "8"
},
{
"begin": 1097,
"end": 1185,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1097,
"end": 1185,
"name": "PUSH",
"source": 1,
"value": "40"
},
{
"begin": 1097,
"end": 1185,
"name": "MLOAD",
"source": 1
},
{
"begin": 1097,
"end": 1185,
"name": "PUSH [tag]",
"source": 1,
"value": "10"
},
{
"begin": 1097,
"end": 1185,
"name": "SWAP2",
"source": 1
},
{
"begin": 1097,
"end": 1185,
"name": "SWAP1",
"source": 1
},
{
"begin": 1097,
"end": 1185,
"name": "PUSH [tag]",
"source": 1,
"value": "11"
},
{
"begin": 1097,
"end": 1185,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 1097,
"end": 1185,
"name": "tag",
"source": 1,
"value": "10"
},
{
"begin": 1097,
"end": 1185,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1097,
"end": 1185,
"name": "PUSH",
"source": 1,
"value": "40"
},
{
"begin": 1097,
"end": 1185,
"name": "MLOAD",
"source": 1
},
{
"begin": 1097,
"end": 1185,
"name": "DUP1",
"source": 1
},
{
"begin": 1097,
"end": 1185,
"name": "SWAP2",
"source": 1
},
{
"begin": 1097,
"end": 1185,
"name": "SUB",
"source": 1
},
{
"begin": 1097,
"end": 1185,
"name": "SWAP1",
"source": 1
},
{
"begin": 1097,
"end": 1185,
"name": "RETURN",
"source": 1
},
{
"begin": 241,
"end": 341,
"name": "tag",
"source": 0,
"value": "4"
},
{
"begin": 241,
"end": 341,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 241,
"end": 341,
"name": "PUSH [tag]",
"source": 0,
"value": "12"
},
{
"begin": 241,
"end": 341,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 241,
"end": 341,
"name": "DUP1",
"source": 0
},
{
"begin": 241,
"end": 341,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 241,
"end": 341,
"name": "SUB",
"source": 0
},
{
"begin": 241,
"end": 341,
"name": "DUP2",
"source": 0
},
{
"begin": 241,
"end": 341,
"name": "ADD",
"source": 0
},
{
"begin": 241,
"end": 341,
"name": "SWAP1",
"source": 0
},
{
"begin": 241,
"end": 341,
"name": "PUSH [tag]",
"source": 0,
"value": "13"
},
{
"begin": 241,
"end": 341,
"name": "SWAP2",
"source": 0
},
{
"begin": 241,
"end": 341,
"name": "SWAP1",
"source": 0
},
{
"begin": 241,
"end": 341,
"name": "PUSH [tag]",
"source": 0,
"value": "14"
},
{
"begin": 241,
"end": 341,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 241,
"end": 341,
"name": "tag",
"source": 0,
"value": "13"
},
{
"begin": 241,
"end": 341,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 241,
"end": 341,
"name": "PUSH [tag]",
"source": 0,
"value": "15"
},
{
"begin": 241,
"end": 341,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 241,
"end": 341,
"name": "tag",
"source": 0,
"value": "12"
},
{
"begin": 241,
"end": 341,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 241,
"end": 341,
"name": "STOP",
"source": 0
},
{
"begin": 1332,
"end": 1589,
"name": "tag",
"source": 1,
"value": "5"
},
{
"begin": 1332,
"end": 1589,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1332,
"end": 1589,
"name": "PUSH [tag]",
"source": 1,
"value": "16"
},
{
"begin": 1332,
"end": 1589,
"name": "PUSH",
"source": 1,
"value": "4"
},
{
"begin": 1332,
"end": 1589,
"name": "DUP1",
"source": 1
},
{
"begin": 1332,
"end": 1589,
"name": "CALLDATASIZE",
"source": 1
},
{
"begin": 1332,
"end": 1589,
"name": "SUB",
"source": 1
},
{
"begin": 1332,
"end": 1589,
"name": "DUP2",
"source": 1
},
{
"begin": 1332,
"end": 1589,
"name": "ADD",
"source": 1
},
{
"begin": 1332,
"end": 1589,
"name": "SWAP1",
"source": 1
},
{
"begin": 1332,
"end": 1589,
"name": "PUSH [tag]",
"source": 1,
"value": "17"
},
{
"begin": 1332,
"end": 1589,
"name": "SWAP2",
"source": 1
},
{
"begin": 1332,
"end": 1589,
"name": "SWAP1",
"source": 1
},
{
"begin": 1332,
"end": 1589,
"name": "PUSH [tag]",
"source": 1,
"value": "18"
},
{
"begin": 1332,
"end": 1589,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 1332,
"end": 1589,
"name": "tag",
"source": 1,
"value": "17"
},
{
"begin": 1332,
"end": 1589,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1332,
"end": 1589,
"name": "PUSH [tag]",
"source": 1,
"value": "19"
},
{
"begin": 1332,
"end": 1589,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 1332,
"end": 1589,
"name": "tag",
"source": 1,
"value": "16"
},
{
"begin": 1332,
"end": 1589,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1332,
"end": 1589,
"name": "STOP",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "tag",
"source": 1,
"value": "6"
},
{
"begin": 778,
"end": 800,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "PUSH [tag]",
"source": 1,
"value": "20"
},
{
"begin": 778,
"end": 800,
"name": "PUSH",
"source": 1,
"value": "4"
},
{
"begin": 778,
"end": 800,
"name": "DUP1",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "CALLDATASIZE",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "SUB",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "DUP2",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "ADD",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "SWAP1",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "PUSH [tag]",
"source": 1,
"value": "21"
},
{
"begin": 778,
"end": 800,
"name": "SWAP2",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "SWAP1",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "PUSH [tag]",
"source": 1,
"value": "14"
},
{
"begin": 778,
"end": 800,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 778,
"end": 800,
"name": "tag",
"source": 1,
"value": "21"
},
{
"begin": 778,
"end": 800,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "PUSH [tag]",
"source": 1,
"value": "22"
},
{
"begin": 778,
"end": 800,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 778,
"end": 800,
"name": "tag",
"source": 1,
"value": "20"
},
{
"begin": 778,
"end": 800,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "PUSH",
"source": 1,
"value": "40"
},
{
"begin": 778,
"end": 800,
"name": "MLOAD",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "PUSH [tag]",
"source": 1,
"value": "23"
},
{
"begin": 778,
"end": 800,
"name": "SWAP3",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "SWAP2",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "SWAP1",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "PUSH [tag]",
"source": 1,
"value": "24"
},
{
"begin": 778,
"end": 800,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 778,
"end": 800,
"name": "tag",
"source": 1,
"value": "23"
},
{
"begin": 778,
"end": 800,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "PUSH",
"source": 1,
"value": "40"
},
{
"begin": 778,
"end": 800,
"name": "MLOAD",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "DUP1",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "SWAP2",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "SUB",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "SWAP1",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "RETURN",
"source": 1
},
{
"begin": 631,
"end": 686,
"name": "tag",
"source": 1,
"value": "7"
},
{
"begin": 631,
"end": 686,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 631,
"end": 686,
"name": "PUSH [tag]",
"source": 1,
"value": "25"
},
{
"begin": 631,
"end": 686,
"name": "PUSH",
"source": 1,
"value": "4"
},
{
"begin": 631,
"end": 686,
"name": "DUP1",
"source": 1
},
{
"begin": 631,
"end": 686,
"name": "CALLDATASIZE",
"source": 1
},
{
"begin": 631,
"end": 686,
"name": "SUB",
"source": 1
},
{
"begin": 631,
"end": 686,
"name": "DUP2",
"source": 1
},
{
"begin": 631,
"end": 686,
"name": "ADD",
"source": 1
},
{
"begin": 631,
"end": 686,
"name": "SWAP1",
"source": 1
},
{
"begin": 631,
"end": 686,
"name": "PUSH [tag]",
"source": 1,
"value": "26"
},
{
"begin": 631,
"end": 686,
"name": "SWAP2",
"source": 1
},
{
"begin": 631,
"end": 686,
"name": "SWAP1",
"source": 1
},
{
"begin": 631,
"end": 686,
"name": "PUSH [tag]",
"source": 1,
"value": "27"
},
{
"begin": 631,
"end": 686,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 631,
"end": 686,
"name": "tag",
"source": 1,
"value": "26"
},
{
"begin": 631,
"end": 686,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 631,
"end": 686,
"name": "PUSH [tag]",
"source": 1,
"value": "28"
},
{
"begin": 631,
"end": 686,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 631,
"end": 686,
"name": "tag",
"source": 1,
"value": "25"
},
{
"begin": 631,
"end": 686,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 631,
"end": 686,
"name": "PUSH",
"source": 1,
"value": "40"
},
{
"begin": 631,
"end": 686,
"name": "MLOAD",
"source": 1
},
{
"begin": 631,
"end": 686,
"name": "PUSH [tag]",
"source": 1,
"value": "29"
},
{
"begin": 631,
"end": 686,
"name": "SWAP2",
"source": 1
},
{
"begin": 631,
"end": 686,
"name": "SWAP1",
"source": 1
},
{
"begin": 631,
"end": 686,
"name": "PUSH [tag]",
"source": 1,
"value": "11"
},
{
"begin": 631,
"end": 686,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 631,
"end": 686,
"name": "tag",
"source": 1,
"value": "29"
},
{
"begin": 631,
"end": 686,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 631,
"end": 686,
"name": "PUSH",
"source": 1,
"value": "40"
},
{
"begin": 631,
"end": 686,
"name": "MLOAD",
"source": 1
},
{
"begin": 631,
"end": 686,
"name": "DUP1",
"source": 1
},
{
"begin": 631,
"end": 686,
"name": "SWAP2",
"source": 1
},
{
"begin": 631,
"end": 686,
"name": "SUB",
"source": 1
},
{
"begin": 631,
"end": 686,
"name": "SWAP1",
"source": 1
},
{
"begin": 631,
"end": 686,
"name": "RETURN",
"source": 1
},
{
"begin": 1097,
"end": 1185,
"name": "tag",
"source": 1,
"value": "9"
},
{
"begin": 1097,
"end": 1185,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1137,
"end": 1144,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1163,
"end": 1178,
"name": "DUP1",
"source": 1
},
{
"begin": 1163,
"end": 1178,
"name": "SLOAD",
"source": 1
},
{
"begin": 1156,
"end": 1178,
"name": "SWAP1",
"source": 1
},
{
"begin": 1156,
"end": 1178,
"name": "POP",
"source": 1
},
{
"begin": 1097,
"end": 1185,
"name": "SWAP1",
"source": 1
},
{
"begin": 1097,
"end": 1185,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 241,
"end": 341,
"name": "tag",
"source": 0,
"value": "15"
},
{
"begin": 241,
"end": 341,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 333,
"end": 334,
"name": "PUSH",
"source": 0,
"value": "5"
},
{
"begin": 320,
"end": 330,
"name": "DUP2",
"source": 0
},
{
"begin": 320,
"end": 334,
"name": "PUSH [tag]",
"source": 0,
"value": "32"
},
{
"begin": 320,
"end": 334,
"name": "SWAP2",
"source": 0
},
{
"begin": 320,
"end": 334,
"name": "SWAP1",
"source": 0
},
{
"begin": 320,
"end": 334,
"name": "PUSH [tag]",
"source": 0,
"value": "33"
},
{
"begin": 320,
"end": 334,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 320,
"end": 334,
"name": "tag",
"source": 0,
"value": "32"
},
{
"begin": 320,
"end": 334,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 302,
"end": 317,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 302,
"end": 334,
"name": "DUP2",
"source": 0
},
{
"begin": 302,
"end": 334,
"name": "SWAP1",
"source": 0
},
{
"begin": 302,
"end": 334,
"name": "SSTORE",
"source": 0
},
{
"begin": 302,
"end": 334,
"name": "POP",
"source": 0
},
{
"begin": 241,
"end": 341,
"name": "POP",
"source": 0
},
{
"begin": 241,
"end": 341,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 1332,
"end": 1589,
"name": "tag",
"source": 1,
"value": "19"
},
{
"begin": 1332,
"end": 1589,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1415,
"end": 1438,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1441,
"end": 1493,
"name": "PUSH",
"source": 1,
"value": "40"
},
{
"begin": 1441,
"end": 1493,
"name": "MLOAD",
"source": 1
},
{
"begin": 1441,
"end": 1493,
"name": "DUP1",
"source": 1
},
{
"begin": 1441,
"end": 1493,
"name": "PUSH",
"source": 1,
"value": "40"
},
{
"begin": 1441,
"end": 1493,
"name": "ADD",
"source": 1
},
{
"begin": 1441,
"end": 1493,
"name": "PUSH",
"source": 1,
"value": "40"
},
{
"begin": 1441,
"end": 1493,
"name": "MSTORE",
"source": 1
},
{
"begin": 1441,
"end": 1493,
"name": "DUP1",
"source": 1
},
{
"begin": 1461,
"end": 1477,
"name": "DUP4",
"source": 1
},
{
"begin": 1441,
"end": 1493,
"name": "DUP2",
"source": 1
},
{
"begin": 1441,
"end": 1493,
"name": "MSTORE",
"source": 1
},
{
"begin": 1441,
"end": 1493,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 1441,
"end": 1493,
"name": "ADD",
"source": 1
},
{
"begin": 1485,
"end": 1490,
"name": "DUP5",
"source": 1
},
{
"begin": 1441,
"end": 1493,
"name": "DUP2",
"source": 1
},
{
"begin": 1441,
"end": 1493,
"name": "MSTORE",
"source": 1
},
{
"begin": 1441,
"end": 1493,
"name": "POP",
"source": 1
},
{
"begin": 1415,
"end": 1493,
"name": "SWAP1",
"source": 1
},
{
"begin": 1415,
"end": 1493,
"name": "POP",
"source": 1
},
{
"begin": 1503,
"end": 1509,
"name": "PUSH",
"source": 1,
"value": "2"
},
{
"begin": 1515,
"end": 1524,
"name": "DUP2",
"source": 1
},
{
"begin": 1503,
"end": 1525,
"name": "SWAP1",
"source": 1
},
{
"begin": 1503,
"end": 1525,
"name": "DUP1",
"source": 1
},
{
"begin": 1503,
"end": 1525,
"name": "PUSH",
"source": 1,
"value": "1"
},
{
"begin": 1503,
"end": 1525,
"name": "DUP2",
"source": 1
},
{
"begin": 1503,
"end": 1525,
"name": "SLOAD",
"source": 1
},
{
"begin": 1503,
"end": 1525,
"name": "ADD",
"source": 1
},
{
"begin": 1503,
"end": 1525,
"name": "DUP1",
"source": 1
},
{
"begin": 1503,
"end": 1525,
"name": "DUP3",
"source": 1
},
{
"begin": 1503,
"end": 1525,
"name": "SSTORE",
"source": 1
},
{
"begin": 1503,
"end": 1525,
"name": "DUP1",
"source": 1
},
{
"begin": 1503,
"end": 1525,
"name": "SWAP2",
"source": 1
},
{
"begin": 1503,
"end": 1525,
"name": "POP",
"source": 1
},
{
"begin": 1503,
"end": 1525,
"name": "POP",
"source": 1
},
{
"begin": 1503,
"end": 1525,
"name": "PUSH",
"source": 1,
"value": "1"
},
{
"begin": 1503,
"end": 1525,
"name": "SWAP1",
"source": 1
},
{
"begin": 1503,
"end": 1525,
"name": "SUB",
"source": 1
},
{
"begin": 1503,
"end": 1525,
"name": "SWAP1",
"source": 1
},
{
"begin": 1503,
"end": 1525,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1503,
"end": 1525,
"name": "MSTORE",
"source": 1
},
{
"begin": 1503,
"end": 1525,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 1503,
"end": 1525,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1503,
"end": 1525,
"name": "KECCAK256",
"source": 1
},
{
"begin": 1503,
"end": 1525,
"name": "SWAP1",
"source": 1
},
{
"begin": 1503,
"end": 1525,
"name": "PUSH",
"source": 1,
"value": "2"
},
{
"begin": 1503,
"end": 1525,
"name": "MUL",
"source": 1
},
{
"begin": 1503,
"end": 1525,
"name": "ADD",
"source": 1
},
{
"begin": 1503,
"end": 1525,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1503,
"end": 1525,
"name": "SWAP1",
"source": 1
},
{
"begin": 1503,
"end": 1525,
"name": "SWAP2",
"source": 1
},
{
"begin": 1503,
"end": 1525,
"name": "SWAP1",
"source": 1
},
{
"begin": 1503,
"end": 1525,
"name": "SWAP2",
"source": 1
},
{
"begin": 1503,
"end": 1525,
"name": "SWAP1",
"source": 1
},
{
"begin": 1503,
"end": 1525,
"name": "SWAP2",
"source": 1
},
{
"begin": 1503,
"end": 1525,
"name": "POP",
"source": 1
},
{
"begin": 1503,
"end": 1525,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1503,
"end": 1525,
"name": "DUP3",
"source": 1
},
{
"begin": 1503,
"end": 1525,
"name": "ADD",
"source": 1
},
{
"begin": 1503,
"end": 1525,
"name": "MLOAD",
"source": 1
},
{
"begin": 1503,
"end": 1525,
"name": "DUP2",
"source": 1
},
{
"begin": 1503,
"end": 1525,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1503,
"end": 1525,
"name": "ADD",
"source": 1
},
{
"begin": 1503,
"end": 1525,
"name": "SSTORE",
"source": 1
},
{
"begin": 1503,
"end": 1525,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 1503,
"end": 1525,
"name": "DUP3",
"source": 1
},
{
"begin": 1503,
"end": 1525,
"name": "ADD",
"source": 1
},
{
"begin": 1503,
"end": 1525,
"name": "MLOAD",
"source": 1
},
{
"begin": 1503,
"end": 1525,
"name": "DUP2",
"source": 1
},
{
"begin": 1503,
"end": 1525,
"name": "PUSH",
"source": 1,
"value": "1"
},
{
"begin": 1503,
"end": 1525,
"name": "ADD",
"source": 1
},
{
"begin": 1503,
"end": 1525,
"name": "SWAP1",
"source": 1
},
{
"begin": 1503,
"end": 1525,
"name": "DUP1",
"source": 1
},
{
"begin": 1503,
"end": 1525,
"name": "MLOAD",
"source": 1
},
{
"begin": 1503,
"end": 1525,
"name": "SWAP1",
"source": 1
},
{
"begin": 1503,
"end": 1525,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 1503,
"end": 1525,
"name": "ADD",
"source": 1
},
{
"begin": 1503,
"end": 1525,
"name": "SWAP1",
"source": 1
},
{
"begin": 1503,
"end": 1525,
"name": "PUSH [tag]",
"source": 1,
"value": "36"
},
{
"begin": 1503,
"end": 1525,
"name": "SWAP3",
"source": 1
},
{
"begin": 1503,
"end": 1525,
"name": "SWAP2",
"source": 1
},
{
"begin": 1503,
"end": 1525,
"name": "SWAP1",
"source": 1
},
{
"begin": 1503,
"end": 1525,
"name": "PUSH [tag]",
"source": 1,
"value": "37"
},
{
"begin": 1503,
"end": 1525,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 1503,
"end": 1525,
"name": "tag",
"source": 1,
"value": "36"
},
{
"begin": 1503,
"end": 1525,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1503,
"end": 1525,
"name": "POP",
"source": 1
},
{
"begin": 1503,
"end": 1525,
"name": "POP",
"source": 1
},
{
"begin": 1503,
"end": 1525,
"name": "POP",
"source": 1
},
{
"begin": 1566,
"end": 1582,
"name": "DUP2",
"source": 1
},
{
"begin": 1535,
"end": 1556,
"name": "PUSH",
"source": 1,
"value": "1"
},
{
"begin": 1557,
"end": 1562,
"name": "DUP5",
"source": 1
},
{
"begin": 1535,
"end": 1563,
"name": "PUSH",
"source": 1,
"value": "40"
},
{
"begin": 1535,
"end": 1563,
"name": "MLOAD",
"source": 1
},
{
"begin": 1535,
"end": 1563,
"name": "PUSH [tag]",
"source": 1,
"value": "38"
},
{
"begin": 1535,
"end": 1563,
"name": "SWAP2",
"source": 1
},
{
"begin": 1535,
"end": 1563,
"name": "SWAP1",
"source": 1
},
{
"begin": 1535,
"end": 1563,
"name": "PUSH [tag]",
"source": 1,
"value": "39"
},
{
"begin": 1535,
"end": 1563,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 1535,
"end": 1563,
"name": "tag",
"source": 1,
"value": "38"
},
{
"begin": 1535,
"end": 1563,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1535,
"end": 1563,
"name": "SWAP1",
"source": 1
},
{
"begin": 1535,
"end": 1563,
"name": "DUP2",
"source": 1
},
{
"begin": 1535,
"end": 1563,
"name": "MSTORE",
"source": 1
},
{
"begin": 1535,
"end": 1563,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 1535,
"end": 1563,
"name": "ADD",
"source": 1
},
{
"begin": 1535,
"end": 1563,
"name": "PUSH",
"source": 1,
"value": "40"
},
{
"begin": 1535,
"end": 1563,
"name": "MLOAD",
"source": 1
},
{
"begin": 1535,
"end": 1563,
"name": "DUP1",
"source": 1
},
{
"begin": 1535,
"end": 1563,
"name": "SWAP2",
"source": 1
},
{
"begin": 1535,
"end": 1563,
"name": "SUB",
"source": 1
},
{
"begin": 1535,
"end": 1563,
"name": "SWAP1",
"source": 1
},
{
"begin": 1535,
"end": 1563,
"name": "KECCAK256",
"source": 1
},
{
"begin": 1535,
"end": 1582,
"name": "DUP2",
"source": 1
},
{
"begin": 1535,
"end": 1582,
"name": "SWAP1",
"source": 1
},
{
"begin": 1535,
"end": 1582,
"name": "SSTORE",
"source": 1
},
{
"begin": 1535,
"end": 1582,
"name": "POP",
"source": 1
},
{
"begin": 1405,
"end": 1589,
"name": "POP",
"source": 1
},
{
"begin": 1332,
"end": 1589,
"name": "POP",
"source": 1
},
{
"begin": 1332,
"end": 1589,
"name": "POP",
"source": 1
},
{
"begin": 1332,
"end": 1589,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 778,
"end": 800,
"name": "tag",
"source": 1,
"value": "22"
},
{
"begin": 778,
"end": 800,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "PUSH",
"source": 1,
"value": "2"
},
{
"begin": 778,
"end": 800,
"name": "DUP2",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "DUP2",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "SLOAD",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "DUP2",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "LT",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "PUSH [tag]",
"source": 1,
"value": "40"
},
{
"begin": 778,
"end": 800,
"name": "JUMPI",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 778,
"end": 800,
"name": "DUP1",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "REVERT",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "tag",
"source": 1,
"value": "40"
},
{
"begin": 778,
"end": 800,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "SWAP1",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 778,
"end": 800,
"name": "MSTORE",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 778,
"end": 800,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 778,
"end": 800,
"name": "KECCAK256",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "SWAP1",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "PUSH",
"source": 1,
"value": "2"
},
{
"begin": 778,
"end": 800,
"name": "MUL",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "ADD",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 778,
"end": 800,
"name": "SWAP2",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "POP",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "SWAP1",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "POP",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "DUP1",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 778,
"end": 800,
"name": "ADD",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "SLOAD",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "SWAP1",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "DUP1",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "PUSH",
"source": 1,
"value": "1"
},
{
"begin": 778,
"end": 800,
"name": "ADD",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "DUP1",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "SLOAD",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "PUSH [tag]",
"source": 1,
"value": "42"
},
{
"begin": 778,
"end": 800,
"name": "SWAP1",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "PUSH [tag]",
"source": 1,
"value": "43"
},
{
"begin": 778,
"end": 800,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 778,
"end": 800,
"name": "tag",
"source": 1,
"value": "42"
},
{
"begin": 778,
"end": 800,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "DUP1",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "PUSH",
"source": 1,
"value": "1F"
},
{
"begin": 778,
"end": 800,
"name": "ADD",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 778,
"end": 800,
"name": "DUP1",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "SWAP2",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "DIV",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "MUL",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 778,
"end": 800,
"name": "ADD",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "PUSH",
"source": 1,
"value": "40"
},
{
"begin": 778,
"end": 800,
"name": "MLOAD",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "SWAP1",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "DUP2",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "ADD",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "PUSH",
"source": 1,
"value": "40"
},
{
"begin": 778,
"end": 800,
"name": "MSTORE",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "DUP1",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "SWAP3",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "SWAP2",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "SWAP1",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "DUP2",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "DUP2",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "MSTORE",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 778,
"end": 800,
"name": "ADD",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "DUP3",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "DUP1",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "SLOAD",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "PUSH [tag]",
"source": 1,
"value": "44"
},
{
"begin": 778,
"end": 800,
"name": "SWAP1",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "PUSH [tag]",
"source": 1,
"value": "43"
},
{
"begin": 778,
"end": 800,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 778,
"end": 800,
"name": "tag",
"source": 1,
"value": "44"
},
{
"begin": 778,
"end": 800,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "DUP1",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "ISZERO",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "PUSH [tag]",
"source": 1,
"value": "45"
},
{
"begin": 778,
"end": 800,
"name": "JUMPI",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "DUP1",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "PUSH",
"source": 1,
"value": "1F"
},
{
"begin": 778,
"end": 800,
"name": "LT",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "PUSH [tag]",
"source": 1,
"value": "46"
},
{
"begin": 778,
"end": 800,
"name": "JUMPI",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "PUSH",
"source": 1,
"value": "100"
},
{
"begin": 778,
"end": 800,
"name": "DUP1",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "DUP4",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "SLOAD",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "DIV",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "MUL",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "DUP4",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "MSTORE",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "SWAP2",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 778,
"end": 800,
"name": "ADD",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "SWAP2",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "PUSH [tag]",
"source": 1,
"value": "45"
},
{
"begin": 778,
"end": 800,
"name": "JUMP",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "tag",
"source": 1,
"value": "46"
},
{
"begin": 778,
"end": 800,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "DUP3",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "ADD",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "SWAP2",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "SWAP1",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 778,
"end": 800,
"name": "MSTORE",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 778,
"end": 800,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 778,
"end": 800,
"name": "KECCAK256",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "SWAP1",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "tag",
"source": 1,
"value": "47"
},
{
"begin": 778,
"end": 800,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "DUP2",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "SLOAD",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "DUP2",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "MSTORE",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "SWAP1",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "PUSH",
"source": 1,
"value": "1"
},
{
"begin": 778,
"end": 800,
"name": "ADD",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "SWAP1",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 778,
"end": 800,
"name": "ADD",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "DUP1",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "DUP4",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "GT",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "PUSH [tag]",
"source": 1,
"value": "47"
},
{
"begin": 778,
"end": 800,
"name": "JUMPI",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "DUP3",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "SWAP1",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "SUB",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "PUSH",
"source": 1,
"value": "1F"
},
{
"begin": 778,
"end": 800,
"name": "AND",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "DUP3",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "ADD",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "SWAP2",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "tag",
"source": 1,
"value": "45"
},
{
"begin": 778,
"end": 800,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "POP",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "POP",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "POP",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "POP",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "POP",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "SWAP1",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "POP",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "DUP3",
"source": 1
},
{
"begin": 778,
"end": 800,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 631,
"end": 686,
"name": "tag",
"source": 1,
"value": "28"
},
{
"begin": 631,
"end": 686,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 631,
"end": 686,
"name": "PUSH",
"source": 1,
"value": "1"
},
{
"begin": 631,
"end": 686,
"name": "DUP2",
"source": 1
},
{
"begin": 631,
"end": 686,
"name": "DUP1",
"source": 1
},
{
"begin": 631,
"end": 686,
"name": "MLOAD",
"source": 1
},
{
"begin": 631,
"end": 686,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 631,
"end": 686,
"name": "DUP2",
"source": 1
},
{
"begin": 631,
"end": 686,
"name": "ADD",
"source": 1
},
{
"begin": 631,
"end": 686,
"name": "DUP3",
"source": 1
},
{
"begin": 631,
"end": 686,
"name": "ADD",
"source": 1
},
{
"begin": 631,
"end": 686,
"name": "DUP1",
"source": 1
},
{
"begin": 631,
"end": 686,
"name": "MLOAD",
"source": 1
},
{
"begin": 631,
"end": 686,
"name": "DUP5",
"source": 1
},
{
"begin": 631,
"end": 686,
"name": "DUP3",
"source": 1
},
{
"begin": 631,
"end": 686,
"name": "MSTORE",
"source": 1
},
{
"begin": 631,
"end": 686,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 631,
"end": 686,
"name": "DUP4",
"source": 1
},
{
"begin": 631,
"end": 686,
"name": "ADD",
"source": 1
},
{
"begin": 631,
"end": 686,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 631,
"end": 686,
"name": "DUP6",
"source": 1
},
{
"begin": 631,
"end": 686,
"name": "ADD",
"source": 1
},
{
"begin": 631,
"end": 686,
"name": "KECCAK256",
"source": 1
},
{
"begin": 631,
"end": 686,
"name": "DUP2",
"source": 1
},
{
"begin": 631,
"end": 686,
"name": "DUP4",
"source": 1
},
{
"begin": 631,
"end": 686,
"name": "MSTORE",
"source": 1
},
{
"begin": 631,
"end": 686,
"name": "DUP1",
"source": 1
},
{
"begin": 631,
"end": 686,
"name": "SWAP6",
"source": 1
},
{
"begin": 631,
"end": 686,
"name": "POP",
"source": 1
},
{
"begin": 631,
"end": 686,
"name": "POP",
"source": 1
},
{
"begin": 631,
"end": 686,
"name": "POP",
"source": 1
},
{
"begin": 631,
"end": 686,
"name": "POP",
"source": 1
},
{
"begin": 631,
"end": 686,
"name": "POP",
"source": 1
},
{
"begin": 631,
"end": 686,
"name": "POP",
"source": 1
},
{
"begin": 631,
"end": 686,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 631,
"end": 686,
"name": "SWAP2",
"source": 1
},
{
"begin": 631,
"end": 686,
"name": "POP",
"source": 1
},
{
"begin": 631,
"end": 686,
"name": "SWAP1",
"source": 1
},
{
"begin": 631,
"end": 686,
"name": "POP",
"source": 1
},
{
"begin": 631,
"end": 686,
"name": "SLOAD",
"source": 1
},
{
"begin": 631,
"end": 686,
"name": "DUP2",
"source": 1
},
{
"begin": 631,
"end": 686,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": -1,
"end": -1,
"name": "tag",
"source": -1,
"value": "37"
},
{
"begin": -1,
"end": -1,
"name": "JUMPDEST",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "DUP3",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "DUP1",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SLOAD",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH [tag]",
"source": -1,
"value": "48"
},
{
"begin": -1,
"end": -1,
"name": "SWAP1",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH [tag]",
"source": -1,
"value": "43"
},
{
"begin": -1,
"end": -1,
"name": "JUMP",
"source": -1,
"value": "[in]"
},
{
"begin": -1,
"end": -1,
"name": "tag",
"source": -1,
"value": "48"
},
{
"begin": -1,
"end": -1,
"name": "JUMPDEST",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SWAP1",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "0"
},
{
"begin": -1,
"end": -1,
"name": "MSTORE",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "20"
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "0"
},
{
"begin": -1,
"end": -1,
"name": "KECCAK256",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SWAP1",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "1F"
},
{
"begin": -1,
"end": -1,
"name": "ADD",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "20"
},
{
"begin": -1,
"end": -1,
"name": "SWAP1",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "DIV",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "DUP2",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "ADD",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SWAP3",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "DUP3",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH [tag]",
"source": -1,
"value": "50"
},
{
"begin": -1,
"end": -1,
"name": "JUMPI",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "0"
},
{
"begin": -1,
"end": -1,
"name": "DUP6",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SSTORE",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH [tag]",
"source": -1,
"value": "49"
},
{
"begin": -1,
"end": -1,
"name": "JUMP",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "tag",
"source": -1,
"value": "50"
},
{
"begin": -1,
"end": -1,
"name": "JUMPDEST",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "DUP3",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "1F"
},
{
"begin": -1,
"end": -1,
"name": "LT",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH [tag]",
"source": -1,
"value": "51"
},
{
"begin": -1,
"end": -1,
"name": "JUMPI",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "DUP1",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "MLOAD",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "FF"
},
{
"begin": -1,
"end": -1,
"name": "NOT",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "AND",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "DUP4",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "DUP1",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "ADD",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "OR",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "DUP6",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SSTORE",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH [tag]",
"source": -1,
"value": "49"
},
{
"begin": -1,
"end": -1,
"name": "JUMP",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "tag",
"source": -1,
"value": "51"
},
{
"begin": -1,
"end": -1,
"name": "JUMPDEST",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "DUP3",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "DUP1",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "ADD",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "1"
},
{
"begin": -1,
"end": -1,
"name": "ADD",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "DUP6",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SSTORE",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "DUP3",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "ISZERO",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH [tag]",
"source": -1,
"value": "49"
},
{
"begin": -1,
"end": -1,
"name": "JUMPI",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SWAP2",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "DUP3",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "ADD",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "tag",
"source": -1,
"value": "52"
},
{
"begin": -1,
"end": -1,
"name": "JUMPDEST",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "DUP3",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "DUP2",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "GT",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "ISZERO",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH [tag]",
"source": -1,
"value": "53"
},
{
"begin": -1,
"end": -1,
"name": "JUMPI",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "DUP3",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "MLOAD",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "DUP3",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SSTORE",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SWAP2",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "20"
},
{
"begin": -1,
"end": -1,
"name": "ADD",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SWAP2",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SWAP1",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "1"
},
{
"begin": -1,
"end": -1,
"name": "ADD",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SWAP1",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH [tag]",
"source": -1,
"value": "52"
},
{
"begin": -1,
"end": -1,
"name": "JUMP",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "tag",
"source": -1,
"value": "53"
},
{
"begin": -1,
"end": -1,
"name": "JUMPDEST",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "tag",
"source": -1,
"value": "49"
},
{
"begin": -1,
"end": -1,
"name": "JUMPDEST",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SWAP1",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH [tag]",
"source": -1,
"value": "54"
},
{
"begin": -1,
"end": -1,
"name": "SWAP2",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SWAP1",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH [tag]",
"source": -1,
"value": "55"
},
{
"begin": -1,
"end": -1,
"name": "JUMP",
"source": -1,
"value": "[in]"
},
{
"begin": -1,
"end": -1,
"name": "tag",
"source": -1,
"value": "54"
},
{
"begin": -1,
"end": -1,
"name": "JUMPDEST",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SWAP1",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "JUMP",
"source": -1,
"value": "[out]"
},
{
"begin": -1,
"end": -1,
"name": "tag",
"source": -1,
"value": "55"
},
{
"begin": -1,
"end": -1,
"name": "JUMPDEST",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "tag",
"source": -1,
"value": "56"
},
{
"begin": -1,
"end": -1,
"name": "JUMPDEST",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "DUP1",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "DUP3",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "GT",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "ISZERO",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH [tag]",
"source": -1,
"value": "57"
},
{
"begin": -1,
"end": -1,
"name": "JUMPI",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "0"
},
{
"begin": -1,
"end": -1,
"name": "DUP2",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "0"
},
{
"begin": -1,
"end": -1,
"name": "SWAP1",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SSTORE",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "1"
},
{
"begin": -1,
"end": -1,
"name": "ADD",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH [tag]",
"source": -1,
"value": "56"
},
{
"begin": -1,
"end": -1,
"name": "JUMP",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "tag",
"source": -1,
"value": "57"
},
{
"begin": -1,
"end": -1,
"name": "JUMPDEST",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SWAP1",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "JUMP",
"source": -1,
"value": "[out]"
},
{
"begin": 7,
"end": 419,
"name": "tag",
"source": 2,
"value": "59"
},
{
"begin": 7,
"end": 419,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 85,
"end": 90,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 110,
"end": 176,
"name": "PUSH [tag]",
"source": 2,
"value": "61"
},
{
"begin": 126,
"end": 175,
"name": "PUSH [tag]",
"source": 2,
"value": "62"
},
{
"begin": 168,
"end": 174,
"name": "DUP5",
"source": 2
},
{
"begin": 126,
"end": 175,
"name": "PUSH [tag]",
"source": 2,
"value": "63"
},
{
"begin": 126,
"end": 175,
"name": "JUMP",
"source": 2,
"value": "[in]"
},
{
"begin": 126,
"end": 175,
"name": "tag",
"source": 2,
"value": "62"
},
{
"begin": 126,
"end": 175,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 110,
"end": 176,
"name": "PUSH [tag]",
"source": 2,
"value": "64"
},
{
"begin": 110,
"end": 176,
"name": "JUMP",
"source": 2,
"value": "[in]"
},
{
"begin": 110,
"end": 176,
"name": "tag",
"source": 2,
"value": "61"
},
{
"begin": 110,
"end": 176,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 101,
"end": 176,
"name": "SWAP1",
"source": 2
},
{
"begin": 101,
"end": 176,
"name": "POP",
"source": 2
},
{
"begin": 199,
"end": 205,
"name": "DUP3",
"source": 2
},
{
"begin": 192,
"end": 197,
"name": "DUP2",
"source": 2
},
{
"begin": 185,
"end": 206,
"name": "MSTORE",
"source": 2
},
{
"begin": 237,
"end": 241,
"name": "PUSH",
"source": 2,
"value": "20"
},
{
"begin": 230,
"end": 235,
"name": "DUP2",
"source": 2
},
{
"begin": 226,
"end": 242,
"name": "ADD",
"source": 2
},
{
"begin": 275,
"end": 278,
"name": "DUP5",
"source": 2
},
{
"begin": 266,
"end": 272,
"name": "DUP5",
"source": 2
},
{
"begin": 261,
"end": 264,
"name": "DUP5",
"source": 2
},
{
"begin": 257,
"end": 273,
"name": "ADD",
"source": 2
},
{
"begin": 254,
"end": 279,
"name": "GT",
"source": 2
},
{
"begin": 251,
"end": 363,
"name": "ISZERO",
"source": 2
},
{
"begin": 251,
"end": 363,
"name": "PUSH [tag]",
"source": 2,
"value": "65"
},
{
"begin": 251,
"end": 363,
"name": "JUMPI",
"source": 2
},
{
"begin": 282,
"end": 361,
"name": "PUSH [tag]",
"source": 2,
"value": "66"
},
{
"begin": 282,
"end": 361,
"name": "PUSH [tag]",
"source": 2,
"value": "67"
},
{
"begin": 282,
"end": 361,
"name": "JUMP",
"source": 2,
"value": "[in]"
},
{
"begin": 282,
"end": 361,
"name": "tag",
"source": 2,
"value": "66"
},
{
"begin": 282,
"end": 361,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 251,
"end": 363,
"name": "tag",
"source": 2,
"value": "65"
},
{
"begin": 251,
"end": 363,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 372,
"end": 413,
"name": "PUSH [tag]",
"source": 2,
"value": "68"
},
{
"begin": 406,
"end": 412,
"name": "DUP5",
"source": 2
},
{
"begin": 401,
"end": 404,
"name": "DUP3",
"source": 2
},
{
"begin": 396,
"end": 399,
"name": "DUP6",
"source": 2
},
{
"begin": 372,
"end": 413,
"name": "PUSH [tag]",
"source": 2,
"value": "69"
},
{
"begin": 372,
"end": 413,
"name": "JUMP",
"source": 2,
"value": "[in]"
},
{
"begin": 372,
"end": 413,
"name": "tag",
"source": 2,
"value": "68"
},
{
"begin": 372,
"end": 413,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 91,
"end": 419,
"name": "POP",
"source": 2
},
{
"begin": 7,
"end": 419,
"name": "SWAP4",
"source": 2
},
{
"begin": 7,
"end": 419,
"name": "SWAP3",
"source": 2
},
{
"begin": 7,
"end": 419,
"name": "POP",
"source": 2
},
{
"begin": 7,
"end": 419,
"name": "POP",
"source": 2
},
{
"begin": 7,
"end": 419,
"name": "POP",
"source": 2
},
{
"begin": 7,
"end": 419,
"name": "JUMP",
"source": 2,
"value": "[out]"
},
{
"begin": 439,
"end": 779,
"name": "tag",
"source": 2,
"value": "70"
},
{
"begin": 439,
"end": 779,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 495,
"end": 500,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 544,
"end": 547,
"name": "DUP3",
"source": 2
},
{
"begin": 537,
"end": 541,
"name": "PUSH",
"source": 2,
"value": "1F"
},
{
"begin": 529,
"end": 535,
"name": "DUP4",
"source": 2
},
{
"begin": 525,
"end": 542,
"name": "ADD",
"source": 2
},
{
"begin": 521,
"end": 548,
"name": "SLT",
"source": 2
},
{
"begin": 511,
"end": 633,
"name": "PUSH [tag]",
"source": 2,
"value": "72"
},
{
"begin": 511,
"end": 633,
"name": "JUMPI",
"source": 2
},
{
"begin": 552,
"end": 631,
"name": "PUSH [tag]",
"source": 2,
"value": "73"
},
{
"begin": 552,
"end": 631,
"name": "PUSH [tag]",
"source": 2,
"value": "74"
},
{
"begin": 552,
"end": 631,
"name": "JUMP",
"source": 2,
"value": "[in]"
},
{
"begin": 552,
"end": 631,
"name": "tag",
"source": 2,
"value": "73"
},
{
"begin": 552,
"end": 631,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 511,
"end": 633,
"name": "tag",
"source": 2,
"value": "72"
},
{
"begin": 511,
"end": 633,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 669,
"end": 675,
"name": "DUP2",
"source": 2
},
{
"begin": 656,
"end": 676,
"name": "CALLDATALOAD",
"source": 2
},
{
"begin": 694,
"end": 773,
"name": "PUSH [tag]",
"source": 2,
"value": "75"
},
{
"begin": 769,
"end": 772,
"name": "DUP5",
"source": 2
},
{
"begin": 761,
"end": 767,
"name": "DUP3",
"source": 2
},
{
"begin": 754,
"end": 758,
"name": "PUSH",
"source": 2,
"value": "20"
},
{
"begin": 746,
"end": 752,
"name": "DUP7",
"source": 2
},
{
"begin": 742,
"end": 759,
"name": "ADD",
"source": 2
},
{
"begin": 694,
"end": 773,
"name": "PUSH [tag]",
"source": 2,
"value": "59"
},
{
"begin": 694,
"end": 773,
"name": "JUMP",
"source": 2,
"value": "[in]"
},
{
"begin": 694,
"end": 773,
"name": "tag",
"source": 2,
"value": "75"
},
{
"begin": 694,
"end": 773,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 685,
"end": 773,
"name": "SWAP2",
"source": 2
},
{
"begin": 685,
"end": 773,
"name": "POP",
"source": 2
},
{
"begin": 501,
"end": 779,
"name": "POP",
"source": 2
},
{
"begin": 439,
"end": 779,
"name": "SWAP3",
"source": 2
},
{
"begin": 439,
"end": 779,
"name": "SWAP2",
"source": 2
},
{
"begin": 439,
"end": 779,
"name": "POP",
"source": 2
},
{
"begin": 439,
"end": 779,
"name": "POP",
"source": 2
},
{
"begin": 439,
"end": 779,
"name": "JUMP",
"source": 2,
"value": "[out]"
},
{
"begin": 785,
"end": 924,
"name": "tag",
"source": 2,
"value": "76"
},
{
"begin": 785,
"end": 924,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 831,
"end": 836,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 869,
"end": 875,
"name": "DUP2",
"source": 2
},
{
"begin": 856,
"end": 876,
"name": "CALLDATALOAD",
"source": 2
},
{
"begin": 847,
"end": 876,
"name": "SWAP1",
"source": 2
},
{
"begin": 847,
"end": 876,
"name": "POP",
"source": 2
},
{
"begin": 885,
"end": 918,
"name": "PUSH [tag]",
"source": 2,
"value": "78"
},
{
"begin": 912,
"end": 917,
"name": "DUP2",
"source": 2
},
{
"begin": 885,
"end": 918,
"name": "PUSH [tag]",
"source": 2,
"value": "79"
},
{
"begin": 885,
"end": 918,
"name": "JUMP",
"source": 2,
"value": "[in]"
},
{
"begin": 885,
"end": 918,
"name": "tag",
"source": 2,
"value": "78"
},
{
"begin": 885,
"end": 918,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 785,
"end": 924,
"name": "SWAP3",
"source": 2
},
{
"begin": 785,
"end": 924,
"name": "SWAP2",
"source": 2
},
{
"begin": 785,
"end": 924,
"name": "POP",
"source": 2
},
{
"begin": 785,
"end": 924,
"name": "POP",
"source": 2
},
{
"begin": 785,
"end": 924,
"name": "JUMP",
"source": 2,
"value": "[out]"
},
{
"begin": 930,
"end": 1439,
"name": "tag",
"source": 2,
"value": "27"
},
{
"begin": 930,
"end": 1439,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 999,
"end": 1005,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 1048,
"end": 1050,
"name": "PUSH",
"source": 2,
"value": "20"
},
{
"begin": 1036,
"end": 1045,
"name": "DUP3",
"source": 2
},
{
"begin": 1027,
"end": 1034,
"name": "DUP5",
"source": 2
},
{
"begin": 1023,
"end": 1046,
"name": "SUB",
"source": 2
},
{
"begin": 1019,
"end": 1051,
"name": "SLT",
"source": 2
},
{
"begin": 1016,
"end": 1135,
"name": "ISZERO",
"source": 2
},
{
"begin": 1016,
"end": 1135,
"name": "PUSH [tag]",
"source": 2,
"value": "81"
},
{
"begin": 1016,
"end": 1135,
"name": "JUMPI",
"source": 2
},
{
"begin": 1054,
"end": 1133,
"name": "PUSH [tag]",
"source": 2,
"value": "82"
},
{
"begin": 1054,
"end": 1133,
"name": "PUSH [tag]",
"source": 2,
"value": "83"
},
{
"begin": 1054,
"end": 1133,
"name": "JUMP",
"source": 2,
"value": "[in]"
},
{
"begin": 1054,
"end": 1133,
"name": "tag",
"source": 2,
"value": "82"
},
{
"begin": 1054,
"end": 1133,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 1016,
"end": 1135,
"name": "tag",
"source": 2,
"value": "81"
},
{
"begin": 1016,
"end": 1135,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 1202,
"end": 1203,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 1191,
"end": 1200,
"name": "DUP3",
"source": 2
},
{
"begin": 1187,
"end": 1204,
"name": "ADD",
"source": 2
},
{
"begin": 1174,
"end": 1205,
"name": "CALLDATALOAD",
"source": 2
},
{
"begin": 1232,
"end": 1250,
"name": "PUSH",
"source": 2,
"value": "FFFFFFFFFFFFFFFF"
},
{
"begin": 1224,
"end": 1230,
"name": "DUP2",
"source": 2
},
{
"begin": 1221,
"end": 1251,
"name": "GT",
"source": 2
},
{
"begin": 1218,
"end": 1335,
"name": "ISZERO",
"source": 2
},
{
"begin": 1218,
"end": 1335,
"name": "PUSH [tag]",
"source": 2,
"value": "84"
},
{
"begin": 1218,
"end": 1335,
"name": "JUMPI",
"source": 2
},
{
"begin": 1254,
"end": 1333,
"name": "PUSH [tag]",
"source": 2,
"value": "85"
},
{
"begin": 1254,
"end": 1333,
"name": "PUSH [tag]",
"source": 2,
"value": "86"
},
{
"begin": 1254,
"end": 1333,
"name": "JUMP",
"source": 2,
"value": "[in]"
},
{
"begin": 1254,
"end": 1333,
"name": "tag",
"source": 2,
"value": "85"
},
{
"begin": 1254,
"end": 1333,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 1218,
"end": 1335,
"name": "tag",
"source": 2,
"value": "84"
},
{
"begin": 1218,
"end": 1335,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 1359,
"end": 1422,
"name": "PUSH [tag]",
"source": 2,
"value": "87"
},
{
"begin": 1414,
"end": 1421,
"name": "DUP5",
"source": 2
},
{
"begin": 1405,
"end": 1411,
"name": "DUP3",
"source": 2
},
{
"begin": 1394,
"end": 1403,
"name": "DUP6",
"source": 2
},
{
"begin": 1390,
"end": 1412,
"name": "ADD",
"source": 2
},
{
"begin": 1359,
"end": 1422,
"name": "PUSH [tag]",
"source": 2,
"value": "70"
},
{
"begin": 1359,
"end": 1422,
"name": "JUMP",
"source": 2,
"value": "[in]"
},
{
"begin": 1359,
"end": 1422,
"name": "tag",
"source": 2,
"value": "87"
},
{
"begin": 1359,
"end": 1422,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 1349,
"end": 1422,
"name": "SWAP2",
"source": 2
},
{
"begin": 1349,
"end": 1422,
"name": "POP",
"source": 2
},
{
"begin": 1145,
"end": 1432,
"name": "POP",
"source": 2
},
{
"begin": 930,
"end": 1439,
"name": "SWAP3",
"source": 2
},
{
"begin": 930,
"end": 1439,
"name": "SWAP2",
"source": 2
},
{
"begin": 930,
"end": 1439,
"name": "POP",
"source": 2
},
{
"begin": 930,
"end": 1439,
"name": "POP",
"source": 2
},
{
"begin": 930,
"end": 1439,
"name": "JUMP",
"source": 2,
"value": "[out]"
},
{
"begin": 1445,
"end": 2099,
"name": "tag",
"source": 2,
"value": "18"
},
{
"begin": 1445,
"end": 2099,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 1523,
"end": 1529,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 1531,
"end": 1537,
"name": "DUP1",
"source": 2
},
{
"begin": 1580,
"end": 1582,
"name": "PUSH",
"source": 2,
"value": "40"
},
{
"begin": 1568,
"end": 1577,
"name": "DUP4",
"source": 2
},
{
"begin": 1559,
"end": 1566,
"name": "DUP6",
"source": 2
},
{
"begin": 1555,
"end": 1578,
"name": "SUB",
"source": 2
},
{
"begin": 1551,
"end": 1583,
"name": "SLT",
"source": 2
},
{
"begin": 1548,
"end": 1667,
"name": "ISZERO",
"source": 2
},
{
"begin": 1548,
"end": 1667,
"name": "PUSH [tag]",
"source": 2,
"value": "89"
},
{
"begin": 1548,
"end": 1667,
"name": "JUMPI",
"source": 2
},
{
"begin": 1586,
"end": 1665,
"name": "PUSH [tag]",
"source": 2,
"value": "90"
},
{
"begin": 1586,
"end": 1665,
"name": "PUSH [tag]",
"source": 2,
"value": "83"
},
{
"begin": 1586,
"end": 1665,
"name": "JUMP",
"source": 2,
"value": "[in]"
},
{
"begin": 1586,
"end": 1665,
"name": "tag",
"source": 2,
"value": "90"
},
{
"begin": 1586,
"end": 1665,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 1548,
"end": 1667,
"name": "tag",
"source": 2,
"value": "89"
},
{
"begin": 1548,
"end": 1667,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 1734,
"end": 1735,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 1723,
"end": 1732,
"name": "DUP4",
"source": 2
},
{
"begin": 1719,
"end": 1736,
"name": "ADD",
"source": 2
},
{
"begin": 1706,
"end": 1737,
"name": "CALLDATALOAD",
"source": 2
},
{
"begin": 1764,
"end": 1782,
"name": "PUSH",
"source": 2,
"value": "FFFFFFFFFFFFFFFF"
},
{
"begin": 1756,
"end": 1762,
"name": "DUP2",
"source": 2
},
{
"begin": 1753,
"end": 1783,
"name": "GT",
"source": 2
},
{
"begin": 1750,
"end": 1867,
"name": "ISZERO",
"source": 2
},
{
"begin": 1750,
"end": 1867,
"name": "PUSH [tag]",
"source": 2,
"value": "91"
},
{
"begin": 1750,
"end": 1867,
"name": "JUMPI",
"source": 2
},
{
"begin": 1786,
"end": 1865,
"name": "PUSH [tag]",
"source": 2,
"value": "92"
},
{
"begin": 1786,
"end": 1865,
"name": "PUSH [tag]",
"source": 2,
"value": "86"
},
{
"begin": 1786,
"end": 1865,
"name": "JUMP",
"source": 2,
"value": "[in]"
},
{
"begin": 1786,
"end": 1865,
"name": "tag",
"source": 2,
"value": "92"
},
{
"begin": 1786,
"end": 1865,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 1750,
"end": 1867,
"name": "tag",
"source": 2,
"value": "91"
},
{
"begin": 1750,
"end": 1867,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 1891,
"end": 1954,
"name": "PUSH [tag]",
"source": 2,
"value": "93"
},
{
"begin": 1946,
"end": 1953,
"name": "DUP6",
"source": 2
},
{
"begin": 1937,
"end": 1943,
"name": "DUP3",
"source": 2
},
{
"begin": 1926,
"end": 1935,
"name": "DUP7",
"source": 2
},
{
"begin": 1922,
"end": 1944,
"name": "ADD",
"source": 2
},
{
"begin": 1891,
"end": 1954,
"name": "PUSH [tag]",
"source": 2,
"value": "70"
},
{
"begin": 1891,
"end": 1954,
"name": "JUMP",
"source": 2,
"value": "[in]"
},
{
"begin": 1891,
"end": 1954,
"name": "tag",
"source": 2,
"value": "93"
},
{
"begin": 1891,
"end": 1954,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 1881,
"end": 1954,
"name": "SWAP3",
"source": 2
},
{
"begin": 1881,
"end": 1954,
"name": "POP",
"source": 2
},
{
"begin": 1677,
"end": 1964,
"name": "POP",
"source": 2
},
{
"begin": 2003,
"end": 2005,
"name": "PUSH",
"source": 2,
"value": "20"
},
{
"begin": 2029,
"end": 2082,
"name": "PUSH [tag]",
"source": 2,
"value": "94"
},
{
"begin": 2074,
"end": 2081,
"name": "DUP6",
"source": 2
},
{
"begin": 2065,
"end": 2071,
"name": "DUP3",
"source": 2
},
{
"begin": 2054,
"end": 2063,
"name": "DUP7",
"source": 2
},
{
"begin": 2050,
"end": 2072,
"name": "ADD",
"source": 2
},
{
"begin": 2029,
"end": 2082,
"name": "PUSH [tag]",
"source": 2,
"value": "76"
},
{
"begin": 2029,
"end": 2082,
"name": "JUMP",
"source": 2,
"value": "[in]"
},
{
"begin": 2029,
"end": 2082,
"name": "tag",
"source": 2,
"value": "94"
},
{
"begin": 2029,
"end": 2082,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 2019,
"end": 2082,
"name": "SWAP2",
"source": 2
},
{
"begin": 2019,
"end": 2082,
"name": "POP",
"source": 2
},
{
"begin": 1974,
"end": 2092,
"name": "POP",
"source": 2
},
{
"begin": 1445,
"end": 2099,
"name": "SWAP3",
"source": 2
},
{
"begin": 1445,
"end": 2099,
"name": "POP",
"source": 2
},
{
"begin": 1445,
"end": 2099,
"name": "SWAP3",
"source": 2
},
{
"begin": 1445,
"end": 2099,
"name": "SWAP1",
"source": 2
},
{
"begin": 1445,
"end": 2099,
"name": "POP",
"source": 2
},
{
"begin": 1445,
"end": 2099,
"name": "JUMP",
"source": 2,
"value": "[out]"
},
{
"begin": 2105,
"end": 2434,
"name": "tag",
"source": 2,
"value": "14"
},
{
"begin": 2105,
"end": 2434,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 2164,
"end": 2170,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 2213,
"end": 2215,
"name": "PUSH",
"source": 2,
"value": "20"
},
{
"begin": 2201,
"end": 2210,
"name": "DUP3",
"source": 2
},
{
"begin": 2192,
"end": 2199,
"name": "DUP5",
"source": 2
},
{
"begin": 2188,
"end": 2211,
"name": "SUB",
"source": 2
},
{
"begin": 2184,
"end": 2216,
"name": "SLT",
"source": 2
},
{
"begin": 2181,
"end": 2300,
"name": "ISZERO",
"source": 2
},
{
"begin": 2181,
"end": 2300,
"name": "PUSH [tag]",
"source": 2,
"value": "96"
},
{
"begin": 2181,
"end": 2300,
"name": "JUMPI",
"source": 2
},
{
"begin": 2219,
"end": 2298,
"name": "PUSH [tag]",
"source": 2,
"value": "97"
},
{
"begin": 2219,
"end": 2298,
"name": "PUSH [tag]",
"source": 2,
"value": "83"
},
{
"begin": 2219,
"end": 2298,
"name": "JUMP",
"source": 2,
"value": "[in]"
},
{
"begin": 2219,
"end": 2298,
"name": "tag",
"source": 2,
"value": "97"
},
{
"begin": 2219,
"end": 2298,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 2181,
"end": 2300,
"name": "tag",
"source": 2,
"value": "96"
},
{
"begin": 2181,
"end": 2300,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 2339,
"end": 2340,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 2364,
"end": 2417,
"name": "PUSH [tag]",
"source": 2,
"value": "98"
},
{
"begin": 2409,
"end": 2416,
"name": "DUP5",
"source": 2
},
{
"begin": 2400,
"end": 2406,
"name": "DUP3",
"source": 2
},
{
"begin": 2389,
"end": 2398,
"name": "DUP6",
"source": 2
},
{
"begin": 2385,
"end": 2407,
"name": "ADD",
"source": 2
},
{
"begin": 2364,
"end": 2417,
"name": "PUSH [tag]",
"source": 2,
"value": "76"
},
{
"begin": 2364,
"end": 2417,
"name": "JUMP",
"source": 2,
"value": "[in]"
},
{
"begin": 2364,
"end": 2417,
"name": "tag",
"source": 2,
"value": "98"
},
{
"begin": 2364,
"end": 2417,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 2354,
"end": 2417,
"name": "SWAP2",
"source": 2
},
{
"begin": 2354,
"end": 2417,
"name": "POP",
"source": 2
},
{
"begin": 2310,
"end": 2427,
"name": "POP",
"source": 2
},
{
"begin": 2105,
"end": 2434,
"name": "SWAP3",
"source": 2
},
{
"begin": 2105,
"end": 2434,
"name": "SWAP2",
"source": 2
},
{
"begin": 2105,
"end": 2434,
"name": "POP",
"source": 2
},
{
"begin": 2105,
"end": 2434,
"name": "POP",
"source": 2
},
{
"begin": 2105,
"end": 2434,
"name": "JUMP",
"source": 2,
"value": "[out]"
},
{
"begin": 2440,
"end": 2804,
"name": "tag",
"source": 2,
"value": "99"
},
{
"begin": 2440,
"end": 2804,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 2528,
"end": 2531,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 2556,
"end": 2595,
"name": "PUSH [tag]",
"source": 2,
"value": "101"
},
{
"begin": 2589,
"end": 2594,
"name": "DUP3",
"source": 2
},
{
"begin": 2556,
"end": 2595,
"name": "PUSH [tag]",
"source": 2,
"value": "102"
},
{
"begin": 2556,
"end": 2595,
"name": "JUMP",
"source": 2,
"value": "[in]"
},
{
"begin": 2556,
"end": 2595,
"name": "tag",
"source": 2,
"value": "101"
},
{
"begin": 2556,
"end": 2595,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 2611,
"end": 2682,
"name": "PUSH [tag]",
"source": 2,
"value": "103"
},
{
"begin": 2675,
"end": 2681,
"name": "DUP2",
"source": 2
},
{
"begin": 2670,
"end": 2673,
"name": "DUP6",
"source": 2
},
{
"begin": 2611,
"end": 2682,
"name": "PUSH [tag]",
"source": 2,
"value": "104"
},
{
"begin": 2611,
"end": 2682,
"name": "JUMP",
"source": 2,
"value": "[in]"
},
{
"begin": 2611,
"end": 2682,
"name": "tag",
"source": 2,
"value": "103"
},
{
"begin": 2611,
"end": 2682,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 2604,
"end": 2682,
"name": "SWAP4",
"source": 2
},
{
"begin": 2604,
"end": 2682,
"name": "POP",
"source": 2
},
{
"begin": 2691,
"end": 2743,
"name": "PUSH [tag]",
"source": 2,
"value": "105"
},
{
"begin": 2736,
"end": 2742,
"name": "DUP2",
"source": 2
},
{
"begin": 2731,
"end": 2734,
"name": "DUP6",
"source": 2
},
{
"begin": 2724,
"end": 2728,
"name": "PUSH",
"source": 2,
"value": "20"
},
{
"begin": 2717,
"end": 2722,
"name": "DUP7",
"source": 2
},
{
"begin": 2713,
"end": 2729,
"name": "ADD",
"source": 2
},
{
"begin": 2691,
"end": 2743,
"name": "PUSH [tag]",
"source": 2,
"value": "106"
},
{
"begin": 2691,
"end": 2743,
"name": "JUMP",
"source": 2,
"value": "[in]"
},
{
"begin": 2691,
"end": 2743,
"name": "tag",
"source": 2,
"value": "105"
},
{
"begin": 2691,
"end": 2743,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 2768,
"end": 2797,
"name": "PUSH [tag]",
"source": 2,
"value": "107"
},
{
"begin": 2790,
"end": 2796,
"name": "DUP2",
"source": 2
},
{
"begin": 2768,
"end": 2797,
"name": "PUSH [tag]",
"source": 2,
"value": "108"
},
{
"begin": 2768,
"end": 2797,
"name": "JUMP",
"source": 2,
"value": "[in]"
},
{
"begin": 2768,
"end": 2797,
"name": "tag",
"source": 2,
"value": "107"
},
{
"begin": 2768,
"end": 2797,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 2763,
"end": 2766,
"name": "DUP5",
"source": 2
},
{
"begin": 2759,
"end": 2798,
"name": "ADD",
"source": 2
},
{
"begin": 2752,
"end": 2798,
"name": "SWAP2",
"source": 2
},
{
"begin": 2752,
"end": 2798,
"name": "POP",
"source": 2
},
{
"begin": 2532,
"end": 2804,
"name": "POP",
"source": 2
},
{
"begin": 2440,
"end": 2804,
"name": "SWAP3",
"source": 2
},
{
"begin": 2440,
"end": 2804,
"name": "SWAP2",
"source": 2
},
{
"begin": 2440,
"end": 2804,
"name": "POP",
"source": 2
},
{
"begin": 2440,
"end": 2804,
"name": "POP",
"source": 2
},
{
"begin": 2440,
"end": 2804,
"name": "JUMP",
"source": 2,
"value": "[out]"
},
{
"begin": 2810,
"end": 3187,
"name": "tag",
"source": 2,
"value": "109"
},
{
"begin": 2810,
"end": 3187,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 2916,
"end": 2919,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 2944,
"end": 2983,
"name": "PUSH [tag]",
"source": 2,
"value": "111"
},
{
"begin": 2977,
"end": 2982,
"name": "DUP3",
"source": 2
},
{
"begin": 2944,
"end": 2983,
"name": "PUSH [tag]",
"source": 2,
"value": "102"
},
{
"begin": 2944,
"end": 2983,
"name": "JUMP",
"source": 2,
"value": "[in]"
},
{
"begin": 2944,
"end": 2983,
"name": "tag",
"source": 2,
"value": "111"
},
{
"begin": 2944,
"end": 2983,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 2999,
"end": 3088,
"name": "PUSH [tag]",
"source": 2,
"value": "112"
},
{
"begin": 3081,
"end": 3087,
"name": "DUP2",
"source": 2
},
{
"begin": 3076,
"end": 3079,
"name": "DUP6",
"source": 2
},
{
"begin": 2999,
"end": 3088,
"name": "PUSH [tag]",
"source": 2,
"value": "113"
},
{
"begin": 2999,
"end": 3088,
"name": "JUMP",
"source": 2,
"value": "[in]"
},
{
"begin": 2999,
"end": 3088,
"name": "tag",
"source": 2,
"value": "112"
},
{
"begin": 2999,
"end": 3088,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 2992,
"end": 3088,
"name": "SWAP4",
"source": 2
},
{
"begin": 2992,
"end": 3088,
"name": "POP",
"source": 2
},
{
"begin": 3097,
"end": 3149,
"name": "PUSH [tag]",
"source": 2,
"value": "114"
},
{
"begin": 3142,
"end": 3148,
"name": "DUP2",
"source": 2
},
{
"begin": 3137,
"end": 3140,
"name": "DUP6",
"source": 2
},
{
"begin": 3130,
"end": 3134,
"name": "PUSH",
"source": 2,
"value": "20"
},
{
"begin": 3123,
"end": 3128,
"name": "DUP7",
"source": 2
},
{
"begin": 3119,
"end": 3135,
"name": "ADD",
"source": 2
},
{
"begin": 3097,
"end": 3149,
"name": "PUSH [tag]",
"source": 2,
"value": "106"
},
{
"begin": 3097,
"end": 3149,
"name": "JUMP",
"source": 2,
"value": "[in]"
},
{
"begin": 3097,
"end": 3149,
"name": "tag",
"source": 2,
"value": "114"
},
{
"begin": 3097,
"end": 3149,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 3174,
"end": 3180,
"name": "DUP1",
"source": 2
},
{
"begin": 3169,
"end": 3172,
"name": "DUP5",
"source": 2
},
{
"begin": 3165,
"end": 3181,
"name": "ADD",
"source": 2
},
{
"begin": 3158,
"end": 3181,
"name": "SWAP2",
"source": 2
},
{
"begin": 3158,
"end": 3181,
"name": "POP",
"source": 2
},
{
"begin": 2920,
"end": 3187,
"name": "POP",
"source": 2
},
{
"begin": 2810,
"end": 3187,
"name": "SWAP3",
"source": 2
},
{
"begin": 2810,
"end": 3187,
"name": "SWAP2",
"source": 2
},
{
"begin": 2810,
"end": 3187,
"name": "POP",
"source": 2
},
{
"begin": 2810,
"end": 3187,
"name": "POP",
"source": 2
},
{
"begin": 2810,
"end": 3187,
"name": "JUMP",
"source": 2,
"value": "[out]"
},
{
"begin": 3193,
"end": 3311,
"name": "tag",
"source": 2,
"value": "115"
},
{
"begin": 3193,
"end": 3311,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 3280,
"end": 3304,
"name": "PUSH [tag]",
"source": 2,
"value": "117"
},
{
"begin": 3298,
"end": 3303,
"name": "DUP2",
"source": 2
},
{
"begin": 3280,
"end": 3304,
"name": "PUSH [tag]",
"source": 2,
"value": "118"
},
{
"begin": 3280,
"end": 3304,
"name": "JUMP",
"source": 2,
"value": "[in]"
},
{
"begin": 3280,
"end": 3304,
"name": "tag",
"source": 2,
"value": "117"
},
{
"begin": 3280,
"end": 3304,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 3275,
"end": 3278,
"name": "DUP3",
"source": 2
},
{
"begin": 3268,
"end": 3305,
"name": "MSTORE",
"source": 2
},
{
"begin": 3193,
"end": 3311,
"name": "POP",
"source": 2
},
{
"begin": 3193,
"end": 3311,
"name": "POP",
"source": 2
},
{
"begin": 3193,
"end": 3311,
"name": "JUMP",
"source": 2,
"value": "[out]"
},
{
"begin": 3317,
"end": 3592,
"name": "tag",
"source": 2,
"value": "39"
},
{
"begin": 3317,
"end": 3592,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 3449,
"end": 3452,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 3471,
"end": 3566,
"name": "PUSH [tag]",
"source": 2,
"value": "120"
},
{
"begin": 3562,
"end": 3565,
"name": "DUP3",
"source": 2
},
{
"begin": 3553,
"end": 3559,
"name": "DUP5",
"source": 2
},
{
"begin": 3471,
"end": 3566,
"name": "PUSH [tag]",
"source": 2,
"value": "109"
},
{
"begin": 3471,
"end": 3566,
"name": "JUMP",
"source": 2,
"value": "[in]"
},
{
"begin": 3471,
"end": 3566,
"name": "tag",
"source": 2,
"value": "120"
},
{
"begin": 3471,
"end": 3566,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 3464,
"end": 3566,
"name": "SWAP2",
"source": 2
},
{
"begin": 3464,
"end": 3566,
"name": "POP",
"source": 2
},
{
"begin": 3583,
"end": 3586,
"name": "DUP2",
"source": 2
},
{
"begin": 3576,
"end": 3586,
"name": "SWAP1",
"source": 2
},
{
"begin": 3576,
"end": 3586,
"name": "POP",
"source": 2
},
{
"begin": 3317,
"end": 3592,
"name": "SWAP3",
"source": 2
},
{
"begin": 3317,
"end": 3592,
"name": "SWAP2",
"source": 2
},
{
"begin": 3317,
"end": 3592,
"name": "POP",
"source": 2
},
{
"begin": 3317,
"end": 3592,
"name": "POP",
"source": 2
},
{
"begin": 3317,
"end": 3592,
"name": "JUMP",
"source": 2,
"value": "[out]"
},
{
"begin": 3598,
"end": 3820,
"name": "tag",
"source": 2,
"value": "11"
},
{
"begin": 3598,
"end": 3820,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 3691,
"end": 3695,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 3729,
"end": 3731,
"name": "PUSH",
"source": 2,
"value": "20"
},
{
"begin": 3718,
"end": 3727,
"name": "DUP3",
"source": 2
},
{
"begin": 3714,
"end": 3732,
"name": "ADD",
"source": 2
},
{
"begin": 3706,
"end": 3732,
"name": "SWAP1",
"source": 2
},
{
"begin": 3706,
"end": 3732,
"name": "POP",
"source": 2
},
{
"begin": 3742,
"end": 3813,
"name": "PUSH [tag]",
"source": 2,
"value": "122"
},
{
"begin": 3810,
"end": 3811,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 3799,
"end": 3808,
"name": "DUP4",
"source": 2
},
{
"begin": 3795,
"end": 3812,
"name": "ADD",
"source": 2
},
{
"begin": 3786,
"end": 3792,
"name": "DUP5",
"source": 2
},
{
"begin": 3742,
"end": 3813,
"name": "PUSH [tag]",
"source": 2,
"value": "115"
},
{
"begin": 3742,
"end": 3813,
"name": "JUMP",
"source": 2,
"value": "[in]"
},
{
"begin": 3742,
"end": 3813,
"name": "tag",
"source": 2,
"value": "122"
},
{
"begin": 3742,
"end": 3813,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 3598,
"end": 3820,
"name": "SWAP3",
"source": 2
},
{
"begin": 3598,
"end": 3820,
"name": "SWAP2",
"source": 2
},
{
"begin": 3598,
"end": 3820,
"name": "POP",
"source": 2
},
{
"begin": 3598,
"end": 3820,
"name": "POP",
"source": 2
},
{
"begin": 3598,
"end": 3820,
"name": "JUMP",
"source": 2,
"value": "[out]"
},
{
"begin": 3826,
"end": 4249,
"name": "tag",
"source": 2,
"value": "24"
},
{
"begin": 3826,
"end": 4249,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 3967,
"end": 3971,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 4005,
"end": 4007,
"name": "PUSH",
"source": 2,
"value": "40"
},
{
"begin": 3994,
"end": 4003,
"name": "DUP3",
"source": 2
},
{
"begin": 3990,
"end": 4008,
"name": "ADD",
"source": 2
},
{
"begin": 3982,
"end": 4008,
"name": "SWAP1",
"source": 2
},
{
"begin": 3982,
"end": 4008,
"name": "POP",
"source": 2
},
{
"begin": 4018,
"end": 4089,
"name": "PUSH [tag]",
"source": 2,
"value": "124"
},
{
"begin": 4086,
"end": 4087,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 4075,
"end": 4084,
"name": "DUP4",
"source": 2
},
{
"begin": 4071,
"end": 4088,
"name": "ADD",
"source": 2
},
{
"begin": 4062,
"end": 4068,
"name": "DUP6",
"source": 2
},
{
"begin": 4018,
"end": 4089,
"name": "PUSH [tag]",
"source": 2,
"value": "115"
},
{
"begin": 4018,
"end": 4089,
"name": "JUMP",
"source": 2,
"value": "[in]"
},
{
"begin": 4018,
"end": 4089,
"name": "tag",
"source": 2,
"value": "124"
},
{
"begin": 4018,
"end": 4089,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 4136,
"end": 4145,
"name": "DUP2",
"source": 2
},
{
"begin": 4130,
"end": 4134,
"name": "DUP2",
"source": 2
},
{
"begin": 4126,
"end": 4146,
"name": "SUB",
"source": 2
},
{
"begin": 4121,
"end": 4123,
"name": "PUSH",
"source": 2,
"value": "20"
},
{
"begin": 4110,
"end": 4119,
"name": "DUP4",
"source": 2
},
{
"begin": 4106,
"end": 4124,
"name": "ADD",
"source": 2
},
{
"begin": 4099,
"end": 4147,
"name": "MSTORE",
"source": 2
},
{
"begin": 4164,
"end": 4242,
"name": "PUSH [tag]",
"source": 2,
"value": "125"
},
{
"begin": 4237,
"end": 4241,
"name": "DUP2",
"source": 2
},
{
"begin": 4228,
"end": 4234,
"name": "DUP5",
"source": 2
},
{
"begin": 4164,
"end": 4242,
"name": "PUSH [tag]",
"source": 2,
"value": "99"
},
{
"begin": 4164,
"end": 4242,
"name": "JUMP",
"source": 2,
"value": "[in]"
},
{
"begin": 4164,
"end": 4242,
"name": "tag",
"source": 2,
"value": "125"
},
{
"begin": 4164,
"end": 4242,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 4156,
"end": 4242,
"name": "SWAP1",
"source": 2
},
{
"begin": 4156,
"end": 4242,
"name": "POP",
"source": 2
},
{
"begin": 3826,
"end": 4249,
"name": "SWAP4",
"source": 2
},
{
"begin": 3826,
"end": 4249,
"name": "SWAP3",
"source": 2
},
{
"begin": 3826,
"end": 4249,
"name": "POP",
"source": 2
},
{
"begin": 3826,
"end": 4249,
"name": "POP",
"source": 2
},
{
"begin": 3826,
"end": 4249,
"name": "POP",
"source": 2
},
{
"begin": 3826,
"end": 4249,
"name": "JUMP",
"source": 2,
"value": "[out]"
},
{
"begin": 4255,
"end": 4384,
"name": "tag",
"source": 2,
"value": "64"
},
{
"begin": 4255,
"end": 4384,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 4289,
"end": 4295,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 4316,
"end": 4336,
"name": "PUSH [tag]",
"source": 2,
"value": "127"
},
{
"begin": 4316,
"end": 4336,
"name": "PUSH [tag]",
"source": 2,
"value": "128"
},
{
"begin": 4316,
"end": 4336,
"name": "JUMP",
"source": 2,
"value": "[in]"
},
{
"begin": 4316,
"end": 4336,
"name": "tag",
"source": 2,
"value": "127"
},
{
"begin": 4316,
"end": 4336,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 4306,
"end": 4336,
"name": "SWAP1",
"source": 2
},
{
"begin": 4306,
"end": 4336,
"name": "POP",
"source": 2
},
{
"begin": 4345,
"end": 4378,
"name": "PUSH [tag]",
"source": 2,
"value": "129"
},
{
"begin": 4373,
"end": 4377,
"name": "DUP3",
"source": 2
},
{
"begin": 4365,
"end": 4371,
"name": "DUP3",
"source": 2
},
{
"begin": 4345,
"end": 4378,
"name": "PUSH [tag]",
"source": 2,
"value": "130"
},
{
"begin": 4345,
"end": 4378,
"name": "JUMP",
"source": 2,
"value": "[in]"
},
{
"begin": 4345,
"end": 4378,
"name": "tag",
"source": 2,
"value": "129"
},
{
"begin": 4345,
"end": 4378,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 4255,
"end": 4384,
"name": "SWAP2",
"source": 2
},
{
"begin": 4255,
"end": 4384,
"name": "SWAP1",
"source": 2
},
{
"begin": 4255,
"end": 4384,
"name": "POP",
"source": 2
},
{
"begin": 4255,
"end": 4384,
"name": "JUMP",
"source": 2,
"value": "[out]"
},
{
"begin": 4390,
"end": 4465,
"name": "tag",
"source": 2,
"value": "128"
},
{
"begin": 4390,
"end": 4465,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 4423,
"end": 4429,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 4456,
"end": 4458,
"name": "PUSH",
"source": 2,
"value": "40"
},
{
"begin": 4450,
"end": 4459,
"name": "MLOAD",
"source": 2
},
{
"begin": 4440,
"end": 4459,
"name": "SWAP1",
"source": 2
},
{
"begin": 4440,
"end": 4459,
"name": "POP",
"source": 2
},
{
"begin": 4390,
"end": 4465,
"name": "SWAP1",
"source": 2
},
{
"begin": 4390,
"end": 4465,
"name": "JUMP",
"source": 2,
"value": "[out]"
},
{
"begin": 4471,
"end": 4779,
"name": "tag",
"source": 2,
"value": "63"
},
{
"begin": 4471,
"end": 4779,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 4533,
"end": 4537,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 4623,
"end": 4641,
"name": "PUSH",
"source": 2,
"value": "FFFFFFFFFFFFFFFF"
},
{
"begin": 4615,
"end": 4621,
"name": "DUP3",
"source": 2
},
{
"begin": 4612,
"end": 4642,
"name": "GT",
"source": 2
},
{
"begin": 4609,
"end": 4665,
"name": "ISZERO",
"source": 2
},
{
"begin": 4609,
"end": 4665,
"name": "PUSH [tag]",
"source": 2,
"value": "133"
},
{
"begin": 4609,
"end": 4665,
"name": "JUMPI",
"source": 2
},
{
"begin": 4645,
"end": 4663,
"name": "PUSH [tag]",
"source": 2,
"value": "134"
},
{
"begin": 4645,
"end": 4663,
"name": "PUSH [tag]",
"source": 2,
"value": "135"
},
{
"begin": 4645,
"end": 4663,
"name": "JUMP",
"source": 2,
"value": "[in]"
},
{
"begin": 4645,
"end": 4663,
"name": "tag",
"source": 2,
"value": "134"
},
{
"begin": 4645,
"end": 4663,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 4609,
"end": 4665,
"name": "tag",
"source": 2,
"value": "133"
},
{
"begin": 4609,
"end": 4665,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 4683,
"end": 4712,
"name": "PUSH [tag]",
"source": 2,
"value": "136"
},
{
"begin": 4705,
"end": 4711,
"name": "DUP3",
"source": 2
},
{
"begin": 4683,
"end": 4712,
"name": "PUSH [tag]",
"source": 2,
"value": "108"
},
{
"begin": 4683,
"end": 4712,
"name": "JUMP",
"source": 2,
"value": "[in]"
},
{
"begin": 4683,
"end": 4712,
"name": "tag",
"source": 2,
"value": "136"
},
{
"begin": 4683,
"end": 4712,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 4675,
"end": 4712,
"name": "SWAP1",
"source": 2
},
{
"begin": 4675,
"end": 4712,
"name": "POP",
"source": 2
},
{
"begin": 4767,
"end": 4771,
"name": "PUSH",
"source": 2,
"value": "20"
},
{
"begin": 4761,
"end": 4765,
"name": "DUP2",
"source": 2
},
{
"begin": 4757,
"end": 4772,
"name": "ADD",
"source": 2
},
{
"begin": 4749,
"end": 4772,
"name": "SWAP1",
"source": 2
},
{
"begin": 4749,
"end": 4772,
"name": "POP",
"source": 2
},
{
"begin": 4471,
"end": 4779,
"name": "SWAP2",
"source": 2
},
{
"begin": 4471,
"end": 4779,
"name": "SWAP1",
"source": 2
},
{
"begin": 4471,
"end": 4779,
"name": "POP",
"source": 2
},
{
"begin": 4471,
"end": 4779,
"name": "JUMP",
"source": 2,
"value": "[out]"
},
{
"begin": 4785,
"end": 4884,
"name": "tag",
"source": 2,
"value": "102"
},
{
"begin": 4785,
"end": 4884,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 4837,
"end": 4843,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 4871,
"end": 4876,
"name": "DUP2",
"source": 2
},
{
"begin": 4865,
"end": 4877,
"name": "MLOAD",
"source": 2
},
{
"begin": 4855,
"end": 4877,
"name": "SWAP1",
"source": 2
},
{
"begin": 4855,
"end": 4877,
"name": "POP",
"source": 2
},
{
"begin": 4785,
"end": 4884,
"name": "SWAP2",
"source": 2
},
{
"begin": 4785,
"end": 4884,
"name": "SWAP1",
"source": 2
},
{
"begin": 4785,
"end": 4884,
"name": "POP",
"source": 2
},
{
"begin": 4785,
"end": 4884,
"name": "JUMP",
"source": 2,
"value": "[out]"
},
{
"begin": 4890,
"end": 5059,
"name": "tag",
"source": 2,
"value": "104"
},
{
"begin": 4890,
"end": 5059,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 4974,
"end": 4985,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 5008,
"end": 5014,
"name": "DUP3",
"source": 2
},
{
"begin": 5003,
"end": 5006,
"name": "DUP3",
"source": 2
},
{
"begin": 4996,
"end": 5015,
"name": "MSTORE",
"source": 2
},
{
"begin": 5048,
"end": 5052,
"name": "PUSH",
"source": 2,
"value": "20"
},
{
"begin": 5043,
"end": 5046,
"name": "DUP3",
"source": 2
},
{
"begin": 5039,
"end": 5053,
"name": "ADD",
"source": 2
},
{
"begin": 5024,
"end": 5053,
"name": "SWAP1",
"source": 2
},
{
"begin": 5024,
"end": 5053,
"name": "POP",
"source": 2
},
{
"begin": 4890,
"end": 5059,
"name": "SWAP3",
"source": 2
},
{
"begin": 4890,
"end": 5059,
"name": "SWAP2",
"source": 2
},
{
"begin": 4890,
"end": 5059,
"name": "POP",
"source": 2
},
{
"begin": 4890,
"end": 5059,
"name": "POP",
"source": 2
},
{
"begin": 4890,
"end": 5059,
"name": "JUMP",
"source": 2,
"value": "[out]"
},
{
"begin": 5065,
"end": 5213,
"name": "tag",
"source": 2,
"value": "113"
},
{
"begin": 5065,
"end": 5213,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 5167,
"end": 5178,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 5204,
"end": 5207,
"name": "DUP2",
"source": 2
},
{
"begin": 5189,
"end": 5207,
"name": "SWAP1",
"source": 2
},
{
"begin": 5189,
"end": 5207,
"name": "POP",
"source": 2
},
{
"begin": 5065,
"end": 5213,
"name": "SWAP3",
"source": 2
},
{
"begin": 5065,
"end": 5213,
"name": "SWAP2",
"source": 2
},
{
"begin": 5065,
"end": 5213,
"name": "POP",
"source": 2
},
{
"begin": 5065,
"end": 5213,
"name": "POP",
"source": 2
},
{
"begin": 5065,
"end": 5213,
"name": "JUMP",
"source": 2,
"value": "[out]"
},
{
"begin": 5219,
"end": 5524,
"name": "tag",
"source": 2,
"value": "33"
},
{
"begin": 5219,
"end": 5524,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 5259,
"end": 5262,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 5278,
"end": 5298,
"name": "PUSH [tag]",
"source": 2,
"value": "141"
},
{
"begin": 5296,
"end": 5297,
"name": "DUP3",
"source": 2
},
{
"begin": 5278,
"end": 5298,
"name": "PUSH [tag]",
"source": 2,
"value": "118"
},
{
"begin": 5278,
"end": 5298,
"name": "JUMP",
"source": 2,
"value": "[in]"
},
{
"begin": 5278,
"end": 5298,
"name": "tag",
"source": 2,
"value": "141"
},
{
"begin": 5278,
"end": 5298,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 5273,
"end": 5298,
"name": "SWAP2",
"source": 2
},
{
"begin": 5273,
"end": 5298,
"name": "POP",
"source": 2
},
{
"begin": 5312,
"end": 5332,
"name": "PUSH [tag]",
"source": 2,
"value": "142"
},
{
"begin": 5330,
"end": 5331,
"name": "DUP4",
"source": 2
},
{
"begin": 5312,
"end": 5332,
"name": "PUSH [tag]",
"source": 2,
"value": "118"
},
{
"begin": 5312,
"end": 5332,
"name": "JUMP",
"source": 2,
"value": "[in]"
},
{
"begin": 5312,
"end": 5332,
"name": "tag",
"source": 2,
"value": "142"
},
{
"begin": 5312,
"end": 5332,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 5307,
"end": 5332,
"name": "SWAP3",
"source": 2
},
{
"begin": 5307,
"end": 5332,
"name": "POP",
"source": 2
},
{
"begin": 5466,
"end": 5467,
"name": "DUP3",
"source": 2
},
{
"begin": 5398,
"end": 5464,
"name": "PUSH",
"source": 2,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 5394,
"end": 5468,
"name": "SUB",
"source": 2
},
{
"begin": 5391,
"end": 5392,
"name": "DUP3",
"source": 2
},
{
"begin": 5388,
"end": 5469,
"name": "GT",
"source": 2
},
{
"begin": 5385,
"end": 5492,
"name": "ISZERO",
"source": 2
},
{
"begin": 5385,
"end": 5492,
"name": "PUSH [tag]",
"source": 2,
"value": "143"
},
{
"begin": 5385,
"end": 5492,
"name": "JUMPI",
"source": 2
},
{
"begin": 5472,
"end": 5490,
"name": "PUSH [tag]",
"source": 2,
"value": "144"
},
{
"begin": 5472,
"end": 5490,
"name": "PUSH [tag]",
"source": 2,
"value": "145"
},
{
"begin": 5472,
"end": 5490,
"name": "JUMP",
"source": 2,
"value": "[in]"
},
{
"begin": 5472,
"end": 5490,
"name": "tag",
"source": 2,
"value": "144"
},
{
"begin": 5472,
"end": 5490,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 5385,
"end": 5492,
"name": "tag",
"source": 2,
"value": "143"
},
{
"begin": 5385,
"end": 5492,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 5516,
"end": 5517,
"name": "DUP3",
"source": 2
},
{
"begin": 5513,
"end": 5514,
"name": "DUP3",
"source": 2
},
{
"begin": 5509,
"end": 5518,
"name": "ADD",
"source": 2
},
{
"begin": 5502,
"end": 5518,
"name": "SWAP1",
"source": 2
},
{
"begin": 5502,
"end": 5518,
"name": "POP",
"source": 2
},
{
"begin": 5219,
"end": 5524,
"name": "SWAP3",
"source": 2
},
{
"begin": 5219,
"end": 5524,
"name": "SWAP2",
"source": 2
},
{
"begin": 5219,
"end": 5524,
"name": "POP",
"source": 2
},
{
"begin": 5219,
"end": 5524,
"name": "POP",
"source": 2
},
{
"begin": 5219,
"end": 5524,
"name": "JUMP",
"source": 2,
"value": "[out]"
},
{
"begin": 5530,
"end": 5607,
"name": "tag",
"source": 2,
"value": "118"
},
{
"begin": 5530,
"end": 5607,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 5567,
"end": 5574,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 5596,
"end": 5601,
"name": "DUP2",
"source": 2
},
{
"begin": 5585,
"end": 5601,
"name": "SWAP1",
"source": 2
},
{
"begin": 5585,
"end": 5601,
"name": "POP",
"source": 2
},
{
"begin": 5530,
"end": 5607,
"name": "SWAP2",
"source": 2
},
{
"begin": 5530,
"end": 5607,
"name": "SWAP1",
"source": 2
},
{
"begin": 5530,
"end": 5607,
"name": "POP",
"source": 2
},
{
"begin": 5530,
"end": 5607,
"name": "JUMP",
"source": 2,
"value": "[out]"
},
{
"begin": 5613,
"end": 5767,
"name": "tag",
"source": 2,
"value": "69"
},
{
"begin": 5613,
"end": 5767,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 5697,
"end": 5703,
"name": "DUP3",
"source": 2
},
{
"begin": 5692,
"end": 5695,
"name": "DUP2",
"source": 2
},
{
"begin": 5687,
"end": 5690,
"name": "DUP4",
"source": 2
},
{
"begin": 5674,
"end": 5704,
"name": "CALLDATACOPY",
"source": 2
},
{
"begin": 5759,
"end": 5760,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 5750,
"end": 5756,
"name": "DUP4",
"source": 2
},
{
"begin": 5745,
"end": 5748,
"name": "DUP4",
"source": 2
},
{
"begin": 5741,
"end": 5757,
"name": "ADD",
"source": 2
},
{
"begin": 5734,
"end": 5761,
"name": "MSTORE",
"source": 2
},
{
"begin": 5613,
"end": 5767,
"name": "POP",
"source": 2
},
{
"begin": 5613,
"end": 5767,
"name": "POP",
"source": 2
},
{
"begin": 5613,
"end": 5767,
"name": "POP",
"source": 2
},
{
"begin": 5613,
"end": 5767,
"name": "JUMP",
"source": 2,
"value": "[out]"
},
{
"begin": 5773,
"end": 6080,
"name": "tag",
"source": 2,
"value": "106"
},
{
"begin": 5773,
"end": 6080,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 5841,
"end": 5842,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 5851,
"end": 5964,
"name": "tag",
"source": 2,
"value": "149"
},
{
"begin": 5851,
"end": 5964,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 5865,
"end": 5871,
"name": "DUP4",
"source": 2
},
{
"begin": 5862,
"end": 5863,
"name": "DUP2",
"source": 2
},
{
"begin": 5859,
"end": 5872,
"name": "LT",
"source": 2
},
{
"begin": 5851,
"end": 5964,
"name": "ISZERO",
"source": 2
},
{
"begin": 5851,
"end": 5964,
"name": "PUSH [tag]",
"source": 2,
"value": "151"
},
{
"begin": 5851,
"end": 5964,
"name": "JUMPI",
"source": 2
},
{
"begin": 5950,
"end": 5951,
"name": "DUP1",
"source": 2
},
{
"begin": 5945,
"end": 5948,
"name": "DUP3",
"source": 2
},
{
"begin": 5941,
"end": 5952,
"name": "ADD",
"source": 2
},
{
"begin": 5935,
"end": 5953,
"name": "MLOAD",
"source": 2
},
{
"begin": 5931,
"end": 5932,
"name": "DUP2",
"source": 2
},
{
"begin": 5926,
"end": 5929,
"name": "DUP5",
"source": 2
},
{
"begin": 5922,
"end": 5933,
"name": "ADD",
"source": 2
},
{
"begin": 5915,
"end": 5954,
"name": "MSTORE",
"source": 2
},
{
"begin": 5887,
"end": 5889,
"name": "PUSH",
"source": 2,
"value": "20"
},
{
"begin": 5884,
"end": 5885,
"name": "DUP2",
"source": 2
},
{
"begin": 5880,
"end": 5890,
"name": "ADD",
"source": 2
},
{
"begin": 5875,
"end": 5890,
"name": "SWAP1",
"source": 2
},
{
"begin": 5875,
"end": 5890,
"name": "POP",
"source": 2
},
{
"begin": 5851,
"end": 5964,
"name": "PUSH [tag]",
"source": 2,
"value": "149"
},
{
"begin": 5851,
"end": 5964,
"name": "JUMP",
"source": 2
},
{
"begin": 5851,
"end": 5964,
"name": "tag",
"source": 2,
"value": "151"
},
{
"begin": 5851,
"end": 5964,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 5982,
"end": 5988,
"name": "DUP4",
"source": 2
},
{
"begin": 5979,
"end": 5980,
"name": "DUP2",
"source": 2
},
{
"begin": 5976,
"end": 5989,
"name": "GT",
"source": 2
},
{
"begin": 5973,
"end": 6074,
"name": "ISZERO",
"source": 2
},
{
"begin": 5973,
"end": 6074,
"name": "PUSH [tag]",
"source": 2,
"value": "152"
},
{
"begin": 5973,
"end": 6074,
"name": "JUMPI",
"source": 2
},
{
"begin": 6062,
"end": 6063,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 6053,
"end": 6059,
"name": "DUP5",
"source": 2
},
{
"begin": 6048,
"end": 6051,
"name": "DUP5",
"source": 2
},
{
"begin": 6044,
"end": 6060,
"name": "ADD",
"source": 2
},
{
"begin": 6037,
"end": 6064,
"name": "MSTORE",
"source": 2
},
{
"begin": 5973,
"end": 6074,
"name": "tag",
"source": 2,
"value": "152"
},
{
"begin": 5973,
"end": 6074,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 5822,
"end": 6080,
"name": "POP",
"source": 2
},
{
"begin": 5773,
"end": 6080,
"name": "POP",
"source": 2
},
{
"begin": 5773,
"end": 6080,
"name": "POP",
"source": 2
},
{
"begin": 5773,
"end": 6080,
"name": "POP",
"source": 2
},
{
"begin": 5773,
"end": 6080,
"name": "JUMP",
"source": 2,
"value": "[out]"
},
{
"begin": 6086,
"end": 6406,
"name": "tag",
"source": 2,
"value": "43"
},
{
"begin": 6086,
"end": 6406,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 6130,
"end": 6136,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 6167,
"end": 6168,
"name": "PUSH",
"source": 2,
"value": "2"
},
{
"begin": 6161,
"end": 6165,
"name": "DUP3",
"source": 2
},
{
"begin": 6157,
"end": 6169,
"name": "DIV",
"source": 2
},
{
"begin": 6147,
"end": 6169,
"name": "SWAP1",
"source": 2
},
{
"begin": 6147,
"end": 6169,
"name": "POP",
"source": 2
},
{
"begin": 6214,
"end": 6215,
"name": "PUSH",
"source": 2,
"value": "1"
},
{
"begin": 6208,
"end": 6212,
"name": "DUP3",
"source": 2
},
{
"begin": 6204,
"end": 6216,
"name": "AND",
"source": 2
},
{
"begin": 6235,
"end": 6253,
"name": "DUP1",
"source": 2
},
{
"begin": 6225,
"end": 6306,
"name": "PUSH [tag]",
"source": 2,
"value": "154"
},
{
"begin": 6225,
"end": 6306,
"name": "JUMPI",
"source": 2
},
{
"begin": 6291,
"end": 6295,
"name": "PUSH",
"source": 2,
"value": "7F"
},
{
"begin": 6283,
"end": 6289,
"name": "DUP3",
"source": 2
},
{
"begin": 6279,
"end": 6296,
"name": "AND",
"source": 2
},
{
"begin": 6269,
"end": 6296,
"name": "SWAP2",
"source": 2
},
{
"begin": 6269,
"end": 6296,
"name": "POP",
"source": 2
},
{
"begin": 6225,
"end": 6306,
"name": "tag",
"source": 2,
"value": "154"
},
{
"begin": 6225,
"end": 6306,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 6353,
"end": 6355,
"name": "PUSH",
"source": 2,
"value": "20"
},
{
"begin": 6345,
"end": 6351,
"name": "DUP3",
"source": 2
},
{
"begin": 6342,
"end": 6356,
"name": "LT",
"source": 2
},
{
"begin": 6322,
"end": 6340,
"name": "DUP2",
"source": 2
},
{
"begin": 6319,
"end": 6357,
"name": "EQ",
"source": 2
},
{
"begin": 6316,
"end": 6400,
"name": "ISZERO",
"source": 2
},
{
"begin": 6316,
"end": 6400,
"name": "PUSH [tag]",
"source": 2,
"value": "155"
},
{
"begin": 6316,
"end": 6400,
"name": "JUMPI",
"source": 2
},
{
"begin": 6372,
"end": 6390,
"name": "PUSH [tag]",
"source": 2,
"value": "156"
},
{
"begin": 6372,
"end": 6390,
"name": "PUSH [tag]",
"source": 2,
"value": "157"
},
{
"begin": 6372,
"end": 6390,
"name": "JUMP",
"source": 2,
"value": "[in]"
},
{
"begin": 6372,
"end": 6390,
"name": "tag",
"source": 2,
"value": "156"
},
{
"begin": 6372,
"end": 6390,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 6316,
"end": 6400,
"name": "tag",
"source": 2,
"value": "155"
},
{
"begin": 6316,
"end": 6400,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 6137,
"end": 6406,
"name": "POP",
"source": 2
},
{
"begin": 6086,
"end": 6406,
"name": "SWAP2",
"source": 2
},
{
"begin": 6086,
"end": 6406,
"name": "SWAP1",
"source": 2
},
{
"begin": 6086,
"end": 6406,
"name": "POP",
"source": 2
},
{
"begin": 6086,
"end": 6406,
"name": "JUMP",
"source": 2,
"value": "[out]"
},
{
"begin": 6412,
"end": 6693,
"name": "tag",
"source": 2,
"value": "130"
},
{
"begin": 6412,
"end": 6693,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 6495,
"end": 6522,
"name": "PUSH [tag]",
"source": 2,
"value": "159"
},
{
"begin": 6517,
"end": 6521,
"name": "DUP3",
"source": 2
},
{
"begin": 6495,
"end": 6522,
"name": "PUSH [tag]",
"source": 2,
"value": "108"
},
{
"begin": 6495,
"end": 6522,
"name": "JUMP",
"source": 2,
"value": "[in]"
},
{
"begin": 6495,
"end": 6522,
"name": "tag",
"source": 2,
"value": "159"
},
{
"begin": 6495,
"end": 6522,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 6487,
"end": 6493,
"name": "DUP2",
"source": 2
},
{
"begin": 6483,
"end": 6523,
"name": "ADD",
"source": 2
},
{
"begin": 6625,
"end": 6631,
"name": "DUP2",
"source": 2
},
{
"begin": 6613,
"end": 6623,
"name": "DUP2",
"source": 2
},
{
"begin": 6610,
"end": 6632,
"name": "LT",
"source": 2
},
{
"begin": 6589,
"end": 6607,
"name": "PUSH",
"source": 2,
"value": "FFFFFFFFFFFFFFFF"
},
{
"begin": 6577,
"end": 6587,
"name": "DUP3",
"source": 2
},
{
"begin": 6574,
"end": 6608,
"name": "GT",
"source": 2
},
{
"begin": 6571,
"end": 6633,
"name": "OR",
"source": 2
},
{
"begin": 6568,
"end": 6656,
"name": "ISZERO",
"source": 2
},
{
"begin": 6568,
"end": 6656,
"name": "PUSH [tag]",
"source": 2,
"value": "160"
},
{
"begin": 6568,
"end": 6656,
"name": "JUMPI",
"source": 2
},
{
"begin": 6636,
"end": 6654,
"name": "PUSH [tag]",
"source": 2,
"value": "161"
},
{
"begin": 6636,
"end": 6654,
"name": "PUSH [tag]",
"source": 2,
"value": "135"
},
{
"begin": 6636,
"end": 6654,
"name": "JUMP",
"source": 2,
"value": "[in]"
},
{
"begin": 6636,
"end": 6654,
"name": "tag",
"source": 2,
"value": "161"
},
{
"begin": 6636,
"end": 6654,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 6568,
"end": 6656,
"name": "tag",
"source": 2,
"value": "160"
},
{
"begin": 6568,
"end": 6656,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 6676,
"end": 6686,
"name": "DUP1",
"source": 2
},
{
"begin": 6672,
"end": 6674,
"name": "PUSH",
"source": 2,
"value": "40"
},
{
"begin": 6665,
"end": 6687,
"name": "MSTORE",
"source": 2
},
{
"begin": 6455,
"end": 6693,
"name": "POP",
"source": 2
},
{
"begin": 6412,
"end": 6693,
"name": "POP",
"source": 2
},
{
"begin": 6412,
"end": 6693,
"name": "POP",
"source": 2
},
{
"begin": 6412,
"end": 6693,
"name": "JUMP",
"source": 2,
"value": "[out]"
},
{
"begin": 6699,
"end": 6879,
"name": "tag",
"source": 2,
"value": "145"
},
{
"begin": 6699,
"end": 6879,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 6747,
"end": 6824,
"name": "PUSH",
"source": 2,
"value": "4E487B7100000000000000000000000000000000000000000000000000000000"
},
{
"begin": 6744,
"end": 6745,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 6737,
"end": 6825,
"name": "MSTORE",
"source": 2
},
{
"begin": 6844,
"end": 6848,
"name": "PUSH",
"source": 2,
"value": "11"
},
{
"begin": 6841,
"end": 6842,
"name": "PUSH",
"source": 2,
"value": "4"
},
{
"begin": 6834,
"end": 6849,
"name": "MSTORE",
"source": 2
},
{
"begin": 6868,
"end": 6872,
"name": "PUSH",
"source": 2,
"value": "24"
},
{
"begin": 6865,
"end": 6866,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 6858,
"end": 6873,
"name": "REVERT",
"source": 2
},
{
"begin": 6885,
"end": 7065,
"name": "tag",
"source": 2,
"value": "157"
},
{
"begin": 6885,
"end": 7065,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 6933,
"end": 7010,
"name": "PUSH",
"source": 2,
"value": "4E487B7100000000000000000000000000000000000000000000000000000000"
},
{
"begin": 6930,
"end": 6931,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 6923,
"end": 7011,
"name": "MSTORE",
"source": 2
},
{
"begin": 7030,
"end": 7034,
"name": "PUSH",
"source": 2,
"value": "22"
},
{
"begin": 7027,
"end": 7028,
"name": "PUSH",
"source": 2,
"value": "4"
},
{
"begin": 7020,
"end": 7035,
"name": "MSTORE",
"source": 2
},
{
"begin": 7054,
"end": 7058,
"name": "PUSH",
"source": 2,
"value": "24"
},
{
"begin": 7051,
"end": 7052,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 7044,
"end": 7059,
"name": "REVERT",
"source": 2
},
{
"begin": 7071,
"end": 7251,
"name": "tag",
"source": 2,
"value": "135"
},
{
"begin": 7071,
"end": 7251,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 7119,
"end": 7196,
"name": "PUSH",
"source": 2,
"value": "4E487B7100000000000000000000000000000000000000000000000000000000"
},
{
"begin": 7116,
"end": 7117,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 7109,
"end": 7197,
"name": "MSTORE",
"source": 2
},
{
"begin": 7216,
"end": 7220,
"name": "PUSH",
"source": 2,
"value": "41"
},
{
"begin": 7213,
"end": 7214,
"name": "PUSH",
"source": 2,
"value": "4"
},
{
"begin": 7206,
"end": 7221,
"name": "MSTORE",
"source": 2
},
{
"begin": 7240,
"end": 7244,
"name": "PUSH",
"source": 2,
"value": "24"
},
{
"begin": 7237,
"end": 7238,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 7230,
"end": 7245,
"name": "REVERT",
"source": 2
},
{
"begin": 7257,
"end": 7374,
"name": "tag",
"source": 2,
"value": "74"
},
{
"begin": 7257,
"end": 7374,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 7366,
"end": 7367,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 7363,
"end": 7364,
"name": "DUP1",
"source": 2
},
{
"begin": 7356,
"end": 7368,
"name": "REVERT",
"source": 2
},
{
"begin": 7380,
"end": 7497,
"name": "tag",
"source": 2,
"value": "67"
},
{
"begin": 7380,
"end": 7497,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 7489,
"end": 7490,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 7486,
"end": 7487,
"name": "DUP1",
"source": 2
},
{
"begin": 7479,
"end": 7491,
"name": "REVERT",
"source": 2
},
{
"begin": 7503,
"end": 7620,
"name": "tag",
"source": 2,
"value": "86"
},
{
"begin": 7503,
"end": 7620,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 7612,
"end": 7613,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 7609,
"end": 7610,
"name": "DUP1",
"source": 2
},
{
"begin": 7602,
"end": 7614,
"name": "REVERT",
"source": 2
},
{
"begin": 7626,
"end": 7743,
"name": "tag",
"source": 2,
"value": "83"
},
{
"begin": 7626,
"end": 7743,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 7735,
"end": 7736,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 7732,
"end": 7733,
"name": "DUP1",
"source": 2
},
{
"begin": 7725,
"end": 7737,
"name": "REVERT",
"source": 2
},
{
"begin": 7749,
"end": 7851,
"name": "tag",
"source": 2,
"value": "108"
},
{
"begin": 7749,
"end": 7851,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 7790,
"end": 7796,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 7841,
"end": 7843,
"name": "PUSH",
"source": 2,
"value": "1F"
},
{
"begin": 7837,
"end": 7844,
"name": "NOT",
"source": 2
},
{
"begin": 7832,
"end": 7834,
"name": "PUSH",
"source": 2,
"value": "1F"
},
{
"begin": 7825,
"end": 7830,
"name": "DUP4",
"source": 2
},
{
"begin": 7821,
"end": 7835,
"name": "ADD",
"source": 2
},
{
"begin": 7817,
"end": 7845,
"name": "AND",
"source": 2
},
{
"begin": 7807,
"end": 7845,
"name": "SWAP1",
"source": 2
},
{
"begin": 7807,
"end": 7845,
"name": "POP",
"source": 2
},
{
"begin": 7749,
"end": 7851,
"name": "SWAP2",
"source": 2
},
{
"begin": 7749,
"end": 7851,
"name": "SWAP1",
"source": 2
},
{
"begin": 7749,
"end": 7851,
"name": "POP",
"source": 2
},
{
"begin": 7749,
"end": 7851,
"name": "JUMP",
"source": 2,
"value": "[out]"
},
{
"begin": 7857,
"end": 7979,
"name": "tag",
"source": 2,
"value": "79"
},
{
"begin": 7857,
"end": 7979,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 7930,
"end": 7954,
"name": "PUSH [tag]",
"source": 2,
"value": "171"
},
{
"begin": 7948,
"end": 7953,
"name": "DUP2",
"source": 2
},
{
"begin": 7930,
"end": 7954,
"name": "PUSH [tag]",
"source": 2,
"value": "118"
},
{
"begin": 7930,
"end": 7954,
"name": "JUMP",
"source": 2,
"value": "[in]"
},
{
"begin": 7930,
"end": 7954,
"name": "tag",
"source": 2,
"value": "171"
},
{
"begin": 7930,
"end": 7954,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 7923,
"end": 7928,
"name": "DUP2",
"source": 2
},
{
"begin": 7920,
"end": 7955,
"name": "EQ",
"source": 2
},
{
"begin": 7910,
"end": 7973,
"name": "PUSH [tag]",
"source": 2,
"value": "172"
},
{
"begin": 7910,
"end": 7973,
"name": "JUMPI",
"source": 2
},
{
"begin": 7969,
"end": 7970,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 7966,
"end": 7967,
"name": "DUP1",
"source": 2
},
{
"begin": 7959,
"end": 7971,
"name": "REVERT",
"source": 2
},
{
"begin": 7910,
"end": 7973,
"name": "tag",
"source": 2,
"value": "172"
},
{
"begin": 7910,
"end": 7973,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 7857,
"end": 7979,
"name": "POP",
"source": 2
},
{
"begin": 7857,
"end": 7979,
"name": "JUMP",
"source": 2,
"value": "[out]"
}
]
}
}
},
"methodIdentifiers": {
"addPerson(string,uint256)": "6f760f41",
"nameToFavouriteNumber(string)": "b2ac62ef",
"people(uint256)": "9e7a13ad",
"retrieve()": "2e64cec1",
"store(uint256)": "6057361d"
}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.7+commit.e28d00a7\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"string\",\"name\":\"_name\",\"type\":\"string\"},{\"internalType\":\"uint256\",\"name\":\"_favouriteNumber\",\"type\":\"uint256\"}],\"name\":\"addPerson\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"name\":\"nameToFavouriteNumber\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"people\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"favNumber\",\"type\":\"uint256\"},{\"internalType\":\"string\",\"name\":\"name\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"retrieve\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_favNumber\",\"type\":\"uint256\"}],\"name\":\"store\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/ExtraStorage.sol\":\"ExtraStorage\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"contracts/ExtraStorage.sol\":{\"keccak256\":\"0xae7d43fe3b7c5c229b6bab8b7f8030214500e5880ee99640bf71d1c28d976d76\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0d9327cf83474bf10a76c9b81491284cc0c5ccce01377452cf1d654835b4a676\",\"dweb:/ipfs/QmNRAsYkXuT7BkKaXKx4ifdJdZXcc9PxbEjVvZZyDV4tBv\"]},\"contracts/SimpleStorage.sol\":{\"keccak256\":\"0x3b9274eebb254a97108cb057b3d3ae5785e2ed0ac8047bff8d42bd0c70adcb90\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e0b97817373873feb7faa46fd2962bab8b76f040b4240dac2d11b9d2a3872d7e\",\"dweb:/ipfs/QmdmzP9T9EV6VmZvSAgSxdhQea8ewz2nC5652QgDWtUZZL\"]}},\"version\":1}",
"storageLayout": {
"storage": [
{
"astId": 22,
"contract": "contracts/ExtraStorage.sol:ExtraStorage",
"label": "favouriteNumber",
"offset": 0,
"slot": "0",
"type": "t_uint256"
},
{
"astId": 26,
"contract": "contracts/ExtraStorage.sol:ExtraStorage",
"label": "nameToFavouriteNumber",
"offset": 0,
"slot": "1",
"type": "t_mapping(t_string_memory_ptr,t_uint256)"
},
{
"astId": 35,
"contract": "contracts/ExtraStorage.sol:ExtraStorage",
"label": "people",
"offset": 0,
"slot": "2",
"type": "t_array(t_struct(People)31_storage)dyn_storage"
}
],
"types": {
"t_array(t_struct(People)31_storage)dyn_storage": {
"base": "t_struct(People)31_storage",
"encoding": "dynamic_array",
"label": "struct SimpleStorage.People[]",
"numberOfBytes": "32"
},
"t_mapping(t_string_memory_ptr,t_uint256)": {
"encoding": "mapping",
"key": "t_string_memory_ptr",
"label": "mapping(string => uint256)",
"numberOfBytes": "32",
"value": "t_uint256"
},
"t_string_memory_ptr": {
"encoding": "bytes",
"label": "string",
"numberOfBytes": "32"
},
"t_string_storage": {
"encoding": "bytes",
"label": "string",
"numberOfBytes": "32"
},
"t_struct(People)31_storage": {
"encoding": "inplace",
"label": "struct SimpleStorage.People",
"members": [
{
"astId": 28,
"contract": "contracts/ExtraStorage.sol:ExtraStorage",
"label": "favNumber",
"offset": 0,
"slot": "0",
"type": "t_uint256"
},
{
"astId": 30,
"contract": "contracts/ExtraStorage.sol:ExtraStorage",
"label": "name",
"offset": 0,
"slot": "1",
"type": "t_string_storage"
}
],
"numberOfBytes": "64"
},
"t_uint256": {
"encoding": "inplace",
"label": "uint256",
"numberOfBytes": "32"
}
}
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
},
"contracts/SimpleStorage.sol": {
"SimpleStorage": {
"abi": [
{
"inputs": [
{
"internalType": "string",
"name": "_name",
"type": "string"
},
{
"internalType": "uint256",
"name": "_favouriteNumber",
"type": "uint256"
}
],
"name": "addPerson",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"name": "nameToFavouriteNumber",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "people",
"outputs": [
{
"internalType": "uint256",
"name": "favNumber",
"type": "uint256"
},
{
"internalType": "string",
"name": "name",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "retrieve",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_favNumber",
"type": "uint256"
}
],
"name": "store",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"evm": {
"assembly": " /* \"contracts/SimpleStorage.sol\":171:1591 contract SimpleStorage {... */\n mstore(0x40, 0x80)\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\ntag_1:\n pop\n dataSize(sub_0)\n dup1\n dataOffset(sub_0)\n 0x00\n codecopy\n 0x00\n return\nstop\n\nsub_0: assembly {\n /* \"contracts/SimpleStorage.sol\":171:1591 contract SimpleStorage {... */\n mstore(0x40, 0x80)\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\n tag_1:\n pop\n jumpi(tag_2, lt(calldatasize, 0x04))\n shr(0xe0, calldataload(0x00))\n dup1\n 0x2e64cec1\n eq\n tag_3\n jumpi\n dup1\n 0x6057361d\n eq\n tag_4\n jumpi\n dup1\n 0x6f760f41\n eq\n tag_5\n jumpi\n dup1\n 0x9e7a13ad\n eq\n tag_6\n jumpi\n dup1\n 0xb2ac62ef\n eq\n tag_7\n jumpi\n tag_2:\n 0x00\n dup1\n revert\n /* \"contracts/SimpleStorage.sol\":1097:1185 function retrieve() public view returns(uint256) {... */\n tag_3:\n tag_8\n tag_9\n jump\t// in\n tag_8:\n mload(0x40)\n tag_10\n swap2\n swap1\n tag_11\n jump\t// in\n tag_10:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/SimpleStorage.sol\":871:1042 function store(uint256 _favNumber) public virtual {... */\n tag_4:\n tag_12\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_13\n swap2\n swap1\n tag_14\n jump\t// in\n tag_13:\n tag_15\n jump\t// in\n tag_12:\n stop\n /* \"contracts/SimpleStorage.sol\":1332:1589 function addPerson(string memory _name, uint256 _favouriteNumber) public {... */\n tag_5:\n tag_16\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_17\n swap2\n swap1\n tag_18\n jump\t// in\n tag_17:\n tag_19\n jump\t// in\n tag_16:\n stop\n /* \"contracts/SimpleStorage.sol\":778:800 People[] public people */\n tag_6:\n tag_20\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_21\n swap2\n swap1\n tag_14\n jump\t// in\n tag_21:\n tag_22\n jump\t// in\n tag_20:\n mload(0x40)\n tag_23\n swap3\n swap2\n swap1\n tag_24\n jump\t// in\n tag_23:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/SimpleStorage.sol\":631:686 mapping(string => uint256) public nameToFavouriteNumber */\n tag_7:\n tag_25\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_26\n swap2\n swap1\n tag_27\n jump\t// in\n tag_26:\n tag_28\n jump\t// in\n tag_25:\n mload(0x40)\n tag_29\n swap2\n swap1\n tag_11\n jump\t// in\n tag_29:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/SimpleStorage.sol\":1097:1185 function retrieve() public view returns(uint256) {... */\n tag_9:\n /* \"contracts/SimpleStorage.sol\":1137:1144 uint256 */\n 0x00\n /* \"contracts/SimpleStorage.sol\":1163:1178 favouriteNumber */\n dup1\n sload\n /* \"contracts/SimpleStorage.sol\":1156:1178 return favouriteNumber */\n swap1\n pop\n /* \"contracts/SimpleStorage.sol\":1097:1185 function retrieve() public view returns(uint256) {... */\n swap1\n jump\t// out\n /* \"contracts/SimpleStorage.sol\":871:1042 function store(uint256 _favNumber) public virtual {... */\n tag_15:\n /* \"contracts/SimpleStorage.sol\":949:959 _favNumber */\n dup1\n /* \"contracts/SimpleStorage.sol\":931:946 favouriteNumber */\n 0x00\n /* \"contracts/SimpleStorage.sol\":931:959 favouriteNumber = _favNumber */\n dup2\n swap1\n sstore\n pop\n /* \"contracts/SimpleStorage.sol\":871:1042 function store(uint256 _favNumber) public virtual {... */\n pop\n jump\t// out\n /* \"contracts/SimpleStorage.sol\":1332:1589 function addPerson(string memory _name, uint256 _favouriteNumber) public {... */\n tag_19:\n /* \"contracts/SimpleStorage.sol\":1415:1438 People memory newPerson */\n 0x00\n /* \"contracts/SimpleStorage.sol\":1441:1493 People({ favNumber: _favouriteNumber, name: _name }) */\n mload(0x40)\n dup1\n 0x40\n add\n 0x40\n mstore\n dup1\n /* \"contracts/SimpleStorage.sol\":1461:1477 _favouriteNumber */\n dup4\n /* \"contracts/SimpleStorage.sol\":1441:1493 People({ favNumber: _favouriteNumber, name: _name }) */\n dup2\n mstore\n 0x20\n add\n /* \"contracts/SimpleStorage.sol\":1485:1490 _name */\n dup5\n /* \"contracts/SimpleStorage.sol\":1441:1493 People({ favNumber: _favouriteNumber, name: _name }) */\n dup2\n mstore\n pop\n /* \"contracts/SimpleStorage.sol\":1415:1493 People memory newPerson = People({ favNumber: _favouriteNumber, name: _name }) */\n swap1\n pop\n /* \"contracts/SimpleStorage.sol\":1503:1509 people */\n 0x02\n /* \"contracts/SimpleStorage.sol\":1515:1524 newPerson */\n dup2\n /* \"contracts/SimpleStorage.sol\":1503:1525 people.push(newPerson) */\n swap1\n dup1\n 0x01\n dup2\n sload\n add\n dup1\n dup3\n sstore\n dup1\n swap2\n pop\n pop\n 0x01\n swap1\n sub\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n 0x02\n mul\n add\n 0x00\n swap1\n swap2\n swap1\n swap2\n swap1\n swap2\n pop\n 0x00\n dup3\n add\n mload\n dup2\n 0x00\n add\n sstore\n 0x20\n dup3\n add\n mload\n dup2\n 0x01\n add\n swap1\n dup1\n mload\n swap1\n 0x20\n add\n swap1\n tag_34\n swap3\n swap2\n swap1\n tag_35\n jump\t// in\n tag_34:\n pop\n pop\n pop\n /* \"contracts/SimpleStorage.sol\":1566:1582 _favouriteNumber */\n dup2\n /* \"contracts/SimpleStorage.sol\":1535:1556 nameToFavouriteNumber */\n 0x01\n /* \"contracts/SimpleStorage.sol\":1557:1562 _name */\n dup5\n /* \"contracts/SimpleStorage.sol\":1535:1563 nameToFavouriteNumber[_name] */\n mload(0x40)\n tag_36\n swap2\n swap1\n tag_37\n jump\t// in\n tag_36:\n swap1\n dup2\n mstore\n 0x20\n add\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n keccak256\n /* \"contracts/SimpleStorage.sol\":1535:1582 nameToFavouriteNumber[_name] = _favouriteNumber */\n dup2\n swap1\n sstore\n pop\n /* \"contracts/SimpleStorage.sol\":1405:1589 {... */\n pop\n /* \"contracts/SimpleStorage.sol\":1332:1589 function addPerson(string memory _name, uint256 _favouriteNumber) public {... */\n pop\n pop\n jump\t// out\n /* \"contracts/SimpleStorage.sol\":778:800 People[] public people */\n tag_22:\n 0x02\n dup2\n dup2\n sload\n dup2\n lt\n tag_38\n jumpi\n 0x00\n dup1\n revert\n tag_38:\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n 0x02\n mul\n add\n 0x00\n swap2\n pop\n swap1\n pop\n dup1\n 0x00\n add\n sload\n swap1\n dup1\n 0x01\n add\n dup1\n sload\n tag_40\n swap1\n tag_41\n jump\t// in\n tag_40:\n dup1\n 0x1f\n add\n 0x20\n dup1\n swap2\n div\n mul\n 0x20\n add\n mload(0x40)\n swap1\n dup2\n add\n 0x40\n mstore\n dup1\n swap3\n swap2\n swap1\n dup2\n dup2\n mstore\n 0x20\n add\n dup3\n dup1\n sload\n tag_42\n swap1\n tag_41\n jump\t// in\n tag_42:\n dup1\n iszero\n tag_43\n jumpi\n dup1\n 0x1f\n lt\n tag_44\n jumpi\n 0x0100\n dup1\n dup4\n sload\n div\n mul\n dup4\n mstore\n swap2\n 0x20\n add\n swap2\n jump(tag_43)\n tag_44:\n dup3\n add\n swap2\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n tag_45:\n dup2\n sload\n dup2\n mstore\n swap1\n 0x01\n add\n swap1\n 0x20\n add\n dup1\n dup4\n gt\n tag_45\n jumpi\n dup3\n swap1\n sub\n 0x1f\n and\n dup3\n add\n swap2\n tag_43:\n pop\n pop\n pop\n pop\n pop\n swap1\n pop\n dup3\n jump\t// out\n /* \"contracts/SimpleStorage.sol\":631:686 mapping(string => uint256) public nameToFavouriteNumber */\n tag_28:\n 0x01\n dup2\n dup1\n mload\n 0x20\n dup2\n add\n dup3\n add\n dup1\n mload\n dup5\n dup3\n mstore\n 0x20\n dup4\n add\n 0x20\n dup6\n add\n keccak256\n dup2\n dup4\n mstore\n dup1\n swap6\n pop\n pop\n pop\n pop\n pop\n pop\n 0x00\n swap2\n pop\n swap1\n pop\n sload\n dup2\n jump\t// out\n tag_35:\n dup3\n dup1\n sload\n tag_46\n swap1\n tag_41\n jump\t// in\n tag_46:\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n 0x1f\n add\n 0x20\n swap1\n div\n dup2\n add\n swap3\n dup3\n tag_48\n jumpi\n 0x00\n dup6\n sstore\n jump(tag_47)\n tag_48:\n dup3\n 0x1f\n lt\n tag_49\n jumpi\n dup1\n mload\n not(0xff)\n and\n dup4\n dup1\n add\n or\n dup6\n sstore\n jump(tag_47)\n tag_49:\n dup3\n dup1\n add\n 0x01\n add\n dup6\n sstore\n dup3\n iszero\n tag_47\n jumpi\n swap2\n dup3\n add\n tag_50:\n dup3\n dup2\n gt\n iszero\n tag_51\n jumpi\n dup3\n mload\n dup3\n sstore\n swap2\n 0x20\n add\n swap2\n swap1\n 0x01\n add\n swap1\n jump(tag_50)\n tag_51:\n tag_47:\n pop\n swap1\n pop\n tag_52\n swap2\n swap1\n tag_53\n jump\t// in\n tag_52:\n pop\n swap1\n jump\t// out\n tag_53:\n tag_54:\n dup1\n dup3\n gt\n iszero\n tag_55\n jumpi\n 0x00\n dup2\n 0x00\n swap1\n sstore\n pop\n 0x01\n add\n jump(tag_54)\n tag_55:\n pop\n swap1\n jump\t// out\n /* \"#utility.yul\":7:419 */\n tag_57:\n /* \"#utility.yul\":85:90 */\n 0x00\n /* \"#utility.yul\":110:176 */\n tag_59\n /* \"#utility.yul\":126:175 */\n tag_60\n /* \"#utility.yul\":168:174 */\n dup5\n /* \"#utility.yul\":126:175 */\n tag_61\n jump\t// in\n tag_60:\n /* \"#utility.yul\":110:176 */\n tag_62\n jump\t// in\n tag_59:\n /* \"#utility.yul\":101:176 */\n swap1\n pop\n /* \"#utility.yul\":199:205 */\n dup3\n /* \"#utility.yul\":192:197 */\n dup2\n /* \"#utility.yul\":185:206 */\n mstore\n /* \"#utility.yul\":237:241 */\n 0x20\n /* \"#utility.yul\":230:235 */\n dup2\n /* \"#utility.yul\":226:242 */\n add\n /* \"#utility.yul\":275:278 */\n dup5\n /* \"#utility.yul\":266:272 */\n dup5\n /* \"#utility.yul\":261:264 */\n dup5\n /* \"#utility.yul\":257:273 */\n add\n /* \"#utility.yul\":254:279 */\n gt\n /* \"#utility.yul\":251:363 */\n iszero\n tag_63\n jumpi\n /* \"#utility.yul\":282:361 */\n tag_64\n tag_65\n jump\t// in\n tag_64:\n /* \"#utility.yul\":251:363 */\n tag_63:\n /* \"#utility.yul\":372:413 */\n tag_66\n /* \"#utility.yul\":406:412 */\n dup5\n /* \"#utility.yul\":401:404 */\n dup3\n /* \"#utility.yul\":396:399 */\n dup6\n /* \"#utility.yul\":372:413 */\n tag_67\n jump\t// in\n tag_66:\n /* \"#utility.yul\":91:419 */\n pop\n /* \"#utility.yul\":7:419 */\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":439:779 */\n tag_68:\n /* \"#utility.yul\":495:500 */\n 0x00\n /* \"#utility.yul\":544:547 */\n dup3\n /* \"#utility.yul\":537:541 */\n 0x1f\n /* \"#utility.yul\":529:535 */\n dup4\n /* \"#utility.yul\":525:542 */\n add\n /* \"#utility.yul\":521:548 */\n slt\n /* \"#utility.yul\":511:633 */\n tag_70\n jumpi\n /* \"#utility.yul\":552:631 */\n tag_71\n tag_72\n jump\t// in\n tag_71:\n /* \"#utility.yul\":511:633 */\n tag_70:\n /* \"#utility.yul\":669:675 */\n dup2\n /* \"#utility.yul\":656:676 */\n calldataload\n /* \"#utility.yul\":694:773 */\n tag_73\n /* \"#utility.yul\":769:772 */\n dup5\n /* \"#utility.yul\":761:767 */\n dup3\n /* \"#utility.yul\":754:758 */\n 0x20\n /* \"#utility.yul\":746:752 */\n dup7\n /* \"#utility.yul\":742:759 */\n add\n /* \"#utility.yul\":694:773 */\n tag_57\n jump\t// in\n tag_73:\n /* \"#utility.yul\":685:773 */\n swap2\n pop\n /* \"#utility.yul\":501:779 */\n pop\n /* \"#utility.yul\":439:779 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":785:924 */\n tag_74:\n /* \"#utility.yul\":831:836 */\n 0x00\n /* \"#utility.yul\":869:875 */\n dup2\n /* \"#utility.yul\":856:876 */\n calldataload\n /* \"#utility.yul\":847:876 */\n swap1\n pop\n /* \"#utility.yul\":885:918 */\n tag_76\n /* \"#utility.yul\":912:917 */\n dup2\n /* \"#utility.yul\":885:918 */\n tag_77\n jump\t// in\n tag_76:\n /* \"#utility.yul\":785:924 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":930:1439 */\n tag_27:\n /* \"#utility.yul\":999:1005 */\n 0x00\n /* \"#utility.yul\":1048:1050 */\n 0x20\n /* \"#utility.yul\":1036:1045 */\n dup3\n /* \"#utility.yul\":1027:1034 */\n dup5\n /* \"#utility.yul\":1023:1046 */\n sub\n /* \"#utility.yul\":1019:1051 */\n slt\n /* \"#utility.yul\":1016:1135 */\n iszero\n tag_79\n jumpi\n /* \"#utility.yul\":1054:1133 */\n tag_80\n tag_81\n jump\t// in\n tag_80:\n /* \"#utility.yul\":1016:1135 */\n tag_79:\n /* \"#utility.yul\":1202:1203 */\n 0x00\n /* \"#utility.yul\":1191:1200 */\n dup3\n /* \"#utility.yul\":1187:1204 */\n add\n /* \"#utility.yul\":1174:1205 */\n calldataload\n /* \"#utility.yul\":1232:1250 */\n 0xffffffffffffffff\n /* \"#utility.yul\":1224:1230 */\n dup2\n /* \"#utility.yul\":1221:1251 */\n gt\n /* \"#utility.yul\":1218:1335 */\n iszero\n tag_82\n jumpi\n /* \"#utility.yul\":1254:1333 */\n tag_83\n tag_84\n jump\t// in\n tag_83:\n /* \"#utility.yul\":1218:1335 */\n tag_82:\n /* \"#utility.yul\":1359:1422 */\n tag_85\n /* \"#utility.yul\":1414:1421 */\n dup5\n /* \"#utility.yul\":1405:1411 */\n dup3\n /* \"#utility.yul\":1394:1403 */\n dup6\n /* \"#utility.yul\":1390:1412 */\n add\n /* \"#utility.yul\":1359:1422 */\n tag_68\n jump\t// in\n tag_85:\n /* \"#utility.yul\":1349:1422 */\n swap2\n pop\n /* \"#utility.yul\":1145:1432 */\n pop\n /* \"#utility.yul\":930:1439 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1445:2099 */\n tag_18:\n /* \"#utility.yul\":1523:1529 */\n 0x00\n /* \"#utility.yul\":1531:1537 */\n dup1\n /* \"#utility.yul\":1580:1582 */\n 0x40\n /* \"#utility.yul\":1568:1577 */\n dup4\n /* \"#utility.yul\":1559:1566 */\n dup6\n /* \"#utility.yul\":1555:1578 */\n sub\n /* \"#utility.yul\":1551:1583 */\n slt\n /* \"#utility.yul\":1548:1667 */\n iszero\n tag_87\n jumpi\n /* \"#utility.yul\":1586:1665 */\n tag_88\n tag_81\n jump\t// in\n tag_88:\n /* \"#utility.yul\":1548:1667 */\n tag_87:\n /* \"#utility.yul\":1734:1735 */\n 0x00\n /* \"#utility.yul\":1723:1732 */\n dup4\n /* \"#utility.yul\":1719:1736 */\n add\n /* \"#utility.yul\":1706:1737 */\n calldataload\n /* \"#utility.yul\":1764:1782 */\n 0xffffffffffffffff\n /* \"#utility.yul\":1756:1762 */\n dup2\n /* \"#utility.yul\":1753:1783 */\n gt\n /* \"#utility.yul\":1750:1867 */\n iszero\n tag_89\n jumpi\n /* \"#utility.yul\":1786:1865 */\n tag_90\n tag_84\n jump\t// in\n tag_90:\n /* \"#utility.yul\":1750:1867 */\n tag_89:\n /* \"#utility.yul\":1891:1954 */\n tag_91\n /* \"#utility.yul\":1946:1953 */\n dup6\n /* \"#utility.yul\":1937:1943 */\n dup3\n /* \"#utility.yul\":1926:1935 */\n dup7\n /* \"#utility.yul\":1922:1944 */\n add\n /* \"#utility.yul\":1891:1954 */\n tag_68\n jump\t// in\n tag_91:\n /* \"#utility.yul\":1881:1954 */\n swap3\n pop\n /* \"#utility.yul\":1677:1964 */\n pop\n /* \"#utility.yul\":2003:2005 */\n 0x20\n /* \"#utility.yul\":2029:2082 */\n tag_92\n /* \"#utility.yul\":2074:2081 */\n dup6\n /* \"#utility.yul\":2065:2071 */\n dup3\n /* \"#utility.yul\":2054:2063 */\n dup7\n /* \"#utility.yul\":2050:2072 */\n add\n /* \"#utility.yul\":2029:2082 */\n tag_74\n jump\t// in\n tag_92:\n /* \"#utility.yul\":2019:2082 */\n swap2\n pop\n /* \"#utility.yul\":1974:2092 */\n pop\n /* \"#utility.yul\":1445:2099 */\n swap3\n pop\n swap3\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":2105:2434 */\n tag_14:\n /* \"#utility.yul\":2164:2170 */\n 0x00\n /* \"#utility.yul\":2213:2215 */\n 0x20\n /* \"#utility.yul\":2201:2210 */\n dup3\n /* \"#utility.yul\":2192:2199 */\n dup5\n /* \"#utility.yul\":2188:2211 */\n sub\n /* \"#utility.yul\":2184:2216 */\n slt\n /* \"#utility.yul\":2181:2300 */\n iszero\n tag_94\n jumpi\n /* \"#utility.yul\":2219:2298 */\n tag_95\n tag_81\n jump\t// in\n tag_95:\n /* \"#utility.yul\":2181:2300 */\n tag_94:\n /* \"#utility.yul\":2339:2340 */\n 0x00\n /* \"#utility.yul\":2364:2417 */\n tag_96\n /* \"#utility.yul\":2409:2416 */\n dup5\n /* \"#utility.yul\":2400:2406 */\n dup3\n /* \"#utility.yul\":2389:2398 */\n dup6\n /* \"#utility.yul\":2385:2407 */\n add\n /* \"#utility.yul\":2364:2417 */\n tag_74\n jump\t// in\n tag_96:\n /* \"#utility.yul\":2354:2417 */\n swap2\n pop\n /* \"#utility.yul\":2310:2427 */\n pop\n /* \"#utility.yul\":2105:2434 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2440:2804 */\n tag_97:\n /* \"#utility.yul\":2528:2531 */\n 0x00\n /* \"#utility.yul\":2556:2595 */\n tag_99\n /* \"#utility.yul\":2589:2594 */\n dup3\n /* \"#utility.yul\":2556:2595 */\n tag_100\n jump\t// in\n tag_99:\n /* \"#utility.yul\":2611:2682 */\n tag_101\n /* \"#utility.yul\":2675:2681 */\n dup2\n /* \"#utility.yul\":2670:2673 */\n dup6\n /* \"#utility.yul\":2611:2682 */\n tag_102\n jump\t// in\n tag_101:\n /* \"#utility.yul\":2604:2682 */\n swap4\n pop\n /* \"#utility.yul\":2691:2743 */\n tag_103\n /* \"#utility.yul\":2736:2742 */\n dup2\n /* \"#utility.yul\":2731:2734 */\n dup6\n /* \"#utility.yul\":2724:2728 */\n 0x20\n /* \"#utility.yul\":2717:2722 */\n dup7\n /* \"#utility.yul\":2713:2729 */\n add\n /* \"#utility.yul\":2691:2743 */\n tag_104\n jump\t// in\n tag_103:\n /* \"#utility.yul\":2768:2797 */\n tag_105\n /* \"#utility.yul\":2790:2796 */\n dup2\n /* \"#utility.yul\":2768:2797 */\n tag_106\n jump\t// in\n tag_105:\n /* \"#utility.yul\":2763:2766 */\n dup5\n /* \"#utility.yul\":2759:2798 */\n add\n /* \"#utility.yul\":2752:2798 */\n swap2\n pop\n /* \"#utility.yul\":2532:2804 */\n pop\n /* \"#utility.yul\":2440:2804 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2810:3187 */\n tag_107:\n /* \"#utility.yul\":2916:2919 */\n 0x00\n /* \"#utility.yul\":2944:2983 */\n tag_109\n /* \"#utility.yul\":2977:2982 */\n dup3\n /* \"#utility.yul\":2944:2983 */\n tag_100\n jump\t// in\n tag_109:\n /* \"#utility.yul\":2999:3088 */\n tag_110\n /* \"#utility.yul\":3081:3087 */\n dup2\n /* \"#utility.yul\":3076:3079 */\n dup6\n /* \"#utility.yul\":2999:3088 */\n tag_111\n jump\t// in\n tag_110:\n /* \"#utility.yul\":2992:3088 */\n swap4\n pop\n /* \"#utility.yul\":3097:3149 */\n tag_112\n /* \"#utility.yul\":3142:3148 */\n dup2\n /* \"#utility.yul\":3137:3140 */\n dup6\n /* \"#utility.yul\":3130:3134 */\n 0x20\n /* \"#utility.yul\":3123:3128 */\n dup7\n /* \"#utility.yul\":3119:3135 */\n add\n /* \"#utility.yul\":3097:3149 */\n tag_104\n jump\t// in\n tag_112:\n /* \"#utility.yul\":3174:3180 */\n dup1\n /* \"#utility.yul\":3169:3172 */\n dup5\n /* \"#utility.yul\":3165:3181 */\n add\n /* \"#utility.yul\":3158:3181 */\n swap2\n pop\n /* \"#utility.yul\":2920:3187 */\n pop\n /* \"#utility.yul\":2810:3187 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3193:3311 */\n tag_113:\n /* \"#utility.yul\":3280:3304 */\n tag_115\n /* \"#utility.yul\":3298:3303 */\n dup2\n /* \"#utility.yul\":3280:3304 */\n tag_116\n jump\t// in\n tag_115:\n /* \"#utility.yul\":3275:3278 */\n dup3\n /* \"#utility.yul\":3268:3305 */\n mstore\n /* \"#utility.yul\":3193:3311 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3317:3592 */\n tag_37:\n /* \"#utility.yul\":3449:3452 */\n 0x00\n /* \"#utility.yul\":3471:3566 */\n tag_118\n /* \"#utility.yul\":3562:3565 */\n dup3\n /* \"#utility.yul\":3553:3559 */\n dup5\n /* \"#utility.yul\":3471:3566 */\n tag_107\n jump\t// in\n tag_118:\n /* \"#utility.yul\":3464:3566 */\n swap2\n pop\n /* \"#utility.yul\":3583:3586 */\n dup2\n /* \"#utility.yul\":3576:3586 */\n swap1\n pop\n /* \"#utility.yul\":3317:3592 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3598:3820 */\n tag_11:\n /* \"#utility.yul\":3691:3695 */\n 0x00\n /* \"#utility.yul\":3729:3731 */\n 0x20\n /* \"#utility.yul\":3718:3727 */\n dup3\n /* \"#utility.yul\":3714:3732 */\n add\n /* \"#utility.yul\":3706:3732 */\n swap1\n pop\n /* \"#utility.yul\":3742:3813 */\n tag_120\n /* \"#utility.yul\":3810:3811 */\n 0x00\n /* \"#utility.yul\":3799:3808 */\n dup4\n /* \"#utility.yul\":3795:3812 */\n add\n /* \"#utility.yul\":3786:3792 */\n dup5\n /* \"#utility.yul\":3742:3813 */\n tag_113\n jump\t// in\n tag_120:\n /* \"#utility.yul\":3598:3820 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3826:4249 */\n tag_24:\n /* \"#utility.yul\":3967:3971 */\n 0x00\n /* \"#utility.yul\":4005:4007 */\n 0x40\n /* \"#utility.yul\":3994:4003 */\n dup3\n /* \"#utility.yul\":3990:4008 */\n add\n /* \"#utility.yul\":3982:4008 */\n swap1\n pop\n /* \"#utility.yul\":4018:4089 */\n tag_122\n /* \"#utility.yul\":4086:4087 */\n 0x00\n /* \"#utility.yul\":4075:4084 */\n dup4\n /* \"#utility.yul\":4071:4088 */\n add\n /* \"#utility.yul\":4062:4068 */\n dup6\n /* \"#utility.yul\":4018:4089 */\n tag_113\n jump\t// in\n tag_122:\n /* \"#utility.yul\":4136:4145 */\n dup2\n /* \"#utility.yul\":4130:4134 */\n dup2\n /* \"#utility.yul\":4126:4146 */\n sub\n /* \"#utility.yul\":4121:4123 */\n 0x20\n /* \"#utility.yul\":4110:4119 */\n dup4\n /* \"#utility.yul\":4106:4124 */\n add\n /* \"#utility.yul\":4099:4147 */\n mstore\n /* \"#utility.yul\":4164:4242 */\n tag_123\n /* \"#utility.yul\":4237:4241 */\n dup2\n /* \"#utility.yul\":4228:4234 */\n dup5\n /* \"#utility.yul\":4164:4242 */\n tag_97\n jump\t// in\n tag_123:\n /* \"#utility.yul\":4156:4242 */\n swap1\n pop\n /* \"#utility.yul\":3826:4249 */\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":4255:4384 */\n tag_62:\n /* \"#utility.yul\":4289:4295 */\n 0x00\n /* \"#utility.yul\":4316:4336 */\n tag_125\n tag_126\n jump\t// in\n tag_125:\n /* \"#utility.yul\":4306:4336 */\n swap1\n pop\n /* \"#utility.yul\":4345:4378 */\n tag_127\n /* \"#utility.yul\":4373:4377 */\n dup3\n /* \"#utility.yul\":4365:4371 */\n dup3\n /* \"#utility.yul\":4345:4378 */\n tag_128\n jump\t// in\n tag_127:\n /* \"#utility.yul\":4255:4384 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":4390:4465 */\n tag_126:\n /* \"#utility.yul\":4423:4429 */\n 0x00\n /* \"#utility.yul\":4456:4458 */\n 0x40\n /* \"#utility.yul\":4450:4459 */\n mload\n /* \"#utility.yul\":4440:4459 */\n swap1\n pop\n /* \"#utility.yul\":4390:4465 */\n swap1\n jump\t// out\n /* \"#utility.yul\":4471:4779 */\n tag_61:\n /* \"#utility.yul\":4533:4537 */\n 0x00\n /* \"#utility.yul\":4623:4641 */\n 0xffffffffffffffff\n /* \"#utility.yul\":4615:4621 */\n dup3\n /* \"#utility.yul\":4612:4642 */\n gt\n /* \"#utility.yul\":4609:4665 */\n iszero\n tag_131\n jumpi\n /* \"#utility.yul\":4645:4663 */\n tag_132\n tag_133\n jump\t// in\n tag_132:\n /* \"#utility.yul\":4609:4665 */\n tag_131:\n /* \"#utility.yul\":4683:4712 */\n tag_134\n /* \"#utility.yul\":4705:4711 */\n dup3\n /* \"#utility.yul\":4683:4712 */\n tag_106\n jump\t// in\n tag_134:\n /* \"#utility.yul\":4675:4712 */\n swap1\n pop\n /* \"#utility.yul\":4767:4771 */\n 0x20\n /* \"#utility.yul\":4761:4765 */\n dup2\n /* \"#utility.yul\":4757:4772 */\n add\n /* \"#utility.yul\":4749:4772 */\n swap1\n pop\n /* \"#utility.yul\":4471:4779 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":4785:4884 */\n tag_100:\n /* \"#utility.yul\":4837:4843 */\n 0x00\n /* \"#utility.yul\":4871:4876 */\n dup2\n /* \"#utility.yul\":4865:4877 */\n mload\n /* \"#utility.yul\":4855:4877 */\n swap1\n pop\n /* \"#utility.yul\":4785:4884 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":4890:5059 */\n tag_102:\n /* \"#utility.yul\":4974:4985 */\n 0x00\n /* \"#utility.yul\":5008:5014 */\n dup3\n /* \"#utility.yul\":5003:5006 */\n dup3\n /* \"#utility.yul\":4996:5015 */\n mstore\n /* \"#utility.yul\":5048:5052 */\n 0x20\n /* \"#utility.yul\":5043:5046 */\n dup3\n /* \"#utility.yul\":5039:5053 */\n add\n /* \"#utility.yul\":5024:5053 */\n swap1\n pop\n /* \"#utility.yul\":4890:5059 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5065:5213 */\n tag_111:\n /* \"#utility.yul\":5167:5178 */\n 0x00\n /* \"#utility.yul\":5204:5207 */\n dup2\n /* \"#utility.yul\":5189:5207 */\n swap1\n pop\n /* \"#utility.yul\":5065:5213 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5219:5296 */\n tag_116:\n /* \"#utility.yul\":5256:5263 */\n 0x00\n /* \"#utility.yul\":5285:5290 */\n dup2\n /* \"#utility.yul\":5274:5290 */\n swap1\n pop\n /* \"#utility.yul\":5219:5296 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":5302:5456 */\n tag_67:\n /* \"#utility.yul\":5386:5392 */\n dup3\n /* \"#utility.yul\":5381:5384 */\n dup2\n /* \"#utility.yul\":5376:5379 */\n dup4\n /* \"#utility.yul\":5363:5393 */\n calldatacopy\n /* \"#utility.yul\":5448:5449 */\n 0x00\n /* \"#utility.yul\":5439:5445 */\n dup4\n /* \"#utility.yul\":5434:5437 */\n dup4\n /* \"#utility.yul\":5430:5446 */\n add\n /* \"#utility.yul\":5423:5450 */\n mstore\n /* \"#utility.yul\":5302:5456 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5462:5769 */\n tag_104:\n /* \"#utility.yul\":5530:5531 */\n 0x00\n /* \"#utility.yul\":5540:5653 */\n tag_141:\n /* \"#utility.yul\":5554:5560 */\n dup4\n /* \"#utility.yul\":5551:5552 */\n dup2\n /* \"#utility.yul\":5548:5561 */\n lt\n /* \"#utility.yul\":5540:5653 */\n iszero\n tag_143\n jumpi\n /* \"#utility.yul\":5639:5640 */\n dup1\n /* \"#utility.yul\":5634:5637 */\n dup3\n /* \"#utility.yul\":5630:5641 */\n add\n /* \"#utility.yul\":5624:5642 */\n mload\n /* \"#utility.yul\":5620:5621 */\n dup2\n /* \"#utility.yul\":5615:5618 */\n dup5\n /* \"#utility.yul\":5611:5622 */\n add\n /* \"#utility.yul\":5604:5643 */\n mstore\n /* \"#utility.yul\":5576:5578 */\n 0x20\n /* \"#utility.yul\":5573:5574 */\n dup2\n /* \"#utility.yul\":5569:5579 */\n add\n /* \"#utility.yul\":5564:5579 */\n swap1\n pop\n /* \"#utility.yul\":5540:5653 */\n jump(tag_141)\n tag_143:\n /* \"#utility.yul\":5671:5677 */\n dup4\n /* \"#utility.yul\":5668:5669 */\n dup2\n /* \"#utility.yul\":5665:5678 */\n gt\n /* \"#utility.yul\":5662:5763 */\n iszero\n tag_144\n jumpi\n /* \"#utility.yul\":5751:5752 */\n 0x00\n /* \"#utility.yul\":5742:5748 */\n dup5\n /* \"#utility.yul\":5737:5740 */\n dup5\n /* \"#utility.yul\":5733:5749 */\n add\n /* \"#utility.yul\":5726:5753 */\n mstore\n /* \"#utility.yul\":5662:5763 */\n tag_144:\n /* \"#utility.yul\":5511:5769 */\n pop\n /* \"#utility.yul\":5462:5769 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5775:6095 */\n tag_41:\n /* \"#utility.yul\":5819:5825 */\n 0x00\n /* \"#utility.yul\":5856:5857 */\n 0x02\n /* \"#utility.yul\":5850:5854 */\n dup3\n /* \"#utility.yul\":5846:5858 */\n div\n /* \"#utility.yul\":5836:5858 */\n swap1\n pop\n /* \"#utility.yul\":5903:5904 */\n 0x01\n /* \"#utility.yul\":5897:5901 */\n dup3\n /* \"#utility.yul\":5893:5905 */\n and\n /* \"#utility.yul\":5924:5942 */\n dup1\n /* \"#utility.yul\":5914:5995 */\n tag_146\n jumpi\n /* \"#utility.yul\":5980:5984 */\n 0x7f\n /* \"#utility.yul\":5972:5978 */\n dup3\n /* \"#utility.yul\":5968:5985 */\n and\n /* \"#utility.yul\":5958:5985 */\n swap2\n pop\n /* \"#utility.yul\":5914:5995 */\n tag_146:\n /* \"#utility.yul\":6042:6044 */\n 0x20\n /* \"#utility.yul\":6034:6040 */\n dup3\n /* \"#utility.yul\":6031:6045 */\n lt\n /* \"#utility.yul\":6011:6029 */\n dup2\n /* \"#utility.yul\":6008:6046 */\n eq\n /* \"#utility.yul\":6005:6089 */\n iszero\n tag_147\n jumpi\n /* \"#utility.yul\":6061:6079 */\n tag_148\n tag_149\n jump\t// in\n tag_148:\n /* \"#utility.yul\":6005:6089 */\n tag_147:\n /* \"#utility.yul\":5826:6095 */\n pop\n /* \"#utility.yul\":5775:6095 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":6101:6382 */\n tag_128:\n /* \"#utility.yul\":6184:6211 */\n tag_151\n /* \"#utility.yul\":6206:6210 */\n dup3\n /* \"#utility.yul\":6184:6211 */\n tag_106\n jump\t// in\n tag_151:\n /* \"#utility.yul\":6176:6182 */\n dup2\n /* \"#utility.yul\":6172:6212 */\n add\n /* \"#utility.yul\":6314:6320 */\n dup2\n /* \"#utility.yul\":6302:6312 */\n dup2\n /* \"#utility.yul\":6299:6321 */\n lt\n /* \"#utility.yul\":6278:6296 */\n 0xffffffffffffffff\n /* \"#utility.yul\":6266:6276 */\n dup3\n /* \"#utility.yul\":6263:6297 */\n gt\n /* \"#utility.yul\":6260:6322 */\n or\n /* \"#utility.yul\":6257:6345 */\n iszero\n tag_152\n jumpi\n /* \"#utility.yul\":6325:6343 */\n tag_153\n tag_133\n jump\t// in\n tag_153:\n /* \"#utility.yul\":6257:6345 */\n tag_152:\n /* \"#utility.yul\":6365:6375 */\n dup1\n /* \"#utility.yul\":6361:6363 */\n 0x40\n /* \"#utility.yul\":6354:6376 */\n mstore\n /* \"#utility.yul\":6144:6382 */\n pop\n /* \"#utility.yul\":6101:6382 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":6388:6568 */\n tag_149:\n /* \"#utility.yul\":6436:6513 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":6433:6434 */\n 0x00\n /* \"#utility.yul\":6426:6514 */\n mstore\n /* \"#utility.yul\":6533:6537 */\n 0x22\n /* \"#utility.yul\":6530:6531 */\n 0x04\n /* \"#utility.yul\":6523:6538 */\n mstore\n /* \"#utility.yul\":6557:6561 */\n 0x24\n /* \"#utility.yul\":6554:6555 */\n 0x00\n /* \"#utility.yul\":6547:6562 */\n revert\n /* \"#utility.yul\":6574:6754 */\n tag_133:\n /* \"#utility.yul\":6622:6699 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":6619:6620 */\n 0x00\n /* \"#utility.yul\":6612:6700 */\n mstore\n /* \"#utility.yul\":6719:6723 */\n 0x41\n /* \"#utility.yul\":6716:6717 */\n 0x04\n /* \"#utility.yul\":6709:6724 */\n mstore\n /* \"#utility.yul\":6743:6747 */\n 0x24\n /* \"#utility.yul\":6740:6741 */\n 0x00\n /* \"#utility.yul\":6733:6748 */\n revert\n /* \"#utility.yul\":6760:6877 */\n tag_72:\n /* \"#utility.yul\":6869:6870 */\n 0x00\n /* \"#utility.yul\":6866:6867 */\n dup1\n /* \"#utility.yul\":6859:6871 */\n revert\n /* \"#utility.yul\":6883:7000 */\n tag_65:\n /* \"#utility.yul\":6992:6993 */\n 0x00\n /* \"#utility.yul\":6989:6990 */\n dup1\n /* \"#utility.yul\":6982:6994 */\n revert\n /* \"#utility.yul\":7006:7123 */\n tag_84:\n /* \"#utility.yul\":7115:7116 */\n 0x00\n /* \"#utility.yul\":7112:7113 */\n dup1\n /* \"#utility.yul\":7105:7117 */\n revert\n /* \"#utility.yul\":7129:7246 */\n tag_81:\n /* \"#utility.yul\":7238:7239 */\n 0x00\n /* \"#utility.yul\":7235:7236 */\n dup1\n /* \"#utility.yul\":7228:7240 */\n revert\n /* \"#utility.yul\":7252:7354 */\n tag_106:\n /* \"#utility.yul\":7293:7299 */\n 0x00\n /* \"#utility.yul\":7344:7346 */\n 0x1f\n /* \"#utility.yul\":7340:7347 */\n not\n /* \"#utility.yul\":7335:7337 */\n 0x1f\n /* \"#utility.yul\":7328:7333 */\n dup4\n /* \"#utility.yul\":7324:7338 */\n add\n /* \"#utility.yul\":7320:7348 */\n and\n /* \"#utility.yul\":7310:7348 */\n swap1\n pop\n /* \"#utility.yul\":7252:7354 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":7360:7482 */\n tag_77:\n /* \"#utility.yul\":7433:7457 */\n tag_162\n /* \"#utility.yul\":7451:7456 */\n dup2\n /* \"#utility.yul\":7433:7457 */\n tag_116\n jump\t// in\n tag_162:\n /* \"#utility.yul\":7426:7431 */\n dup2\n /* \"#utility.yul\":7423:7458 */\n eq\n /* \"#utility.yul\":7413:7476 */\n tag_163\n jumpi\n /* \"#utility.yul\":7472:7473 */\n 0x00\n /* \"#utility.yul\":7469:7470 */\n dup1\n /* \"#utility.yul\":7462:7474 */\n revert\n /* \"#utility.yul\":7413:7476 */\n tag_163:\n /* \"#utility.yul\":7360:7482 */\n pop\n jump\t// out\n\n auxdata: 0xa26469706673582212200313c938aeb2bf6c5416e6f933f57a53c4360448f669e13a950a8403d072146964736f6c63430008070033\n}\n",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50610777806100206000396000f3fe608060405234801561001057600080fd5b50600436106100575760003560e01c80632e64cec11461005c5780636057361d1461007a5780636f760f41146100965780639e7a13ad146100b2578063b2ac62ef146100e3575b600080fd5b610064610113565b6040516100719190610530565b60405180910390f35b610094600480360381019061008f9190610473565b61011c565b005b6100b060048036038101906100ab9190610417565b610126565b005b6100cc60048036038101906100c79190610473565b6101bc565b6040516100da92919061054b565b60405180910390f35b6100fd60048036038101906100f891906103ce565b610278565b60405161010a9190610530565b60405180910390f35b60008054905090565b8060008190555050565b6000604051806040016040528083815260200184815250905060028190806001815401808255809150506001900390600052602060002090600202016000909190919091506000820151816000015560208201518160010190805190602001906101919291906102a6565b505050816001846040516101a59190610519565b908152602001604051809103902081905550505050565b600281815481106101cc57600080fd5b90600052602060002090600202016000915090508060000154908060010180546101f590610644565b80601f016020809104026020016040519081016040528092919081815260200182805461022190610644565b801561026e5780601f106102435761010080835404028352916020019161026e565b820191906000526020600020905b81548152906001019060200180831161025157829003601f168201915b5050505050905082565b6001818051602081018201805184825260208301602085012081835280955050505050506000915090505481565b8280546102b290610644565b90600052602060002090601f0160209004810192826102d4576000855561031b565b82601f106102ed57805160ff191683800117855561031b565b8280016001018555821561031b579182015b8281111561031a5782518255916020019190600101906102ff565b5b509050610328919061032c565b5090565b5b8082111561034557600081600090555060010161032d565b5090565b600061035c610357846105a0565b61057b565b9050828152602081018484840111156103785761037761070a565b5b610383848285610602565b509392505050565b600082601f8301126103a05761039f610705565b5b81356103b0848260208601610349565b91505092915050565b6000813590506103c88161072a565b92915050565b6000602082840312156103e4576103e3610714565b5b600082013567ffffffffffffffff8111156104025761040161070f565b5b61040e8482850161038b565b91505092915050565b6000806040838503121561042e5761042d610714565b5b600083013567ffffffffffffffff81111561044c5761044b61070f565b5b6104588582860161038b565b9250506020610469858286016103b9565b9150509250929050565b60006020828403121561048957610488610714565b5b6000610497848285016103b9565b91505092915050565b60006104ab826105d1565b6104b581856105dc565b93506104c5818560208601610611565b6104ce81610719565b840191505092915050565b60006104e4826105d1565b6104ee81856105ed565b93506104fe818560208601610611565b80840191505092915050565b610513816105f8565b82525050565b600061052582846104d9565b915081905092915050565b6000602082019050610545600083018461050a565b92915050565b6000604082019050610560600083018561050a565b818103602083015261057281846104a0565b90509392505050565b6000610585610596565b90506105918282610676565b919050565b6000604051905090565b600067ffffffffffffffff8211156105bb576105ba6106d6565b5b6105c482610719565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b6000819050919050565b82818337600083830152505050565b60005b8381101561062f578082015181840152602081019050610614565b8381111561063e576000848401525b50505050565b6000600282049050600182168061065c57607f821691505b602082108114156106705761066f6106a7565b5b50919050565b61067f82610719565b810181811067ffffffffffffffff8211171561069e5761069d6106d6565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b610733816105f8565b811461073e57600080fd5b5056fea26469706673582212200313c938aeb2bf6c5416e6f933f57a53c4360448f669e13a950a8403d072146964736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x777 DUP1 PUSH2 0x20 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x57 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x2E64CEC1 EQ PUSH2 0x5C JUMPI DUP1 PUSH4 0x6057361D EQ PUSH2 0x7A JUMPI DUP1 PUSH4 0x6F760F41 EQ PUSH2 0x96 JUMPI DUP1 PUSH4 0x9E7A13AD EQ PUSH2 0xB2 JUMPI DUP1 PUSH4 0xB2AC62EF EQ PUSH2 0xE3 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x64 PUSH2 0x113 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x71 SWAP2 SWAP1 PUSH2 0x530 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x94 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x8F SWAP2 SWAP1 PUSH2 0x473 JUMP JUMPDEST PUSH2 0x11C JUMP JUMPDEST STOP JUMPDEST PUSH2 0xB0 PUSH1 0x4 DUP1 CALLDA
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment