From 809caca6e9ef6dfefce7921f9c7dc82b5d64ef07 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Diego=20Ezequiel=20Guill=C3=A9n?= Date: Wed, 1 Jun 2022 10:45:52 -0500 Subject: [PATCH] Ejercicio 2 Control de acceso RegisterAccess.sol --- day1_e2/README.txt | 26 + day1_e2/RegisterAccess.sol | 103 + day1_e2/artifacts/RegisterAccess.json | 8196 +++++ .../artifacts/RegisterAccess_metadata.json | 197 + .../b85d7012390a13763329ded15d5dfcb9.json | 27812 ++++++++++++++++ .../bb422ee4f05e281d5e9ffcc3067e4ce8.json | 83 + day1_e2/contracts/1_Storage.sol | 29 + day1_e2/contracts/2_Owner.sol | 54 + day1_e2/contracts/3_Ballot.sol | 138 + day1_e2/scripts/deploy_with_ethers.ts | 16 + day1_e2/scripts/deploy_with_web3.ts | 16 + day1_e2/scripts/ethers.ts | 25 + day1_e2/scripts/web3.ts | 25 + day1_e2/tests/Ballot_test.sol | 28 + day1_e2/tests/storage.test.js | 22 + 15 files changed, 36770 insertions(+) create mode 100644 day1_e2/README.txt create mode 100644 day1_e2/RegisterAccess.sol create mode 100644 day1_e2/artifacts/RegisterAccess.json create mode 100644 day1_e2/artifacts/RegisterAccess_metadata.json create mode 100644 day1_e2/artifacts/build-info/b85d7012390a13763329ded15d5dfcb9.json create mode 100644 day1_e2/artifacts/build-info/bb422ee4f05e281d5e9ffcc3067e4ce8.json create mode 100644 day1_e2/contracts/1_Storage.sol create mode 100644 day1_e2/contracts/2_Owner.sol create mode 100644 day1_e2/contracts/3_Ballot.sol create mode 100644 day1_e2/scripts/deploy_with_ethers.ts create mode 100644 day1_e2/scripts/deploy_with_web3.ts create mode 100644 day1_e2/scripts/ethers.ts create mode 100644 day1_e2/scripts/web3.ts create mode 100644 day1_e2/tests/Ballot_test.sol create mode 100644 day1_e2/tests/storage.test.js diff --git a/day1_e2/README.txt b/day1_e2/README.txt new file mode 100644 index 0000000..a71c4dc --- /dev/null +++ b/day1_e2/README.txt @@ -0,0 +1,26 @@ +REMIX DEFAULT WORKSPACE + +Remix default workspace is present when: +i. Remix loads for the very first time +ii. A new workspace is created +iii. There are no files existing in the File Explorer + +This workspace contains 3 directories: + +1. 'contracts': Holds three contracts with different complexity level, denoted with number prefix in file name. +2. 'scripts': Holds two scripts to deploy a contract. It is explained below. +3. 'tests': Contains one Solidity test file for 'Ballot' contract & one JS test file for 'Storage' contract + +SCRIPTS + +The 'scripts' folder contains two example async/await scripts for deploying the 'Storage' contract. +For the deployment of any other contract, 'contractName' and 'constructorArgs' should be updated (along with other code if required). + +Also, there is a script containing some unit tests for Storage contract inside tests directory. + +To run a script, right click on file name in the file explorer and click 'Run'. Remember, Solidity file must already be compiled. +Output from script will appear in remix terminal. + +Please note, 'require' statement is supported in a limited manner for Remix supported modules. +For now, modules supported by Remix are ethers, web3, swarmgw, chai, remix and hardhat only for hardhat.ethers object/plugin. +For unsupported modules, an error like this will be thrown: ' module require is not supported by Remix IDE will be shown.' diff --git a/day1_e2/RegisterAccess.sol b/day1_e2/RegisterAccess.sol new file mode 100644 index 0000000..f4f4c4d --- /dev/null +++ b/day1_e2/RegisterAccess.sol @@ -0,0 +1,103 @@ +// SPDX-License-Identifier: MIT + +pragma solidity 0.8.13; + +// Array + + + +contract RegisterAccess { + + string[] private info; + + address public owner; + + mapping (address => bool) public whiteList; + + + + constructor() { + + owner = msg.sender; + + whiteList[msg.sender] = true; + + } + + + + event InfoChange(string oldInfo, string newInfo); + + + + modifier onlyOwner { + + require(msg.sender == owner,"Only owner"); + + _; + + } + + + + modifier onlyWhitelist { + + require(whiteList[msg.sender] == true, "Only whitelist"); + + _; + + } + + + + function getInfo(uint index) public view returns (string memory) { + + return info[index]; + + } + + + + function setInfo(uint index, string memory _info) public onlyWhitelist { + + emit InfoChange (info[index], _info); + + info[index] = _info; + + } + + + + function addInfo(string memory _info) public onlyWhitelist returns (uint index) { + + info.push (_info); + + index = info.length -1; + + } + + + + function listInfo() public view returns (string[] memory) { + + return info; + + } + + + + function addMember (address _member) public onlyOwner { + + whiteList[_member] = true; + + } + + + + function delMember (address _member) public onlyOwner { + + whiteList[_member] = false; + + } + +} \ No newline at end of file diff --git a/day1_e2/artifacts/RegisterAccess.json b/day1_e2/artifacts/RegisterAccess.json new file mode 100644 index 0000000..3aec26d --- /dev/null +++ b/day1_e2/artifacts/RegisterAccess.json @@ -0,0 +1,8196 @@ +{ + "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 + }, + "görli:5": { + "linkReferences": {}, + "autoDeployLib": true + }, + "Custom": { + "linkReferences": {}, + "autoDeployLib": true + } + }, + "data": { + "bytecode": { + "functionDebugData": { + "@_26": { + "entryPoint": null, + "id": 26, + "parameterSlots": 0, + "returnSlots": 0 + } + }, + "generatedSources": [], + "linkReferences": {}, + "object": "608060405234801561001057600080fd5b5033600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061101a806100b96000396000f3fe608060405234801561001057600080fd5b50600436106100885760003560e01c80638da5cb5b1161005b5780638da5cb5b14610139578063b682000214610157578063ca6d56dc14610173578063d03d58491461018f57610088565b80630bf803e41461008d5780631a3cd59a146100bd5780631f81595d146100ed578063372c12b114610109575b600080fd5b6100a760048036038101906100a29190610959565b6101ad565b6040516100b491906109bb565b60405180910390f35b6100d760048036038101906100d29190610a02565b610297565b6040516100e49190610ab7565b60405180910390f35b61010760048036038101906101029190610b37565b610347565b005b610123600480360381019061011e9190610b37565b610432565b6040516101309190610b7f565b60405180910390f35b610141610452565b60405161014e9190610ba9565b60405180910390f35b610171600480360381019061016c9190610bc4565b610478565b005b61018d60048036038101906101889190610b37565b610598565b005b610197610683565b6040516101a49190610d2c565b60405180910390f35b600060011515600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610242576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161023990610d9a565b60405180910390fd5b60008290806001815401808255809150506001900390600052602060002001600090919091909150908051906020019061027d92919061075c565b5060016000805490506102909190610de9565b9050919050565b6060600082815481106102ad576102ac610e1d565b5b9060005260206000200180546102c290610e7b565b80601f01602080910402602001604051908101604052809291908181526020018280546102ee90610e7b565b801561033b5780601f106103105761010080835404028352916020019161033b565b820191906000526020600020905b81548152906001019060200180831161031e57829003601f168201915b50505050509050919050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146103d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ce90610ef8565b60405180910390fd5b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60026020528060005260406000206000915054906101000a900460ff1681565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60011515600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151461050b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161050290610d9a565b60405180910390fd5b7f305058d54db6daf26994cd687b168a24cdd9a7201462f1659782c4e429987992600083815481106105405761053f610e1d565b5b9060005260206000200182604051610559929190610fad565b60405180910390a1806000838154811061057657610575610e1d565b5b90600052602060002001908051906020019061059392919061075c565b505050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610628576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161061f90610ef8565b60405180910390fd5b6001600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60606000805480602002602001604051908101604052809291908181526020016000905b828210156107535783829060005260206000200180546106c690610e7b565b80601f01602080910402602001604051908101604052809291908181526020018280546106f290610e7b565b801561073f5780601f106107145761010080835404028352916020019161073f565b820191906000526020600020905b81548152906001019060200180831161072257829003601f168201915b5050505050815260200190600101906106a7565b50505050905090565b82805461076890610e7b565b90600052602060002090601f01602090048101928261078a57600085556107d1565b82601f106107a357805160ff19168380011785556107d1565b828001600101855582156107d1579182015b828111156107d05782518255916020019190600101906107b5565b5b5090506107de91906107e2565b5090565b5b808211156107fb5760008160009055506001016107e3565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6108668261081d565b810181811067ffffffffffffffff821117156108855761088461082e565b5b80604052505050565b60006108986107ff565b90506108a4828261085d565b919050565b600067ffffffffffffffff8211156108c4576108c361082e565b5b6108cd8261081d565b9050602081019050919050565b82818337600083830152505050565b60006108fc6108f7846108a9565b61088e565b90508281526020810184848401111561091857610917610818565b5b6109238482856108da565b509392505050565b600082601f8301126109405761093f610813565b5b81356109508482602086016108e9565b91505092915050565b60006020828403121561096f5761096e610809565b5b600082013567ffffffffffffffff81111561098d5761098c61080e565b5b6109998482850161092b565b91505092915050565b6000819050919050565b6109b5816109a2565b82525050565b60006020820190506109d060008301846109ac565b92915050565b6109df816109a2565b81146109ea57600080fd5b50565b6000813590506109fc816109d6565b92915050565b600060208284031215610a1857610a17610809565b5b6000610a26848285016109ed565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610a69578082015181840152602081019050610a4e565b83811115610a78576000848401525b50505050565b6000610a8982610a2f565b610a938185610a3a565b9350610aa3818560208601610a4b565b610aac8161081d565b840191505092915050565b60006020820190508181036000830152610ad18184610a7e565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610b0482610ad9565b9050919050565b610b1481610af9565b8114610b1f57600080fd5b50565b600081359050610b3181610b0b565b92915050565b600060208284031215610b4d57610b4c610809565b5b6000610b5b84828501610b22565b91505092915050565b60008115159050919050565b610b7981610b64565b82525050565b6000602082019050610b946000830184610b70565b92915050565b610ba381610af9565b82525050565b6000602082019050610bbe6000830184610b9a565b92915050565b60008060408385031215610bdb57610bda610809565b5b6000610be9858286016109ed565b925050602083013567ffffffffffffffff811115610c0a57610c0961080e565b5b610c168582860161092b565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b600082825260208201905092915050565b6000610c6882610a2f565b610c728185610c4c565b9350610c82818560208601610a4b565b610c8b8161081d565b840191505092915050565b6000610ca28383610c5d565b905092915050565b6000602082019050919050565b6000610cc282610c20565b610ccc8185610c2b565b935083602082028501610cde85610c3c565b8060005b85811015610d1a5784840389528151610cfb8582610c96565b9450610d0683610caa565b925060208a01995050600181019050610ce2565b50829750879550505050505092915050565b60006020820190508181036000830152610d468184610cb7565b905092915050565b7f4f6e6c792077686974656c697374000000000000000000000000000000000000600082015250565b6000610d84600e83610a3a565b9150610d8f82610d4e565b602082019050919050565b60006020820190508181036000830152610db381610d77565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000610df4826109a2565b9150610dff836109a2565b925082821015610e1257610e11610dba565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680610e9357607f821691505b602082108103610ea657610ea5610e4c565b5b50919050565b7f4f6e6c79206f776e657200000000000000000000000000000000000000000000600082015250565b6000610ee2600a83610a3a565b9150610eed82610eac565b602082019050919050565b60006020820190508181036000830152610f1181610ed5565b9050919050565b60008190508160005260206000209050919050565b60008154610f3a81610e7b565b610f448186610a3a565b94506001821660008114610f5f5760018114610f7157610fa4565b60ff1983168652602086019350610fa4565b610f7a85610f18565b60005b83811015610f9c57815481890152600182019150602081019050610f7d565b808801955050505b50505092915050565b60006040820190508181036000830152610fc78185610f2d565b90508181036020830152610fdb8184610a7e565b9050939250505056fea2646970667358221220d51a8f0aa3553930307806760fc28443ee71d8d43b62c5234f91814ae38560c964736f6c634300080d0033", + "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLER PUSH1 0x1 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x1 PUSH1 0x2 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH2 0x101A DUP1 PUSH2 0xB9 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 0x88 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x8DA5CB5B GT PUSH2 0x5B JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x139 JUMPI DUP1 PUSH4 0xB6820002 EQ PUSH2 0x157 JUMPI DUP1 PUSH4 0xCA6D56DC EQ PUSH2 0x173 JUMPI DUP1 PUSH4 0xD03D5849 EQ PUSH2 0x18F JUMPI PUSH2 0x88 JUMP JUMPDEST DUP1 PUSH4 0xBF803E4 EQ PUSH2 0x8D JUMPI DUP1 PUSH4 0x1A3CD59A EQ PUSH2 0xBD JUMPI DUP1 PUSH4 0x1F81595D EQ PUSH2 0xED JUMPI DUP1 PUSH4 0x372C12B1 EQ PUSH2 0x109 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xA7 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xA2 SWAP2 SWAP1 PUSH2 0x959 JUMP JUMPDEST PUSH2 0x1AD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xB4 SWAP2 SWAP1 PUSH2 0x9BB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xD7 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xD2 SWAP2 SWAP1 PUSH2 0xA02 JUMP JUMPDEST PUSH2 0x297 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xE4 SWAP2 SWAP1 PUSH2 0xAB7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x107 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x102 SWAP2 SWAP1 PUSH2 0xB37 JUMP JUMPDEST PUSH2 0x347 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x123 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x11E SWAP2 SWAP1 PUSH2 0xB37 JUMP JUMPDEST PUSH2 0x432 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x130 SWAP2 SWAP1 PUSH2 0xB7F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x141 PUSH2 0x452 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x14E SWAP2 SWAP1 PUSH2 0xBA9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x171 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x16C SWAP2 SWAP1 PUSH2 0xBC4 JUMP JUMPDEST PUSH2 0x478 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x18D PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x188 SWAP2 SWAP1 PUSH2 0xB37 JUMP JUMPDEST PUSH2 0x598 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x197 PUSH2 0x683 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1A4 SWAP2 SWAP1 PUSH2 0xD2C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 PUSH1 0x1 ISZERO ISZERO PUSH1 0x2 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO ISZERO EQ PUSH2 0x242 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x239 SWAP1 PUSH2 0xD9A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 DUP3 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 POP SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x27D SWAP3 SWAP2 SWAP1 PUSH2 0x75C JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x0 DUP1 SLOAD SWAP1 POP PUSH2 0x290 SWAP2 SWAP1 PUSH2 0xDE9 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0x2AD JUMPI PUSH2 0x2AC PUSH2 0xE1D JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD DUP1 SLOAD PUSH2 0x2C2 SWAP1 PUSH2 0xE7B 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 0x2EE SWAP1 PUSH2 0xE7B JUMP JUMPDEST DUP1 ISZERO PUSH2 0x33B JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x310 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x33B 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 0x31E JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x3D7 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x3CE SWAP1 PUSH2 0xEF8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x2 PUSH1 0x20 MSTORE DUP1 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP2 POP SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x1 ISZERO ISZERO PUSH1 0x2 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO ISZERO EQ PUSH2 0x50B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x502 SWAP1 PUSH2 0xD9A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH32 0x305058D54DB6DAF26994CD687B168A24CDD9A7201462F1659782C4E429987992 PUSH1 0x0 DUP4 DUP2 SLOAD DUP2 LT PUSH2 0x540 JUMPI PUSH2 0x53F PUSH2 0xE1D JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD DUP3 PUSH1 0x40 MLOAD PUSH2 0x559 SWAP3 SWAP2 SWAP1 PUSH2 0xFAD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 DUP1 PUSH1 0x0 DUP4 DUP2 SLOAD DUP2 LT PUSH2 0x576 JUMPI PUSH2 0x575 PUSH2 0xE1D JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x593 SWAP3 SWAP2 SWAP1 PUSH2 0x75C JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x628 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x61F SWAP1 PUSH2 0xEF8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x2 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP1 SLOAD DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 SWAP1 JUMPDEST DUP3 DUP3 LT ISZERO PUSH2 0x753 JUMPI DUP4 DUP3 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD DUP1 SLOAD PUSH2 0x6C6 SWAP1 PUSH2 0xE7B 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 0x6F2 SWAP1 PUSH2 0xE7B JUMP JUMPDEST DUP1 ISZERO PUSH2 0x73F JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x714 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x73F 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 0x722 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x6A7 JUMP JUMPDEST POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH2 0x768 SWAP1 PUSH2 0xE7B JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0x78A JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0x7D1 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0x7A3 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0x7D1 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0x7D1 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x7D0 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x7B5 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x7DE SWAP2 SWAP1 PUSH2 0x7E2 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x7FB JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x7E3 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP 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 PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x866 DUP3 PUSH2 0x81D JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x885 JUMPI PUSH2 0x884 PUSH2 0x82E JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x898 PUSH2 0x7FF JUMP JUMPDEST SWAP1 POP PUSH2 0x8A4 DUP3 DUP3 PUSH2 0x85D JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x8C4 JUMPI PUSH2 0x8C3 PUSH2 0x82E JUMP JUMPDEST JUMPDEST PUSH2 0x8CD DUP3 PUSH2 0x81D JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x8FC PUSH2 0x8F7 DUP5 PUSH2 0x8A9 JUMP JUMPDEST PUSH2 0x88E JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x918 JUMPI PUSH2 0x917 PUSH2 0x818 JUMP JUMPDEST JUMPDEST PUSH2 0x923 DUP5 DUP3 DUP6 PUSH2 0x8DA JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x940 JUMPI PUSH2 0x93F PUSH2 0x813 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x950 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x8E9 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x96F JUMPI PUSH2 0x96E PUSH2 0x809 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP3 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x98D JUMPI PUSH2 0x98C PUSH2 0x80E JUMP JUMPDEST JUMPDEST PUSH2 0x999 DUP5 DUP3 DUP6 ADD PUSH2 0x92B JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x9B5 DUP2 PUSH2 0x9A2 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x9D0 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x9AC JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x9DF DUP2 PUSH2 0x9A2 JUMP JUMPDEST DUP2 EQ PUSH2 0x9EA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x9FC DUP2 PUSH2 0x9D6 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xA18 JUMPI PUSH2 0xA17 PUSH2 0x809 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xA26 DUP5 DUP3 DUP6 ADD PUSH2 0x9ED JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP 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 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xA69 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0xA4E JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0xA78 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xA89 DUP3 PUSH2 0xA2F JUMP JUMPDEST PUSH2 0xA93 DUP2 DUP6 PUSH2 0xA3A JUMP JUMPDEST SWAP4 POP PUSH2 0xAA3 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0xA4B JUMP JUMPDEST PUSH2 0xAAC DUP2 PUSH2 0x81D JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xAD1 DUP2 DUP5 PUSH2 0xA7E JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xB04 DUP3 PUSH2 0xAD9 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xB14 DUP2 PUSH2 0xAF9 JUMP JUMPDEST DUP2 EQ PUSH2 0xB1F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xB31 DUP2 PUSH2 0xB0B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xB4D JUMPI PUSH2 0xB4C PUSH2 0x809 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xB5B DUP5 DUP3 DUP6 ADD PUSH2 0xB22 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xB79 DUP2 PUSH2 0xB64 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xB94 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xB70 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xBA3 DUP2 PUSH2 0xAF9 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xBBE PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xB9A JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xBDB JUMPI PUSH2 0xBDA PUSH2 0x809 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xBE9 DUP6 DUP3 DUP7 ADD PUSH2 0x9ED JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xC0A JUMPI PUSH2 0xC09 PUSH2 0x80E JUMP JUMPDEST JUMPDEST PUSH2 0xC16 DUP6 DUP3 DUP7 ADD PUSH2 0x92B JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 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 PUSH1 0x20 DUP3 ADD 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 PUSH2 0xC68 DUP3 PUSH2 0xA2F JUMP JUMPDEST PUSH2 0xC72 DUP2 DUP6 PUSH2 0xC4C JUMP JUMPDEST SWAP4 POP PUSH2 0xC82 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0xA4B JUMP JUMPDEST PUSH2 0xC8B DUP2 PUSH2 0x81D JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xCA2 DUP4 DUP4 PUSH2 0xC5D JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xCC2 DUP3 PUSH2 0xC20 JUMP JUMPDEST PUSH2 0xCCC DUP2 DUP6 PUSH2 0xC2B JUMP JUMPDEST SWAP4 POP DUP4 PUSH1 0x20 DUP3 MUL DUP6 ADD PUSH2 0xCDE DUP6 PUSH2 0xC3C JUMP JUMPDEST DUP1 PUSH1 0x0 JUMPDEST DUP6 DUP2 LT ISZERO PUSH2 0xD1A JUMPI DUP5 DUP5 SUB DUP10 MSTORE DUP2 MLOAD PUSH2 0xCFB DUP6 DUP3 PUSH2 0xC96 JUMP JUMPDEST SWAP5 POP PUSH2 0xD06 DUP4 PUSH2 0xCAA JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP11 ADD SWAP10 POP POP PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0xCE2 JUMP JUMPDEST POP DUP3 SWAP8 POP DUP8 SWAP6 POP POP POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xD46 DUP2 DUP5 PUSH2 0xCB7 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4F6E6C792077686974656C697374000000000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xD84 PUSH1 0xE DUP4 PUSH2 0xA3A JUMP JUMPDEST SWAP2 POP PUSH2 0xD8F DUP3 PUSH2 0xD4E JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xDB3 DUP2 PUSH2 0xD77 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xDF4 DUP3 PUSH2 0x9A2 JUMP JUMPDEST SWAP2 POP PUSH2 0xDFF DUP4 PUSH2 0x9A2 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0xE12 JUMPI PUSH2 0xE11 PUSH2 0xDBA JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 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 PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0xE93 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0xEA6 JUMPI PUSH2 0xEA5 PUSH2 0xE4C JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4F6E6C79206F776E657200000000000000000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xEE2 PUSH1 0xA DUP4 PUSH2 0xA3A JUMP JUMPDEST SWAP2 POP PUSH2 0xEED DUP3 PUSH2 0xEAC JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xF11 DUP2 PUSH2 0xED5 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP DUP2 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SLOAD PUSH2 0xF3A DUP2 PUSH2 0xE7B JUMP JUMPDEST PUSH2 0xF44 DUP2 DUP7 PUSH2 0xA3A JUMP JUMPDEST SWAP5 POP PUSH1 0x1 DUP3 AND PUSH1 0x0 DUP2 EQ PUSH2 0xF5F JUMPI PUSH1 0x1 DUP2 EQ PUSH2 0xF71 JUMPI PUSH2 0xFA4 JUMP JUMPDEST PUSH1 0xFF NOT DUP4 AND DUP7 MSTORE PUSH1 0x20 DUP7 ADD SWAP4 POP PUSH2 0xFA4 JUMP JUMPDEST PUSH2 0xF7A DUP6 PUSH2 0xF18 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xF9C JUMPI DUP2 SLOAD DUP2 DUP10 ADD MSTORE PUSH1 0x1 DUP3 ADD SWAP2 POP PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0xF7D JUMP JUMPDEST DUP1 DUP9 ADD SWAP6 POP POP POP JUMPDEST POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xFC7 DUP2 DUP6 PUSH2 0xF2D JUMP JUMPDEST SWAP1 POP DUP2 DUP2 SUB PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0xFDB DUP2 DUP5 PUSH2 0xA7E JUMP JUMPDEST SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xD5 BYTE DUP16 EXP LOG3 SSTORE CODECOPY ADDRESS ADDRESS PUSH25 0x6760FC28443EE71D8D43B62C5234F91814AE38560C964736F PUSH13 0x634300080D0033000000000000 ", + "sourceMap": "71:1267:0:-:0;;;209:90;;;;;;;;;;242:10;234:5;;:18;;;;;;;;;;;;;;;;;;287:4;263:9;:21;273:10;263:21;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;71:1267;;;;;;" + }, + "deployedBytecode": { + "functionDebugData": { + "@addInfo_116": { + "entryPoint": 429, + "id": 116, + "parameterSlots": 1, + "returnSlots": 1 + }, + "@addMember_139": { + "entryPoint": 1432, + "id": 139, + "parameterSlots": 1, + "returnSlots": 0 + }, + "@delMember_153": { + "entryPoint": 839, + "id": 153, + "parameterSlots": 1, + "returnSlots": 0 + }, + "@getInfo_70": { + "entryPoint": 663, + "id": 70, + "parameterSlots": 1, + "returnSlots": 1 + }, + "@listInfo_125": { + "entryPoint": 1667, + "id": 125, + "parameterSlots": 0, + "returnSlots": 1 + }, + "@owner_6": { + "entryPoint": 1106, + "id": 6, + "parameterSlots": 0, + "returnSlots": 0 + }, + "@setInfo_93": { + "entryPoint": 1144, + "id": 93, + "parameterSlots": 2, + "returnSlots": 0 + }, + "@whiteList_10": { + "entryPoint": 1074, + "id": 10, + "parameterSlots": 0, + "returnSlots": 0 + }, + "abi_decode_available_length_t_string_memory_ptr": { + "entryPoint": 2281, + "id": null, + "parameterSlots": 3, + "returnSlots": 1 + }, + "abi_decode_t_address": { + "entryPoint": 2850, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "abi_decode_t_string_memory_ptr": { + "entryPoint": 2347, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "abi_decode_t_uint256": { + "entryPoint": 2541, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "abi_decode_tuple_t_address": { + "entryPoint": 2871, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "abi_decode_tuple_t_string_memory_ptr": { + "entryPoint": 2393, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "abi_decode_tuple_t_uint256": { + "entryPoint": 2562, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "abi_decode_tuple_t_uint256t_string_memory_ptr": { + "entryPoint": 3012, + "id": null, + "parameterSlots": 2, + "returnSlots": 2 + }, + "abi_encodeUpdatedPos_t_string_memory_ptr_to_t_string_memory_ptr": { + "entryPoint": 3222, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "abi_encode_t_address_to_t_address_fromStack": { + "entryPoint": 2970, + "id": null, + "parameterSlots": 2, + "returnSlots": 0 + }, + "abi_encode_t_array$_t_string_memory_ptr_$dyn_memory_ptr_to_t_array$_t_string_memory_ptr_$dyn_memory_ptr_fromStack": { + "entryPoint": 3255, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "abi_encode_t_bool_to_t_bool_fromStack": { + "entryPoint": 2928, + "id": null, + "parameterSlots": 2, + "returnSlots": 0 + }, + "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr": { + "entryPoint": 3165, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": { + "entryPoint": 2686, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "abi_encode_t_string_storage_to_t_string_memory_ptr_fromStack": { + "entryPoint": 3885, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "abi_encode_t_stringliteral_17d9f114efaa93d67eedad749dd7fd16a6895ff93e28b7a30c667a069f2ed42d_to_t_string_memory_ptr_fromStack": { + "entryPoint": 3797, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "abi_encode_t_stringliteral_e456a8df821d58a81d00df5ff2bc8653f1a52a4771d0bdf36a4aa3f1bac56f7b_to_t_string_memory_ptr_fromStack": { + "entryPoint": 3447, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "abi_encode_t_uint256_to_t_uint256_fromStack": { + "entryPoint": 2476, + "id": null, + "parameterSlots": 2, + "returnSlots": 0 + }, + "abi_encode_tuple_t_address__to_t_address__fromStack_reversed": { + "entryPoint": 2985, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "abi_encode_tuple_t_array$_t_string_memory_ptr_$dyn_memory_ptr__to_t_array$_t_string_memory_ptr_$dyn_memory_ptr__fromStack_reversed": { + "entryPoint": 3372, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": { + "entryPoint": 2943, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": { + "entryPoint": 2743, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "abi_encode_tuple_t_string_storage_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__fromStack_reversed": { + "entryPoint": 4013, + "id": null, + "parameterSlots": 3, + "returnSlots": 1 + }, + "abi_encode_tuple_t_stringliteral_17d9f114efaa93d67eedad749dd7fd16a6895ff93e28b7a30c667a069f2ed42d__to_t_string_memory_ptr__fromStack_reversed": { + "entryPoint": 3832, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "abi_encode_tuple_t_stringliteral_e456a8df821d58a81d00df5ff2bc8653f1a52a4771d0bdf36a4aa3f1bac56f7b__to_t_string_memory_ptr__fromStack_reversed": { + "entryPoint": 3482, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": { + "entryPoint": 2491, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "allocate_memory": { + "entryPoint": 2190, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "allocate_unbounded": { + "entryPoint": 2047, + "id": null, + "parameterSlots": 0, + "returnSlots": 1 + }, + "array_allocation_size_t_string_memory_ptr": { + "entryPoint": 2217, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "array_dataslot_t_array$_t_string_memory_ptr_$dyn_memory_ptr": { + "entryPoint": 3132, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "array_dataslot_t_string_storage": { + "entryPoint": 3864, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "array_length_t_array$_t_string_memory_ptr_$dyn_memory_ptr": { + "entryPoint": 3104, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "array_length_t_string_memory_ptr": { + "entryPoint": 2607, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "array_nextElement_t_array$_t_string_memory_ptr_$dyn_memory_ptr": { + "entryPoint": 3242, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "array_storeLengthForEncoding_t_array$_t_string_memory_ptr_$dyn_memory_ptr_fromStack": { + "entryPoint": 3115, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "array_storeLengthForEncoding_t_string_memory_ptr": { + "entryPoint": 3148, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "array_storeLengthForEncoding_t_string_memory_ptr_fromStack": { + "entryPoint": 2618, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "checked_sub_t_uint256": { + "entryPoint": 3561, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "cleanup_t_address": { + "entryPoint": 2809, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "cleanup_t_bool": { + "entryPoint": 2916, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "cleanup_t_uint160": { + "entryPoint": 2777, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "cleanup_t_uint256": { + "entryPoint": 2466, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "copy_calldata_to_memory": { + "entryPoint": 2266, + "id": null, + "parameterSlots": 3, + "returnSlots": 0 + }, + "copy_memory_to_memory": { + "entryPoint": 2635, + "id": null, + "parameterSlots": 3, + "returnSlots": 0 + }, + "extract_byte_array_length": { + "entryPoint": 3707, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "finalize_allocation": { + "entryPoint": 2141, + "id": null, + "parameterSlots": 2, + "returnSlots": 0 + }, + "panic_error_0x11": { + "entryPoint": 3514, + "id": null, + "parameterSlots": 0, + "returnSlots": 0 + }, + "panic_error_0x22": { + "entryPoint": 3660, + "id": null, + "parameterSlots": 0, + "returnSlots": 0 + }, + "panic_error_0x32": { + "entryPoint": 3613, + "id": null, + "parameterSlots": 0, + "returnSlots": 0 + }, + "panic_error_0x41": { + "entryPoint": 2094, + "id": null, + "parameterSlots": 0, + "returnSlots": 0 + }, + "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": { + "entryPoint": 2067, + "id": null, + "parameterSlots": 0, + "returnSlots": 0 + }, + "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": { + "entryPoint": 2072, + "id": null, + "parameterSlots": 0, + "returnSlots": 0 + }, + "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": { + "entryPoint": 2062, + "id": null, + "parameterSlots": 0, + "returnSlots": 0 + }, + "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": { + "entryPoint": 2057, + "id": null, + "parameterSlots": 0, + "returnSlots": 0 + }, + "round_up_to_mul_of_32": { + "entryPoint": 2077, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "store_literal_in_memory_17d9f114efaa93d67eedad749dd7fd16a6895ff93e28b7a30c667a069f2ed42d": { + "entryPoint": 3756, + "id": null, + "parameterSlots": 1, + "returnSlots": 0 + }, + "store_literal_in_memory_e456a8df821d58a81d00df5ff2bc8653f1a52a4771d0bdf36a4aa3f1bac56f7b": { + "entryPoint": 3406, + "id": null, + "parameterSlots": 1, + "returnSlots": 0 + }, + "validator_revert_t_address": { + "entryPoint": 2827, + "id": null, + "parameterSlots": 1, + "returnSlots": 0 + }, + "validator_revert_t_uint256": { + "entryPoint": 2518, + "id": null, + "parameterSlots": 1, + "returnSlots": 0 + } + }, + "generatedSources": [ + { + "ast": { + "nodeType": "YulBlock", + "src": "0:14938:1", + "statements": [ + { + "body": { + "nodeType": "YulBlock", + "src": "47:35:1", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "57:19:1", + "value": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "73:2:1", + "type": "", + "value": "64" + } + ], + "functionName": { + "name": "mload", + "nodeType": "YulIdentifier", + "src": "67:5:1" + }, + "nodeType": "YulFunctionCall", + "src": "67:9:1" + }, + "variableNames": [ + { + "name": "memPtr", + "nodeType": "YulIdentifier", + "src": "57:6:1" + } + ] + } + ] + }, + "name": "allocate_unbounded", + "nodeType": "YulFunctionDefinition", + "returnVariables": [ + { + "name": "memPtr", + "nodeType": "YulTypedName", + "src": "40:6:1", + "type": "" + } + ], + "src": "7:75:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "177:28:1", + "statements": [ + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "194:1:1", + "type": "", + "value": "0" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "197:1:1", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "revert", + "nodeType": "YulIdentifier", + "src": "187:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "187:12:1" + }, + "nodeType": "YulExpressionStatement", + "src": "187:12:1" + } + ] + }, + "name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", + "nodeType": "YulFunctionDefinition", + "src": "88:117:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "300:28:1", + "statements": [ + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "317:1:1", + "type": "", + "value": "0" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "320:1:1", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "revert", + "nodeType": "YulIdentifier", + "src": "310:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "310:12:1" + }, + "nodeType": "YulExpressionStatement", + "src": "310:12:1" + } + ] + }, + "name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db", + "nodeType": "YulFunctionDefinition", + "src": "211:117:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "423:28:1", + "statements": [ + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "440:1:1", + "type": "", + "value": "0" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "443:1:1", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "revert", + "nodeType": "YulIdentifier", + "src": "433:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "433:12:1" + }, + "nodeType": "YulExpressionStatement", + "src": "433:12:1" + } + ] + }, + "name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d", + "nodeType": "YulFunctionDefinition", + "src": "334:117:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "546:28:1", + "statements": [ + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "563:1:1", + "type": "", + "value": "0" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "566:1:1", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "revert", + "nodeType": "YulIdentifier", + "src": "556:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "556:12:1" + }, + "nodeType": "YulExpressionStatement", + "src": "556:12:1" + } + ] + }, + "name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae", + "nodeType": "YulFunctionDefinition", + "src": "457:117:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "628:54:1", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "638:38:1", + "value": { + "arguments": [ + { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "656:5:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "663:2:1", + "type": "", + "value": "31" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "652:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "652:14:1" + }, + { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "672:2:1", + "type": "", + "value": "31" + } + ], + "functionName": { + "name": "not", + "nodeType": "YulIdentifier", + "src": "668:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "668:7:1" + } + ], + "functionName": { + "name": "and", + "nodeType": "YulIdentifier", + "src": "648:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "648:28:1" + }, + "variableNames": [ + { + "name": "result", + "nodeType": "YulIdentifier", + "src": "638:6:1" + } + ] + } + ] + }, + "name": "round_up_to_mul_of_32", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "611:5:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "result", + "nodeType": "YulTypedName", + "src": "621:6:1", + "type": "" + } + ], + "src": "580:102:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "716:152:1", + "statements": [ + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "733:1:1", + "type": "", + "value": "0" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "736:77:1", + "type": "", + "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "726:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "726:88:1" + }, + "nodeType": "YulExpressionStatement", + "src": "726:88:1" + }, + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "830:1:1", + "type": "", + "value": "4" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "833:4:1", + "type": "", + "value": "0x41" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "823:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "823:15:1" + }, + "nodeType": "YulExpressionStatement", + "src": "823:15:1" + }, + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "854:1:1", + "type": "", + "value": "0" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "857:4:1", + "type": "", + "value": "0x24" + } + ], + "functionName": { + "name": "revert", + "nodeType": "YulIdentifier", + "src": "847:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "847:15:1" + }, + "nodeType": "YulExpressionStatement", + "src": "847:15:1" + } + ] + }, + "name": "panic_error_0x41", + "nodeType": "YulFunctionDefinition", + "src": "688:180:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "917:238:1", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "927:58:1", + "value": { + "arguments": [ + { + "name": "memPtr", + "nodeType": "YulIdentifier", + "src": "949:6:1" + }, + { + "arguments": [ + { + "name": "size", + "nodeType": "YulIdentifier", + "src": "979:4:1" + } + ], + "functionName": { + "name": "round_up_to_mul_of_32", + "nodeType": "YulIdentifier", + "src": "957:21:1" + }, + "nodeType": "YulFunctionCall", + "src": "957:27:1" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "945:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "945:40:1" + }, + "variables": [ + { + "name": "newFreePtr", + "nodeType": "YulTypedName", + "src": "931:10:1", + "type": "" + } + ] + }, + { + "body": { + "nodeType": "YulBlock", + "src": "1096:22:1", + "statements": [ + { + "expression": { + "arguments": [], + "functionName": { + "name": "panic_error_0x41", + "nodeType": "YulIdentifier", + "src": "1098:16:1" + }, + "nodeType": "YulFunctionCall", + "src": "1098:18:1" + }, + "nodeType": "YulExpressionStatement", + "src": "1098:18:1" + } + ] + }, + "condition": { + "arguments": [ + { + "arguments": [ + { + "name": "newFreePtr", + "nodeType": "YulIdentifier", + "src": "1039:10:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "1051:18:1", + "type": "", + "value": "0xffffffffffffffff" + } + ], + "functionName": { + "name": "gt", + "nodeType": "YulIdentifier", + "src": "1036:2:1" + }, + "nodeType": "YulFunctionCall", + "src": "1036:34:1" + }, + { + "arguments": [ + { + "name": "newFreePtr", + "nodeType": "YulIdentifier", + "src": "1075:10:1" + }, + { + "name": "memPtr", + "nodeType": "YulIdentifier", + "src": "1087:6:1" + } + ], + "functionName": { + "name": "lt", + "nodeType": "YulIdentifier", + "src": "1072:2:1" + }, + "nodeType": "YulFunctionCall", + "src": "1072:22:1" + } + ], + "functionName": { + "name": "or", + "nodeType": "YulIdentifier", + "src": "1033:2:1" + }, + "nodeType": "YulFunctionCall", + "src": "1033:62:1" + }, + "nodeType": "YulIf", + "src": "1030:88:1" + }, + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "1134:2:1", + "type": "", + "value": "64" + }, + { + "name": "newFreePtr", + "nodeType": "YulIdentifier", + "src": "1138:10:1" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "1127:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "1127:22:1" + }, + "nodeType": "YulExpressionStatement", + "src": "1127:22:1" + } + ] + }, + "name": "finalize_allocation", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "memPtr", + "nodeType": "YulTypedName", + "src": "903:6:1", + "type": "" + }, + { + "name": "size", + "nodeType": "YulTypedName", + "src": "911:4:1", + "type": "" + } + ], + "src": "874:281:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "1202:88:1", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "1212:30:1", + "value": { + "arguments": [], + "functionName": { + "name": "allocate_unbounded", + "nodeType": "YulIdentifier", + "src": "1222:18:1" + }, + "nodeType": "YulFunctionCall", + "src": "1222:20:1" + }, + "variableNames": [ + { + "name": "memPtr", + "nodeType": "YulIdentifier", + "src": "1212:6:1" + } + ] + }, + { + "expression": { + "arguments": [ + { + "name": "memPtr", + "nodeType": "YulIdentifier", + "src": "1271:6:1" + }, + { + "name": "size", + "nodeType": "YulIdentifier", + "src": "1279:4:1" + } + ], + "functionName": { + "name": "finalize_allocation", + "nodeType": "YulIdentifier", + "src": "1251:19:1" + }, + "nodeType": "YulFunctionCall", + "src": "1251:33:1" + }, + "nodeType": "YulExpressionStatement", + "src": "1251:33:1" + } + ] + }, + "name": "allocate_memory", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "size", + "nodeType": "YulTypedName", + "src": "1186:4:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "memPtr", + "nodeType": "YulTypedName", + "src": "1195:6:1", + "type": "" + } + ], + "src": "1161:129:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "1363:241:1", + "statements": [ + { + "body": { + "nodeType": "YulBlock", + "src": "1468:22:1", + "statements": [ + { + "expression": { + "arguments": [], + "functionName": { + "name": "panic_error_0x41", + "nodeType": "YulIdentifier", + "src": "1470:16:1" + }, + "nodeType": "YulFunctionCall", + "src": "1470:18:1" + }, + "nodeType": "YulExpressionStatement", + "src": "1470:18:1" + } + ] + }, + "condition": { + "arguments": [ + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "1440:6:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "1448:18:1", + "type": "", + "value": "0xffffffffffffffff" + } + ], + "functionName": { + "name": "gt", + "nodeType": "YulIdentifier", + "src": "1437:2:1" + }, + "nodeType": "YulFunctionCall", + "src": "1437:30:1" + }, + "nodeType": "YulIf", + "src": "1434:56:1" + }, + { + "nodeType": "YulAssignment", + "src": "1500:37:1", + "value": { + "arguments": [ + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "1530:6:1" + } + ], + "functionName": { + "name": "round_up_to_mul_of_32", + "nodeType": "YulIdentifier", + "src": "1508:21:1" + }, + "nodeType": "YulFunctionCall", + "src": "1508:29:1" + }, + "variableNames": [ + { + "name": "size", + "nodeType": "YulIdentifier", + "src": "1500:4:1" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "1574:23:1", + "value": { + "arguments": [ + { + "name": "size", + "nodeType": "YulIdentifier", + "src": "1586:4:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "1592:4:1", + "type": "", + "value": "0x20" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "1582:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "1582:15:1" + }, + "variableNames": [ + { + "name": "size", + "nodeType": "YulIdentifier", + "src": "1574:4:1" + } + ] + } + ] + }, + "name": "array_allocation_size_t_string_memory_ptr", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "length", + "nodeType": "YulTypedName", + "src": "1347:6:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "size", + "nodeType": "YulTypedName", + "src": "1358:4:1", + "type": "" + } + ], + "src": "1296:308:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "1661:103:1", + "statements": [ + { + "expression": { + "arguments": [ + { + "name": "dst", + "nodeType": "YulIdentifier", + "src": "1684:3:1" + }, + { + "name": "src", + "nodeType": "YulIdentifier", + "src": "1689:3:1" + }, + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "1694:6:1" + } + ], + "functionName": { + "name": "calldatacopy", + "nodeType": "YulIdentifier", + "src": "1671:12:1" + }, + "nodeType": "YulFunctionCall", + "src": "1671:30:1" + }, + "nodeType": "YulExpressionStatement", + "src": "1671:30:1" + }, + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "dst", + "nodeType": "YulIdentifier", + "src": "1742:3:1" + }, + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "1747:6:1" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "1738:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "1738:16:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "1756:1:1", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "1731:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "1731:27:1" + }, + "nodeType": "YulExpressionStatement", + "src": "1731:27:1" + } + ] + }, + "name": "copy_calldata_to_memory", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "src", + "nodeType": "YulTypedName", + "src": "1643:3:1", + "type": "" + }, + { + "name": "dst", + "nodeType": "YulTypedName", + "src": "1648:3:1", + "type": "" + }, + { + "name": "length", + "nodeType": "YulTypedName", + "src": "1653:6:1", + "type": "" + } + ], + "src": "1610:154:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "1854:328:1", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "1864:75:1", + "value": { + "arguments": [ + { + "arguments": [ + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "1931:6:1" + } + ], + "functionName": { + "name": "array_allocation_size_t_string_memory_ptr", + "nodeType": "YulIdentifier", + "src": "1889:41:1" + }, + "nodeType": "YulFunctionCall", + "src": "1889:49:1" + } + ], + "functionName": { + "name": "allocate_memory", + "nodeType": "YulIdentifier", + "src": "1873:15:1" + }, + "nodeType": "YulFunctionCall", + "src": "1873:66:1" + }, + "variableNames": [ + { + "name": "array", + "nodeType": "YulIdentifier", + "src": "1864:5:1" + } + ] + }, + { + "expression": { + "arguments": [ + { + "name": "array", + "nodeType": "YulIdentifier", + "src": "1955:5:1" + }, + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "1962:6:1" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "1948:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "1948:21:1" + }, + "nodeType": "YulExpressionStatement", + "src": "1948:21:1" + }, + { + "nodeType": "YulVariableDeclaration", + "src": "1978:27:1", + "value": { + "arguments": [ + { + "name": "array", + "nodeType": "YulIdentifier", + "src": "1993:5:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "2000:4:1", + "type": "", + "value": "0x20" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "1989:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "1989:16:1" + }, + "variables": [ + { + "name": "dst", + "nodeType": "YulTypedName", + "src": "1982:3:1", + "type": "" + } + ] + }, + { + "body": { + "nodeType": "YulBlock", + "src": "2043:83:1", + "statements": [ + { + "expression": { + "arguments": [], + "functionName": { + "name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae", + "nodeType": "YulIdentifier", + "src": "2045:77:1" + }, + "nodeType": "YulFunctionCall", + "src": "2045:79:1" + }, + "nodeType": "YulExpressionStatement", + "src": "2045:79:1" + } + ] + }, + "condition": { + "arguments": [ + { + "arguments": [ + { + "name": "src", + "nodeType": "YulIdentifier", + "src": "2024:3:1" + }, + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "2029:6:1" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "2020:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "2020:16:1" + }, + { + "name": "end", + "nodeType": "YulIdentifier", + "src": "2038:3:1" + } + ], + "functionName": { + "name": "gt", + "nodeType": "YulIdentifier", + "src": "2017:2:1" + }, + "nodeType": "YulFunctionCall", + "src": "2017:25:1" + }, + "nodeType": "YulIf", + "src": "2014:112:1" + }, + { + "expression": { + "arguments": [ + { + "name": "src", + "nodeType": "YulIdentifier", + "src": "2159:3:1" + }, + { + "name": "dst", + "nodeType": "YulIdentifier", + "src": "2164:3:1" + }, + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "2169:6:1" + } + ], + "functionName": { + "name": "copy_calldata_to_memory", + "nodeType": "YulIdentifier", + "src": "2135:23:1" + }, + "nodeType": "YulFunctionCall", + "src": "2135:41:1" + }, + "nodeType": "YulExpressionStatement", + "src": "2135:41:1" + } + ] + }, + "name": "abi_decode_available_length_t_string_memory_ptr", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "src", + "nodeType": "YulTypedName", + "src": "1827:3:1", + "type": "" + }, + { + "name": "length", + "nodeType": "YulTypedName", + "src": "1832:6:1", + "type": "" + }, + { + "name": "end", + "nodeType": "YulTypedName", + "src": "1840:3:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "array", + "nodeType": "YulTypedName", + "src": "1848:5:1", + "type": "" + } + ], + "src": "1770:412:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "2264:278:1", + "statements": [ + { + "body": { + "nodeType": "YulBlock", + "src": "2313:83:1", + "statements": [ + { + "expression": { + "arguments": [], + "functionName": { + "name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d", + "nodeType": "YulIdentifier", + "src": "2315:77:1" + }, + "nodeType": "YulFunctionCall", + "src": "2315:79:1" + }, + "nodeType": "YulExpressionStatement", + "src": "2315:79:1" + } + ] + }, + "condition": { + "arguments": [ + { + "arguments": [ + { + "arguments": [ + { + "name": "offset", + "nodeType": "YulIdentifier", + "src": "2292:6:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "2300:4:1", + "type": "", + "value": "0x1f" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "2288:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "2288:17:1" + }, + { + "name": "end", + "nodeType": "YulIdentifier", + "src": "2307:3:1" + } + ], + "functionName": { + "name": "slt", + "nodeType": "YulIdentifier", + "src": "2284:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "2284:27:1" + } + ], + "functionName": { + "name": "iszero", + "nodeType": "YulIdentifier", + "src": "2277:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "2277:35:1" + }, + "nodeType": "YulIf", + "src": "2274:122:1" + }, + { + "nodeType": "YulVariableDeclaration", + "src": "2405:34:1", + "value": { + "arguments": [ + { + "name": "offset", + "nodeType": "YulIdentifier", + "src": "2432:6:1" + } + ], + "functionName": { + "name": "calldataload", + "nodeType": "YulIdentifier", + "src": "2419:12:1" + }, + "nodeType": "YulFunctionCall", + "src": "2419:20:1" + }, + "variables": [ + { + "name": "length", + "nodeType": "YulTypedName", + "src": "2409:6:1", + "type": "" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "2448:88:1", + "value": { + "arguments": [ + { + "arguments": [ + { + "name": "offset", + "nodeType": "YulIdentifier", + "src": "2509:6:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "2517:4:1", + "type": "", + "value": "0x20" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "2505:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "2505:17:1" + }, + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "2524:6:1" + }, + { + "name": "end", + "nodeType": "YulIdentifier", + "src": "2532:3:1" + } + ], + "functionName": { + "name": "abi_decode_available_length_t_string_memory_ptr", + "nodeType": "YulIdentifier", + "src": "2457:47:1" + }, + "nodeType": "YulFunctionCall", + "src": "2457:79:1" + }, + "variableNames": [ + { + "name": "array", + "nodeType": "YulIdentifier", + "src": "2448:5:1" + } + ] + } + ] + }, + "name": "abi_decode_t_string_memory_ptr", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "offset", + "nodeType": "YulTypedName", + "src": "2242:6:1", + "type": "" + }, + { + "name": "end", + "nodeType": "YulTypedName", + "src": "2250:3:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "array", + "nodeType": "YulTypedName", + "src": "2258:5:1", + "type": "" + } + ], + "src": "2202:340:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "2624:433:1", + "statements": [ + { + "body": { + "nodeType": "YulBlock", + "src": "2670:83:1", + "statements": [ + { + "expression": { + "arguments": [], + "functionName": { + "name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", + "nodeType": "YulIdentifier", + "src": "2672:77:1" + }, + "nodeType": "YulFunctionCall", + "src": "2672:79:1" + }, + "nodeType": "YulExpressionStatement", + "src": "2672:79:1" + } + ] + }, + "condition": { + "arguments": [ + { + "arguments": [ + { + "name": "dataEnd", + "nodeType": "YulIdentifier", + "src": "2645:7:1" + }, + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "2654:9:1" + } + ], + "functionName": { + "name": "sub", + "nodeType": "YulIdentifier", + "src": "2641:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "2641:23:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "2666:2:1", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "slt", + "nodeType": "YulIdentifier", + "src": "2637:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "2637:32:1" + }, + "nodeType": "YulIf", + "src": "2634:119:1" + }, + { + "nodeType": "YulBlock", + "src": "2763:287:1", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "2778:45:1", + "value": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "2809:9:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "2820:1:1", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "2805:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "2805:17:1" + } + ], + "functionName": { + "name": "calldataload", + "nodeType": "YulIdentifier", + "src": "2792:12:1" + }, + "nodeType": "YulFunctionCall", + "src": "2792:31:1" + }, + "variables": [ + { + "name": "offset", + "nodeType": "YulTypedName", + "src": "2782:6:1", + "type": "" + } + ] + }, + { + "body": { + "nodeType": "YulBlock", + "src": "2870:83:1", + "statements": [ + { + "expression": { + "arguments": [], + "functionName": { + "name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db", + "nodeType": "YulIdentifier", + "src": "2872:77:1" + }, + "nodeType": "YulFunctionCall", + "src": "2872:79:1" + }, + "nodeType": "YulExpressionStatement", + "src": "2872:79:1" + } + ] + }, + "condition": { + "arguments": [ + { + "name": "offset", + "nodeType": "YulIdentifier", + "src": "2842:6:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "2850:18:1", + "type": "", + "value": "0xffffffffffffffff" + } + ], + "functionName": { + "name": "gt", + "nodeType": "YulIdentifier", + "src": "2839:2:1" + }, + "nodeType": "YulFunctionCall", + "src": "2839:30:1" + }, + "nodeType": "YulIf", + "src": "2836:117:1" + }, + { + "nodeType": "YulAssignment", + "src": "2967:73:1", + "value": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "3012:9:1" + }, + { + "name": "offset", + "nodeType": "YulIdentifier", + "src": "3023:6:1" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "3008:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "3008:22:1" + }, + { + "name": "dataEnd", + "nodeType": "YulIdentifier", + "src": "3032:7:1" + } + ], + "functionName": { + "name": "abi_decode_t_string_memory_ptr", + "nodeType": "YulIdentifier", + "src": "2977:30:1" + }, + "nodeType": "YulFunctionCall", + "src": "2977:63:1" + }, + "variableNames": [ + { + "name": "value0", + "nodeType": "YulIdentifier", + "src": "2967:6:1" + } + ] + } + ] + } + ] + }, + "name": "abi_decode_tuple_t_string_memory_ptr", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "2594:9:1", + "type": "" + }, + { + "name": "dataEnd", + "nodeType": "YulTypedName", + "src": "2605:7:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "value0", + "nodeType": "YulTypedName", + "src": "2617:6:1", + "type": "" + } + ], + "src": "2548:509:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "3108:32:1", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "3118:16:1", + "value": { + "name": "value", + "nodeType": "YulIdentifier", + "src": "3129:5:1" + }, + "variableNames": [ + { + "name": "cleaned", + "nodeType": "YulIdentifier", + "src": "3118:7:1" + } + ] + } + ] + }, + "name": "cleanup_t_uint256", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "3090:5:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "cleaned", + "nodeType": "YulTypedName", + "src": "3100:7:1", + "type": "" + } + ], + "src": "3063:77:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "3211:53:1", + "statements": [ + { + "expression": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "3228:3:1" + }, + { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "3251:5:1" + } + ], + "functionName": { + "name": "cleanup_t_uint256", + "nodeType": "YulIdentifier", + "src": "3233:17:1" + }, + "nodeType": "YulFunctionCall", + "src": "3233:24:1" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "3221:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "3221:37:1" + }, + "nodeType": "YulExpressionStatement", + "src": "3221:37:1" + } + ] + }, + "name": "abi_encode_t_uint256_to_t_uint256_fromStack", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "3199:5:1", + "type": "" + }, + { + "name": "pos", + "nodeType": "YulTypedName", + "src": "3206:3:1", + "type": "" + } + ], + "src": "3146:118:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "3368:124:1", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "3378:26:1", + "value": { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "3390:9:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "3401:2:1", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "3386:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "3386:18:1" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "3378:4:1" + } + ] + }, + { + "expression": { + "arguments": [ + { + "name": "value0", + "nodeType": "YulIdentifier", + "src": "3458:6:1" + }, + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "3471:9:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "3482:1:1", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "3467:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "3467:17:1" + } + ], + "functionName": { + "name": "abi_encode_t_uint256_to_t_uint256_fromStack", + "nodeType": "YulIdentifier", + "src": "3414:43:1" + }, + "nodeType": "YulFunctionCall", + "src": "3414:71:1" + }, + "nodeType": "YulExpressionStatement", + "src": "3414:71:1" + } + ] + }, + "name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "3340:9:1", + "type": "" + }, + { + "name": "value0", + "nodeType": "YulTypedName", + "src": "3352:6:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "tail", + "nodeType": "YulTypedName", + "src": "3363:4:1", + "type": "" + } + ], + "src": "3270:222:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "3541:79:1", + "statements": [ + { + "body": { + "nodeType": "YulBlock", + "src": "3598:16:1", + "statements": [ + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "3607:1:1", + "type": "", + "value": "0" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "3610:1:1", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "revert", + "nodeType": "YulIdentifier", + "src": "3600:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "3600:12:1" + }, + "nodeType": "YulExpressionStatement", + "src": "3600:12:1" + } + ] + }, + "condition": { + "arguments": [ + { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "3564:5:1" + }, + { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "3589:5:1" + } + ], + "functionName": { + "name": "cleanup_t_uint256", + "nodeType": "YulIdentifier", + "src": "3571:17:1" + }, + "nodeType": "YulFunctionCall", + "src": "3571:24:1" + } + ], + "functionName": { + "name": "eq", + "nodeType": "YulIdentifier", + "src": "3561:2:1" + }, + "nodeType": "YulFunctionCall", + "src": "3561:35:1" + } + ], + "functionName": { + "name": "iszero", + "nodeType": "YulIdentifier", + "src": "3554:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "3554:43:1" + }, + "nodeType": "YulIf", + "src": "3551:63:1" + } + ] + }, + "name": "validator_revert_t_uint256", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "3534:5:1", + "type": "" + } + ], + "src": "3498:122:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "3678:87:1", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "3688:29:1", + "value": { + "arguments": [ + { + "name": "offset", + "nodeType": "YulIdentifier", + "src": "3710:6:1" + } + ], + "functionName": { + "name": "calldataload", + "nodeType": "YulIdentifier", + "src": "3697:12:1" + }, + "nodeType": "YulFunctionCall", + "src": "3697:20:1" + }, + "variableNames": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "3688:5:1" + } + ] + }, + { + "expression": { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "3753:5:1" + } + ], + "functionName": { + "name": "validator_revert_t_uint256", + "nodeType": "YulIdentifier", + "src": "3726:26:1" + }, + "nodeType": "YulFunctionCall", + "src": "3726:33:1" + }, + "nodeType": "YulExpressionStatement", + "src": "3726:33:1" + } + ] + }, + "name": "abi_decode_t_uint256", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "offset", + "nodeType": "YulTypedName", + "src": "3656:6:1", + "type": "" + }, + { + "name": "end", + "nodeType": "YulTypedName", + "src": "3664:3:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "3672:5:1", + "type": "" + } + ], + "src": "3626:139:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "3837:263:1", + "statements": [ + { + "body": { + "nodeType": "YulBlock", + "src": "3883:83:1", + "statements": [ + { + "expression": { + "arguments": [], + "functionName": { + "name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", + "nodeType": "YulIdentifier", + "src": "3885:77:1" + }, + "nodeType": "YulFunctionCall", + "src": "3885:79:1" + }, + "nodeType": "YulExpressionStatement", + "src": "3885:79:1" + } + ] + }, + "condition": { + "arguments": [ + { + "arguments": [ + { + "name": "dataEnd", + "nodeType": "YulIdentifier", + "src": "3858:7:1" + }, + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "3867:9:1" + } + ], + "functionName": { + "name": "sub", + "nodeType": "YulIdentifier", + "src": "3854:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "3854:23:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "3879:2:1", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "slt", + "nodeType": "YulIdentifier", + "src": "3850:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "3850:32:1" + }, + "nodeType": "YulIf", + "src": "3847:119:1" + }, + { + "nodeType": "YulBlock", + "src": "3976:117:1", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "3991:15:1", + "value": { + "kind": "number", + "nodeType": "YulLiteral", + "src": "4005:1:1", + "type": "", + "value": "0" + }, + "variables": [ + { + "name": "offset", + "nodeType": "YulTypedName", + "src": "3995:6:1", + "type": "" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "4020:63:1", + "value": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "4055:9:1" + }, + { + "name": "offset", + "nodeType": "YulIdentifier", + "src": "4066:6:1" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "4051:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "4051:22:1" + }, + { + "name": "dataEnd", + "nodeType": "YulIdentifier", + "src": "4075:7:1" + } + ], + "functionName": { + "name": "abi_decode_t_uint256", + "nodeType": "YulIdentifier", + "src": "4030:20:1" + }, + "nodeType": "YulFunctionCall", + "src": "4030:53:1" + }, + "variableNames": [ + { + "name": "value0", + "nodeType": "YulIdentifier", + "src": "4020:6:1" + } + ] + } + ] + } + ] + }, + "name": "abi_decode_tuple_t_uint256", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "3807:9:1", + "type": "" + }, + { + "name": "dataEnd", + "nodeType": "YulTypedName", + "src": "3818:7:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "value0", + "nodeType": "YulTypedName", + "src": "3830:6:1", + "type": "" + } + ], + "src": "3771:329:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "4165:40:1", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "4176:22:1", + "value": { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "4192:5:1" + } + ], + "functionName": { + "name": "mload", + "nodeType": "YulIdentifier", + "src": "4186:5:1" + }, + "nodeType": "YulFunctionCall", + "src": "4186:12:1" + }, + "variableNames": [ + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "4176:6:1" + } + ] + } + ] + }, + "name": "array_length_t_string_memory_ptr", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "4148:5:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "length", + "nodeType": "YulTypedName", + "src": "4158:6:1", + "type": "" + } + ], + "src": "4106:99:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "4307:73:1", + "statements": [ + { + "expression": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "4324:3:1" + }, + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "4329:6:1" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "4317:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "4317:19:1" + }, + "nodeType": "YulExpressionStatement", + "src": "4317:19:1" + }, + { + "nodeType": "YulAssignment", + "src": "4345:29:1", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "4364:3:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "4369:4:1", + "type": "", + "value": "0x20" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "4360:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "4360:14:1" + }, + "variableNames": [ + { + "name": "updated_pos", + "nodeType": "YulIdentifier", + "src": "4345:11:1" + } + ] + } + ] + }, + "name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "pos", + "nodeType": "YulTypedName", + "src": "4279:3:1", + "type": "" + }, + { + "name": "length", + "nodeType": "YulTypedName", + "src": "4284:6:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "updated_pos", + "nodeType": "YulTypedName", + "src": "4295:11:1", + "type": "" + } + ], + "src": "4211:169:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "4435:258:1", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "4445:10:1", + "value": { + "kind": "number", + "nodeType": "YulLiteral", + "src": "4454:1:1", + "type": "", + "value": "0" + }, + "variables": [ + { + "name": "i", + "nodeType": "YulTypedName", + "src": "4449:1:1", + "type": "" + } + ] + }, + { + "body": { + "nodeType": "YulBlock", + "src": "4514:63:1", + "statements": [ + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "dst", + "nodeType": "YulIdentifier", + "src": "4539:3:1" + }, + { + "name": "i", + "nodeType": "YulIdentifier", + "src": "4544:1:1" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "4535:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "4535:11:1" + }, + { + "arguments": [ + { + "arguments": [ + { + "name": "src", + "nodeType": "YulIdentifier", + "src": "4558:3:1" + }, + { + "name": "i", + "nodeType": "YulIdentifier", + "src": "4563:1:1" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "4554:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "4554:11:1" + } + ], + "functionName": { + "name": "mload", + "nodeType": "YulIdentifier", + "src": "4548:5:1" + }, + "nodeType": "YulFunctionCall", + "src": "4548:18:1" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "4528:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "4528:39:1" + }, + "nodeType": "YulExpressionStatement", + "src": "4528:39:1" + } + ] + }, + "condition": { + "arguments": [ + { + "name": "i", + "nodeType": "YulIdentifier", + "src": "4475:1:1" + }, + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "4478:6:1" + } + ], + "functionName": { + "name": "lt", + "nodeType": "YulIdentifier", + "src": "4472:2:1" + }, + "nodeType": "YulFunctionCall", + "src": "4472:13:1" + }, + "nodeType": "YulForLoop", + "post": { + "nodeType": "YulBlock", + "src": "4486:19:1", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "4488:15:1", + "value": { + "arguments": [ + { + "name": "i", + "nodeType": "YulIdentifier", + "src": "4497:1:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "4500:2:1", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "4493:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "4493:10:1" + }, + "variableNames": [ + { + "name": "i", + "nodeType": "YulIdentifier", + "src": "4488:1:1" + } + ] + } + ] + }, + "pre": { + "nodeType": "YulBlock", + "src": "4468:3:1", + "statements": [] + }, + "src": "4464:113:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "4611:76:1", + "statements": [ + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "dst", + "nodeType": "YulIdentifier", + "src": "4661:3:1" + }, + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "4666:6:1" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "4657:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "4657:16:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "4675:1:1", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "4650:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "4650:27:1" + }, + "nodeType": "YulExpressionStatement", + "src": "4650:27:1" + } + ] + }, + "condition": { + "arguments": [ + { + "name": "i", + "nodeType": "YulIdentifier", + "src": "4592:1:1" + }, + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "4595:6:1" + } + ], + "functionName": { + "name": "gt", + "nodeType": "YulIdentifier", + "src": "4589:2:1" + }, + "nodeType": "YulFunctionCall", + "src": "4589:13:1" + }, + "nodeType": "YulIf", + "src": "4586:101:1" + } + ] + }, + "name": "copy_memory_to_memory", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "src", + "nodeType": "YulTypedName", + "src": "4417:3:1", + "type": "" + }, + { + "name": "dst", + "nodeType": "YulTypedName", + "src": "4422:3:1", + "type": "" + }, + { + "name": "length", + "nodeType": "YulTypedName", + "src": "4427:6:1", + "type": "" + } + ], + "src": "4386:307:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "4791:272:1", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "4801:53:1", + "value": { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "4848:5:1" + } + ], + "functionName": { + "name": "array_length_t_string_memory_ptr", + "nodeType": "YulIdentifier", + "src": "4815:32:1" + }, + "nodeType": "YulFunctionCall", + "src": "4815:39:1" + }, + "variables": [ + { + "name": "length", + "nodeType": "YulTypedName", + "src": "4805:6:1", + "type": "" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "4863:78:1", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "4929:3:1" + }, + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "4934:6:1" + } + ], + "functionName": { + "name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "4870:58:1" + }, + "nodeType": "YulFunctionCall", + "src": "4870:71:1" + }, + "variableNames": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "4863:3:1" + } + ] + }, + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "4976:5:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "4983:4:1", + "type": "", + "value": "0x20" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "4972:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "4972:16:1" + }, + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "4990:3:1" + }, + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "4995:6:1" + } + ], + "functionName": { + "name": "copy_memory_to_memory", + "nodeType": "YulIdentifier", + "src": "4950:21:1" + }, + "nodeType": "YulFunctionCall", + "src": "4950:52:1" + }, + "nodeType": "YulExpressionStatement", + "src": "4950:52:1" + }, + { + "nodeType": "YulAssignment", + "src": "5011:46:1", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "5022:3:1" + }, + { + "arguments": [ + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "5049:6:1" + } + ], + "functionName": { + "name": "round_up_to_mul_of_32", + "nodeType": "YulIdentifier", + "src": "5027:21:1" + }, + "nodeType": "YulFunctionCall", + "src": "5027:29:1" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "5018:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "5018:39:1" + }, + "variableNames": [ + { + "name": "end", + "nodeType": "YulIdentifier", + "src": "5011:3:1" + } + ] + } + ] + }, + "name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "4772:5:1", + "type": "" + }, + { + "name": "pos", + "nodeType": "YulTypedName", + "src": "4779:3:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "end", + "nodeType": "YulTypedName", + "src": "4787:3:1", + "type": "" + } + ], + "src": "4699:364:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "5187:195:1", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "5197:26:1", + "value": { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "5209:9:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "5220:2:1", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "5205:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "5205:18:1" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "5197:4:1" + } + ] + }, + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "5244:9:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "5255:1:1", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "5240:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "5240:17:1" + }, + { + "arguments": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "5263:4:1" + }, + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "5269:9:1" + } + ], + "functionName": { + "name": "sub", + "nodeType": "YulIdentifier", + "src": "5259:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "5259:20:1" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "5233:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "5233:47:1" + }, + "nodeType": "YulExpressionStatement", + "src": "5233:47:1" + }, + { + "nodeType": "YulAssignment", + "src": "5289:86:1", + "value": { + "arguments": [ + { + "name": "value0", + "nodeType": "YulIdentifier", + "src": "5361:6:1" + }, + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "5370:4:1" + } + ], + "functionName": { + "name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "5297:63:1" + }, + "nodeType": "YulFunctionCall", + "src": "5297:78:1" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "5289:4:1" + } + ] + } + ] + }, + "name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "5159:9:1", + "type": "" + }, + { + "name": "value0", + "nodeType": "YulTypedName", + "src": "5171:6:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "tail", + "nodeType": "YulTypedName", + "src": "5182:4:1", + "type": "" + } + ], + "src": "5069:313:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "5433:81:1", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "5443:65:1", + "value": { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "5458:5:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "5465:42:1", + "type": "", + "value": "0xffffffffffffffffffffffffffffffffffffffff" + } + ], + "functionName": { + "name": "and", + "nodeType": "YulIdentifier", + "src": "5454:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "5454:54:1" + }, + "variableNames": [ + { + "name": "cleaned", + "nodeType": "YulIdentifier", + "src": "5443:7:1" + } + ] + } + ] + }, + "name": "cleanup_t_uint160", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "5415:5:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "cleaned", + "nodeType": "YulTypedName", + "src": "5425:7:1", + "type": "" + } + ], + "src": "5388:126:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "5565:51:1", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "5575:35:1", + "value": { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "5604:5:1" + } + ], + "functionName": { + "name": "cleanup_t_uint160", + "nodeType": "YulIdentifier", + "src": "5586:17:1" + }, + "nodeType": "YulFunctionCall", + "src": "5586:24:1" + }, + "variableNames": [ + { + "name": "cleaned", + "nodeType": "YulIdentifier", + "src": "5575:7:1" + } + ] + } + ] + }, + "name": "cleanup_t_address", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "5547:5:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "cleaned", + "nodeType": "YulTypedName", + "src": "5557:7:1", + "type": "" + } + ], + "src": "5520:96:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "5665:79:1", + "statements": [ + { + "body": { + "nodeType": "YulBlock", + "src": "5722:16:1", + "statements": [ + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "5731:1:1", + "type": "", + "value": "0" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "5734:1:1", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "revert", + "nodeType": "YulIdentifier", + "src": "5724:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "5724:12:1" + }, + "nodeType": "YulExpressionStatement", + "src": "5724:12:1" + } + ] + }, + "condition": { + "arguments": [ + { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "5688:5:1" + }, + { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "5713:5:1" + } + ], + "functionName": { + "name": "cleanup_t_address", + "nodeType": "YulIdentifier", + "src": "5695:17:1" + }, + "nodeType": "YulFunctionCall", + "src": "5695:24:1" + } + ], + "functionName": { + "name": "eq", + "nodeType": "YulIdentifier", + "src": "5685:2:1" + }, + "nodeType": "YulFunctionCall", + "src": "5685:35:1" + } + ], + "functionName": { + "name": "iszero", + "nodeType": "YulIdentifier", + "src": "5678:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "5678:43:1" + }, + "nodeType": "YulIf", + "src": "5675:63:1" + } + ] + }, + "name": "validator_revert_t_address", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "5658:5:1", + "type": "" + } + ], + "src": "5622:122:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "5802:87:1", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "5812:29:1", + "value": { + "arguments": [ + { + "name": "offset", + "nodeType": "YulIdentifier", + "src": "5834:6:1" + } + ], + "functionName": { + "name": "calldataload", + "nodeType": "YulIdentifier", + "src": "5821:12:1" + }, + "nodeType": "YulFunctionCall", + "src": "5821:20:1" + }, + "variableNames": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "5812:5:1" + } + ] + }, + { + "expression": { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "5877:5:1" + } + ], + "functionName": { + "name": "validator_revert_t_address", + "nodeType": "YulIdentifier", + "src": "5850:26:1" + }, + "nodeType": "YulFunctionCall", + "src": "5850:33:1" + }, + "nodeType": "YulExpressionStatement", + "src": "5850:33:1" + } + ] + }, + "name": "abi_decode_t_address", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "offset", + "nodeType": "YulTypedName", + "src": "5780:6:1", + "type": "" + }, + { + "name": "end", + "nodeType": "YulTypedName", + "src": "5788:3:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "5796:5:1", + "type": "" + } + ], + "src": "5750:139:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "5961:263:1", + "statements": [ + { + "body": { + "nodeType": "YulBlock", + "src": "6007:83:1", + "statements": [ + { + "expression": { + "arguments": [], + "functionName": { + "name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", + "nodeType": "YulIdentifier", + "src": "6009:77:1" + }, + "nodeType": "YulFunctionCall", + "src": "6009:79:1" + }, + "nodeType": "YulExpressionStatement", + "src": "6009:79:1" + } + ] + }, + "condition": { + "arguments": [ + { + "arguments": [ + { + "name": "dataEnd", + "nodeType": "YulIdentifier", + "src": "5982:7:1" + }, + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "5991:9:1" + } + ], + "functionName": { + "name": "sub", + "nodeType": "YulIdentifier", + "src": "5978:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "5978:23:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "6003:2:1", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "slt", + "nodeType": "YulIdentifier", + "src": "5974:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "5974:32:1" + }, + "nodeType": "YulIf", + "src": "5971:119:1" + }, + { + "nodeType": "YulBlock", + "src": "6100:117:1", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "6115:15:1", + "value": { + "kind": "number", + "nodeType": "YulLiteral", + "src": "6129:1:1", + "type": "", + "value": "0" + }, + "variables": [ + { + "name": "offset", + "nodeType": "YulTypedName", + "src": "6119:6:1", + "type": "" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "6144:63:1", + "value": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "6179:9:1" + }, + { + "name": "offset", + "nodeType": "YulIdentifier", + "src": "6190:6:1" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "6175:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "6175:22:1" + }, + { + "name": "dataEnd", + "nodeType": "YulIdentifier", + "src": "6199:7:1" + } + ], + "functionName": { + "name": "abi_decode_t_address", + "nodeType": "YulIdentifier", + "src": "6154:20:1" + }, + "nodeType": "YulFunctionCall", + "src": "6154:53:1" + }, + "variableNames": [ + { + "name": "value0", + "nodeType": "YulIdentifier", + "src": "6144:6:1" + } + ] + } + ] + } + ] + }, + "name": "abi_decode_tuple_t_address", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "5931:9:1", + "type": "" + }, + { + "name": "dataEnd", + "nodeType": "YulTypedName", + "src": "5942:7:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "value0", + "nodeType": "YulTypedName", + "src": "5954:6:1", + "type": "" + } + ], + "src": "5895:329:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "6272:48:1", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "6282:32:1", + "value": { + "arguments": [ + { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "6307:5:1" + } + ], + "functionName": { + "name": "iszero", + "nodeType": "YulIdentifier", + "src": "6300:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "6300:13:1" + } + ], + "functionName": { + "name": "iszero", + "nodeType": "YulIdentifier", + "src": "6293:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "6293:21:1" + }, + "variableNames": [ + { + "name": "cleaned", + "nodeType": "YulIdentifier", + "src": "6282:7:1" + } + ] + } + ] + }, + "name": "cleanup_t_bool", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "6254:5:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "cleaned", + "nodeType": "YulTypedName", + "src": "6264:7:1", + "type": "" + } + ], + "src": "6230:90:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "6385:50:1", + "statements": [ + { + "expression": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "6402:3:1" + }, + { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "6422:5:1" + } + ], + "functionName": { + "name": "cleanup_t_bool", + "nodeType": "YulIdentifier", + "src": "6407:14:1" + }, + "nodeType": "YulFunctionCall", + "src": "6407:21:1" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "6395:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "6395:34:1" + }, + "nodeType": "YulExpressionStatement", + "src": "6395:34:1" + } + ] + }, + "name": "abi_encode_t_bool_to_t_bool_fromStack", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "6373:5:1", + "type": "" + }, + { + "name": "pos", + "nodeType": "YulTypedName", + "src": "6380:3:1", + "type": "" + } + ], + "src": "6326:109:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "6533:118:1", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "6543:26:1", + "value": { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "6555:9:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "6566:2:1", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "6551:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "6551:18:1" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "6543:4:1" + } + ] + }, + { + "expression": { + "arguments": [ + { + "name": "value0", + "nodeType": "YulIdentifier", + "src": "6617:6:1" + }, + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "6630:9:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "6641:1:1", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "6626:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "6626:17:1" + } + ], + "functionName": { + "name": "abi_encode_t_bool_to_t_bool_fromStack", + "nodeType": "YulIdentifier", + "src": "6579:37:1" + }, + "nodeType": "YulFunctionCall", + "src": "6579:65:1" + }, + "nodeType": "YulExpressionStatement", + "src": "6579:65:1" + } + ] + }, + "name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "6505:9:1", + "type": "" + }, + { + "name": "value0", + "nodeType": "YulTypedName", + "src": "6517:6:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "tail", + "nodeType": "YulTypedName", + "src": "6528:4:1", + "type": "" + } + ], + "src": "6441:210:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "6722:53:1", + "statements": [ + { + "expression": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "6739:3:1" + }, + { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "6762:5:1" + } + ], + "functionName": { + "name": "cleanup_t_address", + "nodeType": "YulIdentifier", + "src": "6744:17:1" + }, + "nodeType": "YulFunctionCall", + "src": "6744:24:1" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "6732:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "6732:37:1" + }, + "nodeType": "YulExpressionStatement", + "src": "6732:37:1" + } + ] + }, + "name": "abi_encode_t_address_to_t_address_fromStack", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "6710:5:1", + "type": "" + }, + { + "name": "pos", + "nodeType": "YulTypedName", + "src": "6717:3:1", + "type": "" + } + ], + "src": "6657:118:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "6879:124:1", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "6889:26:1", + "value": { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "6901:9:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "6912:2:1", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "6897:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "6897:18:1" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "6889:4:1" + } + ] + }, + { + "expression": { + "arguments": [ + { + "name": "value0", + "nodeType": "YulIdentifier", + "src": "6969:6:1" + }, + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "6982:9:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "6993:1:1", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "6978:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "6978:17:1" + } + ], + "functionName": { + "name": "abi_encode_t_address_to_t_address_fromStack", + "nodeType": "YulIdentifier", + "src": "6925:43:1" + }, + "nodeType": "YulFunctionCall", + "src": "6925:71:1" + }, + "nodeType": "YulExpressionStatement", + "src": "6925:71:1" + } + ] + }, + "name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "6851:9:1", + "type": "" + }, + { + "name": "value0", + "nodeType": "YulTypedName", + "src": "6863:6:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "tail", + "nodeType": "YulTypedName", + "src": "6874:4:1", + "type": "" + } + ], + "src": "6781:222:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "7102:561:1", + "statements": [ + { + "body": { + "nodeType": "YulBlock", + "src": "7148:83:1", + "statements": [ + { + "expression": { + "arguments": [], + "functionName": { + "name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", + "nodeType": "YulIdentifier", + "src": "7150:77:1" + }, + "nodeType": "YulFunctionCall", + "src": "7150:79:1" + }, + "nodeType": "YulExpressionStatement", + "src": "7150:79:1" + } + ] + }, + "condition": { + "arguments": [ + { + "arguments": [ + { + "name": "dataEnd", + "nodeType": "YulIdentifier", + "src": "7123:7:1" + }, + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "7132:9:1" + } + ], + "functionName": { + "name": "sub", + "nodeType": "YulIdentifier", + "src": "7119:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "7119:23:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "7144:2:1", + "type": "", + "value": "64" + } + ], + "functionName": { + "name": "slt", + "nodeType": "YulIdentifier", + "src": "7115:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "7115:32:1" + }, + "nodeType": "YulIf", + "src": "7112:119:1" + }, + { + "nodeType": "YulBlock", + "src": "7241:117:1", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "7256:15:1", + "value": { + "kind": "number", + "nodeType": "YulLiteral", + "src": "7270:1:1", + "type": "", + "value": "0" + }, + "variables": [ + { + "name": "offset", + "nodeType": "YulTypedName", + "src": "7260:6:1", + "type": "" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "7285:63:1", + "value": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "7320:9:1" + }, + { + "name": "offset", + "nodeType": "YulIdentifier", + "src": "7331:6:1" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "7316:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "7316:22:1" + }, + { + "name": "dataEnd", + "nodeType": "YulIdentifier", + "src": "7340:7:1" + } + ], + "functionName": { + "name": "abi_decode_t_uint256", + "nodeType": "YulIdentifier", + "src": "7295:20:1" + }, + "nodeType": "YulFunctionCall", + "src": "7295:53:1" + }, + "variableNames": [ + { + "name": "value0", + "nodeType": "YulIdentifier", + "src": "7285:6:1" + } + ] + } + ] + }, + { + "nodeType": "YulBlock", + "src": "7368:288:1", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "7383:46:1", + "value": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "7414:9:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "7425:2:1", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "7410:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "7410:18:1" + } + ], + "functionName": { + "name": "calldataload", + "nodeType": "YulIdentifier", + "src": "7397:12:1" + }, + "nodeType": "YulFunctionCall", + "src": "7397:32:1" + }, + "variables": [ + { + "name": "offset", + "nodeType": "YulTypedName", + "src": "7387:6:1", + "type": "" + } + ] + }, + { + "body": { + "nodeType": "YulBlock", + "src": "7476:83:1", + "statements": [ + { + "expression": { + "arguments": [], + "functionName": { + "name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db", + "nodeType": "YulIdentifier", + "src": "7478:77:1" + }, + "nodeType": "YulFunctionCall", + "src": "7478:79:1" + }, + "nodeType": "YulExpressionStatement", + "src": "7478:79:1" + } + ] + }, + "condition": { + "arguments": [ + { + "name": "offset", + "nodeType": "YulIdentifier", + "src": "7448:6:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "7456:18:1", + "type": "", + "value": "0xffffffffffffffff" + } + ], + "functionName": { + "name": "gt", + "nodeType": "YulIdentifier", + "src": "7445:2:1" + }, + "nodeType": "YulFunctionCall", + "src": "7445:30:1" + }, + "nodeType": "YulIf", + "src": "7442:117:1" + }, + { + "nodeType": "YulAssignment", + "src": "7573:73:1", + "value": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "7618:9:1" + }, + { + "name": "offset", + "nodeType": "YulIdentifier", + "src": "7629:6:1" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "7614:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "7614:22:1" + }, + { + "name": "dataEnd", + "nodeType": "YulIdentifier", + "src": "7638:7:1" + } + ], + "functionName": { + "name": "abi_decode_t_string_memory_ptr", + "nodeType": "YulIdentifier", + "src": "7583:30:1" + }, + "nodeType": "YulFunctionCall", + "src": "7583:63:1" + }, + "variableNames": [ + { + "name": "value1", + "nodeType": "YulIdentifier", + "src": "7573:6:1" + } + ] + } + ] + } + ] + }, + "name": "abi_decode_tuple_t_uint256t_string_memory_ptr", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "7064:9:1", + "type": "" + }, + { + "name": "dataEnd", + "nodeType": "YulTypedName", + "src": "7075:7:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "value0", + "nodeType": "YulTypedName", + "src": "7087:6:1", + "type": "" + }, + { + "name": "value1", + "nodeType": "YulTypedName", + "src": "7095:6:1", + "type": "" + } + ], + "src": "7009:654:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "7753:40:1", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "7764:22:1", + "value": { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "7780:5:1" + } + ], + "functionName": { + "name": "mload", + "nodeType": "YulIdentifier", + "src": "7774:5:1" + }, + "nodeType": "YulFunctionCall", + "src": "7774:12:1" + }, + "variableNames": [ + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "7764:6:1" + } + ] + } + ] + }, + "name": "array_length_t_array$_t_string_memory_ptr_$dyn_memory_ptr", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "7736:5:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "length", + "nodeType": "YulTypedName", + "src": "7746:6:1", + "type": "" + } + ], + "src": "7669:124:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "7920:73:1", + "statements": [ + { + "expression": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "7937:3:1" + }, + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "7942:6:1" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "7930:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "7930:19:1" + }, + "nodeType": "YulExpressionStatement", + "src": "7930:19:1" + }, + { + "nodeType": "YulAssignment", + "src": "7958:29:1", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "7977:3:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "7982:4:1", + "type": "", + "value": "0x20" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "7973:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "7973:14:1" + }, + "variableNames": [ + { + "name": "updated_pos", + "nodeType": "YulIdentifier", + "src": "7958:11:1" + } + ] + } + ] + }, + "name": "array_storeLengthForEncoding_t_array$_t_string_memory_ptr_$dyn_memory_ptr_fromStack", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "pos", + "nodeType": "YulTypedName", + "src": "7892:3:1", + "type": "" + }, + { + "name": "length", + "nodeType": "YulTypedName", + "src": "7897:6:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "updated_pos", + "nodeType": "YulTypedName", + "src": "7908:11:1", + "type": "" + } + ], + "src": "7799:194:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "8081:60:1", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "8091:11:1", + "value": { + "name": "ptr", + "nodeType": "YulIdentifier", + "src": "8099:3:1" + }, + "variableNames": [ + { + "name": "data", + "nodeType": "YulIdentifier", + "src": "8091:4:1" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "8112:22:1", + "value": { + "arguments": [ + { + "name": "ptr", + "nodeType": "YulIdentifier", + "src": "8124:3:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "8129:4:1", + "type": "", + "value": "0x20" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "8120:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "8120:14:1" + }, + "variableNames": [ + { + "name": "data", + "nodeType": "YulIdentifier", + "src": "8112:4:1" + } + ] + } + ] + }, + "name": "array_dataslot_t_array$_t_string_memory_ptr_$dyn_memory_ptr", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "ptr", + "nodeType": "YulTypedName", + "src": "8068:3:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "data", + "nodeType": "YulTypedName", + "src": "8076:4:1", + "type": "" + } + ], + "src": "7999:142:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "8233:73:1", + "statements": [ + { + "expression": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "8250:3:1" + }, + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "8255:6:1" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "8243:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "8243:19:1" + }, + "nodeType": "YulExpressionStatement", + "src": "8243:19:1" + }, + { + "nodeType": "YulAssignment", + "src": "8271:29:1", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "8290:3:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "8295:4:1", + "type": "", + "value": "0x20" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "8286:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "8286:14:1" + }, + "variableNames": [ + { + "name": "updated_pos", + "nodeType": "YulIdentifier", + "src": "8271:11:1" + } + ] + } + ] + }, + "name": "array_storeLengthForEncoding_t_string_memory_ptr", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "pos", + "nodeType": "YulTypedName", + "src": "8205:3:1", + "type": "" + }, + { + "name": "length", + "nodeType": "YulTypedName", + "src": "8210:6:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "updated_pos", + "nodeType": "YulTypedName", + "src": "8221:11:1", + "type": "" + } + ], + "src": "8147:159:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "8394:262:1", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "8404:53:1", + "value": { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "8451:5:1" + } + ], + "functionName": { + "name": "array_length_t_string_memory_ptr", + "nodeType": "YulIdentifier", + "src": "8418:32:1" + }, + "nodeType": "YulFunctionCall", + "src": "8418:39:1" + }, + "variables": [ + { + "name": "length", + "nodeType": "YulTypedName", + "src": "8408:6:1", + "type": "" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "8466:68:1", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "8522:3:1" + }, + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "8527:6:1" + } + ], + "functionName": { + "name": "array_storeLengthForEncoding_t_string_memory_ptr", + "nodeType": "YulIdentifier", + "src": "8473:48:1" + }, + "nodeType": "YulFunctionCall", + "src": "8473:61:1" + }, + "variableNames": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "8466:3:1" + } + ] + }, + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "8569:5:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "8576:4:1", + "type": "", + "value": "0x20" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "8565:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "8565:16:1" + }, + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "8583:3:1" + }, + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "8588:6:1" + } + ], + "functionName": { + "name": "copy_memory_to_memory", + "nodeType": "YulIdentifier", + "src": "8543:21:1" + }, + "nodeType": "YulFunctionCall", + "src": "8543:52:1" + }, + "nodeType": "YulExpressionStatement", + "src": "8543:52:1" + }, + { + "nodeType": "YulAssignment", + "src": "8604:46:1", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "8615:3:1" + }, + { + "arguments": [ + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "8642:6:1" + } + ], + "functionName": { + "name": "round_up_to_mul_of_32", + "nodeType": "YulIdentifier", + "src": "8620:21:1" + }, + "nodeType": "YulFunctionCall", + "src": "8620:29:1" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "8611:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "8611:39:1" + }, + "variableNames": [ + { + "name": "end", + "nodeType": "YulIdentifier", + "src": "8604:3:1" + } + ] + } + ] + }, + "name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "8375:5:1", + "type": "" + }, + { + "name": "pos", + "nodeType": "YulTypedName", + "src": "8382:3:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "end", + "nodeType": "YulTypedName", + "src": "8390:3:1", + "type": "" + } + ], + "src": "8312:344:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "8762:96:1", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "8772:80:1", + "value": { + "arguments": [ + { + "name": "value0", + "nodeType": "YulIdentifier", + "src": "8840:6:1" + }, + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "8848:3:1" + } + ], + "functionName": { + "name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr", + "nodeType": "YulIdentifier", + "src": "8786:53:1" + }, + "nodeType": "YulFunctionCall", + "src": "8786:66:1" + }, + "variableNames": [ + { + "name": "updatedPos", + "nodeType": "YulIdentifier", + "src": "8772:10:1" + } + ] + } + ] + }, + "name": "abi_encodeUpdatedPos_t_string_memory_ptr_to_t_string_memory_ptr", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value0", + "nodeType": "YulTypedName", + "src": "8735:6:1", + "type": "" + }, + { + "name": "pos", + "nodeType": "YulTypedName", + "src": "8743:3:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "updatedPos", + "nodeType": "YulTypedName", + "src": "8751:10:1", + "type": "" + } + ], + "src": "8662:196:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "8949:38:1", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "8959:22:1", + "value": { + "arguments": [ + { + "name": "ptr", + "nodeType": "YulIdentifier", + "src": "8971:3:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "8976:4:1", + "type": "", + "value": "0x20" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "8967:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "8967:14:1" + }, + "variableNames": [ + { + "name": "next", + "nodeType": "YulIdentifier", + "src": "8959:4:1" + } + ] + } + ] + }, + "name": "array_nextElement_t_array$_t_string_memory_ptr_$dyn_memory_ptr", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "ptr", + "nodeType": "YulTypedName", + "src": "8936:3:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "next", + "nodeType": "YulTypedName", + "src": "8944:4:1", + "type": "" + } + ], + "src": "8864:123:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "9165:847:1", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "9175:78:1", + "value": { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "9247:5:1" + } + ], + "functionName": { + "name": "array_length_t_array$_t_string_memory_ptr_$dyn_memory_ptr", + "nodeType": "YulIdentifier", + "src": "9189:57:1" + }, + "nodeType": "YulFunctionCall", + "src": "9189:64:1" + }, + "variables": [ + { + "name": "length", + "nodeType": "YulTypedName", + "src": "9179:6:1", + "type": "" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "9262:103:1", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "9353:3:1" + }, + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "9358:6:1" + } + ], + "functionName": { + "name": "array_storeLengthForEncoding_t_array$_t_string_memory_ptr_$dyn_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "9269:83:1" + }, + "nodeType": "YulFunctionCall", + "src": "9269:96:1" + }, + "variableNames": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "9262:3:1" + } + ] + }, + { + "nodeType": "YulVariableDeclaration", + "src": "9374:20:1", + "value": { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "9391:3:1" + }, + "variables": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "9378:9:1", + "type": "" + } + ] + }, + { + "nodeType": "YulVariableDeclaration", + "src": "9403:39:1", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "9419:3:1" + }, + { + "arguments": [ + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "9428:6:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "9436:4:1", + "type": "", + "value": "0x20" + } + ], + "functionName": { + "name": "mul", + "nodeType": "YulIdentifier", + "src": "9424:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "9424:17:1" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "9415:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "9415:27:1" + }, + "variables": [ + { + "name": "tail", + "nodeType": "YulTypedName", + "src": "9407:4:1", + "type": "" + } + ] + }, + { + "nodeType": "YulVariableDeclaration", + "src": "9451:81:1", + "value": { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "9526:5:1" + } + ], + "functionName": { + "name": "array_dataslot_t_array$_t_string_memory_ptr_$dyn_memory_ptr", + "nodeType": "YulIdentifier", + "src": "9466:59:1" + }, + "nodeType": "YulFunctionCall", + "src": "9466:66:1" + }, + "variables": [ + { + "name": "baseRef", + "nodeType": "YulTypedName", + "src": "9455:7:1", + "type": "" + } + ] + }, + { + "nodeType": "YulVariableDeclaration", + "src": "9541:21:1", + "value": { + "name": "baseRef", + "nodeType": "YulIdentifier", + "src": "9555:7:1" + }, + "variables": [ + { + "name": "srcPtr", + "nodeType": "YulTypedName", + "src": "9545:6:1", + "type": "" + } + ] + }, + { + "body": { + "nodeType": "YulBlock", + "src": "9631:336:1", + "statements": [ + { + "expression": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "9652:3:1" + }, + { + "arguments": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "9661:4:1" + }, + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "9667:9:1" + } + ], + "functionName": { + "name": "sub", + "nodeType": "YulIdentifier", + "src": "9657:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "9657:20:1" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "9645:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "9645:33:1" + }, + "nodeType": "YulExpressionStatement", + "src": "9645:33:1" + }, + { + "nodeType": "YulVariableDeclaration", + "src": "9691:34:1", + "value": { + "arguments": [ + { + "name": "srcPtr", + "nodeType": "YulIdentifier", + "src": "9718:6:1" + } + ], + "functionName": { + "name": "mload", + "nodeType": "YulIdentifier", + "src": "9712:5:1" + }, + "nodeType": "YulFunctionCall", + "src": "9712:13:1" + }, + "variables": [ + { + "name": "elementValue0", + "nodeType": "YulTypedName", + "src": "9695:13:1", + "type": "" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "9738:92:1", + "value": { + "arguments": [ + { + "name": "elementValue0", + "nodeType": "YulIdentifier", + "src": "9810:13:1" + }, + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "9825:4:1" + } + ], + "functionName": { + "name": "abi_encodeUpdatedPos_t_string_memory_ptr_to_t_string_memory_ptr", + "nodeType": "YulIdentifier", + "src": "9746:63:1" + }, + "nodeType": "YulFunctionCall", + "src": "9746:84:1" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "9738:4:1" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "9843:80:1", + "value": { + "arguments": [ + { + "name": "srcPtr", + "nodeType": "YulIdentifier", + "src": "9916:6:1" + } + ], + "functionName": { + "name": "array_nextElement_t_array$_t_string_memory_ptr_$dyn_memory_ptr", + "nodeType": "YulIdentifier", + "src": "9853:62:1" + }, + "nodeType": "YulFunctionCall", + "src": "9853:70:1" + }, + "variableNames": [ + { + "name": "srcPtr", + "nodeType": "YulIdentifier", + "src": "9843:6:1" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "9936:21:1", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "9947:3:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "9952:4:1", + "type": "", + "value": "0x20" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "9943:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "9943:14:1" + }, + "variableNames": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "9936:3:1" + } + ] + } + ] + }, + "condition": { + "arguments": [ + { + "name": "i", + "nodeType": "YulIdentifier", + "src": "9593:1:1" + }, + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "9596:6:1" + } + ], + "functionName": { + "name": "lt", + "nodeType": "YulIdentifier", + "src": "9590:2:1" + }, + "nodeType": "YulFunctionCall", + "src": "9590:13:1" + }, + "nodeType": "YulForLoop", + "post": { + "nodeType": "YulBlock", + "src": "9604:18:1", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "9606:14:1", + "value": { + "arguments": [ + { + "name": "i", + "nodeType": "YulIdentifier", + "src": "9615:1:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "9618:1:1", + "type": "", + "value": "1" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "9611:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "9611:9:1" + }, + "variableNames": [ + { + "name": "i", + "nodeType": "YulIdentifier", + "src": "9606:1:1" + } + ] + } + ] + }, + "pre": { + "nodeType": "YulBlock", + "src": "9575:14:1", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "9577:10:1", + "value": { + "kind": "number", + "nodeType": "YulLiteral", + "src": "9586:1:1", + "type": "", + "value": "0" + }, + "variables": [ + { + "name": "i", + "nodeType": "YulTypedName", + "src": "9581:1:1", + "type": "" + } + ] + } + ] + }, + "src": "9571:396:1" + }, + { + "nodeType": "YulAssignment", + "src": "9976:11:1", + "value": { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "9983:4:1" + }, + "variableNames": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "9976:3:1" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "9996:10:1", + "value": { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "10003:3:1" + }, + "variableNames": [ + { + "name": "end", + "nodeType": "YulIdentifier", + "src": "9996:3:1" + } + ] + } + ] + }, + "name": "abi_encode_t_array$_t_string_memory_ptr_$dyn_memory_ptr_to_t_array$_t_string_memory_ptr_$dyn_memory_ptr_fromStack", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "9144:5:1", + "type": "" + }, + { + "name": "pos", + "nodeType": "YulTypedName", + "src": "9151:3:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "end", + "nodeType": "YulTypedName", + "src": "9160:3:1", + "type": "" + } + ], + "src": "9021:991:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "10186:245:1", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "10196:26:1", + "value": { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "10208:9:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "10219:2:1", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "10204:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "10204:18:1" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "10196:4:1" + } + ] + }, + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "10243:9:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "10254:1:1", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "10239:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "10239:17:1" + }, + { + "arguments": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "10262:4:1" + }, + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "10268:9:1" + } + ], + "functionName": { + "name": "sub", + "nodeType": "YulIdentifier", + "src": "10258:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "10258:20:1" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "10232:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "10232:47:1" + }, + "nodeType": "YulExpressionStatement", + "src": "10232:47:1" + }, + { + "nodeType": "YulAssignment", + "src": "10288:136:1", + "value": { + "arguments": [ + { + "name": "value0", + "nodeType": "YulIdentifier", + "src": "10410:6:1" + }, + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "10419:4:1" + } + ], + "functionName": { + "name": "abi_encode_t_array$_t_string_memory_ptr_$dyn_memory_ptr_to_t_array$_t_string_memory_ptr_$dyn_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "10296:113:1" + }, + "nodeType": "YulFunctionCall", + "src": "10296:128:1" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "10288:4:1" + } + ] + } + ] + }, + "name": "abi_encode_tuple_t_array$_t_string_memory_ptr_$dyn_memory_ptr__to_t_array$_t_string_memory_ptr_$dyn_memory_ptr__fromStack_reversed", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "10158:9:1", + "type": "" + }, + { + "name": "value0", + "nodeType": "YulTypedName", + "src": "10170:6:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "tail", + "nodeType": "YulTypedName", + "src": "10181:4:1", + "type": "" + } + ], + "src": "10018:413:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "10543:58:1", + "statements": [ + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "memPtr", + "nodeType": "YulIdentifier", + "src": "10565:6:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "10573:1:1", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "10561:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "10561:14:1" + }, + { + "hexValue": "4f6e6c792077686974656c697374", + "kind": "string", + "nodeType": "YulLiteral", + "src": "10577:16:1", + "type": "", + "value": "Only whitelist" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "10554:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "10554:40:1" + }, + "nodeType": "YulExpressionStatement", + "src": "10554:40:1" + } + ] + }, + "name": "store_literal_in_memory_e456a8df821d58a81d00df5ff2bc8653f1a52a4771d0bdf36a4aa3f1bac56f7b", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "memPtr", + "nodeType": "YulTypedName", + "src": "10535:6:1", + "type": "" + } + ], + "src": "10437:164:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "10753:220:1", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "10763:74:1", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "10829:3:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "10834:2:1", + "type": "", + "value": "14" + } + ], + "functionName": { + "name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "10770:58:1" + }, + "nodeType": "YulFunctionCall", + "src": "10770:67:1" + }, + "variableNames": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "10763:3:1" + } + ] + }, + { + "expression": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "10935:3:1" + } + ], + "functionName": { + "name": "store_literal_in_memory_e456a8df821d58a81d00df5ff2bc8653f1a52a4771d0bdf36a4aa3f1bac56f7b", + "nodeType": "YulIdentifier", + "src": "10846:88:1" + }, + "nodeType": "YulFunctionCall", + "src": "10846:93:1" + }, + "nodeType": "YulExpressionStatement", + "src": "10846:93:1" + }, + { + "nodeType": "YulAssignment", + "src": "10948:19:1", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "10959:3:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "10964:2:1", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "10955:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "10955:12:1" + }, + "variableNames": [ + { + "name": "end", + "nodeType": "YulIdentifier", + "src": "10948:3:1" + } + ] + } + ] + }, + "name": "abi_encode_t_stringliteral_e456a8df821d58a81d00df5ff2bc8653f1a52a4771d0bdf36a4aa3f1bac56f7b_to_t_string_memory_ptr_fromStack", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "pos", + "nodeType": "YulTypedName", + "src": "10741:3:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "end", + "nodeType": "YulTypedName", + "src": "10749:3:1", + "type": "" + } + ], + "src": "10607:366:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "11150:248:1", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "11160:26:1", + "value": { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "11172:9:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "11183:2:1", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "11168:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "11168:18:1" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "11160:4:1" + } + ] + }, + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "11207:9:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "11218:1:1", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "11203:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "11203:17:1" + }, + { + "arguments": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "11226:4:1" + }, + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "11232:9:1" + } + ], + "functionName": { + "name": "sub", + "nodeType": "YulIdentifier", + "src": "11222:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "11222:20:1" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "11196:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "11196:47:1" + }, + "nodeType": "YulExpressionStatement", + "src": "11196:47:1" + }, + { + "nodeType": "YulAssignment", + "src": "11252:139:1", + "value": { + "arguments": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "11386:4:1" + } + ], + "functionName": { + "name": "abi_encode_t_stringliteral_e456a8df821d58a81d00df5ff2bc8653f1a52a4771d0bdf36a4aa3f1bac56f7b_to_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "11260:124:1" + }, + "nodeType": "YulFunctionCall", + "src": "11260:131:1" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "11252:4:1" + } + ] + } + ] + }, + "name": "abi_encode_tuple_t_stringliteral_e456a8df821d58a81d00df5ff2bc8653f1a52a4771d0bdf36a4aa3f1bac56f7b__to_t_string_memory_ptr__fromStack_reversed", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "11130:9:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "tail", + "nodeType": "YulTypedName", + "src": "11145:4:1", + "type": "" + } + ], + "src": "10979:419:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "11432:152:1", + "statements": [ + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "11449:1:1", + "type": "", + "value": "0" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "11452:77:1", + "type": "", + "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "11442:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "11442:88:1" + }, + "nodeType": "YulExpressionStatement", + "src": "11442:88:1" + }, + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "11546:1:1", + "type": "", + "value": "4" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "11549:4:1", + "type": "", + "value": "0x11" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "11539:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "11539:15:1" + }, + "nodeType": "YulExpressionStatement", + "src": "11539:15:1" + }, + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "11570:1:1", + "type": "", + "value": "0" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "11573:4:1", + "type": "", + "value": "0x24" + } + ], + "functionName": { + "name": "revert", + "nodeType": "YulIdentifier", + "src": "11563:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "11563:15:1" + }, + "nodeType": "YulExpressionStatement", + "src": "11563:15:1" + } + ] + }, + "name": "panic_error_0x11", + "nodeType": "YulFunctionDefinition", + "src": "11404:180:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "11635:146:1", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "11645:25:1", + "value": { + "arguments": [ + { + "name": "x", + "nodeType": "YulIdentifier", + "src": "11668:1:1" + } + ], + "functionName": { + "name": "cleanup_t_uint256", + "nodeType": "YulIdentifier", + "src": "11650:17:1" + }, + "nodeType": "YulFunctionCall", + "src": "11650:20:1" + }, + "variableNames": [ + { + "name": "x", + "nodeType": "YulIdentifier", + "src": "11645:1:1" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "11679:25:1", + "value": { + "arguments": [ + { + "name": "y", + "nodeType": "YulIdentifier", + "src": "11702:1:1" + } + ], + "functionName": { + "name": "cleanup_t_uint256", + "nodeType": "YulIdentifier", + "src": "11684:17:1" + }, + "nodeType": "YulFunctionCall", + "src": "11684:20:1" + }, + "variableNames": [ + { + "name": "y", + "nodeType": "YulIdentifier", + "src": "11679:1:1" + } + ] + }, + { + "body": { + "nodeType": "YulBlock", + "src": "11726:22:1", + "statements": [ + { + "expression": { + "arguments": [], + "functionName": { + "name": "panic_error_0x11", + "nodeType": "YulIdentifier", + "src": "11728:16:1" + }, + "nodeType": "YulFunctionCall", + "src": "11728:18:1" + }, + "nodeType": "YulExpressionStatement", + "src": "11728:18:1" + } + ] + }, + "condition": { + "arguments": [ + { + "name": "x", + "nodeType": "YulIdentifier", + "src": "11720:1:1" + }, + { + "name": "y", + "nodeType": "YulIdentifier", + "src": "11723:1:1" + } + ], + "functionName": { + "name": "lt", + "nodeType": "YulIdentifier", + "src": "11717:2:1" + }, + "nodeType": "YulFunctionCall", + "src": "11717:8:1" + }, + "nodeType": "YulIf", + "src": "11714:34:1" + }, + { + "nodeType": "YulAssignment", + "src": "11758:17:1", + "value": { + "arguments": [ + { + "name": "x", + "nodeType": "YulIdentifier", + "src": "11770:1:1" + }, + { + "name": "y", + "nodeType": "YulIdentifier", + "src": "11773:1:1" + } + ], + "functionName": { + "name": "sub", + "nodeType": "YulIdentifier", + "src": "11766:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "11766:9:1" + }, + "variableNames": [ + { + "name": "diff", + "nodeType": "YulIdentifier", + "src": "11758:4:1" + } + ] + } + ] + }, + "name": "checked_sub_t_uint256", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "x", + "nodeType": "YulTypedName", + "src": "11621:1:1", + "type": "" + }, + { + "name": "y", + "nodeType": "YulTypedName", + "src": "11624:1:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "diff", + "nodeType": "YulTypedName", + "src": "11630:4:1", + "type": "" + } + ], + "src": "11590:191:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "11815:152:1", + "statements": [ + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "11832:1:1", + "type": "", + "value": "0" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "11835:77:1", + "type": "", + "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "11825:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "11825:88:1" + }, + "nodeType": "YulExpressionStatement", + "src": "11825:88:1" + }, + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "11929:1:1", + "type": "", + "value": "4" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "11932:4:1", + "type": "", + "value": "0x32" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "11922:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "11922:15:1" + }, + "nodeType": "YulExpressionStatement", + "src": "11922:15:1" + }, + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "11953:1:1", + "type": "", + "value": "0" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "11956:4:1", + "type": "", + "value": "0x24" + } + ], + "functionName": { + "name": "revert", + "nodeType": "YulIdentifier", + "src": "11946:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "11946:15:1" + }, + "nodeType": "YulExpressionStatement", + "src": "11946:15:1" + } + ] + }, + "name": "panic_error_0x32", + "nodeType": "YulFunctionDefinition", + "src": "11787:180:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "12001:152:1", + "statements": [ + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "12018:1:1", + "type": "", + "value": "0" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "12021:77:1", + "type": "", + "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "12011:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "12011:88:1" + }, + "nodeType": "YulExpressionStatement", + "src": "12011:88:1" + }, + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "12115:1:1", + "type": "", + "value": "4" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "12118:4:1", + "type": "", + "value": "0x22" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "12108:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "12108:15:1" + }, + "nodeType": "YulExpressionStatement", + "src": "12108:15:1" + }, + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "12139:1:1", + "type": "", + "value": "0" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "12142:4:1", + "type": "", + "value": "0x24" + } + ], + "functionName": { + "name": "revert", + "nodeType": "YulIdentifier", + "src": "12132:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "12132:15:1" + }, + "nodeType": "YulExpressionStatement", + "src": "12132:15:1" + } + ] + }, + "name": "panic_error_0x22", + "nodeType": "YulFunctionDefinition", + "src": "11973:180:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "12210:269:1", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "12220:22:1", + "value": { + "arguments": [ + { + "name": "data", + "nodeType": "YulIdentifier", + "src": "12234:4:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "12240:1:1", + "type": "", + "value": "2" + } + ], + "functionName": { + "name": "div", + "nodeType": "YulIdentifier", + "src": "12230:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "12230:12:1" + }, + "variableNames": [ + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "12220:6:1" + } + ] + }, + { + "nodeType": "YulVariableDeclaration", + "src": "12251:38:1", + "value": { + "arguments": [ + { + "name": "data", + "nodeType": "YulIdentifier", + "src": "12281:4:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "12287:1:1", + "type": "", + "value": "1" + } + ], + "functionName": { + "name": "and", + "nodeType": "YulIdentifier", + "src": "12277:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "12277:12:1" + }, + "variables": [ + { + "name": "outOfPlaceEncoding", + "nodeType": "YulTypedName", + "src": "12255:18:1", + "type": "" + } + ] + }, + { + "body": { + "nodeType": "YulBlock", + "src": "12328:51:1", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "12342:27:1", + "value": { + "arguments": [ + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "12356:6:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "12364:4:1", + "type": "", + "value": "0x7f" + } + ], + "functionName": { + "name": "and", + "nodeType": "YulIdentifier", + "src": "12352:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "12352:17:1" + }, + "variableNames": [ + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "12342:6:1" + } + ] + } + ] + }, + "condition": { + "arguments": [ + { + "name": "outOfPlaceEncoding", + "nodeType": "YulIdentifier", + "src": "12308:18:1" + } + ], + "functionName": { + "name": "iszero", + "nodeType": "YulIdentifier", + "src": "12301:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "12301:26:1" + }, + "nodeType": "YulIf", + "src": "12298:81:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "12431:42:1", + "statements": [ + { + "expression": { + "arguments": [], + "functionName": { + "name": "panic_error_0x22", + "nodeType": "YulIdentifier", + "src": "12445:16:1" + }, + "nodeType": "YulFunctionCall", + "src": "12445:18:1" + }, + "nodeType": "YulExpressionStatement", + "src": "12445:18:1" + } + ] + }, + "condition": { + "arguments": [ + { + "name": "outOfPlaceEncoding", + "nodeType": "YulIdentifier", + "src": "12395:18:1" + }, + { + "arguments": [ + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "12418:6:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "12426:2:1", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "lt", + "nodeType": "YulIdentifier", + "src": "12415:2:1" + }, + "nodeType": "YulFunctionCall", + "src": "12415:14:1" + } + ], + "functionName": { + "name": "eq", + "nodeType": "YulIdentifier", + "src": "12392:2:1" + }, + "nodeType": "YulFunctionCall", + "src": "12392:38:1" + }, + "nodeType": "YulIf", + "src": "12389:84:1" + } + ] + }, + "name": "extract_byte_array_length", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "data", + "nodeType": "YulTypedName", + "src": "12194:4:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "length", + "nodeType": "YulTypedName", + "src": "12203:6:1", + "type": "" + } + ], + "src": "12159:320:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "12591:54:1", + "statements": [ + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "memPtr", + "nodeType": "YulIdentifier", + "src": "12613:6:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "12621:1:1", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "12609:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "12609:14:1" + }, + { + "hexValue": "4f6e6c79206f776e6572", + "kind": "string", + "nodeType": "YulLiteral", + "src": "12625:12:1", + "type": "", + "value": "Only owner" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "12602:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "12602:36:1" + }, + "nodeType": "YulExpressionStatement", + "src": "12602:36:1" + } + ] + }, + "name": "store_literal_in_memory_17d9f114efaa93d67eedad749dd7fd16a6895ff93e28b7a30c667a069f2ed42d", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "memPtr", + "nodeType": "YulTypedName", + "src": "12583:6:1", + "type": "" + } + ], + "src": "12485:160:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "12797:220:1", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "12807:74:1", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "12873:3:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "12878:2:1", + "type": "", + "value": "10" + } + ], + "functionName": { + "name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "12814:58:1" + }, + "nodeType": "YulFunctionCall", + "src": "12814:67:1" + }, + "variableNames": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "12807:3:1" + } + ] + }, + { + "expression": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "12979:3:1" + } + ], + "functionName": { + "name": "store_literal_in_memory_17d9f114efaa93d67eedad749dd7fd16a6895ff93e28b7a30c667a069f2ed42d", + "nodeType": "YulIdentifier", + "src": "12890:88:1" + }, + "nodeType": "YulFunctionCall", + "src": "12890:93:1" + }, + "nodeType": "YulExpressionStatement", + "src": "12890:93:1" + }, + { + "nodeType": "YulAssignment", + "src": "12992:19:1", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "13003:3:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "13008:2:1", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "12999:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "12999:12:1" + }, + "variableNames": [ + { + "name": "end", + "nodeType": "YulIdentifier", + "src": "12992:3:1" + } + ] + } + ] + }, + "name": "abi_encode_t_stringliteral_17d9f114efaa93d67eedad749dd7fd16a6895ff93e28b7a30c667a069f2ed42d_to_t_string_memory_ptr_fromStack", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "pos", + "nodeType": "YulTypedName", + "src": "12785:3:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "end", + "nodeType": "YulTypedName", + "src": "12793:3:1", + "type": "" + } + ], + "src": "12651:366:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "13194:248:1", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "13204:26:1", + "value": { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "13216:9:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "13227:2:1", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "13212:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "13212:18:1" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "13204:4:1" + } + ] + }, + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "13251:9:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "13262:1:1", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "13247:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "13247:17:1" + }, + { + "arguments": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "13270:4:1" + }, + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "13276:9:1" + } + ], + "functionName": { + "name": "sub", + "nodeType": "YulIdentifier", + "src": "13266:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "13266:20:1" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "13240:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "13240:47:1" + }, + "nodeType": "YulExpressionStatement", + "src": "13240:47:1" + }, + { + "nodeType": "YulAssignment", + "src": "13296:139:1", + "value": { + "arguments": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "13430:4:1" + } + ], + "functionName": { + "name": "abi_encode_t_stringliteral_17d9f114efaa93d67eedad749dd7fd16a6895ff93e28b7a30c667a069f2ed42d_to_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "13304:124:1" + }, + "nodeType": "YulFunctionCall", + "src": "13304:131:1" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "13296:4:1" + } + ] + } + ] + }, + "name": "abi_encode_tuple_t_stringliteral_17d9f114efaa93d67eedad749dd7fd16a6895ff93e28b7a30c667a069f2ed42d__to_t_string_memory_ptr__fromStack_reversed", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "13174:9:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "tail", + "nodeType": "YulTypedName", + "src": "13189:4:1", + "type": "" + } + ], + "src": "13023:419:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "13502:87:1", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "13512:11:1", + "value": { + "name": "ptr", + "nodeType": "YulIdentifier", + "src": "13520:3:1" + }, + "variableNames": [ + { + "name": "data", + "nodeType": "YulIdentifier", + "src": "13512:4:1" + } + ] + }, + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "13540:1:1", + "type": "", + "value": "0" + }, + { + "name": "ptr", + "nodeType": "YulIdentifier", + "src": "13543:3:1" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "13533:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "13533:14:1" + }, + "nodeType": "YulExpressionStatement", + "src": "13533:14:1" + }, + { + "nodeType": "YulAssignment", + "src": "13556:26:1", + "value": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "13574:1:1", + "type": "", + "value": "0" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "13577:4:1", + "type": "", + "value": "0x20" + } + ], + "functionName": { + "name": "keccak256", + "nodeType": "YulIdentifier", + "src": "13564:9:1" + }, + "nodeType": "YulFunctionCall", + "src": "13564:18:1" + }, + "variableNames": [ + { + "name": "data", + "nodeType": "YulIdentifier", + "src": "13556:4:1" + } + ] + } + ] + }, + "name": "array_dataslot_t_string_storage", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "ptr", + "nodeType": "YulTypedName", + "src": "13489:3:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "data", + "nodeType": "YulTypedName", + "src": "13497:4:1", + "type": "" + } + ], + "src": "13448:141:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "13708:713:1", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "13718:29:1", + "value": { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "13741:5:1" + } + ], + "functionName": { + "name": "sload", + "nodeType": "YulIdentifier", + "src": "13735:5:1" + }, + "nodeType": "YulFunctionCall", + "src": "13735:12:1" + }, + "variables": [ + { + "name": "slotValue", + "nodeType": "YulTypedName", + "src": "13722:9:1", + "type": "" + } + ] + }, + { + "nodeType": "YulVariableDeclaration", + "src": "13756:50:1", + "value": { + "arguments": [ + { + "name": "slotValue", + "nodeType": "YulIdentifier", + "src": "13796:9:1" + } + ], + "functionName": { + "name": "extract_byte_array_length", + "nodeType": "YulIdentifier", + "src": "13770:25:1" + }, + "nodeType": "YulFunctionCall", + "src": "13770:36:1" + }, + "variables": [ + { + "name": "length", + "nodeType": "YulTypedName", + "src": "13760:6:1", + "type": "" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "13815:78:1", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "13881:3:1" + }, + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "13886:6:1" + } + ], + "functionName": { + "name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "13822:58:1" + }, + "nodeType": "YulFunctionCall", + "src": "13822:71:1" + }, + "variableNames": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "13815:3:1" + } + ] + }, + { + "cases": [ + { + "body": { + "nodeType": "YulBlock", + "src": "13942:128:1", + "statements": [ + { + "expression": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "13995:3:1" + }, + { + "arguments": [ + { + "name": "slotValue", + "nodeType": "YulIdentifier", + "src": "14004:9:1" + }, + { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "14019:4:1", + "type": "", + "value": "0xff" + } + ], + "functionName": { + "name": "not", + "nodeType": "YulIdentifier", + "src": "14015:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "14015:9:1" + } + ], + "functionName": { + "name": "and", + "nodeType": "YulIdentifier", + "src": "14000:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "14000:25:1" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "13988:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "13988:38:1" + }, + "nodeType": "YulExpressionStatement", + "src": "13988:38:1" + }, + { + "nodeType": "YulAssignment", + "src": "14039:21:1", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "14050:3:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "14055:4:1", + "type": "", + "value": "0x20" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "14046:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "14046:14:1" + }, + "variableNames": [ + { + "name": "ret", + "nodeType": "YulIdentifier", + "src": "14039:3:1" + } + ] + } + ] + }, + "nodeType": "YulCase", + "src": "13935:135:1", + "value": { + "kind": "number", + "nodeType": "YulLiteral", + "src": "13940:1:1", + "type": "", + "value": "0" + } + }, + { + "body": { + "nodeType": "YulBlock", + "src": "14086:329:1", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "14131:53:1", + "value": { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "14178:5:1" + } + ], + "functionName": { + "name": "array_dataslot_t_string_storage", + "nodeType": "YulIdentifier", + "src": "14146:31:1" + }, + "nodeType": "YulFunctionCall", + "src": "14146:38:1" + }, + "variables": [ + { + "name": "dataPos", + "nodeType": "YulTypedName", + "src": "14135:7:1", + "type": "" + } + ] + }, + { + "nodeType": "YulVariableDeclaration", + "src": "14197:10:1", + "value": { + "kind": "number", + "nodeType": "YulLiteral", + "src": "14206:1:1", + "type": "", + "value": "0" + }, + "variables": [ + { + "name": "i", + "nodeType": "YulTypedName", + "src": "14201:1:1", + "type": "" + } + ] + }, + { + "body": { + "nodeType": "YulBlock", + "src": "14264:110:1", + "statements": [ + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "14293:3:1" + }, + { + "name": "i", + "nodeType": "YulIdentifier", + "src": "14298:1:1" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "14289:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "14289:11:1" + }, + { + "arguments": [ + { + "name": "dataPos", + "nodeType": "YulIdentifier", + "src": "14308:7:1" + } + ], + "functionName": { + "name": "sload", + "nodeType": "YulIdentifier", + "src": "14302:5:1" + }, + "nodeType": "YulFunctionCall", + "src": "14302:14:1" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "14282:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "14282:35:1" + }, + "nodeType": "YulExpressionStatement", + "src": "14282:35:1" + }, + { + "nodeType": "YulAssignment", + "src": "14334:26:1", + "value": { + "arguments": [ + { + "name": "dataPos", + "nodeType": "YulIdentifier", + "src": "14349:7:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "14358:1:1", + "type": "", + "value": "1" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "14345:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "14345:15:1" + }, + "variableNames": [ + { + "name": "dataPos", + "nodeType": "YulIdentifier", + "src": "14334:7:1" + } + ] + } + ] + }, + "condition": { + "arguments": [ + { + "name": "i", + "nodeType": "YulIdentifier", + "src": "14231:1:1" + }, + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "14234:6:1" + } + ], + "functionName": { + "name": "lt", + "nodeType": "YulIdentifier", + "src": "14228:2:1" + }, + "nodeType": "YulFunctionCall", + "src": "14228:13:1" + }, + "nodeType": "YulForLoop", + "post": { + "nodeType": "YulBlock", + "src": "14242:21:1", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "14244:17:1", + "value": { + "arguments": [ + { + "name": "i", + "nodeType": "YulIdentifier", + "src": "14253:1:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "14256:4:1", + "type": "", + "value": "0x20" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "14249:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "14249:12:1" + }, + "variableNames": [ + { + "name": "i", + "nodeType": "YulIdentifier", + "src": "14244:1:1" + } + ] + } + ] + }, + "pre": { + "nodeType": "YulBlock", + "src": "14224:3:1", + "statements": [] + }, + "src": "14220:154:1" + }, + { + "nodeType": "YulAssignment", + "src": "14387:18:1", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "14398:3:1" + }, + { + "name": "i", + "nodeType": "YulIdentifier", + "src": "14403:1:1" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "14394:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "14394:11:1" + }, + "variableNames": [ + { + "name": "ret", + "nodeType": "YulIdentifier", + "src": "14387:3:1" + } + ] + } + ] + }, + "nodeType": "YulCase", + "src": "14079:336:1", + "value": { + "kind": "number", + "nodeType": "YulLiteral", + "src": "14084:1:1", + "type": "", + "value": "1" + } + } + ], + "expression": { + "arguments": [ + { + "name": "slotValue", + "nodeType": "YulIdentifier", + "src": "13913:9:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "13924:1:1", + "type": "", + "value": "1" + } + ], + "functionName": { + "name": "and", + "nodeType": "YulIdentifier", + "src": "13909:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "13909:17:1" + }, + "nodeType": "YulSwitch", + "src": "13902:513:1" + } + ] + }, + "name": "abi_encode_t_string_storage_to_t_string_memory_ptr_fromStack", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "13689:5:1", + "type": "" + }, + { + "name": "pos", + "nodeType": "YulTypedName", + "src": "13696:3:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "ret", + "nodeType": "YulTypedName", + "src": "13704:3:1", + "type": "" + } + ], + "src": "13619:802:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "14590:345:1", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "14600:26:1", + "value": { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "14612:9:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "14623:2:1", + "type": "", + "value": "64" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "14608:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "14608:18:1" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "14600:4:1" + } + ] + }, + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "14647:9:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "14658:1:1", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "14643:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "14643:17:1" + }, + { + "arguments": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "14666:4:1" + }, + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "14672:9:1" + } + ], + "functionName": { + "name": "sub", + "nodeType": "YulIdentifier", + "src": "14662:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "14662:20:1" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "14636:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "14636:47:1" + }, + "nodeType": "YulExpressionStatement", + "src": "14636:47:1" + }, + { + "nodeType": "YulAssignment", + "src": "14692:83:1", + "value": { + "arguments": [ + { + "name": "value0", + "nodeType": "YulIdentifier", + "src": "14761:6:1" + }, + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "14770:4:1" + } + ], + "functionName": { + "name": "abi_encode_t_string_storage_to_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "14700:60:1" + }, + "nodeType": "YulFunctionCall", + "src": "14700:75:1" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "14692:4:1" + } + ] + }, + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "14796:9:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "14807:2:1", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "14792:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "14792:18:1" + }, + { + "arguments": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "14816:4:1" + }, + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "14822:9:1" + } + ], + "functionName": { + "name": "sub", + "nodeType": "YulIdentifier", + "src": "14812:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "14812:20:1" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "14785:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "14785:48:1" + }, + "nodeType": "YulExpressionStatement", + "src": "14785:48:1" + }, + { + "nodeType": "YulAssignment", + "src": "14842:86:1", + "value": { + "arguments": [ + { + "name": "value1", + "nodeType": "YulIdentifier", + "src": "14914:6:1" + }, + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "14923:4:1" + } + ], + "functionName": { + "name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "14850:63:1" + }, + "nodeType": "YulFunctionCall", + "src": "14850:78:1" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "14842:4:1" + } + ] + } + ] + }, + "name": "abi_encode_tuple_t_string_storage_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__fromStack_reversed", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "14554:9:1", + "type": "" + }, + { + "name": "value1", + "nodeType": "YulTypedName", + "src": "14566:6:1", + "type": "" + }, + { + "name": "value0", + "nodeType": "YulTypedName", + "src": "14574:6:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "tail", + "nodeType": "YulTypedName", + "src": "14585:4:1", + "type": "" + } + ], + "src": "14427:508:1" + } + ] + }, + "contents": "{\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\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 round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\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 allocate_memory(size) -> memPtr {\n memPtr := allocate_unbounded()\n finalize_allocation(memPtr, size)\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 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 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_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 cleanup_t_uint256(value) -> cleaned {\n cleaned := 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_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 validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\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_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 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 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 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_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value0, tail)\n\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_address(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address(value)\n }\n\n function abi_decode_tuple_t_address(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_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function cleanup_t_bool(value) -> cleaned {\n cleaned := iszero(iszero(value))\n }\n\n function abi_encode_t_bool_to_t_bool_fromStack(value, pos) {\n mstore(pos, cleanup_t_bool(value))\n }\n\n function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_bool_to_t_bool_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_decode_tuple_t_uint256t_string_memory_ptr(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 := calldataload(add(headStart, 32))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value1 := abi_decode_t_string_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n }\n\n function array_length_t_array$_t_string_memory_ptr_$dyn_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_array$_t_string_memory_ptr_$dyn_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function array_dataslot_t_array$_t_string_memory_ptr_$dyn_memory_ptr(ptr) -> data {\n data := ptr\n\n data := add(ptr, 0x20)\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr(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_encodeUpdatedPos_t_string_memory_ptr_to_t_string_memory_ptr(value0, pos) -> updatedPos {\n updatedPos := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr(value0, pos)\n }\n\n function array_nextElement_t_array$_t_string_memory_ptr_$dyn_memory_ptr(ptr) -> next {\n next := add(ptr, 0x20)\n }\n\n // string[] -> string[]\n function abi_encode_t_array$_t_string_memory_ptr_$dyn_memory_ptr_to_t_array$_t_string_memory_ptr_$dyn_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_array$_t_string_memory_ptr_$dyn_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_array$_t_string_memory_ptr_$dyn_memory_ptr_fromStack(pos, length)\n let headStart := pos\n let tail := add(pos, mul(length, 0x20))\n let baseRef := array_dataslot_t_array$_t_string_memory_ptr_$dyn_memory_ptr(value)\n let srcPtr := baseRef\n for { let i := 0 } lt(i, length) { i := add(i, 1) }\n {\n mstore(pos, sub(tail, headStart))\n let elementValue0 := mload(srcPtr)\n tail := abi_encodeUpdatedPos_t_string_memory_ptr_to_t_string_memory_ptr(elementValue0, tail)\n srcPtr := array_nextElement_t_array$_t_string_memory_ptr_$dyn_memory_ptr(srcPtr)\n pos := add(pos, 0x20)\n }\n pos := tail\n end := pos\n }\n\n function abi_encode_tuple_t_array$_t_string_memory_ptr_$dyn_memory_ptr__to_t_array$_t_string_memory_ptr_$dyn_memory_ptr__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_array$_t_string_memory_ptr_$dyn_memory_ptr_to_t_array$_t_string_memory_ptr_$dyn_memory_ptr_fromStack(value0, tail)\n\n }\n\n function store_literal_in_memory_e456a8df821d58a81d00df5ff2bc8653f1a52a4771d0bdf36a4aa3f1bac56f7b(memPtr) {\n\n mstore(add(memPtr, 0), \"Only whitelist\")\n\n }\n\n function abi_encode_t_stringliteral_e456a8df821d58a81d00df5ff2bc8653f1a52a4771d0bdf36a4aa3f1bac56f7b_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 14)\n store_literal_in_memory_e456a8df821d58a81d00df5ff2bc8653f1a52a4771d0bdf36a4aa3f1bac56f7b(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_e456a8df821d58a81d00df5ff2bc8653f1a52a4771d0bdf36a4aa3f1bac56f7b__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_e456a8df821d58a81d00df5ff2bc8653f1a52a4771d0bdf36a4aa3f1bac56f7b_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function checked_sub_t_uint256(x, y) -> diff {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n if lt(x, y) { panic_error_0x11() }\n\n diff := sub(x, y)\n }\n\n function panic_error_0x32() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x32)\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 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 store_literal_in_memory_17d9f114efaa93d67eedad749dd7fd16a6895ff93e28b7a30c667a069f2ed42d(memPtr) {\n\n mstore(add(memPtr, 0), \"Only owner\")\n\n }\n\n function abi_encode_t_stringliteral_17d9f114efaa93d67eedad749dd7fd16a6895ff93e28b7a30c667a069f2ed42d_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 10)\n store_literal_in_memory_17d9f114efaa93d67eedad749dd7fd16a6895ff93e28b7a30c667a069f2ed42d(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_17d9f114efaa93d67eedad749dd7fd16a6895ff93e28b7a30c667a069f2ed42d__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_17d9f114efaa93d67eedad749dd7fd16a6895ff93e28b7a30c667a069f2ed42d_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function array_dataslot_t_string_storage(ptr) -> data {\n data := ptr\n\n mstore(0, ptr)\n data := keccak256(0, 0x20)\n\n }\n\n // string -> string\n function abi_encode_t_string_storage_to_t_string_memory_ptr_fromStack(value, pos) -> ret {\n let slotValue := sload(value)\n let length := extract_byte_array_length(slotValue)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length)\n switch and(slotValue, 1)\n case 0 {\n // short byte array\n mstore(pos, and(slotValue, not(0xff)))\n ret := add(pos, 0x20)\n }\n case 1 {\n // long byte array\n let dataPos := array_dataslot_t_string_storage(value)\n let i := 0\n for { } lt(i, length) { i := add(i, 0x20) } {\n mstore(add(pos, i), sload(dataPos))\n dataPos := add(dataPos, 1)\n }\n ret := add(pos, i)\n }\n }\n\n function abi_encode_tuple_t_string_storage_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__fromStack_reversed(headStart , value1, value0) -> tail {\n tail := add(headStart, 64)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_string_storage_to_t_string_memory_ptr_fromStack(value0, tail)\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}\n", + "id": 1, + "language": "Yul", + "name": "#utility.yul" + } + ], + "immutableReferences": {}, + "linkReferences": {}, + "object": "608060405234801561001057600080fd5b50600436106100885760003560e01c80638da5cb5b1161005b5780638da5cb5b14610139578063b682000214610157578063ca6d56dc14610173578063d03d58491461018f57610088565b80630bf803e41461008d5780631a3cd59a146100bd5780631f81595d146100ed578063372c12b114610109575b600080fd5b6100a760048036038101906100a29190610959565b6101ad565b6040516100b491906109bb565b60405180910390f35b6100d760048036038101906100d29190610a02565b610297565b6040516100e49190610ab7565b60405180910390f35b61010760048036038101906101029190610b37565b610347565b005b610123600480360381019061011e9190610b37565b610432565b6040516101309190610b7f565b60405180910390f35b610141610452565b60405161014e9190610ba9565b60405180910390f35b610171600480360381019061016c9190610bc4565b610478565b005b61018d60048036038101906101889190610b37565b610598565b005b610197610683565b6040516101a49190610d2c565b60405180910390f35b600060011515600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610242576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161023990610d9a565b60405180910390fd5b60008290806001815401808255809150506001900390600052602060002001600090919091909150908051906020019061027d92919061075c565b5060016000805490506102909190610de9565b9050919050565b6060600082815481106102ad576102ac610e1d565b5b9060005260206000200180546102c290610e7b565b80601f01602080910402602001604051908101604052809291908181526020018280546102ee90610e7b565b801561033b5780601f106103105761010080835404028352916020019161033b565b820191906000526020600020905b81548152906001019060200180831161031e57829003601f168201915b50505050509050919050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146103d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ce90610ef8565b60405180910390fd5b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60026020528060005260406000206000915054906101000a900460ff1681565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60011515600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151461050b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161050290610d9a565b60405180910390fd5b7f305058d54db6daf26994cd687b168a24cdd9a7201462f1659782c4e429987992600083815481106105405761053f610e1d565b5b9060005260206000200182604051610559929190610fad565b60405180910390a1806000838154811061057657610575610e1d565b5b90600052602060002001908051906020019061059392919061075c565b505050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610628576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161061f90610ef8565b60405180910390fd5b6001600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60606000805480602002602001604051908101604052809291908181526020016000905b828210156107535783829060005260206000200180546106c690610e7b565b80601f01602080910402602001604051908101604052809291908181526020018280546106f290610e7b565b801561073f5780601f106107145761010080835404028352916020019161073f565b820191906000526020600020905b81548152906001019060200180831161072257829003601f168201915b5050505050815260200190600101906106a7565b50505050905090565b82805461076890610e7b565b90600052602060002090601f01602090048101928261078a57600085556107d1565b82601f106107a357805160ff19168380011785556107d1565b828001600101855582156107d1579182015b828111156107d05782518255916020019190600101906107b5565b5b5090506107de91906107e2565b5090565b5b808211156107fb5760008160009055506001016107e3565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6108668261081d565b810181811067ffffffffffffffff821117156108855761088461082e565b5b80604052505050565b60006108986107ff565b90506108a4828261085d565b919050565b600067ffffffffffffffff8211156108c4576108c361082e565b5b6108cd8261081d565b9050602081019050919050565b82818337600083830152505050565b60006108fc6108f7846108a9565b61088e565b90508281526020810184848401111561091857610917610818565b5b6109238482856108da565b509392505050565b600082601f8301126109405761093f610813565b5b81356109508482602086016108e9565b91505092915050565b60006020828403121561096f5761096e610809565b5b600082013567ffffffffffffffff81111561098d5761098c61080e565b5b6109998482850161092b565b91505092915050565b6000819050919050565b6109b5816109a2565b82525050565b60006020820190506109d060008301846109ac565b92915050565b6109df816109a2565b81146109ea57600080fd5b50565b6000813590506109fc816109d6565b92915050565b600060208284031215610a1857610a17610809565b5b6000610a26848285016109ed565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610a69578082015181840152602081019050610a4e565b83811115610a78576000848401525b50505050565b6000610a8982610a2f565b610a938185610a3a565b9350610aa3818560208601610a4b565b610aac8161081d565b840191505092915050565b60006020820190508181036000830152610ad18184610a7e565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610b0482610ad9565b9050919050565b610b1481610af9565b8114610b1f57600080fd5b50565b600081359050610b3181610b0b565b92915050565b600060208284031215610b4d57610b4c610809565b5b6000610b5b84828501610b22565b91505092915050565b60008115159050919050565b610b7981610b64565b82525050565b6000602082019050610b946000830184610b70565b92915050565b610ba381610af9565b82525050565b6000602082019050610bbe6000830184610b9a565b92915050565b60008060408385031215610bdb57610bda610809565b5b6000610be9858286016109ed565b925050602083013567ffffffffffffffff811115610c0a57610c0961080e565b5b610c168582860161092b565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b600082825260208201905092915050565b6000610c6882610a2f565b610c728185610c4c565b9350610c82818560208601610a4b565b610c8b8161081d565b840191505092915050565b6000610ca28383610c5d565b905092915050565b6000602082019050919050565b6000610cc282610c20565b610ccc8185610c2b565b935083602082028501610cde85610c3c565b8060005b85811015610d1a5784840389528151610cfb8582610c96565b9450610d0683610caa565b925060208a01995050600181019050610ce2565b50829750879550505050505092915050565b60006020820190508181036000830152610d468184610cb7565b905092915050565b7f4f6e6c792077686974656c697374000000000000000000000000000000000000600082015250565b6000610d84600e83610a3a565b9150610d8f82610d4e565b602082019050919050565b60006020820190508181036000830152610db381610d77565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000610df4826109a2565b9150610dff836109a2565b925082821015610e1257610e11610dba565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680610e9357607f821691505b602082108103610ea657610ea5610e4c565b5b50919050565b7f4f6e6c79206f776e657200000000000000000000000000000000000000000000600082015250565b6000610ee2600a83610a3a565b9150610eed82610eac565b602082019050919050565b60006020820190508181036000830152610f1181610ed5565b9050919050565b60008190508160005260206000209050919050565b60008154610f3a81610e7b565b610f448186610a3a565b94506001821660008114610f5f5760018114610f7157610fa4565b60ff1983168652602086019350610fa4565b610f7a85610f18565b60005b83811015610f9c57815481890152600182019150602081019050610f7d565b808801955050505b50505092915050565b60006040820190508181036000830152610fc78185610f2d565b90508181036020830152610fdb8184610a7e565b9050939250505056fea2646970667358221220d51a8f0aa3553930307806760fc28443ee71d8d43b62c5234f91814ae38560c964736f6c634300080d0033", + "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x88 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x8DA5CB5B GT PUSH2 0x5B JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x139 JUMPI DUP1 PUSH4 0xB6820002 EQ PUSH2 0x157 JUMPI DUP1 PUSH4 0xCA6D56DC EQ PUSH2 0x173 JUMPI DUP1 PUSH4 0xD03D5849 EQ PUSH2 0x18F JUMPI PUSH2 0x88 JUMP JUMPDEST DUP1 PUSH4 0xBF803E4 EQ PUSH2 0x8D JUMPI DUP1 PUSH4 0x1A3CD59A EQ PUSH2 0xBD JUMPI DUP1 PUSH4 0x1F81595D EQ PUSH2 0xED JUMPI DUP1 PUSH4 0x372C12B1 EQ PUSH2 0x109 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xA7 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xA2 SWAP2 SWAP1 PUSH2 0x959 JUMP JUMPDEST PUSH2 0x1AD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xB4 SWAP2 SWAP1 PUSH2 0x9BB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xD7 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xD2 SWAP2 SWAP1 PUSH2 0xA02 JUMP JUMPDEST PUSH2 0x297 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xE4 SWAP2 SWAP1 PUSH2 0xAB7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x107 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x102 SWAP2 SWAP1 PUSH2 0xB37 JUMP JUMPDEST PUSH2 0x347 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x123 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x11E SWAP2 SWAP1 PUSH2 0xB37 JUMP JUMPDEST PUSH2 0x432 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x130 SWAP2 SWAP1 PUSH2 0xB7F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x141 PUSH2 0x452 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x14E SWAP2 SWAP1 PUSH2 0xBA9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x171 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x16C SWAP2 SWAP1 PUSH2 0xBC4 JUMP JUMPDEST PUSH2 0x478 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x18D PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x188 SWAP2 SWAP1 PUSH2 0xB37 JUMP JUMPDEST PUSH2 0x598 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x197 PUSH2 0x683 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1A4 SWAP2 SWAP1 PUSH2 0xD2C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 PUSH1 0x1 ISZERO ISZERO PUSH1 0x2 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO ISZERO EQ PUSH2 0x242 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x239 SWAP1 PUSH2 0xD9A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 DUP3 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 POP SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x27D SWAP3 SWAP2 SWAP1 PUSH2 0x75C JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x0 DUP1 SLOAD SWAP1 POP PUSH2 0x290 SWAP2 SWAP1 PUSH2 0xDE9 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0x2AD JUMPI PUSH2 0x2AC PUSH2 0xE1D JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD DUP1 SLOAD PUSH2 0x2C2 SWAP1 PUSH2 0xE7B 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 0x2EE SWAP1 PUSH2 0xE7B JUMP JUMPDEST DUP1 ISZERO PUSH2 0x33B JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x310 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x33B 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 0x31E JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x3D7 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x3CE SWAP1 PUSH2 0xEF8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x2 PUSH1 0x20 MSTORE DUP1 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP2 POP SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x1 ISZERO ISZERO PUSH1 0x2 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO ISZERO EQ PUSH2 0x50B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x502 SWAP1 PUSH2 0xD9A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH32 0x305058D54DB6DAF26994CD687B168A24CDD9A7201462F1659782C4E429987992 PUSH1 0x0 DUP4 DUP2 SLOAD DUP2 LT PUSH2 0x540 JUMPI PUSH2 0x53F PUSH2 0xE1D JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD DUP3 PUSH1 0x40 MLOAD PUSH2 0x559 SWAP3 SWAP2 SWAP1 PUSH2 0xFAD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 DUP1 PUSH1 0x0 DUP4 DUP2 SLOAD DUP2 LT PUSH2 0x576 JUMPI PUSH2 0x575 PUSH2 0xE1D JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x593 SWAP3 SWAP2 SWAP1 PUSH2 0x75C JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x628 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x61F SWAP1 PUSH2 0xEF8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x2 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP1 SLOAD DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 SWAP1 JUMPDEST DUP3 DUP3 LT ISZERO PUSH2 0x753 JUMPI DUP4 DUP3 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD DUP1 SLOAD PUSH2 0x6C6 SWAP1 PUSH2 0xE7B 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 0x6F2 SWAP1 PUSH2 0xE7B JUMP JUMPDEST DUP1 ISZERO PUSH2 0x73F JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x714 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x73F 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 0x722 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x6A7 JUMP JUMPDEST POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH2 0x768 SWAP1 PUSH2 0xE7B JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0x78A JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0x7D1 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0x7A3 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0x7D1 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0x7D1 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x7D0 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x7B5 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x7DE SWAP2 SWAP1 PUSH2 0x7E2 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x7FB JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x7E3 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP 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 PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x866 DUP3 PUSH2 0x81D JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x885 JUMPI PUSH2 0x884 PUSH2 0x82E JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x898 PUSH2 0x7FF JUMP JUMPDEST SWAP1 POP PUSH2 0x8A4 DUP3 DUP3 PUSH2 0x85D JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x8C4 JUMPI PUSH2 0x8C3 PUSH2 0x82E JUMP JUMPDEST JUMPDEST PUSH2 0x8CD DUP3 PUSH2 0x81D JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x8FC PUSH2 0x8F7 DUP5 PUSH2 0x8A9 JUMP JUMPDEST PUSH2 0x88E JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x918 JUMPI PUSH2 0x917 PUSH2 0x818 JUMP JUMPDEST JUMPDEST PUSH2 0x923 DUP5 DUP3 DUP6 PUSH2 0x8DA JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x940 JUMPI PUSH2 0x93F PUSH2 0x813 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x950 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x8E9 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x96F JUMPI PUSH2 0x96E PUSH2 0x809 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP3 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x98D JUMPI PUSH2 0x98C PUSH2 0x80E JUMP JUMPDEST JUMPDEST PUSH2 0x999 DUP5 DUP3 DUP6 ADD PUSH2 0x92B JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x9B5 DUP2 PUSH2 0x9A2 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x9D0 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x9AC JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x9DF DUP2 PUSH2 0x9A2 JUMP JUMPDEST DUP2 EQ PUSH2 0x9EA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x9FC DUP2 PUSH2 0x9D6 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xA18 JUMPI PUSH2 0xA17 PUSH2 0x809 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xA26 DUP5 DUP3 DUP6 ADD PUSH2 0x9ED JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP 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 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xA69 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0xA4E JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0xA78 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xA89 DUP3 PUSH2 0xA2F JUMP JUMPDEST PUSH2 0xA93 DUP2 DUP6 PUSH2 0xA3A JUMP JUMPDEST SWAP4 POP PUSH2 0xAA3 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0xA4B JUMP JUMPDEST PUSH2 0xAAC DUP2 PUSH2 0x81D JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xAD1 DUP2 DUP5 PUSH2 0xA7E JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xB04 DUP3 PUSH2 0xAD9 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xB14 DUP2 PUSH2 0xAF9 JUMP JUMPDEST DUP2 EQ PUSH2 0xB1F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xB31 DUP2 PUSH2 0xB0B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xB4D JUMPI PUSH2 0xB4C PUSH2 0x809 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xB5B DUP5 DUP3 DUP6 ADD PUSH2 0xB22 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xB79 DUP2 PUSH2 0xB64 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xB94 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xB70 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xBA3 DUP2 PUSH2 0xAF9 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xBBE PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xB9A JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xBDB JUMPI PUSH2 0xBDA PUSH2 0x809 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xBE9 DUP6 DUP3 DUP7 ADD PUSH2 0x9ED JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xC0A JUMPI PUSH2 0xC09 PUSH2 0x80E JUMP JUMPDEST JUMPDEST PUSH2 0xC16 DUP6 DUP3 DUP7 ADD PUSH2 0x92B JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 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 PUSH1 0x20 DUP3 ADD 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 PUSH2 0xC68 DUP3 PUSH2 0xA2F JUMP JUMPDEST PUSH2 0xC72 DUP2 DUP6 PUSH2 0xC4C JUMP JUMPDEST SWAP4 POP PUSH2 0xC82 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0xA4B JUMP JUMPDEST PUSH2 0xC8B DUP2 PUSH2 0x81D JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xCA2 DUP4 DUP4 PUSH2 0xC5D JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xCC2 DUP3 PUSH2 0xC20 JUMP JUMPDEST PUSH2 0xCCC DUP2 DUP6 PUSH2 0xC2B JUMP JUMPDEST SWAP4 POP DUP4 PUSH1 0x20 DUP3 MUL DUP6 ADD PUSH2 0xCDE DUP6 PUSH2 0xC3C JUMP JUMPDEST DUP1 PUSH1 0x0 JUMPDEST DUP6 DUP2 LT ISZERO PUSH2 0xD1A JUMPI DUP5 DUP5 SUB DUP10 MSTORE DUP2 MLOAD PUSH2 0xCFB DUP6 DUP3 PUSH2 0xC96 JUMP JUMPDEST SWAP5 POP PUSH2 0xD06 DUP4 PUSH2 0xCAA JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP11 ADD SWAP10 POP POP PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0xCE2 JUMP JUMPDEST POP DUP3 SWAP8 POP DUP8 SWAP6 POP POP POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xD46 DUP2 DUP5 PUSH2 0xCB7 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4F6E6C792077686974656C697374000000000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xD84 PUSH1 0xE DUP4 PUSH2 0xA3A JUMP JUMPDEST SWAP2 POP PUSH2 0xD8F DUP3 PUSH2 0xD4E JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xDB3 DUP2 PUSH2 0xD77 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xDF4 DUP3 PUSH2 0x9A2 JUMP JUMPDEST SWAP2 POP PUSH2 0xDFF DUP4 PUSH2 0x9A2 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0xE12 JUMPI PUSH2 0xE11 PUSH2 0xDBA JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 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 PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0xE93 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0xEA6 JUMPI PUSH2 0xEA5 PUSH2 0xE4C JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4F6E6C79206F776E657200000000000000000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xEE2 PUSH1 0xA DUP4 PUSH2 0xA3A JUMP JUMPDEST SWAP2 POP PUSH2 0xEED DUP3 PUSH2 0xEAC JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xF11 DUP2 PUSH2 0xED5 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP DUP2 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SLOAD PUSH2 0xF3A DUP2 PUSH2 0xE7B JUMP JUMPDEST PUSH2 0xF44 DUP2 DUP7 PUSH2 0xA3A JUMP JUMPDEST SWAP5 POP PUSH1 0x1 DUP3 AND PUSH1 0x0 DUP2 EQ PUSH2 0xF5F JUMPI PUSH1 0x1 DUP2 EQ PUSH2 0xF71 JUMPI PUSH2 0xFA4 JUMP JUMPDEST PUSH1 0xFF NOT DUP4 AND DUP7 MSTORE PUSH1 0x20 DUP7 ADD SWAP4 POP PUSH2 0xFA4 JUMP JUMPDEST PUSH2 0xF7A DUP6 PUSH2 0xF18 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xF9C JUMPI DUP2 SLOAD DUP2 DUP10 ADD MSTORE PUSH1 0x1 DUP3 ADD SWAP2 POP PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0xF7D JUMP JUMPDEST DUP1 DUP9 ADD SWAP6 POP POP POP JUMPDEST POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xFC7 DUP2 DUP6 PUSH2 0xF2D JUMP JUMPDEST SWAP1 POP DUP2 DUP2 SUB PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0xFDB DUP2 DUP5 PUSH2 0xA7E JUMP JUMPDEST SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xD5 BYTE DUP16 EXP LOG3 SSTORE CODECOPY ADDRESS ADDRESS PUSH25 0x6760FC28443EE71D8D43B62C5234F91814AE38560C964736F PUSH13 0x634300080D0033000000000000 ", + "sourceMap": "71:1267:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;865:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;587:102;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1233:99;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;157:42;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;130:20;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;698:156;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1124:98;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1027:88;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;865:149;933:10;535:4;510:29;;:9;:21;520:10;510:21;;;;;;;;;;;;;;;;;;;;;;;;;:29;;;502:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;956:4:::1;967:5;956:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;1005:1;992:4;:11;;;;:14;;;;:::i;:::-;984:22;;865:149:::0;;;:::o;587:102::-;637:13;670:4;675:5;670:11;;;;;;;;:::i;:::-;;;;;;;;;663:18;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;587:102;;;:::o;1233:99::-;420:5;;;;;;;;;;;406:19;;:10;:19;;;398:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;1319:5:::1;1298:9;:18;1308:7;1298:18;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;1233:99:::0;:::o;157:42::-;;;;;;;;;;;;;;;;;;;;;;:::o;130:20::-;;;;;;;;;;;;;:::o;698:156::-;535:4;510:29;;:9;:21;520:10;510:21;;;;;;;;;;;;;;;;;;;;;;;;;:29;;;502:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;785:31:::1;797:4;802:5;797:11;;;;;;;;:::i;:::-;;;;;;;;;810:5;785:31;;;;;;;:::i;:::-;;;;;;;;841:5;827:4;832:5;827:11;;;;;;;;:::i;:::-;;;;;;;;;:19;;;;;;;;;;;;:::i;:::-;;698:156:::0;;:::o;1124:98::-;420:5;;;;;;;;;;;406:19;;:10;:19;;;398:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;1210:4:::1;1189:9;:18;1199:7;1189:18;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;1124:98:::0;:::o;1027:88::-;1068:15;1103:4;1096:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1027:88;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:117;443:1;440;433:12;457:117;566:1;563;556:12;580:102;621:6;672:2;668:7;663:2;656:5;652:14;648:28;638:38;;580:102;;;:::o;688:180::-;736:77;733:1;726:88;833:4;830:1;823:15;857:4;854:1;847:15;874:281;957:27;979:4;957:27;:::i;:::-;949:6;945:40;1087:6;1075:10;1072:22;1051:18;1039:10;1036:34;1033:62;1030:88;;;1098:18;;:::i;:::-;1030:88;1138:10;1134:2;1127:22;917:238;874:281;;:::o;1161:129::-;1195:6;1222:20;;:::i;:::-;1212:30;;1251:33;1279:4;1271:6;1251:33;:::i;:::-;1161:129;;;:::o;1296:308::-;1358:4;1448:18;1440:6;1437:30;1434:56;;;1470:18;;:::i;:::-;1434:56;1508:29;1530:6;1508:29;:::i;:::-;1500:37;;1592:4;1586;1582:15;1574:23;;1296:308;;;:::o;1610:154::-;1694:6;1689:3;1684;1671:30;1756:1;1747:6;1742:3;1738:16;1731:27;1610:154;;;:::o;1770:412::-;1848:5;1873:66;1889:49;1931:6;1889:49;:::i;:::-;1873:66;:::i;:::-;1864:75;;1962:6;1955:5;1948:21;2000:4;1993:5;1989:16;2038:3;2029:6;2024:3;2020:16;2017:25;2014:112;;;2045:79;;:::i;:::-;2014:112;2135:41;2169:6;2164:3;2159;2135:41;:::i;:::-;1854:328;1770:412;;;;;:::o;2202:340::-;2258:5;2307:3;2300:4;2292:6;2288:17;2284:27;2274:122;;2315:79;;:::i;:::-;2274:122;2432:6;2419:20;2457:79;2532:3;2524:6;2517:4;2509:6;2505:17;2457:79;:::i;:::-;2448:88;;2264:278;2202:340;;;;:::o;2548:509::-;2617:6;2666:2;2654:9;2645:7;2641:23;2637:32;2634:119;;;2672:79;;:::i;:::-;2634:119;2820:1;2809:9;2805:17;2792:31;2850:18;2842:6;2839:30;2836:117;;;2872:79;;:::i;:::-;2836:117;2977:63;3032:7;3023:6;3012:9;3008:22;2977:63;:::i;:::-;2967:73;;2763:287;2548:509;;;;:::o;3063:77::-;3100:7;3129:5;3118:16;;3063:77;;;:::o;3146:118::-;3233:24;3251:5;3233:24;:::i;:::-;3228:3;3221:37;3146:118;;:::o;3270:222::-;3363:4;3401:2;3390:9;3386:18;3378:26;;3414:71;3482:1;3471:9;3467:17;3458:6;3414:71;:::i;:::-;3270:222;;;;:::o;3498:122::-;3571:24;3589:5;3571:24;:::i;:::-;3564:5;3561:35;3551:63;;3610:1;3607;3600:12;3551:63;3498:122;:::o;3626:139::-;3672:5;3710:6;3697:20;3688:29;;3726:33;3753:5;3726:33;:::i;:::-;3626:139;;;;:::o;3771:329::-;3830:6;3879:2;3867:9;3858:7;3854:23;3850:32;3847:119;;;3885:79;;:::i;:::-;3847:119;4005:1;4030:53;4075:7;4066:6;4055:9;4051:22;4030:53;:::i;:::-;4020:63;;3976:117;3771:329;;;;:::o;4106:99::-;4158:6;4192:5;4186:12;4176:22;;4106:99;;;:::o;4211:169::-;4295:11;4329:6;4324:3;4317:19;4369:4;4364:3;4360:14;4345:29;;4211:169;;;;:::o;4386:307::-;4454:1;4464:113;4478:6;4475:1;4472:13;4464:113;;;4563:1;4558:3;4554:11;4548:18;4544:1;4539:3;4535:11;4528:39;4500:2;4497:1;4493:10;4488:15;;4464:113;;;4595:6;4592:1;4589:13;4586:101;;;4675:1;4666:6;4661:3;4657:16;4650:27;4586:101;4435:258;4386:307;;;:::o;4699:364::-;4787:3;4815:39;4848:5;4815:39;:::i;:::-;4870:71;4934:6;4929:3;4870:71;:::i;:::-;4863:78;;4950:52;4995:6;4990:3;4983:4;4976:5;4972:16;4950:52;:::i;:::-;5027:29;5049:6;5027:29;:::i;:::-;5022:3;5018:39;5011:46;;4791:272;4699:364;;;;:::o;5069:313::-;5182:4;5220:2;5209:9;5205:18;5197:26;;5269:9;5263:4;5259:20;5255:1;5244:9;5240:17;5233:47;5297:78;5370:4;5361:6;5297:78;:::i;:::-;5289:86;;5069:313;;;;:::o;5388:126::-;5425:7;5465:42;5458:5;5454:54;5443:65;;5388:126;;;:::o;5520:96::-;5557:7;5586:24;5604:5;5586:24;:::i;:::-;5575:35;;5520:96;;;:::o;5622:122::-;5695:24;5713:5;5695:24;:::i;:::-;5688:5;5685:35;5675:63;;5734:1;5731;5724:12;5675:63;5622:122;:::o;5750:139::-;5796:5;5834:6;5821:20;5812:29;;5850:33;5877:5;5850:33;:::i;:::-;5750:139;;;;:::o;5895:329::-;5954:6;6003:2;5991:9;5982:7;5978:23;5974:32;5971:119;;;6009:79;;:::i;:::-;5971:119;6129:1;6154:53;6199:7;6190:6;6179:9;6175:22;6154:53;:::i;:::-;6144:63;;6100:117;5895:329;;;;:::o;6230:90::-;6264:7;6307:5;6300:13;6293:21;6282:32;;6230:90;;;:::o;6326:109::-;6407:21;6422:5;6407:21;:::i;:::-;6402:3;6395:34;6326:109;;:::o;6441:210::-;6528:4;6566:2;6555:9;6551:18;6543:26;;6579:65;6641:1;6630:9;6626:17;6617:6;6579:65;:::i;:::-;6441:210;;;;:::o;6657:118::-;6744:24;6762:5;6744:24;:::i;:::-;6739:3;6732:37;6657:118;;:::o;6781:222::-;6874:4;6912:2;6901:9;6897:18;6889:26;;6925:71;6993:1;6982:9;6978:17;6969:6;6925:71;:::i;:::-;6781:222;;;;:::o;7009:654::-;7087:6;7095;7144:2;7132:9;7123:7;7119:23;7115:32;7112:119;;;7150:79;;:::i;:::-;7112:119;7270:1;7295:53;7340:7;7331:6;7320:9;7316:22;7295:53;:::i;:::-;7285:63;;7241:117;7425:2;7414:9;7410:18;7397:32;7456:18;7448:6;7445:30;7442:117;;;7478:79;;:::i;:::-;7442:117;7583:63;7638:7;7629:6;7618:9;7614:22;7583:63;:::i;:::-;7573:73;;7368:288;7009:654;;;;;:::o;7669:124::-;7746:6;7780:5;7774:12;7764:22;;7669:124;;;:::o;7799:194::-;7908:11;7942:6;7937:3;7930:19;7982:4;7977:3;7973:14;7958:29;;7799:194;;;;:::o;7999:142::-;8076:4;8099:3;8091:11;;8129:4;8124:3;8120:14;8112:22;;7999:142;;;:::o;8147:159::-;8221:11;8255:6;8250:3;8243:19;8295:4;8290:3;8286:14;8271:29;;8147:159;;;;:::o;8312:344::-;8390:3;8418:39;8451:5;8418:39;:::i;:::-;8473:61;8527:6;8522:3;8473:61;:::i;:::-;8466:68;;8543:52;8588:6;8583:3;8576:4;8569:5;8565:16;8543:52;:::i;:::-;8620:29;8642:6;8620:29;:::i;:::-;8615:3;8611:39;8604:46;;8394:262;8312:344;;;;:::o;8662:196::-;8751:10;8786:66;8848:3;8840:6;8786:66;:::i;:::-;8772:80;;8662:196;;;;:::o;8864:123::-;8944:4;8976;8971:3;8967:14;8959:22;;8864:123;;;:::o;9021:991::-;9160:3;9189:64;9247:5;9189:64;:::i;:::-;9269:96;9358:6;9353:3;9269:96;:::i;:::-;9262:103;;9391:3;9436:4;9428:6;9424:17;9419:3;9415:27;9466:66;9526:5;9466:66;:::i;:::-;9555:7;9586:1;9571:396;9596:6;9593:1;9590:13;9571:396;;;9667:9;9661:4;9657:20;9652:3;9645:33;9718:6;9712:13;9746:84;9825:4;9810:13;9746:84;:::i;:::-;9738:92;;9853:70;9916:6;9853:70;:::i;:::-;9843:80;;9952:4;9947:3;9943:14;9936:21;;9631:336;9618:1;9615;9611:9;9606:14;;9571:396;;;9575:14;9983:4;9976:11;;10003:3;9996:10;;9165:847;;;;;9021:991;;;;:::o;10018:413::-;10181:4;10219:2;10208:9;10204:18;10196:26;;10268:9;10262:4;10258:20;10254:1;10243:9;10239:17;10232:47;10296:128;10419:4;10410:6;10296:128;:::i;:::-;10288:136;;10018:413;;;;:::o;10437:164::-;10577:16;10573:1;10565:6;10561:14;10554:40;10437:164;:::o;10607:366::-;10749:3;10770:67;10834:2;10829:3;10770:67;:::i;:::-;10763:74;;10846:93;10935:3;10846:93;:::i;:::-;10964:2;10959:3;10955:12;10948:19;;10607:366;;;:::o;10979:419::-;11145:4;11183:2;11172:9;11168:18;11160:26;;11232:9;11226:4;11222:20;11218:1;11207:9;11203:17;11196:47;11260:131;11386:4;11260:131;:::i;:::-;11252:139;;10979:419;;;:::o;11404:180::-;11452:77;11449:1;11442:88;11549:4;11546:1;11539:15;11573:4;11570:1;11563:15;11590:191;11630:4;11650:20;11668:1;11650:20;:::i;:::-;11645:25;;11684:20;11702:1;11684:20;:::i;:::-;11679:25;;11723:1;11720;11717:8;11714:34;;;11728:18;;:::i;:::-;11714:34;11773:1;11770;11766:9;11758:17;;11590:191;;;;:::o;11787:180::-;11835:77;11832:1;11825:88;11932:4;11929:1;11922:15;11956:4;11953:1;11946:15;11973:180;12021:77;12018:1;12011:88;12118:4;12115:1;12108:15;12142:4;12139:1;12132:15;12159:320;12203:6;12240:1;12234:4;12230:12;12220:22;;12287:1;12281:4;12277:12;12308:18;12298:81;;12364:4;12356:6;12352:17;12342:27;;12298:81;12426:2;12418:6;12415:14;12395:18;12392:38;12389:84;;12445:18;;:::i;:::-;12389:84;12210:269;12159:320;;;:::o;12485:160::-;12625:12;12621:1;12613:6;12609:14;12602:36;12485:160;:::o;12651:366::-;12793:3;12814:67;12878:2;12873:3;12814:67;:::i;:::-;12807:74;;12890:93;12979:3;12890:93;:::i;:::-;13008:2;13003:3;12999:12;12992:19;;12651:366;;;:::o;13023:419::-;13189:4;13227:2;13216:9;13212:18;13204:26;;13276:9;13270:4;13266:20;13262:1;13251:9;13247:17;13240:47;13304:131;13430:4;13304:131;:::i;:::-;13296:139;;13023:419;;;:::o;13448:141::-;13497:4;13520:3;13512:11;;13543:3;13540:1;13533:14;13577:4;13574:1;13564:18;13556:26;;13448:141;;;:::o;13619:802::-;13704:3;13741:5;13735:12;13770:36;13796:9;13770:36;:::i;:::-;13822:71;13886:6;13881:3;13822:71;:::i;:::-;13815:78;;13924:1;13913:9;13909:17;13940:1;13935:135;;;;14084:1;14079:336;;;;13902:513;;13935:135;14019:4;14015:9;14004;14000:25;13995:3;13988:38;14055:4;14050:3;14046:14;14039:21;;13935:135;;14079:336;14146:38;14178:5;14146:38;:::i;:::-;14206:1;14220:154;14234:6;14231:1;14228:13;14220:154;;;14308:7;14302:14;14298:1;14293:3;14289:11;14282:35;14358:1;14349:7;14345:15;14334:26;;14256:4;14253:1;14249:12;14244:17;;14220:154;;;14403:1;14398:3;14394:11;14387:18;;14086:329;;13902:513;;13708:713;;13619:802;;;;:::o;14427:508::-;14585:4;14623:2;14612:9;14608:18;14600:26;;14672:9;14666:4;14662:20;14658:1;14647:9;14643:17;14636:47;14700:75;14770:4;14761:6;14700:75;:::i;:::-;14692:83;;14822:9;14816:4;14812:20;14807:2;14796:9;14792:18;14785:48;14850:78;14923:4;14914:6;14850:78;:::i;:::-;14842:86;;14427:508;;;;;:::o" + }, + "gasEstimates": { + "creation": { + "codeDepositCost": "824400", + "executionCost": "49479", + "totalCost": "873879" + }, + "external": { + "addInfo(string)": "infinite", + "addMember(address)": "27026", + "delMember(address)": "27027", + "getInfo(uint256)": "infinite", + "listInfo()": "infinite", + "owner()": "2514", + "setInfo(uint256,string)": "infinite", + "whiteList(address)": "2912" + } + }, + "methodIdentifiers": { + "addInfo(string)": "0bf803e4", + "addMember(address)": "ca6d56dc", + "delMember(address)": "1f81595d", + "getInfo(uint256)": "1a3cd59a", + "listInfo()": "d03d5849", + "owner()": "8da5cb5b", + "setInfo(uint256,string)": "b6820002", + "whiteList(address)": "372c12b1" + } + }, + "abi": [ + { + "inputs": [], + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "string", + "name": "oldInfo", + "type": "string" + }, + { + "indexed": false, + "internalType": "string", + "name": "newInfo", + "type": "string" + } + ], + "name": "InfoChange", + "type": "event" + }, + { + "inputs": [ + { + "internalType": "string", + "name": "_info", + "type": "string" + } + ], + "name": "addInfo", + "outputs": [ + { + "internalType": "uint256", + "name": "index", + "type": "uint256" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_member", + "type": "address" + } + ], + "name": "addMember", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_member", + "type": "address" + } + ], + "name": "delMember", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "index", + "type": "uint256" + } + ], + "name": "getInfo", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "listInfo", + "outputs": [ + { + "internalType": "string[]", + "name": "", + "type": "string[]" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "owner", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "index", + "type": "uint256" + }, + { + "internalType": "string", + "name": "_info", + "type": "string" + } + ], + "name": "setInfo", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "name": "whiteList", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + } + ] +} \ No newline at end of file diff --git a/day1_e2/artifacts/RegisterAccess_metadata.json b/day1_e2/artifacts/RegisterAccess_metadata.json new file mode 100644 index 0000000..d179adc --- /dev/null +++ b/day1_e2/artifacts/RegisterAccess_metadata.json @@ -0,0 +1,197 @@ +{ + "compiler": { + "version": "0.8.13+commit.abaa5c0e" + }, + "language": "Solidity", + "output": { + "abi": [ + { + "inputs": [], + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "string", + "name": "oldInfo", + "type": "string" + }, + { + "indexed": false, + "internalType": "string", + "name": "newInfo", + "type": "string" + } + ], + "name": "InfoChange", + "type": "event" + }, + { + "inputs": [ + { + "internalType": "string", + "name": "_info", + "type": "string" + } + ], + "name": "addInfo", + "outputs": [ + { + "internalType": "uint256", + "name": "index", + "type": "uint256" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_member", + "type": "address" + } + ], + "name": "addMember", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_member", + "type": "address" + } + ], + "name": "delMember", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "index", + "type": "uint256" + } + ], + "name": "getInfo", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "listInfo", + "outputs": [ + { + "internalType": "string[]", + "name": "", + "type": "string[]" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "owner", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "index", + "type": "uint256" + }, + { + "internalType": "string", + "name": "_info", + "type": "string" + } + ], + "name": "setInfo", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "name": "whiteList", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + } + ], + "devdoc": { + "kind": "dev", + "methods": {}, + "version": 1 + }, + "userdoc": { + "kind": "user", + "methods": {}, + "version": 1 + } + }, + "settings": { + "compilationTarget": { + "RegisterAccess.sol": "RegisterAccess" + }, + "evmVersion": "london", + "libraries": {}, + "metadata": { + "bytecodeHash": "ipfs" + }, + "optimizer": { + "enabled": false, + "runs": 200 + }, + "remappings": [] + }, + "sources": { + "RegisterAccess.sol": { + "keccak256": "0xe0beb35f0b5e533f0e945db5718986e1cc8362938581d0c9958a3b63a6aafedc", + "license": "MIT", + "urls": [ + "bzz-raw://1ba84f3051eec7693297666421211e4aeb0923c1a72b53e4377c395c021cdacb", + "dweb:/ipfs/QmaPLbWMhXgjAWaAXjTiAVhQACJLc8SeRaJZvYta9wFtW2" + ] + } + }, + "version": 1 +} \ No newline at end of file diff --git a/day1_e2/artifacts/build-info/b85d7012390a13763329ded15d5dfcb9.json b/day1_e2/artifacts/build-info/b85d7012390a13763329ded15d5dfcb9.json new file mode 100644 index 0000000..8842327 --- /dev/null +++ b/day1_e2/artifacts/build-info/b85d7012390a13763329ded15d5dfcb9.json @@ -0,0 +1,27812 @@ +{ + "id": "b85d7012390a13763329ded15d5dfcb9", + "_format": "hh-sol-build-info-1", + "solcVersion": "0.8.13", + "solcLongVersion": "0.8.13+commit.abaa5c0e", + "input": { + "language": "Solidity", + "sources": { + "RegisterAccess.sol": { + "content": "// SPDX-License-Identifier: MIT\n\npragma solidity 0.8.13;\n\n// Array\n\n \n\ncontract RegisterAccess {\n\n string[] private info;\n\n address public owner;\n\n mapping (address => bool) public whiteList;\n\n \n\n constructor() {\n\n owner = msg.sender;\n\n whiteList[msg.sender] = true;\n\n }\n\n \n\n event InfoChange(string oldInfo, string newInfo);\n\n \n\n modifier onlyOwner {\n\n require(msg.sender == owner,\"Only owner\");\n\n _;\n\n }\n\n \n\n modifier onlyWhitelist {\n\n require(whiteList[msg.sender] == true, \"Only whitelist\");\n\n _;\n\n }\n\n \n\n function getInfo(uint index) public view returns (string memory) {\n\n return info[index];\n\n }\n\n \n\n function setInfo(uint index, string memory _info) public onlyWhitelist {\n\n emit InfoChange (info[index], _info);\n\n info[index] = _info;\n\n }\n\n \n\n function addInfo(string memory _info) public onlyWhitelist returns (uint index) {\n\n info.push (_info);\n\n index = info.length -1;\n\n }\n\n \n\n function listInfo() public view returns (string[] memory) {\n\n return info;\n\n }\n\n \n\n function addMember (address _member) public onlyOwner {\n\n whiteList[_member] = true;\n\n }\n\n \n\n function delMember (address _member) public onlyOwner {\n\n whiteList[_member] = false;\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": { + "RegisterAccess.sol": { + "RegisterAccess": { + "abi": [ + { + "inputs": [], + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "string", + "name": "oldInfo", + "type": "string" + }, + { + "indexed": false, + "internalType": "string", + "name": "newInfo", + "type": "string" + } + ], + "name": "InfoChange", + "type": "event" + }, + { + "inputs": [ + { + "internalType": "string", + "name": "_info", + "type": "string" + } + ], + "name": "addInfo", + "outputs": [ + { + "internalType": "uint256", + "name": "index", + "type": "uint256" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_member", + "type": "address" + } + ], + "name": "addMember", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_member", + "type": "address" + } + ], + "name": "delMember", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "index", + "type": "uint256" + } + ], + "name": "getInfo", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "listInfo", + "outputs": [ + { + "internalType": "string[]", + "name": "", + "type": "string[]" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "owner", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "index", + "type": "uint256" + }, + { + "internalType": "string", + "name": "_info", + "type": "string" + } + ], + "name": "setInfo", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "name": "whiteList", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + } + ], + "devdoc": { + "kind": "dev", + "methods": {}, + "version": 1 + }, + "evm": { + "assembly": " /* \"RegisterAccess.sol\":71:1338 contract RegisterAccess {... */\n mstore(0x40, 0x80)\n /* \"RegisterAccess.sol\":209:299 constructor() {... */\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\ntag_1:\n pop\n /* \"RegisterAccess.sol\":242:252 msg.sender */\n caller\n /* \"RegisterAccess.sol\":234:239 owner */\n 0x01\n 0x00\n /* \"RegisterAccess.sol\":234:252 owner = msg.sender */\n 0x0100\n exp\n dup2\n sload\n dup2\n 0xffffffffffffffffffffffffffffffffffffffff\n mul\n not\n and\n swap1\n dup4\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n mul\n or\n swap1\n sstore\n pop\n /* \"RegisterAccess.sol\":287:291 true */\n 0x01\n /* \"RegisterAccess.sol\":263:272 whiteList */\n 0x02\n /* \"RegisterAccess.sol\":263:284 whiteList[msg.sender] */\n 0x00\n /* \"RegisterAccess.sol\":273:283 msg.sender */\n caller\n /* \"RegisterAccess.sol\":263:284 whiteList[msg.sender] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n 0x00\n /* \"RegisterAccess.sol\":263:291 whiteList[msg.sender] = true */\n 0x0100\n exp\n dup2\n sload\n dup2\n 0xff\n mul\n not\n and\n swap1\n dup4\n iszero\n iszero\n mul\n or\n swap1\n sstore\n pop\n /* \"RegisterAccess.sol\":71:1338 contract RegisterAccess {... */\n dataSize(sub_0)\n dup1\n dataOffset(sub_0)\n 0x00\n codecopy\n 0x00\n return\nstop\n\nsub_0: assembly {\n /* \"RegisterAccess.sol\":71:1338 contract RegisterAccess {... */\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 0x8da5cb5b\n gt\n tag_11\n jumpi\n dup1\n 0x8da5cb5b\n eq\n tag_7\n jumpi\n dup1\n 0xb6820002\n eq\n tag_8\n jumpi\n dup1\n 0xca6d56dc\n eq\n tag_9\n jumpi\n dup1\n 0xd03d5849\n eq\n tag_10\n jumpi\n jump(tag_2)\n tag_11:\n dup1\n 0x0bf803e4\n eq\n tag_3\n jumpi\n dup1\n 0x1a3cd59a\n eq\n tag_4\n jumpi\n dup1\n 0x1f81595d\n eq\n tag_5\n jumpi\n dup1\n 0x372c12b1\n eq\n tag_6\n jumpi\n tag_2:\n 0x00\n dup1\n revert\n /* \"RegisterAccess.sol\":865:1014 function addInfo(string memory _info) public onlyWhitelist returns (uint index) {... */\n tag_3:\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 mload(0x40)\n tag_16\n swap2\n swap1\n tag_17\n jump\t// in\n tag_16:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"RegisterAccess.sol\":587:689 function getInfo(uint index) public view returns (string memory) {... */\n tag_4:\n tag_18\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_19\n swap2\n swap1\n tag_20\n jump\t// in\n tag_19:\n tag_21\n jump\t// in\n tag_18:\n mload(0x40)\n tag_22\n swap2\n swap1\n tag_23\n jump\t// in\n tag_22:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"RegisterAccess.sol\":1233:1332 function delMember (address _member) public onlyOwner {... */\n tag_5:\n tag_24\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_25\n swap2\n swap1\n tag_26\n jump\t// in\n tag_25:\n tag_27\n jump\t// in\n tag_24:\n stop\n /* \"RegisterAccess.sol\":157:199 mapping (address => bool) public whiteList */\n tag_6:\n tag_28\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_29\n swap2\n swap1\n tag_26\n jump\t// in\n tag_29:\n tag_30\n jump\t// in\n tag_28:\n mload(0x40)\n tag_31\n swap2\n swap1\n tag_32\n jump\t// in\n tag_31:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"RegisterAccess.sol\":130:150 address public owner */\n tag_7:\n tag_33\n tag_34\n jump\t// in\n tag_33:\n mload(0x40)\n tag_35\n swap2\n swap1\n tag_36\n jump\t// in\n tag_35:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"RegisterAccess.sol\":698:854 function setInfo(uint index, string memory _info) public onlyWhitelist {... */\n tag_8:\n tag_37\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_38\n swap2\n swap1\n tag_39\n jump\t// in\n tag_38:\n tag_40\n jump\t// in\n tag_37:\n stop\n /* \"RegisterAccess.sol\":1124:1222 function addMember (address _member) public onlyOwner {... */\n tag_9:\n tag_41\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_42\n swap2\n swap1\n tag_26\n jump\t// in\n tag_42:\n tag_43\n jump\t// in\n tag_41:\n stop\n /* \"RegisterAccess.sol\":1027:1115 function listInfo() public view returns (string[] memory) {... */\n tag_10:\n tag_44\n tag_45\n jump\t// in\n tag_44:\n mload(0x40)\n tag_46\n swap2\n swap1\n tag_47\n jump\t// in\n tag_46:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"RegisterAccess.sol\":865:1014 function addInfo(string memory _info) public onlyWhitelist returns (uint index) {... */\n tag_15:\n /* \"RegisterAccess.sol\":933:943 uint index */\n 0x00\n /* \"RegisterAccess.sol\":535:539 true */\n 0x01\n /* \"RegisterAccess.sol\":510:539 whiteList[msg.sender] == true */\n iszero\n iszero\n /* \"RegisterAccess.sol\":510:519 whiteList */\n 0x02\n /* \"RegisterAccess.sol\":510:531 whiteList[msg.sender] */\n 0x00\n /* \"RegisterAccess.sol\":520:530 msg.sender */\n caller\n /* \"RegisterAccess.sol\":510:531 whiteList[msg.sender] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xff\n and\n /* \"RegisterAccess.sol\":510:539 whiteList[msg.sender] == true */\n iszero\n iszero\n eq\n /* \"RegisterAccess.sol\":502:558 require(whiteList[msg.sender] == true, \"Only whitelist\") */\n tag_49\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_50\n swap1\n tag_51\n jump\t// in\n tag_50:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_49:\n /* \"RegisterAccess.sol\":956:960 info */\n 0x00\n /* \"RegisterAccess.sol\":967:972 _info */\n dup3\n /* \"RegisterAccess.sol\":956:973 info.push (_info) */\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 add\n 0x00\n swap1\n swap2\n swap1\n swap2\n swap1\n swap2\n pop\n swap1\n dup1\n mload\n swap1\n 0x20\n add\n swap1\n tag_54\n swap3\n swap2\n swap1\n tag_55\n jump\t// in\n tag_54:\n pop\n /* \"RegisterAccess.sol\":1005:1006 1 */\n 0x01\n /* \"RegisterAccess.sol\":992:996 info */\n 0x00\n /* \"RegisterAccess.sol\":992:1003 info.length */\n dup1\n sload\n swap1\n pop\n /* \"RegisterAccess.sol\":992:1006 info.length -1 */\n tag_56\n swap2\n swap1\n tag_57\n jump\t// in\n tag_56:\n /* \"RegisterAccess.sol\":984:1006 index = info.length -1 */\n swap1\n pop\n /* \"RegisterAccess.sol\":865:1014 function addInfo(string memory _info) public onlyWhitelist returns (uint index) {... */\n swap2\n swap1\n pop\n jump\t// out\n /* \"RegisterAccess.sol\":587:689 function getInfo(uint index) public view returns (string memory) {... */\n tag_21:\n /* \"RegisterAccess.sol\":637:650 string memory */\n 0x60\n /* \"RegisterAccess.sol\":670:674 info */\n 0x00\n /* \"RegisterAccess.sol\":675:680 index */\n dup3\n /* \"RegisterAccess.sol\":670:681 info[index] */\n dup2\n sload\n dup2\n lt\n tag_59\n jumpi\n tag_60\n tag_61\n jump\t// in\n tag_60:\n tag_59:\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n add\n /* \"RegisterAccess.sol\":663:681 return info[index] */\n dup1\n sload\n tag_63\n swap1\n tag_64\n jump\t// in\n tag_63:\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_65\n swap1\n tag_64\n jump\t// in\n tag_65:\n dup1\n iszero\n tag_66\n jumpi\n dup1\n 0x1f\n lt\n tag_67\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_66)\n tag_67:\n dup3\n add\n swap2\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n tag_68:\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_68\n jumpi\n dup3\n swap1\n sub\n 0x1f\n and\n dup3\n add\n swap2\n tag_66:\n pop\n pop\n pop\n pop\n pop\n swap1\n pop\n /* \"RegisterAccess.sol\":587:689 function getInfo(uint index) public view returns (string memory) {... */\n swap2\n swap1\n pop\n jump\t// out\n /* \"RegisterAccess.sol\":1233:1332 function delMember (address _member) public onlyOwner {... */\n tag_27:\n /* \"RegisterAccess.sol\":420:425 owner */\n 0x01\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"RegisterAccess.sol\":406:425 msg.sender == owner */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"RegisterAccess.sol\":406:416 msg.sender */\n caller\n /* \"RegisterAccess.sol\":406:425 msg.sender == owner */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n /* \"RegisterAccess.sol\":398:439 require(msg.sender == owner,\"Only owner\") */\n tag_70\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_71\n swap1\n tag_72\n jump\t// in\n tag_71:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_70:\n /* \"RegisterAccess.sol\":1319:1324 false */\n 0x00\n /* \"RegisterAccess.sol\":1298:1307 whiteList */\n 0x02\n /* \"RegisterAccess.sol\":1298:1316 whiteList[_member] */\n 0x00\n /* \"RegisterAccess.sol\":1308:1315 _member */\n dup4\n /* \"RegisterAccess.sol\":1298:1316 whiteList[_member] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n 0x00\n /* \"RegisterAccess.sol\":1298:1324 whiteList[_member] = false */\n 0x0100\n exp\n dup2\n sload\n dup2\n 0xff\n mul\n not\n and\n swap1\n dup4\n iszero\n iszero\n mul\n or\n swap1\n sstore\n pop\n /* \"RegisterAccess.sol\":1233:1332 function delMember (address _member) public onlyOwner {... */\n pop\n jump\t// out\n /* \"RegisterAccess.sol\":157:199 mapping (address => bool) public whiteList */\n tag_30:\n mstore(0x20, 0x02)\n dup1\n 0x00\n mstore\n keccak256(0x00, 0x40)\n 0x00\n swap2\n pop\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xff\n and\n dup2\n jump\t// out\n /* \"RegisterAccess.sol\":130:150 address public owner */\n tag_34:\n 0x01\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n jump\t// out\n /* \"RegisterAccess.sol\":698:854 function setInfo(uint index, string memory _info) public onlyWhitelist {... */\n tag_40:\n /* \"RegisterAccess.sol\":535:539 true */\n 0x01\n /* \"RegisterAccess.sol\":510:539 whiteList[msg.sender] == true */\n iszero\n iszero\n /* \"RegisterAccess.sol\":510:519 whiteList */\n 0x02\n /* \"RegisterAccess.sol\":510:531 whiteList[msg.sender] */\n 0x00\n /* \"RegisterAccess.sol\":520:530 msg.sender */\n caller\n /* \"RegisterAccess.sol\":510:531 whiteList[msg.sender] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xff\n and\n /* \"RegisterAccess.sol\":510:539 whiteList[msg.sender] == true */\n iszero\n iszero\n eq\n /* \"RegisterAccess.sol\":502:558 require(whiteList[msg.sender] == true, \"Only whitelist\") */\n tag_75\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_76\n swap1\n tag_51\n jump\t// in\n tag_76:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_75:\n /* \"RegisterAccess.sol\":785:816 InfoChange (info[index], _info) */\n 0x305058d54db6daf26994cd687b168a24cdd9a7201462f1659782c4e429987992\n /* \"RegisterAccess.sol\":797:801 info */\n 0x00\n /* \"RegisterAccess.sol\":802:807 index */\n dup4\n /* \"RegisterAccess.sol\":797:808 info[index] */\n dup2\n sload\n dup2\n lt\n tag_78\n jumpi\n tag_79\n tag_61\n jump\t// in\n tag_79:\n tag_78:\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n add\n /* \"RegisterAccess.sol\":810:815 _info */\n dup3\n /* \"RegisterAccess.sol\":785:816 InfoChange (info[index], _info) */\n mload(0x40)\n tag_81\n swap3\n swap2\n swap1\n tag_82\n jump\t// in\n tag_81:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n log1\n /* \"RegisterAccess.sol\":841:846 _info */\n dup1\n /* \"RegisterAccess.sol\":827:831 info */\n 0x00\n /* \"RegisterAccess.sol\":832:837 index */\n dup4\n /* \"RegisterAccess.sol\":827:838 info[index] */\n dup2\n sload\n dup2\n lt\n tag_83\n jumpi\n tag_84\n tag_61\n jump\t// in\n tag_84:\n tag_83:\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n add\n /* \"RegisterAccess.sol\":827:846 info[index] = _info */\n swap1\n dup1\n mload\n swap1\n 0x20\n add\n swap1\n tag_86\n swap3\n swap2\n swap1\n tag_55\n jump\t// in\n tag_86:\n pop\n /* \"RegisterAccess.sol\":698:854 function setInfo(uint index, string memory _info) public onlyWhitelist {... */\n pop\n pop\n jump\t// out\n /* \"RegisterAccess.sol\":1124:1222 function addMember (address _member) public onlyOwner {... */\n tag_43:\n /* \"RegisterAccess.sol\":420:425 owner */\n 0x01\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"RegisterAccess.sol\":406:425 msg.sender == owner */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"RegisterAccess.sol\":406:416 msg.sender */\n caller\n /* \"RegisterAccess.sol\":406:425 msg.sender == owner */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n /* \"RegisterAccess.sol\":398:439 require(msg.sender == owner,\"Only owner\") */\n tag_88\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_89\n swap1\n tag_72\n jump\t// in\n tag_89:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_88:\n /* \"RegisterAccess.sol\":1210:1214 true */\n 0x01\n /* \"RegisterAccess.sol\":1189:1198 whiteList */\n 0x02\n /* \"RegisterAccess.sol\":1189:1207 whiteList[_member] */\n 0x00\n /* \"RegisterAccess.sol\":1199:1206 _member */\n dup4\n /* \"RegisterAccess.sol\":1189:1207 whiteList[_member] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n 0x00\n /* \"RegisterAccess.sol\":1189:1214 whiteList[_member] = true */\n 0x0100\n exp\n dup2\n sload\n dup2\n 0xff\n mul\n not\n and\n swap1\n dup4\n iszero\n iszero\n mul\n or\n swap1\n sstore\n pop\n /* \"RegisterAccess.sol\":1124:1222 function addMember (address _member) public onlyOwner {... */\n pop\n jump\t// out\n /* \"RegisterAccess.sol\":1027:1115 function listInfo() public view returns (string[] memory) {... */\n tag_45:\n /* \"RegisterAccess.sol\":1068:1083 string[] memory */\n 0x60\n /* \"RegisterAccess.sol\":1103:1107 info */\n 0x00\n /* \"RegisterAccess.sol\":1096:1107 return info */\n dup1\n sload\n dup1\n 0x20\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 0x00\n swap1\n tag_92:\n dup3\n dup3\n lt\n iszero\n tag_93\n jumpi\n dup4\n dup3\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n add\n dup1\n sload\n tag_95\n swap1\n tag_64\n jump\t// in\n tag_95:\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_96\n swap1\n tag_64\n jump\t// in\n tag_96:\n dup1\n iszero\n tag_97\n jumpi\n dup1\n 0x1f\n lt\n tag_98\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_97)\n tag_98:\n dup3\n add\n swap2\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n tag_99:\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_99\n jumpi\n dup3\n swap1\n sub\n 0x1f\n and\n dup3\n add\n swap2\n tag_97:\n pop\n pop\n pop\n pop\n pop\n dup2\n mstore\n 0x20\n add\n swap1\n 0x01\n add\n swap1\n jump(tag_92)\n tag_93:\n pop\n pop\n pop\n pop\n swap1\n pop\n /* \"RegisterAccess.sol\":1027:1115 function listInfo() public view returns (string[] memory) {... */\n swap1\n jump\t// out\n tag_55:\n dup3\n dup1\n sload\n tag_100\n swap1\n tag_64\n jump\t// in\n tag_100:\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_102\n jumpi\n 0x00\n dup6\n sstore\n jump(tag_101)\n tag_102:\n dup3\n 0x1f\n lt\n tag_103\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_101)\n tag_103:\n dup3\n dup1\n add\n 0x01\n add\n dup6\n sstore\n dup3\n iszero\n tag_101\n jumpi\n swap2\n dup3\n add\n tag_104:\n dup3\n dup2\n gt\n iszero\n tag_105\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_104)\n tag_105:\n tag_101:\n pop\n swap1\n pop\n tag_106\n swap2\n swap1\n tag_107\n jump\t// in\n tag_106:\n pop\n swap1\n jump\t// out\n tag_107:\n tag_108:\n dup1\n dup3\n gt\n iszero\n tag_109\n jumpi\n 0x00\n dup2\n 0x00\n swap1\n sstore\n pop\n 0x01\n add\n jump(tag_108)\n tag_109:\n pop\n swap1\n jump\t// out\n /* \"#utility.yul\":7:82 */\n tag_110:\n /* \"#utility.yul\":40:46 */\n 0x00\n /* \"#utility.yul\":73:75 */\n 0x40\n /* \"#utility.yul\":67:76 */\n mload\n /* \"#utility.yul\":57:76 */\n swap1\n pop\n /* \"#utility.yul\":7:82 */\n swap1\n jump\t// out\n /* \"#utility.yul\":88:205 */\n tag_111:\n /* \"#utility.yul\":197:198 */\n 0x00\n /* \"#utility.yul\":194:195 */\n dup1\n /* \"#utility.yul\":187:199 */\n revert\n /* \"#utility.yul\":211:328 */\n tag_112:\n /* \"#utility.yul\":320:321 */\n 0x00\n /* \"#utility.yul\":317:318 */\n dup1\n /* \"#utility.yul\":310:322 */\n revert\n /* \"#utility.yul\":334:451 */\n tag_113:\n /* \"#utility.yul\":443:444 */\n 0x00\n /* \"#utility.yul\":440:441 */\n dup1\n /* \"#utility.yul\":433:445 */\n revert\n /* \"#utility.yul\":457:574 */\n tag_114:\n /* \"#utility.yul\":566:567 */\n 0x00\n /* \"#utility.yul\":563:564 */\n dup1\n /* \"#utility.yul\":556:568 */\n revert\n /* \"#utility.yul\":580:682 */\n tag_115:\n /* \"#utility.yul\":621:627 */\n 0x00\n /* \"#utility.yul\":672:674 */\n 0x1f\n /* \"#utility.yul\":668:675 */\n not\n /* \"#utility.yul\":663:665 */\n 0x1f\n /* \"#utility.yul\":656:661 */\n dup4\n /* \"#utility.yul\":652:666 */\n add\n /* \"#utility.yul\":648:676 */\n and\n /* \"#utility.yul\":638:676 */\n swap1\n pop\n /* \"#utility.yul\":580:682 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":688:868 */\n tag_116:\n /* \"#utility.yul\":736:813 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":733:734 */\n 0x00\n /* \"#utility.yul\":726:814 */\n mstore\n /* \"#utility.yul\":833:837 */\n 0x41\n /* \"#utility.yul\":830:831 */\n 0x04\n /* \"#utility.yul\":823:838 */\n mstore\n /* \"#utility.yul\":857:861 */\n 0x24\n /* \"#utility.yul\":854:855 */\n 0x00\n /* \"#utility.yul\":847:862 */\n revert\n /* \"#utility.yul\":874:1155 */\n tag_117:\n /* \"#utility.yul\":957:984 */\n tag_163\n /* \"#utility.yul\":979:983 */\n dup3\n /* \"#utility.yul\":957:984 */\n tag_115\n jump\t// in\n tag_163:\n /* \"#utility.yul\":949:955 */\n dup2\n /* \"#utility.yul\":945:985 */\n add\n /* \"#utility.yul\":1087:1093 */\n dup2\n /* \"#utility.yul\":1075:1085 */\n dup2\n /* \"#utility.yul\":1072:1094 */\n lt\n /* \"#utility.yul\":1051:1069 */\n 0xffffffffffffffff\n /* \"#utility.yul\":1039:1049 */\n dup3\n /* \"#utility.yul\":1036:1070 */\n gt\n /* \"#utility.yul\":1033:1095 */\n or\n /* \"#utility.yul\":1030:1118 */\n iszero\n tag_164\n jumpi\n /* \"#utility.yul\":1098:1116 */\n tag_165\n tag_116\n jump\t// in\n tag_165:\n /* \"#utility.yul\":1030:1118 */\n tag_164:\n /* \"#utility.yul\":1138:1148 */\n dup1\n /* \"#utility.yul\":1134:1136 */\n 0x40\n /* \"#utility.yul\":1127:1149 */\n mstore\n /* \"#utility.yul\":917:1155 */\n pop\n /* \"#utility.yul\":874:1155 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1161:1290 */\n tag_118:\n /* \"#utility.yul\":1195:1201 */\n 0x00\n /* \"#utility.yul\":1222:1242 */\n tag_167\n tag_110\n jump\t// in\n tag_167:\n /* \"#utility.yul\":1212:1242 */\n swap1\n pop\n /* \"#utility.yul\":1251:1284 */\n tag_168\n /* \"#utility.yul\":1279:1283 */\n dup3\n /* \"#utility.yul\":1271:1277 */\n dup3\n /* \"#utility.yul\":1251:1284 */\n tag_117\n jump\t// in\n tag_168:\n /* \"#utility.yul\":1161:1290 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1296:1604 */\n tag_119:\n /* \"#utility.yul\":1358:1362 */\n 0x00\n /* \"#utility.yul\":1448:1466 */\n 0xffffffffffffffff\n /* \"#utility.yul\":1440:1446 */\n dup3\n /* \"#utility.yul\":1437:1467 */\n gt\n /* \"#utility.yul\":1434:1490 */\n iszero\n tag_170\n jumpi\n /* \"#utility.yul\":1470:1488 */\n tag_171\n tag_116\n jump\t// in\n tag_171:\n /* \"#utility.yul\":1434:1490 */\n tag_170:\n /* \"#utility.yul\":1508:1537 */\n tag_172\n /* \"#utility.yul\":1530:1536 */\n dup3\n /* \"#utility.yul\":1508:1537 */\n tag_115\n jump\t// in\n tag_172:\n /* \"#utility.yul\":1500:1537 */\n swap1\n pop\n /* \"#utility.yul\":1592:1596 */\n 0x20\n /* \"#utility.yul\":1586:1590 */\n dup2\n /* \"#utility.yul\":1582:1597 */\n add\n /* \"#utility.yul\":1574:1597 */\n swap1\n pop\n /* \"#utility.yul\":1296:1604 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1610:1764 */\n tag_120:\n /* \"#utility.yul\":1694:1700 */\n dup3\n /* \"#utility.yul\":1689:1692 */\n dup2\n /* \"#utility.yul\":1684:1687 */\n dup4\n /* \"#utility.yul\":1671:1701 */\n calldatacopy\n /* \"#utility.yul\":1756:1757 */\n 0x00\n /* \"#utility.yul\":1747:1753 */\n dup4\n /* \"#utility.yul\":1742:1745 */\n dup4\n /* \"#utility.yul\":1738:1754 */\n add\n /* \"#utility.yul\":1731:1758 */\n mstore\n /* \"#utility.yul\":1610:1764 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1770:2182 */\n tag_121:\n /* \"#utility.yul\":1848:1853 */\n 0x00\n /* \"#utility.yul\":1873:1939 */\n tag_175\n /* \"#utility.yul\":1889:1938 */\n tag_176\n /* \"#utility.yul\":1931:1937 */\n dup5\n /* \"#utility.yul\":1889:1938 */\n tag_119\n jump\t// in\n tag_176:\n /* \"#utility.yul\":1873:1939 */\n tag_118\n jump\t// in\n tag_175:\n /* \"#utility.yul\":1864:1939 */\n swap1\n pop\n /* \"#utility.yul\":1962:1968 */\n dup3\n /* \"#utility.yul\":1955:1960 */\n dup2\n /* \"#utility.yul\":1948:1969 */\n mstore\n /* \"#utility.yul\":2000:2004 */\n 0x20\n /* \"#utility.yul\":1993:1998 */\n dup2\n /* \"#utility.yul\":1989:2005 */\n add\n /* \"#utility.yul\":2038:2041 */\n dup5\n /* \"#utility.yul\":2029:2035 */\n dup5\n /* \"#utility.yul\":2024:2027 */\n dup5\n /* \"#utility.yul\":2020:2036 */\n add\n /* \"#utility.yul\":2017:2042 */\n gt\n /* \"#utility.yul\":2014:2126 */\n iszero\n tag_177\n jumpi\n /* \"#utility.yul\":2045:2124 */\n tag_178\n tag_114\n jump\t// in\n tag_178:\n /* \"#utility.yul\":2014:2126 */\n tag_177:\n /* \"#utility.yul\":2135:2176 */\n tag_179\n /* \"#utility.yul\":2169:2175 */\n dup5\n /* \"#utility.yul\":2164:2167 */\n dup3\n /* \"#utility.yul\":2159:2162 */\n dup6\n /* \"#utility.yul\":2135:2176 */\n tag_120\n jump\t// in\n tag_179:\n /* \"#utility.yul\":1854:2182 */\n pop\n /* \"#utility.yul\":1770:2182 */\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2202:2542 */\n tag_122:\n /* \"#utility.yul\":2258:2263 */\n 0x00\n /* \"#utility.yul\":2307:2310 */\n dup3\n /* \"#utility.yul\":2300:2304 */\n 0x1f\n /* \"#utility.yul\":2292:2298 */\n dup4\n /* \"#utility.yul\":2288:2305 */\n add\n /* \"#utility.yul\":2284:2311 */\n slt\n /* \"#utility.yul\":2274:2396 */\n tag_181\n jumpi\n /* \"#utility.yul\":2315:2394 */\n tag_182\n tag_113\n jump\t// in\n tag_182:\n /* \"#utility.yul\":2274:2396 */\n tag_181:\n /* \"#utility.yul\":2432:2438 */\n dup2\n /* \"#utility.yul\":2419:2439 */\n calldataload\n /* \"#utility.yul\":2457:2536 */\n tag_183\n /* \"#utility.yul\":2532:2535 */\n dup5\n /* \"#utility.yul\":2524:2530 */\n dup3\n /* \"#utility.yul\":2517:2521 */\n 0x20\n /* \"#utility.yul\":2509:2515 */\n dup7\n /* \"#utility.yul\":2505:2522 */\n add\n /* \"#utility.yul\":2457:2536 */\n tag_121\n jump\t// in\n tag_183:\n /* \"#utility.yul\":2448:2536 */\n swap2\n pop\n /* \"#utility.yul\":2264:2542 */\n pop\n /* \"#utility.yul\":2202:2542 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2548:3057 */\n tag_14:\n /* \"#utility.yul\":2617:2623 */\n 0x00\n /* \"#utility.yul\":2666:2668 */\n 0x20\n /* \"#utility.yul\":2654:2663 */\n dup3\n /* \"#utility.yul\":2645:2652 */\n dup5\n /* \"#utility.yul\":2641:2664 */\n sub\n /* \"#utility.yul\":2637:2669 */\n slt\n /* \"#utility.yul\":2634:2753 */\n iszero\n tag_185\n jumpi\n /* \"#utility.yul\":2672:2751 */\n tag_186\n tag_111\n jump\t// in\n tag_186:\n /* \"#utility.yul\":2634:2753 */\n tag_185:\n /* \"#utility.yul\":2820:2821 */\n 0x00\n /* \"#utility.yul\":2809:2818 */\n dup3\n /* \"#utility.yul\":2805:2822 */\n add\n /* \"#utility.yul\":2792:2823 */\n calldataload\n /* \"#utility.yul\":2850:2868 */\n 0xffffffffffffffff\n /* \"#utility.yul\":2842:2848 */\n dup2\n /* \"#utility.yul\":2839:2869 */\n gt\n /* \"#utility.yul\":2836:2953 */\n iszero\n tag_187\n jumpi\n /* \"#utility.yul\":2872:2951 */\n tag_188\n tag_112\n jump\t// in\n tag_188:\n /* \"#utility.yul\":2836:2953 */\n tag_187:\n /* \"#utility.yul\":2977:3040 */\n tag_189\n /* \"#utility.yul\":3032:3039 */\n dup5\n /* \"#utility.yul\":3023:3029 */\n dup3\n /* \"#utility.yul\":3012:3021 */\n dup6\n /* \"#utility.yul\":3008:3030 */\n add\n /* \"#utility.yul\":2977:3040 */\n tag_122\n jump\t// in\n tag_189:\n /* \"#utility.yul\":2967:3040 */\n swap2\n pop\n /* \"#utility.yul\":2763:3050 */\n pop\n /* \"#utility.yul\":2548:3057 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3063:3140 */\n tag_123:\n /* \"#utility.yul\":3100:3107 */\n 0x00\n /* \"#utility.yul\":3129:3134 */\n dup2\n /* \"#utility.yul\":3118:3134 */\n swap1\n pop\n /* \"#utility.yul\":3063:3140 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":3146:3264 */\n tag_124:\n /* \"#utility.yul\":3233:3257 */\n tag_192\n /* \"#utility.yul\":3251:3256 */\n dup2\n /* \"#utility.yul\":3233:3257 */\n tag_123\n jump\t// in\n tag_192:\n /* \"#utility.yul\":3228:3231 */\n dup3\n /* \"#utility.yul\":3221:3258 */\n mstore\n /* \"#utility.yul\":3146:3264 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3270:3492 */\n tag_17:\n /* \"#utility.yul\":3363:3367 */\n 0x00\n /* \"#utility.yul\":3401:3403 */\n 0x20\n /* \"#utility.yul\":3390:3399 */\n dup3\n /* \"#utility.yul\":3386:3404 */\n add\n /* \"#utility.yul\":3378:3404 */\n swap1\n pop\n /* \"#utility.yul\":3414:3485 */\n tag_194\n /* \"#utility.yul\":3482:3483 */\n 0x00\n /* \"#utility.yul\":3471:3480 */\n dup4\n /* \"#utility.yul\":3467:3484 */\n add\n /* \"#utility.yul\":3458:3464 */\n dup5\n /* \"#utility.yul\":3414:3485 */\n tag_124\n jump\t// in\n tag_194:\n /* \"#utility.yul\":3270:3492 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3498:3620 */\n tag_125:\n /* \"#utility.yul\":3571:3595 */\n tag_196\n /* \"#utility.yul\":3589:3594 */\n dup2\n /* \"#utility.yul\":3571:3595 */\n tag_123\n jump\t// in\n tag_196:\n /* \"#utility.yul\":3564:3569 */\n dup2\n /* \"#utility.yul\":3561:3596 */\n eq\n /* \"#utility.yul\":3551:3614 */\n tag_197\n jumpi\n /* \"#utility.yul\":3610:3611 */\n 0x00\n /* \"#utility.yul\":3607:3608 */\n dup1\n /* \"#utility.yul\":3600:3612 */\n revert\n /* \"#utility.yul\":3551:3614 */\n tag_197:\n /* \"#utility.yul\":3498:3620 */\n pop\n jump\t// out\n /* \"#utility.yul\":3626:3765 */\n tag_126:\n /* \"#utility.yul\":3672:3677 */\n 0x00\n /* \"#utility.yul\":3710:3716 */\n dup2\n /* \"#utility.yul\":3697:3717 */\n calldataload\n /* \"#utility.yul\":3688:3717 */\n swap1\n pop\n /* \"#utility.yul\":3726:3759 */\n tag_199\n /* \"#utility.yul\":3753:3758 */\n dup2\n /* \"#utility.yul\":3726:3759 */\n tag_125\n jump\t// in\n tag_199:\n /* \"#utility.yul\":3626:3765 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3771:4100 */\n tag_20:\n /* \"#utility.yul\":3830:3836 */\n 0x00\n /* \"#utility.yul\":3879:3881 */\n 0x20\n /* \"#utility.yul\":3867:3876 */\n dup3\n /* \"#utility.yul\":3858:3865 */\n dup5\n /* \"#utility.yul\":3854:3877 */\n sub\n /* \"#utility.yul\":3850:3882 */\n slt\n /* \"#utility.yul\":3847:3966 */\n iszero\n tag_201\n jumpi\n /* \"#utility.yul\":3885:3964 */\n tag_202\n tag_111\n jump\t// in\n tag_202:\n /* \"#utility.yul\":3847:3966 */\n tag_201:\n /* \"#utility.yul\":4005:4006 */\n 0x00\n /* \"#utility.yul\":4030:4083 */\n tag_203\n /* \"#utility.yul\":4075:4082 */\n dup5\n /* \"#utility.yul\":4066:4072 */\n dup3\n /* \"#utility.yul\":4055:4064 */\n dup6\n /* \"#utility.yul\":4051:4073 */\n add\n /* \"#utility.yul\":4030:4083 */\n tag_126\n jump\t// in\n tag_203:\n /* \"#utility.yul\":4020:4083 */\n swap2\n pop\n /* \"#utility.yul\":3976:4093 */\n pop\n /* \"#utility.yul\":3771:4100 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":4106:4205 */\n tag_127:\n /* \"#utility.yul\":4158:4164 */\n 0x00\n /* \"#utility.yul\":4192:4197 */\n dup2\n /* \"#utility.yul\":4186:4198 */\n mload\n /* \"#utility.yul\":4176:4198 */\n swap1\n pop\n /* \"#utility.yul\":4106:4205 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":4211:4380 */\n tag_128:\n /* \"#utility.yul\":4295:4306 */\n 0x00\n /* \"#utility.yul\":4329:4335 */\n dup3\n /* \"#utility.yul\":4324:4327 */\n dup3\n /* \"#utility.yul\":4317:4336 */\n mstore\n /* \"#utility.yul\":4369:4373 */\n 0x20\n /* \"#utility.yul\":4364:4367 */\n dup3\n /* \"#utility.yul\":4360:4374 */\n add\n /* \"#utility.yul\":4345:4374 */\n swap1\n pop\n /* \"#utility.yul\":4211:4380 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":4386:4693 */\n tag_129:\n /* \"#utility.yul\":4454:4455 */\n 0x00\n /* \"#utility.yul\":4464:4577 */\n tag_207:\n /* \"#utility.yul\":4478:4484 */\n dup4\n /* \"#utility.yul\":4475:4476 */\n dup2\n /* \"#utility.yul\":4472:4485 */\n lt\n /* \"#utility.yul\":4464:4577 */\n iszero\n tag_209\n jumpi\n /* \"#utility.yul\":4563:4564 */\n dup1\n /* \"#utility.yul\":4558:4561 */\n dup3\n /* \"#utility.yul\":4554:4565 */\n add\n /* \"#utility.yul\":4548:4566 */\n mload\n /* \"#utility.yul\":4544:4545 */\n dup2\n /* \"#utility.yul\":4539:4542 */\n dup5\n /* \"#utility.yul\":4535:4546 */\n add\n /* \"#utility.yul\":4528:4567 */\n mstore\n /* \"#utility.yul\":4500:4502 */\n 0x20\n /* \"#utility.yul\":4497:4498 */\n dup2\n /* \"#utility.yul\":4493:4503 */\n add\n /* \"#utility.yul\":4488:4503 */\n swap1\n pop\n /* \"#utility.yul\":4464:4577 */\n jump(tag_207)\n tag_209:\n /* \"#utility.yul\":4595:4601 */\n dup4\n /* \"#utility.yul\":4592:4593 */\n dup2\n /* \"#utility.yul\":4589:4602 */\n gt\n /* \"#utility.yul\":4586:4687 */\n iszero\n tag_210\n jumpi\n /* \"#utility.yul\":4675:4676 */\n 0x00\n /* \"#utility.yul\":4666:4672 */\n dup5\n /* \"#utility.yul\":4661:4664 */\n dup5\n /* \"#utility.yul\":4657:4673 */\n add\n /* \"#utility.yul\":4650:4677 */\n mstore\n /* \"#utility.yul\":4586:4687 */\n tag_210:\n /* \"#utility.yul\":4435:4693 */\n pop\n /* \"#utility.yul\":4386:4693 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":4699:5063 */\n tag_130:\n /* \"#utility.yul\":4787:4790 */\n 0x00\n /* \"#utility.yul\":4815:4854 */\n tag_212\n /* \"#utility.yul\":4848:4853 */\n dup3\n /* \"#utility.yul\":4815:4854 */\n tag_127\n jump\t// in\n tag_212:\n /* \"#utility.yul\":4870:4941 */\n tag_213\n /* \"#utility.yul\":4934:4940 */\n dup2\n /* \"#utility.yul\":4929:4932 */\n dup6\n /* \"#utility.yul\":4870:4941 */\n tag_128\n jump\t// in\n tag_213:\n /* \"#utility.yul\":4863:4941 */\n swap4\n pop\n /* \"#utility.yul\":4950:5002 */\n tag_214\n /* \"#utility.yul\":4995:5001 */\n dup2\n /* \"#utility.yul\":4990:4993 */\n dup6\n /* \"#utility.yul\":4983:4987 */\n 0x20\n /* \"#utility.yul\":4976:4981 */\n dup7\n /* \"#utility.yul\":4972:4988 */\n add\n /* \"#utility.yul\":4950:5002 */\n tag_129\n jump\t// in\n tag_214:\n /* \"#utility.yul\":5027:5056 */\n tag_215\n /* \"#utility.yul\":5049:5055 */\n dup2\n /* \"#utility.yul\":5027:5056 */\n tag_115\n jump\t// in\n tag_215:\n /* \"#utility.yul\":5022:5025 */\n dup5\n /* \"#utility.yul\":5018:5057 */\n add\n /* \"#utility.yul\":5011:5057 */\n swap2\n pop\n /* \"#utility.yul\":4791:5063 */\n pop\n /* \"#utility.yul\":4699:5063 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5069:5382 */\n tag_23:\n /* \"#utility.yul\":5182:5186 */\n 0x00\n /* \"#utility.yul\":5220:5222 */\n 0x20\n /* \"#utility.yul\":5209:5218 */\n dup3\n /* \"#utility.yul\":5205:5223 */\n add\n /* \"#utility.yul\":5197:5223 */\n swap1\n pop\n /* \"#utility.yul\":5269:5278 */\n dup2\n /* \"#utility.yul\":5263:5267 */\n dup2\n /* \"#utility.yul\":5259:5279 */\n sub\n /* \"#utility.yul\":5255:5256 */\n 0x00\n /* \"#utility.yul\":5244:5253 */\n dup4\n /* \"#utility.yul\":5240:5257 */\n add\n /* \"#utility.yul\":5233:5280 */\n mstore\n /* \"#utility.yul\":5297:5375 */\n tag_217\n /* \"#utility.yul\":5370:5374 */\n dup2\n /* \"#utility.yul\":5361:5367 */\n dup5\n /* \"#utility.yul\":5297:5375 */\n tag_130\n jump\t// in\n tag_217:\n /* \"#utility.yul\":5289:5375 */\n swap1\n pop\n /* \"#utility.yul\":5069:5382 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5388:5514 */\n tag_131:\n /* \"#utility.yul\":5425:5432 */\n 0x00\n /* \"#utility.yul\":5465:5507 */\n 0xffffffffffffffffffffffffffffffffffffffff\n /* \"#utility.yul\":5458:5463 */\n dup3\n /* \"#utility.yul\":5454:5508 */\n and\n /* \"#utility.yul\":5443:5508 */\n swap1\n pop\n /* \"#utility.yul\":5388:5514 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":5520:5616 */\n tag_132:\n /* \"#utility.yul\":5557:5564 */\n 0x00\n /* \"#utility.yul\":5586:5610 */\n tag_220\n /* \"#utility.yul\":5604:5609 */\n dup3\n /* \"#utility.yul\":5586:5610 */\n tag_131\n jump\t// in\n tag_220:\n /* \"#utility.yul\":5575:5610 */\n swap1\n pop\n /* \"#utility.yul\":5520:5616 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":5622:5744 */\n tag_133:\n /* \"#utility.yul\":5695:5719 */\n tag_222\n /* \"#utility.yul\":5713:5718 */\n dup2\n /* \"#utility.yul\":5695:5719 */\n tag_132\n jump\t// in\n tag_222:\n /* \"#utility.yul\":5688:5693 */\n dup2\n /* \"#utility.yul\":5685:5720 */\n eq\n /* \"#utility.yul\":5675:5738 */\n tag_223\n jumpi\n /* \"#utility.yul\":5734:5735 */\n 0x00\n /* \"#utility.yul\":5731:5732 */\n dup1\n /* \"#utility.yul\":5724:5736 */\n revert\n /* \"#utility.yul\":5675:5738 */\n tag_223:\n /* \"#utility.yul\":5622:5744 */\n pop\n jump\t// out\n /* \"#utility.yul\":5750:5889 */\n tag_134:\n /* \"#utility.yul\":5796:5801 */\n 0x00\n /* \"#utility.yul\":5834:5840 */\n dup2\n /* \"#utility.yul\":5821:5841 */\n calldataload\n /* \"#utility.yul\":5812:5841 */\n swap1\n pop\n /* \"#utility.yul\":5850:5883 */\n tag_225\n /* \"#utility.yul\":5877:5882 */\n dup2\n /* \"#utility.yul\":5850:5883 */\n tag_133\n jump\t// in\n tag_225:\n /* \"#utility.yul\":5750:5889 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5895:6224 */\n tag_26:\n /* \"#utility.yul\":5954:5960 */\n 0x00\n /* \"#utility.yul\":6003:6005 */\n 0x20\n /* \"#utility.yul\":5991:6000 */\n dup3\n /* \"#utility.yul\":5982:5989 */\n dup5\n /* \"#utility.yul\":5978:6001 */\n sub\n /* \"#utility.yul\":5974:6006 */\n slt\n /* \"#utility.yul\":5971:6090 */\n iszero\n tag_227\n jumpi\n /* \"#utility.yul\":6009:6088 */\n tag_228\n tag_111\n jump\t// in\n tag_228:\n /* \"#utility.yul\":5971:6090 */\n tag_227:\n /* \"#utility.yul\":6129:6130 */\n 0x00\n /* \"#utility.yul\":6154:6207 */\n tag_229\n /* \"#utility.yul\":6199:6206 */\n dup5\n /* \"#utility.yul\":6190:6196 */\n dup3\n /* \"#utility.yul\":6179:6188 */\n dup6\n /* \"#utility.yul\":6175:6197 */\n add\n /* \"#utility.yul\":6154:6207 */\n tag_134\n jump\t// in\n tag_229:\n /* \"#utility.yul\":6144:6207 */\n swap2\n pop\n /* \"#utility.yul\":6100:6217 */\n pop\n /* \"#utility.yul\":5895:6224 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":6230:6320 */\n tag_135:\n /* \"#utility.yul\":6264:6271 */\n 0x00\n /* \"#utility.yul\":6307:6312 */\n dup2\n /* \"#utility.yul\":6300:6313 */\n iszero\n /* \"#utility.yul\":6293:6314 */\n iszero\n /* \"#utility.yul\":6282:6314 */\n swap1\n pop\n /* \"#utility.yul\":6230:6320 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":6326:6435 */\n tag_136:\n /* \"#utility.yul\":6407:6428 */\n tag_232\n /* \"#utility.yul\":6422:6427 */\n dup2\n /* \"#utility.yul\":6407:6428 */\n tag_135\n jump\t// in\n tag_232:\n /* \"#utility.yul\":6402:6405 */\n dup3\n /* \"#utility.yul\":6395:6429 */\n mstore\n /* \"#utility.yul\":6326:6435 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":6441:6651 */\n tag_32:\n /* \"#utility.yul\":6528:6532 */\n 0x00\n /* \"#utility.yul\":6566:6568 */\n 0x20\n /* \"#utility.yul\":6555:6564 */\n dup3\n /* \"#utility.yul\":6551:6569 */\n add\n /* \"#utility.yul\":6543:6569 */\n swap1\n pop\n /* \"#utility.yul\":6579:6644 */\n tag_234\n /* \"#utility.yul\":6641:6642 */\n 0x00\n /* \"#utility.yul\":6630:6639 */\n dup4\n /* \"#utility.yul\":6626:6643 */\n add\n /* \"#utility.yul\":6617:6623 */\n dup5\n /* \"#utility.yul\":6579:6644 */\n tag_136\n jump\t// in\n tag_234:\n /* \"#utility.yul\":6441:6651 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":6657:6775 */\n tag_137:\n /* \"#utility.yul\":6744:6768 */\n tag_236\n /* \"#utility.yul\":6762:6767 */\n dup2\n /* \"#utility.yul\":6744:6768 */\n tag_132\n jump\t// in\n tag_236:\n /* \"#utility.yul\":6739:6742 */\n dup3\n /* \"#utility.yul\":6732:6769 */\n mstore\n /* \"#utility.yul\":6657:6775 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":6781:7003 */\n tag_36:\n /* \"#utility.yul\":6874:6878 */\n 0x00\n /* \"#utility.yul\":6912:6914 */\n 0x20\n /* \"#utility.yul\":6901:6910 */\n dup3\n /* \"#utility.yul\":6897:6915 */\n add\n /* \"#utility.yul\":6889:6915 */\n swap1\n pop\n /* \"#utility.yul\":6925:6996 */\n tag_238\n /* \"#utility.yul\":6993:6994 */\n 0x00\n /* \"#utility.yul\":6982:6991 */\n dup4\n /* \"#utility.yul\":6978:6995 */\n add\n /* \"#utility.yul\":6969:6975 */\n dup5\n /* \"#utility.yul\":6925:6996 */\n tag_137\n jump\t// in\n tag_238:\n /* \"#utility.yul\":6781:7003 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":7009:7663 */\n tag_39:\n /* \"#utility.yul\":7087:7093 */\n 0x00\n /* \"#utility.yul\":7095:7101 */\n dup1\n /* \"#utility.yul\":7144:7146 */\n 0x40\n /* \"#utility.yul\":7132:7141 */\n dup4\n /* \"#utility.yul\":7123:7130 */\n dup6\n /* \"#utility.yul\":7119:7142 */\n sub\n /* \"#utility.yul\":7115:7147 */\n slt\n /* \"#utility.yul\":7112:7231 */\n iszero\n tag_240\n jumpi\n /* \"#utility.yul\":7150:7229 */\n tag_241\n tag_111\n jump\t// in\n tag_241:\n /* \"#utility.yul\":7112:7231 */\n tag_240:\n /* \"#utility.yul\":7270:7271 */\n 0x00\n /* \"#utility.yul\":7295:7348 */\n tag_242\n /* \"#utility.yul\":7340:7347 */\n dup6\n /* \"#utility.yul\":7331:7337 */\n dup3\n /* \"#utility.yul\":7320:7329 */\n dup7\n /* \"#utility.yul\":7316:7338 */\n add\n /* \"#utility.yul\":7295:7348 */\n tag_126\n jump\t// in\n tag_242:\n /* \"#utility.yul\":7285:7348 */\n swap3\n pop\n /* \"#utility.yul\":7241:7358 */\n pop\n /* \"#utility.yul\":7425:7427 */\n 0x20\n /* \"#utility.yul\":7414:7423 */\n dup4\n /* \"#utility.yul\":7410:7428 */\n add\n /* \"#utility.yul\":7397:7429 */\n calldataload\n /* \"#utility.yul\":7456:7474 */\n 0xffffffffffffffff\n /* \"#utility.yul\":7448:7454 */\n dup2\n /* \"#utility.yul\":7445:7475 */\n gt\n /* \"#utility.yul\":7442:7559 */\n iszero\n tag_243\n jumpi\n /* \"#utility.yul\":7478:7557 */\n tag_244\n tag_112\n jump\t// in\n tag_244:\n /* \"#utility.yul\":7442:7559 */\n tag_243:\n /* \"#utility.yul\":7583:7646 */\n tag_245\n /* \"#utility.yul\":7638:7645 */\n dup6\n /* \"#utility.yul\":7629:7635 */\n dup3\n /* \"#utility.yul\":7618:7627 */\n dup7\n /* \"#utility.yul\":7614:7636 */\n add\n /* \"#utility.yul\":7583:7646 */\n tag_122\n jump\t// in\n tag_245:\n /* \"#utility.yul\":7573:7646 */\n swap2\n pop\n /* \"#utility.yul\":7368:7656 */\n pop\n /* \"#utility.yul\":7009:7663 */\n swap3\n pop\n swap3\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":7669:7793 */\n tag_138:\n /* \"#utility.yul\":7746:7752 */\n 0x00\n /* \"#utility.yul\":7780:7785 */\n dup2\n /* \"#utility.yul\":7774:7786 */\n mload\n /* \"#utility.yul\":7764:7786 */\n swap1\n pop\n /* \"#utility.yul\":7669:7793 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":7799:7993 */\n tag_139:\n /* \"#utility.yul\":7908:7919 */\n 0x00\n /* \"#utility.yul\":7942:7948 */\n dup3\n /* \"#utility.yul\":7937:7940 */\n dup3\n /* \"#utility.yul\":7930:7949 */\n mstore\n /* \"#utility.yul\":7982:7986 */\n 0x20\n /* \"#utility.yul\":7977:7980 */\n dup3\n /* \"#utility.yul\":7973:7987 */\n add\n /* \"#utility.yul\":7958:7987 */\n swap1\n pop\n /* \"#utility.yul\":7799:7993 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":7999:8141 */\n tag_140:\n /* \"#utility.yul\":8076:8080 */\n 0x00\n /* \"#utility.yul\":8099:8102 */\n dup2\n /* \"#utility.yul\":8091:8102 */\n swap1\n pop\n /* \"#utility.yul\":8129:8133 */\n 0x20\n /* \"#utility.yul\":8124:8127 */\n dup3\n /* \"#utility.yul\":8120:8134 */\n add\n /* \"#utility.yul\":8112:8134 */\n swap1\n pop\n /* \"#utility.yul\":7999:8141 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":8147:8306 */\n tag_141:\n /* \"#utility.yul\":8221:8232 */\n 0x00\n /* \"#utility.yul\":8255:8261 */\n dup3\n /* \"#utility.yul\":8250:8253 */\n dup3\n /* \"#utility.yul\":8243:8262 */\n mstore\n /* \"#utility.yul\":8295:8299 */\n 0x20\n /* \"#utility.yul\":8290:8293 */\n dup3\n /* \"#utility.yul\":8286:8300 */\n add\n /* \"#utility.yul\":8271:8300 */\n swap1\n pop\n /* \"#utility.yul\":8147:8306 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":8312:8656 */\n tag_142:\n /* \"#utility.yul\":8390:8393 */\n 0x00\n /* \"#utility.yul\":8418:8457 */\n tag_251\n /* \"#utility.yul\":8451:8456 */\n dup3\n /* \"#utility.yul\":8418:8457 */\n tag_127\n jump\t// in\n tag_251:\n /* \"#utility.yul\":8473:8534 */\n tag_252\n /* \"#utility.yul\":8527:8533 */\n dup2\n /* \"#utility.yul\":8522:8525 */\n dup6\n /* \"#utility.yul\":8473:8534 */\n tag_141\n jump\t// in\n tag_252:\n /* \"#utility.yul\":8466:8534 */\n swap4\n pop\n /* \"#utility.yul\":8543:8595 */\n tag_253\n /* \"#utility.yul\":8588:8594 */\n dup2\n /* \"#utility.yul\":8583:8586 */\n dup6\n /* \"#utility.yul\":8576:8580 */\n 0x20\n /* \"#utility.yul\":8569:8574 */\n dup7\n /* \"#utility.yul\":8565:8581 */\n add\n /* \"#utility.yul\":8543:8595 */\n tag_129\n jump\t// in\n tag_253:\n /* \"#utility.yul\":8620:8649 */\n tag_254\n /* \"#utility.yul\":8642:8648 */\n dup2\n /* \"#utility.yul\":8620:8649 */\n tag_115\n jump\t// in\n tag_254:\n /* \"#utility.yul\":8615:8618 */\n dup5\n /* \"#utility.yul\":8611:8650 */\n add\n /* \"#utility.yul\":8604:8650 */\n swap2\n pop\n /* \"#utility.yul\":8394:8656 */\n pop\n /* \"#utility.yul\":8312:8656 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":8662:8858 */\n tag_143:\n /* \"#utility.yul\":8751:8761 */\n 0x00\n /* \"#utility.yul\":8786:8852 */\n tag_256\n /* \"#utility.yul\":8848:8851 */\n dup4\n /* \"#utility.yul\":8840:8846 */\n dup4\n /* \"#utility.yul\":8786:8852 */\n tag_142\n jump\t// in\n tag_256:\n /* \"#utility.yul\":8772:8852 */\n swap1\n pop\n /* \"#utility.yul\":8662:8858 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":8864:8987 */\n tag_144:\n /* \"#utility.yul\":8944:8948 */\n 0x00\n /* \"#utility.yul\":8976:8980 */\n 0x20\n /* \"#utility.yul\":8971:8974 */\n dup3\n /* \"#utility.yul\":8967:8981 */\n add\n /* \"#utility.yul\":8959:8981 */\n swap1\n pop\n /* \"#utility.yul\":8864:8987 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":9021:10012 */\n tag_145:\n /* \"#utility.yul\":9160:9163 */\n 0x00\n /* \"#utility.yul\":9189:9253 */\n tag_259\n /* \"#utility.yul\":9247:9252 */\n dup3\n /* \"#utility.yul\":9189:9253 */\n tag_138\n jump\t// in\n tag_259:\n /* \"#utility.yul\":9269:9365 */\n tag_260\n /* \"#utility.yul\":9358:9364 */\n dup2\n /* \"#utility.yul\":9353:9356 */\n dup6\n /* \"#utility.yul\":9269:9365 */\n tag_139\n jump\t// in\n tag_260:\n /* \"#utility.yul\":9262:9365 */\n swap4\n pop\n /* \"#utility.yul\":9391:9394 */\n dup4\n /* \"#utility.yul\":9436:9440 */\n 0x20\n /* \"#utility.yul\":9428:9434 */\n dup3\n /* \"#utility.yul\":9424:9441 */\n mul\n /* \"#utility.yul\":9419:9422 */\n dup6\n /* \"#utility.yul\":9415:9442 */\n add\n /* \"#utility.yul\":9466:9532 */\n tag_261\n /* \"#utility.yul\":9526:9531 */\n dup6\n /* \"#utility.yul\":9466:9532 */\n tag_140\n jump\t// in\n tag_261:\n /* \"#utility.yul\":9555:9562 */\n dup1\n /* \"#utility.yul\":9586:9587 */\n 0x00\n /* \"#utility.yul\":9571:9967 */\n tag_262:\n /* \"#utility.yul\":9596:9602 */\n dup6\n /* \"#utility.yul\":9593:9594 */\n dup2\n /* \"#utility.yul\":9590:9603 */\n lt\n /* \"#utility.yul\":9571:9967 */\n iszero\n tag_264\n jumpi\n /* \"#utility.yul\":9667:9676 */\n dup5\n /* \"#utility.yul\":9661:9665 */\n dup5\n /* \"#utility.yul\":9657:9677 */\n sub\n /* \"#utility.yul\":9652:9655 */\n dup10\n /* \"#utility.yul\":9645:9678 */\n mstore\n /* \"#utility.yul\":9718:9724 */\n dup2\n /* \"#utility.yul\":9712:9725 */\n mload\n /* \"#utility.yul\":9746:9830 */\n tag_265\n /* \"#utility.yul\":9825:9829 */\n dup6\n /* \"#utility.yul\":9810:9823 */\n dup3\n /* \"#utility.yul\":9746:9830 */\n tag_143\n jump\t// in\n tag_265:\n /* \"#utility.yul\":9738:9830 */\n swap5\n pop\n /* \"#utility.yul\":9853:9923 */\n tag_266\n /* \"#utility.yul\":9916:9922 */\n dup4\n /* \"#utility.yul\":9853:9923 */\n tag_144\n jump\t// in\n tag_266:\n /* \"#utility.yul\":9843:9923 */\n swap3\n pop\n /* \"#utility.yul\":9952:9956 */\n 0x20\n /* \"#utility.yul\":9947:9950 */\n dup11\n /* \"#utility.yul\":9943:9957 */\n add\n /* \"#utility.yul\":9936:9957 */\n swap10\n pop\n /* \"#utility.yul\":9631:9967 */\n pop\n /* \"#utility.yul\":9618:9619 */\n 0x01\n /* \"#utility.yul\":9615:9616 */\n dup2\n /* \"#utility.yul\":9611:9620 */\n add\n /* \"#utility.yul\":9606:9620 */\n swap1\n pop\n /* \"#utility.yul\":9571:9967 */\n jump(tag_262)\n tag_264:\n /* \"#utility.yul\":9575:9589 */\n pop\n /* \"#utility.yul\":9983:9987 */\n dup3\n /* \"#utility.yul\":9976:9987 */\n swap8\n pop\n /* \"#utility.yul\":10003:10006 */\n dup8\n /* \"#utility.yul\":9996:10006 */\n swap6\n pop\n /* \"#utility.yul\":9165:10012 */\n pop\n pop\n pop\n pop\n pop\n /* \"#utility.yul\":9021:10012 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":10018:10431 */\n tag_47:\n /* \"#utility.yul\":10181:10185 */\n 0x00\n /* \"#utility.yul\":10219:10221 */\n 0x20\n /* \"#utility.yul\":10208:10217 */\n dup3\n /* \"#utility.yul\":10204:10222 */\n add\n /* \"#utility.yul\":10196:10222 */\n swap1\n pop\n /* \"#utility.yul\":10268:10277 */\n dup2\n /* \"#utility.yul\":10262:10266 */\n dup2\n /* \"#utility.yul\":10258:10278 */\n sub\n /* \"#utility.yul\":10254:10255 */\n 0x00\n /* \"#utility.yul\":10243:10252 */\n dup4\n /* \"#utility.yul\":10239:10256 */\n add\n /* \"#utility.yul\":10232:10279 */\n mstore\n /* \"#utility.yul\":10296:10424 */\n tag_268\n /* \"#utility.yul\":10419:10423 */\n dup2\n /* \"#utility.yul\":10410:10416 */\n dup5\n /* \"#utility.yul\":10296:10424 */\n tag_145\n jump\t// in\n tag_268:\n /* \"#utility.yul\":10288:10424 */\n swap1\n pop\n /* \"#utility.yul\":10018:10431 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":10437:10601 */\n tag_146:\n /* \"#utility.yul\":10577:10593 */\n 0x4f6e6c792077686974656c697374000000000000000000000000000000000000\n /* \"#utility.yul\":10573:10574 */\n 0x00\n /* \"#utility.yul\":10565:10571 */\n dup3\n /* \"#utility.yul\":10561:10575 */\n add\n /* \"#utility.yul\":10554:10594 */\n mstore\n /* \"#utility.yul\":10437:10601 */\n pop\n jump\t// out\n /* \"#utility.yul\":10607:10973 */\n tag_147:\n /* \"#utility.yul\":10749:10752 */\n 0x00\n /* \"#utility.yul\":10770:10837 */\n tag_271\n /* \"#utility.yul\":10834:10836 */\n 0x0e\n /* \"#utility.yul\":10829:10832 */\n dup4\n /* \"#utility.yul\":10770:10837 */\n tag_128\n jump\t// in\n tag_271:\n /* \"#utility.yul\":10763:10837 */\n swap2\n pop\n /* \"#utility.yul\":10846:10939 */\n tag_272\n /* \"#utility.yul\":10935:10938 */\n dup3\n /* \"#utility.yul\":10846:10939 */\n tag_146\n jump\t// in\n tag_272:\n /* \"#utility.yul\":10964:10966 */\n 0x20\n /* \"#utility.yul\":10959:10962 */\n dup3\n /* \"#utility.yul\":10955:10967 */\n add\n /* \"#utility.yul\":10948:10967 */\n swap1\n pop\n /* \"#utility.yul\":10607:10973 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":10979:11398 */\n tag_51:\n /* \"#utility.yul\":11145:11149 */\n 0x00\n /* \"#utility.yul\":11183:11185 */\n 0x20\n /* \"#utility.yul\":11172:11181 */\n dup3\n /* \"#utility.yul\":11168:11186 */\n add\n /* \"#utility.yul\":11160:11186 */\n swap1\n pop\n /* \"#utility.yul\":11232:11241 */\n dup2\n /* \"#utility.yul\":11226:11230 */\n dup2\n /* \"#utility.yul\":11222:11242 */\n sub\n /* \"#utility.yul\":11218:11219 */\n 0x00\n /* \"#utility.yul\":11207:11216 */\n dup4\n /* \"#utility.yul\":11203:11220 */\n add\n /* \"#utility.yul\":11196:11243 */\n mstore\n /* \"#utility.yul\":11260:11391 */\n tag_274\n /* \"#utility.yul\":11386:11390 */\n dup2\n /* \"#utility.yul\":11260:11391 */\n tag_147\n jump\t// in\n tag_274:\n /* \"#utility.yul\":11252:11391 */\n swap1\n pop\n /* \"#utility.yul\":10979:11398 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":11404:11584 */\n tag_148:\n /* \"#utility.yul\":11452:11529 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":11449:11450 */\n 0x00\n /* \"#utility.yul\":11442:11530 */\n mstore\n /* \"#utility.yul\":11549:11553 */\n 0x11\n /* \"#utility.yul\":11546:11547 */\n 0x04\n /* \"#utility.yul\":11539:11554 */\n mstore\n /* \"#utility.yul\":11573:11577 */\n 0x24\n /* \"#utility.yul\":11570:11571 */\n 0x00\n /* \"#utility.yul\":11563:11578 */\n revert\n /* \"#utility.yul\":11590:11781 */\n tag_57:\n /* \"#utility.yul\":11630:11634 */\n 0x00\n /* \"#utility.yul\":11650:11670 */\n tag_277\n /* \"#utility.yul\":11668:11669 */\n dup3\n /* \"#utility.yul\":11650:11670 */\n tag_123\n jump\t// in\n tag_277:\n /* \"#utility.yul\":11645:11670 */\n swap2\n pop\n /* \"#utility.yul\":11684:11704 */\n tag_278\n /* \"#utility.yul\":11702:11703 */\n dup4\n /* \"#utility.yul\":11684:11704 */\n tag_123\n jump\t// in\n tag_278:\n /* \"#utility.yul\":11679:11704 */\n swap3\n pop\n /* \"#utility.yul\":11723:11724 */\n dup3\n /* \"#utility.yul\":11720:11721 */\n dup3\n /* \"#utility.yul\":11717:11725 */\n lt\n /* \"#utility.yul\":11714:11748 */\n iszero\n tag_279\n jumpi\n /* \"#utility.yul\":11728:11746 */\n tag_280\n tag_148\n jump\t// in\n tag_280:\n /* \"#utility.yul\":11714:11748 */\n tag_279:\n /* \"#utility.yul\":11773:11774 */\n dup3\n /* \"#utility.yul\":11770:11771 */\n dup3\n /* \"#utility.yul\":11766:11775 */\n sub\n /* \"#utility.yul\":11758:11775 */\n swap1\n pop\n /* \"#utility.yul\":11590:11781 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":11787:11967 */\n tag_61:\n /* \"#utility.yul\":11835:11912 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":11832:11833 */\n 0x00\n /* \"#utility.yul\":11825:11913 */\n mstore\n /* \"#utility.yul\":11932:11936 */\n 0x32\n /* \"#utility.yul\":11929:11930 */\n 0x04\n /* \"#utility.yul\":11922:11937 */\n mstore\n /* \"#utility.yul\":11956:11960 */\n 0x24\n /* \"#utility.yul\":11953:11954 */\n 0x00\n /* \"#utility.yul\":11946:11961 */\n revert\n /* \"#utility.yul\":11973:12153 */\n tag_149:\n /* \"#utility.yul\":12021:12098 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":12018:12019 */\n 0x00\n /* \"#utility.yul\":12011:12099 */\n mstore\n /* \"#utility.yul\":12118:12122 */\n 0x22\n /* \"#utility.yul\":12115:12116 */\n 0x04\n /* \"#utility.yul\":12108:12123 */\n mstore\n /* \"#utility.yul\":12142:12146 */\n 0x24\n /* \"#utility.yul\":12139:12140 */\n 0x00\n /* \"#utility.yul\":12132:12147 */\n revert\n /* \"#utility.yul\":12159:12479 */\n tag_64:\n /* \"#utility.yul\":12203:12209 */\n 0x00\n /* \"#utility.yul\":12240:12241 */\n 0x02\n /* \"#utility.yul\":12234:12238 */\n dup3\n /* \"#utility.yul\":12230:12242 */\n div\n /* \"#utility.yul\":12220:12242 */\n swap1\n pop\n /* \"#utility.yul\":12287:12288 */\n 0x01\n /* \"#utility.yul\":12281:12285 */\n dup3\n /* \"#utility.yul\":12277:12289 */\n and\n /* \"#utility.yul\":12308:12326 */\n dup1\n /* \"#utility.yul\":12298:12379 */\n tag_284\n jumpi\n /* \"#utility.yul\":12364:12368 */\n 0x7f\n /* \"#utility.yul\":12356:12362 */\n dup3\n /* \"#utility.yul\":12352:12369 */\n and\n /* \"#utility.yul\":12342:12369 */\n swap2\n pop\n /* \"#utility.yul\":12298:12379 */\n tag_284:\n /* \"#utility.yul\":12426:12428 */\n 0x20\n /* \"#utility.yul\":12418:12424 */\n dup3\n /* \"#utility.yul\":12415:12429 */\n lt\n /* \"#utility.yul\":12395:12413 */\n dup2\n /* \"#utility.yul\":12392:12430 */\n sub\n /* \"#utility.yul\":12389:12473 */\n tag_285\n jumpi\n /* \"#utility.yul\":12445:12463 */\n tag_286\n tag_149\n jump\t// in\n tag_286:\n /* \"#utility.yul\":12389:12473 */\n tag_285:\n /* \"#utility.yul\":12210:12479 */\n pop\n /* \"#utility.yul\":12159:12479 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":12485:12645 */\n tag_150:\n /* \"#utility.yul\":12625:12637 */\n 0x4f6e6c79206f776e657200000000000000000000000000000000000000000000\n /* \"#utility.yul\":12621:12622 */\n 0x00\n /* \"#utility.yul\":12613:12619 */\n dup3\n /* \"#utility.yul\":12609:12623 */\n add\n /* \"#utility.yul\":12602:12638 */\n mstore\n /* \"#utility.yul\":12485:12645 */\n pop\n jump\t// out\n /* \"#utility.yul\":12651:13017 */\n tag_151:\n /* \"#utility.yul\":12793:12796 */\n 0x00\n /* \"#utility.yul\":12814:12881 */\n tag_289\n /* \"#utility.yul\":12878:12880 */\n 0x0a\n /* \"#utility.yul\":12873:12876 */\n dup4\n /* \"#utility.yul\":12814:12881 */\n tag_128\n jump\t// in\n tag_289:\n /* \"#utility.yul\":12807:12881 */\n swap2\n pop\n /* \"#utility.yul\":12890:12983 */\n tag_290\n /* \"#utility.yul\":12979:12982 */\n dup3\n /* \"#utility.yul\":12890:12983 */\n tag_150\n jump\t// in\n tag_290:\n /* \"#utility.yul\":13008:13010 */\n 0x20\n /* \"#utility.yul\":13003:13006 */\n dup3\n /* \"#utility.yul\":12999:13011 */\n add\n /* \"#utility.yul\":12992:13011 */\n swap1\n pop\n /* \"#utility.yul\":12651:13017 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":13023:13442 */\n tag_72:\n /* \"#utility.yul\":13189:13193 */\n 0x00\n /* \"#utility.yul\":13227:13229 */\n 0x20\n /* \"#utility.yul\":13216:13225 */\n dup3\n /* \"#utility.yul\":13212:13230 */\n add\n /* \"#utility.yul\":13204:13230 */\n swap1\n pop\n /* \"#utility.yul\":13276:13285 */\n dup2\n /* \"#utility.yul\":13270:13274 */\n dup2\n /* \"#utility.yul\":13266:13286 */\n sub\n /* \"#utility.yul\":13262:13263 */\n 0x00\n /* \"#utility.yul\":13251:13260 */\n dup4\n /* \"#utility.yul\":13247:13264 */\n add\n /* \"#utility.yul\":13240:13287 */\n mstore\n /* \"#utility.yul\":13304:13435 */\n tag_292\n /* \"#utility.yul\":13430:13434 */\n dup2\n /* \"#utility.yul\":13304:13435 */\n tag_151\n jump\t// in\n tag_292:\n /* \"#utility.yul\":13296:13435 */\n swap1\n pop\n /* \"#utility.yul\":13023:13442 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":13448:13589 */\n tag_152:\n /* \"#utility.yul\":13497:13501 */\n 0x00\n /* \"#utility.yul\":13520:13523 */\n dup2\n /* \"#utility.yul\":13512:13523 */\n swap1\n pop\n /* \"#utility.yul\":13543:13546 */\n dup2\n /* \"#utility.yul\":13540:13541 */\n 0x00\n /* \"#utility.yul\":13533:13547 */\n mstore\n /* \"#utility.yul\":13577:13581 */\n 0x20\n /* \"#utility.yul\":13574:13575 */\n 0x00\n /* \"#utility.yul\":13564:13582 */\n keccak256\n /* \"#utility.yul\":13556:13582 */\n swap1\n pop\n /* \"#utility.yul\":13448:13589 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":13619:14421 */\n tag_153:\n /* \"#utility.yul\":13704:13707 */\n 0x00\n /* \"#utility.yul\":13741:13746 */\n dup2\n /* \"#utility.yul\":13735:13747 */\n sload\n /* \"#utility.yul\":13770:13806 */\n tag_295\n /* \"#utility.yul\":13796:13805 */\n dup2\n /* \"#utility.yul\":13770:13806 */\n tag_64\n jump\t// in\n tag_295:\n /* \"#utility.yul\":13822:13893 */\n tag_296\n /* \"#utility.yul\":13886:13892 */\n dup2\n /* \"#utility.yul\":13881:13884 */\n dup7\n /* \"#utility.yul\":13822:13893 */\n tag_128\n jump\t// in\n tag_296:\n /* \"#utility.yul\":13815:13893 */\n swap5\n pop\n /* \"#utility.yul\":13924:13925 */\n 0x01\n /* \"#utility.yul\":13913:13922 */\n dup3\n /* \"#utility.yul\":13909:13926 */\n and\n /* \"#utility.yul\":13940:13941 */\n 0x00\n /* \"#utility.yul\":13935:14070 */\n dup2\n eq\n tag_298\n jumpi\n /* \"#utility.yul\":14084:14085 */\n 0x01\n /* \"#utility.yul\":14079:14415 */\n dup2\n eq\n tag_299\n jumpi\n /* \"#utility.yul\":13902:14415 */\n jump(tag_297)\n /* \"#utility.yul\":13935:14070 */\n tag_298:\n /* \"#utility.yul\":14019:14023 */\n 0xff\n /* \"#utility.yul\":14015:14024 */\n not\n /* \"#utility.yul\":14004:14013 */\n dup4\n /* \"#utility.yul\":14000:14025 */\n and\n /* \"#utility.yul\":13995:13998 */\n dup7\n /* \"#utility.yul\":13988:14026 */\n mstore\n /* \"#utility.yul\":14055:14059 */\n 0x20\n /* \"#utility.yul\":14050:14053 */\n dup7\n /* \"#utility.yul\":14046:14060 */\n add\n /* \"#utility.yul\":14039:14060 */\n swap4\n pop\n /* \"#utility.yul\":13935:14070 */\n jump(tag_297)\n /* \"#utility.yul\":14079:14415 */\n tag_299:\n /* \"#utility.yul\":14146:14184 */\n tag_300\n /* \"#utility.yul\":14178:14183 */\n dup6\n /* \"#utility.yul\":14146:14184 */\n tag_152\n jump\t// in\n tag_300:\n /* \"#utility.yul\":14206:14207 */\n 0x00\n /* \"#utility.yul\":14220:14374 */\n tag_301:\n /* \"#utility.yul\":14234:14240 */\n dup4\n /* \"#utility.yul\":14231:14232 */\n dup2\n /* \"#utility.yul\":14228:14241 */\n lt\n /* \"#utility.yul\":14220:14374 */\n iszero\n tag_303\n jumpi\n /* \"#utility.yul\":14308:14315 */\n dup2\n /* \"#utility.yul\":14302:14316 */\n sload\n /* \"#utility.yul\":14298:14299 */\n dup2\n /* \"#utility.yul\":14293:14296 */\n dup10\n /* \"#utility.yul\":14289:14300 */\n add\n /* \"#utility.yul\":14282:14317 */\n mstore\n /* \"#utility.yul\":14358:14359 */\n 0x01\n /* \"#utility.yul\":14349:14356 */\n dup3\n /* \"#utility.yul\":14345:14360 */\n add\n /* \"#utility.yul\":14334:14360 */\n swap2\n pop\n /* \"#utility.yul\":14256:14260 */\n 0x20\n /* \"#utility.yul\":14253:14254 */\n dup2\n /* \"#utility.yul\":14249:14261 */\n add\n /* \"#utility.yul\":14244:14261 */\n swap1\n pop\n /* \"#utility.yul\":14220:14374 */\n jump(tag_301)\n tag_303:\n /* \"#utility.yul\":14403:14404 */\n dup1\n /* \"#utility.yul\":14398:14401 */\n dup9\n /* \"#utility.yul\":14394:14405 */\n add\n /* \"#utility.yul\":14387:14405 */\n swap6\n pop\n /* \"#utility.yul\":14086:14415 */\n pop\n pop\n /* \"#utility.yul\":13902:14415 */\n tag_297:\n pop\n /* \"#utility.yul\":13708:14421 */\n pop\n pop\n /* \"#utility.yul\":13619:14421 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":14427:14935 */\n tag_82:\n /* \"#utility.yul\":14585:14589 */\n 0x00\n /* \"#utility.yul\":14623:14625 */\n 0x40\n /* \"#utility.yul\":14612:14621 */\n dup3\n /* \"#utility.yul\":14608:14626 */\n add\n /* \"#utility.yul\":14600:14626 */\n swap1\n pop\n /* \"#utility.yul\":14672:14681 */\n dup2\n /* \"#utility.yul\":14666:14670 */\n dup2\n /* \"#utility.yul\":14662:14682 */\n sub\n /* \"#utility.yul\":14658:14659 */\n 0x00\n /* \"#utility.yul\":14647:14656 */\n dup4\n /* \"#utility.yul\":14643:14660 */\n add\n /* \"#utility.yul\":14636:14683 */\n mstore\n /* \"#utility.yul\":14700:14775 */\n tag_305\n /* \"#utility.yul\":14770:14774 */\n dup2\n /* \"#utility.yul\":14761:14767 */\n dup6\n /* \"#utility.yul\":14700:14775 */\n tag_153\n jump\t// in\n tag_305:\n /* \"#utility.yul\":14692:14775 */\n swap1\n pop\n /* \"#utility.yul\":14822:14831 */\n dup2\n /* \"#utility.yul\":14816:14820 */\n dup2\n /* \"#utility.yul\":14812:14832 */\n sub\n /* \"#utility.yul\":14807:14809 */\n 0x20\n /* \"#utility.yul\":14796:14805 */\n dup4\n /* \"#utility.yul\":14792:14810 */\n add\n /* \"#utility.yul\":14785:14833 */\n mstore\n /* \"#utility.yul\":14850:14928 */\n tag_306\n /* \"#utility.yul\":14923:14927 */\n dup2\n /* \"#utility.yul\":14914:14920 */\n dup5\n /* \"#utility.yul\":14850:14928 */\n tag_130\n jump\t// in\n tag_306:\n /* \"#utility.yul\":14842:14928 */\n swap1\n pop\n /* \"#utility.yul\":14427:14935 */\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n\n auxdata: 0xa2646970667358221220d51a8f0aa3553930307806760fc28443ee71d8d43b62c5234f91814ae38560c964736f6c634300080d0033\n}\n", + "bytecode": { + "functionDebugData": { + "@_26": { + "entryPoint": null, + "id": 26, + "parameterSlots": 0, + "returnSlots": 0 + } + }, + "generatedSources": [], + "linkReferences": {}, + "object": "608060405234801561001057600080fd5b5033600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061101a806100b96000396000f3fe608060405234801561001057600080fd5b50600436106100885760003560e01c80638da5cb5b1161005b5780638da5cb5b14610139578063b682000214610157578063ca6d56dc14610173578063d03d58491461018f57610088565b80630bf803e41461008d5780631a3cd59a146100bd5780631f81595d146100ed578063372c12b114610109575b600080fd5b6100a760048036038101906100a29190610959565b6101ad565b6040516100b491906109bb565b60405180910390f35b6100d760048036038101906100d29190610a02565b610297565b6040516100e49190610ab7565b60405180910390f35b61010760048036038101906101029190610b37565b610347565b005b610123600480360381019061011e9190610b37565b610432565b6040516101309190610b7f565b60405180910390f35b610141610452565b60405161014e9190610ba9565b60405180910390f35b610171600480360381019061016c9190610bc4565b610478565b005b61018d60048036038101906101889190610b37565b610598565b005b610197610683565b6040516101a49190610d2c565b60405180910390f35b600060011515600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610242576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161023990610d9a565b60405180910390fd5b60008290806001815401808255809150506001900390600052602060002001600090919091909150908051906020019061027d92919061075c565b5060016000805490506102909190610de9565b9050919050565b6060600082815481106102ad576102ac610e1d565b5b9060005260206000200180546102c290610e7b565b80601f01602080910402602001604051908101604052809291908181526020018280546102ee90610e7b565b801561033b5780601f106103105761010080835404028352916020019161033b565b820191906000526020600020905b81548152906001019060200180831161031e57829003601f168201915b50505050509050919050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146103d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ce90610ef8565b60405180910390fd5b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60026020528060005260406000206000915054906101000a900460ff1681565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60011515600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151461050b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161050290610d9a565b60405180910390fd5b7f305058d54db6daf26994cd687b168a24cdd9a7201462f1659782c4e429987992600083815481106105405761053f610e1d565b5b9060005260206000200182604051610559929190610fad565b60405180910390a1806000838154811061057657610575610e1d565b5b90600052602060002001908051906020019061059392919061075c565b505050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610628576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161061f90610ef8565b60405180910390fd5b6001600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60606000805480602002602001604051908101604052809291908181526020016000905b828210156107535783829060005260206000200180546106c690610e7b565b80601f01602080910402602001604051908101604052809291908181526020018280546106f290610e7b565b801561073f5780601f106107145761010080835404028352916020019161073f565b820191906000526020600020905b81548152906001019060200180831161072257829003601f168201915b5050505050815260200190600101906106a7565b50505050905090565b82805461076890610e7b565b90600052602060002090601f01602090048101928261078a57600085556107d1565b82601f106107a357805160ff19168380011785556107d1565b828001600101855582156107d1579182015b828111156107d05782518255916020019190600101906107b5565b5b5090506107de91906107e2565b5090565b5b808211156107fb5760008160009055506001016107e3565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6108668261081d565b810181811067ffffffffffffffff821117156108855761088461082e565b5b80604052505050565b60006108986107ff565b90506108a4828261085d565b919050565b600067ffffffffffffffff8211156108c4576108c361082e565b5b6108cd8261081d565b9050602081019050919050565b82818337600083830152505050565b60006108fc6108f7846108a9565b61088e565b90508281526020810184848401111561091857610917610818565b5b6109238482856108da565b509392505050565b600082601f8301126109405761093f610813565b5b81356109508482602086016108e9565b91505092915050565b60006020828403121561096f5761096e610809565b5b600082013567ffffffffffffffff81111561098d5761098c61080e565b5b6109998482850161092b565b91505092915050565b6000819050919050565b6109b5816109a2565b82525050565b60006020820190506109d060008301846109ac565b92915050565b6109df816109a2565b81146109ea57600080fd5b50565b6000813590506109fc816109d6565b92915050565b600060208284031215610a1857610a17610809565b5b6000610a26848285016109ed565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610a69578082015181840152602081019050610a4e565b83811115610a78576000848401525b50505050565b6000610a8982610a2f565b610a938185610a3a565b9350610aa3818560208601610a4b565b610aac8161081d565b840191505092915050565b60006020820190508181036000830152610ad18184610a7e565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610b0482610ad9565b9050919050565b610b1481610af9565b8114610b1f57600080fd5b50565b600081359050610b3181610b0b565b92915050565b600060208284031215610b4d57610b4c610809565b5b6000610b5b84828501610b22565b91505092915050565b60008115159050919050565b610b7981610b64565b82525050565b6000602082019050610b946000830184610b70565b92915050565b610ba381610af9565b82525050565b6000602082019050610bbe6000830184610b9a565b92915050565b60008060408385031215610bdb57610bda610809565b5b6000610be9858286016109ed565b925050602083013567ffffffffffffffff811115610c0a57610c0961080e565b5b610c168582860161092b565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b600082825260208201905092915050565b6000610c6882610a2f565b610c728185610c4c565b9350610c82818560208601610a4b565b610c8b8161081d565b840191505092915050565b6000610ca28383610c5d565b905092915050565b6000602082019050919050565b6000610cc282610c20565b610ccc8185610c2b565b935083602082028501610cde85610c3c565b8060005b85811015610d1a5784840389528151610cfb8582610c96565b9450610d0683610caa565b925060208a01995050600181019050610ce2565b50829750879550505050505092915050565b60006020820190508181036000830152610d468184610cb7565b905092915050565b7f4f6e6c792077686974656c697374000000000000000000000000000000000000600082015250565b6000610d84600e83610a3a565b9150610d8f82610d4e565b602082019050919050565b60006020820190508181036000830152610db381610d77565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000610df4826109a2565b9150610dff836109a2565b925082821015610e1257610e11610dba565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680610e9357607f821691505b602082108103610ea657610ea5610e4c565b5b50919050565b7f4f6e6c79206f776e657200000000000000000000000000000000000000000000600082015250565b6000610ee2600a83610a3a565b9150610eed82610eac565b602082019050919050565b60006020820190508181036000830152610f1181610ed5565b9050919050565b60008190508160005260206000209050919050565b60008154610f3a81610e7b565b610f448186610a3a565b94506001821660008114610f5f5760018114610f7157610fa4565b60ff1983168652602086019350610fa4565b610f7a85610f18565b60005b83811015610f9c57815481890152600182019150602081019050610f7d565b808801955050505b50505092915050565b60006040820190508181036000830152610fc78185610f2d565b90508181036020830152610fdb8184610a7e565b9050939250505056fea2646970667358221220d51a8f0aa3553930307806760fc28443ee71d8d43b62c5234f91814ae38560c964736f6c634300080d0033", + "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLER PUSH1 0x1 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x1 PUSH1 0x2 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH2 0x101A DUP1 PUSH2 0xB9 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 0x88 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x8DA5CB5B GT PUSH2 0x5B JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x139 JUMPI DUP1 PUSH4 0xB6820002 EQ PUSH2 0x157 JUMPI DUP1 PUSH4 0xCA6D56DC EQ PUSH2 0x173 JUMPI DUP1 PUSH4 0xD03D5849 EQ PUSH2 0x18F JUMPI PUSH2 0x88 JUMP JUMPDEST DUP1 PUSH4 0xBF803E4 EQ PUSH2 0x8D JUMPI DUP1 PUSH4 0x1A3CD59A EQ PUSH2 0xBD JUMPI DUP1 PUSH4 0x1F81595D EQ PUSH2 0xED JUMPI DUP1 PUSH4 0x372C12B1 EQ PUSH2 0x109 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xA7 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xA2 SWAP2 SWAP1 PUSH2 0x959 JUMP JUMPDEST PUSH2 0x1AD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xB4 SWAP2 SWAP1 PUSH2 0x9BB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xD7 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xD2 SWAP2 SWAP1 PUSH2 0xA02 JUMP JUMPDEST PUSH2 0x297 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xE4 SWAP2 SWAP1 PUSH2 0xAB7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x107 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x102 SWAP2 SWAP1 PUSH2 0xB37 JUMP JUMPDEST PUSH2 0x347 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x123 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x11E SWAP2 SWAP1 PUSH2 0xB37 JUMP JUMPDEST PUSH2 0x432 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x130 SWAP2 SWAP1 PUSH2 0xB7F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x141 PUSH2 0x452 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x14E SWAP2 SWAP1 PUSH2 0xBA9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x171 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x16C SWAP2 SWAP1 PUSH2 0xBC4 JUMP JUMPDEST PUSH2 0x478 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x18D PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x188 SWAP2 SWAP1 PUSH2 0xB37 JUMP JUMPDEST PUSH2 0x598 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x197 PUSH2 0x683 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1A4 SWAP2 SWAP1 PUSH2 0xD2C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 PUSH1 0x1 ISZERO ISZERO PUSH1 0x2 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO ISZERO EQ PUSH2 0x242 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x239 SWAP1 PUSH2 0xD9A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 DUP3 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 POP SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x27D SWAP3 SWAP2 SWAP1 PUSH2 0x75C JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x0 DUP1 SLOAD SWAP1 POP PUSH2 0x290 SWAP2 SWAP1 PUSH2 0xDE9 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0x2AD JUMPI PUSH2 0x2AC PUSH2 0xE1D JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD DUP1 SLOAD PUSH2 0x2C2 SWAP1 PUSH2 0xE7B 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 0x2EE SWAP1 PUSH2 0xE7B JUMP JUMPDEST DUP1 ISZERO PUSH2 0x33B JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x310 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x33B 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 0x31E JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x3D7 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x3CE SWAP1 PUSH2 0xEF8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x2 PUSH1 0x20 MSTORE DUP1 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP2 POP SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x1 ISZERO ISZERO PUSH1 0x2 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO ISZERO EQ PUSH2 0x50B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x502 SWAP1 PUSH2 0xD9A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH32 0x305058D54DB6DAF26994CD687B168A24CDD9A7201462F1659782C4E429987992 PUSH1 0x0 DUP4 DUP2 SLOAD DUP2 LT PUSH2 0x540 JUMPI PUSH2 0x53F PUSH2 0xE1D JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD DUP3 PUSH1 0x40 MLOAD PUSH2 0x559 SWAP3 SWAP2 SWAP1 PUSH2 0xFAD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 DUP1 PUSH1 0x0 DUP4 DUP2 SLOAD DUP2 LT PUSH2 0x576 JUMPI PUSH2 0x575 PUSH2 0xE1D JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x593 SWAP3 SWAP2 SWAP1 PUSH2 0x75C JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x628 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x61F SWAP1 PUSH2 0xEF8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x2 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP1 SLOAD DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 SWAP1 JUMPDEST DUP3 DUP3 LT ISZERO PUSH2 0x753 JUMPI DUP4 DUP3 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD DUP1 SLOAD PUSH2 0x6C6 SWAP1 PUSH2 0xE7B 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 0x6F2 SWAP1 PUSH2 0xE7B JUMP JUMPDEST DUP1 ISZERO PUSH2 0x73F JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x714 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x73F 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 0x722 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x6A7 JUMP JUMPDEST POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH2 0x768 SWAP1 PUSH2 0xE7B JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0x78A JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0x7D1 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0x7A3 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0x7D1 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0x7D1 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x7D0 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x7B5 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x7DE SWAP2 SWAP1 PUSH2 0x7E2 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x7FB JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x7E3 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP 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 PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x866 DUP3 PUSH2 0x81D JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x885 JUMPI PUSH2 0x884 PUSH2 0x82E JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x898 PUSH2 0x7FF JUMP JUMPDEST SWAP1 POP PUSH2 0x8A4 DUP3 DUP3 PUSH2 0x85D JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x8C4 JUMPI PUSH2 0x8C3 PUSH2 0x82E JUMP JUMPDEST JUMPDEST PUSH2 0x8CD DUP3 PUSH2 0x81D JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x8FC PUSH2 0x8F7 DUP5 PUSH2 0x8A9 JUMP JUMPDEST PUSH2 0x88E JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x918 JUMPI PUSH2 0x917 PUSH2 0x818 JUMP JUMPDEST JUMPDEST PUSH2 0x923 DUP5 DUP3 DUP6 PUSH2 0x8DA JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x940 JUMPI PUSH2 0x93F PUSH2 0x813 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x950 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x8E9 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x96F JUMPI PUSH2 0x96E PUSH2 0x809 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP3 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x98D JUMPI PUSH2 0x98C PUSH2 0x80E JUMP JUMPDEST JUMPDEST PUSH2 0x999 DUP5 DUP3 DUP6 ADD PUSH2 0x92B JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x9B5 DUP2 PUSH2 0x9A2 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x9D0 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x9AC JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x9DF DUP2 PUSH2 0x9A2 JUMP JUMPDEST DUP2 EQ PUSH2 0x9EA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x9FC DUP2 PUSH2 0x9D6 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xA18 JUMPI PUSH2 0xA17 PUSH2 0x809 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xA26 DUP5 DUP3 DUP6 ADD PUSH2 0x9ED JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP 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 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xA69 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0xA4E JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0xA78 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xA89 DUP3 PUSH2 0xA2F JUMP JUMPDEST PUSH2 0xA93 DUP2 DUP6 PUSH2 0xA3A JUMP JUMPDEST SWAP4 POP PUSH2 0xAA3 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0xA4B JUMP JUMPDEST PUSH2 0xAAC DUP2 PUSH2 0x81D JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xAD1 DUP2 DUP5 PUSH2 0xA7E JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xB04 DUP3 PUSH2 0xAD9 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xB14 DUP2 PUSH2 0xAF9 JUMP JUMPDEST DUP2 EQ PUSH2 0xB1F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xB31 DUP2 PUSH2 0xB0B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xB4D JUMPI PUSH2 0xB4C PUSH2 0x809 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xB5B DUP5 DUP3 DUP6 ADD PUSH2 0xB22 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xB79 DUP2 PUSH2 0xB64 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xB94 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xB70 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xBA3 DUP2 PUSH2 0xAF9 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xBBE PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xB9A JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xBDB JUMPI PUSH2 0xBDA PUSH2 0x809 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xBE9 DUP6 DUP3 DUP7 ADD PUSH2 0x9ED JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xC0A JUMPI PUSH2 0xC09 PUSH2 0x80E JUMP JUMPDEST JUMPDEST PUSH2 0xC16 DUP6 DUP3 DUP7 ADD PUSH2 0x92B JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 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 PUSH1 0x20 DUP3 ADD 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 PUSH2 0xC68 DUP3 PUSH2 0xA2F JUMP JUMPDEST PUSH2 0xC72 DUP2 DUP6 PUSH2 0xC4C JUMP JUMPDEST SWAP4 POP PUSH2 0xC82 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0xA4B JUMP JUMPDEST PUSH2 0xC8B DUP2 PUSH2 0x81D JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xCA2 DUP4 DUP4 PUSH2 0xC5D JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xCC2 DUP3 PUSH2 0xC20 JUMP JUMPDEST PUSH2 0xCCC DUP2 DUP6 PUSH2 0xC2B JUMP JUMPDEST SWAP4 POP DUP4 PUSH1 0x20 DUP3 MUL DUP6 ADD PUSH2 0xCDE DUP6 PUSH2 0xC3C JUMP JUMPDEST DUP1 PUSH1 0x0 JUMPDEST DUP6 DUP2 LT ISZERO PUSH2 0xD1A JUMPI DUP5 DUP5 SUB DUP10 MSTORE DUP2 MLOAD PUSH2 0xCFB DUP6 DUP3 PUSH2 0xC96 JUMP JUMPDEST SWAP5 POP PUSH2 0xD06 DUP4 PUSH2 0xCAA JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP11 ADD SWAP10 POP POP PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0xCE2 JUMP JUMPDEST POP DUP3 SWAP8 POP DUP8 SWAP6 POP POP POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xD46 DUP2 DUP5 PUSH2 0xCB7 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4F6E6C792077686974656C697374000000000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xD84 PUSH1 0xE DUP4 PUSH2 0xA3A JUMP JUMPDEST SWAP2 POP PUSH2 0xD8F DUP3 PUSH2 0xD4E JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xDB3 DUP2 PUSH2 0xD77 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xDF4 DUP3 PUSH2 0x9A2 JUMP JUMPDEST SWAP2 POP PUSH2 0xDFF DUP4 PUSH2 0x9A2 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0xE12 JUMPI PUSH2 0xE11 PUSH2 0xDBA JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 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 PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0xE93 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0xEA6 JUMPI PUSH2 0xEA5 PUSH2 0xE4C JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4F6E6C79206F776E657200000000000000000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xEE2 PUSH1 0xA DUP4 PUSH2 0xA3A JUMP JUMPDEST SWAP2 POP PUSH2 0xEED DUP3 PUSH2 0xEAC JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xF11 DUP2 PUSH2 0xED5 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP DUP2 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SLOAD PUSH2 0xF3A DUP2 PUSH2 0xE7B JUMP JUMPDEST PUSH2 0xF44 DUP2 DUP7 PUSH2 0xA3A JUMP JUMPDEST SWAP5 POP PUSH1 0x1 DUP3 AND PUSH1 0x0 DUP2 EQ PUSH2 0xF5F JUMPI PUSH1 0x1 DUP2 EQ PUSH2 0xF71 JUMPI PUSH2 0xFA4 JUMP JUMPDEST PUSH1 0xFF NOT DUP4 AND DUP7 MSTORE PUSH1 0x20 DUP7 ADD SWAP4 POP PUSH2 0xFA4 JUMP JUMPDEST PUSH2 0xF7A DUP6 PUSH2 0xF18 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xF9C JUMPI DUP2 SLOAD DUP2 DUP10 ADD MSTORE PUSH1 0x1 DUP3 ADD SWAP2 POP PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0xF7D JUMP JUMPDEST DUP1 DUP9 ADD SWAP6 POP POP POP JUMPDEST POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xFC7 DUP2 DUP6 PUSH2 0xF2D JUMP JUMPDEST SWAP1 POP DUP2 DUP2 SUB PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0xFDB DUP2 DUP5 PUSH2 0xA7E JUMP JUMPDEST SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xD5 BYTE DUP16 EXP LOG3 SSTORE CODECOPY ADDRESS ADDRESS PUSH25 0x6760FC28443EE71D8D43B62C5234F91814AE38560C964736F PUSH13 0x634300080D0033000000000000 ", + "sourceMap": "71:1267:0:-:0;;;209:90;;;;;;;;;;242:10;234:5;;:18;;;;;;;;;;;;;;;;;;287:4;263:9;:21;273:10;263:21;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;71:1267;;;;;;" + }, + "deployedBytecode": { + "functionDebugData": { + "@addInfo_116": { + "entryPoint": 429, + "id": 116, + "parameterSlots": 1, + "returnSlots": 1 + }, + "@addMember_139": { + "entryPoint": 1432, + "id": 139, + "parameterSlots": 1, + "returnSlots": 0 + }, + "@delMember_153": { + "entryPoint": 839, + "id": 153, + "parameterSlots": 1, + "returnSlots": 0 + }, + "@getInfo_70": { + "entryPoint": 663, + "id": 70, + "parameterSlots": 1, + "returnSlots": 1 + }, + "@listInfo_125": { + "entryPoint": 1667, + "id": 125, + "parameterSlots": 0, + "returnSlots": 1 + }, + "@owner_6": { + "entryPoint": 1106, + "id": 6, + "parameterSlots": 0, + "returnSlots": 0 + }, + "@setInfo_93": { + "entryPoint": 1144, + "id": 93, + "parameterSlots": 2, + "returnSlots": 0 + }, + "@whiteList_10": { + "entryPoint": 1074, + "id": 10, + "parameterSlots": 0, + "returnSlots": 0 + }, + "abi_decode_available_length_t_string_memory_ptr": { + "entryPoint": 2281, + "id": null, + "parameterSlots": 3, + "returnSlots": 1 + }, + "abi_decode_t_address": { + "entryPoint": 2850, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "abi_decode_t_string_memory_ptr": { + "entryPoint": 2347, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "abi_decode_t_uint256": { + "entryPoint": 2541, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "abi_decode_tuple_t_address": { + "entryPoint": 2871, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "abi_decode_tuple_t_string_memory_ptr": { + "entryPoint": 2393, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "abi_decode_tuple_t_uint256": { + "entryPoint": 2562, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "abi_decode_tuple_t_uint256t_string_memory_ptr": { + "entryPoint": 3012, + "id": null, + "parameterSlots": 2, + "returnSlots": 2 + }, + "abi_encodeUpdatedPos_t_string_memory_ptr_to_t_string_memory_ptr": { + "entryPoint": 3222, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "abi_encode_t_address_to_t_address_fromStack": { + "entryPoint": 2970, + "id": null, + "parameterSlots": 2, + "returnSlots": 0 + }, + "abi_encode_t_array$_t_string_memory_ptr_$dyn_memory_ptr_to_t_array$_t_string_memory_ptr_$dyn_memory_ptr_fromStack": { + "entryPoint": 3255, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "abi_encode_t_bool_to_t_bool_fromStack": { + "entryPoint": 2928, + "id": null, + "parameterSlots": 2, + "returnSlots": 0 + }, + "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr": { + "entryPoint": 3165, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": { + "entryPoint": 2686, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "abi_encode_t_string_storage_to_t_string_memory_ptr_fromStack": { + "entryPoint": 3885, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "abi_encode_t_stringliteral_17d9f114efaa93d67eedad749dd7fd16a6895ff93e28b7a30c667a069f2ed42d_to_t_string_memory_ptr_fromStack": { + "entryPoint": 3797, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "abi_encode_t_stringliteral_e456a8df821d58a81d00df5ff2bc8653f1a52a4771d0bdf36a4aa3f1bac56f7b_to_t_string_memory_ptr_fromStack": { + "entryPoint": 3447, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "abi_encode_t_uint256_to_t_uint256_fromStack": { + "entryPoint": 2476, + "id": null, + "parameterSlots": 2, + "returnSlots": 0 + }, + "abi_encode_tuple_t_address__to_t_address__fromStack_reversed": { + "entryPoint": 2985, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "abi_encode_tuple_t_array$_t_string_memory_ptr_$dyn_memory_ptr__to_t_array$_t_string_memory_ptr_$dyn_memory_ptr__fromStack_reversed": { + "entryPoint": 3372, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": { + "entryPoint": 2943, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": { + "entryPoint": 2743, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "abi_encode_tuple_t_string_storage_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__fromStack_reversed": { + "entryPoint": 4013, + "id": null, + "parameterSlots": 3, + "returnSlots": 1 + }, + "abi_encode_tuple_t_stringliteral_17d9f114efaa93d67eedad749dd7fd16a6895ff93e28b7a30c667a069f2ed42d__to_t_string_memory_ptr__fromStack_reversed": { + "entryPoint": 3832, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "abi_encode_tuple_t_stringliteral_e456a8df821d58a81d00df5ff2bc8653f1a52a4771d0bdf36a4aa3f1bac56f7b__to_t_string_memory_ptr__fromStack_reversed": { + "entryPoint": 3482, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": { + "entryPoint": 2491, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "allocate_memory": { + "entryPoint": 2190, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "allocate_unbounded": { + "entryPoint": 2047, + "id": null, + "parameterSlots": 0, + "returnSlots": 1 + }, + "array_allocation_size_t_string_memory_ptr": { + "entryPoint": 2217, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "array_dataslot_t_array$_t_string_memory_ptr_$dyn_memory_ptr": { + "entryPoint": 3132, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "array_dataslot_t_string_storage": { + "entryPoint": 3864, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "array_length_t_array$_t_string_memory_ptr_$dyn_memory_ptr": { + "entryPoint": 3104, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "array_length_t_string_memory_ptr": { + "entryPoint": 2607, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "array_nextElement_t_array$_t_string_memory_ptr_$dyn_memory_ptr": { + "entryPoint": 3242, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "array_storeLengthForEncoding_t_array$_t_string_memory_ptr_$dyn_memory_ptr_fromStack": { + "entryPoint": 3115, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "array_storeLengthForEncoding_t_string_memory_ptr": { + "entryPoint": 3148, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "array_storeLengthForEncoding_t_string_memory_ptr_fromStack": { + "entryPoint": 2618, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "checked_sub_t_uint256": { + "entryPoint": 3561, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "cleanup_t_address": { + "entryPoint": 2809, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "cleanup_t_bool": { + "entryPoint": 2916, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "cleanup_t_uint160": { + "entryPoint": 2777, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "cleanup_t_uint256": { + "entryPoint": 2466, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "copy_calldata_to_memory": { + "entryPoint": 2266, + "id": null, + "parameterSlots": 3, + "returnSlots": 0 + }, + "copy_memory_to_memory": { + "entryPoint": 2635, + "id": null, + "parameterSlots": 3, + "returnSlots": 0 + }, + "extract_byte_array_length": { + "entryPoint": 3707, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "finalize_allocation": { + "entryPoint": 2141, + "id": null, + "parameterSlots": 2, + "returnSlots": 0 + }, + "panic_error_0x11": { + "entryPoint": 3514, + "id": null, + "parameterSlots": 0, + "returnSlots": 0 + }, + "panic_error_0x22": { + "entryPoint": 3660, + "id": null, + "parameterSlots": 0, + "returnSlots": 0 + }, + "panic_error_0x32": { + "entryPoint": 3613, + "id": null, + "parameterSlots": 0, + "returnSlots": 0 + }, + "panic_error_0x41": { + "entryPoint": 2094, + "id": null, + "parameterSlots": 0, + "returnSlots": 0 + }, + "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": { + "entryPoint": 2067, + "id": null, + "parameterSlots": 0, + "returnSlots": 0 + }, + "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": { + "entryPoint": 2072, + "id": null, + "parameterSlots": 0, + "returnSlots": 0 + }, + "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": { + "entryPoint": 2062, + "id": null, + "parameterSlots": 0, + "returnSlots": 0 + }, + "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": { + "entryPoint": 2057, + "id": null, + "parameterSlots": 0, + "returnSlots": 0 + }, + "round_up_to_mul_of_32": { + "entryPoint": 2077, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "store_literal_in_memory_17d9f114efaa93d67eedad749dd7fd16a6895ff93e28b7a30c667a069f2ed42d": { + "entryPoint": 3756, + "id": null, + "parameterSlots": 1, + "returnSlots": 0 + }, + "store_literal_in_memory_e456a8df821d58a81d00df5ff2bc8653f1a52a4771d0bdf36a4aa3f1bac56f7b": { + "entryPoint": 3406, + "id": null, + "parameterSlots": 1, + "returnSlots": 0 + }, + "validator_revert_t_address": { + "entryPoint": 2827, + "id": null, + "parameterSlots": 1, + "returnSlots": 0 + }, + "validator_revert_t_uint256": { + "entryPoint": 2518, + "id": null, + "parameterSlots": 1, + "returnSlots": 0 + } + }, + "generatedSources": [ + { + "ast": { + "nodeType": "YulBlock", + "src": "0:14938:1", + "statements": [ + { + "body": { + "nodeType": "YulBlock", + "src": "47:35:1", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "57:19:1", + "value": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "73:2:1", + "type": "", + "value": "64" + } + ], + "functionName": { + "name": "mload", + "nodeType": "YulIdentifier", + "src": "67:5:1" + }, + "nodeType": "YulFunctionCall", + "src": "67:9:1" + }, + "variableNames": [ + { + "name": "memPtr", + "nodeType": "YulIdentifier", + "src": "57:6:1" + } + ] + } + ] + }, + "name": "allocate_unbounded", + "nodeType": "YulFunctionDefinition", + "returnVariables": [ + { + "name": "memPtr", + "nodeType": "YulTypedName", + "src": "40:6:1", + "type": "" + } + ], + "src": "7:75:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "177:28:1", + "statements": [ + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "194:1:1", + "type": "", + "value": "0" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "197:1:1", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "revert", + "nodeType": "YulIdentifier", + "src": "187:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "187:12:1" + }, + "nodeType": "YulExpressionStatement", + "src": "187:12:1" + } + ] + }, + "name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", + "nodeType": "YulFunctionDefinition", + "src": "88:117:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "300:28:1", + "statements": [ + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "317:1:1", + "type": "", + "value": "0" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "320:1:1", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "revert", + "nodeType": "YulIdentifier", + "src": "310:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "310:12:1" + }, + "nodeType": "YulExpressionStatement", + "src": "310:12:1" + } + ] + }, + "name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db", + "nodeType": "YulFunctionDefinition", + "src": "211:117:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "423:28:1", + "statements": [ + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "440:1:1", + "type": "", + "value": "0" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "443:1:1", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "revert", + "nodeType": "YulIdentifier", + "src": "433:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "433:12:1" + }, + "nodeType": "YulExpressionStatement", + "src": "433:12:1" + } + ] + }, + "name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d", + "nodeType": "YulFunctionDefinition", + "src": "334:117:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "546:28:1", + "statements": [ + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "563:1:1", + "type": "", + "value": "0" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "566:1:1", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "revert", + "nodeType": "YulIdentifier", + "src": "556:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "556:12:1" + }, + "nodeType": "YulExpressionStatement", + "src": "556:12:1" + } + ] + }, + "name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae", + "nodeType": "YulFunctionDefinition", + "src": "457:117:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "628:54:1", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "638:38:1", + "value": { + "arguments": [ + { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "656:5:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "663:2:1", + "type": "", + "value": "31" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "652:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "652:14:1" + }, + { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "672:2:1", + "type": "", + "value": "31" + } + ], + "functionName": { + "name": "not", + "nodeType": "YulIdentifier", + "src": "668:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "668:7:1" + } + ], + "functionName": { + "name": "and", + "nodeType": "YulIdentifier", + "src": "648:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "648:28:1" + }, + "variableNames": [ + { + "name": "result", + "nodeType": "YulIdentifier", + "src": "638:6:1" + } + ] + } + ] + }, + "name": "round_up_to_mul_of_32", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "611:5:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "result", + "nodeType": "YulTypedName", + "src": "621:6:1", + "type": "" + } + ], + "src": "580:102:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "716:152:1", + "statements": [ + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "733:1:1", + "type": "", + "value": "0" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "736:77:1", + "type": "", + "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "726:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "726:88:1" + }, + "nodeType": "YulExpressionStatement", + "src": "726:88:1" + }, + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "830:1:1", + "type": "", + "value": "4" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "833:4:1", + "type": "", + "value": "0x41" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "823:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "823:15:1" + }, + "nodeType": "YulExpressionStatement", + "src": "823:15:1" + }, + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "854:1:1", + "type": "", + "value": "0" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "857:4:1", + "type": "", + "value": "0x24" + } + ], + "functionName": { + "name": "revert", + "nodeType": "YulIdentifier", + "src": "847:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "847:15:1" + }, + "nodeType": "YulExpressionStatement", + "src": "847:15:1" + } + ] + }, + "name": "panic_error_0x41", + "nodeType": "YulFunctionDefinition", + "src": "688:180:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "917:238:1", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "927:58:1", + "value": { + "arguments": [ + { + "name": "memPtr", + "nodeType": "YulIdentifier", + "src": "949:6:1" + }, + { + "arguments": [ + { + "name": "size", + "nodeType": "YulIdentifier", + "src": "979:4:1" + } + ], + "functionName": { + "name": "round_up_to_mul_of_32", + "nodeType": "YulIdentifier", + "src": "957:21:1" + }, + "nodeType": "YulFunctionCall", + "src": "957:27:1" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "945:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "945:40:1" + }, + "variables": [ + { + "name": "newFreePtr", + "nodeType": "YulTypedName", + "src": "931:10:1", + "type": "" + } + ] + }, + { + "body": { + "nodeType": "YulBlock", + "src": "1096:22:1", + "statements": [ + { + "expression": { + "arguments": [], + "functionName": { + "name": "panic_error_0x41", + "nodeType": "YulIdentifier", + "src": "1098:16:1" + }, + "nodeType": "YulFunctionCall", + "src": "1098:18:1" + }, + "nodeType": "YulExpressionStatement", + "src": "1098:18:1" + } + ] + }, + "condition": { + "arguments": [ + { + "arguments": [ + { + "name": "newFreePtr", + "nodeType": "YulIdentifier", + "src": "1039:10:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "1051:18:1", + "type": "", + "value": "0xffffffffffffffff" + } + ], + "functionName": { + "name": "gt", + "nodeType": "YulIdentifier", + "src": "1036:2:1" + }, + "nodeType": "YulFunctionCall", + "src": "1036:34:1" + }, + { + "arguments": [ + { + "name": "newFreePtr", + "nodeType": "YulIdentifier", + "src": "1075:10:1" + }, + { + "name": "memPtr", + "nodeType": "YulIdentifier", + "src": "1087:6:1" + } + ], + "functionName": { + "name": "lt", + "nodeType": "YulIdentifier", + "src": "1072:2:1" + }, + "nodeType": "YulFunctionCall", + "src": "1072:22:1" + } + ], + "functionName": { + "name": "or", + "nodeType": "YulIdentifier", + "src": "1033:2:1" + }, + "nodeType": "YulFunctionCall", + "src": "1033:62:1" + }, + "nodeType": "YulIf", + "src": "1030:88:1" + }, + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "1134:2:1", + "type": "", + "value": "64" + }, + { + "name": "newFreePtr", + "nodeType": "YulIdentifier", + "src": "1138:10:1" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "1127:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "1127:22:1" + }, + "nodeType": "YulExpressionStatement", + "src": "1127:22:1" + } + ] + }, + "name": "finalize_allocation", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "memPtr", + "nodeType": "YulTypedName", + "src": "903:6:1", + "type": "" + }, + { + "name": "size", + "nodeType": "YulTypedName", + "src": "911:4:1", + "type": "" + } + ], + "src": "874:281:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "1202:88:1", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "1212:30:1", + "value": { + "arguments": [], + "functionName": { + "name": "allocate_unbounded", + "nodeType": "YulIdentifier", + "src": "1222:18:1" + }, + "nodeType": "YulFunctionCall", + "src": "1222:20:1" + }, + "variableNames": [ + { + "name": "memPtr", + "nodeType": "YulIdentifier", + "src": "1212:6:1" + } + ] + }, + { + "expression": { + "arguments": [ + { + "name": "memPtr", + "nodeType": "YulIdentifier", + "src": "1271:6:1" + }, + { + "name": "size", + "nodeType": "YulIdentifier", + "src": "1279:4:1" + } + ], + "functionName": { + "name": "finalize_allocation", + "nodeType": "YulIdentifier", + "src": "1251:19:1" + }, + "nodeType": "YulFunctionCall", + "src": "1251:33:1" + }, + "nodeType": "YulExpressionStatement", + "src": "1251:33:1" + } + ] + }, + "name": "allocate_memory", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "size", + "nodeType": "YulTypedName", + "src": "1186:4:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "memPtr", + "nodeType": "YulTypedName", + "src": "1195:6:1", + "type": "" + } + ], + "src": "1161:129:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "1363:241:1", + "statements": [ + { + "body": { + "nodeType": "YulBlock", + "src": "1468:22:1", + "statements": [ + { + "expression": { + "arguments": [], + "functionName": { + "name": "panic_error_0x41", + "nodeType": "YulIdentifier", + "src": "1470:16:1" + }, + "nodeType": "YulFunctionCall", + "src": "1470:18:1" + }, + "nodeType": "YulExpressionStatement", + "src": "1470:18:1" + } + ] + }, + "condition": { + "arguments": [ + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "1440:6:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "1448:18:1", + "type": "", + "value": "0xffffffffffffffff" + } + ], + "functionName": { + "name": "gt", + "nodeType": "YulIdentifier", + "src": "1437:2:1" + }, + "nodeType": "YulFunctionCall", + "src": "1437:30:1" + }, + "nodeType": "YulIf", + "src": "1434:56:1" + }, + { + "nodeType": "YulAssignment", + "src": "1500:37:1", + "value": { + "arguments": [ + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "1530:6:1" + } + ], + "functionName": { + "name": "round_up_to_mul_of_32", + "nodeType": "YulIdentifier", + "src": "1508:21:1" + }, + "nodeType": "YulFunctionCall", + "src": "1508:29:1" + }, + "variableNames": [ + { + "name": "size", + "nodeType": "YulIdentifier", + "src": "1500:4:1" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "1574:23:1", + "value": { + "arguments": [ + { + "name": "size", + "nodeType": "YulIdentifier", + "src": "1586:4:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "1592:4:1", + "type": "", + "value": "0x20" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "1582:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "1582:15:1" + }, + "variableNames": [ + { + "name": "size", + "nodeType": "YulIdentifier", + "src": "1574:4:1" + } + ] + } + ] + }, + "name": "array_allocation_size_t_string_memory_ptr", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "length", + "nodeType": "YulTypedName", + "src": "1347:6:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "size", + "nodeType": "YulTypedName", + "src": "1358:4:1", + "type": "" + } + ], + "src": "1296:308:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "1661:103:1", + "statements": [ + { + "expression": { + "arguments": [ + { + "name": "dst", + "nodeType": "YulIdentifier", + "src": "1684:3:1" + }, + { + "name": "src", + "nodeType": "YulIdentifier", + "src": "1689:3:1" + }, + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "1694:6:1" + } + ], + "functionName": { + "name": "calldatacopy", + "nodeType": "YulIdentifier", + "src": "1671:12:1" + }, + "nodeType": "YulFunctionCall", + "src": "1671:30:1" + }, + "nodeType": "YulExpressionStatement", + "src": "1671:30:1" + }, + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "dst", + "nodeType": "YulIdentifier", + "src": "1742:3:1" + }, + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "1747:6:1" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "1738:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "1738:16:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "1756:1:1", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "1731:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "1731:27:1" + }, + "nodeType": "YulExpressionStatement", + "src": "1731:27:1" + } + ] + }, + "name": "copy_calldata_to_memory", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "src", + "nodeType": "YulTypedName", + "src": "1643:3:1", + "type": "" + }, + { + "name": "dst", + "nodeType": "YulTypedName", + "src": "1648:3:1", + "type": "" + }, + { + "name": "length", + "nodeType": "YulTypedName", + "src": "1653:6:1", + "type": "" + } + ], + "src": "1610:154:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "1854:328:1", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "1864:75:1", + "value": { + "arguments": [ + { + "arguments": [ + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "1931:6:1" + } + ], + "functionName": { + "name": "array_allocation_size_t_string_memory_ptr", + "nodeType": "YulIdentifier", + "src": "1889:41:1" + }, + "nodeType": "YulFunctionCall", + "src": "1889:49:1" + } + ], + "functionName": { + "name": "allocate_memory", + "nodeType": "YulIdentifier", + "src": "1873:15:1" + }, + "nodeType": "YulFunctionCall", + "src": "1873:66:1" + }, + "variableNames": [ + { + "name": "array", + "nodeType": "YulIdentifier", + "src": "1864:5:1" + } + ] + }, + { + "expression": { + "arguments": [ + { + "name": "array", + "nodeType": "YulIdentifier", + "src": "1955:5:1" + }, + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "1962:6:1" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "1948:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "1948:21:1" + }, + "nodeType": "YulExpressionStatement", + "src": "1948:21:1" + }, + { + "nodeType": "YulVariableDeclaration", + "src": "1978:27:1", + "value": { + "arguments": [ + { + "name": "array", + "nodeType": "YulIdentifier", + "src": "1993:5:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "2000:4:1", + "type": "", + "value": "0x20" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "1989:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "1989:16:1" + }, + "variables": [ + { + "name": "dst", + "nodeType": "YulTypedName", + "src": "1982:3:1", + "type": "" + } + ] + }, + { + "body": { + "nodeType": "YulBlock", + "src": "2043:83:1", + "statements": [ + { + "expression": { + "arguments": [], + "functionName": { + "name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae", + "nodeType": "YulIdentifier", + "src": "2045:77:1" + }, + "nodeType": "YulFunctionCall", + "src": "2045:79:1" + }, + "nodeType": "YulExpressionStatement", + "src": "2045:79:1" + } + ] + }, + "condition": { + "arguments": [ + { + "arguments": [ + { + "name": "src", + "nodeType": "YulIdentifier", + "src": "2024:3:1" + }, + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "2029:6:1" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "2020:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "2020:16:1" + }, + { + "name": "end", + "nodeType": "YulIdentifier", + "src": "2038:3:1" + } + ], + "functionName": { + "name": "gt", + "nodeType": "YulIdentifier", + "src": "2017:2:1" + }, + "nodeType": "YulFunctionCall", + "src": "2017:25:1" + }, + "nodeType": "YulIf", + "src": "2014:112:1" + }, + { + "expression": { + "arguments": [ + { + "name": "src", + "nodeType": "YulIdentifier", + "src": "2159:3:1" + }, + { + "name": "dst", + "nodeType": "YulIdentifier", + "src": "2164:3:1" + }, + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "2169:6:1" + } + ], + "functionName": { + "name": "copy_calldata_to_memory", + "nodeType": "YulIdentifier", + "src": "2135:23:1" + }, + "nodeType": "YulFunctionCall", + "src": "2135:41:1" + }, + "nodeType": "YulExpressionStatement", + "src": "2135:41:1" + } + ] + }, + "name": "abi_decode_available_length_t_string_memory_ptr", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "src", + "nodeType": "YulTypedName", + "src": "1827:3:1", + "type": "" + }, + { + "name": "length", + "nodeType": "YulTypedName", + "src": "1832:6:1", + "type": "" + }, + { + "name": "end", + "nodeType": "YulTypedName", + "src": "1840:3:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "array", + "nodeType": "YulTypedName", + "src": "1848:5:1", + "type": "" + } + ], + "src": "1770:412:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "2264:278:1", + "statements": [ + { + "body": { + "nodeType": "YulBlock", + "src": "2313:83:1", + "statements": [ + { + "expression": { + "arguments": [], + "functionName": { + "name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d", + "nodeType": "YulIdentifier", + "src": "2315:77:1" + }, + "nodeType": "YulFunctionCall", + "src": "2315:79:1" + }, + "nodeType": "YulExpressionStatement", + "src": "2315:79:1" + } + ] + }, + "condition": { + "arguments": [ + { + "arguments": [ + { + "arguments": [ + { + "name": "offset", + "nodeType": "YulIdentifier", + "src": "2292:6:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "2300:4:1", + "type": "", + "value": "0x1f" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "2288:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "2288:17:1" + }, + { + "name": "end", + "nodeType": "YulIdentifier", + "src": "2307:3:1" + } + ], + "functionName": { + "name": "slt", + "nodeType": "YulIdentifier", + "src": "2284:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "2284:27:1" + } + ], + "functionName": { + "name": "iszero", + "nodeType": "YulIdentifier", + "src": "2277:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "2277:35:1" + }, + "nodeType": "YulIf", + "src": "2274:122:1" + }, + { + "nodeType": "YulVariableDeclaration", + "src": "2405:34:1", + "value": { + "arguments": [ + { + "name": "offset", + "nodeType": "YulIdentifier", + "src": "2432:6:1" + } + ], + "functionName": { + "name": "calldataload", + "nodeType": "YulIdentifier", + "src": "2419:12:1" + }, + "nodeType": "YulFunctionCall", + "src": "2419:20:1" + }, + "variables": [ + { + "name": "length", + "nodeType": "YulTypedName", + "src": "2409:6:1", + "type": "" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "2448:88:1", + "value": { + "arguments": [ + { + "arguments": [ + { + "name": "offset", + "nodeType": "YulIdentifier", + "src": "2509:6:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "2517:4:1", + "type": "", + "value": "0x20" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "2505:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "2505:17:1" + }, + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "2524:6:1" + }, + { + "name": "end", + "nodeType": "YulIdentifier", + "src": "2532:3:1" + } + ], + "functionName": { + "name": "abi_decode_available_length_t_string_memory_ptr", + "nodeType": "YulIdentifier", + "src": "2457:47:1" + }, + "nodeType": "YulFunctionCall", + "src": "2457:79:1" + }, + "variableNames": [ + { + "name": "array", + "nodeType": "YulIdentifier", + "src": "2448:5:1" + } + ] + } + ] + }, + "name": "abi_decode_t_string_memory_ptr", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "offset", + "nodeType": "YulTypedName", + "src": "2242:6:1", + "type": "" + }, + { + "name": "end", + "nodeType": "YulTypedName", + "src": "2250:3:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "array", + "nodeType": "YulTypedName", + "src": "2258:5:1", + "type": "" + } + ], + "src": "2202:340:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "2624:433:1", + "statements": [ + { + "body": { + "nodeType": "YulBlock", + "src": "2670:83:1", + "statements": [ + { + "expression": { + "arguments": [], + "functionName": { + "name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", + "nodeType": "YulIdentifier", + "src": "2672:77:1" + }, + "nodeType": "YulFunctionCall", + "src": "2672:79:1" + }, + "nodeType": "YulExpressionStatement", + "src": "2672:79:1" + } + ] + }, + "condition": { + "arguments": [ + { + "arguments": [ + { + "name": "dataEnd", + "nodeType": "YulIdentifier", + "src": "2645:7:1" + }, + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "2654:9:1" + } + ], + "functionName": { + "name": "sub", + "nodeType": "YulIdentifier", + "src": "2641:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "2641:23:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "2666:2:1", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "slt", + "nodeType": "YulIdentifier", + "src": "2637:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "2637:32:1" + }, + "nodeType": "YulIf", + "src": "2634:119:1" + }, + { + "nodeType": "YulBlock", + "src": "2763:287:1", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "2778:45:1", + "value": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "2809:9:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "2820:1:1", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "2805:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "2805:17:1" + } + ], + "functionName": { + "name": "calldataload", + "nodeType": "YulIdentifier", + "src": "2792:12:1" + }, + "nodeType": "YulFunctionCall", + "src": "2792:31:1" + }, + "variables": [ + { + "name": "offset", + "nodeType": "YulTypedName", + "src": "2782:6:1", + "type": "" + } + ] + }, + { + "body": { + "nodeType": "YulBlock", + "src": "2870:83:1", + "statements": [ + { + "expression": { + "arguments": [], + "functionName": { + "name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db", + "nodeType": "YulIdentifier", + "src": "2872:77:1" + }, + "nodeType": "YulFunctionCall", + "src": "2872:79:1" + }, + "nodeType": "YulExpressionStatement", + "src": "2872:79:1" + } + ] + }, + "condition": { + "arguments": [ + { + "name": "offset", + "nodeType": "YulIdentifier", + "src": "2842:6:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "2850:18:1", + "type": "", + "value": "0xffffffffffffffff" + } + ], + "functionName": { + "name": "gt", + "nodeType": "YulIdentifier", + "src": "2839:2:1" + }, + "nodeType": "YulFunctionCall", + "src": "2839:30:1" + }, + "nodeType": "YulIf", + "src": "2836:117:1" + }, + { + "nodeType": "YulAssignment", + "src": "2967:73:1", + "value": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "3012:9:1" + }, + { + "name": "offset", + "nodeType": "YulIdentifier", + "src": "3023:6:1" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "3008:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "3008:22:1" + }, + { + "name": "dataEnd", + "nodeType": "YulIdentifier", + "src": "3032:7:1" + } + ], + "functionName": { + "name": "abi_decode_t_string_memory_ptr", + "nodeType": "YulIdentifier", + "src": "2977:30:1" + }, + "nodeType": "YulFunctionCall", + "src": "2977:63:1" + }, + "variableNames": [ + { + "name": "value0", + "nodeType": "YulIdentifier", + "src": "2967:6:1" + } + ] + } + ] + } + ] + }, + "name": "abi_decode_tuple_t_string_memory_ptr", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "2594:9:1", + "type": "" + }, + { + "name": "dataEnd", + "nodeType": "YulTypedName", + "src": "2605:7:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "value0", + "nodeType": "YulTypedName", + "src": "2617:6:1", + "type": "" + } + ], + "src": "2548:509:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "3108:32:1", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "3118:16:1", + "value": { + "name": "value", + "nodeType": "YulIdentifier", + "src": "3129:5:1" + }, + "variableNames": [ + { + "name": "cleaned", + "nodeType": "YulIdentifier", + "src": "3118:7:1" + } + ] + } + ] + }, + "name": "cleanup_t_uint256", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "3090:5:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "cleaned", + "nodeType": "YulTypedName", + "src": "3100:7:1", + "type": "" + } + ], + "src": "3063:77:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "3211:53:1", + "statements": [ + { + "expression": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "3228:3:1" + }, + { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "3251:5:1" + } + ], + "functionName": { + "name": "cleanup_t_uint256", + "nodeType": "YulIdentifier", + "src": "3233:17:1" + }, + "nodeType": "YulFunctionCall", + "src": "3233:24:1" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "3221:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "3221:37:1" + }, + "nodeType": "YulExpressionStatement", + "src": "3221:37:1" + } + ] + }, + "name": "abi_encode_t_uint256_to_t_uint256_fromStack", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "3199:5:1", + "type": "" + }, + { + "name": "pos", + "nodeType": "YulTypedName", + "src": "3206:3:1", + "type": "" + } + ], + "src": "3146:118:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "3368:124:1", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "3378:26:1", + "value": { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "3390:9:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "3401:2:1", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "3386:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "3386:18:1" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "3378:4:1" + } + ] + }, + { + "expression": { + "arguments": [ + { + "name": "value0", + "nodeType": "YulIdentifier", + "src": "3458:6:1" + }, + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "3471:9:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "3482:1:1", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "3467:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "3467:17:1" + } + ], + "functionName": { + "name": "abi_encode_t_uint256_to_t_uint256_fromStack", + "nodeType": "YulIdentifier", + "src": "3414:43:1" + }, + "nodeType": "YulFunctionCall", + "src": "3414:71:1" + }, + "nodeType": "YulExpressionStatement", + "src": "3414:71:1" + } + ] + }, + "name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "3340:9:1", + "type": "" + }, + { + "name": "value0", + "nodeType": "YulTypedName", + "src": "3352:6:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "tail", + "nodeType": "YulTypedName", + "src": "3363:4:1", + "type": "" + } + ], + "src": "3270:222:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "3541:79:1", + "statements": [ + { + "body": { + "nodeType": "YulBlock", + "src": "3598:16:1", + "statements": [ + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "3607:1:1", + "type": "", + "value": "0" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "3610:1:1", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "revert", + "nodeType": "YulIdentifier", + "src": "3600:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "3600:12:1" + }, + "nodeType": "YulExpressionStatement", + "src": "3600:12:1" + } + ] + }, + "condition": { + "arguments": [ + { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "3564:5:1" + }, + { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "3589:5:1" + } + ], + "functionName": { + "name": "cleanup_t_uint256", + "nodeType": "YulIdentifier", + "src": "3571:17:1" + }, + "nodeType": "YulFunctionCall", + "src": "3571:24:1" + } + ], + "functionName": { + "name": "eq", + "nodeType": "YulIdentifier", + "src": "3561:2:1" + }, + "nodeType": "YulFunctionCall", + "src": "3561:35:1" + } + ], + "functionName": { + "name": "iszero", + "nodeType": "YulIdentifier", + "src": "3554:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "3554:43:1" + }, + "nodeType": "YulIf", + "src": "3551:63:1" + } + ] + }, + "name": "validator_revert_t_uint256", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "3534:5:1", + "type": "" + } + ], + "src": "3498:122:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "3678:87:1", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "3688:29:1", + "value": { + "arguments": [ + { + "name": "offset", + "nodeType": "YulIdentifier", + "src": "3710:6:1" + } + ], + "functionName": { + "name": "calldataload", + "nodeType": "YulIdentifier", + "src": "3697:12:1" + }, + "nodeType": "YulFunctionCall", + "src": "3697:20:1" + }, + "variableNames": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "3688:5:1" + } + ] + }, + { + "expression": { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "3753:5:1" + } + ], + "functionName": { + "name": "validator_revert_t_uint256", + "nodeType": "YulIdentifier", + "src": "3726:26:1" + }, + "nodeType": "YulFunctionCall", + "src": "3726:33:1" + }, + "nodeType": "YulExpressionStatement", + "src": "3726:33:1" + } + ] + }, + "name": "abi_decode_t_uint256", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "offset", + "nodeType": "YulTypedName", + "src": "3656:6:1", + "type": "" + }, + { + "name": "end", + "nodeType": "YulTypedName", + "src": "3664:3:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "3672:5:1", + "type": "" + } + ], + "src": "3626:139:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "3837:263:1", + "statements": [ + { + "body": { + "nodeType": "YulBlock", + "src": "3883:83:1", + "statements": [ + { + "expression": { + "arguments": [], + "functionName": { + "name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", + "nodeType": "YulIdentifier", + "src": "3885:77:1" + }, + "nodeType": "YulFunctionCall", + "src": "3885:79:1" + }, + "nodeType": "YulExpressionStatement", + "src": "3885:79:1" + } + ] + }, + "condition": { + "arguments": [ + { + "arguments": [ + { + "name": "dataEnd", + "nodeType": "YulIdentifier", + "src": "3858:7:1" + }, + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "3867:9:1" + } + ], + "functionName": { + "name": "sub", + "nodeType": "YulIdentifier", + "src": "3854:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "3854:23:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "3879:2:1", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "slt", + "nodeType": "YulIdentifier", + "src": "3850:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "3850:32:1" + }, + "nodeType": "YulIf", + "src": "3847:119:1" + }, + { + "nodeType": "YulBlock", + "src": "3976:117:1", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "3991:15:1", + "value": { + "kind": "number", + "nodeType": "YulLiteral", + "src": "4005:1:1", + "type": "", + "value": "0" + }, + "variables": [ + { + "name": "offset", + "nodeType": "YulTypedName", + "src": "3995:6:1", + "type": "" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "4020:63:1", + "value": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "4055:9:1" + }, + { + "name": "offset", + "nodeType": "YulIdentifier", + "src": "4066:6:1" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "4051:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "4051:22:1" + }, + { + "name": "dataEnd", + "nodeType": "YulIdentifier", + "src": "4075:7:1" + } + ], + "functionName": { + "name": "abi_decode_t_uint256", + "nodeType": "YulIdentifier", + "src": "4030:20:1" + }, + "nodeType": "YulFunctionCall", + "src": "4030:53:1" + }, + "variableNames": [ + { + "name": "value0", + "nodeType": "YulIdentifier", + "src": "4020:6:1" + } + ] + } + ] + } + ] + }, + "name": "abi_decode_tuple_t_uint256", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "3807:9:1", + "type": "" + }, + { + "name": "dataEnd", + "nodeType": "YulTypedName", + "src": "3818:7:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "value0", + "nodeType": "YulTypedName", + "src": "3830:6:1", + "type": "" + } + ], + "src": "3771:329:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "4165:40:1", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "4176:22:1", + "value": { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "4192:5:1" + } + ], + "functionName": { + "name": "mload", + "nodeType": "YulIdentifier", + "src": "4186:5:1" + }, + "nodeType": "YulFunctionCall", + "src": "4186:12:1" + }, + "variableNames": [ + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "4176:6:1" + } + ] + } + ] + }, + "name": "array_length_t_string_memory_ptr", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "4148:5:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "length", + "nodeType": "YulTypedName", + "src": "4158:6:1", + "type": "" + } + ], + "src": "4106:99:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "4307:73:1", + "statements": [ + { + "expression": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "4324:3:1" + }, + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "4329:6:1" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "4317:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "4317:19:1" + }, + "nodeType": "YulExpressionStatement", + "src": "4317:19:1" + }, + { + "nodeType": "YulAssignment", + "src": "4345:29:1", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "4364:3:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "4369:4:1", + "type": "", + "value": "0x20" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "4360:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "4360:14:1" + }, + "variableNames": [ + { + "name": "updated_pos", + "nodeType": "YulIdentifier", + "src": "4345:11:1" + } + ] + } + ] + }, + "name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "pos", + "nodeType": "YulTypedName", + "src": "4279:3:1", + "type": "" + }, + { + "name": "length", + "nodeType": "YulTypedName", + "src": "4284:6:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "updated_pos", + "nodeType": "YulTypedName", + "src": "4295:11:1", + "type": "" + } + ], + "src": "4211:169:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "4435:258:1", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "4445:10:1", + "value": { + "kind": "number", + "nodeType": "YulLiteral", + "src": "4454:1:1", + "type": "", + "value": "0" + }, + "variables": [ + { + "name": "i", + "nodeType": "YulTypedName", + "src": "4449:1:1", + "type": "" + } + ] + }, + { + "body": { + "nodeType": "YulBlock", + "src": "4514:63:1", + "statements": [ + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "dst", + "nodeType": "YulIdentifier", + "src": "4539:3:1" + }, + { + "name": "i", + "nodeType": "YulIdentifier", + "src": "4544:1:1" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "4535:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "4535:11:1" + }, + { + "arguments": [ + { + "arguments": [ + { + "name": "src", + "nodeType": "YulIdentifier", + "src": "4558:3:1" + }, + { + "name": "i", + "nodeType": "YulIdentifier", + "src": "4563:1:1" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "4554:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "4554:11:1" + } + ], + "functionName": { + "name": "mload", + "nodeType": "YulIdentifier", + "src": "4548:5:1" + }, + "nodeType": "YulFunctionCall", + "src": "4548:18:1" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "4528:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "4528:39:1" + }, + "nodeType": "YulExpressionStatement", + "src": "4528:39:1" + } + ] + }, + "condition": { + "arguments": [ + { + "name": "i", + "nodeType": "YulIdentifier", + "src": "4475:1:1" + }, + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "4478:6:1" + } + ], + "functionName": { + "name": "lt", + "nodeType": "YulIdentifier", + "src": "4472:2:1" + }, + "nodeType": "YulFunctionCall", + "src": "4472:13:1" + }, + "nodeType": "YulForLoop", + "post": { + "nodeType": "YulBlock", + "src": "4486:19:1", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "4488:15:1", + "value": { + "arguments": [ + { + "name": "i", + "nodeType": "YulIdentifier", + "src": "4497:1:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "4500:2:1", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "4493:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "4493:10:1" + }, + "variableNames": [ + { + "name": "i", + "nodeType": "YulIdentifier", + "src": "4488:1:1" + } + ] + } + ] + }, + "pre": { + "nodeType": "YulBlock", + "src": "4468:3:1", + "statements": [] + }, + "src": "4464:113:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "4611:76:1", + "statements": [ + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "dst", + "nodeType": "YulIdentifier", + "src": "4661:3:1" + }, + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "4666:6:1" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "4657:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "4657:16:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "4675:1:1", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "4650:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "4650:27:1" + }, + "nodeType": "YulExpressionStatement", + "src": "4650:27:1" + } + ] + }, + "condition": { + "arguments": [ + { + "name": "i", + "nodeType": "YulIdentifier", + "src": "4592:1:1" + }, + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "4595:6:1" + } + ], + "functionName": { + "name": "gt", + "nodeType": "YulIdentifier", + "src": "4589:2:1" + }, + "nodeType": "YulFunctionCall", + "src": "4589:13:1" + }, + "nodeType": "YulIf", + "src": "4586:101:1" + } + ] + }, + "name": "copy_memory_to_memory", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "src", + "nodeType": "YulTypedName", + "src": "4417:3:1", + "type": "" + }, + { + "name": "dst", + "nodeType": "YulTypedName", + "src": "4422:3:1", + "type": "" + }, + { + "name": "length", + "nodeType": "YulTypedName", + "src": "4427:6:1", + "type": "" + } + ], + "src": "4386:307:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "4791:272:1", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "4801:53:1", + "value": { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "4848:5:1" + } + ], + "functionName": { + "name": "array_length_t_string_memory_ptr", + "nodeType": "YulIdentifier", + "src": "4815:32:1" + }, + "nodeType": "YulFunctionCall", + "src": "4815:39:1" + }, + "variables": [ + { + "name": "length", + "nodeType": "YulTypedName", + "src": "4805:6:1", + "type": "" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "4863:78:1", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "4929:3:1" + }, + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "4934:6:1" + } + ], + "functionName": { + "name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "4870:58:1" + }, + "nodeType": "YulFunctionCall", + "src": "4870:71:1" + }, + "variableNames": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "4863:3:1" + } + ] + }, + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "4976:5:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "4983:4:1", + "type": "", + "value": "0x20" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "4972:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "4972:16:1" + }, + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "4990:3:1" + }, + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "4995:6:1" + } + ], + "functionName": { + "name": "copy_memory_to_memory", + "nodeType": "YulIdentifier", + "src": "4950:21:1" + }, + "nodeType": "YulFunctionCall", + "src": "4950:52:1" + }, + "nodeType": "YulExpressionStatement", + "src": "4950:52:1" + }, + { + "nodeType": "YulAssignment", + "src": "5011:46:1", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "5022:3:1" + }, + { + "arguments": [ + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "5049:6:1" + } + ], + "functionName": { + "name": "round_up_to_mul_of_32", + "nodeType": "YulIdentifier", + "src": "5027:21:1" + }, + "nodeType": "YulFunctionCall", + "src": "5027:29:1" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "5018:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "5018:39:1" + }, + "variableNames": [ + { + "name": "end", + "nodeType": "YulIdentifier", + "src": "5011:3:1" + } + ] + } + ] + }, + "name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "4772:5:1", + "type": "" + }, + { + "name": "pos", + "nodeType": "YulTypedName", + "src": "4779:3:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "end", + "nodeType": "YulTypedName", + "src": "4787:3:1", + "type": "" + } + ], + "src": "4699:364:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "5187:195:1", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "5197:26:1", + "value": { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "5209:9:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "5220:2:1", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "5205:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "5205:18:1" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "5197:4:1" + } + ] + }, + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "5244:9:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "5255:1:1", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "5240:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "5240:17:1" + }, + { + "arguments": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "5263:4:1" + }, + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "5269:9:1" + } + ], + "functionName": { + "name": "sub", + "nodeType": "YulIdentifier", + "src": "5259:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "5259:20:1" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "5233:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "5233:47:1" + }, + "nodeType": "YulExpressionStatement", + "src": "5233:47:1" + }, + { + "nodeType": "YulAssignment", + "src": "5289:86:1", + "value": { + "arguments": [ + { + "name": "value0", + "nodeType": "YulIdentifier", + "src": "5361:6:1" + }, + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "5370:4:1" + } + ], + "functionName": { + "name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "5297:63:1" + }, + "nodeType": "YulFunctionCall", + "src": "5297:78:1" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "5289:4:1" + } + ] + } + ] + }, + "name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "5159:9:1", + "type": "" + }, + { + "name": "value0", + "nodeType": "YulTypedName", + "src": "5171:6:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "tail", + "nodeType": "YulTypedName", + "src": "5182:4:1", + "type": "" + } + ], + "src": "5069:313:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "5433:81:1", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "5443:65:1", + "value": { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "5458:5:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "5465:42:1", + "type": "", + "value": "0xffffffffffffffffffffffffffffffffffffffff" + } + ], + "functionName": { + "name": "and", + "nodeType": "YulIdentifier", + "src": "5454:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "5454:54:1" + }, + "variableNames": [ + { + "name": "cleaned", + "nodeType": "YulIdentifier", + "src": "5443:7:1" + } + ] + } + ] + }, + "name": "cleanup_t_uint160", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "5415:5:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "cleaned", + "nodeType": "YulTypedName", + "src": "5425:7:1", + "type": "" + } + ], + "src": "5388:126:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "5565:51:1", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "5575:35:1", + "value": { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "5604:5:1" + } + ], + "functionName": { + "name": "cleanup_t_uint160", + "nodeType": "YulIdentifier", + "src": "5586:17:1" + }, + "nodeType": "YulFunctionCall", + "src": "5586:24:1" + }, + "variableNames": [ + { + "name": "cleaned", + "nodeType": "YulIdentifier", + "src": "5575:7:1" + } + ] + } + ] + }, + "name": "cleanup_t_address", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "5547:5:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "cleaned", + "nodeType": "YulTypedName", + "src": "5557:7:1", + "type": "" + } + ], + "src": "5520:96:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "5665:79:1", + "statements": [ + { + "body": { + "nodeType": "YulBlock", + "src": "5722:16:1", + "statements": [ + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "5731:1:1", + "type": "", + "value": "0" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "5734:1:1", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "revert", + "nodeType": "YulIdentifier", + "src": "5724:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "5724:12:1" + }, + "nodeType": "YulExpressionStatement", + "src": "5724:12:1" + } + ] + }, + "condition": { + "arguments": [ + { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "5688:5:1" + }, + { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "5713:5:1" + } + ], + "functionName": { + "name": "cleanup_t_address", + "nodeType": "YulIdentifier", + "src": "5695:17:1" + }, + "nodeType": "YulFunctionCall", + "src": "5695:24:1" + } + ], + "functionName": { + "name": "eq", + "nodeType": "YulIdentifier", + "src": "5685:2:1" + }, + "nodeType": "YulFunctionCall", + "src": "5685:35:1" + } + ], + "functionName": { + "name": "iszero", + "nodeType": "YulIdentifier", + "src": "5678:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "5678:43:1" + }, + "nodeType": "YulIf", + "src": "5675:63:1" + } + ] + }, + "name": "validator_revert_t_address", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "5658:5:1", + "type": "" + } + ], + "src": "5622:122:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "5802:87:1", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "5812:29:1", + "value": { + "arguments": [ + { + "name": "offset", + "nodeType": "YulIdentifier", + "src": "5834:6:1" + } + ], + "functionName": { + "name": "calldataload", + "nodeType": "YulIdentifier", + "src": "5821:12:1" + }, + "nodeType": "YulFunctionCall", + "src": "5821:20:1" + }, + "variableNames": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "5812:5:1" + } + ] + }, + { + "expression": { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "5877:5:1" + } + ], + "functionName": { + "name": "validator_revert_t_address", + "nodeType": "YulIdentifier", + "src": "5850:26:1" + }, + "nodeType": "YulFunctionCall", + "src": "5850:33:1" + }, + "nodeType": "YulExpressionStatement", + "src": "5850:33:1" + } + ] + }, + "name": "abi_decode_t_address", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "offset", + "nodeType": "YulTypedName", + "src": "5780:6:1", + "type": "" + }, + { + "name": "end", + "nodeType": "YulTypedName", + "src": "5788:3:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "5796:5:1", + "type": "" + } + ], + "src": "5750:139:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "5961:263:1", + "statements": [ + { + "body": { + "nodeType": "YulBlock", + "src": "6007:83:1", + "statements": [ + { + "expression": { + "arguments": [], + "functionName": { + "name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", + "nodeType": "YulIdentifier", + "src": "6009:77:1" + }, + "nodeType": "YulFunctionCall", + "src": "6009:79:1" + }, + "nodeType": "YulExpressionStatement", + "src": "6009:79:1" + } + ] + }, + "condition": { + "arguments": [ + { + "arguments": [ + { + "name": "dataEnd", + "nodeType": "YulIdentifier", + "src": "5982:7:1" + }, + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "5991:9:1" + } + ], + "functionName": { + "name": "sub", + "nodeType": "YulIdentifier", + "src": "5978:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "5978:23:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "6003:2:1", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "slt", + "nodeType": "YulIdentifier", + "src": "5974:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "5974:32:1" + }, + "nodeType": "YulIf", + "src": "5971:119:1" + }, + { + "nodeType": "YulBlock", + "src": "6100:117:1", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "6115:15:1", + "value": { + "kind": "number", + "nodeType": "YulLiteral", + "src": "6129:1:1", + "type": "", + "value": "0" + }, + "variables": [ + { + "name": "offset", + "nodeType": "YulTypedName", + "src": "6119:6:1", + "type": "" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "6144:63:1", + "value": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "6179:9:1" + }, + { + "name": "offset", + "nodeType": "YulIdentifier", + "src": "6190:6:1" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "6175:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "6175:22:1" + }, + { + "name": "dataEnd", + "nodeType": "YulIdentifier", + "src": "6199:7:1" + } + ], + "functionName": { + "name": "abi_decode_t_address", + "nodeType": "YulIdentifier", + "src": "6154:20:1" + }, + "nodeType": "YulFunctionCall", + "src": "6154:53:1" + }, + "variableNames": [ + { + "name": "value0", + "nodeType": "YulIdentifier", + "src": "6144:6:1" + } + ] + } + ] + } + ] + }, + "name": "abi_decode_tuple_t_address", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "5931:9:1", + "type": "" + }, + { + "name": "dataEnd", + "nodeType": "YulTypedName", + "src": "5942:7:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "value0", + "nodeType": "YulTypedName", + "src": "5954:6:1", + "type": "" + } + ], + "src": "5895:329:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "6272:48:1", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "6282:32:1", + "value": { + "arguments": [ + { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "6307:5:1" + } + ], + "functionName": { + "name": "iszero", + "nodeType": "YulIdentifier", + "src": "6300:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "6300:13:1" + } + ], + "functionName": { + "name": "iszero", + "nodeType": "YulIdentifier", + "src": "6293:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "6293:21:1" + }, + "variableNames": [ + { + "name": "cleaned", + "nodeType": "YulIdentifier", + "src": "6282:7:1" + } + ] + } + ] + }, + "name": "cleanup_t_bool", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "6254:5:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "cleaned", + "nodeType": "YulTypedName", + "src": "6264:7:1", + "type": "" + } + ], + "src": "6230:90:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "6385:50:1", + "statements": [ + { + "expression": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "6402:3:1" + }, + { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "6422:5:1" + } + ], + "functionName": { + "name": "cleanup_t_bool", + "nodeType": "YulIdentifier", + "src": "6407:14:1" + }, + "nodeType": "YulFunctionCall", + "src": "6407:21:1" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "6395:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "6395:34:1" + }, + "nodeType": "YulExpressionStatement", + "src": "6395:34:1" + } + ] + }, + "name": "abi_encode_t_bool_to_t_bool_fromStack", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "6373:5:1", + "type": "" + }, + { + "name": "pos", + "nodeType": "YulTypedName", + "src": "6380:3:1", + "type": "" + } + ], + "src": "6326:109:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "6533:118:1", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "6543:26:1", + "value": { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "6555:9:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "6566:2:1", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "6551:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "6551:18:1" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "6543:4:1" + } + ] + }, + { + "expression": { + "arguments": [ + { + "name": "value0", + "nodeType": "YulIdentifier", + "src": "6617:6:1" + }, + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "6630:9:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "6641:1:1", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "6626:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "6626:17:1" + } + ], + "functionName": { + "name": "abi_encode_t_bool_to_t_bool_fromStack", + "nodeType": "YulIdentifier", + "src": "6579:37:1" + }, + "nodeType": "YulFunctionCall", + "src": "6579:65:1" + }, + "nodeType": "YulExpressionStatement", + "src": "6579:65:1" + } + ] + }, + "name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "6505:9:1", + "type": "" + }, + { + "name": "value0", + "nodeType": "YulTypedName", + "src": "6517:6:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "tail", + "nodeType": "YulTypedName", + "src": "6528:4:1", + "type": "" + } + ], + "src": "6441:210:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "6722:53:1", + "statements": [ + { + "expression": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "6739:3:1" + }, + { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "6762:5:1" + } + ], + "functionName": { + "name": "cleanup_t_address", + "nodeType": "YulIdentifier", + "src": "6744:17:1" + }, + "nodeType": "YulFunctionCall", + "src": "6744:24:1" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "6732:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "6732:37:1" + }, + "nodeType": "YulExpressionStatement", + "src": "6732:37:1" + } + ] + }, + "name": "abi_encode_t_address_to_t_address_fromStack", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "6710:5:1", + "type": "" + }, + { + "name": "pos", + "nodeType": "YulTypedName", + "src": "6717:3:1", + "type": "" + } + ], + "src": "6657:118:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "6879:124:1", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "6889:26:1", + "value": { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "6901:9:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "6912:2:1", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "6897:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "6897:18:1" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "6889:4:1" + } + ] + }, + { + "expression": { + "arguments": [ + { + "name": "value0", + "nodeType": "YulIdentifier", + "src": "6969:6:1" + }, + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "6982:9:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "6993:1:1", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "6978:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "6978:17:1" + } + ], + "functionName": { + "name": "abi_encode_t_address_to_t_address_fromStack", + "nodeType": "YulIdentifier", + "src": "6925:43:1" + }, + "nodeType": "YulFunctionCall", + "src": "6925:71:1" + }, + "nodeType": "YulExpressionStatement", + "src": "6925:71:1" + } + ] + }, + "name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "6851:9:1", + "type": "" + }, + { + "name": "value0", + "nodeType": "YulTypedName", + "src": "6863:6:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "tail", + "nodeType": "YulTypedName", + "src": "6874:4:1", + "type": "" + } + ], + "src": "6781:222:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "7102:561:1", + "statements": [ + { + "body": { + "nodeType": "YulBlock", + "src": "7148:83:1", + "statements": [ + { + "expression": { + "arguments": [], + "functionName": { + "name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", + "nodeType": "YulIdentifier", + "src": "7150:77:1" + }, + "nodeType": "YulFunctionCall", + "src": "7150:79:1" + }, + "nodeType": "YulExpressionStatement", + "src": "7150:79:1" + } + ] + }, + "condition": { + "arguments": [ + { + "arguments": [ + { + "name": "dataEnd", + "nodeType": "YulIdentifier", + "src": "7123:7:1" + }, + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "7132:9:1" + } + ], + "functionName": { + "name": "sub", + "nodeType": "YulIdentifier", + "src": "7119:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "7119:23:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "7144:2:1", + "type": "", + "value": "64" + } + ], + "functionName": { + "name": "slt", + "nodeType": "YulIdentifier", + "src": "7115:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "7115:32:1" + }, + "nodeType": "YulIf", + "src": "7112:119:1" + }, + { + "nodeType": "YulBlock", + "src": "7241:117:1", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "7256:15:1", + "value": { + "kind": "number", + "nodeType": "YulLiteral", + "src": "7270:1:1", + "type": "", + "value": "0" + }, + "variables": [ + { + "name": "offset", + "nodeType": "YulTypedName", + "src": "7260:6:1", + "type": "" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "7285:63:1", + "value": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "7320:9:1" + }, + { + "name": "offset", + "nodeType": "YulIdentifier", + "src": "7331:6:1" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "7316:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "7316:22:1" + }, + { + "name": "dataEnd", + "nodeType": "YulIdentifier", + "src": "7340:7:1" + } + ], + "functionName": { + "name": "abi_decode_t_uint256", + "nodeType": "YulIdentifier", + "src": "7295:20:1" + }, + "nodeType": "YulFunctionCall", + "src": "7295:53:1" + }, + "variableNames": [ + { + "name": "value0", + "nodeType": "YulIdentifier", + "src": "7285:6:1" + } + ] + } + ] + }, + { + "nodeType": "YulBlock", + "src": "7368:288:1", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "7383:46:1", + "value": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "7414:9:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "7425:2:1", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "7410:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "7410:18:1" + } + ], + "functionName": { + "name": "calldataload", + "nodeType": "YulIdentifier", + "src": "7397:12:1" + }, + "nodeType": "YulFunctionCall", + "src": "7397:32:1" + }, + "variables": [ + { + "name": "offset", + "nodeType": "YulTypedName", + "src": "7387:6:1", + "type": "" + } + ] + }, + { + "body": { + "nodeType": "YulBlock", + "src": "7476:83:1", + "statements": [ + { + "expression": { + "arguments": [], + "functionName": { + "name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db", + "nodeType": "YulIdentifier", + "src": "7478:77:1" + }, + "nodeType": "YulFunctionCall", + "src": "7478:79:1" + }, + "nodeType": "YulExpressionStatement", + "src": "7478:79:1" + } + ] + }, + "condition": { + "arguments": [ + { + "name": "offset", + "nodeType": "YulIdentifier", + "src": "7448:6:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "7456:18:1", + "type": "", + "value": "0xffffffffffffffff" + } + ], + "functionName": { + "name": "gt", + "nodeType": "YulIdentifier", + "src": "7445:2:1" + }, + "nodeType": "YulFunctionCall", + "src": "7445:30:1" + }, + "nodeType": "YulIf", + "src": "7442:117:1" + }, + { + "nodeType": "YulAssignment", + "src": "7573:73:1", + "value": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "7618:9:1" + }, + { + "name": "offset", + "nodeType": "YulIdentifier", + "src": "7629:6:1" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "7614:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "7614:22:1" + }, + { + "name": "dataEnd", + "nodeType": "YulIdentifier", + "src": "7638:7:1" + } + ], + "functionName": { + "name": "abi_decode_t_string_memory_ptr", + "nodeType": "YulIdentifier", + "src": "7583:30:1" + }, + "nodeType": "YulFunctionCall", + "src": "7583:63:1" + }, + "variableNames": [ + { + "name": "value1", + "nodeType": "YulIdentifier", + "src": "7573:6:1" + } + ] + } + ] + } + ] + }, + "name": "abi_decode_tuple_t_uint256t_string_memory_ptr", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "7064:9:1", + "type": "" + }, + { + "name": "dataEnd", + "nodeType": "YulTypedName", + "src": "7075:7:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "value0", + "nodeType": "YulTypedName", + "src": "7087:6:1", + "type": "" + }, + { + "name": "value1", + "nodeType": "YulTypedName", + "src": "7095:6:1", + "type": "" + } + ], + "src": "7009:654:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "7753:40:1", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "7764:22:1", + "value": { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "7780:5:1" + } + ], + "functionName": { + "name": "mload", + "nodeType": "YulIdentifier", + "src": "7774:5:1" + }, + "nodeType": "YulFunctionCall", + "src": "7774:12:1" + }, + "variableNames": [ + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "7764:6:1" + } + ] + } + ] + }, + "name": "array_length_t_array$_t_string_memory_ptr_$dyn_memory_ptr", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "7736:5:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "length", + "nodeType": "YulTypedName", + "src": "7746:6:1", + "type": "" + } + ], + "src": "7669:124:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "7920:73:1", + "statements": [ + { + "expression": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "7937:3:1" + }, + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "7942:6:1" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "7930:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "7930:19:1" + }, + "nodeType": "YulExpressionStatement", + "src": "7930:19:1" + }, + { + "nodeType": "YulAssignment", + "src": "7958:29:1", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "7977:3:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "7982:4:1", + "type": "", + "value": "0x20" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "7973:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "7973:14:1" + }, + "variableNames": [ + { + "name": "updated_pos", + "nodeType": "YulIdentifier", + "src": "7958:11:1" + } + ] + } + ] + }, + "name": "array_storeLengthForEncoding_t_array$_t_string_memory_ptr_$dyn_memory_ptr_fromStack", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "pos", + "nodeType": "YulTypedName", + "src": "7892:3:1", + "type": "" + }, + { + "name": "length", + "nodeType": "YulTypedName", + "src": "7897:6:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "updated_pos", + "nodeType": "YulTypedName", + "src": "7908:11:1", + "type": "" + } + ], + "src": "7799:194:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "8081:60:1", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "8091:11:1", + "value": { + "name": "ptr", + "nodeType": "YulIdentifier", + "src": "8099:3:1" + }, + "variableNames": [ + { + "name": "data", + "nodeType": "YulIdentifier", + "src": "8091:4:1" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "8112:22:1", + "value": { + "arguments": [ + { + "name": "ptr", + "nodeType": "YulIdentifier", + "src": "8124:3:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "8129:4:1", + "type": "", + "value": "0x20" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "8120:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "8120:14:1" + }, + "variableNames": [ + { + "name": "data", + "nodeType": "YulIdentifier", + "src": "8112:4:1" + } + ] + } + ] + }, + "name": "array_dataslot_t_array$_t_string_memory_ptr_$dyn_memory_ptr", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "ptr", + "nodeType": "YulTypedName", + "src": "8068:3:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "data", + "nodeType": "YulTypedName", + "src": "8076:4:1", + "type": "" + } + ], + "src": "7999:142:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "8233:73:1", + "statements": [ + { + "expression": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "8250:3:1" + }, + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "8255:6:1" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "8243:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "8243:19:1" + }, + "nodeType": "YulExpressionStatement", + "src": "8243:19:1" + }, + { + "nodeType": "YulAssignment", + "src": "8271:29:1", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "8290:3:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "8295:4:1", + "type": "", + "value": "0x20" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "8286:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "8286:14:1" + }, + "variableNames": [ + { + "name": "updated_pos", + "nodeType": "YulIdentifier", + "src": "8271:11:1" + } + ] + } + ] + }, + "name": "array_storeLengthForEncoding_t_string_memory_ptr", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "pos", + "nodeType": "YulTypedName", + "src": "8205:3:1", + "type": "" + }, + { + "name": "length", + "nodeType": "YulTypedName", + "src": "8210:6:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "updated_pos", + "nodeType": "YulTypedName", + "src": "8221:11:1", + "type": "" + } + ], + "src": "8147:159:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "8394:262:1", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "8404:53:1", + "value": { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "8451:5:1" + } + ], + "functionName": { + "name": "array_length_t_string_memory_ptr", + "nodeType": "YulIdentifier", + "src": "8418:32:1" + }, + "nodeType": "YulFunctionCall", + "src": "8418:39:1" + }, + "variables": [ + { + "name": "length", + "nodeType": "YulTypedName", + "src": "8408:6:1", + "type": "" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "8466:68:1", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "8522:3:1" + }, + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "8527:6:1" + } + ], + "functionName": { + "name": "array_storeLengthForEncoding_t_string_memory_ptr", + "nodeType": "YulIdentifier", + "src": "8473:48:1" + }, + "nodeType": "YulFunctionCall", + "src": "8473:61:1" + }, + "variableNames": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "8466:3:1" + } + ] + }, + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "8569:5:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "8576:4:1", + "type": "", + "value": "0x20" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "8565:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "8565:16:1" + }, + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "8583:3:1" + }, + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "8588:6:1" + } + ], + "functionName": { + "name": "copy_memory_to_memory", + "nodeType": "YulIdentifier", + "src": "8543:21:1" + }, + "nodeType": "YulFunctionCall", + "src": "8543:52:1" + }, + "nodeType": "YulExpressionStatement", + "src": "8543:52:1" + }, + { + "nodeType": "YulAssignment", + "src": "8604:46:1", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "8615:3:1" + }, + { + "arguments": [ + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "8642:6:1" + } + ], + "functionName": { + "name": "round_up_to_mul_of_32", + "nodeType": "YulIdentifier", + "src": "8620:21:1" + }, + "nodeType": "YulFunctionCall", + "src": "8620:29:1" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "8611:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "8611:39:1" + }, + "variableNames": [ + { + "name": "end", + "nodeType": "YulIdentifier", + "src": "8604:3:1" + } + ] + } + ] + }, + "name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "8375:5:1", + "type": "" + }, + { + "name": "pos", + "nodeType": "YulTypedName", + "src": "8382:3:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "end", + "nodeType": "YulTypedName", + "src": "8390:3:1", + "type": "" + } + ], + "src": "8312:344:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "8762:96:1", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "8772:80:1", + "value": { + "arguments": [ + { + "name": "value0", + "nodeType": "YulIdentifier", + "src": "8840:6:1" + }, + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "8848:3:1" + } + ], + "functionName": { + "name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr", + "nodeType": "YulIdentifier", + "src": "8786:53:1" + }, + "nodeType": "YulFunctionCall", + "src": "8786:66:1" + }, + "variableNames": [ + { + "name": "updatedPos", + "nodeType": "YulIdentifier", + "src": "8772:10:1" + } + ] + } + ] + }, + "name": "abi_encodeUpdatedPos_t_string_memory_ptr_to_t_string_memory_ptr", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value0", + "nodeType": "YulTypedName", + "src": "8735:6:1", + "type": "" + }, + { + "name": "pos", + "nodeType": "YulTypedName", + "src": "8743:3:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "updatedPos", + "nodeType": "YulTypedName", + "src": "8751:10:1", + "type": "" + } + ], + "src": "8662:196:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "8949:38:1", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "8959:22:1", + "value": { + "arguments": [ + { + "name": "ptr", + "nodeType": "YulIdentifier", + "src": "8971:3:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "8976:4:1", + "type": "", + "value": "0x20" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "8967:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "8967:14:1" + }, + "variableNames": [ + { + "name": "next", + "nodeType": "YulIdentifier", + "src": "8959:4:1" + } + ] + } + ] + }, + "name": "array_nextElement_t_array$_t_string_memory_ptr_$dyn_memory_ptr", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "ptr", + "nodeType": "YulTypedName", + "src": "8936:3:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "next", + "nodeType": "YulTypedName", + "src": "8944:4:1", + "type": "" + } + ], + "src": "8864:123:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "9165:847:1", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "9175:78:1", + "value": { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "9247:5:1" + } + ], + "functionName": { + "name": "array_length_t_array$_t_string_memory_ptr_$dyn_memory_ptr", + "nodeType": "YulIdentifier", + "src": "9189:57:1" + }, + "nodeType": "YulFunctionCall", + "src": "9189:64:1" + }, + "variables": [ + { + "name": "length", + "nodeType": "YulTypedName", + "src": "9179:6:1", + "type": "" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "9262:103:1", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "9353:3:1" + }, + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "9358:6:1" + } + ], + "functionName": { + "name": "array_storeLengthForEncoding_t_array$_t_string_memory_ptr_$dyn_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "9269:83:1" + }, + "nodeType": "YulFunctionCall", + "src": "9269:96:1" + }, + "variableNames": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "9262:3:1" + } + ] + }, + { + "nodeType": "YulVariableDeclaration", + "src": "9374:20:1", + "value": { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "9391:3:1" + }, + "variables": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "9378:9:1", + "type": "" + } + ] + }, + { + "nodeType": "YulVariableDeclaration", + "src": "9403:39:1", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "9419:3:1" + }, + { + "arguments": [ + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "9428:6:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "9436:4:1", + "type": "", + "value": "0x20" + } + ], + "functionName": { + "name": "mul", + "nodeType": "YulIdentifier", + "src": "9424:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "9424:17:1" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "9415:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "9415:27:1" + }, + "variables": [ + { + "name": "tail", + "nodeType": "YulTypedName", + "src": "9407:4:1", + "type": "" + } + ] + }, + { + "nodeType": "YulVariableDeclaration", + "src": "9451:81:1", + "value": { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "9526:5:1" + } + ], + "functionName": { + "name": "array_dataslot_t_array$_t_string_memory_ptr_$dyn_memory_ptr", + "nodeType": "YulIdentifier", + "src": "9466:59:1" + }, + "nodeType": "YulFunctionCall", + "src": "9466:66:1" + }, + "variables": [ + { + "name": "baseRef", + "nodeType": "YulTypedName", + "src": "9455:7:1", + "type": "" + } + ] + }, + { + "nodeType": "YulVariableDeclaration", + "src": "9541:21:1", + "value": { + "name": "baseRef", + "nodeType": "YulIdentifier", + "src": "9555:7:1" + }, + "variables": [ + { + "name": "srcPtr", + "nodeType": "YulTypedName", + "src": "9545:6:1", + "type": "" + } + ] + }, + { + "body": { + "nodeType": "YulBlock", + "src": "9631:336:1", + "statements": [ + { + "expression": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "9652:3:1" + }, + { + "arguments": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "9661:4:1" + }, + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "9667:9:1" + } + ], + "functionName": { + "name": "sub", + "nodeType": "YulIdentifier", + "src": "9657:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "9657:20:1" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "9645:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "9645:33:1" + }, + "nodeType": "YulExpressionStatement", + "src": "9645:33:1" + }, + { + "nodeType": "YulVariableDeclaration", + "src": "9691:34:1", + "value": { + "arguments": [ + { + "name": "srcPtr", + "nodeType": "YulIdentifier", + "src": "9718:6:1" + } + ], + "functionName": { + "name": "mload", + "nodeType": "YulIdentifier", + "src": "9712:5:1" + }, + "nodeType": "YulFunctionCall", + "src": "9712:13:1" + }, + "variables": [ + { + "name": "elementValue0", + "nodeType": "YulTypedName", + "src": "9695:13:1", + "type": "" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "9738:92:1", + "value": { + "arguments": [ + { + "name": "elementValue0", + "nodeType": "YulIdentifier", + "src": "9810:13:1" + }, + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "9825:4:1" + } + ], + "functionName": { + "name": "abi_encodeUpdatedPos_t_string_memory_ptr_to_t_string_memory_ptr", + "nodeType": "YulIdentifier", + "src": "9746:63:1" + }, + "nodeType": "YulFunctionCall", + "src": "9746:84:1" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "9738:4:1" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "9843:80:1", + "value": { + "arguments": [ + { + "name": "srcPtr", + "nodeType": "YulIdentifier", + "src": "9916:6:1" + } + ], + "functionName": { + "name": "array_nextElement_t_array$_t_string_memory_ptr_$dyn_memory_ptr", + "nodeType": "YulIdentifier", + "src": "9853:62:1" + }, + "nodeType": "YulFunctionCall", + "src": "9853:70:1" + }, + "variableNames": [ + { + "name": "srcPtr", + "nodeType": "YulIdentifier", + "src": "9843:6:1" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "9936:21:1", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "9947:3:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "9952:4:1", + "type": "", + "value": "0x20" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "9943:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "9943:14:1" + }, + "variableNames": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "9936:3:1" + } + ] + } + ] + }, + "condition": { + "arguments": [ + { + "name": "i", + "nodeType": "YulIdentifier", + "src": "9593:1:1" + }, + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "9596:6:1" + } + ], + "functionName": { + "name": "lt", + "nodeType": "YulIdentifier", + "src": "9590:2:1" + }, + "nodeType": "YulFunctionCall", + "src": "9590:13:1" + }, + "nodeType": "YulForLoop", + "post": { + "nodeType": "YulBlock", + "src": "9604:18:1", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "9606:14:1", + "value": { + "arguments": [ + { + "name": "i", + "nodeType": "YulIdentifier", + "src": "9615:1:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "9618:1:1", + "type": "", + "value": "1" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "9611:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "9611:9:1" + }, + "variableNames": [ + { + "name": "i", + "nodeType": "YulIdentifier", + "src": "9606:1:1" + } + ] + } + ] + }, + "pre": { + "nodeType": "YulBlock", + "src": "9575:14:1", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "9577:10:1", + "value": { + "kind": "number", + "nodeType": "YulLiteral", + "src": "9586:1:1", + "type": "", + "value": "0" + }, + "variables": [ + { + "name": "i", + "nodeType": "YulTypedName", + "src": "9581:1:1", + "type": "" + } + ] + } + ] + }, + "src": "9571:396:1" + }, + { + "nodeType": "YulAssignment", + "src": "9976:11:1", + "value": { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "9983:4:1" + }, + "variableNames": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "9976:3:1" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "9996:10:1", + "value": { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "10003:3:1" + }, + "variableNames": [ + { + "name": "end", + "nodeType": "YulIdentifier", + "src": "9996:3:1" + } + ] + } + ] + }, + "name": "abi_encode_t_array$_t_string_memory_ptr_$dyn_memory_ptr_to_t_array$_t_string_memory_ptr_$dyn_memory_ptr_fromStack", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "9144:5:1", + "type": "" + }, + { + "name": "pos", + "nodeType": "YulTypedName", + "src": "9151:3:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "end", + "nodeType": "YulTypedName", + "src": "9160:3:1", + "type": "" + } + ], + "src": "9021:991:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "10186:245:1", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "10196:26:1", + "value": { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "10208:9:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "10219:2:1", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "10204:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "10204:18:1" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "10196:4:1" + } + ] + }, + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "10243:9:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "10254:1:1", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "10239:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "10239:17:1" + }, + { + "arguments": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "10262:4:1" + }, + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "10268:9:1" + } + ], + "functionName": { + "name": "sub", + "nodeType": "YulIdentifier", + "src": "10258:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "10258:20:1" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "10232:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "10232:47:1" + }, + "nodeType": "YulExpressionStatement", + "src": "10232:47:1" + }, + { + "nodeType": "YulAssignment", + "src": "10288:136:1", + "value": { + "arguments": [ + { + "name": "value0", + "nodeType": "YulIdentifier", + "src": "10410:6:1" + }, + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "10419:4:1" + } + ], + "functionName": { + "name": "abi_encode_t_array$_t_string_memory_ptr_$dyn_memory_ptr_to_t_array$_t_string_memory_ptr_$dyn_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "10296:113:1" + }, + "nodeType": "YulFunctionCall", + "src": "10296:128:1" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "10288:4:1" + } + ] + } + ] + }, + "name": "abi_encode_tuple_t_array$_t_string_memory_ptr_$dyn_memory_ptr__to_t_array$_t_string_memory_ptr_$dyn_memory_ptr__fromStack_reversed", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "10158:9:1", + "type": "" + }, + { + "name": "value0", + "nodeType": "YulTypedName", + "src": "10170:6:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "tail", + "nodeType": "YulTypedName", + "src": "10181:4:1", + "type": "" + } + ], + "src": "10018:413:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "10543:58:1", + "statements": [ + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "memPtr", + "nodeType": "YulIdentifier", + "src": "10565:6:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "10573:1:1", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "10561:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "10561:14:1" + }, + { + "hexValue": "4f6e6c792077686974656c697374", + "kind": "string", + "nodeType": "YulLiteral", + "src": "10577:16:1", + "type": "", + "value": "Only whitelist" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "10554:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "10554:40:1" + }, + "nodeType": "YulExpressionStatement", + "src": "10554:40:1" + } + ] + }, + "name": "store_literal_in_memory_e456a8df821d58a81d00df5ff2bc8653f1a52a4771d0bdf36a4aa3f1bac56f7b", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "memPtr", + "nodeType": "YulTypedName", + "src": "10535:6:1", + "type": "" + } + ], + "src": "10437:164:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "10753:220:1", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "10763:74:1", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "10829:3:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "10834:2:1", + "type": "", + "value": "14" + } + ], + "functionName": { + "name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "10770:58:1" + }, + "nodeType": "YulFunctionCall", + "src": "10770:67:1" + }, + "variableNames": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "10763:3:1" + } + ] + }, + { + "expression": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "10935:3:1" + } + ], + "functionName": { + "name": "store_literal_in_memory_e456a8df821d58a81d00df5ff2bc8653f1a52a4771d0bdf36a4aa3f1bac56f7b", + "nodeType": "YulIdentifier", + "src": "10846:88:1" + }, + "nodeType": "YulFunctionCall", + "src": "10846:93:1" + }, + "nodeType": "YulExpressionStatement", + "src": "10846:93:1" + }, + { + "nodeType": "YulAssignment", + "src": "10948:19:1", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "10959:3:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "10964:2:1", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "10955:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "10955:12:1" + }, + "variableNames": [ + { + "name": "end", + "nodeType": "YulIdentifier", + "src": "10948:3:1" + } + ] + } + ] + }, + "name": "abi_encode_t_stringliteral_e456a8df821d58a81d00df5ff2bc8653f1a52a4771d0bdf36a4aa3f1bac56f7b_to_t_string_memory_ptr_fromStack", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "pos", + "nodeType": "YulTypedName", + "src": "10741:3:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "end", + "nodeType": "YulTypedName", + "src": "10749:3:1", + "type": "" + } + ], + "src": "10607:366:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "11150:248:1", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "11160:26:1", + "value": { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "11172:9:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "11183:2:1", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "11168:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "11168:18:1" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "11160:4:1" + } + ] + }, + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "11207:9:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "11218:1:1", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "11203:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "11203:17:1" + }, + { + "arguments": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "11226:4:1" + }, + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "11232:9:1" + } + ], + "functionName": { + "name": "sub", + "nodeType": "YulIdentifier", + "src": "11222:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "11222:20:1" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "11196:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "11196:47:1" + }, + "nodeType": "YulExpressionStatement", + "src": "11196:47:1" + }, + { + "nodeType": "YulAssignment", + "src": "11252:139:1", + "value": { + "arguments": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "11386:4:1" + } + ], + "functionName": { + "name": "abi_encode_t_stringliteral_e456a8df821d58a81d00df5ff2bc8653f1a52a4771d0bdf36a4aa3f1bac56f7b_to_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "11260:124:1" + }, + "nodeType": "YulFunctionCall", + "src": "11260:131:1" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "11252:4:1" + } + ] + } + ] + }, + "name": "abi_encode_tuple_t_stringliteral_e456a8df821d58a81d00df5ff2bc8653f1a52a4771d0bdf36a4aa3f1bac56f7b__to_t_string_memory_ptr__fromStack_reversed", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "11130:9:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "tail", + "nodeType": "YulTypedName", + "src": "11145:4:1", + "type": "" + } + ], + "src": "10979:419:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "11432:152:1", + "statements": [ + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "11449:1:1", + "type": "", + "value": "0" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "11452:77:1", + "type": "", + "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "11442:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "11442:88:1" + }, + "nodeType": "YulExpressionStatement", + "src": "11442:88:1" + }, + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "11546:1:1", + "type": "", + "value": "4" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "11549:4:1", + "type": "", + "value": "0x11" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "11539:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "11539:15:1" + }, + "nodeType": "YulExpressionStatement", + "src": "11539:15:1" + }, + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "11570:1:1", + "type": "", + "value": "0" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "11573:4:1", + "type": "", + "value": "0x24" + } + ], + "functionName": { + "name": "revert", + "nodeType": "YulIdentifier", + "src": "11563:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "11563:15:1" + }, + "nodeType": "YulExpressionStatement", + "src": "11563:15:1" + } + ] + }, + "name": "panic_error_0x11", + "nodeType": "YulFunctionDefinition", + "src": "11404:180:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "11635:146:1", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "11645:25:1", + "value": { + "arguments": [ + { + "name": "x", + "nodeType": "YulIdentifier", + "src": "11668:1:1" + } + ], + "functionName": { + "name": "cleanup_t_uint256", + "nodeType": "YulIdentifier", + "src": "11650:17:1" + }, + "nodeType": "YulFunctionCall", + "src": "11650:20:1" + }, + "variableNames": [ + { + "name": "x", + "nodeType": "YulIdentifier", + "src": "11645:1:1" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "11679:25:1", + "value": { + "arguments": [ + { + "name": "y", + "nodeType": "YulIdentifier", + "src": "11702:1:1" + } + ], + "functionName": { + "name": "cleanup_t_uint256", + "nodeType": "YulIdentifier", + "src": "11684:17:1" + }, + "nodeType": "YulFunctionCall", + "src": "11684:20:1" + }, + "variableNames": [ + { + "name": "y", + "nodeType": "YulIdentifier", + "src": "11679:1:1" + } + ] + }, + { + "body": { + "nodeType": "YulBlock", + "src": "11726:22:1", + "statements": [ + { + "expression": { + "arguments": [], + "functionName": { + "name": "panic_error_0x11", + "nodeType": "YulIdentifier", + "src": "11728:16:1" + }, + "nodeType": "YulFunctionCall", + "src": "11728:18:1" + }, + "nodeType": "YulExpressionStatement", + "src": "11728:18:1" + } + ] + }, + "condition": { + "arguments": [ + { + "name": "x", + "nodeType": "YulIdentifier", + "src": "11720:1:1" + }, + { + "name": "y", + "nodeType": "YulIdentifier", + "src": "11723:1:1" + } + ], + "functionName": { + "name": "lt", + "nodeType": "YulIdentifier", + "src": "11717:2:1" + }, + "nodeType": "YulFunctionCall", + "src": "11717:8:1" + }, + "nodeType": "YulIf", + "src": "11714:34:1" + }, + { + "nodeType": "YulAssignment", + "src": "11758:17:1", + "value": { + "arguments": [ + { + "name": "x", + "nodeType": "YulIdentifier", + "src": "11770:1:1" + }, + { + "name": "y", + "nodeType": "YulIdentifier", + "src": "11773:1:1" + } + ], + "functionName": { + "name": "sub", + "nodeType": "YulIdentifier", + "src": "11766:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "11766:9:1" + }, + "variableNames": [ + { + "name": "diff", + "nodeType": "YulIdentifier", + "src": "11758:4:1" + } + ] + } + ] + }, + "name": "checked_sub_t_uint256", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "x", + "nodeType": "YulTypedName", + "src": "11621:1:1", + "type": "" + }, + { + "name": "y", + "nodeType": "YulTypedName", + "src": "11624:1:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "diff", + "nodeType": "YulTypedName", + "src": "11630:4:1", + "type": "" + } + ], + "src": "11590:191:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "11815:152:1", + "statements": [ + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "11832:1:1", + "type": "", + "value": "0" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "11835:77:1", + "type": "", + "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "11825:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "11825:88:1" + }, + "nodeType": "YulExpressionStatement", + "src": "11825:88:1" + }, + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "11929:1:1", + "type": "", + "value": "4" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "11932:4:1", + "type": "", + "value": "0x32" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "11922:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "11922:15:1" + }, + "nodeType": "YulExpressionStatement", + "src": "11922:15:1" + }, + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "11953:1:1", + "type": "", + "value": "0" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "11956:4:1", + "type": "", + "value": "0x24" + } + ], + "functionName": { + "name": "revert", + "nodeType": "YulIdentifier", + "src": "11946:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "11946:15:1" + }, + "nodeType": "YulExpressionStatement", + "src": "11946:15:1" + } + ] + }, + "name": "panic_error_0x32", + "nodeType": "YulFunctionDefinition", + "src": "11787:180:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "12001:152:1", + "statements": [ + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "12018:1:1", + "type": "", + "value": "0" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "12021:77:1", + "type": "", + "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "12011:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "12011:88:1" + }, + "nodeType": "YulExpressionStatement", + "src": "12011:88:1" + }, + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "12115:1:1", + "type": "", + "value": "4" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "12118:4:1", + "type": "", + "value": "0x22" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "12108:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "12108:15:1" + }, + "nodeType": "YulExpressionStatement", + "src": "12108:15:1" + }, + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "12139:1:1", + "type": "", + "value": "0" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "12142:4:1", + "type": "", + "value": "0x24" + } + ], + "functionName": { + "name": "revert", + "nodeType": "YulIdentifier", + "src": "12132:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "12132:15:1" + }, + "nodeType": "YulExpressionStatement", + "src": "12132:15:1" + } + ] + }, + "name": "panic_error_0x22", + "nodeType": "YulFunctionDefinition", + "src": "11973:180:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "12210:269:1", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "12220:22:1", + "value": { + "arguments": [ + { + "name": "data", + "nodeType": "YulIdentifier", + "src": "12234:4:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "12240:1:1", + "type": "", + "value": "2" + } + ], + "functionName": { + "name": "div", + "nodeType": "YulIdentifier", + "src": "12230:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "12230:12:1" + }, + "variableNames": [ + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "12220:6:1" + } + ] + }, + { + "nodeType": "YulVariableDeclaration", + "src": "12251:38:1", + "value": { + "arguments": [ + { + "name": "data", + "nodeType": "YulIdentifier", + "src": "12281:4:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "12287:1:1", + "type": "", + "value": "1" + } + ], + "functionName": { + "name": "and", + "nodeType": "YulIdentifier", + "src": "12277:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "12277:12:1" + }, + "variables": [ + { + "name": "outOfPlaceEncoding", + "nodeType": "YulTypedName", + "src": "12255:18:1", + "type": "" + } + ] + }, + { + "body": { + "nodeType": "YulBlock", + "src": "12328:51:1", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "12342:27:1", + "value": { + "arguments": [ + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "12356:6:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "12364:4:1", + "type": "", + "value": "0x7f" + } + ], + "functionName": { + "name": "and", + "nodeType": "YulIdentifier", + "src": "12352:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "12352:17:1" + }, + "variableNames": [ + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "12342:6:1" + } + ] + } + ] + }, + "condition": { + "arguments": [ + { + "name": "outOfPlaceEncoding", + "nodeType": "YulIdentifier", + "src": "12308:18:1" + } + ], + "functionName": { + "name": "iszero", + "nodeType": "YulIdentifier", + "src": "12301:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "12301:26:1" + }, + "nodeType": "YulIf", + "src": "12298:81:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "12431:42:1", + "statements": [ + { + "expression": { + "arguments": [], + "functionName": { + "name": "panic_error_0x22", + "nodeType": "YulIdentifier", + "src": "12445:16:1" + }, + "nodeType": "YulFunctionCall", + "src": "12445:18:1" + }, + "nodeType": "YulExpressionStatement", + "src": "12445:18:1" + } + ] + }, + "condition": { + "arguments": [ + { + "name": "outOfPlaceEncoding", + "nodeType": "YulIdentifier", + "src": "12395:18:1" + }, + { + "arguments": [ + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "12418:6:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "12426:2:1", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "lt", + "nodeType": "YulIdentifier", + "src": "12415:2:1" + }, + "nodeType": "YulFunctionCall", + "src": "12415:14:1" + } + ], + "functionName": { + "name": "eq", + "nodeType": "YulIdentifier", + "src": "12392:2:1" + }, + "nodeType": "YulFunctionCall", + "src": "12392:38:1" + }, + "nodeType": "YulIf", + "src": "12389:84:1" + } + ] + }, + "name": "extract_byte_array_length", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "data", + "nodeType": "YulTypedName", + "src": "12194:4:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "length", + "nodeType": "YulTypedName", + "src": "12203:6:1", + "type": "" + } + ], + "src": "12159:320:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "12591:54:1", + "statements": [ + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "memPtr", + "nodeType": "YulIdentifier", + "src": "12613:6:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "12621:1:1", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "12609:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "12609:14:1" + }, + { + "hexValue": "4f6e6c79206f776e6572", + "kind": "string", + "nodeType": "YulLiteral", + "src": "12625:12:1", + "type": "", + "value": "Only owner" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "12602:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "12602:36:1" + }, + "nodeType": "YulExpressionStatement", + "src": "12602:36:1" + } + ] + }, + "name": "store_literal_in_memory_17d9f114efaa93d67eedad749dd7fd16a6895ff93e28b7a30c667a069f2ed42d", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "memPtr", + "nodeType": "YulTypedName", + "src": "12583:6:1", + "type": "" + } + ], + "src": "12485:160:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "12797:220:1", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "12807:74:1", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "12873:3:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "12878:2:1", + "type": "", + "value": "10" + } + ], + "functionName": { + "name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "12814:58:1" + }, + "nodeType": "YulFunctionCall", + "src": "12814:67:1" + }, + "variableNames": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "12807:3:1" + } + ] + }, + { + "expression": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "12979:3:1" + } + ], + "functionName": { + "name": "store_literal_in_memory_17d9f114efaa93d67eedad749dd7fd16a6895ff93e28b7a30c667a069f2ed42d", + "nodeType": "YulIdentifier", + "src": "12890:88:1" + }, + "nodeType": "YulFunctionCall", + "src": "12890:93:1" + }, + "nodeType": "YulExpressionStatement", + "src": "12890:93:1" + }, + { + "nodeType": "YulAssignment", + "src": "12992:19:1", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "13003:3:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "13008:2:1", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "12999:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "12999:12:1" + }, + "variableNames": [ + { + "name": "end", + "nodeType": "YulIdentifier", + "src": "12992:3:1" + } + ] + } + ] + }, + "name": "abi_encode_t_stringliteral_17d9f114efaa93d67eedad749dd7fd16a6895ff93e28b7a30c667a069f2ed42d_to_t_string_memory_ptr_fromStack", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "pos", + "nodeType": "YulTypedName", + "src": "12785:3:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "end", + "nodeType": "YulTypedName", + "src": "12793:3:1", + "type": "" + } + ], + "src": "12651:366:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "13194:248:1", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "13204:26:1", + "value": { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "13216:9:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "13227:2:1", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "13212:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "13212:18:1" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "13204:4:1" + } + ] + }, + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "13251:9:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "13262:1:1", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "13247:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "13247:17:1" + }, + { + "arguments": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "13270:4:1" + }, + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "13276:9:1" + } + ], + "functionName": { + "name": "sub", + "nodeType": "YulIdentifier", + "src": "13266:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "13266:20:1" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "13240:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "13240:47:1" + }, + "nodeType": "YulExpressionStatement", + "src": "13240:47:1" + }, + { + "nodeType": "YulAssignment", + "src": "13296:139:1", + "value": { + "arguments": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "13430:4:1" + } + ], + "functionName": { + "name": "abi_encode_t_stringliteral_17d9f114efaa93d67eedad749dd7fd16a6895ff93e28b7a30c667a069f2ed42d_to_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "13304:124:1" + }, + "nodeType": "YulFunctionCall", + "src": "13304:131:1" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "13296:4:1" + } + ] + } + ] + }, + "name": "abi_encode_tuple_t_stringliteral_17d9f114efaa93d67eedad749dd7fd16a6895ff93e28b7a30c667a069f2ed42d__to_t_string_memory_ptr__fromStack_reversed", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "13174:9:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "tail", + "nodeType": "YulTypedName", + "src": "13189:4:1", + "type": "" + } + ], + "src": "13023:419:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "13502:87:1", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "13512:11:1", + "value": { + "name": "ptr", + "nodeType": "YulIdentifier", + "src": "13520:3:1" + }, + "variableNames": [ + { + "name": "data", + "nodeType": "YulIdentifier", + "src": "13512:4:1" + } + ] + }, + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "13540:1:1", + "type": "", + "value": "0" + }, + { + "name": "ptr", + "nodeType": "YulIdentifier", + "src": "13543:3:1" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "13533:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "13533:14:1" + }, + "nodeType": "YulExpressionStatement", + "src": "13533:14:1" + }, + { + "nodeType": "YulAssignment", + "src": "13556:26:1", + "value": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "13574:1:1", + "type": "", + "value": "0" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "13577:4:1", + "type": "", + "value": "0x20" + } + ], + "functionName": { + "name": "keccak256", + "nodeType": "YulIdentifier", + "src": "13564:9:1" + }, + "nodeType": "YulFunctionCall", + "src": "13564:18:1" + }, + "variableNames": [ + { + "name": "data", + "nodeType": "YulIdentifier", + "src": "13556:4:1" + } + ] + } + ] + }, + "name": "array_dataslot_t_string_storage", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "ptr", + "nodeType": "YulTypedName", + "src": "13489:3:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "data", + "nodeType": "YulTypedName", + "src": "13497:4:1", + "type": "" + } + ], + "src": "13448:141:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "13708:713:1", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "13718:29:1", + "value": { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "13741:5:1" + } + ], + "functionName": { + "name": "sload", + "nodeType": "YulIdentifier", + "src": "13735:5:1" + }, + "nodeType": "YulFunctionCall", + "src": "13735:12:1" + }, + "variables": [ + { + "name": "slotValue", + "nodeType": "YulTypedName", + "src": "13722:9:1", + "type": "" + } + ] + }, + { + "nodeType": "YulVariableDeclaration", + "src": "13756:50:1", + "value": { + "arguments": [ + { + "name": "slotValue", + "nodeType": "YulIdentifier", + "src": "13796:9:1" + } + ], + "functionName": { + "name": "extract_byte_array_length", + "nodeType": "YulIdentifier", + "src": "13770:25:1" + }, + "nodeType": "YulFunctionCall", + "src": "13770:36:1" + }, + "variables": [ + { + "name": "length", + "nodeType": "YulTypedName", + "src": "13760:6:1", + "type": "" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "13815:78:1", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "13881:3:1" + }, + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "13886:6:1" + } + ], + "functionName": { + "name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "13822:58:1" + }, + "nodeType": "YulFunctionCall", + "src": "13822:71:1" + }, + "variableNames": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "13815:3:1" + } + ] + }, + { + "cases": [ + { + "body": { + "nodeType": "YulBlock", + "src": "13942:128:1", + "statements": [ + { + "expression": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "13995:3:1" + }, + { + "arguments": [ + { + "name": "slotValue", + "nodeType": "YulIdentifier", + "src": "14004:9:1" + }, + { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "14019:4:1", + "type": "", + "value": "0xff" + } + ], + "functionName": { + "name": "not", + "nodeType": "YulIdentifier", + "src": "14015:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "14015:9:1" + } + ], + "functionName": { + "name": "and", + "nodeType": "YulIdentifier", + "src": "14000:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "14000:25:1" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "13988:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "13988:38:1" + }, + "nodeType": "YulExpressionStatement", + "src": "13988:38:1" + }, + { + "nodeType": "YulAssignment", + "src": "14039:21:1", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "14050:3:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "14055:4:1", + "type": "", + "value": "0x20" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "14046:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "14046:14:1" + }, + "variableNames": [ + { + "name": "ret", + "nodeType": "YulIdentifier", + "src": "14039:3:1" + } + ] + } + ] + }, + "nodeType": "YulCase", + "src": "13935:135:1", + "value": { + "kind": "number", + "nodeType": "YulLiteral", + "src": "13940:1:1", + "type": "", + "value": "0" + } + }, + { + "body": { + "nodeType": "YulBlock", + "src": "14086:329:1", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "14131:53:1", + "value": { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "14178:5:1" + } + ], + "functionName": { + "name": "array_dataslot_t_string_storage", + "nodeType": "YulIdentifier", + "src": "14146:31:1" + }, + "nodeType": "YulFunctionCall", + "src": "14146:38:1" + }, + "variables": [ + { + "name": "dataPos", + "nodeType": "YulTypedName", + "src": "14135:7:1", + "type": "" + } + ] + }, + { + "nodeType": "YulVariableDeclaration", + "src": "14197:10:1", + "value": { + "kind": "number", + "nodeType": "YulLiteral", + "src": "14206:1:1", + "type": "", + "value": "0" + }, + "variables": [ + { + "name": "i", + "nodeType": "YulTypedName", + "src": "14201:1:1", + "type": "" + } + ] + }, + { + "body": { + "nodeType": "YulBlock", + "src": "14264:110:1", + "statements": [ + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "14293:3:1" + }, + { + "name": "i", + "nodeType": "YulIdentifier", + "src": "14298:1:1" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "14289:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "14289:11:1" + }, + { + "arguments": [ + { + "name": "dataPos", + "nodeType": "YulIdentifier", + "src": "14308:7:1" + } + ], + "functionName": { + "name": "sload", + "nodeType": "YulIdentifier", + "src": "14302:5:1" + }, + "nodeType": "YulFunctionCall", + "src": "14302:14:1" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "14282:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "14282:35:1" + }, + "nodeType": "YulExpressionStatement", + "src": "14282:35:1" + }, + { + "nodeType": "YulAssignment", + "src": "14334:26:1", + "value": { + "arguments": [ + { + "name": "dataPos", + "nodeType": "YulIdentifier", + "src": "14349:7:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "14358:1:1", + "type": "", + "value": "1" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "14345:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "14345:15:1" + }, + "variableNames": [ + { + "name": "dataPos", + "nodeType": "YulIdentifier", + "src": "14334:7:1" + } + ] + } + ] + }, + "condition": { + "arguments": [ + { + "name": "i", + "nodeType": "YulIdentifier", + "src": "14231:1:1" + }, + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "14234:6:1" + } + ], + "functionName": { + "name": "lt", + "nodeType": "YulIdentifier", + "src": "14228:2:1" + }, + "nodeType": "YulFunctionCall", + "src": "14228:13:1" + }, + "nodeType": "YulForLoop", + "post": { + "nodeType": "YulBlock", + "src": "14242:21:1", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "14244:17:1", + "value": { + "arguments": [ + { + "name": "i", + "nodeType": "YulIdentifier", + "src": "14253:1:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "14256:4:1", + "type": "", + "value": "0x20" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "14249:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "14249:12:1" + }, + "variableNames": [ + { + "name": "i", + "nodeType": "YulIdentifier", + "src": "14244:1:1" + } + ] + } + ] + }, + "pre": { + "nodeType": "YulBlock", + "src": "14224:3:1", + "statements": [] + }, + "src": "14220:154:1" + }, + { + "nodeType": "YulAssignment", + "src": "14387:18:1", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "14398:3:1" + }, + { + "name": "i", + "nodeType": "YulIdentifier", + "src": "14403:1:1" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "14394:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "14394:11:1" + }, + "variableNames": [ + { + "name": "ret", + "nodeType": "YulIdentifier", + "src": "14387:3:1" + } + ] + } + ] + }, + "nodeType": "YulCase", + "src": "14079:336:1", + "value": { + "kind": "number", + "nodeType": "YulLiteral", + "src": "14084:1:1", + "type": "", + "value": "1" + } + } + ], + "expression": { + "arguments": [ + { + "name": "slotValue", + "nodeType": "YulIdentifier", + "src": "13913:9:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "13924:1:1", + "type": "", + "value": "1" + } + ], + "functionName": { + "name": "and", + "nodeType": "YulIdentifier", + "src": "13909:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "13909:17:1" + }, + "nodeType": "YulSwitch", + "src": "13902:513:1" + } + ] + }, + "name": "abi_encode_t_string_storage_to_t_string_memory_ptr_fromStack", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "13689:5:1", + "type": "" + }, + { + "name": "pos", + "nodeType": "YulTypedName", + "src": "13696:3:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "ret", + "nodeType": "YulTypedName", + "src": "13704:3:1", + "type": "" + } + ], + "src": "13619:802:1" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "14590:345:1", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "14600:26:1", + "value": { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "14612:9:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "14623:2:1", + "type": "", + "value": "64" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "14608:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "14608:18:1" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "14600:4:1" + } + ] + }, + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "14647:9:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "14658:1:1", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "14643:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "14643:17:1" + }, + { + "arguments": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "14666:4:1" + }, + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "14672:9:1" + } + ], + "functionName": { + "name": "sub", + "nodeType": "YulIdentifier", + "src": "14662:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "14662:20:1" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "14636:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "14636:47:1" + }, + "nodeType": "YulExpressionStatement", + "src": "14636:47:1" + }, + { + "nodeType": "YulAssignment", + "src": "14692:83:1", + "value": { + "arguments": [ + { + "name": "value0", + "nodeType": "YulIdentifier", + "src": "14761:6:1" + }, + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "14770:4:1" + } + ], + "functionName": { + "name": "abi_encode_t_string_storage_to_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "14700:60:1" + }, + "nodeType": "YulFunctionCall", + "src": "14700:75:1" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "14692:4:1" + } + ] + }, + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "14796:9:1" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "14807:2:1", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "14792:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "14792:18:1" + }, + { + "arguments": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "14816:4:1" + }, + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "14822:9:1" + } + ], + "functionName": { + "name": "sub", + "nodeType": "YulIdentifier", + "src": "14812:3:1" + }, + "nodeType": "YulFunctionCall", + "src": "14812:20:1" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "14785:6:1" + }, + "nodeType": "YulFunctionCall", + "src": "14785:48:1" + }, + "nodeType": "YulExpressionStatement", + "src": "14785:48:1" + }, + { + "nodeType": "YulAssignment", + "src": "14842:86:1", + "value": { + "arguments": [ + { + "name": "value1", + "nodeType": "YulIdentifier", + "src": "14914:6:1" + }, + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "14923:4:1" + } + ], + "functionName": { + "name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "14850:63:1" + }, + "nodeType": "YulFunctionCall", + "src": "14850:78:1" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "14842:4:1" + } + ] + } + ] + }, + "name": "abi_encode_tuple_t_string_storage_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__fromStack_reversed", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "14554:9:1", + "type": "" + }, + { + "name": "value1", + "nodeType": "YulTypedName", + "src": "14566:6:1", + "type": "" + }, + { + "name": "value0", + "nodeType": "YulTypedName", + "src": "14574:6:1", + "type": "" + } + ], + "returnVariables": [ + { + "name": "tail", + "nodeType": "YulTypedName", + "src": "14585:4:1", + "type": "" + } + ], + "src": "14427:508:1" + } + ] + }, + "contents": "{\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\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 round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\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 allocate_memory(size) -> memPtr {\n memPtr := allocate_unbounded()\n finalize_allocation(memPtr, size)\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 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 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_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 cleanup_t_uint256(value) -> cleaned {\n cleaned := 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_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 validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\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_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 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 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 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_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value0, tail)\n\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_address(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address(value)\n }\n\n function abi_decode_tuple_t_address(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_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function cleanup_t_bool(value) -> cleaned {\n cleaned := iszero(iszero(value))\n }\n\n function abi_encode_t_bool_to_t_bool_fromStack(value, pos) {\n mstore(pos, cleanup_t_bool(value))\n }\n\n function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_bool_to_t_bool_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_decode_tuple_t_uint256t_string_memory_ptr(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 := calldataload(add(headStart, 32))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value1 := abi_decode_t_string_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n }\n\n function array_length_t_array$_t_string_memory_ptr_$dyn_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_array$_t_string_memory_ptr_$dyn_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function array_dataslot_t_array$_t_string_memory_ptr_$dyn_memory_ptr(ptr) -> data {\n data := ptr\n\n data := add(ptr, 0x20)\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr(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_encodeUpdatedPos_t_string_memory_ptr_to_t_string_memory_ptr(value0, pos) -> updatedPos {\n updatedPos := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr(value0, pos)\n }\n\n function array_nextElement_t_array$_t_string_memory_ptr_$dyn_memory_ptr(ptr) -> next {\n next := add(ptr, 0x20)\n }\n\n // string[] -> string[]\n function abi_encode_t_array$_t_string_memory_ptr_$dyn_memory_ptr_to_t_array$_t_string_memory_ptr_$dyn_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_array$_t_string_memory_ptr_$dyn_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_array$_t_string_memory_ptr_$dyn_memory_ptr_fromStack(pos, length)\n let headStart := pos\n let tail := add(pos, mul(length, 0x20))\n let baseRef := array_dataslot_t_array$_t_string_memory_ptr_$dyn_memory_ptr(value)\n let srcPtr := baseRef\n for { let i := 0 } lt(i, length) { i := add(i, 1) }\n {\n mstore(pos, sub(tail, headStart))\n let elementValue0 := mload(srcPtr)\n tail := abi_encodeUpdatedPos_t_string_memory_ptr_to_t_string_memory_ptr(elementValue0, tail)\n srcPtr := array_nextElement_t_array$_t_string_memory_ptr_$dyn_memory_ptr(srcPtr)\n pos := add(pos, 0x20)\n }\n pos := tail\n end := pos\n }\n\n function abi_encode_tuple_t_array$_t_string_memory_ptr_$dyn_memory_ptr__to_t_array$_t_string_memory_ptr_$dyn_memory_ptr__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_array$_t_string_memory_ptr_$dyn_memory_ptr_to_t_array$_t_string_memory_ptr_$dyn_memory_ptr_fromStack(value0, tail)\n\n }\n\n function store_literal_in_memory_e456a8df821d58a81d00df5ff2bc8653f1a52a4771d0bdf36a4aa3f1bac56f7b(memPtr) {\n\n mstore(add(memPtr, 0), \"Only whitelist\")\n\n }\n\n function abi_encode_t_stringliteral_e456a8df821d58a81d00df5ff2bc8653f1a52a4771d0bdf36a4aa3f1bac56f7b_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 14)\n store_literal_in_memory_e456a8df821d58a81d00df5ff2bc8653f1a52a4771d0bdf36a4aa3f1bac56f7b(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_e456a8df821d58a81d00df5ff2bc8653f1a52a4771d0bdf36a4aa3f1bac56f7b__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_e456a8df821d58a81d00df5ff2bc8653f1a52a4771d0bdf36a4aa3f1bac56f7b_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function checked_sub_t_uint256(x, y) -> diff {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n if lt(x, y) { panic_error_0x11() }\n\n diff := sub(x, y)\n }\n\n function panic_error_0x32() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x32)\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 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 store_literal_in_memory_17d9f114efaa93d67eedad749dd7fd16a6895ff93e28b7a30c667a069f2ed42d(memPtr) {\n\n mstore(add(memPtr, 0), \"Only owner\")\n\n }\n\n function abi_encode_t_stringliteral_17d9f114efaa93d67eedad749dd7fd16a6895ff93e28b7a30c667a069f2ed42d_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 10)\n store_literal_in_memory_17d9f114efaa93d67eedad749dd7fd16a6895ff93e28b7a30c667a069f2ed42d(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_17d9f114efaa93d67eedad749dd7fd16a6895ff93e28b7a30c667a069f2ed42d__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_17d9f114efaa93d67eedad749dd7fd16a6895ff93e28b7a30c667a069f2ed42d_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function array_dataslot_t_string_storage(ptr) -> data {\n data := ptr\n\n mstore(0, ptr)\n data := keccak256(0, 0x20)\n\n }\n\n // string -> string\n function abi_encode_t_string_storage_to_t_string_memory_ptr_fromStack(value, pos) -> ret {\n let slotValue := sload(value)\n let length := extract_byte_array_length(slotValue)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length)\n switch and(slotValue, 1)\n case 0 {\n // short byte array\n mstore(pos, and(slotValue, not(0xff)))\n ret := add(pos, 0x20)\n }\n case 1 {\n // long byte array\n let dataPos := array_dataslot_t_string_storage(value)\n let i := 0\n for { } lt(i, length) { i := add(i, 0x20) } {\n mstore(add(pos, i), sload(dataPos))\n dataPos := add(dataPos, 1)\n }\n ret := add(pos, i)\n }\n }\n\n function abi_encode_tuple_t_string_storage_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__fromStack_reversed(headStart , value1, value0) -> tail {\n tail := add(headStart, 64)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_string_storage_to_t_string_memory_ptr_fromStack(value0, tail)\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}\n", + "id": 1, + "language": "Yul", + "name": "#utility.yul" + } + ], + "immutableReferences": {}, + "linkReferences": {}, + "object": "608060405234801561001057600080fd5b50600436106100885760003560e01c80638da5cb5b1161005b5780638da5cb5b14610139578063b682000214610157578063ca6d56dc14610173578063d03d58491461018f57610088565b80630bf803e41461008d5780631a3cd59a146100bd5780631f81595d146100ed578063372c12b114610109575b600080fd5b6100a760048036038101906100a29190610959565b6101ad565b6040516100b491906109bb565b60405180910390f35b6100d760048036038101906100d29190610a02565b610297565b6040516100e49190610ab7565b60405180910390f35b61010760048036038101906101029190610b37565b610347565b005b610123600480360381019061011e9190610b37565b610432565b6040516101309190610b7f565b60405180910390f35b610141610452565b60405161014e9190610ba9565b60405180910390f35b610171600480360381019061016c9190610bc4565b610478565b005b61018d60048036038101906101889190610b37565b610598565b005b610197610683565b6040516101a49190610d2c565b60405180910390f35b600060011515600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610242576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161023990610d9a565b60405180910390fd5b60008290806001815401808255809150506001900390600052602060002001600090919091909150908051906020019061027d92919061075c565b5060016000805490506102909190610de9565b9050919050565b6060600082815481106102ad576102ac610e1d565b5b9060005260206000200180546102c290610e7b565b80601f01602080910402602001604051908101604052809291908181526020018280546102ee90610e7b565b801561033b5780601f106103105761010080835404028352916020019161033b565b820191906000526020600020905b81548152906001019060200180831161031e57829003601f168201915b50505050509050919050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146103d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ce90610ef8565b60405180910390fd5b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60026020528060005260406000206000915054906101000a900460ff1681565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60011515600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151461050b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161050290610d9a565b60405180910390fd5b7f305058d54db6daf26994cd687b168a24cdd9a7201462f1659782c4e429987992600083815481106105405761053f610e1d565b5b9060005260206000200182604051610559929190610fad565b60405180910390a1806000838154811061057657610575610e1d565b5b90600052602060002001908051906020019061059392919061075c565b505050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610628576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161061f90610ef8565b60405180910390fd5b6001600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60606000805480602002602001604051908101604052809291908181526020016000905b828210156107535783829060005260206000200180546106c690610e7b565b80601f01602080910402602001604051908101604052809291908181526020018280546106f290610e7b565b801561073f5780601f106107145761010080835404028352916020019161073f565b820191906000526020600020905b81548152906001019060200180831161072257829003601f168201915b5050505050815260200190600101906106a7565b50505050905090565b82805461076890610e7b565b90600052602060002090601f01602090048101928261078a57600085556107d1565b82601f106107a357805160ff19168380011785556107d1565b828001600101855582156107d1579182015b828111156107d05782518255916020019190600101906107b5565b5b5090506107de91906107e2565b5090565b5b808211156107fb5760008160009055506001016107e3565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6108668261081d565b810181811067ffffffffffffffff821117156108855761088461082e565b5b80604052505050565b60006108986107ff565b90506108a4828261085d565b919050565b600067ffffffffffffffff8211156108c4576108c361082e565b5b6108cd8261081d565b9050602081019050919050565b82818337600083830152505050565b60006108fc6108f7846108a9565b61088e565b90508281526020810184848401111561091857610917610818565b5b6109238482856108da565b509392505050565b600082601f8301126109405761093f610813565b5b81356109508482602086016108e9565b91505092915050565b60006020828403121561096f5761096e610809565b5b600082013567ffffffffffffffff81111561098d5761098c61080e565b5b6109998482850161092b565b91505092915050565b6000819050919050565b6109b5816109a2565b82525050565b60006020820190506109d060008301846109ac565b92915050565b6109df816109a2565b81146109ea57600080fd5b50565b6000813590506109fc816109d6565b92915050565b600060208284031215610a1857610a17610809565b5b6000610a26848285016109ed565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610a69578082015181840152602081019050610a4e565b83811115610a78576000848401525b50505050565b6000610a8982610a2f565b610a938185610a3a565b9350610aa3818560208601610a4b565b610aac8161081d565b840191505092915050565b60006020820190508181036000830152610ad18184610a7e565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610b0482610ad9565b9050919050565b610b1481610af9565b8114610b1f57600080fd5b50565b600081359050610b3181610b0b565b92915050565b600060208284031215610b4d57610b4c610809565b5b6000610b5b84828501610b22565b91505092915050565b60008115159050919050565b610b7981610b64565b82525050565b6000602082019050610b946000830184610b70565b92915050565b610ba381610af9565b82525050565b6000602082019050610bbe6000830184610b9a565b92915050565b60008060408385031215610bdb57610bda610809565b5b6000610be9858286016109ed565b925050602083013567ffffffffffffffff811115610c0a57610c0961080e565b5b610c168582860161092b565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b600082825260208201905092915050565b6000610c6882610a2f565b610c728185610c4c565b9350610c82818560208601610a4b565b610c8b8161081d565b840191505092915050565b6000610ca28383610c5d565b905092915050565b6000602082019050919050565b6000610cc282610c20565b610ccc8185610c2b565b935083602082028501610cde85610c3c565b8060005b85811015610d1a5784840389528151610cfb8582610c96565b9450610d0683610caa565b925060208a01995050600181019050610ce2565b50829750879550505050505092915050565b60006020820190508181036000830152610d468184610cb7565b905092915050565b7f4f6e6c792077686974656c697374000000000000000000000000000000000000600082015250565b6000610d84600e83610a3a565b9150610d8f82610d4e565b602082019050919050565b60006020820190508181036000830152610db381610d77565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000610df4826109a2565b9150610dff836109a2565b925082821015610e1257610e11610dba565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680610e9357607f821691505b602082108103610ea657610ea5610e4c565b5b50919050565b7f4f6e6c79206f776e657200000000000000000000000000000000000000000000600082015250565b6000610ee2600a83610a3a565b9150610eed82610eac565b602082019050919050565b60006020820190508181036000830152610f1181610ed5565b9050919050565b60008190508160005260206000209050919050565b60008154610f3a81610e7b565b610f448186610a3a565b94506001821660008114610f5f5760018114610f7157610fa4565b60ff1983168652602086019350610fa4565b610f7a85610f18565b60005b83811015610f9c57815481890152600182019150602081019050610f7d565b808801955050505b50505092915050565b60006040820190508181036000830152610fc78185610f2d565b90508181036020830152610fdb8184610a7e565b9050939250505056fea2646970667358221220d51a8f0aa3553930307806760fc28443ee71d8d43b62c5234f91814ae38560c964736f6c634300080d0033", + "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x88 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x8DA5CB5B GT PUSH2 0x5B JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x139 JUMPI DUP1 PUSH4 0xB6820002 EQ PUSH2 0x157 JUMPI DUP1 PUSH4 0xCA6D56DC EQ PUSH2 0x173 JUMPI DUP1 PUSH4 0xD03D5849 EQ PUSH2 0x18F JUMPI PUSH2 0x88 JUMP JUMPDEST DUP1 PUSH4 0xBF803E4 EQ PUSH2 0x8D JUMPI DUP1 PUSH4 0x1A3CD59A EQ PUSH2 0xBD JUMPI DUP1 PUSH4 0x1F81595D EQ PUSH2 0xED JUMPI DUP1 PUSH4 0x372C12B1 EQ PUSH2 0x109 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xA7 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xA2 SWAP2 SWAP1 PUSH2 0x959 JUMP JUMPDEST PUSH2 0x1AD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xB4 SWAP2 SWAP1 PUSH2 0x9BB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xD7 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xD2 SWAP2 SWAP1 PUSH2 0xA02 JUMP JUMPDEST PUSH2 0x297 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xE4 SWAP2 SWAP1 PUSH2 0xAB7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x107 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x102 SWAP2 SWAP1 PUSH2 0xB37 JUMP JUMPDEST PUSH2 0x347 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x123 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x11E SWAP2 SWAP1 PUSH2 0xB37 JUMP JUMPDEST PUSH2 0x432 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x130 SWAP2 SWAP1 PUSH2 0xB7F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x141 PUSH2 0x452 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x14E SWAP2 SWAP1 PUSH2 0xBA9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x171 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x16C SWAP2 SWAP1 PUSH2 0xBC4 JUMP JUMPDEST PUSH2 0x478 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x18D PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x188 SWAP2 SWAP1 PUSH2 0xB37 JUMP JUMPDEST PUSH2 0x598 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x197 PUSH2 0x683 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1A4 SWAP2 SWAP1 PUSH2 0xD2C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 PUSH1 0x1 ISZERO ISZERO PUSH1 0x2 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO ISZERO EQ PUSH2 0x242 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x239 SWAP1 PUSH2 0xD9A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 DUP3 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 POP SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x27D SWAP3 SWAP2 SWAP1 PUSH2 0x75C JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x0 DUP1 SLOAD SWAP1 POP PUSH2 0x290 SWAP2 SWAP1 PUSH2 0xDE9 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0x2AD JUMPI PUSH2 0x2AC PUSH2 0xE1D JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD DUP1 SLOAD PUSH2 0x2C2 SWAP1 PUSH2 0xE7B 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 0x2EE SWAP1 PUSH2 0xE7B JUMP JUMPDEST DUP1 ISZERO PUSH2 0x33B JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x310 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x33B 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 0x31E JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x3D7 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x3CE SWAP1 PUSH2 0xEF8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x2 PUSH1 0x20 MSTORE DUP1 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP2 POP SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x1 ISZERO ISZERO PUSH1 0x2 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO ISZERO EQ PUSH2 0x50B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x502 SWAP1 PUSH2 0xD9A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH32 0x305058D54DB6DAF26994CD687B168A24CDD9A7201462F1659782C4E429987992 PUSH1 0x0 DUP4 DUP2 SLOAD DUP2 LT PUSH2 0x540 JUMPI PUSH2 0x53F PUSH2 0xE1D JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD DUP3 PUSH1 0x40 MLOAD PUSH2 0x559 SWAP3 SWAP2 SWAP1 PUSH2 0xFAD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 DUP1 PUSH1 0x0 DUP4 DUP2 SLOAD DUP2 LT PUSH2 0x576 JUMPI PUSH2 0x575 PUSH2 0xE1D JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x593 SWAP3 SWAP2 SWAP1 PUSH2 0x75C JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x628 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x61F SWAP1 PUSH2 0xEF8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x2 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP1 SLOAD DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 SWAP1 JUMPDEST DUP3 DUP3 LT ISZERO PUSH2 0x753 JUMPI DUP4 DUP3 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD DUP1 SLOAD PUSH2 0x6C6 SWAP1 PUSH2 0xE7B 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 0x6F2 SWAP1 PUSH2 0xE7B JUMP JUMPDEST DUP1 ISZERO PUSH2 0x73F JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x714 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x73F 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 0x722 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x6A7 JUMP JUMPDEST POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH2 0x768 SWAP1 PUSH2 0xE7B JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0x78A JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0x7D1 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0x7A3 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0x7D1 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0x7D1 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x7D0 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x7B5 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x7DE SWAP2 SWAP1 PUSH2 0x7E2 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x7FB JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x7E3 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP 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 PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x866 DUP3 PUSH2 0x81D JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x885 JUMPI PUSH2 0x884 PUSH2 0x82E JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x898 PUSH2 0x7FF JUMP JUMPDEST SWAP1 POP PUSH2 0x8A4 DUP3 DUP3 PUSH2 0x85D JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x8C4 JUMPI PUSH2 0x8C3 PUSH2 0x82E JUMP JUMPDEST JUMPDEST PUSH2 0x8CD DUP3 PUSH2 0x81D JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x8FC PUSH2 0x8F7 DUP5 PUSH2 0x8A9 JUMP JUMPDEST PUSH2 0x88E JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x918 JUMPI PUSH2 0x917 PUSH2 0x818 JUMP JUMPDEST JUMPDEST PUSH2 0x923 DUP5 DUP3 DUP6 PUSH2 0x8DA JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x940 JUMPI PUSH2 0x93F PUSH2 0x813 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x950 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x8E9 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x96F JUMPI PUSH2 0x96E PUSH2 0x809 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP3 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x98D JUMPI PUSH2 0x98C PUSH2 0x80E JUMP JUMPDEST JUMPDEST PUSH2 0x999 DUP5 DUP3 DUP6 ADD PUSH2 0x92B JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x9B5 DUP2 PUSH2 0x9A2 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x9D0 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x9AC JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x9DF DUP2 PUSH2 0x9A2 JUMP JUMPDEST DUP2 EQ PUSH2 0x9EA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x9FC DUP2 PUSH2 0x9D6 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xA18 JUMPI PUSH2 0xA17 PUSH2 0x809 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xA26 DUP5 DUP3 DUP6 ADD PUSH2 0x9ED JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP 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 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xA69 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0xA4E JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0xA78 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xA89 DUP3 PUSH2 0xA2F JUMP JUMPDEST PUSH2 0xA93 DUP2 DUP6 PUSH2 0xA3A JUMP JUMPDEST SWAP4 POP PUSH2 0xAA3 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0xA4B JUMP JUMPDEST PUSH2 0xAAC DUP2 PUSH2 0x81D JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xAD1 DUP2 DUP5 PUSH2 0xA7E JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xB04 DUP3 PUSH2 0xAD9 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xB14 DUP2 PUSH2 0xAF9 JUMP JUMPDEST DUP2 EQ PUSH2 0xB1F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xB31 DUP2 PUSH2 0xB0B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xB4D JUMPI PUSH2 0xB4C PUSH2 0x809 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xB5B DUP5 DUP3 DUP6 ADD PUSH2 0xB22 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xB79 DUP2 PUSH2 0xB64 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xB94 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xB70 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xBA3 DUP2 PUSH2 0xAF9 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xBBE PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xB9A JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xBDB JUMPI PUSH2 0xBDA PUSH2 0x809 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xBE9 DUP6 DUP3 DUP7 ADD PUSH2 0x9ED JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xC0A JUMPI PUSH2 0xC09 PUSH2 0x80E JUMP JUMPDEST JUMPDEST PUSH2 0xC16 DUP6 DUP3 DUP7 ADD PUSH2 0x92B JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 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 PUSH1 0x20 DUP3 ADD 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 PUSH2 0xC68 DUP3 PUSH2 0xA2F JUMP JUMPDEST PUSH2 0xC72 DUP2 DUP6 PUSH2 0xC4C JUMP JUMPDEST SWAP4 POP PUSH2 0xC82 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0xA4B JUMP JUMPDEST PUSH2 0xC8B DUP2 PUSH2 0x81D JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xCA2 DUP4 DUP4 PUSH2 0xC5D JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xCC2 DUP3 PUSH2 0xC20 JUMP JUMPDEST PUSH2 0xCCC DUP2 DUP6 PUSH2 0xC2B JUMP JUMPDEST SWAP4 POP DUP4 PUSH1 0x20 DUP3 MUL DUP6 ADD PUSH2 0xCDE DUP6 PUSH2 0xC3C JUMP JUMPDEST DUP1 PUSH1 0x0 JUMPDEST DUP6 DUP2 LT ISZERO PUSH2 0xD1A JUMPI DUP5 DUP5 SUB DUP10 MSTORE DUP2 MLOAD PUSH2 0xCFB DUP6 DUP3 PUSH2 0xC96 JUMP JUMPDEST SWAP5 POP PUSH2 0xD06 DUP4 PUSH2 0xCAA JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP11 ADD SWAP10 POP POP PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0xCE2 JUMP JUMPDEST POP DUP3 SWAP8 POP DUP8 SWAP6 POP POP POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xD46 DUP2 DUP5 PUSH2 0xCB7 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4F6E6C792077686974656C697374000000000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xD84 PUSH1 0xE DUP4 PUSH2 0xA3A JUMP JUMPDEST SWAP2 POP PUSH2 0xD8F DUP3 PUSH2 0xD4E JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xDB3 DUP2 PUSH2 0xD77 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xDF4 DUP3 PUSH2 0x9A2 JUMP JUMPDEST SWAP2 POP PUSH2 0xDFF DUP4 PUSH2 0x9A2 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0xE12 JUMPI PUSH2 0xE11 PUSH2 0xDBA JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 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 PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0xE93 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0xEA6 JUMPI PUSH2 0xEA5 PUSH2 0xE4C JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4F6E6C79206F776E657200000000000000000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xEE2 PUSH1 0xA DUP4 PUSH2 0xA3A JUMP JUMPDEST SWAP2 POP PUSH2 0xEED DUP3 PUSH2 0xEAC JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xF11 DUP2 PUSH2 0xED5 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP DUP2 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SLOAD PUSH2 0xF3A DUP2 PUSH2 0xE7B JUMP JUMPDEST PUSH2 0xF44 DUP2 DUP7 PUSH2 0xA3A JUMP JUMPDEST SWAP5 POP PUSH1 0x1 DUP3 AND PUSH1 0x0 DUP2 EQ PUSH2 0xF5F JUMPI PUSH1 0x1 DUP2 EQ PUSH2 0xF71 JUMPI PUSH2 0xFA4 JUMP JUMPDEST PUSH1 0xFF NOT DUP4 AND DUP7 MSTORE PUSH1 0x20 DUP7 ADD SWAP4 POP PUSH2 0xFA4 JUMP JUMPDEST PUSH2 0xF7A DUP6 PUSH2 0xF18 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xF9C JUMPI DUP2 SLOAD DUP2 DUP10 ADD MSTORE PUSH1 0x1 DUP3 ADD SWAP2 POP PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0xF7D JUMP JUMPDEST DUP1 DUP9 ADD SWAP6 POP POP POP JUMPDEST POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xFC7 DUP2 DUP6 PUSH2 0xF2D JUMP JUMPDEST SWAP1 POP DUP2 DUP2 SUB PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0xFDB DUP2 DUP5 PUSH2 0xA7E JUMP JUMPDEST SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xD5 BYTE DUP16 EXP LOG3 SSTORE CODECOPY ADDRESS ADDRESS PUSH25 0x6760FC28443EE71D8D43B62C5234F91814AE38560C964736F PUSH13 0x634300080D0033000000000000 ", + "sourceMap": "71:1267:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;865:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;587:102;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1233:99;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;157:42;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;130:20;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;698:156;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1124:98;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1027:88;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;865:149;933:10;535:4;510:29;;:9;:21;520:10;510:21;;;;;;;;;;;;;;;;;;;;;;;;;:29;;;502:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;956:4:::1;967:5;956:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;1005:1;992:4;:11;;;;:14;;;;:::i;:::-;984:22;;865:149:::0;;;:::o;587:102::-;637:13;670:4;675:5;670:11;;;;;;;;:::i;:::-;;;;;;;;;663:18;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;587:102;;;:::o;1233:99::-;420:5;;;;;;;;;;;406:19;;:10;:19;;;398:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;1319:5:::1;1298:9;:18;1308:7;1298:18;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;1233:99:::0;:::o;157:42::-;;;;;;;;;;;;;;;;;;;;;;:::o;130:20::-;;;;;;;;;;;;;:::o;698:156::-;535:4;510:29;;:9;:21;520:10;510:21;;;;;;;;;;;;;;;;;;;;;;;;;:29;;;502:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;785:31:::1;797:4;802:5;797:11;;;;;;;;:::i;:::-;;;;;;;;;810:5;785:31;;;;;;;:::i;:::-;;;;;;;;841:5;827:4;832:5;827:11;;;;;;;;:::i;:::-;;;;;;;;;:19;;;;;;;;;;;;:::i;:::-;;698:156:::0;;:::o;1124:98::-;420:5;;;;;;;;;;;406:19;;:10;:19;;;398:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;1210:4:::1;1189:9;:18;1199:7;1189:18;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;1124:98:::0;:::o;1027:88::-;1068:15;1103:4;1096:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1027:88;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:117;443:1;440;433:12;457:117;566:1;563;556:12;580:102;621:6;672:2;668:7;663:2;656:5;652:14;648:28;638:38;;580:102;;;:::o;688:180::-;736:77;733:1;726:88;833:4;830:1;823:15;857:4;854:1;847:15;874:281;957:27;979:4;957:27;:::i;:::-;949:6;945:40;1087:6;1075:10;1072:22;1051:18;1039:10;1036:34;1033:62;1030:88;;;1098:18;;:::i;:::-;1030:88;1138:10;1134:2;1127:22;917:238;874:281;;:::o;1161:129::-;1195:6;1222:20;;:::i;:::-;1212:30;;1251:33;1279:4;1271:6;1251:33;:::i;:::-;1161:129;;;:::o;1296:308::-;1358:4;1448:18;1440:6;1437:30;1434:56;;;1470:18;;:::i;:::-;1434:56;1508:29;1530:6;1508:29;:::i;:::-;1500:37;;1592:4;1586;1582:15;1574:23;;1296:308;;;:::o;1610:154::-;1694:6;1689:3;1684;1671:30;1756:1;1747:6;1742:3;1738:16;1731:27;1610:154;;;:::o;1770:412::-;1848:5;1873:66;1889:49;1931:6;1889:49;:::i;:::-;1873:66;:::i;:::-;1864:75;;1962:6;1955:5;1948:21;2000:4;1993:5;1989:16;2038:3;2029:6;2024:3;2020:16;2017:25;2014:112;;;2045:79;;:::i;:::-;2014:112;2135:41;2169:6;2164:3;2159;2135:41;:::i;:::-;1854:328;1770:412;;;;;:::o;2202:340::-;2258:5;2307:3;2300:4;2292:6;2288:17;2284:27;2274:122;;2315:79;;:::i;:::-;2274:122;2432:6;2419:20;2457:79;2532:3;2524:6;2517:4;2509:6;2505:17;2457:79;:::i;:::-;2448:88;;2264:278;2202:340;;;;:::o;2548:509::-;2617:6;2666:2;2654:9;2645:7;2641:23;2637:32;2634:119;;;2672:79;;:::i;:::-;2634:119;2820:1;2809:9;2805:17;2792:31;2850:18;2842:6;2839:30;2836:117;;;2872:79;;:::i;:::-;2836:117;2977:63;3032:7;3023:6;3012:9;3008:22;2977:63;:::i;:::-;2967:73;;2763:287;2548:509;;;;:::o;3063:77::-;3100:7;3129:5;3118:16;;3063:77;;;:::o;3146:118::-;3233:24;3251:5;3233:24;:::i;:::-;3228:3;3221:37;3146:118;;:::o;3270:222::-;3363:4;3401:2;3390:9;3386:18;3378:26;;3414:71;3482:1;3471:9;3467:17;3458:6;3414:71;:::i;:::-;3270:222;;;;:::o;3498:122::-;3571:24;3589:5;3571:24;:::i;:::-;3564:5;3561:35;3551:63;;3610:1;3607;3600:12;3551:63;3498:122;:::o;3626:139::-;3672:5;3710:6;3697:20;3688:29;;3726:33;3753:5;3726:33;:::i;:::-;3626:139;;;;:::o;3771:329::-;3830:6;3879:2;3867:9;3858:7;3854:23;3850:32;3847:119;;;3885:79;;:::i;:::-;3847:119;4005:1;4030:53;4075:7;4066:6;4055:9;4051:22;4030:53;:::i;:::-;4020:63;;3976:117;3771:329;;;;:::o;4106:99::-;4158:6;4192:5;4186:12;4176:22;;4106:99;;;:::o;4211:169::-;4295:11;4329:6;4324:3;4317:19;4369:4;4364:3;4360:14;4345:29;;4211:169;;;;:::o;4386:307::-;4454:1;4464:113;4478:6;4475:1;4472:13;4464:113;;;4563:1;4558:3;4554:11;4548:18;4544:1;4539:3;4535:11;4528:39;4500:2;4497:1;4493:10;4488:15;;4464:113;;;4595:6;4592:1;4589:13;4586:101;;;4675:1;4666:6;4661:3;4657:16;4650:27;4586:101;4435:258;4386:307;;;:::o;4699:364::-;4787:3;4815:39;4848:5;4815:39;:::i;:::-;4870:71;4934:6;4929:3;4870:71;:::i;:::-;4863:78;;4950:52;4995:6;4990:3;4983:4;4976:5;4972:16;4950:52;:::i;:::-;5027:29;5049:6;5027:29;:::i;:::-;5022:3;5018:39;5011:46;;4791:272;4699:364;;;;:::o;5069:313::-;5182:4;5220:2;5209:9;5205:18;5197:26;;5269:9;5263:4;5259:20;5255:1;5244:9;5240:17;5233:47;5297:78;5370:4;5361:6;5297:78;:::i;:::-;5289:86;;5069:313;;;;:::o;5388:126::-;5425:7;5465:42;5458:5;5454:54;5443:65;;5388:126;;;:::o;5520:96::-;5557:7;5586:24;5604:5;5586:24;:::i;:::-;5575:35;;5520:96;;;:::o;5622:122::-;5695:24;5713:5;5695:24;:::i;:::-;5688:5;5685:35;5675:63;;5734:1;5731;5724:12;5675:63;5622:122;:::o;5750:139::-;5796:5;5834:6;5821:20;5812:29;;5850:33;5877:5;5850:33;:::i;:::-;5750:139;;;;:::o;5895:329::-;5954:6;6003:2;5991:9;5982:7;5978:23;5974:32;5971:119;;;6009:79;;:::i;:::-;5971:119;6129:1;6154:53;6199:7;6190:6;6179:9;6175:22;6154:53;:::i;:::-;6144:63;;6100:117;5895:329;;;;:::o;6230:90::-;6264:7;6307:5;6300:13;6293:21;6282:32;;6230:90;;;:::o;6326:109::-;6407:21;6422:5;6407:21;:::i;:::-;6402:3;6395:34;6326:109;;:::o;6441:210::-;6528:4;6566:2;6555:9;6551:18;6543:26;;6579:65;6641:1;6630:9;6626:17;6617:6;6579:65;:::i;:::-;6441:210;;;;:::o;6657:118::-;6744:24;6762:5;6744:24;:::i;:::-;6739:3;6732:37;6657:118;;:::o;6781:222::-;6874:4;6912:2;6901:9;6897:18;6889:26;;6925:71;6993:1;6982:9;6978:17;6969:6;6925:71;:::i;:::-;6781:222;;;;:::o;7009:654::-;7087:6;7095;7144:2;7132:9;7123:7;7119:23;7115:32;7112:119;;;7150:79;;:::i;:::-;7112:119;7270:1;7295:53;7340:7;7331:6;7320:9;7316:22;7295:53;:::i;:::-;7285:63;;7241:117;7425:2;7414:9;7410:18;7397:32;7456:18;7448:6;7445:30;7442:117;;;7478:79;;:::i;:::-;7442:117;7583:63;7638:7;7629:6;7618:9;7614:22;7583:63;:::i;:::-;7573:73;;7368:288;7009:654;;;;;:::o;7669:124::-;7746:6;7780:5;7774:12;7764:22;;7669:124;;;:::o;7799:194::-;7908:11;7942:6;7937:3;7930:19;7982:4;7977:3;7973:14;7958:29;;7799:194;;;;:::o;7999:142::-;8076:4;8099:3;8091:11;;8129:4;8124:3;8120:14;8112:22;;7999:142;;;:::o;8147:159::-;8221:11;8255:6;8250:3;8243:19;8295:4;8290:3;8286:14;8271:29;;8147:159;;;;:::o;8312:344::-;8390:3;8418:39;8451:5;8418:39;:::i;:::-;8473:61;8527:6;8522:3;8473:61;:::i;:::-;8466:68;;8543:52;8588:6;8583:3;8576:4;8569:5;8565:16;8543:52;:::i;:::-;8620:29;8642:6;8620:29;:::i;:::-;8615:3;8611:39;8604:46;;8394:262;8312:344;;;;:::o;8662:196::-;8751:10;8786:66;8848:3;8840:6;8786:66;:::i;:::-;8772:80;;8662:196;;;;:::o;8864:123::-;8944:4;8976;8971:3;8967:14;8959:22;;8864:123;;;:::o;9021:991::-;9160:3;9189:64;9247:5;9189:64;:::i;:::-;9269:96;9358:6;9353:3;9269:96;:::i;:::-;9262:103;;9391:3;9436:4;9428:6;9424:17;9419:3;9415:27;9466:66;9526:5;9466:66;:::i;:::-;9555:7;9586:1;9571:396;9596:6;9593:1;9590:13;9571:396;;;9667:9;9661:4;9657:20;9652:3;9645:33;9718:6;9712:13;9746:84;9825:4;9810:13;9746:84;:::i;:::-;9738:92;;9853:70;9916:6;9853:70;:::i;:::-;9843:80;;9952:4;9947:3;9943:14;9936:21;;9631:336;9618:1;9615;9611:9;9606:14;;9571:396;;;9575:14;9983:4;9976:11;;10003:3;9996:10;;9165:847;;;;;9021:991;;;;:::o;10018:413::-;10181:4;10219:2;10208:9;10204:18;10196:26;;10268:9;10262:4;10258:20;10254:1;10243:9;10239:17;10232:47;10296:128;10419:4;10410:6;10296:128;:::i;:::-;10288:136;;10018:413;;;;:::o;10437:164::-;10577:16;10573:1;10565:6;10561:14;10554:40;10437:164;:::o;10607:366::-;10749:3;10770:67;10834:2;10829:3;10770:67;:::i;:::-;10763:74;;10846:93;10935:3;10846:93;:::i;:::-;10964:2;10959:3;10955:12;10948:19;;10607:366;;;:::o;10979:419::-;11145:4;11183:2;11172:9;11168:18;11160:26;;11232:9;11226:4;11222:20;11218:1;11207:9;11203:17;11196:47;11260:131;11386:4;11260:131;:::i;:::-;11252:139;;10979:419;;;:::o;11404:180::-;11452:77;11449:1;11442:88;11549:4;11546:1;11539:15;11573:4;11570:1;11563:15;11590:191;11630:4;11650:20;11668:1;11650:20;:::i;:::-;11645:25;;11684:20;11702:1;11684:20;:::i;:::-;11679:25;;11723:1;11720;11717:8;11714:34;;;11728:18;;:::i;:::-;11714:34;11773:1;11770;11766:9;11758:17;;11590:191;;;;:::o;11787:180::-;11835:77;11832:1;11825:88;11932:4;11929:1;11922:15;11956:4;11953:1;11946:15;11973:180;12021:77;12018:1;12011:88;12118:4;12115:1;12108:15;12142:4;12139:1;12132:15;12159:320;12203:6;12240:1;12234:4;12230:12;12220:22;;12287:1;12281:4;12277:12;12308:18;12298:81;;12364:4;12356:6;12352:17;12342:27;;12298:81;12426:2;12418:6;12415:14;12395:18;12392:38;12389:84;;12445:18;;:::i;:::-;12389:84;12210:269;12159:320;;;:::o;12485:160::-;12625:12;12621:1;12613:6;12609:14;12602:36;12485:160;:::o;12651:366::-;12793:3;12814:67;12878:2;12873:3;12814:67;:::i;:::-;12807:74;;12890:93;12979:3;12890:93;:::i;:::-;13008:2;13003:3;12999:12;12992:19;;12651:366;;;:::o;13023:419::-;13189:4;13227:2;13216:9;13212:18;13204:26;;13276:9;13270:4;13266:20;13262:1;13251:9;13247:17;13240:47;13304:131;13430:4;13304:131;:::i;:::-;13296:139;;13023:419;;;:::o;13448:141::-;13497:4;13520:3;13512:11;;13543:3;13540:1;13533:14;13577:4;13574:1;13564:18;13556:26;;13448:141;;;:::o;13619:802::-;13704:3;13741:5;13735:12;13770:36;13796:9;13770:36;:::i;:::-;13822:71;13886:6;13881:3;13822:71;:::i;:::-;13815:78;;13924:1;13913:9;13909:17;13940:1;13935:135;;;;14084:1;14079:336;;;;13902:513;;13935:135;14019:4;14015:9;14004;14000:25;13995:3;13988:38;14055:4;14050:3;14046:14;14039:21;;13935:135;;14079:336;14146:38;14178:5;14146:38;:::i;:::-;14206:1;14220:154;14234:6;14231:1;14228:13;14220:154;;;14308:7;14302:14;14298:1;14293:3;14289:11;14282:35;14358:1;14349:7;14345:15;14334:26;;14256:4;14253:1;14249:12;14244:17;;14220:154;;;14403:1;14398:3;14394:11;14387:18;;14086:329;;13902:513;;13708:713;;13619:802;;;;:::o;14427:508::-;14585:4;14623:2;14612:9;14608:18;14600:26;;14672:9;14666:4;14662:20;14658:1;14647:9;14643:17;14636:47;14700:75;14770:4;14761:6;14700:75;:::i;:::-;14692:83;;14822:9;14816:4;14812:20;14807:2;14796:9;14792:18;14785:48;14850:78;14923:4;14914:6;14850:78;:::i;:::-;14842:86;;14427:508;;;;;:::o" + }, + "gasEstimates": { + "creation": { + "codeDepositCost": "824400", + "executionCost": "49479", + "totalCost": "873879" + }, + "external": { + "addInfo(string)": "infinite", + "addMember(address)": "27026", + "delMember(address)": "27027", + "getInfo(uint256)": "infinite", + "listInfo()": "infinite", + "owner()": "2514", + "setInfo(uint256,string)": "infinite", + "whiteList(address)": "2912" + } + }, + "legacyAssembly": { + ".code": [ + { + "begin": 71, + "end": 1338, + "name": "PUSH", + "source": 0, + "value": "80" + }, + { + "begin": 71, + "end": 1338, + "name": "PUSH", + "source": 0, + "value": "40" + }, + { + "begin": 71, + "end": 1338, + "name": "MSTORE", + "source": 0 + }, + { + "begin": 209, + "end": 299, + "name": "CALLVALUE", + "source": 0 + }, + { + "begin": 209, + "end": 299, + "name": "DUP1", + "source": 0 + }, + { + "begin": 209, + "end": 299, + "name": "ISZERO", + "source": 0 + }, + { + "begin": 209, + "end": 299, + "name": "PUSH [tag]", + "source": 0, + "value": "1" + }, + { + "begin": 209, + "end": 299, + "name": "JUMPI", + "source": 0 + }, + { + "begin": 209, + "end": 299, + "name": "PUSH", + "source": 0, + "value": "0" + }, + { + "begin": 209, + "end": 299, + "name": "DUP1", + "source": 0 + }, + { + "begin": 209, + "end": 299, + "name": "REVERT", + "source": 0 + }, + { + "begin": 209, + "end": 299, + "name": "tag", + "source": 0, + "value": "1" + }, + { + "begin": 209, + "end": 299, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 209, + "end": 299, + "name": "POP", + "source": 0 + }, + { + "begin": 242, + "end": 252, + "name": "CALLER", + "source": 0 + }, + { + "begin": 234, + "end": 239, + "name": "PUSH", + "source": 0, + "value": "1" + }, + { + "begin": 234, + "end": 239, + "name": "PUSH", + "source": 0, + "value": "0" + }, + { + "begin": 234, + "end": 252, + "name": "PUSH", + "source": 0, + "value": "100" + }, + { + "begin": 234, + "end": 252, + "name": "EXP", + "source": 0 + }, + { + "begin": 234, + "end": 252, + "name": "DUP2", + "source": 0 + }, + { + "begin": 234, + "end": 252, + "name": "SLOAD", + "source": 0 + }, + { + "begin": 234, + "end": 252, + "name": "DUP2", + "source": 0 + }, + { + "begin": 234, + "end": 252, + "name": "PUSH", + "source": 0, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 234, + "end": 252, + "name": "MUL", + "source": 0 + }, + { + "begin": 234, + "end": 252, + "name": "NOT", + "source": 0 + }, + { + "begin": 234, + "end": 252, + "name": "AND", + "source": 0 + }, + { + "begin": 234, + "end": 252, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 234, + "end": 252, + "name": "DUP4", + "source": 0 + }, + { + "begin": 234, + "end": 252, + "name": "PUSH", + "source": 0, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 234, + "end": 252, + "name": "AND", + "source": 0 + }, + { + "begin": 234, + "end": 252, + "name": "MUL", + "source": 0 + }, + { + "begin": 234, + "end": 252, + "name": "OR", + "source": 0 + }, + { + "begin": 234, + "end": 252, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 234, + "end": 252, + "name": "SSTORE", + "source": 0 + }, + { + "begin": 234, + "end": 252, + "name": "POP", + "source": 0 + }, + { + "begin": 287, + "end": 291, + "name": "PUSH", + "source": 0, + "value": "1" + }, + { + "begin": 263, + "end": 272, + "name": "PUSH", + "source": 0, + "value": "2" + }, + { + "begin": 263, + "end": 284, + "name": "PUSH", + "source": 0, + "value": "0" + }, + { + "begin": 273, + "end": 283, + "name": "CALLER", + "source": 0 + }, + { + "begin": 263, + "end": 284, + "name": "PUSH", + "source": 0, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 263, + "end": 284, + "name": "AND", + "source": 0 + }, + { + "begin": 263, + "end": 284, + "name": "PUSH", + "source": 0, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 263, + "end": 284, + "name": "AND", + "source": 0 + }, + { + "begin": 263, + "end": 284, + "name": "DUP2", + "source": 0 + }, + { + "begin": 263, + "end": 284, + "name": "MSTORE", + "source": 0 + }, + { + "begin": 263, + "end": 284, + "name": "PUSH", + "source": 0, + "value": "20" + }, + { + "begin": 263, + "end": 284, + "name": "ADD", + "source": 0 + }, + { + "begin": 263, + "end": 284, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 263, + "end": 284, + "name": "DUP2", + "source": 0 + }, + { + "begin": 263, + "end": 284, + "name": "MSTORE", + "source": 0 + }, + { + "begin": 263, + "end": 284, + "name": "PUSH", + "source": 0, + "value": "20" + }, + { + "begin": 263, + "end": 284, + "name": "ADD", + "source": 0 + }, + { + "begin": 263, + "end": 284, + "name": "PUSH", + "source": 0, + "value": "0" + }, + { + "begin": 263, + "end": 284, + "name": "KECCAK256", + "source": 0 + }, + { + "begin": 263, + "end": 284, + "name": "PUSH", + "source": 0, + "value": "0" + }, + { + "begin": 263, + "end": 291, + "name": "PUSH", + "source": 0, + "value": "100" + }, + { + "begin": 263, + "end": 291, + "name": "EXP", + "source": 0 + }, + { + "begin": 263, + "end": 291, + "name": "DUP2", + "source": 0 + }, + { + "begin": 263, + "end": 291, + "name": "SLOAD", + "source": 0 + }, + { + "begin": 263, + "end": 291, + "name": "DUP2", + "source": 0 + }, + { + "begin": 263, + "end": 291, + "name": "PUSH", + "source": 0, + "value": "FF" + }, + { + "begin": 263, + "end": 291, + "name": "MUL", + "source": 0 + }, + { + "begin": 263, + "end": 291, + "name": "NOT", + "source": 0 + }, + { + "begin": 263, + "end": 291, + "name": "AND", + "source": 0 + }, + { + "begin": 263, + "end": 291, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 263, + "end": 291, + "name": "DUP4", + "source": 0 + }, + { + "begin": 263, + "end": 291, + "name": "ISZERO", + "source": 0 + }, + { + "begin": 263, + "end": 291, + "name": "ISZERO", + "source": 0 + }, + { + "begin": 263, + "end": 291, + "name": "MUL", + "source": 0 + }, + { + "begin": 263, + "end": 291, + "name": "OR", + "source": 0 + }, + { + "begin": 263, + "end": 291, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 263, + "end": 291, + "name": "SSTORE", + "source": 0 + }, + { + "begin": 263, + "end": 291, + "name": "POP", + "source": 0 + }, + { + "begin": 71, + "end": 1338, + "name": "PUSH #[$]", + "source": 0, + "value": "0000000000000000000000000000000000000000000000000000000000000000" + }, + { + "begin": 71, + "end": 1338, + "name": "DUP1", + "source": 0 + }, + { + "begin": 71, + "end": 1338, + "name": "PUSH [$]", + "source": 0, + "value": "0000000000000000000000000000000000000000000000000000000000000000" + }, + { + "begin": 71, + "end": 1338, + "name": "PUSH", + "source": 0, + "value": "0" + }, + { + "begin": 71, + "end": 1338, + "name": "CODECOPY", + "source": 0 + }, + { + "begin": 71, + "end": 1338, + "name": "PUSH", + "source": 0, + "value": "0" + }, + { + "begin": 71, + "end": 1338, + "name": "RETURN", + "source": 0 + } + ], + ".data": { + "0": { + ".auxdata": "a2646970667358221220d51a8f0aa3553930307806760fc28443ee71d8d43b62c5234f91814ae38560c964736f6c634300080d0033", + ".code": [ + { + "begin": 71, + "end": 1338, + "name": "PUSH", + "source": 0, + "value": "80" + }, + { + "begin": 71, + "end": 1338, + "name": "PUSH", + "source": 0, + "value": "40" + }, + { + "begin": 71, + "end": 1338, + "name": "MSTORE", + "source": 0 + }, + { + "begin": 71, + "end": 1338, + "name": "CALLVALUE", + "source": 0 + }, + { + "begin": 71, + "end": 1338, + "name": "DUP1", + "source": 0 + }, + { + "begin": 71, + "end": 1338, + "name": "ISZERO", + "source": 0 + }, + { + "begin": 71, + "end": 1338, + "name": "PUSH [tag]", + "source": 0, + "value": "1" + }, + { + "begin": 71, + "end": 1338, + "name": "JUMPI", + "source": 0 + }, + { + "begin": 71, + "end": 1338, + "name": "PUSH", + "source": 0, + "value": "0" + }, + { + "begin": 71, + "end": 1338, + "name": "DUP1", + "source": 0 + }, + { + "begin": 71, + "end": 1338, + "name": "REVERT", + "source": 0 + }, + { + "begin": 71, + "end": 1338, + "name": "tag", + "source": 0, + "value": "1" + }, + { + "begin": 71, + "end": 1338, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 71, + "end": 1338, + "name": "POP", + "source": 0 + }, + { + "begin": 71, + "end": 1338, + "name": "PUSH", + "source": 0, + "value": "4" + }, + { + "begin": 71, + "end": 1338, + "name": "CALLDATASIZE", + "source": 0 + }, + { + "begin": 71, + "end": 1338, + "name": "LT", + "source": 0 + }, + { + "begin": 71, + "end": 1338, + "name": "PUSH [tag]", + "source": 0, + "value": "2" + }, + { + "begin": 71, + "end": 1338, + "name": "JUMPI", + "source": 0 + }, + { + "begin": 71, + "end": 1338, + "name": "PUSH", + "source": 0, + "value": "0" + }, + { + "begin": 71, + "end": 1338, + "name": "CALLDATALOAD", + "source": 0 + }, + { + "begin": 71, + "end": 1338, + "name": "PUSH", + "source": 0, + "value": "E0" + }, + { + "begin": 71, + "end": 1338, + "name": "SHR", + "source": 0 + }, + { + "begin": 71, + "end": 1338, + "name": "DUP1", + "source": 0 + }, + { + "begin": 71, + "end": 1338, + "name": "PUSH", + "source": 0, + "value": "8DA5CB5B" + }, + { + "begin": 71, + "end": 1338, + "name": "GT", + "source": 0 + }, + { + "begin": 71, + "end": 1338, + "name": "PUSH [tag]", + "source": 0, + "value": "11" + }, + { + "begin": 71, + "end": 1338, + "name": "JUMPI", + "source": 0 + }, + { + "begin": 71, + "end": 1338, + "name": "DUP1", + "source": 0 + }, + { + "begin": 71, + "end": 1338, + "name": "PUSH", + "source": 0, + "value": "8DA5CB5B" + }, + { + "begin": 71, + "end": 1338, + "name": "EQ", + "source": 0 + }, + { + "begin": 71, + "end": 1338, + "name": "PUSH [tag]", + "source": 0, + "value": "7" + }, + { + "begin": 71, + "end": 1338, + "name": "JUMPI", + "source": 0 + }, + { + "begin": 71, + "end": 1338, + "name": "DUP1", + "source": 0 + }, + { + "begin": 71, + "end": 1338, + "name": "PUSH", + "source": 0, + "value": "B6820002" + }, + { + "begin": 71, + "end": 1338, + "name": "EQ", + "source": 0 + }, + { + "begin": 71, + "end": 1338, + "name": "PUSH [tag]", + "source": 0, + "value": "8" + }, + { + "begin": 71, + "end": 1338, + "name": "JUMPI", + "source": 0 + }, + { + "begin": 71, + "end": 1338, + "name": "DUP1", + "source": 0 + }, + { + "begin": 71, + "end": 1338, + "name": "PUSH", + "source": 0, + "value": "CA6D56DC" + }, + { + "begin": 71, + "end": 1338, + "name": "EQ", + "source": 0 + }, + { + "begin": 71, + "end": 1338, + "name": "PUSH [tag]", + "source": 0, + "value": "9" + }, + { + "begin": 71, + "end": 1338, + "name": "JUMPI", + "source": 0 + }, + { + "begin": 71, + "end": 1338, + "name": "DUP1", + "source": 0 + }, + { + "begin": 71, + "end": 1338, + "name": "PUSH", + "source": 0, + "value": "D03D5849" + }, + { + "begin": 71, + "end": 1338, + "name": "EQ", + "source": 0 + }, + { + "begin": 71, + "end": 1338, + "name": "PUSH [tag]", + "source": 0, + "value": "10" + }, + { + "begin": 71, + "end": 1338, + "name": "JUMPI", + "source": 0 + }, + { + "begin": 71, + "end": 1338, + "name": "PUSH [tag]", + "source": 0, + "value": "2" + }, + { + "begin": 71, + "end": 1338, + "name": "JUMP", + "source": 0 + }, + { + "begin": 71, + "end": 1338, + "name": "tag", + "source": 0, + "value": "11" + }, + { + "begin": 71, + "end": 1338, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 71, + "end": 1338, + "name": "DUP1", + "source": 0 + }, + { + "begin": 71, + "end": 1338, + "name": "PUSH", + "source": 0, + "value": "BF803E4" + }, + { + "begin": 71, + "end": 1338, + "name": "EQ", + "source": 0 + }, + { + "begin": 71, + "end": 1338, + "name": "PUSH [tag]", + "source": 0, + "value": "3" + }, + { + "begin": 71, + "end": 1338, + "name": "JUMPI", + "source": 0 + }, + { + "begin": 71, + "end": 1338, + "name": "DUP1", + "source": 0 + }, + { + "begin": 71, + "end": 1338, + "name": "PUSH", + "source": 0, + "value": "1A3CD59A" + }, + { + "begin": 71, + "end": 1338, + "name": "EQ", + "source": 0 + }, + { + "begin": 71, + "end": 1338, + "name": "PUSH [tag]", + "source": 0, + "value": "4" + }, + { + "begin": 71, + "end": 1338, + "name": "JUMPI", + "source": 0 + }, + { + "begin": 71, + "end": 1338, + "name": "DUP1", + "source": 0 + }, + { + "begin": 71, + "end": 1338, + "name": "PUSH", + "source": 0, + "value": "1F81595D" + }, + { + "begin": 71, + "end": 1338, + "name": "EQ", + "source": 0 + }, + { + "begin": 71, + "end": 1338, + "name": "PUSH [tag]", + "source": 0, + "value": "5" + }, + { + "begin": 71, + "end": 1338, + "name": "JUMPI", + "source": 0 + }, + { + "begin": 71, + "end": 1338, + "name": "DUP1", + "source": 0 + }, + { + "begin": 71, + "end": 1338, + "name": "PUSH", + "source": 0, + "value": "372C12B1" + }, + { + "begin": 71, + "end": 1338, + "name": "EQ", + "source": 0 + }, + { + "begin": 71, + "end": 1338, + "name": "PUSH [tag]", + "source": 0, + "value": "6" + }, + { + "begin": 71, + "end": 1338, + "name": "JUMPI", + "source": 0 + }, + { + "begin": 71, + "end": 1338, + "name": "tag", + "source": 0, + "value": "2" + }, + { + "begin": 71, + "end": 1338, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 71, + "end": 1338, + "name": "PUSH", + "source": 0, + "value": "0" + }, + { + "begin": 71, + "end": 1338, + "name": "DUP1", + "source": 0 + }, + { + "begin": 71, + "end": 1338, + "name": "REVERT", + "source": 0 + }, + { + "begin": 865, + "end": 1014, + "name": "tag", + "source": 0, + "value": "3" + }, + { + "begin": 865, + "end": 1014, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 865, + "end": 1014, + "name": "PUSH [tag]", + "source": 0, + "value": "12" + }, + { + "begin": 865, + "end": 1014, + "name": "PUSH", + "source": 0, + "value": "4" + }, + { + "begin": 865, + "end": 1014, + "name": "DUP1", + "source": 0 + }, + { + "begin": 865, + "end": 1014, + "name": "CALLDATASIZE", + "source": 0 + }, + { + "begin": 865, + "end": 1014, + "name": "SUB", + "source": 0 + }, + { + "begin": 865, + "end": 1014, + "name": "DUP2", + "source": 0 + }, + { + "begin": 865, + "end": 1014, + "name": "ADD", + "source": 0 + }, + { + "begin": 865, + "end": 1014, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 865, + "end": 1014, + "name": "PUSH [tag]", + "source": 0, + "value": "13" + }, + { + "begin": 865, + "end": 1014, + "name": "SWAP2", + "source": 0 + }, + { + "begin": 865, + "end": 1014, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 865, + "end": 1014, + "name": "PUSH [tag]", + "source": 0, + "value": "14" + }, + { + "begin": 865, + "end": 1014, + "name": "JUMP", + "source": 0, + "value": "[in]" + }, + { + "begin": 865, + "end": 1014, + "name": "tag", + "source": 0, + "value": "13" + }, + { + "begin": 865, + "end": 1014, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 865, + "end": 1014, + "name": "PUSH [tag]", + "source": 0, + "value": "15" + }, + { + "begin": 865, + "end": 1014, + "name": "JUMP", + "source": 0, + "value": "[in]" + }, + { + "begin": 865, + "end": 1014, + "name": "tag", + "source": 0, + "value": "12" + }, + { + "begin": 865, + "end": 1014, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 865, + "end": 1014, + "name": "PUSH", + "source": 0, + "value": "40" + }, + { + "begin": 865, + "end": 1014, + "name": "MLOAD", + "source": 0 + }, + { + "begin": 865, + "end": 1014, + "name": "PUSH [tag]", + "source": 0, + "value": "16" + }, + { + "begin": 865, + "end": 1014, + "name": "SWAP2", + "source": 0 + }, + { + "begin": 865, + "end": 1014, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 865, + "end": 1014, + "name": "PUSH [tag]", + "source": 0, + "value": "17" + }, + { + "begin": 865, + "end": 1014, + "name": "JUMP", + "source": 0, + "value": "[in]" + }, + { + "begin": 865, + "end": 1014, + "name": "tag", + "source": 0, + "value": "16" + }, + { + "begin": 865, + "end": 1014, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 865, + "end": 1014, + "name": "PUSH", + "source": 0, + "value": "40" + }, + { + "begin": 865, + "end": 1014, + "name": "MLOAD", + "source": 0 + }, + { + "begin": 865, + "end": 1014, + "name": "DUP1", + "source": 0 + }, + { + "begin": 865, + "end": 1014, + "name": "SWAP2", + "source": 0 + }, + { + "begin": 865, + "end": 1014, + "name": "SUB", + "source": 0 + }, + { + "begin": 865, + "end": 1014, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 865, + "end": 1014, + "name": "RETURN", + "source": 0 + }, + { + "begin": 587, + "end": 689, + "name": "tag", + "source": 0, + "value": "4" + }, + { + "begin": 587, + "end": 689, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 587, + "end": 689, + "name": "PUSH [tag]", + "source": 0, + "value": "18" + }, + { + "begin": 587, + "end": 689, + "name": "PUSH", + "source": 0, + "value": "4" + }, + { + "begin": 587, + "end": 689, + "name": "DUP1", + "source": 0 + }, + { + "begin": 587, + "end": 689, + "name": "CALLDATASIZE", + "source": 0 + }, + { + "begin": 587, + "end": 689, + "name": "SUB", + "source": 0 + }, + { + "begin": 587, + "end": 689, + "name": "DUP2", + "source": 0 + }, + { + "begin": 587, + "end": 689, + "name": "ADD", + "source": 0 + }, + { + "begin": 587, + "end": 689, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 587, + "end": 689, + "name": "PUSH [tag]", + "source": 0, + "value": "19" + }, + { + "begin": 587, + "end": 689, + "name": "SWAP2", + "source": 0 + }, + { + "begin": 587, + "end": 689, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 587, + "end": 689, + "name": "PUSH [tag]", + "source": 0, + "value": "20" + }, + { + "begin": 587, + "end": 689, + "name": "JUMP", + "source": 0, + "value": "[in]" + }, + { + "begin": 587, + "end": 689, + "name": "tag", + "source": 0, + "value": "19" + }, + { + "begin": 587, + "end": 689, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 587, + "end": 689, + "name": "PUSH [tag]", + "source": 0, + "value": "21" + }, + { + "begin": 587, + "end": 689, + "name": "JUMP", + "source": 0, + "value": "[in]" + }, + { + "begin": 587, + "end": 689, + "name": "tag", + "source": 0, + "value": "18" + }, + { + "begin": 587, + "end": 689, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 587, + "end": 689, + "name": "PUSH", + "source": 0, + "value": "40" + }, + { + "begin": 587, + "end": 689, + "name": "MLOAD", + "source": 0 + }, + { + "begin": 587, + "end": 689, + "name": "PUSH [tag]", + "source": 0, + "value": "22" + }, + { + "begin": 587, + "end": 689, + "name": "SWAP2", + "source": 0 + }, + { + "begin": 587, + "end": 689, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 587, + "end": 689, + "name": "PUSH [tag]", + "source": 0, + "value": "23" + }, + { + "begin": 587, + "end": 689, + "name": "JUMP", + "source": 0, + "value": "[in]" + }, + { + "begin": 587, + "end": 689, + "name": "tag", + "source": 0, + "value": "22" + }, + { + "begin": 587, + "end": 689, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 587, + "end": 689, + "name": "PUSH", + "source": 0, + "value": "40" + }, + { + "begin": 587, + "end": 689, + "name": "MLOAD", + "source": 0 + }, + { + "begin": 587, + "end": 689, + "name": "DUP1", + "source": 0 + }, + { + "begin": 587, + "end": 689, + "name": "SWAP2", + "source": 0 + }, + { + "begin": 587, + "end": 689, + "name": "SUB", + "source": 0 + }, + { + "begin": 587, + "end": 689, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 587, + "end": 689, + "name": "RETURN", + "source": 0 + }, + { + "begin": 1233, + "end": 1332, + "name": "tag", + "source": 0, + "value": "5" + }, + { + "begin": 1233, + "end": 1332, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 1233, + "end": 1332, + "name": "PUSH [tag]", + "source": 0, + "value": "24" + }, + { + "begin": 1233, + "end": 1332, + "name": "PUSH", + "source": 0, + "value": "4" + }, + { + "begin": 1233, + "end": 1332, + "name": "DUP1", + "source": 0 + }, + { + "begin": 1233, + "end": 1332, + "name": "CALLDATASIZE", + "source": 0 + }, + { + "begin": 1233, + "end": 1332, + "name": "SUB", + "source": 0 + }, + { + "begin": 1233, + "end": 1332, + "name": "DUP2", + "source": 0 + }, + { + "begin": 1233, + "end": 1332, + "name": "ADD", + "source": 0 + }, + { + "begin": 1233, + "end": 1332, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 1233, + "end": 1332, + "name": "PUSH [tag]", + "source": 0, + "value": "25" + }, + { + "begin": 1233, + "end": 1332, + "name": "SWAP2", + "source": 0 + }, + { + "begin": 1233, + "end": 1332, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 1233, + "end": 1332, + "name": "PUSH [tag]", + "source": 0, + "value": "26" + }, + { + "begin": 1233, + "end": 1332, + "name": "JUMP", + "source": 0, + "value": "[in]" + }, + { + "begin": 1233, + "end": 1332, + "name": "tag", + "source": 0, + "value": "25" + }, + { + "begin": 1233, + "end": 1332, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 1233, + "end": 1332, + "name": "PUSH [tag]", + "source": 0, + "value": "27" + }, + { + "begin": 1233, + "end": 1332, + "name": "JUMP", + "source": 0, + "value": "[in]" + }, + { + "begin": 1233, + "end": 1332, + "name": "tag", + "source": 0, + "value": "24" + }, + { + "begin": 1233, + "end": 1332, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 1233, + "end": 1332, + "name": "STOP", + "source": 0 + }, + { + "begin": 157, + "end": 199, + "name": "tag", + "source": 0, + "value": "6" + }, + { + "begin": 157, + "end": 199, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 157, + "end": 199, + "name": "PUSH [tag]", + "source": 0, + "value": "28" + }, + { + "begin": 157, + "end": 199, + "name": "PUSH", + "source": 0, + "value": "4" + }, + { + "begin": 157, + "end": 199, + "name": "DUP1", + "source": 0 + }, + { + "begin": 157, + "end": 199, + "name": "CALLDATASIZE", + "source": 0 + }, + { + "begin": 157, + "end": 199, + "name": "SUB", + "source": 0 + }, + { + "begin": 157, + "end": 199, + "name": "DUP2", + "source": 0 + }, + { + "begin": 157, + "end": 199, + "name": "ADD", + "source": 0 + }, + { + "begin": 157, + "end": 199, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 157, + "end": 199, + "name": "PUSH [tag]", + "source": 0, + "value": "29" + }, + { + "begin": 157, + "end": 199, + "name": "SWAP2", + "source": 0 + }, + { + "begin": 157, + "end": 199, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 157, + "end": 199, + "name": "PUSH [tag]", + "source": 0, + "value": "26" + }, + { + "begin": 157, + "end": 199, + "name": "JUMP", + "source": 0, + "value": "[in]" + }, + { + "begin": 157, + "end": 199, + "name": "tag", + "source": 0, + "value": "29" + }, + { + "begin": 157, + "end": 199, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 157, + "end": 199, + "name": "PUSH [tag]", + "source": 0, + "value": "30" + }, + { + "begin": 157, + "end": 199, + "name": "JUMP", + "source": 0, + "value": "[in]" + }, + { + "begin": 157, + "end": 199, + "name": "tag", + "source": 0, + "value": "28" + }, + { + "begin": 157, + "end": 199, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 157, + "end": 199, + "name": "PUSH", + "source": 0, + "value": "40" + }, + { + "begin": 157, + "end": 199, + "name": "MLOAD", + "source": 0 + }, + { + "begin": 157, + "end": 199, + "name": "PUSH [tag]", + "source": 0, + "value": "31" + }, + { + "begin": 157, + "end": 199, + "name": "SWAP2", + "source": 0 + }, + { + "begin": 157, + "end": 199, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 157, + "end": 199, + "name": "PUSH [tag]", + "source": 0, + "value": "32" + }, + { + "begin": 157, + "end": 199, + "name": "JUMP", + "source": 0, + "value": "[in]" + }, + { + "begin": 157, + "end": 199, + "name": "tag", + "source": 0, + "value": "31" + }, + { + "begin": 157, + "end": 199, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 157, + "end": 199, + "name": "PUSH", + "source": 0, + "value": "40" + }, + { + "begin": 157, + "end": 199, + "name": "MLOAD", + "source": 0 + }, + { + "begin": 157, + "end": 199, + "name": "DUP1", + "source": 0 + }, + { + "begin": 157, + "end": 199, + "name": "SWAP2", + "source": 0 + }, + { + "begin": 157, + "end": 199, + "name": "SUB", + "source": 0 + }, + { + "begin": 157, + "end": 199, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 157, + "end": 199, + "name": "RETURN", + "source": 0 + }, + { + "begin": 130, + "end": 150, + "name": "tag", + "source": 0, + "value": "7" + }, + { + "begin": 130, + "end": 150, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 130, + "end": 150, + "name": "PUSH [tag]", + "source": 0, + "value": "33" + }, + { + "begin": 130, + "end": 150, + "name": "PUSH [tag]", + "source": 0, + "value": "34" + }, + { + "begin": 130, + "end": 150, + "name": "JUMP", + "source": 0, + "value": "[in]" + }, + { + "begin": 130, + "end": 150, + "name": "tag", + "source": 0, + "value": "33" + }, + { + "begin": 130, + "end": 150, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 130, + "end": 150, + "name": "PUSH", + "source": 0, + "value": "40" + }, + { + "begin": 130, + "end": 150, + "name": "MLOAD", + "source": 0 + }, + { + "begin": 130, + "end": 150, + "name": "PUSH [tag]", + "source": 0, + "value": "35" + }, + { + "begin": 130, + "end": 150, + "name": "SWAP2", + "source": 0 + }, + { + "begin": 130, + "end": 150, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 130, + "end": 150, + "name": "PUSH [tag]", + "source": 0, + "value": "36" + }, + { + "begin": 130, + "end": 150, + "name": "JUMP", + "source": 0, + "value": "[in]" + }, + { + "begin": 130, + "end": 150, + "name": "tag", + "source": 0, + "value": "35" + }, + { + "begin": 130, + "end": 150, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 130, + "end": 150, + "name": "PUSH", + "source": 0, + "value": "40" + }, + { + "begin": 130, + "end": 150, + "name": "MLOAD", + "source": 0 + }, + { + "begin": 130, + "end": 150, + "name": "DUP1", + "source": 0 + }, + { + "begin": 130, + "end": 150, + "name": "SWAP2", + "source": 0 + }, + { + "begin": 130, + "end": 150, + "name": "SUB", + "source": 0 + }, + { + "begin": 130, + "end": 150, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 130, + "end": 150, + "name": "RETURN", + "source": 0 + }, + { + "begin": 698, + "end": 854, + "name": "tag", + "source": 0, + "value": "8" + }, + { + "begin": 698, + "end": 854, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 698, + "end": 854, + "name": "PUSH [tag]", + "source": 0, + "value": "37" + }, + { + "begin": 698, + "end": 854, + "name": "PUSH", + "source": 0, + "value": "4" + }, + { + "begin": 698, + "end": 854, + "name": "DUP1", + "source": 0 + }, + { + "begin": 698, + "end": 854, + "name": "CALLDATASIZE", + "source": 0 + }, + { + "begin": 698, + "end": 854, + "name": "SUB", + "source": 0 + }, + { + "begin": 698, + "end": 854, + "name": "DUP2", + "source": 0 + }, + { + "begin": 698, + "end": 854, + "name": "ADD", + "source": 0 + }, + { + "begin": 698, + "end": 854, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 698, + "end": 854, + "name": "PUSH [tag]", + "source": 0, + "value": "38" + }, + { + "begin": 698, + "end": 854, + "name": "SWAP2", + "source": 0 + }, + { + "begin": 698, + "end": 854, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 698, + "end": 854, + "name": "PUSH [tag]", + "source": 0, + "value": "39" + }, + { + "begin": 698, + "end": 854, + "name": "JUMP", + "source": 0, + "value": "[in]" + }, + { + "begin": 698, + "end": 854, + "name": "tag", + "source": 0, + "value": "38" + }, + { + "begin": 698, + "end": 854, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 698, + "end": 854, + "name": "PUSH [tag]", + "source": 0, + "value": "40" + }, + { + "begin": 698, + "end": 854, + "name": "JUMP", + "source": 0, + "value": "[in]" + }, + { + "begin": 698, + "end": 854, + "name": "tag", + "source": 0, + "value": "37" + }, + { + "begin": 698, + "end": 854, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 698, + "end": 854, + "name": "STOP", + "source": 0 + }, + { + "begin": 1124, + "end": 1222, + "name": "tag", + "source": 0, + "value": "9" + }, + { + "begin": 1124, + "end": 1222, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 1124, + "end": 1222, + "name": "PUSH [tag]", + "source": 0, + "value": "41" + }, + { + "begin": 1124, + "end": 1222, + "name": "PUSH", + "source": 0, + "value": "4" + }, + { + "begin": 1124, + "end": 1222, + "name": "DUP1", + "source": 0 + }, + { + "begin": 1124, + "end": 1222, + "name": "CALLDATASIZE", + "source": 0 + }, + { + "begin": 1124, + "end": 1222, + "name": "SUB", + "source": 0 + }, + { + "begin": 1124, + "end": 1222, + "name": "DUP2", + "source": 0 + }, + { + "begin": 1124, + "end": 1222, + "name": "ADD", + "source": 0 + }, + { + "begin": 1124, + "end": 1222, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 1124, + "end": 1222, + "name": "PUSH [tag]", + "source": 0, + "value": "42" + }, + { + "begin": 1124, + "end": 1222, + "name": "SWAP2", + "source": 0 + }, + { + "begin": 1124, + "end": 1222, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 1124, + "end": 1222, + "name": "PUSH [tag]", + "source": 0, + "value": "26" + }, + { + "begin": 1124, + "end": 1222, + "name": "JUMP", + "source": 0, + "value": "[in]" + }, + { + "begin": 1124, + "end": 1222, + "name": "tag", + "source": 0, + "value": "42" + }, + { + "begin": 1124, + "end": 1222, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 1124, + "end": 1222, + "name": "PUSH [tag]", + "source": 0, + "value": "43" + }, + { + "begin": 1124, + "end": 1222, + "name": "JUMP", + "source": 0, + "value": "[in]" + }, + { + "begin": 1124, + "end": 1222, + "name": "tag", + "source": 0, + "value": "41" + }, + { + "begin": 1124, + "end": 1222, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 1124, + "end": 1222, + "name": "STOP", + "source": 0 + }, + { + "begin": 1027, + "end": 1115, + "name": "tag", + "source": 0, + "value": "10" + }, + { + "begin": 1027, + "end": 1115, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 1027, + "end": 1115, + "name": "PUSH [tag]", + "source": 0, + "value": "44" + }, + { + "begin": 1027, + "end": 1115, + "name": "PUSH [tag]", + "source": 0, + "value": "45" + }, + { + "begin": 1027, + "end": 1115, + "name": "JUMP", + "source": 0, + "value": "[in]" + }, + { + "begin": 1027, + "end": 1115, + "name": "tag", + "source": 0, + "value": "44" + }, + { + "begin": 1027, + "end": 1115, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 1027, + "end": 1115, + "name": "PUSH", + "source": 0, + "value": "40" + }, + { + "begin": 1027, + "end": 1115, + "name": "MLOAD", + "source": 0 + }, + { + "begin": 1027, + "end": 1115, + "name": "PUSH [tag]", + "source": 0, + "value": "46" + }, + { + "begin": 1027, + "end": 1115, + "name": "SWAP2", + "source": 0 + }, + { + "begin": 1027, + "end": 1115, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 1027, + "end": 1115, + "name": "PUSH [tag]", + "source": 0, + "value": "47" + }, + { + "begin": 1027, + "end": 1115, + "name": "JUMP", + "source": 0, + "value": "[in]" + }, + { + "begin": 1027, + "end": 1115, + "name": "tag", + "source": 0, + "value": "46" + }, + { + "begin": 1027, + "end": 1115, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 1027, + "end": 1115, + "name": "PUSH", + "source": 0, + "value": "40" + }, + { + "begin": 1027, + "end": 1115, + "name": "MLOAD", + "source": 0 + }, + { + "begin": 1027, + "end": 1115, + "name": "DUP1", + "source": 0 + }, + { + "begin": 1027, + "end": 1115, + "name": "SWAP2", + "source": 0 + }, + { + "begin": 1027, + "end": 1115, + "name": "SUB", + "source": 0 + }, + { + "begin": 1027, + "end": 1115, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 1027, + "end": 1115, + "name": "RETURN", + "source": 0 + }, + { + "begin": 865, + "end": 1014, + "name": "tag", + "source": 0, + "value": "15" + }, + { + "begin": 865, + "end": 1014, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 933, + "end": 943, + "name": "PUSH", + "source": 0, + "value": "0" + }, + { + "begin": 535, + "end": 539, + "name": "PUSH", + "source": 0, + "value": "1" + }, + { + "begin": 510, + "end": 539, + "name": "ISZERO", + "source": 0 + }, + { + "begin": 510, + "end": 539, + "name": "ISZERO", + "source": 0 + }, + { + "begin": 510, + "end": 519, + "name": "PUSH", + "source": 0, + "value": "2" + }, + { + "begin": 510, + "end": 531, + "name": "PUSH", + "source": 0, + "value": "0" + }, + { + "begin": 520, + "end": 530, + "name": "CALLER", + "source": 0 + }, + { + "begin": 510, + "end": 531, + "name": "PUSH", + "source": 0, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 510, + "end": 531, + "name": "AND", + "source": 0 + }, + { + "begin": 510, + "end": 531, + "name": "PUSH", + "source": 0, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 510, + "end": 531, + "name": "AND", + "source": 0 + }, + { + "begin": 510, + "end": 531, + "name": "DUP2", + "source": 0 + }, + { + "begin": 510, + "end": 531, + "name": "MSTORE", + "source": 0 + }, + { + "begin": 510, + "end": 531, + "name": "PUSH", + "source": 0, + "value": "20" + }, + { + "begin": 510, + "end": 531, + "name": "ADD", + "source": 0 + }, + { + "begin": 510, + "end": 531, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 510, + "end": 531, + "name": "DUP2", + "source": 0 + }, + { + "begin": 510, + "end": 531, + "name": "MSTORE", + "source": 0 + }, + { + "begin": 510, + "end": 531, + "name": "PUSH", + "source": 0, + "value": "20" + }, + { + "begin": 510, + "end": 531, + "name": "ADD", + "source": 0 + }, + { + "begin": 510, + "end": 531, + "name": "PUSH", + "source": 0, + "value": "0" + }, + { + "begin": 510, + "end": 531, + "name": "KECCAK256", + "source": 0 + }, + { + "begin": 510, + "end": 531, + "name": "PUSH", + "source": 0, + "value": "0" + }, + { + "begin": 510, + "end": 531, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 510, + "end": 531, + "name": "SLOAD", + "source": 0 + }, + { + "begin": 510, + "end": 531, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 510, + "end": 531, + "name": "PUSH", + "source": 0, + "value": "100" + }, + { + "begin": 510, + "end": 531, + "name": "EXP", + "source": 0 + }, + { + "begin": 510, + "end": 531, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 510, + "end": 531, + "name": "DIV", + "source": 0 + }, + { + "begin": 510, + "end": 531, + "name": "PUSH", + "source": 0, + "value": "FF" + }, + { + "begin": 510, + "end": 531, + "name": "AND", + "source": 0 + }, + { + "begin": 510, + "end": 539, + "name": "ISZERO", + "source": 0 + }, + { + "begin": 510, + "end": 539, + "name": "ISZERO", + "source": 0 + }, + { + "begin": 510, + "end": 539, + "name": "EQ", + "source": 0 + }, + { + "begin": 502, + "end": 558, + "name": "PUSH [tag]", + "source": 0, + "value": "49" + }, + { + "begin": 502, + "end": 558, + "name": "JUMPI", + "source": 0 + }, + { + "begin": 502, + "end": 558, + "name": "PUSH", + "source": 0, + "value": "40" + }, + { + "begin": 502, + "end": 558, + "name": "MLOAD", + "source": 0 + }, + { + "begin": 502, + "end": 558, + "name": "PUSH", + "source": 0, + "value": "8C379A000000000000000000000000000000000000000000000000000000000" + }, + { + "begin": 502, + "end": 558, + "name": "DUP2", + "source": 0 + }, + { + "begin": 502, + "end": 558, + "name": "MSTORE", + "source": 0 + }, + { + "begin": 502, + "end": 558, + "name": "PUSH", + "source": 0, + "value": "4" + }, + { + "begin": 502, + "end": 558, + "name": "ADD", + "source": 0 + }, + { + "begin": 502, + "end": 558, + "name": "PUSH [tag]", + "source": 0, + "value": "50" + }, + { + "begin": 502, + "end": 558, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 502, + "end": 558, + "name": "PUSH [tag]", + "source": 0, + "value": "51" + }, + { + "begin": 502, + "end": 558, + "name": "JUMP", + "source": 0, + "value": "[in]" + }, + { + "begin": 502, + "end": 558, + "name": "tag", + "source": 0, + "value": "50" + }, + { + "begin": 502, + "end": 558, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 502, + "end": 558, + "name": "PUSH", + "source": 0, + "value": "40" + }, + { + "begin": 502, + "end": 558, + "name": "MLOAD", + "source": 0 + }, + { + "begin": 502, + "end": 558, + "name": "DUP1", + "source": 0 + }, + { + "begin": 502, + "end": 558, + "name": "SWAP2", + "source": 0 + }, + { + "begin": 502, + "end": 558, + "name": "SUB", + "source": 0 + }, + { + "begin": 502, + "end": 558, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 502, + "end": 558, + "name": "REVERT", + "source": 0 + }, + { + "begin": 502, + "end": 558, + "name": "tag", + "source": 0, + "value": "49" + }, + { + "begin": 502, + "end": 558, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 956, + "end": 960, + "name": "PUSH", + "source": 0, + "value": "0" + }, + { + "begin": 967, + "end": 972, + "name": "DUP3", + "source": 0 + }, + { + "begin": 956, + "end": 973, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 956, + "end": 973, + "name": "DUP1", + "source": 0 + }, + { + "begin": 956, + "end": 973, + "name": "PUSH", + "source": 0, + "value": "1" + }, + { + "begin": 956, + "end": 973, + "name": "DUP2", + "source": 0 + }, + { + "begin": 956, + "end": 973, + "name": "SLOAD", + "source": 0 + }, + { + "begin": 956, + "end": 973, + "name": "ADD", + "source": 0 + }, + { + "begin": 956, + "end": 973, + "name": "DUP1", + "source": 0 + }, + { + "begin": 956, + "end": 973, + "name": "DUP3", + "source": 0 + }, + { + "begin": 956, + "end": 973, + "name": "SSTORE", + "source": 0 + }, + { + "begin": 956, + "end": 973, + "name": "DUP1", + "source": 0 + }, + { + "begin": 956, + "end": 973, + "name": "SWAP2", + "source": 0 + }, + { + "begin": 956, + "end": 973, + "name": "POP", + "source": 0 + }, + { + "begin": 956, + "end": 973, + "name": "POP", + "source": 0 + }, + { + "begin": 956, + "end": 973, + "name": "PUSH", + "source": 0, + "value": "1" + }, + { + "begin": 956, + "end": 973, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 956, + "end": 973, + "name": "SUB", + "source": 0 + }, + { + "begin": 956, + "end": 973, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 956, + "end": 973, + "name": "PUSH", + "source": 0, + "value": "0" + }, + { + "begin": 956, + "end": 973, + "name": "MSTORE", + "source": 0 + }, + { + "begin": 956, + "end": 973, + "name": "PUSH", + "source": 0, + "value": "20" + }, + { + "begin": 956, + "end": 973, + "name": "PUSH", + "source": 0, + "value": "0" + }, + { + "begin": 956, + "end": 973, + "name": "KECCAK256", + "source": 0 + }, + { + "begin": 956, + "end": 973, + "name": "ADD", + "source": 0 + }, + { + "begin": 956, + "end": 973, + "name": "PUSH", + "source": 0, + "value": "0" + }, + { + "begin": 956, + "end": 973, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 956, + "end": 973, + "name": "SWAP2", + "source": 0 + }, + { + "begin": 956, + "end": 973, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 956, + "end": 973, + "name": "SWAP2", + "source": 0 + }, + { + "begin": 956, + "end": 973, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 956, + "end": 973, + "name": "SWAP2", + "source": 0 + }, + { + "begin": 956, + "end": 973, + "name": "POP", + "source": 0 + }, + { + "begin": 956, + "end": 973, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 956, + "end": 973, + "name": "DUP1", + "source": 0 + }, + { + "begin": 956, + "end": 973, + "name": "MLOAD", + "source": 0 + }, + { + "begin": 956, + "end": 973, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 956, + "end": 973, + "name": "PUSH", + "source": 0, + "value": "20" + }, + { + "begin": 956, + "end": 973, + "name": "ADD", + "source": 0 + }, + { + "begin": 956, + "end": 973, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 956, + "end": 973, + "name": "PUSH [tag]", + "source": 0, + "value": "54" + }, + { + "begin": 956, + "end": 973, + "name": "SWAP3", + "source": 0 + }, + { + "begin": 956, + "end": 973, + "name": "SWAP2", + "source": 0 + }, + { + "begin": 956, + "end": 973, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 956, + "end": 973, + "name": "PUSH [tag]", + "source": 0, + "value": "55" + }, + { + "begin": 956, + "end": 973, + "name": "JUMP", + "source": 0, + "value": "[in]" + }, + { + "begin": 956, + "end": 973, + "name": "tag", + "source": 0, + "value": "54" + }, + { + "begin": 956, + "end": 973, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 956, + "end": 973, + "name": "POP", + "source": 0 + }, + { + "begin": 1005, + "end": 1006, + "name": "PUSH", + "source": 0, + "value": "1" + }, + { + "begin": 992, + "end": 996, + "name": "PUSH", + "source": 0, + "value": "0" + }, + { + "begin": 992, + "end": 1003, + "name": "DUP1", + "source": 0 + }, + { + "begin": 992, + "end": 1003, + "name": "SLOAD", + "source": 0 + }, + { + "begin": 992, + "end": 1003, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 992, + "end": 1003, + "name": "POP", + "source": 0 + }, + { + "begin": 992, + "end": 1006, + "name": "PUSH [tag]", + "source": 0, + "value": "56" + }, + { + "begin": 992, + "end": 1006, + "name": "SWAP2", + "source": 0 + }, + { + "begin": 992, + "end": 1006, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 992, + "end": 1006, + "name": "PUSH [tag]", + "source": 0, + "value": "57" + }, + { + "begin": 992, + "end": 1006, + "name": "JUMP", + "source": 0, + "value": "[in]" + }, + { + "begin": 992, + "end": 1006, + "name": "tag", + "source": 0, + "value": "56" + }, + { + "begin": 992, + "end": 1006, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 984, + "end": 1006, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 984, + "end": 1006, + "name": "POP", + "source": 0 + }, + { + "begin": 865, + "end": 1014, + "name": "SWAP2", + "source": 0 + }, + { + "begin": 865, + "end": 1014, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 865, + "end": 1014, + "name": "POP", + "source": 0 + }, + { + "begin": 865, + "end": 1014, + "name": "JUMP", + "source": 0, + "value": "[out]" + }, + { + "begin": 587, + "end": 689, + "name": "tag", + "source": 0, + "value": "21" + }, + { + "begin": 587, + "end": 689, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 637, + "end": 650, + "name": "PUSH", + "source": 0, + "value": "60" + }, + { + "begin": 670, + "end": 674, + "name": "PUSH", + "source": 0, + "value": "0" + }, + { + "begin": 675, + "end": 680, + "name": "DUP3", + "source": 0 + }, + { + "begin": 670, + "end": 681, + "name": "DUP2", + "source": 0 + }, + { + "begin": 670, + "end": 681, + "name": "SLOAD", + "source": 0 + }, + { + "begin": 670, + "end": 681, + "name": "DUP2", + "source": 0 + }, + { + "begin": 670, + "end": 681, + "name": "LT", + "source": 0 + }, + { + "begin": 670, + "end": 681, + "name": "PUSH [tag]", + "source": 0, + "value": "59" + }, + { + "begin": 670, + "end": 681, + "name": "JUMPI", + "source": 0 + }, + { + "begin": 670, + "end": 681, + "name": "PUSH [tag]", + "source": 0, + "value": "60" + }, + { + "begin": 670, + "end": 681, + "name": "PUSH [tag]", + "source": 0, + "value": "61" + }, + { + "begin": 670, + "end": 681, + "name": "JUMP", + "source": 0, + "value": "[in]" + }, + { + "begin": 670, + "end": 681, + "name": "tag", + "source": 0, + "value": "60" + }, + { + "begin": 670, + "end": 681, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 670, + "end": 681, + "name": "tag", + "source": 0, + "value": "59" + }, + { + "begin": 670, + "end": 681, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 670, + "end": 681, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 670, + "end": 681, + "name": "PUSH", + "source": 0, + "value": "0" + }, + { + "begin": 670, + "end": 681, + "name": "MSTORE", + "source": 0 + }, + { + "begin": 670, + "end": 681, + "name": "PUSH", + "source": 0, + "value": "20" + }, + { + "begin": 670, + "end": 681, + "name": "PUSH", + "source": 0, + "value": "0" + }, + { + "begin": 670, + "end": 681, + "name": "KECCAK256", + "source": 0 + }, + { + "begin": 670, + "end": 681, + "name": "ADD", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "DUP1", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "SLOAD", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "PUSH [tag]", + "source": 0, + "value": "63" + }, + { + "begin": 663, + "end": 681, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "PUSH [tag]", + "source": 0, + "value": "64" + }, + { + "begin": 663, + "end": 681, + "name": "JUMP", + "source": 0, + "value": "[in]" + }, + { + "begin": 663, + "end": 681, + "name": "tag", + "source": 0, + "value": "63" + }, + { + "begin": 663, + "end": 681, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "DUP1", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "PUSH", + "source": 0, + "value": "1F" + }, + { + "begin": 663, + "end": 681, + "name": "ADD", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "PUSH", + "source": 0, + "value": "20" + }, + { + "begin": 663, + "end": 681, + "name": "DUP1", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "SWAP2", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "DIV", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "MUL", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "PUSH", + "source": 0, + "value": "20" + }, + { + "begin": 663, + "end": 681, + "name": "ADD", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "PUSH", + "source": 0, + "value": "40" + }, + { + "begin": 663, + "end": 681, + "name": "MLOAD", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "DUP2", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "ADD", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "PUSH", + "source": 0, + "value": "40" + }, + { + "begin": 663, + "end": 681, + "name": "MSTORE", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "DUP1", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "SWAP3", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "SWAP2", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "DUP2", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "DUP2", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "MSTORE", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "PUSH", + "source": 0, + "value": "20" + }, + { + "begin": 663, + "end": 681, + "name": "ADD", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "DUP3", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "DUP1", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "SLOAD", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "PUSH [tag]", + "source": 0, + "value": "65" + }, + { + "begin": 663, + "end": 681, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "PUSH [tag]", + "source": 0, + "value": "64" + }, + { + "begin": 663, + "end": 681, + "name": "JUMP", + "source": 0, + "value": "[in]" + }, + { + "begin": 663, + "end": 681, + "name": "tag", + "source": 0, + "value": "65" + }, + { + "begin": 663, + "end": 681, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "DUP1", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "ISZERO", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "PUSH [tag]", + "source": 0, + "value": "66" + }, + { + "begin": 663, + "end": 681, + "name": "JUMPI", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "DUP1", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "PUSH", + "source": 0, + "value": "1F" + }, + { + "begin": 663, + "end": 681, + "name": "LT", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "PUSH [tag]", + "source": 0, + "value": "67" + }, + { + "begin": 663, + "end": 681, + "name": "JUMPI", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "PUSH", + "source": 0, + "value": "100" + }, + { + "begin": 663, + "end": 681, + "name": "DUP1", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "DUP4", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "SLOAD", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "DIV", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "MUL", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "DUP4", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "MSTORE", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "SWAP2", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "PUSH", + "source": 0, + "value": "20" + }, + { + "begin": 663, + "end": 681, + "name": "ADD", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "SWAP2", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "PUSH [tag]", + "source": 0, + "value": "66" + }, + { + "begin": 663, + "end": 681, + "name": "JUMP", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "tag", + "source": 0, + "value": "67" + }, + { + "begin": 663, + "end": 681, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "DUP3", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "ADD", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "SWAP2", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "PUSH", + "source": 0, + "value": "0" + }, + { + "begin": 663, + "end": 681, + "name": "MSTORE", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "PUSH", + "source": 0, + "value": "20" + }, + { + "begin": 663, + "end": 681, + "name": "PUSH", + "source": 0, + "value": "0" + }, + { + "begin": 663, + "end": 681, + "name": "KECCAK256", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "tag", + "source": 0, + "value": "68" + }, + { + "begin": 663, + "end": 681, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "DUP2", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "SLOAD", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "DUP2", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "MSTORE", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "PUSH", + "source": 0, + "value": "1" + }, + { + "begin": 663, + "end": 681, + "name": "ADD", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "PUSH", + "source": 0, + "value": "20" + }, + { + "begin": 663, + "end": 681, + "name": "ADD", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "DUP1", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "DUP4", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "GT", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "PUSH [tag]", + "source": 0, + "value": "68" + }, + { + "begin": 663, + "end": 681, + "name": "JUMPI", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "DUP3", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "SUB", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "PUSH", + "source": 0, + "value": "1F" + }, + { + "begin": 663, + "end": 681, + "name": "AND", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "DUP3", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "ADD", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "SWAP2", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "tag", + "source": 0, + "value": "66" + }, + { + "begin": 663, + "end": 681, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "POP", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "POP", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "POP", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "POP", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "POP", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 663, + "end": 681, + "name": "POP", + "source": 0 + }, + { + "begin": 587, + "end": 689, + "name": "SWAP2", + "source": 0 + }, + { + "begin": 587, + "end": 689, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 587, + "end": 689, + "name": "POP", + "source": 0 + }, + { + "begin": 587, + "end": 689, + "name": "JUMP", + "source": 0, + "value": "[out]" + }, + { + "begin": 1233, + "end": 1332, + "name": "tag", + "source": 0, + "value": "27" + }, + { + "begin": 1233, + "end": 1332, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 420, + "end": 425, + "name": "PUSH", + "source": 0, + "value": "1" + }, + { + "begin": 420, + "end": 425, + "name": "PUSH", + "source": 0, + "value": "0" + }, + { + "begin": 420, + "end": 425, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 420, + "end": 425, + "name": "SLOAD", + "source": 0 + }, + { + "begin": 420, + "end": 425, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 420, + "end": 425, + "name": "PUSH", + "source": 0, + "value": "100" + }, + { + "begin": 420, + "end": 425, + "name": "EXP", + "source": 0 + }, + { + "begin": 420, + "end": 425, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 420, + "end": 425, + "name": "DIV", + "source": 0 + }, + { + "begin": 420, + "end": 425, + "name": "PUSH", + "source": 0, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 420, + "end": 425, + "name": "AND", + "source": 0 + }, + { + "begin": 406, + "end": 425, + "name": "PUSH", + "source": 0, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 406, + "end": 425, + "name": "AND", + "source": 0 + }, + { + "begin": 406, + "end": 416, + "name": "CALLER", + "source": 0 + }, + { + "begin": 406, + "end": 425, + "name": "PUSH", + "source": 0, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 406, + "end": 425, + "name": "AND", + "source": 0 + }, + { + "begin": 406, + "end": 425, + "name": "EQ", + "source": 0 + }, + { + "begin": 398, + "end": 439, + "name": "PUSH [tag]", + "source": 0, + "value": "70" + }, + { + "begin": 398, + "end": 439, + "name": "JUMPI", + "source": 0 + }, + { + "begin": 398, + "end": 439, + "name": "PUSH", + "source": 0, + "value": "40" + }, + { + "begin": 398, + "end": 439, + "name": "MLOAD", + "source": 0 + }, + { + "begin": 398, + "end": 439, + "name": "PUSH", + "source": 0, + "value": "8C379A000000000000000000000000000000000000000000000000000000000" + }, + { + "begin": 398, + "end": 439, + "name": "DUP2", + "source": 0 + }, + { + "begin": 398, + "end": 439, + "name": "MSTORE", + "source": 0 + }, + { + "begin": 398, + "end": 439, + "name": "PUSH", + "source": 0, + "value": "4" + }, + { + "begin": 398, + "end": 439, + "name": "ADD", + "source": 0 + }, + { + "begin": 398, + "end": 439, + "name": "PUSH [tag]", + "source": 0, + "value": "71" + }, + { + "begin": 398, + "end": 439, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 398, + "end": 439, + "name": "PUSH [tag]", + "source": 0, + "value": "72" + }, + { + "begin": 398, + "end": 439, + "name": "JUMP", + "source": 0, + "value": "[in]" + }, + { + "begin": 398, + "end": 439, + "name": "tag", + "source": 0, + "value": "71" + }, + { + "begin": 398, + "end": 439, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 398, + "end": 439, + "name": "PUSH", + "source": 0, + "value": "40" + }, + { + "begin": 398, + "end": 439, + "name": "MLOAD", + "source": 0 + }, + { + "begin": 398, + "end": 439, + "name": "DUP1", + "source": 0 + }, + { + "begin": 398, + "end": 439, + "name": "SWAP2", + "source": 0 + }, + { + "begin": 398, + "end": 439, + "name": "SUB", + "source": 0 + }, + { + "begin": 398, + "end": 439, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 398, + "end": 439, + "name": "REVERT", + "source": 0 + }, + { + "begin": 398, + "end": 439, + "name": "tag", + "source": 0, + "value": "70" + }, + { + "begin": 398, + "end": 439, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 1319, + "end": 1324, + "name": "PUSH", + "source": 0, + "value": "0" + }, + { + "begin": 1298, + "end": 1307, + "name": "PUSH", + "source": 0, + "value": "2" + }, + { + "begin": 1298, + "end": 1316, + "name": "PUSH", + "source": 0, + "value": "0" + }, + { + "begin": 1308, + "end": 1315, + "name": "DUP4", + "source": 0 + }, + { + "begin": 1298, + "end": 1316, + "name": "PUSH", + "source": 0, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 1298, + "end": 1316, + "name": "AND", + "source": 0 + }, + { + "begin": 1298, + "end": 1316, + "name": "PUSH", + "source": 0, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 1298, + "end": 1316, + "name": "AND", + "source": 0 + }, + { + "begin": 1298, + "end": 1316, + "name": "DUP2", + "source": 0 + }, + { + "begin": 1298, + "end": 1316, + "name": "MSTORE", + "source": 0 + }, + { + "begin": 1298, + "end": 1316, + "name": "PUSH", + "source": 0, + "value": "20" + }, + { + "begin": 1298, + "end": 1316, + "name": "ADD", + "source": 0 + }, + { + "begin": 1298, + "end": 1316, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 1298, + "end": 1316, + "name": "DUP2", + "source": 0 + }, + { + "begin": 1298, + "end": 1316, + "name": "MSTORE", + "source": 0 + }, + { + "begin": 1298, + "end": 1316, + "name": "PUSH", + "source": 0, + "value": "20" + }, + { + "begin": 1298, + "end": 1316, + "name": "ADD", + "source": 0 + }, + { + "begin": 1298, + "end": 1316, + "name": "PUSH", + "source": 0, + "value": "0" + }, + { + "begin": 1298, + "end": 1316, + "name": "KECCAK256", + "source": 0 + }, + { + "begin": 1298, + "end": 1316, + "name": "PUSH", + "source": 0, + "value": "0" + }, + { + "begin": 1298, + "end": 1324, + "name": "PUSH", + "source": 0, + "value": "100" + }, + { + "begin": 1298, + "end": 1324, + "name": "EXP", + "source": 0 + }, + { + "begin": 1298, + "end": 1324, + "name": "DUP2", + "source": 0 + }, + { + "begin": 1298, + "end": 1324, + "name": "SLOAD", + "source": 0 + }, + { + "begin": 1298, + "end": 1324, + "name": "DUP2", + "source": 0 + }, + { + "begin": 1298, + "end": 1324, + "name": "PUSH", + "source": 0, + "value": "FF" + }, + { + "begin": 1298, + "end": 1324, + "name": "MUL", + "source": 0 + }, + { + "begin": 1298, + "end": 1324, + "name": "NOT", + "source": 0 + }, + { + "begin": 1298, + "end": 1324, + "name": "AND", + "source": 0 + }, + { + "begin": 1298, + "end": 1324, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 1298, + "end": 1324, + "name": "DUP4", + "source": 0 + }, + { + "begin": 1298, + "end": 1324, + "name": "ISZERO", + "source": 0 + }, + { + "begin": 1298, + "end": 1324, + "name": "ISZERO", + "source": 0 + }, + { + "begin": 1298, + "end": 1324, + "name": "MUL", + "source": 0 + }, + { + "begin": 1298, + "end": 1324, + "name": "OR", + "source": 0 + }, + { + "begin": 1298, + "end": 1324, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 1298, + "end": 1324, + "name": "SSTORE", + "source": 0 + }, + { + "begin": 1298, + "end": 1324, + "name": "POP", + "source": 0 + }, + { + "begin": 1233, + "end": 1332, + "name": "POP", + "source": 0 + }, + { + "begin": 1233, + "end": 1332, + "name": "JUMP", + "source": 0, + "value": "[out]" + }, + { + "begin": 157, + "end": 199, + "name": "tag", + "source": 0, + "value": "30" + }, + { + "begin": 157, + "end": 199, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 157, + "end": 199, + "name": "PUSH", + "source": 0, + "value": "2" + }, + { + "begin": 157, + "end": 199, + "name": "PUSH", + "source": 0, + "value": "20" + }, + { + "begin": 157, + "end": 199, + "name": "MSTORE", + "source": 0 + }, + { + "begin": 157, + "end": 199, + "name": "DUP1", + "source": 0 + }, + { + "begin": 157, + "end": 199, + "name": "PUSH", + "source": 0, + "value": "0" + }, + { + "begin": 157, + "end": 199, + "name": "MSTORE", + "source": 0 + }, + { + "begin": 157, + "end": 199, + "name": "PUSH", + "source": 0, + "value": "40" + }, + { + "begin": 157, + "end": 199, + "name": "PUSH", + "source": 0, + "value": "0" + }, + { + "begin": 157, + "end": 199, + "name": "KECCAK256", + "source": 0 + }, + { + "begin": 157, + "end": 199, + "name": "PUSH", + "source": 0, + "value": "0" + }, + { + "begin": 157, + "end": 199, + "name": "SWAP2", + "source": 0 + }, + { + "begin": 157, + "end": 199, + "name": "POP", + "source": 0 + }, + { + "begin": 157, + "end": 199, + "name": "SLOAD", + "source": 0 + }, + { + "begin": 157, + "end": 199, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 157, + "end": 199, + "name": "PUSH", + "source": 0, + "value": "100" + }, + { + "begin": 157, + "end": 199, + "name": "EXP", + "source": 0 + }, + { + "begin": 157, + "end": 199, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 157, + "end": 199, + "name": "DIV", + "source": 0 + }, + { + "begin": 157, + "end": 199, + "name": "PUSH", + "source": 0, + "value": "FF" + }, + { + "begin": 157, + "end": 199, + "name": "AND", + "source": 0 + }, + { + "begin": 157, + "end": 199, + "name": "DUP2", + "source": 0 + }, + { + "begin": 157, + "end": 199, + "name": "JUMP", + "source": 0, + "value": "[out]" + }, + { + "begin": 130, + "end": 150, + "name": "tag", + "source": 0, + "value": "34" + }, + { + "begin": 130, + "end": 150, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 130, + "end": 150, + "name": "PUSH", + "source": 0, + "value": "1" + }, + { + "begin": 130, + "end": 150, + "name": "PUSH", + "source": 0, + "value": "0" + }, + { + "begin": 130, + "end": 150, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 130, + "end": 150, + "name": "SLOAD", + "source": 0 + }, + { + "begin": 130, + "end": 150, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 130, + "end": 150, + "name": "PUSH", + "source": 0, + "value": "100" + }, + { + "begin": 130, + "end": 150, + "name": "EXP", + "source": 0 + }, + { + "begin": 130, + "end": 150, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 130, + "end": 150, + "name": "DIV", + "source": 0 + }, + { + "begin": 130, + "end": 150, + "name": "PUSH", + "source": 0, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 130, + "end": 150, + "name": "AND", + "source": 0 + }, + { + "begin": 130, + "end": 150, + "name": "DUP2", + "source": 0 + }, + { + "begin": 130, + "end": 150, + "name": "JUMP", + "source": 0, + "value": "[out]" + }, + { + "begin": 698, + "end": 854, + "name": "tag", + "source": 0, + "value": "40" + }, + { + "begin": 698, + "end": 854, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 535, + "end": 539, + "name": "PUSH", + "source": 0, + "value": "1" + }, + { + "begin": 510, + "end": 539, + "name": "ISZERO", + "source": 0 + }, + { + "begin": 510, + "end": 539, + "name": "ISZERO", + "source": 0 + }, + { + "begin": 510, + "end": 519, + "name": "PUSH", + "source": 0, + "value": "2" + }, + { + "begin": 510, + "end": 531, + "name": "PUSH", + "source": 0, + "value": "0" + }, + { + "begin": 520, + "end": 530, + "name": "CALLER", + "source": 0 + }, + { + "begin": 510, + "end": 531, + "name": "PUSH", + "source": 0, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 510, + "end": 531, + "name": "AND", + "source": 0 + }, + { + "begin": 510, + "end": 531, + "name": "PUSH", + "source": 0, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 510, + "end": 531, + "name": "AND", + "source": 0 + }, + { + "begin": 510, + "end": 531, + "name": "DUP2", + "source": 0 + }, + { + "begin": 510, + "end": 531, + "name": "MSTORE", + "source": 0 + }, + { + "begin": 510, + "end": 531, + "name": "PUSH", + "source": 0, + "value": "20" + }, + { + "begin": 510, + "end": 531, + "name": "ADD", + "source": 0 + }, + { + "begin": 510, + "end": 531, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 510, + "end": 531, + "name": "DUP2", + "source": 0 + }, + { + "begin": 510, + "end": 531, + "name": "MSTORE", + "source": 0 + }, + { + "begin": 510, + "end": 531, + "name": "PUSH", + "source": 0, + "value": "20" + }, + { + "begin": 510, + "end": 531, + "name": "ADD", + "source": 0 + }, + { + "begin": 510, + "end": 531, + "name": "PUSH", + "source": 0, + "value": "0" + }, + { + "begin": 510, + "end": 531, + "name": "KECCAK256", + "source": 0 + }, + { + "begin": 510, + "end": 531, + "name": "PUSH", + "source": 0, + "value": "0" + }, + { + "begin": 510, + "end": 531, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 510, + "end": 531, + "name": "SLOAD", + "source": 0 + }, + { + "begin": 510, + "end": 531, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 510, + "end": 531, + "name": "PUSH", + "source": 0, + "value": "100" + }, + { + "begin": 510, + "end": 531, + "name": "EXP", + "source": 0 + }, + { + "begin": 510, + "end": 531, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 510, + "end": 531, + "name": "DIV", + "source": 0 + }, + { + "begin": 510, + "end": 531, + "name": "PUSH", + "source": 0, + "value": "FF" + }, + { + "begin": 510, + "end": 531, + "name": "AND", + "source": 0 + }, + { + "begin": 510, + "end": 539, + "name": "ISZERO", + "source": 0 + }, + { + "begin": 510, + "end": 539, + "name": "ISZERO", + "source": 0 + }, + { + "begin": 510, + "end": 539, + "name": "EQ", + "source": 0 + }, + { + "begin": 502, + "end": 558, + "name": "PUSH [tag]", + "source": 0, + "value": "75" + }, + { + "begin": 502, + "end": 558, + "name": "JUMPI", + "source": 0 + }, + { + "begin": 502, + "end": 558, + "name": "PUSH", + "source": 0, + "value": "40" + }, + { + "begin": 502, + "end": 558, + "name": "MLOAD", + "source": 0 + }, + { + "begin": 502, + "end": 558, + "name": "PUSH", + "source": 0, + "value": "8C379A000000000000000000000000000000000000000000000000000000000" + }, + { + "begin": 502, + "end": 558, + "name": "DUP2", + "source": 0 + }, + { + "begin": 502, + "end": 558, + "name": "MSTORE", + "source": 0 + }, + { + "begin": 502, + "end": 558, + "name": "PUSH", + "source": 0, + "value": "4" + }, + { + "begin": 502, + "end": 558, + "name": "ADD", + "source": 0 + }, + { + "begin": 502, + "end": 558, + "name": "PUSH [tag]", + "source": 0, + "value": "76" + }, + { + "begin": 502, + "end": 558, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 502, + "end": 558, + "name": "PUSH [tag]", + "source": 0, + "value": "51" + }, + { + "begin": 502, + "end": 558, + "name": "JUMP", + "source": 0, + "value": "[in]" + }, + { + "begin": 502, + "end": 558, + "name": "tag", + "source": 0, + "value": "76" + }, + { + "begin": 502, + "end": 558, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 502, + "end": 558, + "name": "PUSH", + "source": 0, + "value": "40" + }, + { + "begin": 502, + "end": 558, + "name": "MLOAD", + "source": 0 + }, + { + "begin": 502, + "end": 558, + "name": "DUP1", + "source": 0 + }, + { + "begin": 502, + "end": 558, + "name": "SWAP2", + "source": 0 + }, + { + "begin": 502, + "end": 558, + "name": "SUB", + "source": 0 + }, + { + "begin": 502, + "end": 558, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 502, + "end": 558, + "name": "REVERT", + "source": 0 + }, + { + "begin": 502, + "end": 558, + "name": "tag", + "source": 0, + "value": "75" + }, + { + "begin": 502, + "end": 558, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 785, + "end": 816, + "name": "PUSH", + "source": 0, + "value": "305058D54DB6DAF26994CD687B168A24CDD9A7201462F1659782C4E429987992" + }, + { + "begin": 797, + "end": 801, + "name": "PUSH", + "source": 0, + "value": "0" + }, + { + "begin": 802, + "end": 807, + "name": "DUP4", + "source": 0 + }, + { + "begin": 797, + "end": 808, + "name": "DUP2", + "source": 0 + }, + { + "begin": 797, + "end": 808, + "name": "SLOAD", + "source": 0 + }, + { + "begin": 797, + "end": 808, + "name": "DUP2", + "source": 0 + }, + { + "begin": 797, + "end": 808, + "name": "LT", + "source": 0 + }, + { + "begin": 797, + "end": 808, + "name": "PUSH [tag]", + "source": 0, + "value": "78" + }, + { + "begin": 797, + "end": 808, + "name": "JUMPI", + "source": 0 + }, + { + "begin": 797, + "end": 808, + "name": "PUSH [tag]", + "source": 0, + "value": "79" + }, + { + "begin": 797, + "end": 808, + "name": "PUSH [tag]", + "source": 0, + "value": "61" + }, + { + "begin": 797, + "end": 808, + "name": "JUMP", + "source": 0, + "value": "[in]" + }, + { + "begin": 797, + "end": 808, + "name": "tag", + "source": 0, + "value": "79" + }, + { + "begin": 797, + "end": 808, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 797, + "end": 808, + "name": "tag", + "source": 0, + "value": "78" + }, + { + "begin": 797, + "end": 808, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 797, + "end": 808, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 797, + "end": 808, + "name": "PUSH", + "source": 0, + "value": "0" + }, + { + "begin": 797, + "end": 808, + "name": "MSTORE", + "source": 0 + }, + { + "begin": 797, + "end": 808, + "name": "PUSH", + "source": 0, + "value": "20" + }, + { + "begin": 797, + "end": 808, + "name": "PUSH", + "source": 0, + "value": "0" + }, + { + "begin": 797, + "end": 808, + "name": "KECCAK256", + "source": 0 + }, + { + "begin": 797, + "end": 808, + "name": "ADD", + "source": 0 + }, + { + "begin": 810, + "end": 815, + "name": "DUP3", + "source": 0 + }, + { + "begin": 785, + "end": 816, + "name": "PUSH", + "source": 0, + "value": "40" + }, + { + "begin": 785, + "end": 816, + "name": "MLOAD", + "source": 0 + }, + { + "begin": 785, + "end": 816, + "name": "PUSH [tag]", + "source": 0, + "value": "81" + }, + { + "begin": 785, + "end": 816, + "name": "SWAP3", + "source": 0 + }, + { + "begin": 785, + "end": 816, + "name": "SWAP2", + "source": 0 + }, + { + "begin": 785, + "end": 816, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 785, + "end": 816, + "name": "PUSH [tag]", + "source": 0, + "value": "82" + }, + { + "begin": 785, + "end": 816, + "name": "JUMP", + "source": 0, + "value": "[in]" + }, + { + "begin": 785, + "end": 816, + "name": "tag", + "source": 0, + "value": "81" + }, + { + "begin": 785, + "end": 816, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 785, + "end": 816, + "name": "PUSH", + "source": 0, + "value": "40" + }, + { + "begin": 785, + "end": 816, + "name": "MLOAD", + "source": 0 + }, + { + "begin": 785, + "end": 816, + "name": "DUP1", + "source": 0 + }, + { + "begin": 785, + "end": 816, + "name": "SWAP2", + "source": 0 + }, + { + "begin": 785, + "end": 816, + "name": "SUB", + "source": 0 + }, + { + "begin": 785, + "end": 816, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 785, + "end": 816, + "name": "LOG1", + "source": 0 + }, + { + "begin": 841, + "end": 846, + "name": "DUP1", + "source": 0 + }, + { + "begin": 827, + "end": 831, + "name": "PUSH", + "source": 0, + "value": "0" + }, + { + "begin": 832, + "end": 837, + "name": "DUP4", + "source": 0 + }, + { + "begin": 827, + "end": 838, + "name": "DUP2", + "source": 0 + }, + { + "begin": 827, + "end": 838, + "name": "SLOAD", + "source": 0 + }, + { + "begin": 827, + "end": 838, + "name": "DUP2", + "source": 0 + }, + { + "begin": 827, + "end": 838, + "name": "LT", + "source": 0 + }, + { + "begin": 827, + "end": 838, + "name": "PUSH [tag]", + "source": 0, + "value": "83" + }, + { + "begin": 827, + "end": 838, + "name": "JUMPI", + "source": 0 + }, + { + "begin": 827, + "end": 838, + "name": "PUSH [tag]", + "source": 0, + "value": "84" + }, + { + "begin": 827, + "end": 838, + "name": "PUSH [tag]", + "source": 0, + "value": "61" + }, + { + "begin": 827, + "end": 838, + "name": "JUMP", + "source": 0, + "value": "[in]" + }, + { + "begin": 827, + "end": 838, + "name": "tag", + "source": 0, + "value": "84" + }, + { + "begin": 827, + "end": 838, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 827, + "end": 838, + "name": "tag", + "source": 0, + "value": "83" + }, + { + "begin": 827, + "end": 838, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 827, + "end": 838, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 827, + "end": 838, + "name": "PUSH", + "source": 0, + "value": "0" + }, + { + "begin": 827, + "end": 838, + "name": "MSTORE", + "source": 0 + }, + { + "begin": 827, + "end": 838, + "name": "PUSH", + "source": 0, + "value": "20" + }, + { + "begin": 827, + "end": 838, + "name": "PUSH", + "source": 0, + "value": "0" + }, + { + "begin": 827, + "end": 838, + "name": "KECCAK256", + "source": 0 + }, + { + "begin": 827, + "end": 838, + "name": "ADD", + "source": 0 + }, + { + "begin": 827, + "end": 846, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 827, + "end": 846, + "name": "DUP1", + "source": 0 + }, + { + "begin": 827, + "end": 846, + "name": "MLOAD", + "source": 0 + }, + { + "begin": 827, + "end": 846, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 827, + "end": 846, + "name": "PUSH", + "source": 0, + "value": "20" + }, + { + "begin": 827, + "end": 846, + "name": "ADD", + "source": 0 + }, + { + "begin": 827, + "end": 846, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 827, + "end": 846, + "name": "PUSH [tag]", + "source": 0, + "value": "86" + }, + { + "begin": 827, + "end": 846, + "name": "SWAP3", + "source": 0 + }, + { + "begin": 827, + "end": 846, + "name": "SWAP2", + "source": 0 + }, + { + "begin": 827, + "end": 846, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 827, + "end": 846, + "name": "PUSH [tag]", + "source": 0, + "value": "55" + }, + { + "begin": 827, + "end": 846, + "name": "JUMP", + "source": 0, + "value": "[in]" + }, + { + "begin": 827, + "end": 846, + "name": "tag", + "source": 0, + "value": "86" + }, + { + "begin": 827, + "end": 846, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 827, + "end": 846, + "name": "POP", + "source": 0 + }, + { + "begin": 698, + "end": 854, + "name": "POP", + "source": 0 + }, + { + "begin": 698, + "end": 854, + "name": "POP", + "source": 0 + }, + { + "begin": 698, + "end": 854, + "name": "JUMP", + "source": 0, + "value": "[out]" + }, + { + "begin": 1124, + "end": 1222, + "name": "tag", + "source": 0, + "value": "43" + }, + { + "begin": 1124, + "end": 1222, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 420, + "end": 425, + "name": "PUSH", + "source": 0, + "value": "1" + }, + { + "begin": 420, + "end": 425, + "name": "PUSH", + "source": 0, + "value": "0" + }, + { + "begin": 420, + "end": 425, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 420, + "end": 425, + "name": "SLOAD", + "source": 0 + }, + { + "begin": 420, + "end": 425, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 420, + "end": 425, + "name": "PUSH", + "source": 0, + "value": "100" + }, + { + "begin": 420, + "end": 425, + "name": "EXP", + "source": 0 + }, + { + "begin": 420, + "end": 425, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 420, + "end": 425, + "name": "DIV", + "source": 0 + }, + { + "begin": 420, + "end": 425, + "name": "PUSH", + "source": 0, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 420, + "end": 425, + "name": "AND", + "source": 0 + }, + { + "begin": 406, + "end": 425, + "name": "PUSH", + "source": 0, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 406, + "end": 425, + "name": "AND", + "source": 0 + }, + { + "begin": 406, + "end": 416, + "name": "CALLER", + "source": 0 + }, + { + "begin": 406, + "end": 425, + "name": "PUSH", + "source": 0, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 406, + "end": 425, + "name": "AND", + "source": 0 + }, + { + "begin": 406, + "end": 425, + "name": "EQ", + "source": 0 + }, + { + "begin": 398, + "end": 439, + "name": "PUSH [tag]", + "source": 0, + "value": "88" + }, + { + "begin": 398, + "end": 439, + "name": "JUMPI", + "source": 0 + }, + { + "begin": 398, + "end": 439, + "name": "PUSH", + "source": 0, + "value": "40" + }, + { + "begin": 398, + "end": 439, + "name": "MLOAD", + "source": 0 + }, + { + "begin": 398, + "end": 439, + "name": "PUSH", + "source": 0, + "value": "8C379A000000000000000000000000000000000000000000000000000000000" + }, + { + "begin": 398, + "end": 439, + "name": "DUP2", + "source": 0 + }, + { + "begin": 398, + "end": 439, + "name": "MSTORE", + "source": 0 + }, + { + "begin": 398, + "end": 439, + "name": "PUSH", + "source": 0, + "value": "4" + }, + { + "begin": 398, + "end": 439, + "name": "ADD", + "source": 0 + }, + { + "begin": 398, + "end": 439, + "name": "PUSH [tag]", + "source": 0, + "value": "89" + }, + { + "begin": 398, + "end": 439, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 398, + "end": 439, + "name": "PUSH [tag]", + "source": 0, + "value": "72" + }, + { + "begin": 398, + "end": 439, + "name": "JUMP", + "source": 0, + "value": "[in]" + }, + { + "begin": 398, + "end": 439, + "name": "tag", + "source": 0, + "value": "89" + }, + { + "begin": 398, + "end": 439, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 398, + "end": 439, + "name": "PUSH", + "source": 0, + "value": "40" + }, + { + "begin": 398, + "end": 439, + "name": "MLOAD", + "source": 0 + }, + { + "begin": 398, + "end": 439, + "name": "DUP1", + "source": 0 + }, + { + "begin": 398, + "end": 439, + "name": "SWAP2", + "source": 0 + }, + { + "begin": 398, + "end": 439, + "name": "SUB", + "source": 0 + }, + { + "begin": 398, + "end": 439, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 398, + "end": 439, + "name": "REVERT", + "source": 0 + }, + { + "begin": 398, + "end": 439, + "name": "tag", + "source": 0, + "value": "88" + }, + { + "begin": 398, + "end": 439, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 1210, + "end": 1214, + "name": "PUSH", + "source": 0, + "value": "1" + }, + { + "begin": 1189, + "end": 1198, + "name": "PUSH", + "source": 0, + "value": "2" + }, + { + "begin": 1189, + "end": 1207, + "name": "PUSH", + "source": 0, + "value": "0" + }, + { + "begin": 1199, + "end": 1206, + "name": "DUP4", + "source": 0 + }, + { + "begin": 1189, + "end": 1207, + "name": "PUSH", + "source": 0, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 1189, + "end": 1207, + "name": "AND", + "source": 0 + }, + { + "begin": 1189, + "end": 1207, + "name": "PUSH", + "source": 0, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 1189, + "end": 1207, + "name": "AND", + "source": 0 + }, + { + "begin": 1189, + "end": 1207, + "name": "DUP2", + "source": 0 + }, + { + "begin": 1189, + "end": 1207, + "name": "MSTORE", + "source": 0 + }, + { + "begin": 1189, + "end": 1207, + "name": "PUSH", + "source": 0, + "value": "20" + }, + { + "begin": 1189, + "end": 1207, + "name": "ADD", + "source": 0 + }, + { + "begin": 1189, + "end": 1207, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 1189, + "end": 1207, + "name": "DUP2", + "source": 0 + }, + { + "begin": 1189, + "end": 1207, + "name": "MSTORE", + "source": 0 + }, + { + "begin": 1189, + "end": 1207, + "name": "PUSH", + "source": 0, + "value": "20" + }, + { + "begin": 1189, + "end": 1207, + "name": "ADD", + "source": 0 + }, + { + "begin": 1189, + "end": 1207, + "name": "PUSH", + "source": 0, + "value": "0" + }, + { + "begin": 1189, + "end": 1207, + "name": "KECCAK256", + "source": 0 + }, + { + "begin": 1189, + "end": 1207, + "name": "PUSH", + "source": 0, + "value": "0" + }, + { + "begin": 1189, + "end": 1214, + "name": "PUSH", + "source": 0, + "value": "100" + }, + { + "begin": 1189, + "end": 1214, + "name": "EXP", + "source": 0 + }, + { + "begin": 1189, + "end": 1214, + "name": "DUP2", + "source": 0 + }, + { + "begin": 1189, + "end": 1214, + "name": "SLOAD", + "source": 0 + }, + { + "begin": 1189, + "end": 1214, + "name": "DUP2", + "source": 0 + }, + { + "begin": 1189, + "end": 1214, + "name": "PUSH", + "source": 0, + "value": "FF" + }, + { + "begin": 1189, + "end": 1214, + "name": "MUL", + "source": 0 + }, + { + "begin": 1189, + "end": 1214, + "name": "NOT", + "source": 0 + }, + { + "begin": 1189, + "end": 1214, + "name": "AND", + "source": 0 + }, + { + "begin": 1189, + "end": 1214, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 1189, + "end": 1214, + "name": "DUP4", + "source": 0 + }, + { + "begin": 1189, + "end": 1214, + "name": "ISZERO", + "source": 0 + }, + { + "begin": 1189, + "end": 1214, + "name": "ISZERO", + "source": 0 + }, + { + "begin": 1189, + "end": 1214, + "name": "MUL", + "source": 0 + }, + { + "begin": 1189, + "end": 1214, + "name": "OR", + "source": 0 + }, + { + "begin": 1189, + "end": 1214, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 1189, + "end": 1214, + "name": "SSTORE", + "source": 0 + }, + { + "begin": 1189, + "end": 1214, + "name": "POP", + "source": 0 + }, + { + "begin": 1124, + "end": 1222, + "name": "POP", + "source": 0 + }, + { + "begin": 1124, + "end": 1222, + "name": "JUMP", + "source": 0, + "value": "[out]" + }, + { + "begin": 1027, + "end": 1115, + "name": "tag", + "source": 0, + "value": "45" + }, + { + "begin": 1027, + "end": 1115, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 1068, + "end": 1083, + "name": "PUSH", + "source": 0, + "value": "60" + }, + { + "begin": 1103, + "end": 1107, + "name": "PUSH", + "source": 0, + "value": "0" + }, + { + "begin": 1096, + "end": 1107, + "name": "DUP1", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "SLOAD", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "DUP1", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "PUSH", + "source": 0, + "value": "20" + }, + { + "begin": 1096, + "end": 1107, + "name": "MUL", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "PUSH", + "source": 0, + "value": "20" + }, + { + "begin": 1096, + "end": 1107, + "name": "ADD", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "PUSH", + "source": 0, + "value": "40" + }, + { + "begin": 1096, + "end": 1107, + "name": "MLOAD", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "DUP2", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "ADD", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "PUSH", + "source": 0, + "value": "40" + }, + { + "begin": 1096, + "end": 1107, + "name": "MSTORE", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "DUP1", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "SWAP3", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "SWAP2", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "DUP2", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "DUP2", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "MSTORE", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "PUSH", + "source": 0, + "value": "20" + }, + { + "begin": 1096, + "end": 1107, + "name": "ADD", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "PUSH", + "source": 0, + "value": "0" + }, + { + "begin": 1096, + "end": 1107, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "tag", + "source": 0, + "value": "92" + }, + { + "begin": 1096, + "end": 1107, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "DUP3", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "DUP3", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "LT", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "ISZERO", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "PUSH [tag]", + "source": 0, + "value": "93" + }, + { + "begin": 1096, + "end": 1107, + "name": "JUMPI", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "DUP4", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "DUP3", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "PUSH", + "source": 0, + "value": "0" + }, + { + "begin": 1096, + "end": 1107, + "name": "MSTORE", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "PUSH", + "source": 0, + "value": "20" + }, + { + "begin": 1096, + "end": 1107, + "name": "PUSH", + "source": 0, + "value": "0" + }, + { + "begin": 1096, + "end": 1107, + "name": "KECCAK256", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "ADD", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "DUP1", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "SLOAD", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "PUSH [tag]", + "source": 0, + "value": "95" + }, + { + "begin": 1096, + "end": 1107, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "PUSH [tag]", + "source": 0, + "value": "64" + }, + { + "begin": 1096, + "end": 1107, + "name": "JUMP", + "source": 0, + "value": "[in]" + }, + { + "begin": 1096, + "end": 1107, + "name": "tag", + "source": 0, + "value": "95" + }, + { + "begin": 1096, + "end": 1107, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "DUP1", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "PUSH", + "source": 0, + "value": "1F" + }, + { + "begin": 1096, + "end": 1107, + "name": "ADD", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "PUSH", + "source": 0, + "value": "20" + }, + { + "begin": 1096, + "end": 1107, + "name": "DUP1", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "SWAP2", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "DIV", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "MUL", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "PUSH", + "source": 0, + "value": "20" + }, + { + "begin": 1096, + "end": 1107, + "name": "ADD", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "PUSH", + "source": 0, + "value": "40" + }, + { + "begin": 1096, + "end": 1107, + "name": "MLOAD", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "DUP2", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "ADD", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "PUSH", + "source": 0, + "value": "40" + }, + { + "begin": 1096, + "end": 1107, + "name": "MSTORE", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "DUP1", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "SWAP3", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "SWAP2", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "DUP2", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "DUP2", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "MSTORE", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "PUSH", + "source": 0, + "value": "20" + }, + { + "begin": 1096, + "end": 1107, + "name": "ADD", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "DUP3", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "DUP1", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "SLOAD", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "PUSH [tag]", + "source": 0, + "value": "96" + }, + { + "begin": 1096, + "end": 1107, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "PUSH [tag]", + "source": 0, + "value": "64" + }, + { + "begin": 1096, + "end": 1107, + "name": "JUMP", + "source": 0, + "value": "[in]" + }, + { + "begin": 1096, + "end": 1107, + "name": "tag", + "source": 0, + "value": "96" + }, + { + "begin": 1096, + "end": 1107, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "DUP1", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "ISZERO", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "PUSH [tag]", + "source": 0, + "value": "97" + }, + { + "begin": 1096, + "end": 1107, + "name": "JUMPI", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "DUP1", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "PUSH", + "source": 0, + "value": "1F" + }, + { + "begin": 1096, + "end": 1107, + "name": "LT", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "PUSH [tag]", + "source": 0, + "value": "98" + }, + { + "begin": 1096, + "end": 1107, + "name": "JUMPI", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "PUSH", + "source": 0, + "value": "100" + }, + { + "begin": 1096, + "end": 1107, + "name": "DUP1", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "DUP4", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "SLOAD", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "DIV", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "MUL", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "DUP4", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "MSTORE", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "SWAP2", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "PUSH", + "source": 0, + "value": "20" + }, + { + "begin": 1096, + "end": 1107, + "name": "ADD", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "SWAP2", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "PUSH [tag]", + "source": 0, + "value": "97" + }, + { + "begin": 1096, + "end": 1107, + "name": "JUMP", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "tag", + "source": 0, + "value": "98" + }, + { + "begin": 1096, + "end": 1107, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "DUP3", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "ADD", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "SWAP2", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "PUSH", + "source": 0, + "value": "0" + }, + { + "begin": 1096, + "end": 1107, + "name": "MSTORE", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "PUSH", + "source": 0, + "value": "20" + }, + { + "begin": 1096, + "end": 1107, + "name": "PUSH", + "source": 0, + "value": "0" + }, + { + "begin": 1096, + "end": 1107, + "name": "KECCAK256", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "tag", + "source": 0, + "value": "99" + }, + { + "begin": 1096, + "end": 1107, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "DUP2", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "SLOAD", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "DUP2", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "MSTORE", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "PUSH", + "source": 0, + "value": "1" + }, + { + "begin": 1096, + "end": 1107, + "name": "ADD", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "PUSH", + "source": 0, + "value": "20" + }, + { + "begin": 1096, + "end": 1107, + "name": "ADD", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "DUP1", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "DUP4", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "GT", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "PUSH [tag]", + "source": 0, + "value": "99" + }, + { + "begin": 1096, + "end": 1107, + "name": "JUMPI", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "DUP3", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "SUB", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "PUSH", + "source": 0, + "value": "1F" + }, + { + "begin": 1096, + "end": 1107, + "name": "AND", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "DUP3", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "ADD", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "SWAP2", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "tag", + "source": 0, + "value": "97" + }, + { + "begin": 1096, + "end": 1107, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "POP", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "POP", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "POP", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "POP", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "POP", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "DUP2", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "MSTORE", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "PUSH", + "source": 0, + "value": "20" + }, + { + "begin": 1096, + "end": 1107, + "name": "ADD", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "PUSH", + "source": 0, + "value": "1" + }, + { + "begin": 1096, + "end": 1107, + "name": "ADD", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "PUSH [tag]", + "source": 0, + "value": "92" + }, + { + "begin": 1096, + "end": 1107, + "name": "JUMP", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "tag", + "source": 0, + "value": "93" + }, + { + "begin": 1096, + "end": 1107, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "POP", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "POP", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "POP", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "POP", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 1096, + "end": 1107, + "name": "POP", + "source": 0 + }, + { + "begin": 1027, + "end": 1115, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 1027, + "end": 1115, + "name": "JUMP", + "source": 0, + "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": "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": "100" + }, + { + "begin": -1, + "end": -1, + "name": "SWAP1", + "source": -1 + }, + { + "begin": -1, + "end": -1, + "name": "PUSH [tag]", + "source": -1, + "value": "64" + }, + { + "begin": -1, + "end": -1, + "name": "JUMP", + "source": -1, + "value": "[in]" + }, + { + "begin": -1, + "end": -1, + "name": "tag", + "source": -1, + "value": "100" + }, + { + "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": "102" + }, + { + "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": "101" + }, + { + "begin": -1, + "end": -1, + "name": "JUMP", + "source": -1 + }, + { + "begin": -1, + "end": -1, + "name": "tag", + "source": -1, + "value": "102" + }, + { + "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": "103" + }, + { + "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": "101" + }, + { + "begin": -1, + "end": -1, + "name": "JUMP", + "source": -1 + }, + { + "begin": -1, + "end": -1, + "name": "tag", + "source": -1, + "value": "103" + }, + { + "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": "101" + }, + { + "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": "104" + }, + { + "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": "105" + }, + { + "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": "104" + }, + { + "begin": -1, + "end": -1, + "name": "JUMP", + "source": -1 + }, + { + "begin": -1, + "end": -1, + "name": "tag", + "source": -1, + "value": "105" + }, + { + "begin": -1, + "end": -1, + "name": "JUMPDEST", + "source": -1 + }, + { + "begin": -1, + "end": -1, + "name": "tag", + "source": -1, + "value": "101" + }, + { + "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": "106" + }, + { + "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": "107" + }, + { + "begin": -1, + "end": -1, + "name": "JUMP", + "source": -1, + "value": "[in]" + }, + { + "begin": -1, + "end": -1, + "name": "tag", + "source": -1, + "value": "106" + }, + { + "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": "107" + }, + { + "begin": -1, + "end": -1, + "name": "JUMPDEST", + "source": -1 + }, + { + "begin": -1, + "end": -1, + "name": "tag", + "source": -1, + "value": "108" + }, + { + "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": "109" + }, + { + "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": "108" + }, + { + "begin": -1, + "end": -1, + "name": "JUMP", + "source": -1 + }, + { + "begin": -1, + "end": -1, + "name": "tag", + "source": -1, + "value": "109" + }, + { + "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": 82, + "name": "tag", + "source": 1, + "value": "110" + }, + { + "begin": 7, + "end": 82, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 40, + "end": 46, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 73, + "end": 75, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 67, + "end": 76, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 57, + "end": 76, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 57, + "end": 76, + "name": "POP", + "source": 1 + }, + { + "begin": 7, + "end": 82, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 7, + "end": 82, + "name": "JUMP", + "source": 1, + "value": "[out]" + }, + { + "begin": 88, + "end": 205, + "name": "tag", + "source": 1, + "value": "111" + }, + { + "begin": 88, + "end": 205, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 197, + "end": 198, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 194, + "end": 195, + "name": "DUP1", + "source": 1 + }, + { + "begin": 187, + "end": 199, + "name": "REVERT", + "source": 1 + }, + { + "begin": 211, + "end": 328, + "name": "tag", + "source": 1, + "value": "112" + }, + { + "begin": 211, + "end": 328, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 320, + "end": 321, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 317, + "end": 318, + "name": "DUP1", + "source": 1 + }, + { + "begin": 310, + "end": 322, + "name": "REVERT", + "source": 1 + }, + { + "begin": 334, + "end": 451, + "name": "tag", + "source": 1, + "value": "113" + }, + { + "begin": 334, + "end": 451, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 443, + "end": 444, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 440, + "end": 441, + "name": "DUP1", + "source": 1 + }, + { + "begin": 433, + "end": 445, + "name": "REVERT", + "source": 1 + }, + { + "begin": 457, + "end": 574, + "name": "tag", + "source": 1, + "value": "114" + }, + { + "begin": 457, + "end": 574, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 566, + "end": 567, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 563, + "end": 564, + "name": "DUP1", + "source": 1 + }, + { + "begin": 556, + "end": 568, + "name": "REVERT", + "source": 1 + }, + { + "begin": 580, + "end": 682, + "name": "tag", + "source": 1, + "value": "115" + }, + { + "begin": 580, + "end": 682, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 621, + "end": 627, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 672, + "end": 674, + "name": "PUSH", + "source": 1, + "value": "1F" + }, + { + "begin": 668, + "end": 675, + "name": "NOT", + "source": 1 + }, + { + "begin": 663, + "end": 665, + "name": "PUSH", + "source": 1, + "value": "1F" + }, + { + "begin": 656, + "end": 661, + "name": "DUP4", + "source": 1 + }, + { + "begin": 652, + "end": 666, + "name": "ADD", + "source": 1 + }, + { + "begin": 648, + "end": 676, + "name": "AND", + "source": 1 + }, + { + "begin": 638, + "end": 676, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 638, + "end": 676, + "name": "POP", + "source": 1 + }, + { + "begin": 580, + "end": 682, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 580, + "end": 682, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 580, + "end": 682, + "name": "POP", + "source": 1 + }, + { + "begin": 580, + "end": 682, + "name": "JUMP", + "source": 1, + "value": "[out]" + }, + { + "begin": 688, + "end": 868, + "name": "tag", + "source": 1, + "value": "116" + }, + { + "begin": 688, + "end": 868, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 736, + "end": 813, + "name": "PUSH", + "source": 1, + "value": "4E487B7100000000000000000000000000000000000000000000000000000000" + }, + { + "begin": 733, + "end": 734, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 726, + "end": 814, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 833, + "end": 837, + "name": "PUSH", + "source": 1, + "value": "41" + }, + { + "begin": 830, + "end": 831, + "name": "PUSH", + "source": 1, + "value": "4" + }, + { + "begin": 823, + "end": 838, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 857, + "end": 861, + "name": "PUSH", + "source": 1, + "value": "24" + }, + { + "begin": 854, + "end": 855, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 847, + "end": 862, + "name": "REVERT", + "source": 1 + }, + { + "begin": 874, + "end": 1155, + "name": "tag", + "source": 1, + "value": "117" + }, + { + "begin": 874, + "end": 1155, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 957, + "end": 984, + "name": "PUSH [tag]", + "source": 1, + "value": "163" + }, + { + "begin": 979, + "end": 983, + "name": "DUP3", + "source": 1 + }, + { + "begin": 957, + "end": 984, + "name": "PUSH [tag]", + "source": 1, + "value": "115" + }, + { + "begin": 957, + "end": 984, + "name": "JUMP", + "source": 1, + "value": "[in]" + }, + { + "begin": 957, + "end": 984, + "name": "tag", + "source": 1, + "value": "163" + }, + { + "begin": 957, + "end": 984, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 949, + "end": 955, + "name": "DUP2", + "source": 1 + }, + { + "begin": 945, + "end": 985, + "name": "ADD", + "source": 1 + }, + { + "begin": 1087, + "end": 1093, + "name": "DUP2", + "source": 1 + }, + { + "begin": 1075, + "end": 1085, + "name": "DUP2", + "source": 1 + }, + { + "begin": 1072, + "end": 1094, + "name": "LT", + "source": 1 + }, + { + "begin": 1051, + "end": 1069, + "name": "PUSH", + "source": 1, + "value": "FFFFFFFFFFFFFFFF" + }, + { + "begin": 1039, + "end": 1049, + "name": "DUP3", + "source": 1 + }, + { + "begin": 1036, + "end": 1070, + "name": "GT", + "source": 1 + }, + { + "begin": 1033, + "end": 1095, + "name": "OR", + "source": 1 + }, + { + "begin": 1030, + "end": 1118, + "name": "ISZERO", + "source": 1 + }, + { + "begin": 1030, + "end": 1118, + "name": "PUSH [tag]", + "source": 1, + "value": "164" + }, + { + "begin": 1030, + "end": 1118, + "name": "JUMPI", + "source": 1 + }, + { + "begin": 1098, + "end": 1116, + "name": "PUSH [tag]", + "source": 1, + "value": "165" + }, + { + "begin": 1098, + "end": 1116, + "name": "PUSH [tag]", + "source": 1, + "value": "116" + }, + { + "begin": 1098, + "end": 1116, + "name": "JUMP", + "source": 1, + "value": "[in]" + }, + { + "begin": 1098, + "end": 1116, + "name": "tag", + "source": 1, + "value": "165" + }, + { + "begin": 1098, + "end": 1116, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 1030, + "end": 1118, + "name": "tag", + "source": 1, + "value": "164" + }, + { + "begin": 1030, + "end": 1118, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 1138, + "end": 1148, + "name": "DUP1", + "source": 1 + }, + { + "begin": 1134, + "end": 1136, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 1127, + "end": 1149, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 917, + "end": 1155, + "name": "POP", + "source": 1 + }, + { + "begin": 874, + "end": 1155, + "name": "POP", + "source": 1 + }, + { + "begin": 874, + "end": 1155, + "name": "POP", + "source": 1 + }, + { + "begin": 874, + "end": 1155, + "name": "JUMP", + "source": 1, + "value": "[out]" + }, + { + "begin": 1161, + "end": 1290, + "name": "tag", + "source": 1, + "value": "118" + }, + { + "begin": 1161, + "end": 1290, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 1195, + "end": 1201, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 1222, + "end": 1242, + "name": "PUSH [tag]", + "source": 1, + "value": "167" + }, + { + "begin": 1222, + "end": 1242, + "name": "PUSH [tag]", + "source": 1, + "value": "110" + }, + { + "begin": 1222, + "end": 1242, + "name": "JUMP", + "source": 1, + "value": "[in]" + }, + { + "begin": 1222, + "end": 1242, + "name": "tag", + "source": 1, + "value": "167" + }, + { + "begin": 1222, + "end": 1242, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 1212, + "end": 1242, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 1212, + "end": 1242, + "name": "POP", + "source": 1 + }, + { + "begin": 1251, + "end": 1284, + "name": "PUSH [tag]", + "source": 1, + "value": "168" + }, + { + "begin": 1279, + "end": 1283, + "name": "DUP3", + "source": 1 + }, + { + "begin": 1271, + "end": 1277, + "name": "DUP3", + "source": 1 + }, + { + "begin": 1251, + "end": 1284, + "name": "PUSH [tag]", + "source": 1, + "value": "117" + }, + { + "begin": 1251, + "end": 1284, + "name": "JUMP", + "source": 1, + "value": "[in]" + }, + { + "begin": 1251, + "end": 1284, + "name": "tag", + "source": 1, + "value": "168" + }, + { + "begin": 1251, + "end": 1284, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 1161, + "end": 1290, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 1161, + "end": 1290, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 1161, + "end": 1290, + "name": "POP", + "source": 1 + }, + { + "begin": 1161, + "end": 1290, + "name": "JUMP", + "source": 1, + "value": "[out]" + }, + { + "begin": 1296, + "end": 1604, + "name": "tag", + "source": 1, + "value": "119" + }, + { + "begin": 1296, + "end": 1604, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 1358, + "end": 1362, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 1448, + "end": 1466, + "name": "PUSH", + "source": 1, + "value": "FFFFFFFFFFFFFFFF" + }, + { + "begin": 1440, + "end": 1446, + "name": "DUP3", + "source": 1 + }, + { + "begin": 1437, + "end": 1467, + "name": "GT", + "source": 1 + }, + { + "begin": 1434, + "end": 1490, + "name": "ISZERO", + "source": 1 + }, + { + "begin": 1434, + "end": 1490, + "name": "PUSH [tag]", + "source": 1, + "value": "170" + }, + { + "begin": 1434, + "end": 1490, + "name": "JUMPI", + "source": 1 + }, + { + "begin": 1470, + "end": 1488, + "name": "PUSH [tag]", + "source": 1, + "value": "171" + }, + { + "begin": 1470, + "end": 1488, + "name": "PUSH [tag]", + "source": 1, + "value": "116" + }, + { + "begin": 1470, + "end": 1488, + "name": "JUMP", + "source": 1, + "value": "[in]" + }, + { + "begin": 1470, + "end": 1488, + "name": "tag", + "source": 1, + "value": "171" + }, + { + "begin": 1470, + "end": 1488, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 1434, + "end": 1490, + "name": "tag", + "source": 1, + "value": "170" + }, + { + "begin": 1434, + "end": 1490, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 1508, + "end": 1537, + "name": "PUSH [tag]", + "source": 1, + "value": "172" + }, + { + "begin": 1530, + "end": 1536, + "name": "DUP3", + "source": 1 + }, + { + "begin": 1508, + "end": 1537, + "name": "PUSH [tag]", + "source": 1, + "value": "115" + }, + { + "begin": 1508, + "end": 1537, + "name": "JUMP", + "source": 1, + "value": "[in]" + }, + { + "begin": 1508, + "end": 1537, + "name": "tag", + "source": 1, + "value": "172" + }, + { + "begin": 1508, + "end": 1537, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 1500, + "end": 1537, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 1500, + "end": 1537, + "name": "POP", + "source": 1 + }, + { + "begin": 1592, + "end": 1596, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 1586, + "end": 1590, + "name": "DUP2", + "source": 1 + }, + { + "begin": 1582, + "end": 1597, + "name": "ADD", + "source": 1 + }, + { + "begin": 1574, + "end": 1597, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 1574, + "end": 1597, + "name": "POP", + "source": 1 + }, + { + "begin": 1296, + "end": 1604, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 1296, + "end": 1604, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 1296, + "end": 1604, + "name": "POP", + "source": 1 + }, + { + "begin": 1296, + "end": 1604, + "name": "JUMP", + "source": 1, + "value": "[out]" + }, + { + "begin": 1610, + "end": 1764, + "name": "tag", + "source": 1, + "value": "120" + }, + { + "begin": 1610, + "end": 1764, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 1694, + "end": 1700, + "name": "DUP3", + "source": 1 + }, + { + "begin": 1689, + "end": 1692, + "name": "DUP2", + "source": 1 + }, + { + "begin": 1684, + "end": 1687, + "name": "DUP4", + "source": 1 + }, + { + "begin": 1671, + "end": 1701, + "name": "CALLDATACOPY", + "source": 1 + }, + { + "begin": 1756, + "end": 1757, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 1747, + "end": 1753, + "name": "DUP4", + "source": 1 + }, + { + "begin": 1742, + "end": 1745, + "name": "DUP4", + "source": 1 + }, + { + "begin": 1738, + "end": 1754, + "name": "ADD", + "source": 1 + }, + { + "begin": 1731, + "end": 1758, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 1610, + "end": 1764, + "name": "POP", + "source": 1 + }, + { + "begin": 1610, + "end": 1764, + "name": "POP", + "source": 1 + }, + { + "begin": 1610, + "end": 1764, + "name": "POP", + "source": 1 + }, + { + "begin": 1610, + "end": 1764, + "name": "JUMP", + "source": 1, + "value": "[out]" + }, + { + "begin": 1770, + "end": 2182, + "name": "tag", + "source": 1, + "value": "121" + }, + { + "begin": 1770, + "end": 2182, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 1848, + "end": 1853, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 1873, + "end": 1939, + "name": "PUSH [tag]", + "source": 1, + "value": "175" + }, + { + "begin": 1889, + "end": 1938, + "name": "PUSH [tag]", + "source": 1, + "value": "176" + }, + { + "begin": 1931, + "end": 1937, + "name": "DUP5", + "source": 1 + }, + { + "begin": 1889, + "end": 1938, + "name": "PUSH [tag]", + "source": 1, + "value": "119" + }, + { + "begin": 1889, + "end": 1938, + "name": "JUMP", + "source": 1, + "value": "[in]" + }, + { + "begin": 1889, + "end": 1938, + "name": "tag", + "source": 1, + "value": "176" + }, + { + "begin": 1889, + "end": 1938, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 1873, + "end": 1939, + "name": "PUSH [tag]", + "source": 1, + "value": "118" + }, + { + "begin": 1873, + "end": 1939, + "name": "JUMP", + "source": 1, + "value": "[in]" + }, + { + "begin": 1873, + "end": 1939, + "name": "tag", + "source": 1, + "value": "175" + }, + { + "begin": 1873, + "end": 1939, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 1864, + "end": 1939, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 1864, + "end": 1939, + "name": "POP", + "source": 1 + }, + { + "begin": 1962, + "end": 1968, + "name": "DUP3", + "source": 1 + }, + { + "begin": 1955, + "end": 1960, + "name": "DUP2", + "source": 1 + }, + { + "begin": 1948, + "end": 1969, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 2000, + "end": 2004, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 1993, + "end": 1998, + "name": "DUP2", + "source": 1 + }, + { + "begin": 1989, + "end": 2005, + "name": "ADD", + "source": 1 + }, + { + "begin": 2038, + "end": 2041, + "name": "DUP5", + "source": 1 + }, + { + "begin": 2029, + "end": 2035, + "name": "DUP5", + "source": 1 + }, + { + "begin": 2024, + "end": 2027, + "name": "DUP5", + "source": 1 + }, + { + "begin": 2020, + "end": 2036, + "name": "ADD", + "source": 1 + }, + { + "begin": 2017, + "end": 2042, + "name": "GT", + "source": 1 + }, + { + "begin": 2014, + "end": 2126, + "name": "ISZERO", + "source": 1 + }, + { + "begin": 2014, + "end": 2126, + "name": "PUSH [tag]", + "source": 1, + "value": "177" + }, + { + "begin": 2014, + "end": 2126, + "name": "JUMPI", + "source": 1 + }, + { + "begin": 2045, + "end": 2124, + "name": "PUSH [tag]", + "source": 1, + "value": "178" + }, + { + "begin": 2045, + "end": 2124, + "name": "PUSH [tag]", + "source": 1, + "value": "114" + }, + { + "begin": 2045, + "end": 2124, + "name": "JUMP", + "source": 1, + "value": "[in]" + }, + { + "begin": 2045, + "end": 2124, + "name": "tag", + "source": 1, + "value": "178" + }, + { + "begin": 2045, + "end": 2124, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 2014, + "end": 2126, + "name": "tag", + "source": 1, + "value": "177" + }, + { + "begin": 2014, + "end": 2126, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 2135, + "end": 2176, + "name": "PUSH [tag]", + "source": 1, + "value": "179" + }, + { + "begin": 2169, + "end": 2175, + "name": "DUP5", + "source": 1 + }, + { + "begin": 2164, + "end": 2167, + "name": "DUP3", + "source": 1 + }, + { + "begin": 2159, + "end": 2162, + "name": "DUP6", + "source": 1 + }, + { + "begin": 2135, + "end": 2176, + "name": "PUSH [tag]", + "source": 1, + "value": "120" + }, + { + "begin": 2135, + "end": 2176, + "name": "JUMP", + "source": 1, + "value": "[in]" + }, + { + "begin": 2135, + "end": 2176, + "name": "tag", + "source": 1, + "value": "179" + }, + { + "begin": 2135, + "end": 2176, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 1854, + "end": 2182, + "name": "POP", + "source": 1 + }, + { + "begin": 1770, + "end": 2182, + "name": "SWAP4", + "source": 1 + }, + { + "begin": 1770, + "end": 2182, + "name": "SWAP3", + "source": 1 + }, + { + "begin": 1770, + "end": 2182, + "name": "POP", + "source": 1 + }, + { + "begin": 1770, + "end": 2182, + "name": "POP", + "source": 1 + }, + { + "begin": 1770, + "end": 2182, + "name": "POP", + "source": 1 + }, + { + "begin": 1770, + "end": 2182, + "name": "JUMP", + "source": 1, + "value": "[out]" + }, + { + "begin": 2202, + "end": 2542, + "name": "tag", + "source": 1, + "value": "122" + }, + { + "begin": 2202, + "end": 2542, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 2258, + "end": 2263, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 2307, + "end": 2310, + "name": "DUP3", + "source": 1 + }, + { + "begin": 2300, + "end": 2304, + "name": "PUSH", + "source": 1, + "value": "1F" + }, + { + "begin": 2292, + "end": 2298, + "name": "DUP4", + "source": 1 + }, + { + "begin": 2288, + "end": 2305, + "name": "ADD", + "source": 1 + }, + { + "begin": 2284, + "end": 2311, + "name": "SLT", + "source": 1 + }, + { + "begin": 2274, + "end": 2396, + "name": "PUSH [tag]", + "source": 1, + "value": "181" + }, + { + "begin": 2274, + "end": 2396, + "name": "JUMPI", + "source": 1 + }, + { + "begin": 2315, + "end": 2394, + "name": "PUSH [tag]", + "source": 1, + "value": "182" + }, + { + "begin": 2315, + "end": 2394, + "name": "PUSH [tag]", + "source": 1, + "value": "113" + }, + { + "begin": 2315, + "end": 2394, + "name": "JUMP", + "source": 1, + "value": "[in]" + }, + { + "begin": 2315, + "end": 2394, + "name": "tag", + "source": 1, + "value": "182" + }, + { + "begin": 2315, + "end": 2394, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 2274, + "end": 2396, + "name": "tag", + "source": 1, + "value": "181" + }, + { + "begin": 2274, + "end": 2396, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 2432, + "end": 2438, + "name": "DUP2", + "source": 1 + }, + { + "begin": 2419, + "end": 2439, + "name": "CALLDATALOAD", + "source": 1 + }, + { + "begin": 2457, + "end": 2536, + "name": "PUSH [tag]", + "source": 1, + "value": "183" + }, + { + "begin": 2532, + "end": 2535, + "name": "DUP5", + "source": 1 + }, + { + "begin": 2524, + "end": 2530, + "name": "DUP3", + "source": 1 + }, + { + "begin": 2517, + "end": 2521, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 2509, + "end": 2515, + "name": "DUP7", + "source": 1 + }, + { + "begin": 2505, + "end": 2522, + "name": "ADD", + "source": 1 + }, + { + "begin": 2457, + "end": 2536, + "name": "PUSH [tag]", + "source": 1, + "value": "121" + }, + { + "begin": 2457, + "end": 2536, + "name": "JUMP", + "source": 1, + "value": "[in]" + }, + { + "begin": 2457, + "end": 2536, + "name": "tag", + "source": 1, + "value": "183" + }, + { + "begin": 2457, + "end": 2536, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 2448, + "end": 2536, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 2448, + "end": 2536, + "name": "POP", + "source": 1 + }, + { + "begin": 2264, + "end": 2542, + "name": "POP", + "source": 1 + }, + { + "begin": 2202, + "end": 2542, + "name": "SWAP3", + "source": 1 + }, + { + "begin": 2202, + "end": 2542, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 2202, + "end": 2542, + "name": "POP", + "source": 1 + }, + { + "begin": 2202, + "end": 2542, + "name": "POP", + "source": 1 + }, + { + "begin": 2202, + "end": 2542, + "name": "JUMP", + "source": 1, + "value": "[out]" + }, + { + "begin": 2548, + "end": 3057, + "name": "tag", + "source": 1, + "value": "14" + }, + { + "begin": 2548, + "end": 3057, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 2617, + "end": 2623, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 2666, + "end": 2668, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 2654, + "end": 2663, + "name": "DUP3", + "source": 1 + }, + { + "begin": 2645, + "end": 2652, + "name": "DUP5", + "source": 1 + }, + { + "begin": 2641, + "end": 2664, + "name": "SUB", + "source": 1 + }, + { + "begin": 2637, + "end": 2669, + "name": "SLT", + "source": 1 + }, + { + "begin": 2634, + "end": 2753, + "name": "ISZERO", + "source": 1 + }, + { + "begin": 2634, + "end": 2753, + "name": "PUSH [tag]", + "source": 1, + "value": "185" + }, + { + "begin": 2634, + "end": 2753, + "name": "JUMPI", + "source": 1 + }, + { + "begin": 2672, + "end": 2751, + "name": "PUSH [tag]", + "source": 1, + "value": "186" + }, + { + "begin": 2672, + "end": 2751, + "name": "PUSH [tag]", + "source": 1, + "value": "111" + }, + { + "begin": 2672, + "end": 2751, + "name": "JUMP", + "source": 1, + "value": "[in]" + }, + { + "begin": 2672, + "end": 2751, + "name": "tag", + "source": 1, + "value": "186" + }, + { + "begin": 2672, + "end": 2751, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 2634, + "end": 2753, + "name": "tag", + "source": 1, + "value": "185" + }, + { + "begin": 2634, + "end": 2753, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 2820, + "end": 2821, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 2809, + "end": 2818, + "name": "DUP3", + "source": 1 + }, + { + "begin": 2805, + "end": 2822, + "name": "ADD", + "source": 1 + }, + { + "begin": 2792, + "end": 2823, + "name": "CALLDATALOAD", + "source": 1 + }, + { + "begin": 2850, + "end": 2868, + "name": "PUSH", + "source": 1, + "value": "FFFFFFFFFFFFFFFF" + }, + { + "begin": 2842, + "end": 2848, + "name": "DUP2", + "source": 1 + }, + { + "begin": 2839, + "end": 2869, + "name": "GT", + "source": 1 + }, + { + "begin": 2836, + "end": 2953, + "name": "ISZERO", + "source": 1 + }, + { + "begin": 2836, + "end": 2953, + "name": "PUSH [tag]", + "source": 1, + "value": "187" + }, + { + "begin": 2836, + "end": 2953, + "name": "JUMPI", + "source": 1 + }, + { + "begin": 2872, + "end": 2951, + "name": "PUSH [tag]", + "source": 1, + "value": "188" + }, + { + "begin": 2872, + "end": 2951, + "name": "PUSH [tag]", + "source": 1, + "value": "112" + }, + { + "begin": 2872, + "end": 2951, + "name": "JUMP", + "source": 1, + "value": "[in]" + }, + { + "begin": 2872, + "end": 2951, + "name": "tag", + "source": 1, + "value": "188" + }, + { + "begin": 2872, + "end": 2951, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 2836, + "end": 2953, + "name": "tag", + "source": 1, + "value": "187" + }, + { + "begin": 2836, + "end": 2953, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 2977, + "end": 3040, + "name": "PUSH [tag]", + "source": 1, + "value": "189" + }, + { + "begin": 3032, + "end": 3039, + "name": "DUP5", + "source": 1 + }, + { + "begin": 3023, + "end": 3029, + "name": "DUP3", + "source": 1 + }, + { + "begin": 3012, + "end": 3021, + "name": "DUP6", + "source": 1 + }, + { + "begin": 3008, + "end": 3030, + "name": "ADD", + "source": 1 + }, + { + "begin": 2977, + "end": 3040, + "name": "PUSH [tag]", + "source": 1, + "value": "122" + }, + { + "begin": 2977, + "end": 3040, + "name": "JUMP", + "source": 1, + "value": "[in]" + }, + { + "begin": 2977, + "end": 3040, + "name": "tag", + "source": 1, + "value": "189" + }, + { + "begin": 2977, + "end": 3040, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 2967, + "end": 3040, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 2967, + "end": 3040, + "name": "POP", + "source": 1 + }, + { + "begin": 2763, + "end": 3050, + "name": "POP", + "source": 1 + }, + { + "begin": 2548, + "end": 3057, + "name": "SWAP3", + "source": 1 + }, + { + "begin": 2548, + "end": 3057, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 2548, + "end": 3057, + "name": "POP", + "source": 1 + }, + { + "begin": 2548, + "end": 3057, + "name": "POP", + "source": 1 + }, + { + "begin": 2548, + "end": 3057, + "name": "JUMP", + "source": 1, + "value": "[out]" + }, + { + "begin": 3063, + "end": 3140, + "name": "tag", + "source": 1, + "value": "123" + }, + { + "begin": 3063, + "end": 3140, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 3100, + "end": 3107, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 3129, + "end": 3134, + "name": "DUP2", + "source": 1 + }, + { + "begin": 3118, + "end": 3134, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 3118, + "end": 3134, + "name": "POP", + "source": 1 + }, + { + "begin": 3063, + "end": 3140, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 3063, + "end": 3140, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 3063, + "end": 3140, + "name": "POP", + "source": 1 + }, + { + "begin": 3063, + "end": 3140, + "name": "JUMP", + "source": 1, + "value": "[out]" + }, + { + "begin": 3146, + "end": 3264, + "name": "tag", + "source": 1, + "value": "124" + }, + { + "begin": 3146, + "end": 3264, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 3233, + "end": 3257, + "name": "PUSH [tag]", + "source": 1, + "value": "192" + }, + { + "begin": 3251, + "end": 3256, + "name": "DUP2", + "source": 1 + }, + { + "begin": 3233, + "end": 3257, + "name": "PUSH [tag]", + "source": 1, + "value": "123" + }, + { + "begin": 3233, + "end": 3257, + "name": "JUMP", + "source": 1, + "value": "[in]" + }, + { + "begin": 3233, + "end": 3257, + "name": "tag", + "source": 1, + "value": "192" + }, + { + "begin": 3233, + "end": 3257, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 3228, + "end": 3231, + "name": "DUP3", + "source": 1 + }, + { + "begin": 3221, + "end": 3258, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 3146, + "end": 3264, + "name": "POP", + "source": 1 + }, + { + "begin": 3146, + "end": 3264, + "name": "POP", + "source": 1 + }, + { + "begin": 3146, + "end": 3264, + "name": "JUMP", + "source": 1, + "value": "[out]" + }, + { + "begin": 3270, + "end": 3492, + "name": "tag", + "source": 1, + "value": "17" + }, + { + "begin": 3270, + "end": 3492, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 3363, + "end": 3367, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 3401, + "end": 3403, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 3390, + "end": 3399, + "name": "DUP3", + "source": 1 + }, + { + "begin": 3386, + "end": 3404, + "name": "ADD", + "source": 1 + }, + { + "begin": 3378, + "end": 3404, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 3378, + "end": 3404, + "name": "POP", + "source": 1 + }, + { + "begin": 3414, + "end": 3485, + "name": "PUSH [tag]", + "source": 1, + "value": "194" + }, + { + "begin": 3482, + "end": 3483, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 3471, + "end": 3480, + "name": "DUP4", + "source": 1 + }, + { + "begin": 3467, + "end": 3484, + "name": "ADD", + "source": 1 + }, + { + "begin": 3458, + "end": 3464, + "name": "DUP5", + "source": 1 + }, + { + "begin": 3414, + "end": 3485, + "name": "PUSH [tag]", + "source": 1, + "value": "124" + }, + { + "begin": 3414, + "end": 3485, + "name": "JUMP", + "source": 1, + "value": "[in]" + }, + { + "begin": 3414, + "end": 3485, + "name": "tag", + "source": 1, + "value": "194" + }, + { + "begin": 3414, + "end": 3485, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 3270, + "end": 3492, + "name": "SWAP3", + "source": 1 + }, + { + "begin": 3270, + "end": 3492, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 3270, + "end": 3492, + "name": "POP", + "source": 1 + }, + { + "begin": 3270, + "end": 3492, + "name": "POP", + "source": 1 + }, + { + "begin": 3270, + "end": 3492, + "name": "JUMP", + "source": 1, + "value": "[out]" + }, + { + "begin": 3498, + "end": 3620, + "name": "tag", + "source": 1, + "value": "125" + }, + { + "begin": 3498, + "end": 3620, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 3571, + "end": 3595, + "name": "PUSH [tag]", + "source": 1, + "value": "196" + }, + { + "begin": 3589, + "end": 3594, + "name": "DUP2", + "source": 1 + }, + { + "begin": 3571, + "end": 3595, + "name": "PUSH [tag]", + "source": 1, + "value": "123" + }, + { + "begin": 3571, + "end": 3595, + "name": "JUMP", + "source": 1, + "value": "[in]" + }, + { + "begin": 3571, + "end": 3595, + "name": "tag", + "source": 1, + "value": "196" + }, + { + "begin": 3571, + "end": 3595, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 3564, + "end": 3569, + "name": "DUP2", + "source": 1 + }, + { + "begin": 3561, + "end": 3596, + "name": "EQ", + "source": 1 + }, + { + "begin": 3551, + "end": 3614, + "name": "PUSH [tag]", + "source": 1, + "value": "197" + }, + { + "begin": 3551, + "end": 3614, + "name": "JUMPI", + "source": 1 + }, + { + "begin": 3610, + "end": 3611, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 3607, + "end": 3608, + "name": "DUP1", + "source": 1 + }, + { + "begin": 3600, + "end": 3612, + "name": "REVERT", + "source": 1 + }, + { + "begin": 3551, + "end": 3614, + "name": "tag", + "source": 1, + "value": "197" + }, + { + "begin": 3551, + "end": 3614, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 3498, + "end": 3620, + "name": "POP", + "source": 1 + }, + { + "begin": 3498, + "end": 3620, + "name": "JUMP", + "source": 1, + "value": "[out]" + }, + { + "begin": 3626, + "end": 3765, + "name": "tag", + "source": 1, + "value": "126" + }, + { + "begin": 3626, + "end": 3765, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 3672, + "end": 3677, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 3710, + "end": 3716, + "name": "DUP2", + "source": 1 + }, + { + "begin": 3697, + "end": 3717, + "name": "CALLDATALOAD", + "source": 1 + }, + { + "begin": 3688, + "end": 3717, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 3688, + "end": 3717, + "name": "POP", + "source": 1 + }, + { + "begin": 3726, + "end": 3759, + "name": "PUSH [tag]", + "source": 1, + "value": "199" + }, + { + "begin": 3753, + "end": 3758, + "name": "DUP2", + "source": 1 + }, + { + "begin": 3726, + "end": 3759, + "name": "PUSH [tag]", + "source": 1, + "value": "125" + }, + { + "begin": 3726, + "end": 3759, + "name": "JUMP", + "source": 1, + "value": "[in]" + }, + { + "begin": 3726, + "end": 3759, + "name": "tag", + "source": 1, + "value": "199" + }, + { + "begin": 3726, + "end": 3759, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 3626, + "end": 3765, + "name": "SWAP3", + "source": 1 + }, + { + "begin": 3626, + "end": 3765, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 3626, + "end": 3765, + "name": "POP", + "source": 1 + }, + { + "begin": 3626, + "end": 3765, + "name": "POP", + "source": 1 + }, + { + "begin": 3626, + "end": 3765, + "name": "JUMP", + "source": 1, + "value": "[out]" + }, + { + "begin": 3771, + "end": 4100, + "name": "tag", + "source": 1, + "value": "20" + }, + { + "begin": 3771, + "end": 4100, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 3830, + "end": 3836, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 3879, + "end": 3881, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 3867, + "end": 3876, + "name": "DUP3", + "source": 1 + }, + { + "begin": 3858, + "end": 3865, + "name": "DUP5", + "source": 1 + }, + { + "begin": 3854, + "end": 3877, + "name": "SUB", + "source": 1 + }, + { + "begin": 3850, + "end": 3882, + "name": "SLT", + "source": 1 + }, + { + "begin": 3847, + "end": 3966, + "name": "ISZERO", + "source": 1 + }, + { + "begin": 3847, + "end": 3966, + "name": "PUSH [tag]", + "source": 1, + "value": "201" + }, + { + "begin": 3847, + "end": 3966, + "name": "JUMPI", + "source": 1 + }, + { + "begin": 3885, + "end": 3964, + "name": "PUSH [tag]", + "source": 1, + "value": "202" + }, + { + "begin": 3885, + "end": 3964, + "name": "PUSH [tag]", + "source": 1, + "value": "111" + }, + { + "begin": 3885, + "end": 3964, + "name": "JUMP", + "source": 1, + "value": "[in]" + }, + { + "begin": 3885, + "end": 3964, + "name": "tag", + "source": 1, + "value": "202" + }, + { + "begin": 3885, + "end": 3964, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 3847, + "end": 3966, + "name": "tag", + "source": 1, + "value": "201" + }, + { + "begin": 3847, + "end": 3966, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 4005, + "end": 4006, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 4030, + "end": 4083, + "name": "PUSH [tag]", + "source": 1, + "value": "203" + }, + { + "begin": 4075, + "end": 4082, + "name": "DUP5", + "source": 1 + }, + { + "begin": 4066, + "end": 4072, + "name": "DUP3", + "source": 1 + }, + { + "begin": 4055, + "end": 4064, + "name": "DUP6", + "source": 1 + }, + { + "begin": 4051, + "end": 4073, + "name": "ADD", + "source": 1 + }, + { + "begin": 4030, + "end": 4083, + "name": "PUSH [tag]", + "source": 1, + "value": "126" + }, + { + "begin": 4030, + "end": 4083, + "name": "JUMP", + "source": 1, + "value": "[in]" + }, + { + "begin": 4030, + "end": 4083, + "name": "tag", + "source": 1, + "value": "203" + }, + { + "begin": 4030, + "end": 4083, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 4020, + "end": 4083, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 4020, + "end": 4083, + "name": "POP", + "source": 1 + }, + { + "begin": 3976, + "end": 4093, + "name": "POP", + "source": 1 + }, + { + "begin": 3771, + "end": 4100, + "name": "SWAP3", + "source": 1 + }, + { + "begin": 3771, + "end": 4100, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 3771, + "end": 4100, + "name": "POP", + "source": 1 + }, + { + "begin": 3771, + "end": 4100, + "name": "POP", + "source": 1 + }, + { + "begin": 3771, + "end": 4100, + "name": "JUMP", + "source": 1, + "value": "[out]" + }, + { + "begin": 4106, + "end": 4205, + "name": "tag", + "source": 1, + "value": "127" + }, + { + "begin": 4106, + "end": 4205, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 4158, + "end": 4164, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 4192, + "end": 4197, + "name": "DUP2", + "source": 1 + }, + { + "begin": 4186, + "end": 4198, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 4176, + "end": 4198, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 4176, + "end": 4198, + "name": "POP", + "source": 1 + }, + { + "begin": 4106, + "end": 4205, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 4106, + "end": 4205, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 4106, + "end": 4205, + "name": "POP", + "source": 1 + }, + { + "begin": 4106, + "end": 4205, + "name": "JUMP", + "source": 1, + "value": "[out]" + }, + { + "begin": 4211, + "end": 4380, + "name": "tag", + "source": 1, + "value": "128" + }, + { + "begin": 4211, + "end": 4380, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 4295, + "end": 4306, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 4329, + "end": 4335, + "name": "DUP3", + "source": 1 + }, + { + "begin": 4324, + "end": 4327, + "name": "DUP3", + "source": 1 + }, + { + "begin": 4317, + "end": 4336, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 4369, + "end": 4373, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 4364, + "end": 4367, + "name": "DUP3", + "source": 1 + }, + { + "begin": 4360, + "end": 4374, + "name": "ADD", + "source": 1 + }, + { + "begin": 4345, + "end": 4374, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 4345, + "end": 4374, + "name": "POP", + "source": 1 + }, + { + "begin": 4211, + "end": 4380, + "name": "SWAP3", + "source": 1 + }, + { + "begin": 4211, + "end": 4380, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 4211, + "end": 4380, + "name": "POP", + "source": 1 + }, + { + "begin": 4211, + "end": 4380, + "name": "POP", + "source": 1 + }, + { + "begin": 4211, + "end": 4380, + "name": "JUMP", + "source": 1, + "value": "[out]" + }, + { + "begin": 4386, + "end": 4693, + "name": "tag", + "source": 1, + "value": "129" + }, + { + "begin": 4386, + "end": 4693, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 4454, + "end": 4455, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 4464, + "end": 4577, + "name": "tag", + "source": 1, + "value": "207" + }, + { + "begin": 4464, + "end": 4577, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 4478, + "end": 4484, + "name": "DUP4", + "source": 1 + }, + { + "begin": 4475, + "end": 4476, + "name": "DUP2", + "source": 1 + }, + { + "begin": 4472, + "end": 4485, + "name": "LT", + "source": 1 + }, + { + "begin": 4464, + "end": 4577, + "name": "ISZERO", + "source": 1 + }, + { + "begin": 4464, + "end": 4577, + "name": "PUSH [tag]", + "source": 1, + "value": "209" + }, + { + "begin": 4464, + "end": 4577, + "name": "JUMPI", + "source": 1 + }, + { + "begin": 4563, + "end": 4564, + "name": "DUP1", + "source": 1 + }, + { + "begin": 4558, + "end": 4561, + "name": "DUP3", + "source": 1 + }, + { + "begin": 4554, + "end": 4565, + "name": "ADD", + "source": 1 + }, + { + "begin": 4548, + "end": 4566, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 4544, + "end": 4545, + "name": "DUP2", + "source": 1 + }, + { + "begin": 4539, + "end": 4542, + "name": "DUP5", + "source": 1 + }, + { + "begin": 4535, + "end": 4546, + "name": "ADD", + "source": 1 + }, + { + "begin": 4528, + "end": 4567, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 4500, + "end": 4502, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 4497, + "end": 4498, + "name": "DUP2", + "source": 1 + }, + { + "begin": 4493, + "end": 4503, + "name": "ADD", + "source": 1 + }, + { + "begin": 4488, + "end": 4503, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 4488, + "end": 4503, + "name": "POP", + "source": 1 + }, + { + "begin": 4464, + "end": 4577, + "name": "PUSH [tag]", + "source": 1, + "value": "207" + }, + { + "begin": 4464, + "end": 4577, + "name": "JUMP", + "source": 1 + }, + { + "begin": 4464, + "end": 4577, + "name": "tag", + "source": 1, + "value": "209" + }, + { + "begin": 4464, + "end": 4577, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 4595, + "end": 4601, + "name": "DUP4", + "source": 1 + }, + { + "begin": 4592, + "end": 4593, + "name": "DUP2", + "source": 1 + }, + { + "begin": 4589, + "end": 4602, + "name": "GT", + "source": 1 + }, + { + "begin": 4586, + "end": 4687, + "name": "ISZERO", + "source": 1 + }, + { + "begin": 4586, + "end": 4687, + "name": "PUSH [tag]", + "source": 1, + "value": "210" + }, + { + "begin": 4586, + "end": 4687, + "name": "JUMPI", + "source": 1 + }, + { + "begin": 4675, + "end": 4676, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 4666, + "end": 4672, + "name": "DUP5", + "source": 1 + }, + { + "begin": 4661, + "end": 4664, + "name": "DUP5", + "source": 1 + }, + { + "begin": 4657, + "end": 4673, + "name": "ADD", + "source": 1 + }, + { + "begin": 4650, + "end": 4677, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 4586, + "end": 4687, + "name": "tag", + "source": 1, + "value": "210" + }, + { + "begin": 4586, + "end": 4687, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 4435, + "end": 4693, + "name": "POP", + "source": 1 + }, + { + "begin": 4386, + "end": 4693, + "name": "POP", + "source": 1 + }, + { + "begin": 4386, + "end": 4693, + "name": "POP", + "source": 1 + }, + { + "begin": 4386, + "end": 4693, + "name": "POP", + "source": 1 + }, + { + "begin": 4386, + "end": 4693, + "name": "JUMP", + "source": 1, + "value": "[out]" + }, + { + "begin": 4699, + "end": 5063, + "name": "tag", + "source": 1, + "value": "130" + }, + { + "begin": 4699, + "end": 5063, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 4787, + "end": 4790, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 4815, + "end": 4854, + "name": "PUSH [tag]", + "source": 1, + "value": "212" + }, + { + "begin": 4848, + "end": 4853, + "name": "DUP3", + "source": 1 + }, + { + "begin": 4815, + "end": 4854, + "name": "PUSH [tag]", + "source": 1, + "value": "127" + }, + { + "begin": 4815, + "end": 4854, + "name": "JUMP", + "source": 1, + "value": "[in]" + }, + { + "begin": 4815, + "end": 4854, + "name": "tag", + "source": 1, + "value": "212" + }, + { + "begin": 4815, + "end": 4854, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 4870, + "end": 4941, + "name": "PUSH [tag]", + "source": 1, + "value": "213" + }, + { + "begin": 4934, + "end": 4940, + "name": "DUP2", + "source": 1 + }, + { + "begin": 4929, + "end": 4932, + "name": "DUP6", + "source": 1 + }, + { + "begin": 4870, + "end": 4941, + "name": "PUSH [tag]", + "source": 1, + "value": "128" + }, + { + "begin": 4870, + "end": 4941, + "name": "JUMP", + "source": 1, + "value": "[in]" + }, + { + "begin": 4870, + "end": 4941, + "name": "tag", + "source": 1, + "value": "213" + }, + { + "begin": 4870, + "end": 4941, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 4863, + "end": 4941, + "name": "SWAP4", + "source": 1 + }, + { + "begin": 4863, + "end": 4941, + "name": "POP", + "source": 1 + }, + { + "begin": 4950, + "end": 5002, + "name": "PUSH [tag]", + "source": 1, + "value": "214" + }, + { + "begin": 4995, + "end": 5001, + "name": "DUP2", + "source": 1 + }, + { + "begin": 4990, + "end": 4993, + "name": "DUP6", + "source": 1 + }, + { + "begin": 4983, + "end": 4987, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 4976, + "end": 4981, + "name": "DUP7", + "source": 1 + }, + { + "begin": 4972, + "end": 4988, + "name": "ADD", + "source": 1 + }, + { + "begin": 4950, + "end": 5002, + "name": "PUSH [tag]", + "source": 1, + "value": "129" + }, + { + "begin": 4950, + "end": 5002, + "name": "JUMP", + "source": 1, + "value": "[in]" + }, + { + "begin": 4950, + "end": 5002, + "name": "tag", + "source": 1, + "value": "214" + }, + { + "begin": 4950, + "end": 5002, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 5027, + "end": 5056, + "name": "PUSH [tag]", + "source": 1, + "value": "215" + }, + { + "begin": 5049, + "end": 5055, + "name": "DUP2", + "source": 1 + }, + { + "begin": 5027, + "end": 5056, + "name": "PUSH [tag]", + "source": 1, + "value": "115" + }, + { + "begin": 5027, + "end": 5056, + "name": "JUMP", + "source": 1, + "value": "[in]" + }, + { + "begin": 5027, + "end": 5056, + "name": "tag", + "source": 1, + "value": "215" + }, + { + "begin": 5027, + "end": 5056, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 5022, + "end": 5025, + "name": "DUP5", + "source": 1 + }, + { + "begin": 5018, + "end": 5057, + "name": "ADD", + "source": 1 + }, + { + "begin": 5011, + "end": 5057, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 5011, + "end": 5057, + "name": "POP", + "source": 1 + }, + { + "begin": 4791, + "end": 5063, + "name": "POP", + "source": 1 + }, + { + "begin": 4699, + "end": 5063, + "name": "SWAP3", + "source": 1 + }, + { + "begin": 4699, + "end": 5063, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 4699, + "end": 5063, + "name": "POP", + "source": 1 + }, + { + "begin": 4699, + "end": 5063, + "name": "POP", + "source": 1 + }, + { + "begin": 4699, + "end": 5063, + "name": "JUMP", + "source": 1, + "value": "[out]" + }, + { + "begin": 5069, + "end": 5382, + "name": "tag", + "source": 1, + "value": "23" + }, + { + "begin": 5069, + "end": 5382, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 5182, + "end": 5186, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 5220, + "end": 5222, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 5209, + "end": 5218, + "name": "DUP3", + "source": 1 + }, + { + "begin": 5205, + "end": 5223, + "name": "ADD", + "source": 1 + }, + { + "begin": 5197, + "end": 5223, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 5197, + "end": 5223, + "name": "POP", + "source": 1 + }, + { + "begin": 5269, + "end": 5278, + "name": "DUP2", + "source": 1 + }, + { + "begin": 5263, + "end": 5267, + "name": "DUP2", + "source": 1 + }, + { + "begin": 5259, + "end": 5279, + "name": "SUB", + "source": 1 + }, + { + "begin": 5255, + "end": 5256, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 5244, + "end": 5253, + "name": "DUP4", + "source": 1 + }, + { + "begin": 5240, + "end": 5257, + "name": "ADD", + "source": 1 + }, + { + "begin": 5233, + "end": 5280, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 5297, + "end": 5375, + "name": "PUSH [tag]", + "source": 1, + "value": "217" + }, + { + "begin": 5370, + "end": 5374, + "name": "DUP2", + "source": 1 + }, + { + "begin": 5361, + "end": 5367, + "name": "DUP5", + "source": 1 + }, + { + "begin": 5297, + "end": 5375, + "name": "PUSH [tag]", + "source": 1, + "value": "130" + }, + { + "begin": 5297, + "end": 5375, + "name": "JUMP", + "source": 1, + "value": "[in]" + }, + { + "begin": 5297, + "end": 5375, + "name": "tag", + "source": 1, + "value": "217" + }, + { + "begin": 5297, + "end": 5375, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 5289, + "end": 5375, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 5289, + "end": 5375, + "name": "POP", + "source": 1 + }, + { + "begin": 5069, + "end": 5382, + "name": "SWAP3", + "source": 1 + }, + { + "begin": 5069, + "end": 5382, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 5069, + "end": 5382, + "name": "POP", + "source": 1 + }, + { + "begin": 5069, + "end": 5382, + "name": "POP", + "source": 1 + }, + { + "begin": 5069, + "end": 5382, + "name": "JUMP", + "source": 1, + "value": "[out]" + }, + { + "begin": 5388, + "end": 5514, + "name": "tag", + "source": 1, + "value": "131" + }, + { + "begin": 5388, + "end": 5514, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 5425, + "end": 5432, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 5465, + "end": 5507, + "name": "PUSH", + "source": 1, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 5458, + "end": 5463, + "name": "DUP3", + "source": 1 + }, + { + "begin": 5454, + "end": 5508, + "name": "AND", + "source": 1 + }, + { + "begin": 5443, + "end": 5508, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 5443, + "end": 5508, + "name": "POP", + "source": 1 + }, + { + "begin": 5388, + "end": 5514, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 5388, + "end": 5514, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 5388, + "end": 5514, + "name": "POP", + "source": 1 + }, + { + "begin": 5388, + "end": 5514, + "name": "JUMP", + "source": 1, + "value": "[out]" + }, + { + "begin": 5520, + "end": 5616, + "name": "tag", + "source": 1, + "value": "132" + }, + { + "begin": 5520, + "end": 5616, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 5557, + "end": 5564, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 5586, + "end": 5610, + "name": "PUSH [tag]", + "source": 1, + "value": "220" + }, + { + "begin": 5604, + "end": 5609, + "name": "DUP3", + "source": 1 + }, + { + "begin": 5586, + "end": 5610, + "name": "PUSH [tag]", + "source": 1, + "value": "131" + }, + { + "begin": 5586, + "end": 5610, + "name": "JUMP", + "source": 1, + "value": "[in]" + }, + { + "begin": 5586, + "end": 5610, + "name": "tag", + "source": 1, + "value": "220" + }, + { + "begin": 5586, + "end": 5610, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 5575, + "end": 5610, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 5575, + "end": 5610, + "name": "POP", + "source": 1 + }, + { + "begin": 5520, + "end": 5616, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 5520, + "end": 5616, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 5520, + "end": 5616, + "name": "POP", + "source": 1 + }, + { + "begin": 5520, + "end": 5616, + "name": "JUMP", + "source": 1, + "value": "[out]" + }, + { + "begin": 5622, + "end": 5744, + "name": "tag", + "source": 1, + "value": "133" + }, + { + "begin": 5622, + "end": 5744, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 5695, + "end": 5719, + "name": "PUSH [tag]", + "source": 1, + "value": "222" + }, + { + "begin": 5713, + "end": 5718, + "name": "DUP2", + "source": 1 + }, + { + "begin": 5695, + "end": 5719, + "name": "PUSH [tag]", + "source": 1, + "value": "132" + }, + { + "begin": 5695, + "end": 5719, + "name": "JUMP", + "source": 1, + "value": "[in]" + }, + { + "begin": 5695, + "end": 5719, + "name": "tag", + "source": 1, + "value": "222" + }, + { + "begin": 5695, + "end": 5719, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 5688, + "end": 5693, + "name": "DUP2", + "source": 1 + }, + { + "begin": 5685, + "end": 5720, + "name": "EQ", + "source": 1 + }, + { + "begin": 5675, + "end": 5738, + "name": "PUSH [tag]", + "source": 1, + "value": "223" + }, + { + "begin": 5675, + "end": 5738, + "name": "JUMPI", + "source": 1 + }, + { + "begin": 5734, + "end": 5735, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 5731, + "end": 5732, + "name": "DUP1", + "source": 1 + }, + { + "begin": 5724, + "end": 5736, + "name": "REVERT", + "source": 1 + }, + { + "begin": 5675, + "end": 5738, + "name": "tag", + "source": 1, + "value": "223" + }, + { + "begin": 5675, + "end": 5738, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 5622, + "end": 5744, + "name": "POP", + "source": 1 + }, + { + "begin": 5622, + "end": 5744, + "name": "JUMP", + "source": 1, + "value": "[out]" + }, + { + "begin": 5750, + "end": 5889, + "name": "tag", + "source": 1, + "value": "134" + }, + { + "begin": 5750, + "end": 5889, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 5796, + "end": 5801, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 5834, + "end": 5840, + "name": "DUP2", + "source": 1 + }, + { + "begin": 5821, + "end": 5841, + "name": "CALLDATALOAD", + "source": 1 + }, + { + "begin": 5812, + "end": 5841, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 5812, + "end": 5841, + "name": "POP", + "source": 1 + }, + { + "begin": 5850, + "end": 5883, + "name": "PUSH [tag]", + "source": 1, + "value": "225" + }, + { + "begin": 5877, + "end": 5882, + "name": "DUP2", + "source": 1 + }, + { + "begin": 5850, + "end": 5883, + "name": "PUSH [tag]", + "source": 1, + "value": "133" + }, + { + "begin": 5850, + "end": 5883, + "name": "JUMP", + "source": 1, + "value": "[in]" + }, + { + "begin": 5850, + "end": 5883, + "name": "tag", + "source": 1, + "value": "225" + }, + { + "begin": 5850, + "end": 5883, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 5750, + "end": 5889, + "name": "SWAP3", + "source": 1 + }, + { + "begin": 5750, + "end": 5889, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 5750, + "end": 5889, + "name": "POP", + "source": 1 + }, + { + "begin": 5750, + "end": 5889, + "name": "POP", + "source": 1 + }, + { + "begin": 5750, + "end": 5889, + "name": "JUMP", + "source": 1, + "value": "[out]" + }, + { + "begin": 5895, + "end": 6224, + "name": "tag", + "source": 1, + "value": "26" + }, + { + "begin": 5895, + "end": 6224, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 5954, + "end": 5960, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 6003, + "end": 6005, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 5991, + "end": 6000, + "name": "DUP3", + "source": 1 + }, + { + "begin": 5982, + "end": 5989, + "name": "DUP5", + "source": 1 + }, + { + "begin": 5978, + "end": 6001, + "name": "SUB", + "source": 1 + }, + { + "begin": 5974, + "end": 6006, + "name": "SLT", + "source": 1 + }, + { + "begin": 5971, + "end": 6090, + "name": "ISZERO", + "source": 1 + }, + { + "begin": 5971, + "end": 6090, + "name": "PUSH [tag]", + "source": 1, + "value": "227" + }, + { + "begin": 5971, + "end": 6090, + "name": "JUMPI", + "source": 1 + }, + { + "begin": 6009, + "end": 6088, + "name": "PUSH [tag]", + "source": 1, + "value": "228" + }, + { + "begin": 6009, + "end": 6088, + "name": "PUSH [tag]", + "source": 1, + "value": "111" + }, + { + "begin": 6009, + "end": 6088, + "name": "JUMP", + "source": 1, + "value": "[in]" + }, + { + "begin": 6009, + "end": 6088, + "name": "tag", + "source": 1, + "value": "228" + }, + { + "begin": 6009, + "end": 6088, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 5971, + "end": 6090, + "name": "tag", + "source": 1, + "value": "227" + }, + { + "begin": 5971, + "end": 6090, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 6129, + "end": 6130, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 6154, + "end": 6207, + "name": "PUSH [tag]", + "source": 1, + "value": "229" + }, + { + "begin": 6199, + "end": 6206, + "name": "DUP5", + "source": 1 + }, + { + "begin": 6190, + "end": 6196, + "name": "DUP3", + "source": 1 + }, + { + "begin": 6179, + "end": 6188, + "name": "DUP6", + "source": 1 + }, + { + "begin": 6175, + "end": 6197, + "name": "ADD", + "source": 1 + }, + { + "begin": 6154, + "end": 6207, + "name": "PUSH [tag]", + "source": 1, + "value": "134" + }, + { + "begin": 6154, + "end": 6207, + "name": "JUMP", + "source": 1, + "value": "[in]" + }, + { + "begin": 6154, + "end": 6207, + "name": "tag", + "source": 1, + "value": "229" + }, + { + "begin": 6154, + "end": 6207, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 6144, + "end": 6207, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 6144, + "end": 6207, + "name": "POP", + "source": 1 + }, + { + "begin": 6100, + "end": 6217, + "name": "POP", + "source": 1 + }, + { + "begin": 5895, + "end": 6224, + "name": "SWAP3", + "source": 1 + }, + { + "begin": 5895, + "end": 6224, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 5895, + "end": 6224, + "name": "POP", + "source": 1 + }, + { + "begin": 5895, + "end": 6224, + "name": "POP", + "source": 1 + }, + { + "begin": 5895, + "end": 6224, + "name": "JUMP", + "source": 1, + "value": "[out]" + }, + { + "begin": 6230, + "end": 6320, + "name": "tag", + "source": 1, + "value": "135" + }, + { + "begin": 6230, + "end": 6320, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 6264, + "end": 6271, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 6307, + "end": 6312, + "name": "DUP2", + "source": 1 + }, + { + "begin": 6300, + "end": 6313, + "name": "ISZERO", + "source": 1 + }, + { + "begin": 6293, + "end": 6314, + "name": "ISZERO", + "source": 1 + }, + { + "begin": 6282, + "end": 6314, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 6282, + "end": 6314, + "name": "POP", + "source": 1 + }, + { + "begin": 6230, + "end": 6320, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 6230, + "end": 6320, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 6230, + "end": 6320, + "name": "POP", + "source": 1 + }, + { + "begin": 6230, + "end": 6320, + "name": "JUMP", + "source": 1, + "value": "[out]" + }, + { + "begin": 6326, + "end": 6435, + "name": "tag", + "source": 1, + "value": "136" + }, + { + "begin": 6326, + "end": 6435, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 6407, + "end": 6428, + "name": "PUSH [tag]", + "source": 1, + "value": "232" + }, + { + "begin": 6422, + "end": 6427, + "name": "DUP2", + "source": 1 + }, + { + "begin": 6407, + "end": 6428, + "name": "PUSH [tag]", + "source": 1, + "value": "135" + }, + { + "begin": 6407, + "end": 6428, + "name": "JUMP", + "source": 1, + "value": "[in]" + }, + { + "begin": 6407, + "end": 6428, + "name": "tag", + "source": 1, + "value": "232" + }, + { + "begin": 6407, + "end": 6428, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 6402, + "end": 6405, + "name": "DUP3", + "source": 1 + }, + { + "begin": 6395, + "end": 6429, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 6326, + "end": 6435, + "name": "POP", + "source": 1 + }, + { + "begin": 6326, + "end": 6435, + "name": "POP", + "source": 1 + }, + { + "begin": 6326, + "end": 6435, + "name": "JUMP", + "source": 1, + "value": "[out]" + }, + { + "begin": 6441, + "end": 6651, + "name": "tag", + "source": 1, + "value": "32" + }, + { + "begin": 6441, + "end": 6651, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 6528, + "end": 6532, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 6566, + "end": 6568, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 6555, + "end": 6564, + "name": "DUP3", + "source": 1 + }, + { + "begin": 6551, + "end": 6569, + "name": "ADD", + "source": 1 + }, + { + "begin": 6543, + "end": 6569, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 6543, + "end": 6569, + "name": "POP", + "source": 1 + }, + { + "begin": 6579, + "end": 6644, + "name": "PUSH [tag]", + "source": 1, + "value": "234" + }, + { + "begin": 6641, + "end": 6642, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 6630, + "end": 6639, + "name": "DUP4", + "source": 1 + }, + { + "begin": 6626, + "end": 6643, + "name": "ADD", + "source": 1 + }, + { + "begin": 6617, + "end": 6623, + "name": "DUP5", + "source": 1 + }, + { + "begin": 6579, + "end": 6644, + "name": "PUSH [tag]", + "source": 1, + "value": "136" + }, + { + "begin": 6579, + "end": 6644, + "name": "JUMP", + "source": 1, + "value": "[in]" + }, + { + "begin": 6579, + "end": 6644, + "name": "tag", + "source": 1, + "value": "234" + }, + { + "begin": 6579, + "end": 6644, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 6441, + "end": 6651, + "name": "SWAP3", + "source": 1 + }, + { + "begin": 6441, + "end": 6651, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 6441, + "end": 6651, + "name": "POP", + "source": 1 + }, + { + "begin": 6441, + "end": 6651, + "name": "POP", + "source": 1 + }, + { + "begin": 6441, + "end": 6651, + "name": "JUMP", + "source": 1, + "value": "[out]" + }, + { + "begin": 6657, + "end": 6775, + "name": "tag", + "source": 1, + "value": "137" + }, + { + "begin": 6657, + "end": 6775, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 6744, + "end": 6768, + "name": "PUSH [tag]", + "source": 1, + "value": "236" + }, + { + "begin": 6762, + "end": 6767, + "name": "DUP2", + "source": 1 + }, + { + "begin": 6744, + "end": 6768, + "name": "PUSH [tag]", + "source": 1, + "value": "132" + }, + { + "begin": 6744, + "end": 6768, + "name": "JUMP", + "source": 1, + "value": "[in]" + }, + { + "begin": 6744, + "end": 6768, + "name": "tag", + "source": 1, + "value": "236" + }, + { + "begin": 6744, + "end": 6768, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 6739, + "end": 6742, + "name": "DUP3", + "source": 1 + }, + { + "begin": 6732, + "end": 6769, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 6657, + "end": 6775, + "name": "POP", + "source": 1 + }, + { + "begin": 6657, + "end": 6775, + "name": "POP", + "source": 1 + }, + { + "begin": 6657, + "end": 6775, + "name": "JUMP", + "source": 1, + "value": "[out]" + }, + { + "begin": 6781, + "end": 7003, + "name": "tag", + "source": 1, + "value": "36" + }, + { + "begin": 6781, + "end": 7003, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 6874, + "end": 6878, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 6912, + "end": 6914, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 6901, + "end": 6910, + "name": "DUP3", + "source": 1 + }, + { + "begin": 6897, + "end": 6915, + "name": "ADD", + "source": 1 + }, + { + "begin": 6889, + "end": 6915, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 6889, + "end": 6915, + "name": "POP", + "source": 1 + }, + { + "begin": 6925, + "end": 6996, + "name": "PUSH [tag]", + "source": 1, + "value": "238" + }, + { + "begin": 6993, + "end": 6994, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 6982, + "end": 6991, + "name": "DUP4", + "source": 1 + }, + { + "begin": 6978, + "end": 6995, + "name": "ADD", + "source": 1 + }, + { + "begin": 6969, + "end": 6975, + "name": "DUP5", + "source": 1 + }, + { + "begin": 6925, + "end": 6996, + "name": "PUSH [tag]", + "source": 1, + "value": "137" + }, + { + "begin": 6925, + "end": 6996, + "name": "JUMP", + "source": 1, + "value": "[in]" + }, + { + "begin": 6925, + "end": 6996, + "name": "tag", + "source": 1, + "value": "238" + }, + { + "begin": 6925, + "end": 6996, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 6781, + "end": 7003, + "name": "SWAP3", + "source": 1 + }, + { + "begin": 6781, + "end": 7003, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 6781, + "end": 7003, + "name": "POP", + "source": 1 + }, + { + "begin": 6781, + "end": 7003, + "name": "POP", + "source": 1 + }, + { + "begin": 6781, + "end": 7003, + "name": "JUMP", + "source": 1, + "value": "[out]" + }, + { + "begin": 7009, + "end": 7663, + "name": "tag", + "source": 1, + "value": "39" + }, + { + "begin": 7009, + "end": 7663, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 7087, + "end": 7093, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 7095, + "end": 7101, + "name": "DUP1", + "source": 1 + }, + { + "begin": 7144, + "end": 7146, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 7132, + "end": 7141, + "name": "DUP4", + "source": 1 + }, + { + "begin": 7123, + "end": 7130, + "name": "DUP6", + "source": 1 + }, + { + "begin": 7119, + "end": 7142, + "name": "SUB", + "source": 1 + }, + { + "begin": 7115, + "end": 7147, + "name": "SLT", + "source": 1 + }, + { + "begin": 7112, + "end": 7231, + "name": "ISZERO", + "source": 1 + }, + { + "begin": 7112, + "end": 7231, + "name": "PUSH [tag]", + "source": 1, + "value": "240" + }, + { + "begin": 7112, + "end": 7231, + "name": "JUMPI", + "source": 1 + }, + { + "begin": 7150, + "end": 7229, + "name": "PUSH [tag]", + "source": 1, + "value": "241" + }, + { + "begin": 7150, + "end": 7229, + "name": "PUSH [tag]", + "source": 1, + "value": "111" + }, + { + "begin": 7150, + "end": 7229, + "name": "JUMP", + "source": 1, + "value": "[in]" + }, + { + "begin": 7150, + "end": 7229, + "name": "tag", + "source": 1, + "value": "241" + }, + { + "begin": 7150, + "end": 7229, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 7112, + "end": 7231, + "name": "tag", + "source": 1, + "value": "240" + }, + { + "begin": 7112, + "end": 7231, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 7270, + "end": 7271, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 7295, + "end": 7348, + "name": "PUSH [tag]", + "source": 1, + "value": "242" + }, + { + "begin": 7340, + "end": 7347, + "name": "DUP6", + "source": 1 + }, + { + "begin": 7331, + "end": 7337, + "name": "DUP3", + "source": 1 + }, + { + "begin": 7320, + "end": 7329, + "name": "DUP7", + "source": 1 + }, + { + "begin": 7316, + "end": 7338, + "name": "ADD", + "source": 1 + }, + { + "begin": 7295, + "end": 7348, + "name": "PUSH [tag]", + "source": 1, + "value": "126" + }, + { + "begin": 7295, + "end": 7348, + "name": "JUMP", + "source": 1, + "value": "[in]" + }, + { + "begin": 7295, + "end": 7348, + "name": "tag", + "source": 1, + "value": "242" + }, + { + "begin": 7295, + "end": 7348, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 7285, + "end": 7348, + "name": "SWAP3", + "source": 1 + }, + { + "begin": 7285, + "end": 7348, + "name": "POP", + "source": 1 + }, + { + "begin": 7241, + "end": 7358, + "name": "POP", + "source": 1 + }, + { + "begin": 7425, + "end": 7427, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 7414, + "end": 7423, + "name": "DUP4", + "source": 1 + }, + { + "begin": 7410, + "end": 7428, + "name": "ADD", + "source": 1 + }, + { + "begin": 7397, + "end": 7429, + "name": "CALLDATALOAD", + "source": 1 + }, + { + "begin": 7456, + "end": 7474, + "name": "PUSH", + "source": 1, + "value": "FFFFFFFFFFFFFFFF" + }, + { + "begin": 7448, + "end": 7454, + "name": "DUP2", + "source": 1 + }, + { + "begin": 7445, + "end": 7475, + "name": "GT", + "source": 1 + }, + { + "begin": 7442, + "end": 7559, + "name": "ISZERO", + "source": 1 + }, + { + "begin": 7442, + "end": 7559, + "name": "PUSH [tag]", + "source": 1, + "value": "243" + }, + { + "begin": 7442, + "end": 7559, + "name": "JUMPI", + "source": 1 + }, + { + "begin": 7478, + "end": 7557, + "name": "PUSH [tag]", + "source": 1, + "value": "244" + }, + { + "begin": 7478, + "end": 7557, + "name": "PUSH [tag]", + "source": 1, + "value": "112" + }, + { + "begin": 7478, + "end": 7557, + "name": "JUMP", + "source": 1, + "value": "[in]" + }, + { + "begin": 7478, + "end": 7557, + "name": "tag", + "source": 1, + "value": "244" + }, + { + "begin": 7478, + "end": 7557, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 7442, + "end": 7559, + "name": "tag", + "source": 1, + "value": "243" + }, + { + "begin": 7442, + "end": 7559, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 7583, + "end": 7646, + "name": "PUSH [tag]", + "source": 1, + "value": "245" + }, + { + "begin": 7638, + "end": 7645, + "name": "DUP6", + "source": 1 + }, + { + "begin": 7629, + "end": 7635, + "name": "DUP3", + "source": 1 + }, + { + "begin": 7618, + "end": 7627, + "name": "DUP7", + "source": 1 + }, + { + "begin": 7614, + "end": 7636, + "name": "ADD", + "source": 1 + }, + { + "begin": 7583, + "end": 7646, + "name": "PUSH [tag]", + "source": 1, + "value": "122" + }, + { + "begin": 7583, + "end": 7646, + "name": "JUMP", + "source": 1, + "value": "[in]" + }, + { + "begin": 7583, + "end": 7646, + "name": "tag", + "source": 1, + "value": "245" + }, + { + "begin": 7583, + "end": 7646, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 7573, + "end": 7646, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 7573, + "end": 7646, + "name": "POP", + "source": 1 + }, + { + "begin": 7368, + "end": 7656, + "name": "POP", + "source": 1 + }, + { + "begin": 7009, + "end": 7663, + "name": "SWAP3", + "source": 1 + }, + { + "begin": 7009, + "end": 7663, + "name": "POP", + "source": 1 + }, + { + "begin": 7009, + "end": 7663, + "name": "SWAP3", + "source": 1 + }, + { + "begin": 7009, + "end": 7663, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 7009, + "end": 7663, + "name": "POP", + "source": 1 + }, + { + "begin": 7009, + "end": 7663, + "name": "JUMP", + "source": 1, + "value": "[out]" + }, + { + "begin": 7669, + "end": 7793, + "name": "tag", + "source": 1, + "value": "138" + }, + { + "begin": 7669, + "end": 7793, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 7746, + "end": 7752, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 7780, + "end": 7785, + "name": "DUP2", + "source": 1 + }, + { + "begin": 7774, + "end": 7786, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 7764, + "end": 7786, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 7764, + "end": 7786, + "name": "POP", + "source": 1 + }, + { + "begin": 7669, + "end": 7793, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 7669, + "end": 7793, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 7669, + "end": 7793, + "name": "POP", + "source": 1 + }, + { + "begin": 7669, + "end": 7793, + "name": "JUMP", + "source": 1, + "value": "[out]" + }, + { + "begin": 7799, + "end": 7993, + "name": "tag", + "source": 1, + "value": "139" + }, + { + "begin": 7799, + "end": 7993, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 7908, + "end": 7919, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 7942, + "end": 7948, + "name": "DUP3", + "source": 1 + }, + { + "begin": 7937, + "end": 7940, + "name": "DUP3", + "source": 1 + }, + { + "begin": 7930, + "end": 7949, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 7982, + "end": 7986, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 7977, + "end": 7980, + "name": "DUP3", + "source": 1 + }, + { + "begin": 7973, + "end": 7987, + "name": "ADD", + "source": 1 + }, + { + "begin": 7958, + "end": 7987, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 7958, + "end": 7987, + "name": "POP", + "source": 1 + }, + { + "begin": 7799, + "end": 7993, + "name": "SWAP3", + "source": 1 + }, + { + "begin": 7799, + "end": 7993, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 7799, + "end": 7993, + "name": "POP", + "source": 1 + }, + { + "begin": 7799, + "end": 7993, + "name": "POP", + "source": 1 + }, + { + "begin": 7799, + "end": 7993, + "name": "JUMP", + "source": 1, + "value": "[out]" + }, + { + "begin": 7999, + "end": 8141, + "name": "tag", + "source": 1, + "value": "140" + }, + { + "begin": 7999, + "end": 8141, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 8076, + "end": 8080, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 8099, + "end": 8102, + "name": "DUP2", + "source": 1 + }, + { + "begin": 8091, + "end": 8102, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 8091, + "end": 8102, + "name": "POP", + "source": 1 + }, + { + "begin": 8129, + "end": 8133, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 8124, + "end": 8127, + "name": "DUP3", + "source": 1 + }, + { + "begin": 8120, + "end": 8134, + "name": "ADD", + "source": 1 + }, + { + "begin": 8112, + "end": 8134, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 8112, + "end": 8134, + "name": "POP", + "source": 1 + }, + { + "begin": 7999, + "end": 8141, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 7999, + "end": 8141, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 7999, + "end": 8141, + "name": "POP", + "source": 1 + }, + { + "begin": 7999, + "end": 8141, + "name": "JUMP", + "source": 1, + "value": "[out]" + }, + { + "begin": 8147, + "end": 8306, + "name": "tag", + "source": 1, + "value": "141" + }, + { + "begin": 8147, + "end": 8306, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 8221, + "end": 8232, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 8255, + "end": 8261, + "name": "DUP3", + "source": 1 + }, + { + "begin": 8250, + "end": 8253, + "name": "DUP3", + "source": 1 + }, + { + "begin": 8243, + "end": 8262, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 8295, + "end": 8299, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 8290, + "end": 8293, + "name": "DUP3", + "source": 1 + }, + { + "begin": 8286, + "end": 8300, + "name": "ADD", + "source": 1 + }, + { + "begin": 8271, + "end": 8300, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 8271, + "end": 8300, + "name": "POP", + "source": 1 + }, + { + "begin": 8147, + "end": 8306, + "name": "SWAP3", + "source": 1 + }, + { + "begin": 8147, + "end": 8306, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 8147, + "end": 8306, + "name": "POP", + "source": 1 + }, + { + "begin": 8147, + "end": 8306, + "name": "POP", + "source": 1 + }, + { + "begin": 8147, + "end": 8306, + "name": "JUMP", + "source": 1, + "value": "[out]" + }, + { + "begin": 8312, + "end": 8656, + "name": "tag", + "source": 1, + "value": "142" + }, + { + "begin": 8312, + "end": 8656, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 8390, + "end": 8393, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 8418, + "end": 8457, + "name": "PUSH [tag]", + "source": 1, + "value": "251" + }, + { + "begin": 8451, + "end": 8456, + "name": "DUP3", + "source": 1 + }, + { + "begin": 8418, + "end": 8457, + "name": "PUSH [tag]", + "source": 1, + "value": "127" + }, + { + "begin": 8418, + "end": 8457, + "name": "JUMP", + "source": 1, + "value": "[in]" + }, + { + "begin": 8418, + "end": 8457, + "name": "tag", + "source": 1, + "value": "251" + }, + { + "begin": 8418, + "end": 8457, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 8473, + "end": 8534, + "name": "PUSH [tag]", + "source": 1, + "value": "252" + }, + { + "begin": 8527, + "end": 8533, + "name": "DUP2", + "source": 1 + }, + { + "begin": 8522, + "end": 8525, + "name": "DUP6", + "source": 1 + }, + { + "begin": 8473, + "end": 8534, + "name": "PUSH [tag]", + "source": 1, + "value": "141" + }, + { + "begin": 8473, + "end": 8534, + "name": "JUMP", + "source": 1, + "value": "[in]" + }, + { + "begin": 8473, + "end": 8534, + "name": "tag", + "source": 1, + "value": "252" + }, + { + "begin": 8473, + "end": 8534, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 8466, + "end": 8534, + "name": "SWAP4", + "source": 1 + }, + { + "begin": 8466, + "end": 8534, + "name": "POP", + "source": 1 + }, + { + "begin": 8543, + "end": 8595, + "name": "PUSH [tag]", + "source": 1, + "value": "253" + }, + { + "begin": 8588, + "end": 8594, + "name": "DUP2", + "source": 1 + }, + { + "begin": 8583, + "end": 8586, + "name": "DUP6", + "source": 1 + }, + { + "begin": 8576, + "end": 8580, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 8569, + "end": 8574, + "name": "DUP7", + "source": 1 + }, + { + "begin": 8565, + "end": 8581, + "name": "ADD", + "source": 1 + }, + { + "begin": 8543, + "end": 8595, + "name": "PUSH [tag]", + "source": 1, + "value": "129" + }, + { + "begin": 8543, + "end": 8595, + "name": "JUMP", + "source": 1, + "value": "[in]" + }, + { + "begin": 8543, + "end": 8595, + "name": "tag", + "source": 1, + "value": "253" + }, + { + "begin": 8543, + "end": 8595, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 8620, + "end": 8649, + "name": "PUSH [tag]", + "source": 1, + "value": "254" + }, + { + "begin": 8642, + "end": 8648, + "name": "DUP2", + "source": 1 + }, + { + "begin": 8620, + "end": 8649, + "name": "PUSH [tag]", + "source": 1, + "value": "115" + }, + { + "begin": 8620, + "end": 8649, + "name": "JUMP", + "source": 1, + "value": "[in]" + }, + { + "begin": 8620, + "end": 8649, + "name": "tag", + "source": 1, + "value": "254" + }, + { + "begin": 8620, + "end": 8649, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 8615, + "end": 8618, + "name": "DUP5", + "source": 1 + }, + { + "begin": 8611, + "end": 8650, + "name": "ADD", + "source": 1 + }, + { + "begin": 8604, + "end": 8650, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 8604, + "end": 8650, + "name": "POP", + "source": 1 + }, + { + "begin": 8394, + "end": 8656, + "name": "POP", + "source": 1 + }, + { + "begin": 8312, + "end": 8656, + "name": "SWAP3", + "source": 1 + }, + { + "begin": 8312, + "end": 8656, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 8312, + "end": 8656, + "name": "POP", + "source": 1 + }, + { + "begin": 8312, + "end": 8656, + "name": "POP", + "source": 1 + }, + { + "begin": 8312, + "end": 8656, + "name": "JUMP", + "source": 1, + "value": "[out]" + }, + { + "begin": 8662, + "end": 8858, + "name": "tag", + "source": 1, + "value": "143" + }, + { + "begin": 8662, + "end": 8858, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 8751, + "end": 8761, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 8786, + "end": 8852, + "name": "PUSH [tag]", + "source": 1, + "value": "256" + }, + { + "begin": 8848, + "end": 8851, + "name": "DUP4", + "source": 1 + }, + { + "begin": 8840, + "end": 8846, + "name": "DUP4", + "source": 1 + }, + { + "begin": 8786, + "end": 8852, + "name": "PUSH [tag]", + "source": 1, + "value": "142" + }, + { + "begin": 8786, + "end": 8852, + "name": "JUMP", + "source": 1, + "value": "[in]" + }, + { + "begin": 8786, + "end": 8852, + "name": "tag", + "source": 1, + "value": "256" + }, + { + "begin": 8786, + "end": 8852, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 8772, + "end": 8852, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 8772, + "end": 8852, + "name": "POP", + "source": 1 + }, + { + "begin": 8662, + "end": 8858, + "name": "SWAP3", + "source": 1 + }, + { + "begin": 8662, + "end": 8858, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 8662, + "end": 8858, + "name": "POP", + "source": 1 + }, + { + "begin": 8662, + "end": 8858, + "name": "POP", + "source": 1 + }, + { + "begin": 8662, + "end": 8858, + "name": "JUMP", + "source": 1, + "value": "[out]" + }, + { + "begin": 8864, + "end": 8987, + "name": "tag", + "source": 1, + "value": "144" + }, + { + "begin": 8864, + "end": 8987, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 8944, + "end": 8948, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 8976, + "end": 8980, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 8971, + "end": 8974, + "name": "DUP3", + "source": 1 + }, + { + "begin": 8967, + "end": 8981, + "name": "ADD", + "source": 1 + }, + { + "begin": 8959, + "end": 8981, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 8959, + "end": 8981, + "name": "POP", + "source": 1 + }, + { + "begin": 8864, + "end": 8987, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 8864, + "end": 8987, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 8864, + "end": 8987, + "name": "POP", + "source": 1 + }, + { + "begin": 8864, + "end": 8987, + "name": "JUMP", + "source": 1, + "value": "[out]" + }, + { + "begin": 9021, + "end": 10012, + "name": "tag", + "source": 1, + "value": "145" + }, + { + "begin": 9021, + "end": 10012, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 9160, + "end": 9163, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 9189, + "end": 9253, + "name": "PUSH [tag]", + "source": 1, + "value": "259" + }, + { + "begin": 9247, + "end": 9252, + "name": "DUP3", + "source": 1 + }, + { + "begin": 9189, + "end": 9253, + "name": "PUSH [tag]", + "source": 1, + "value": "138" + }, + { + "begin": 9189, + "end": 9253, + "name": "JUMP", + "source": 1, + "value": "[in]" + }, + { + "begin": 9189, + "end": 9253, + "name": "tag", + "source": 1, + "value": "259" + }, + { + "begin": 9189, + "end": 9253, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 9269, + "end": 9365, + "name": "PUSH [tag]", + "source": 1, + "value": "260" + }, + { + "begin": 9358, + "end": 9364, + "name": "DUP2", + "source": 1 + }, + { + "begin": 9353, + "end": 9356, + "name": "DUP6", + "source": 1 + }, + { + "begin": 9269, + "end": 9365, + "name": "PUSH [tag]", + "source": 1, + "value": "139" + }, + { + "begin": 9269, + "end": 9365, + "name": "JUMP", + "source": 1, + "value": "[in]" + }, + { + "begin": 9269, + "end": 9365, + "name": "tag", + "source": 1, + "value": "260" + }, + { + "begin": 9269, + "end": 9365, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 9262, + "end": 9365, + "name": "SWAP4", + "source": 1 + }, + { + "begin": 9262, + "end": 9365, + "name": "POP", + "source": 1 + }, + { + "begin": 9391, + "end": 9394, + "name": "DUP4", + "source": 1 + }, + { + "begin": 9436, + "end": 9440, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 9428, + "end": 9434, + "name": "DUP3", + "source": 1 + }, + { + "begin": 9424, + "end": 9441, + "name": "MUL", + "source": 1 + }, + { + "begin": 9419, + "end": 9422, + "name": "DUP6", + "source": 1 + }, + { + "begin": 9415, + "end": 9442, + "name": "ADD", + "source": 1 + }, + { + "begin": 9466, + "end": 9532, + "name": "PUSH [tag]", + "source": 1, + "value": "261" + }, + { + "begin": 9526, + "end": 9531, + "name": "DUP6", + "source": 1 + }, + { + "begin": 9466, + "end": 9532, + "name": "PUSH [tag]", + "source": 1, + "value": "140" + }, + { + "begin": 9466, + "end": 9532, + "name": "JUMP", + "source": 1, + "value": "[in]" + }, + { + "begin": 9466, + "end": 9532, + "name": "tag", + "source": 1, + "value": "261" + }, + { + "begin": 9466, + "end": 9532, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 9555, + "end": 9562, + "name": "DUP1", + "source": 1 + }, + { + "begin": 9586, + "end": 9587, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 9571, + "end": 9967, + "name": "tag", + "source": 1, + "value": "262" + }, + { + "begin": 9571, + "end": 9967, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 9596, + "end": 9602, + "name": "DUP6", + "source": 1 + }, + { + "begin": 9593, + "end": 9594, + "name": "DUP2", + "source": 1 + }, + { + "begin": 9590, + "end": 9603, + "name": "LT", + "source": 1 + }, + { + "begin": 9571, + "end": 9967, + "name": "ISZERO", + "source": 1 + }, + { + "begin": 9571, + "end": 9967, + "name": "PUSH [tag]", + "source": 1, + "value": "264" + }, + { + "begin": 9571, + "end": 9967, + "name": "JUMPI", + "source": 1 + }, + { + "begin": 9667, + "end": 9676, + "name": "DUP5", + "source": 1 + }, + { + "begin": 9661, + "end": 9665, + "name": "DUP5", + "source": 1 + }, + { + "begin": 9657, + "end": 9677, + "name": "SUB", + "source": 1 + }, + { + "begin": 9652, + "end": 9655, + "name": "DUP10", + "source": 1 + }, + { + "begin": 9645, + "end": 9678, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 9718, + "end": 9724, + "name": "DUP2", + "source": 1 + }, + { + "begin": 9712, + "end": 9725, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 9746, + "end": 9830, + "name": "PUSH [tag]", + "source": 1, + "value": "265" + }, + { + "begin": 9825, + "end": 9829, + "name": "DUP6", + "source": 1 + }, + { + "begin": 9810, + "end": 9823, + "name": "DUP3", + "source": 1 + }, + { + "begin": 9746, + "end": 9830, + "name": "PUSH [tag]", + "source": 1, + "value": "143" + }, + { + "begin": 9746, + "end": 9830, + "name": "JUMP", + "source": 1, + "value": "[in]" + }, + { + "begin": 9746, + "end": 9830, + "name": "tag", + "source": 1, + "value": "265" + }, + { + "begin": 9746, + "end": 9830, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 9738, + "end": 9830, + "name": "SWAP5", + "source": 1 + }, + { + "begin": 9738, + "end": 9830, + "name": "POP", + "source": 1 + }, + { + "begin": 9853, + "end": 9923, + "name": "PUSH [tag]", + "source": 1, + "value": "266" + }, + { + "begin": 9916, + "end": 9922, + "name": "DUP4", + "source": 1 + }, + { + "begin": 9853, + "end": 9923, + "name": "PUSH [tag]", + "source": 1, + "value": "144" + }, + { + "begin": 9853, + "end": 9923, + "name": "JUMP", + "source": 1, + "value": "[in]" + }, + { + "begin": 9853, + "end": 9923, + "name": "tag", + "source": 1, + "value": "266" + }, + { + "begin": 9853, + "end": 9923, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 9843, + "end": 9923, + "name": "SWAP3", + "source": 1 + }, + { + "begin": 9843, + "end": 9923, + "name": "POP", + "source": 1 + }, + { + "begin": 9952, + "end": 9956, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 9947, + "end": 9950, + "name": "DUP11", + "source": 1 + }, + { + "begin": 9943, + "end": 9957, + "name": "ADD", + "source": 1 + }, + { + "begin": 9936, + "end": 9957, + "name": "SWAP10", + "source": 1 + }, + { + "begin": 9936, + "end": 9957, + "name": "POP", + "source": 1 + }, + { + "begin": 9631, + "end": 9967, + "name": "POP", + "source": 1 + }, + { + "begin": 9618, + "end": 9619, + "name": "PUSH", + "source": 1, + "value": "1" + }, + { + "begin": 9615, + "end": 9616, + "name": "DUP2", + "source": 1 + }, + { + "begin": 9611, + "end": 9620, + "name": "ADD", + "source": 1 + }, + { + "begin": 9606, + "end": 9620, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 9606, + "end": 9620, + "name": "POP", + "source": 1 + }, + { + "begin": 9571, + "end": 9967, + "name": "PUSH [tag]", + "source": 1, + "value": "262" + }, + { + "begin": 9571, + "end": 9967, + "name": "JUMP", + "source": 1 + }, + { + "begin": 9571, + "end": 9967, + "name": "tag", + "source": 1, + "value": "264" + }, + { + "begin": 9571, + "end": 9967, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 9575, + "end": 9589, + "name": "POP", + "source": 1 + }, + { + "begin": 9983, + "end": 9987, + "name": "DUP3", + "source": 1 + }, + { + "begin": 9976, + "end": 9987, + "name": "SWAP8", + "source": 1 + }, + { + "begin": 9976, + "end": 9987, + "name": "POP", + "source": 1 + }, + { + "begin": 10003, + "end": 10006, + "name": "DUP8", + "source": 1 + }, + { + "begin": 9996, + "end": 10006, + "name": "SWAP6", + "source": 1 + }, + { + "begin": 9996, + "end": 10006, + "name": "POP", + "source": 1 + }, + { + "begin": 9165, + "end": 10012, + "name": "POP", + "source": 1 + }, + { + "begin": 9165, + "end": 10012, + "name": "POP", + "source": 1 + }, + { + "begin": 9165, + "end": 10012, + "name": "POP", + "source": 1 + }, + { + "begin": 9165, + "end": 10012, + "name": "POP", + "source": 1 + }, + { + "begin": 9165, + "end": 10012, + "name": "POP", + "source": 1 + }, + { + "begin": 9021, + "end": 10012, + "name": "SWAP3", + "source": 1 + }, + { + "begin": 9021, + "end": 10012, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 9021, + "end": 10012, + "name": "POP", + "source": 1 + }, + { + "begin": 9021, + "end": 10012, + "name": "POP", + "source": 1 + }, + { + "begin": 9021, + "end": 10012, + "name": "JUMP", + "source": 1, + "value": "[out]" + }, + { + "begin": 10018, + "end": 10431, + "name": "tag", + "source": 1, + "value": "47" + }, + { + "begin": 10018, + "end": 10431, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 10181, + "end": 10185, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 10219, + "end": 10221, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 10208, + "end": 10217, + "name": "DUP3", + "source": 1 + }, + { + "begin": 10204, + "end": 10222, + "name": "ADD", + "source": 1 + }, + { + "begin": 10196, + "end": 10222, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 10196, + "end": 10222, + "name": "POP", + "source": 1 + }, + { + "begin": 10268, + "end": 10277, + "name": "DUP2", + "source": 1 + }, + { + "begin": 10262, + "end": 10266, + "name": "DUP2", + "source": 1 + }, + { + "begin": 10258, + "end": 10278, + "name": "SUB", + "source": 1 + }, + { + "begin": 10254, + "end": 10255, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 10243, + "end": 10252, + "name": "DUP4", + "source": 1 + }, + { + "begin": 10239, + "end": 10256, + "name": "ADD", + "source": 1 + }, + { + "begin": 10232, + "end": 10279, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 10296, + "end": 10424, + "name": "PUSH [tag]", + "source": 1, + "value": "268" + }, + { + "begin": 10419, + "end": 10423, + "name": "DUP2", + "source": 1 + }, + { + "begin": 10410, + "end": 10416, + "name": "DUP5", + "source": 1 + }, + { + "begin": 10296, + "end": 10424, + "name": "PUSH [tag]", + "source": 1, + "value": "145" + }, + { + "begin": 10296, + "end": 10424, + "name": "JUMP", + "source": 1, + "value": "[in]" + }, + { + "begin": 10296, + "end": 10424, + "name": "tag", + "source": 1, + "value": "268" + }, + { + "begin": 10296, + "end": 10424, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 10288, + "end": 10424, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 10288, + "end": 10424, + "name": "POP", + "source": 1 + }, + { + "begin": 10018, + "end": 10431, + "name": "SWAP3", + "source": 1 + }, + { + "begin": 10018, + "end": 10431, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 10018, + "end": 10431, + "name": "POP", + "source": 1 + }, + { + "begin": 10018, + "end": 10431, + "name": "POP", + "source": 1 + }, + { + "begin": 10018, + "end": 10431, + "name": "JUMP", + "source": 1, + "value": "[out]" + }, + { + "begin": 10437, + "end": 10601, + "name": "tag", + "source": 1, + "value": "146" + }, + { + "begin": 10437, + "end": 10601, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 10577, + "end": 10593, + "name": "PUSH", + "source": 1, + "value": "4F6E6C792077686974656C697374000000000000000000000000000000000000" + }, + { + "begin": 10573, + "end": 10574, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 10565, + "end": 10571, + "name": "DUP3", + "source": 1 + }, + { + "begin": 10561, + "end": 10575, + "name": "ADD", + "source": 1 + }, + { + "begin": 10554, + "end": 10594, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 10437, + "end": 10601, + "name": "POP", + "source": 1 + }, + { + "begin": 10437, + "end": 10601, + "name": "JUMP", + "source": 1, + "value": "[out]" + }, + { + "begin": 10607, + "end": 10973, + "name": "tag", + "source": 1, + "value": "147" + }, + { + "begin": 10607, + "end": 10973, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 10749, + "end": 10752, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 10770, + "end": 10837, + "name": "PUSH [tag]", + "source": 1, + "value": "271" + }, + { + "begin": 10834, + "end": 10836, + "name": "PUSH", + "source": 1, + "value": "E" + }, + { + "begin": 10829, + "end": 10832, + "name": "DUP4", + "source": 1 + }, + { + "begin": 10770, + "end": 10837, + "name": "PUSH [tag]", + "source": 1, + "value": "128" + }, + { + "begin": 10770, + "end": 10837, + "name": "JUMP", + "source": 1, + "value": "[in]" + }, + { + "begin": 10770, + "end": 10837, + "name": "tag", + "source": 1, + "value": "271" + }, + { + "begin": 10770, + "end": 10837, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 10763, + "end": 10837, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 10763, + "end": 10837, + "name": "POP", + "source": 1 + }, + { + "begin": 10846, + "end": 10939, + "name": "PUSH [tag]", + "source": 1, + "value": "272" + }, + { + "begin": 10935, + "end": 10938, + "name": "DUP3", + "source": 1 + }, + { + "begin": 10846, + "end": 10939, + "name": "PUSH [tag]", + "source": 1, + "value": "146" + }, + { + "begin": 10846, + "end": 10939, + "name": "JUMP", + "source": 1, + "value": "[in]" + }, + { + "begin": 10846, + "end": 10939, + "name": "tag", + "source": 1, + "value": "272" + }, + { + "begin": 10846, + "end": 10939, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 10964, + "end": 10966, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 10959, + "end": 10962, + "name": "DUP3", + "source": 1 + }, + { + "begin": 10955, + "end": 10967, + "name": "ADD", + "source": 1 + }, + { + "begin": 10948, + "end": 10967, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 10948, + "end": 10967, + "name": "POP", + "source": 1 + }, + { + "begin": 10607, + "end": 10973, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 10607, + "end": 10973, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 10607, + "end": 10973, + "name": "POP", + "source": 1 + }, + { + "begin": 10607, + "end": 10973, + "name": "JUMP", + "source": 1, + "value": "[out]" + }, + { + "begin": 10979, + "end": 11398, + "name": "tag", + "source": 1, + "value": "51" + }, + { + "begin": 10979, + "end": 11398, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 11145, + "end": 11149, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 11183, + "end": 11185, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 11172, + "end": 11181, + "name": "DUP3", + "source": 1 + }, + { + "begin": 11168, + "end": 11186, + "name": "ADD", + "source": 1 + }, + { + "begin": 11160, + "end": 11186, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 11160, + "end": 11186, + "name": "POP", + "source": 1 + }, + { + "begin": 11232, + "end": 11241, + "name": "DUP2", + "source": 1 + }, + { + "begin": 11226, + "end": 11230, + "name": "DUP2", + "source": 1 + }, + { + "begin": 11222, + "end": 11242, + "name": "SUB", + "source": 1 + }, + { + "begin": 11218, + "end": 11219, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 11207, + "end": 11216, + "name": "DUP4", + "source": 1 + }, + { + "begin": 11203, + "end": 11220, + "name": "ADD", + "source": 1 + }, + { + "begin": 11196, + "end": 11243, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 11260, + "end": 11391, + "name": "PUSH [tag]", + "source": 1, + "value": "274" + }, + { + "begin": 11386, + "end": 11390, + "name": "DUP2", + "source": 1 + }, + { + "begin": 11260, + "end": 11391, + "name": "PUSH [tag]", + "source": 1, + "value": "147" + }, + { + "begin": 11260, + "end": 11391, + "name": "JUMP", + "source": 1, + "value": "[in]" + }, + { + "begin": 11260, + "end": 11391, + "name": "tag", + "source": 1, + "value": "274" + }, + { + "begin": 11260, + "end": 11391, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 11252, + "end": 11391, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 11252, + "end": 11391, + "name": "POP", + "source": 1 + }, + { + "begin": 10979, + "end": 11398, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 10979, + "end": 11398, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 10979, + "end": 11398, + "name": "POP", + "source": 1 + }, + { + "begin": 10979, + "end": 11398, + "name": "JUMP", + "source": 1, + "value": "[out]" + }, + { + "begin": 11404, + "end": 11584, + "name": "tag", + "source": 1, + "value": "148" + }, + { + "begin": 11404, + "end": 11584, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 11452, + "end": 11529, + "name": "PUSH", + "source": 1, + "value": "4E487B7100000000000000000000000000000000000000000000000000000000" + }, + { + "begin": 11449, + "end": 11450, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 11442, + "end": 11530, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 11549, + "end": 11553, + "name": "PUSH", + "source": 1, + "value": "11" + }, + { + "begin": 11546, + "end": 11547, + "name": "PUSH", + "source": 1, + "value": "4" + }, + { + "begin": 11539, + "end": 11554, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 11573, + "end": 11577, + "name": "PUSH", + "source": 1, + "value": "24" + }, + { + "begin": 11570, + "end": 11571, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 11563, + "end": 11578, + "name": "REVERT", + "source": 1 + }, + { + "begin": 11590, + "end": 11781, + "name": "tag", + "source": 1, + "value": "57" + }, + { + "begin": 11590, + "end": 11781, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 11630, + "end": 11634, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 11650, + "end": 11670, + "name": "PUSH [tag]", + "source": 1, + "value": "277" + }, + { + "begin": 11668, + "end": 11669, + "name": "DUP3", + "source": 1 + }, + { + "begin": 11650, + "end": 11670, + "name": "PUSH [tag]", + "source": 1, + "value": "123" + }, + { + "begin": 11650, + "end": 11670, + "name": "JUMP", + "source": 1, + "value": "[in]" + }, + { + "begin": 11650, + "end": 11670, + "name": "tag", + "source": 1, + "value": "277" + }, + { + "begin": 11650, + "end": 11670, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 11645, + "end": 11670, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 11645, + "end": 11670, + "name": "POP", + "source": 1 + }, + { + "begin": 11684, + "end": 11704, + "name": "PUSH [tag]", + "source": 1, + "value": "278" + }, + { + "begin": 11702, + "end": 11703, + "name": "DUP4", + "source": 1 + }, + { + "begin": 11684, + "end": 11704, + "name": "PUSH [tag]", + "source": 1, + "value": "123" + }, + { + "begin": 11684, + "end": 11704, + "name": "JUMP", + "source": 1, + "value": "[in]" + }, + { + "begin": 11684, + "end": 11704, + "name": "tag", + "source": 1, + "value": "278" + }, + { + "begin": 11684, + "end": 11704, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 11679, + "end": 11704, + "name": "SWAP3", + "source": 1 + }, + { + "begin": 11679, + "end": 11704, + "name": "POP", + "source": 1 + }, + { + "begin": 11723, + "end": 11724, + "name": "DUP3", + "source": 1 + }, + { + "begin": 11720, + "end": 11721, + "name": "DUP3", + "source": 1 + }, + { + "begin": 11717, + "end": 11725, + "name": "LT", + "source": 1 + }, + { + "begin": 11714, + "end": 11748, + "name": "ISZERO", + "source": 1 + }, + { + "begin": 11714, + "end": 11748, + "name": "PUSH [tag]", + "source": 1, + "value": "279" + }, + { + "begin": 11714, + "end": 11748, + "name": "JUMPI", + "source": 1 + }, + { + "begin": 11728, + "end": 11746, + "name": "PUSH [tag]", + "source": 1, + "value": "280" + }, + { + "begin": 11728, + "end": 11746, + "name": "PUSH [tag]", + "source": 1, + "value": "148" + }, + { + "begin": 11728, + "end": 11746, + "name": "JUMP", + "source": 1, + "value": "[in]" + }, + { + "begin": 11728, + "end": 11746, + "name": "tag", + "source": 1, + "value": "280" + }, + { + "begin": 11728, + "end": 11746, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 11714, + "end": 11748, + "name": "tag", + "source": 1, + "value": "279" + }, + { + "begin": 11714, + "end": 11748, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 11773, + "end": 11774, + "name": "DUP3", + "source": 1 + }, + { + "begin": 11770, + "end": 11771, + "name": "DUP3", + "source": 1 + }, + { + "begin": 11766, + "end": 11775, + "name": "SUB", + "source": 1 + }, + { + "begin": 11758, + "end": 11775, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 11758, + "end": 11775, + "name": "POP", + "source": 1 + }, + { + "begin": 11590, + "end": 11781, + "name": "SWAP3", + "source": 1 + }, + { + "begin": 11590, + "end": 11781, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 11590, + "end": 11781, + "name": "POP", + "source": 1 + }, + { + "begin": 11590, + "end": 11781, + "name": "POP", + "source": 1 + }, + { + "begin": 11590, + "end": 11781, + "name": "JUMP", + "source": 1, + "value": "[out]" + }, + { + "begin": 11787, + "end": 11967, + "name": "tag", + "source": 1, + "value": "61" + }, + { + "begin": 11787, + "end": 11967, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 11835, + "end": 11912, + "name": "PUSH", + "source": 1, + "value": "4E487B7100000000000000000000000000000000000000000000000000000000" + }, + { + "begin": 11832, + "end": 11833, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 11825, + "end": 11913, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 11932, + "end": 11936, + "name": "PUSH", + "source": 1, + "value": "32" + }, + { + "begin": 11929, + "end": 11930, + "name": "PUSH", + "source": 1, + "value": "4" + }, + { + "begin": 11922, + "end": 11937, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 11956, + "end": 11960, + "name": "PUSH", + "source": 1, + "value": "24" + }, + { + "begin": 11953, + "end": 11954, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 11946, + "end": 11961, + "name": "REVERT", + "source": 1 + }, + { + "begin": 11973, + "end": 12153, + "name": "tag", + "source": 1, + "value": "149" + }, + { + "begin": 11973, + "end": 12153, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 12021, + "end": 12098, + "name": "PUSH", + "source": 1, + "value": "4E487B7100000000000000000000000000000000000000000000000000000000" + }, + { + "begin": 12018, + "end": 12019, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 12011, + "end": 12099, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 12118, + "end": 12122, + "name": "PUSH", + "source": 1, + "value": "22" + }, + { + "begin": 12115, + "end": 12116, + "name": "PUSH", + "source": 1, + "value": "4" + }, + { + "begin": 12108, + "end": 12123, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 12142, + "end": 12146, + "name": "PUSH", + "source": 1, + "value": "24" + }, + { + "begin": 12139, + "end": 12140, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 12132, + "end": 12147, + "name": "REVERT", + "source": 1 + }, + { + "begin": 12159, + "end": 12479, + "name": "tag", + "source": 1, + "value": "64" + }, + { + "begin": 12159, + "end": 12479, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 12203, + "end": 12209, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 12240, + "end": 12241, + "name": "PUSH", + "source": 1, + "value": "2" + }, + { + "begin": 12234, + "end": 12238, + "name": "DUP3", + "source": 1 + }, + { + "begin": 12230, + "end": 12242, + "name": "DIV", + "source": 1 + }, + { + "begin": 12220, + "end": 12242, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 12220, + "end": 12242, + "name": "POP", + "source": 1 + }, + { + "begin": 12287, + "end": 12288, + "name": "PUSH", + "source": 1, + "value": "1" + }, + { + "begin": 12281, + "end": 12285, + "name": "DUP3", + "source": 1 + }, + { + "begin": 12277, + "end": 12289, + "name": "AND", + "source": 1 + }, + { + "begin": 12308, + "end": 12326, + "name": "DUP1", + "source": 1 + }, + { + "begin": 12298, + "end": 12379, + "name": "PUSH [tag]", + "source": 1, + "value": "284" + }, + { + "begin": 12298, + "end": 12379, + "name": "JUMPI", + "source": 1 + }, + { + "begin": 12364, + "end": 12368, + "name": "PUSH", + "source": 1, + "value": "7F" + }, + { + "begin": 12356, + "end": 12362, + "name": "DUP3", + "source": 1 + }, + { + "begin": 12352, + "end": 12369, + "name": "AND", + "source": 1 + }, + { + "begin": 12342, + "end": 12369, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 12342, + "end": 12369, + "name": "POP", + "source": 1 + }, + { + "begin": 12298, + "end": 12379, + "name": "tag", + "source": 1, + "value": "284" + }, + { + "begin": 12298, + "end": 12379, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 12426, + "end": 12428, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 12418, + "end": 12424, + "name": "DUP3", + "source": 1 + }, + { + "begin": 12415, + "end": 12429, + "name": "LT", + "source": 1 + }, + { + "begin": 12395, + "end": 12413, + "name": "DUP2", + "source": 1 + }, + { + "begin": 12392, + "end": 12430, + "name": "SUB", + "source": 1 + }, + { + "begin": 12389, + "end": 12473, + "name": "PUSH [tag]", + "source": 1, + "value": "285" + }, + { + "begin": 12389, + "end": 12473, + "name": "JUMPI", + "source": 1 + }, + { + "begin": 12445, + "end": 12463, + "name": "PUSH [tag]", + "source": 1, + "value": "286" + }, + { + "begin": 12445, + "end": 12463, + "name": "PUSH [tag]", + "source": 1, + "value": "149" + }, + { + "begin": 12445, + "end": 12463, + "name": "JUMP", + "source": 1, + "value": "[in]" + }, + { + "begin": 12445, + "end": 12463, + "name": "tag", + "source": 1, + "value": "286" + }, + { + "begin": 12445, + "end": 12463, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 12389, + "end": 12473, + "name": "tag", + "source": 1, + "value": "285" + }, + { + "begin": 12389, + "end": 12473, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 12210, + "end": 12479, + "name": "POP", + "source": 1 + }, + { + "begin": 12159, + "end": 12479, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 12159, + "end": 12479, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 12159, + "end": 12479, + "name": "POP", + "source": 1 + }, + { + "begin": 12159, + "end": 12479, + "name": "JUMP", + "source": 1, + "value": "[out]" + }, + { + "begin": 12485, + "end": 12645, + "name": "tag", + "source": 1, + "value": "150" + }, + { + "begin": 12485, + "end": 12645, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 12625, + "end": 12637, + "name": "PUSH", + "source": 1, + "value": "4F6E6C79206F776E657200000000000000000000000000000000000000000000" + }, + { + "begin": 12621, + "end": 12622, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 12613, + "end": 12619, + "name": "DUP3", + "source": 1 + }, + { + "begin": 12609, + "end": 12623, + "name": "ADD", + "source": 1 + }, + { + "begin": 12602, + "end": 12638, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 12485, + "end": 12645, + "name": "POP", + "source": 1 + }, + { + "begin": 12485, + "end": 12645, + "name": "JUMP", + "source": 1, + "value": "[out]" + }, + { + "begin": 12651, + "end": 13017, + "name": "tag", + "source": 1, + "value": "151" + }, + { + "begin": 12651, + "end": 13017, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 12793, + "end": 12796, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 12814, + "end": 12881, + "name": "PUSH [tag]", + "source": 1, + "value": "289" + }, + { + "begin": 12878, + "end": 12880, + "name": "PUSH", + "source": 1, + "value": "A" + }, + { + "begin": 12873, + "end": 12876, + "name": "DUP4", + "source": 1 + }, + { + "begin": 12814, + "end": 12881, + "name": "PUSH [tag]", + "source": 1, + "value": "128" + }, + { + "begin": 12814, + "end": 12881, + "name": "JUMP", + "source": 1, + "value": "[in]" + }, + { + "begin": 12814, + "end": 12881, + "name": "tag", + "source": 1, + "value": "289" + }, + { + "begin": 12814, + "end": 12881, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 12807, + "end": 12881, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 12807, + "end": 12881, + "name": "POP", + "source": 1 + }, + { + "begin": 12890, + "end": 12983, + "name": "PUSH [tag]", + "source": 1, + "value": "290" + }, + { + "begin": 12979, + "end": 12982, + "name": "DUP3", + "source": 1 + }, + { + "begin": 12890, + "end": 12983, + "name": "PUSH [tag]", + "source": 1, + "value": "150" + }, + { + "begin": 12890, + "end": 12983, + "name": "JUMP", + "source": 1, + "value": "[in]" + }, + { + "begin": 12890, + "end": 12983, + "name": "tag", + "source": 1, + "value": "290" + }, + { + "begin": 12890, + "end": 12983, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 13008, + "end": 13010, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 13003, + "end": 13006, + "name": "DUP3", + "source": 1 + }, + { + "begin": 12999, + "end": 13011, + "name": "ADD", + "source": 1 + }, + { + "begin": 12992, + "end": 13011, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 12992, + "end": 13011, + "name": "POP", + "source": 1 + }, + { + "begin": 12651, + "end": 13017, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 12651, + "end": 13017, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 12651, + "end": 13017, + "name": "POP", + "source": 1 + }, + { + "begin": 12651, + "end": 13017, + "name": "JUMP", + "source": 1, + "value": "[out]" + }, + { + "begin": 13023, + "end": 13442, + "name": "tag", + "source": 1, + "value": "72" + }, + { + "begin": 13023, + "end": 13442, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 13189, + "end": 13193, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 13227, + "end": 13229, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 13216, + "end": 13225, + "name": "DUP3", + "source": 1 + }, + { + "begin": 13212, + "end": 13230, + "name": "ADD", + "source": 1 + }, + { + "begin": 13204, + "end": 13230, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 13204, + "end": 13230, + "name": "POP", + "source": 1 + }, + { + "begin": 13276, + "end": 13285, + "name": "DUP2", + "source": 1 + }, + { + "begin": 13270, + "end": 13274, + "name": "DUP2", + "source": 1 + }, + { + "begin": 13266, + "end": 13286, + "name": "SUB", + "source": 1 + }, + { + "begin": 13262, + "end": 13263, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 13251, + "end": 13260, + "name": "DUP4", + "source": 1 + }, + { + "begin": 13247, + "end": 13264, + "name": "ADD", + "source": 1 + }, + { + "begin": 13240, + "end": 13287, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 13304, + "end": 13435, + "name": "PUSH [tag]", + "source": 1, + "value": "292" + }, + { + "begin": 13430, + "end": 13434, + "name": "DUP2", + "source": 1 + }, + { + "begin": 13304, + "end": 13435, + "name": "PUSH [tag]", + "source": 1, + "value": "151" + }, + { + "begin": 13304, + "end": 13435, + "name": "JUMP", + "source": 1, + "value": "[in]" + }, + { + "begin": 13304, + "end": 13435, + "name": "tag", + "source": 1, + "value": "292" + }, + { + "begin": 13304, + "end": 13435, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 13296, + "end": 13435, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 13296, + "end": 13435, + "name": "POP", + "source": 1 + }, + { + "begin": 13023, + "end": 13442, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 13023, + "end": 13442, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 13023, + "end": 13442, + "name": "POP", + "source": 1 + }, + { + "begin": 13023, + "end": 13442, + "name": "JUMP", + "source": 1, + "value": "[out]" + }, + { + "begin": 13448, + "end": 13589, + "name": "tag", + "source": 1, + "value": "152" + }, + { + "begin": 13448, + "end": 13589, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 13497, + "end": 13501, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 13520, + "end": 13523, + "name": "DUP2", + "source": 1 + }, + { + "begin": 13512, + "end": 13523, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 13512, + "end": 13523, + "name": "POP", + "source": 1 + }, + { + "begin": 13543, + "end": 13546, + "name": "DUP2", + "source": 1 + }, + { + "begin": 13540, + "end": 13541, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 13533, + "end": 13547, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 13577, + "end": 13581, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 13574, + "end": 13575, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 13564, + "end": 13582, + "name": "KECCAK256", + "source": 1 + }, + { + "begin": 13556, + "end": 13582, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 13556, + "end": 13582, + "name": "POP", + "source": 1 + }, + { + "begin": 13448, + "end": 13589, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 13448, + "end": 13589, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 13448, + "end": 13589, + "name": "POP", + "source": 1 + }, + { + "begin": 13448, + "end": 13589, + "name": "JUMP", + "source": 1, + "value": "[out]" + }, + { + "begin": 13619, + "end": 14421, + "name": "tag", + "source": 1, + "value": "153" + }, + { + "begin": 13619, + "end": 14421, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 13704, + "end": 13707, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 13741, + "end": 13746, + "name": "DUP2", + "source": 1 + }, + { + "begin": 13735, + "end": 13747, + "name": "SLOAD", + "source": 1 + }, + { + "begin": 13770, + "end": 13806, + "name": "PUSH [tag]", + "source": 1, + "value": "295" + }, + { + "begin": 13796, + "end": 13805, + "name": "DUP2", + "source": 1 + }, + { + "begin": 13770, + "end": 13806, + "name": "PUSH [tag]", + "source": 1, + "value": "64" + }, + { + "begin": 13770, + "end": 13806, + "name": "JUMP", + "source": 1, + "value": "[in]" + }, + { + "begin": 13770, + "end": 13806, + "name": "tag", + "source": 1, + "value": "295" + }, + { + "begin": 13770, + "end": 13806, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 13822, + "end": 13893, + "name": "PUSH [tag]", + "source": 1, + "value": "296" + }, + { + "begin": 13886, + "end": 13892, + "name": "DUP2", + "source": 1 + }, + { + "begin": 13881, + "end": 13884, + "name": "DUP7", + "source": 1 + }, + { + "begin": 13822, + "end": 13893, + "name": "PUSH [tag]", + "source": 1, + "value": "128" + }, + { + "begin": 13822, + "end": 13893, + "name": "JUMP", + "source": 1, + "value": "[in]" + }, + { + "begin": 13822, + "end": 13893, + "name": "tag", + "source": 1, + "value": "296" + }, + { + "begin": 13822, + "end": 13893, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 13815, + "end": 13893, + "name": "SWAP5", + "source": 1 + }, + { + "begin": 13815, + "end": 13893, + "name": "POP", + "source": 1 + }, + { + "begin": 13924, + "end": 13925, + "name": "PUSH", + "source": 1, + "value": "1" + }, + { + "begin": 13913, + "end": 13922, + "name": "DUP3", + "source": 1 + }, + { + "begin": 13909, + "end": 13926, + "name": "AND", + "source": 1 + }, + { + "begin": 13940, + "end": 13941, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 13935, + "end": 14070, + "name": "DUP2", + "source": 1 + }, + { + "begin": 13935, + "end": 14070, + "name": "EQ", + "source": 1 + }, + { + "begin": 13935, + "end": 14070, + "name": "PUSH [tag]", + "source": 1, + "value": "298" + }, + { + "begin": 13935, + "end": 14070, + "name": "JUMPI", + "source": 1 + }, + { + "begin": 14084, + "end": 14085, + "name": "PUSH", + "source": 1, + "value": "1" + }, + { + "begin": 14079, + "end": 14415, + "name": "DUP2", + "source": 1 + }, + { + "begin": 14079, + "end": 14415, + "name": "EQ", + "source": 1 + }, + { + "begin": 14079, + "end": 14415, + "name": "PUSH [tag]", + "source": 1, + "value": "299" + }, + { + "begin": 14079, + "end": 14415, + "name": "JUMPI", + "source": 1 + }, + { + "begin": 13902, + "end": 14415, + "name": "PUSH [tag]", + "source": 1, + "value": "297" + }, + { + "begin": 13902, + "end": 14415, + "name": "JUMP", + "source": 1 + }, + { + "begin": 13935, + "end": 14070, + "name": "tag", + "source": 1, + "value": "298" + }, + { + "begin": 13935, + "end": 14070, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 14019, + "end": 14023, + "name": "PUSH", + "source": 1, + "value": "FF" + }, + { + "begin": 14015, + "end": 14024, + "name": "NOT", + "source": 1 + }, + { + "begin": 14004, + "end": 14013, + "name": "DUP4", + "source": 1 + }, + { + "begin": 14000, + "end": 14025, + "name": "AND", + "source": 1 + }, + { + "begin": 13995, + "end": 13998, + "name": "DUP7", + "source": 1 + }, + { + "begin": 13988, + "end": 14026, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 14055, + "end": 14059, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 14050, + "end": 14053, + "name": "DUP7", + "source": 1 + }, + { + "begin": 14046, + "end": 14060, + "name": "ADD", + "source": 1 + }, + { + "begin": 14039, + "end": 14060, + "name": "SWAP4", + "source": 1 + }, + { + "begin": 14039, + "end": 14060, + "name": "POP", + "source": 1 + }, + { + "begin": 13935, + "end": 14070, + "name": "PUSH [tag]", + "source": 1, + "value": "297" + }, + { + "begin": 13935, + "end": 14070, + "name": "JUMP", + "source": 1 + }, + { + "begin": 14079, + "end": 14415, + "name": "tag", + "source": 1, + "value": "299" + }, + { + "begin": 14079, + "end": 14415, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 14146, + "end": 14184, + "name": "PUSH [tag]", + "source": 1, + "value": "300" + }, + { + "begin": 14178, + "end": 14183, + "name": "DUP6", + "source": 1 + }, + { + "begin": 14146, + "end": 14184, + "name": "PUSH [tag]", + "source": 1, + "value": "152" + }, + { + "begin": 14146, + "end": 14184, + "name": "JUMP", + "source": 1, + "value": "[in]" + }, + { + "begin": 14146, + "end": 14184, + "name": "tag", + "source": 1, + "value": "300" + }, + { + "begin": 14146, + "end": 14184, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 14206, + "end": 14207, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 14220, + "end": 14374, + "name": "tag", + "source": 1, + "value": "301" + }, + { + "begin": 14220, + "end": 14374, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 14234, + "end": 14240, + "name": "DUP4", + "source": 1 + }, + { + "begin": 14231, + "end": 14232, + "name": "DUP2", + "source": 1 + }, + { + "begin": 14228, + "end": 14241, + "name": "LT", + "source": 1 + }, + { + "begin": 14220, + "end": 14374, + "name": "ISZERO", + "source": 1 + }, + { + "begin": 14220, + "end": 14374, + "name": "PUSH [tag]", + "source": 1, + "value": "303" + }, + { + "begin": 14220, + "end": 14374, + "name": "JUMPI", + "source": 1 + }, + { + "begin": 14308, + "end": 14315, + "name": "DUP2", + "source": 1 + }, + { + "begin": 14302, + "end": 14316, + "name": "SLOAD", + "source": 1 + }, + { + "begin": 14298, + "end": 14299, + "name": "DUP2", + "source": 1 + }, + { + "begin": 14293, + "end": 14296, + "name": "DUP10", + "source": 1 + }, + { + "begin": 14289, + "end": 14300, + "name": "ADD", + "source": 1 + }, + { + "begin": 14282, + "end": 14317, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 14358, + "end": 14359, + "name": "PUSH", + "source": 1, + "value": "1" + }, + { + "begin": 14349, + "end": 14356, + "name": "DUP3", + "source": 1 + }, + { + "begin": 14345, + "end": 14360, + "name": "ADD", + "source": 1 + }, + { + "begin": 14334, + "end": 14360, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 14334, + "end": 14360, + "name": "POP", + "source": 1 + }, + { + "begin": 14256, + "end": 14260, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 14253, + "end": 14254, + "name": "DUP2", + "source": 1 + }, + { + "begin": 14249, + "end": 14261, + "name": "ADD", + "source": 1 + }, + { + "begin": 14244, + "end": 14261, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 14244, + "end": 14261, + "name": "POP", + "source": 1 + }, + { + "begin": 14220, + "end": 14374, + "name": "PUSH [tag]", + "source": 1, + "value": "301" + }, + { + "begin": 14220, + "end": 14374, + "name": "JUMP", + "source": 1 + }, + { + "begin": 14220, + "end": 14374, + "name": "tag", + "source": 1, + "value": "303" + }, + { + "begin": 14220, + "end": 14374, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 14403, + "end": 14404, + "name": "DUP1", + "source": 1 + }, + { + "begin": 14398, + "end": 14401, + "name": "DUP9", + "source": 1 + }, + { + "begin": 14394, + "end": 14405, + "name": "ADD", + "source": 1 + }, + { + "begin": 14387, + "end": 14405, + "name": "SWAP6", + "source": 1 + }, + { + "begin": 14387, + "end": 14405, + "name": "POP", + "source": 1 + }, + { + "begin": 14086, + "end": 14415, + "name": "POP", + "source": 1 + }, + { + "begin": 14086, + "end": 14415, + "name": "POP", + "source": 1 + }, + { + "begin": 13902, + "end": 14415, + "name": "tag", + "source": 1, + "value": "297" + }, + { + "begin": 13902, + "end": 14415, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 13902, + "end": 14415, + "name": "POP", + "source": 1 + }, + { + "begin": 13708, + "end": 14421, + "name": "POP", + "source": 1 + }, + { + "begin": 13708, + "end": 14421, + "name": "POP", + "source": 1 + }, + { + "begin": 13619, + "end": 14421, + "name": "SWAP3", + "source": 1 + }, + { + "begin": 13619, + "end": 14421, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 13619, + "end": 14421, + "name": "POP", + "source": 1 + }, + { + "begin": 13619, + "end": 14421, + "name": "POP", + "source": 1 + }, + { + "begin": 13619, + "end": 14421, + "name": "JUMP", + "source": 1, + "value": "[out]" + }, + { + "begin": 14427, + "end": 14935, + "name": "tag", + "source": 1, + "value": "82" + }, + { + "begin": 14427, + "end": 14935, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 14585, + "end": 14589, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 14623, + "end": 14625, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 14612, + "end": 14621, + "name": "DUP3", + "source": 1 + }, + { + "begin": 14608, + "end": 14626, + "name": "ADD", + "source": 1 + }, + { + "begin": 14600, + "end": 14626, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 14600, + "end": 14626, + "name": "POP", + "source": 1 + }, + { + "begin": 14672, + "end": 14681, + "name": "DUP2", + "source": 1 + }, + { + "begin": 14666, + "end": 14670, + "name": "DUP2", + "source": 1 + }, + { + "begin": 14662, + "end": 14682, + "name": "SUB", + "source": 1 + }, + { + "begin": 14658, + "end": 14659, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 14647, + "end": 14656, + "name": "DUP4", + "source": 1 + }, + { + "begin": 14643, + "end": 14660, + "name": "ADD", + "source": 1 + }, + { + "begin": 14636, + "end": 14683, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 14700, + "end": 14775, + "name": "PUSH [tag]", + "source": 1, + "value": "305" + }, + { + "begin": 14770, + "end": 14774, + "name": "DUP2", + "source": 1 + }, + { + "begin": 14761, + "end": 14767, + "name": "DUP6", + "source": 1 + }, + { + "begin": 14700, + "end": 14775, + "name": "PUSH [tag]", + "source": 1, + "value": "153" + }, + { + "begin": 14700, + "end": 14775, + "name": "JUMP", + "source": 1, + "value": "[in]" + }, + { + "begin": 14700, + "end": 14775, + "name": "tag", + "source": 1, + "value": "305" + }, + { + "begin": 14700, + "end": 14775, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 14692, + "end": 14775, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 14692, + "end": 14775, + "name": "POP", + "source": 1 + }, + { + "begin": 14822, + "end": 14831, + "name": "DUP2", + "source": 1 + }, + { + "begin": 14816, + "end": 14820, + "name": "DUP2", + "source": 1 + }, + { + "begin": 14812, + "end": 14832, + "name": "SUB", + "source": 1 + }, + { + "begin": 14807, + "end": 14809, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 14796, + "end": 14805, + "name": "DUP4", + "source": 1 + }, + { + "begin": 14792, + "end": 14810, + "name": "ADD", + "source": 1 + }, + { + "begin": 14785, + "end": 14833, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 14850, + "end": 14928, + "name": "PUSH [tag]", + "source": 1, + "value": "306" + }, + { + "begin": 14923, + "end": 14927, + "name": "DUP2", + "source": 1 + }, + { + "begin": 14914, + "end": 14920, + "name": "DUP5", + "source": 1 + }, + { + "begin": 14850, + "end": 14928, + "name": "PUSH [tag]", + "source": 1, + "value": "130" + }, + { + "begin": 14850, + "end": 14928, + "name": "JUMP", + "source": 1, + "value": "[in]" + }, + { + "begin": 14850, + "end": 14928, + "name": "tag", + "source": 1, + "value": "306" + }, + { + "begin": 14850, + "end": 14928, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 14842, + "end": 14928, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 14842, + "end": 14928, + "name": "POP", + "source": 1 + }, + { + "begin": 14427, + "end": 14935, + "name": "SWAP4", + "source": 1 + }, + { + "begin": 14427, + "end": 14935, + "name": "SWAP3", + "source": 1 + }, + { + "begin": 14427, + "end": 14935, + "name": "POP", + "source": 1 + }, + { + "begin": 14427, + "end": 14935, + "name": "POP", + "source": 1 + }, + { + "begin": 14427, + "end": 14935, + "name": "POP", + "source": 1 + }, + { + "begin": 14427, + "end": 14935, + "name": "JUMP", + "source": 1, + "value": "[out]" + } + ] + } + } + }, + "methodIdentifiers": { + "addInfo(string)": "0bf803e4", + "addMember(address)": "ca6d56dc", + "delMember(address)": "1f81595d", + "getInfo(uint256)": "1a3cd59a", + "listInfo()": "d03d5849", + "owner()": "8da5cb5b", + "setInfo(uint256,string)": "b6820002", + "whiteList(address)": "372c12b1" + } + }, + "metadata": "{\"compiler\":{\"version\":\"0.8.13+commit.abaa5c0e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"string\",\"name\":\"oldInfo\",\"type\":\"string\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"newInfo\",\"type\":\"string\"}],\"name\":\"InfoChange\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"_info\",\"type\":\"string\"}],\"name\":\"addInfo\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"index\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_member\",\"type\":\"address\"}],\"name\":\"addMember\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_member\",\"type\":\"address\"}],\"name\":\"delMember\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"index\",\"type\":\"uint256\"}],\"name\":\"getInfo\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"listInfo\",\"outputs\":[{\"internalType\":\"string[]\",\"name\":\"\",\"type\":\"string[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"index\",\"type\":\"uint256\"},{\"internalType\":\"string\",\"name\":\"_info\",\"type\":\"string\"}],\"name\":\"setInfo\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"whiteList\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"RegisterAccess.sol\":\"RegisterAccess\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"RegisterAccess.sol\":{\"keccak256\":\"0xe0beb35f0b5e533f0e945db5718986e1cc8362938581d0c9958a3b63a6aafedc\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1ba84f3051eec7693297666421211e4aeb0923c1a72b53e4377c395c021cdacb\",\"dweb:/ipfs/QmaPLbWMhXgjAWaAXjTiAVhQACJLc8SeRaJZvYta9wFtW2\"]}},\"version\":1}", + "storageLayout": { + "storage": [ + { + "astId": 4, + "contract": "RegisterAccess.sol:RegisterAccess", + "label": "info", + "offset": 0, + "slot": "0", + "type": "t_array(t_string_storage)dyn_storage" + }, + { + "astId": 6, + "contract": "RegisterAccess.sol:RegisterAccess", + "label": "owner", + "offset": 0, + "slot": "1", + "type": "t_address" + }, + { + "astId": 10, + "contract": "RegisterAccess.sol:RegisterAccess", + "label": "whiteList", + "offset": 0, + "slot": "2", + "type": "t_mapping(t_address,t_bool)" + } + ], + "types": { + "t_address": { + "encoding": "inplace", + "label": "address", + "numberOfBytes": "20" + }, + "t_array(t_string_storage)dyn_storage": { + "base": "t_string_storage", + "encoding": "dynamic_array", + "label": "string[]", + "numberOfBytes": "32" + }, + "t_bool": { + "encoding": "inplace", + "label": "bool", + "numberOfBytes": "1" + }, + "t_mapping(t_address,t_bool)": { + "encoding": "mapping", + "key": "t_address", + "label": "mapping(address => bool)", + "numberOfBytes": "32", + "value": "t_bool" + }, + "t_string_storage": { + "encoding": "bytes", + "label": "string", + "numberOfBytes": "32" + } + } + }, + "userdoc": { + "kind": "user", + "methods": {}, + "version": 1 + } + } + } + }, + "sources": { + "RegisterAccess.sol": { + "ast": { + "absolutePath": "RegisterAccess.sol", + "exportedSymbols": { + "RegisterAccess": [ + 154 + ] + }, + "id": 155, + "license": "MIT", + "nodeType": "SourceUnit", + "nodes": [ + { + "id": 1, + "literals": [ + "solidity", + "0.8", + ".13" + ], + "nodeType": "PragmaDirective", + "src": "33:23:0" + }, + { + "abstract": false, + "baseContracts": [], + "canonicalName": "RegisterAccess", + "contractDependencies": [], + "contractKind": "contract", + "fullyImplemented": true, + "id": 154, + "linearizedBaseContracts": [ + 154 + ], + "name": "RegisterAccess", + "nameLocation": "80:14:0", + "nodeType": "ContractDefinition", + "nodes": [ + { + "constant": false, + "id": 4, + "mutability": "mutable", + "name": "info", + "nameLocation": "119:4:0", + "nodeType": "VariableDeclaration", + "scope": 154, + "src": "102:21:0", + "stateVariable": true, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_array$_t_string_storage_$dyn_storage", + "typeString": "string[]" + }, + "typeName": { + "baseType": { + "id": 2, + "name": "string", + "nodeType": "ElementaryTypeName", + "src": "102:6:0", + "typeDescriptions": { + "typeIdentifier": "t_string_storage_ptr", + "typeString": "string" + } + }, + "id": 3, + "nodeType": "ArrayTypeName", + "src": "102:8:0", + "typeDescriptions": { + "typeIdentifier": "t_array$_t_string_storage_$dyn_storage_ptr", + "typeString": "string[]" + } + }, + "visibility": "private" + }, + { + "constant": false, + "functionSelector": "8da5cb5b", + "id": 6, + "mutability": "mutable", + "name": "owner", + "nameLocation": "145:5:0", + "nodeType": "VariableDeclaration", + "scope": 154, + "src": "130:20:0", + "stateVariable": true, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + }, + "typeName": { + "id": 5, + "name": "address", + "nodeType": "ElementaryTypeName", + "src": "130:7:0", + "stateMutability": "nonpayable", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "visibility": "public" + }, + { + "constant": false, + "functionSelector": "372c12b1", + "id": 10, + "mutability": "mutable", + "name": "whiteList", + "nameLocation": "190:9:0", + "nodeType": "VariableDeclaration", + "scope": 154, + "src": "157:42:0", + "stateVariable": true, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_mapping$_t_address_$_t_bool_$", + "typeString": "mapping(address => bool)" + }, + "typeName": { + "id": 9, + "keyType": { + "id": 7, + "name": "address", + "nodeType": "ElementaryTypeName", + "src": "166:7:0", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "nodeType": "Mapping", + "src": "157:25:0", + "typeDescriptions": { + "typeIdentifier": "t_mapping$_t_address_$_t_bool_$", + "typeString": "mapping(address => bool)" + }, + "valueType": { + "id": 8, + "name": "bool", + "nodeType": "ElementaryTypeName", + "src": "177:4:0", + "typeDescriptions": { + "typeIdentifier": "t_bool", + "typeString": "bool" + } + } + }, + "visibility": "public" + }, + { + "body": { + "id": 25, + "nodeType": "Block", + "src": "223:76:0", + "statements": [ + { + "expression": { + "id": 16, + "isConstant": false, + "isLValue": false, + "isPure": false, + "lValueRequested": false, + "leftHandSide": { + "id": 13, + "name": "owner", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 6, + "src": "234:5:0", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "nodeType": "Assignment", + "operator": "=", + "rightHandSide": { + "expression": { + "id": 14, + "name": "msg", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 4294967281, + "src": "242:3:0", + "typeDescriptions": { + "typeIdentifier": "t_magic_message", + "typeString": "msg" + } + }, + "id": 15, + "isConstant": false, + "isLValue": false, + "isPure": false, + "lValueRequested": false, + "memberName": "sender", + "nodeType": "MemberAccess", + "src": "242:10:0", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "src": "234:18:0", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "id": 17, + "nodeType": "ExpressionStatement", + "src": "234:18:0" + }, + { + "expression": { + "id": 23, + "isConstant": false, + "isLValue": false, + "isPure": false, + "lValueRequested": false, + "leftHandSide": { + "baseExpression": { + "id": 18, + "name": "whiteList", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 10, + "src": "263:9:0", + "typeDescriptions": { + "typeIdentifier": "t_mapping$_t_address_$_t_bool_$", + "typeString": "mapping(address => bool)" + } + }, + "id": 21, + "indexExpression": { + "expression": { + "id": 19, + "name": "msg", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 4294967281, + "src": "273:3:0", + "typeDescriptions": { + "typeIdentifier": "t_magic_message", + "typeString": "msg" + } + }, + "id": 20, + "isConstant": false, + "isLValue": false, + "isPure": false, + "lValueRequested": false, + "memberName": "sender", + "nodeType": "MemberAccess", + "src": "273:10:0", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "isConstant": false, + "isLValue": true, + "isPure": false, + "lValueRequested": true, + "nodeType": "IndexAccess", + "src": "263:21:0", + "typeDescriptions": { + "typeIdentifier": "t_bool", + "typeString": "bool" + } + }, + "nodeType": "Assignment", + "operator": "=", + "rightHandSide": { + "hexValue": "74727565", + "id": 22, + "isConstant": false, + "isLValue": false, + "isPure": true, + "kind": "bool", + "lValueRequested": false, + "nodeType": "Literal", + "src": "287:4:0", + "typeDescriptions": { + "typeIdentifier": "t_bool", + "typeString": "bool" + }, + "value": "true" + }, + "src": "263:28:0", + "typeDescriptions": { + "typeIdentifier": "t_bool", + "typeString": "bool" + } + }, + "id": 24, + "nodeType": "ExpressionStatement", + "src": "263:28:0" + } + ] + }, + "id": 26, + "implemented": true, + "kind": "constructor", + "modifiers": [], + "name": "", + "nameLocation": "-1:-1:-1", + "nodeType": "FunctionDefinition", + "parameters": { + "id": 11, + "nodeType": "ParameterList", + "parameters": [], + "src": "220:2:0" + }, + "returnParameters": { + "id": 12, + "nodeType": "ParameterList", + "parameters": [], + "src": "223:0:0" + }, + "scope": 154, + "src": "209:90:0", + "stateMutability": "nonpayable", + "virtual": false, + "visibility": "public" + }, + { + "anonymous": false, + "eventSelector": "305058d54db6daf26994cd687b168a24cdd9a7201462f1659782c4e429987992", + "id": 32, + "name": "InfoChange", + "nameLocation": "314:10:0", + "nodeType": "EventDefinition", + "parameters": { + "id": 31, + "nodeType": "ParameterList", + "parameters": [ + { + "constant": false, + "id": 28, + "indexed": false, + "mutability": "mutable", + "name": "oldInfo", + "nameLocation": "332:7:0", + "nodeType": "VariableDeclaration", + "scope": 32, + "src": "325:14:0", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_string_memory_ptr", + "typeString": "string" + }, + "typeName": { + "id": 27, + "name": "string", + "nodeType": "ElementaryTypeName", + "src": "325:6:0", + "typeDescriptions": { + "typeIdentifier": "t_string_storage_ptr", + "typeString": "string" + } + }, + "visibility": "internal" + }, + { + "constant": false, + "id": 30, + "indexed": false, + "mutability": "mutable", + "name": "newInfo", + "nameLocation": "348:7:0", + "nodeType": "VariableDeclaration", + "scope": 32, + "src": "341:14:0", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_string_memory_ptr", + "typeString": "string" + }, + "typeName": { + "id": 29, + "name": "string", + "nodeType": "ElementaryTypeName", + "src": "341:6:0", + "typeDescriptions": { + "typeIdentifier": "t_string_storage_ptr", + "typeString": "string" + } + }, + "visibility": "internal" + } + ], + "src": "324:32:0" + }, + "src": "308:49:0" + }, + { + "body": { + "id": 43, + "nodeType": "Block", + "src": "387:72:0", + "statements": [ + { + "expression": { + "arguments": [ + { + "commonType": { + "typeIdentifier": "t_address", + "typeString": "address" + }, + "id": 38, + "isConstant": false, + "isLValue": false, + "isPure": false, + "lValueRequested": false, + "leftExpression": { + "expression": { + "id": 35, + "name": "msg", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 4294967281, + "src": "406:3:0", + "typeDescriptions": { + "typeIdentifier": "t_magic_message", + "typeString": "msg" + } + }, + "id": 36, + "isConstant": false, + "isLValue": false, + "isPure": false, + "lValueRequested": false, + "memberName": "sender", + "nodeType": "MemberAccess", + "src": "406:10:0", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "nodeType": "BinaryOperation", + "operator": "==", + "rightExpression": { + "id": 37, + "name": "owner", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 6, + "src": "420:5:0", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "src": "406:19:0", + "typeDescriptions": { + "typeIdentifier": "t_bool", + "typeString": "bool" + } + }, + { + "hexValue": "4f6e6c79206f776e6572", + "id": 39, + "isConstant": false, + "isLValue": false, + "isPure": true, + "kind": "string", + "lValueRequested": false, + "nodeType": "Literal", + "src": "426:12:0", + "typeDescriptions": { + "typeIdentifier": "t_stringliteral_17d9f114efaa93d67eedad749dd7fd16a6895ff93e28b7a30c667a069f2ed42d", + "typeString": "literal_string \"Only owner\"" + }, + "value": "Only owner" + } + ], + "expression": { + "argumentTypes": [ + { + "typeIdentifier": "t_bool", + "typeString": "bool" + }, + { + "typeIdentifier": "t_stringliteral_17d9f114efaa93d67eedad749dd7fd16a6895ff93e28b7a30c667a069f2ed42d", + "typeString": "literal_string \"Only owner\"" + } + ], + "id": 34, + "name": "require", + "nodeType": "Identifier", + "overloadedDeclarations": [ + 4294967278, + 4294967278 + ], + "referencedDeclaration": 4294967278, + "src": "398:7:0", + "typeDescriptions": { + "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$", + "typeString": "function (bool,string memory) pure" + } + }, + "id": 40, + "isConstant": false, + "isLValue": false, + "isPure": false, + "kind": "functionCall", + "lValueRequested": false, + "names": [], + "nodeType": "FunctionCall", + "src": "398:41:0", + "tryCall": false, + "typeDescriptions": { + "typeIdentifier": "t_tuple$__$", + "typeString": "tuple()" + } + }, + "id": 41, + "nodeType": "ExpressionStatement", + "src": "398:41:0" + }, + { + "id": 42, + "nodeType": "PlaceholderStatement", + "src": "450:1:0" + } + ] + }, + "id": 44, + "name": "onlyOwner", + "nameLocation": "377:9:0", + "nodeType": "ModifierDefinition", + "parameters": { + "id": 33, + "nodeType": "ParameterList", + "parameters": [], + "src": "387:0:0" + }, + "src": "368:91:0", + "virtual": false, + "visibility": "internal" + }, + { + "body": { + "id": 57, + "nodeType": "Block", + "src": "491:87:0", + "statements": [ + { + "expression": { + "arguments": [ + { + "commonType": { + "typeIdentifier": "t_bool", + "typeString": "bool" + }, + "id": 52, + "isConstant": false, + "isLValue": false, + "isPure": false, + "lValueRequested": false, + "leftExpression": { + "baseExpression": { + "id": 47, + "name": "whiteList", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 10, + "src": "510:9:0", + "typeDescriptions": { + "typeIdentifier": "t_mapping$_t_address_$_t_bool_$", + "typeString": "mapping(address => bool)" + } + }, + "id": 50, + "indexExpression": { + "expression": { + "id": 48, + "name": "msg", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 4294967281, + "src": "520:3:0", + "typeDescriptions": { + "typeIdentifier": "t_magic_message", + "typeString": "msg" + } + }, + "id": 49, + "isConstant": false, + "isLValue": false, + "isPure": false, + "lValueRequested": false, + "memberName": "sender", + "nodeType": "MemberAccess", + "src": "520:10:0", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "isConstant": false, + "isLValue": true, + "isPure": false, + "lValueRequested": false, + "nodeType": "IndexAccess", + "src": "510:21:0", + "typeDescriptions": { + "typeIdentifier": "t_bool", + "typeString": "bool" + } + }, + "nodeType": "BinaryOperation", + "operator": "==", + "rightExpression": { + "hexValue": "74727565", + "id": 51, + "isConstant": false, + "isLValue": false, + "isPure": true, + "kind": "bool", + "lValueRequested": false, + "nodeType": "Literal", + "src": "535:4:0", + "typeDescriptions": { + "typeIdentifier": "t_bool", + "typeString": "bool" + }, + "value": "true" + }, + "src": "510:29:0", + "typeDescriptions": { + "typeIdentifier": "t_bool", + "typeString": "bool" + } + }, + { + "hexValue": "4f6e6c792077686974656c697374", + "id": 53, + "isConstant": false, + "isLValue": false, + "isPure": true, + "kind": "string", + "lValueRequested": false, + "nodeType": "Literal", + "src": "541:16:0", + "typeDescriptions": { + "typeIdentifier": "t_stringliteral_e456a8df821d58a81d00df5ff2bc8653f1a52a4771d0bdf36a4aa3f1bac56f7b", + "typeString": "literal_string \"Only whitelist\"" + }, + "value": "Only whitelist" + } + ], + "expression": { + "argumentTypes": [ + { + "typeIdentifier": "t_bool", + "typeString": "bool" + }, + { + "typeIdentifier": "t_stringliteral_e456a8df821d58a81d00df5ff2bc8653f1a52a4771d0bdf36a4aa3f1bac56f7b", + "typeString": "literal_string \"Only whitelist\"" + } + ], + "id": 46, + "name": "require", + "nodeType": "Identifier", + "overloadedDeclarations": [ + 4294967278, + 4294967278 + ], + "referencedDeclaration": 4294967278, + "src": "502:7:0", + "typeDescriptions": { + "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$", + "typeString": "function (bool,string memory) pure" + } + }, + "id": 54, + "isConstant": false, + "isLValue": false, + "isPure": false, + "kind": "functionCall", + "lValueRequested": false, + "names": [], + "nodeType": "FunctionCall", + "src": "502:56:0", + "tryCall": false, + "typeDescriptions": { + "typeIdentifier": "t_tuple$__$", + "typeString": "tuple()" + } + }, + "id": 55, + "nodeType": "ExpressionStatement", + "src": "502:56:0" + }, + { + "id": 56, + "nodeType": "PlaceholderStatement", + "src": "569:1:0" + } + ] + }, + "id": 58, + "name": "onlyWhitelist", + "nameLocation": "477:13:0", + "nodeType": "ModifierDefinition", + "parameters": { + "id": 45, + "nodeType": "ParameterList", + "parameters": [], + "src": "491:0:0" + }, + "src": "468:110:0", + "virtual": false, + "visibility": "internal" + }, + { + "body": { + "id": 69, + "nodeType": "Block", + "src": "652:37:0", + "statements": [ + { + "expression": { + "baseExpression": { + "id": 65, + "name": "info", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 4, + "src": "670:4:0", + "typeDescriptions": { + "typeIdentifier": "t_array$_t_string_storage_$dyn_storage", + "typeString": "string storage ref[] storage ref" + } + }, + "id": 67, + "indexExpression": { + "id": 66, + "name": "index", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 60, + "src": "675:5:0", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "isConstant": false, + "isLValue": true, + "isPure": false, + "lValueRequested": false, + "nodeType": "IndexAccess", + "src": "670:11:0", + "typeDescriptions": { + "typeIdentifier": "t_string_storage", + "typeString": "string storage ref" + } + }, + "functionReturnParameters": 64, + "id": 68, + "nodeType": "Return", + "src": "663:18:0" + } + ] + }, + "functionSelector": "1a3cd59a", + "id": 70, + "implemented": true, + "kind": "function", + "modifiers": [], + "name": "getInfo", + "nameLocation": "596:7:0", + "nodeType": "FunctionDefinition", + "parameters": { + "id": 61, + "nodeType": "ParameterList", + "parameters": [ + { + "constant": false, + "id": 60, + "mutability": "mutable", + "name": "index", + "nameLocation": "609:5:0", + "nodeType": "VariableDeclaration", + "scope": 70, + "src": "604:10:0", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + }, + "typeName": { + "id": 59, + "name": "uint", + "nodeType": "ElementaryTypeName", + "src": "604:4:0", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "visibility": "internal" + } + ], + "src": "603:12:0" + }, + "returnParameters": { + "id": 64, + "nodeType": "ParameterList", + "parameters": [ + { + "constant": false, + "id": 63, + "mutability": "mutable", + "name": "", + "nameLocation": "-1:-1:-1", + "nodeType": "VariableDeclaration", + "scope": 70, + "src": "637:13:0", + "stateVariable": false, + "storageLocation": "memory", + "typeDescriptions": { + "typeIdentifier": "t_string_memory_ptr", + "typeString": "string" + }, + "typeName": { + "id": 62, + "name": "string", + "nodeType": "ElementaryTypeName", + "src": "637:6:0", + "typeDescriptions": { + "typeIdentifier": "t_string_storage_ptr", + "typeString": "string" + } + }, + "visibility": "internal" + } + ], + "src": "636:15:0" + }, + "scope": 154, + "src": "587:102:0", + "stateMutability": "view", + "virtual": false, + "visibility": "public" + }, + { + "body": { + "id": 92, + "nodeType": "Block", + "src": "769:85:0", + "statements": [ + { + "eventCall": { + "arguments": [ + { + "baseExpression": { + "id": 80, + "name": "info", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 4, + "src": "797:4:0", + "typeDescriptions": { + "typeIdentifier": "t_array$_t_string_storage_$dyn_storage", + "typeString": "string storage ref[] storage ref" + } + }, + "id": 82, + "indexExpression": { + "id": 81, + "name": "index", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 72, + "src": "802:5:0", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "isConstant": false, + "isLValue": true, + "isPure": false, + "lValueRequested": false, + "nodeType": "IndexAccess", + "src": "797:11:0", + "typeDescriptions": { + "typeIdentifier": "t_string_storage", + "typeString": "string storage ref" + } + }, + { + "id": 83, + "name": "_info", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 74, + "src": "810:5:0", + "typeDescriptions": { + "typeIdentifier": "t_string_memory_ptr", + "typeString": "string memory" + } + } + ], + "expression": { + "argumentTypes": [ + { + "typeIdentifier": "t_string_storage", + "typeString": "string storage ref" + }, + { + "typeIdentifier": "t_string_memory_ptr", + "typeString": "string memory" + } + ], + "id": 79, + "name": "InfoChange", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 32, + "src": "785:10:0", + "typeDescriptions": { + "typeIdentifier": "t_function_event_nonpayable$_t_string_memory_ptr_$_t_string_memory_ptr_$returns$__$", + "typeString": "function (string memory,string memory)" + } + }, + "id": 84, + "isConstant": false, + "isLValue": false, + "isPure": false, + "kind": "functionCall", + "lValueRequested": false, + "names": [], + "nodeType": "FunctionCall", + "src": "785:31:0", + "tryCall": false, + "typeDescriptions": { + "typeIdentifier": "t_tuple$__$", + "typeString": "tuple()" + } + }, + "id": 85, + "nodeType": "EmitStatement", + "src": "780:36:0" + }, + { + "expression": { + "id": 90, + "isConstant": false, + "isLValue": false, + "isPure": false, + "lValueRequested": false, + "leftHandSide": { + "baseExpression": { + "id": 86, + "name": "info", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 4, + "src": "827:4:0", + "typeDescriptions": { + "typeIdentifier": "t_array$_t_string_storage_$dyn_storage", + "typeString": "string storage ref[] storage ref" + } + }, + "id": 88, + "indexExpression": { + "id": 87, + "name": "index", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 72, + "src": "832:5:0", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "isConstant": false, + "isLValue": true, + "isPure": false, + "lValueRequested": true, + "nodeType": "IndexAccess", + "src": "827:11:0", + "typeDescriptions": { + "typeIdentifier": "t_string_storage", + "typeString": "string storage ref" + } + }, + "nodeType": "Assignment", + "operator": "=", + "rightHandSide": { + "id": 89, + "name": "_info", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 74, + "src": "841:5:0", + "typeDescriptions": { + "typeIdentifier": "t_string_memory_ptr", + "typeString": "string memory" + } + }, + "src": "827:19:0", + "typeDescriptions": { + "typeIdentifier": "t_string_storage", + "typeString": "string storage ref" + } + }, + "id": 91, + "nodeType": "ExpressionStatement", + "src": "827:19:0" + } + ] + }, + "functionSelector": "b6820002", + "id": 93, + "implemented": true, + "kind": "function", + "modifiers": [ + { + "id": 77, + "kind": "modifierInvocation", + "modifierName": { + "id": 76, + "name": "onlyWhitelist", + "nodeType": "IdentifierPath", + "referencedDeclaration": 58, + "src": "755:13:0" + }, + "nodeType": "ModifierInvocation", + "src": "755:13:0" + } + ], + "name": "setInfo", + "nameLocation": "707:7:0", + "nodeType": "FunctionDefinition", + "parameters": { + "id": 75, + "nodeType": "ParameterList", + "parameters": [ + { + "constant": false, + "id": 72, + "mutability": "mutable", + "name": "index", + "nameLocation": "720:5:0", + "nodeType": "VariableDeclaration", + "scope": 93, + "src": "715:10:0", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + }, + "typeName": { + "id": 71, + "name": "uint", + "nodeType": "ElementaryTypeName", + "src": "715:4:0", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "visibility": "internal" + }, + { + "constant": false, + "id": 74, + "mutability": "mutable", + "name": "_info", + "nameLocation": "741:5:0", + "nodeType": "VariableDeclaration", + "scope": 93, + "src": "727:19:0", + "stateVariable": false, + "storageLocation": "memory", + "typeDescriptions": { + "typeIdentifier": "t_string_memory_ptr", + "typeString": "string" + }, + "typeName": { + "id": 73, + "name": "string", + "nodeType": "ElementaryTypeName", + "src": "727:6:0", + "typeDescriptions": { + "typeIdentifier": "t_string_storage_ptr", + "typeString": "string" + } + }, + "visibility": "internal" + } + ], + "src": "714:33:0" + }, + "returnParameters": { + "id": 78, + "nodeType": "ParameterList", + "parameters": [], + "src": "769:0:0" + }, + "scope": 154, + "src": "698:156:0", + "stateMutability": "nonpayable", + "virtual": false, + "visibility": "public" + }, + { + "body": { + "id": 115, + "nodeType": "Block", + "src": "945:69:0", + "statements": [ + { + "expression": { + "arguments": [ + { + "id": 105, + "name": "_info", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 95, + "src": "967:5:0", + "typeDescriptions": { + "typeIdentifier": "t_string_memory_ptr", + "typeString": "string memory" + } + } + ], + "expression": { + "argumentTypes": [ + { + "typeIdentifier": "t_string_memory_ptr", + "typeString": "string memory" + } + ], + "expression": { + "id": 102, + "name": "info", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 4, + "src": "956:4:0", + "typeDescriptions": { + "typeIdentifier": "t_array$_t_string_storage_$dyn_storage", + "typeString": "string storage ref[] storage ref" + } + }, + "id": 104, + "isConstant": false, + "isLValue": false, + "isPure": false, + "lValueRequested": false, + "memberName": "push", + "nodeType": "MemberAccess", + "src": "956:9:0", + "typeDescriptions": { + "typeIdentifier": "t_function_arraypush_nonpayable$_t_array$_t_string_storage_$dyn_storage_ptr_$_t_string_storage_$returns$__$bound_to$_t_array$_t_string_storage_$dyn_storage_ptr_$", + "typeString": "function (string storage ref[] storage pointer,string storage ref)" + } + }, + "id": 106, + "isConstant": false, + "isLValue": false, + "isPure": false, + "kind": "functionCall", + "lValueRequested": false, + "names": [], + "nodeType": "FunctionCall", + "src": "956:17:0", + "tryCall": false, + "typeDescriptions": { + "typeIdentifier": "t_tuple$__$", + "typeString": "tuple()" + } + }, + "id": 107, + "nodeType": "ExpressionStatement", + "src": "956:17:0" + }, + { + "expression": { + "id": 113, + "isConstant": false, + "isLValue": false, + "isPure": false, + "lValueRequested": false, + "leftHandSide": { + "id": 108, + "name": "index", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 100, + "src": "984:5:0", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "nodeType": "Assignment", + "operator": "=", + "rightHandSide": { + "commonType": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + }, + "id": 112, + "isConstant": false, + "isLValue": false, + "isPure": false, + "lValueRequested": false, + "leftExpression": { + "expression": { + "id": 109, + "name": "info", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 4, + "src": "992:4:0", + "typeDescriptions": { + "typeIdentifier": "t_array$_t_string_storage_$dyn_storage", + "typeString": "string storage ref[] storage ref" + } + }, + "id": 110, + "isConstant": false, + "isLValue": false, + "isPure": false, + "lValueRequested": false, + "memberName": "length", + "nodeType": "MemberAccess", + "src": "992:11:0", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "nodeType": "BinaryOperation", + "operator": "-", + "rightExpression": { + "hexValue": "31", + "id": 111, + "isConstant": false, + "isLValue": false, + "isPure": true, + "kind": "number", + "lValueRequested": false, + "nodeType": "Literal", + "src": "1005:1:0", + "typeDescriptions": { + "typeIdentifier": "t_rational_1_by_1", + "typeString": "int_const 1" + }, + "value": "1" + }, + "src": "992:14:0", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "src": "984:22:0", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "id": 114, + "nodeType": "ExpressionStatement", + "src": "984:22:0" + } + ] + }, + "functionSelector": "0bf803e4", + "id": 116, + "implemented": true, + "kind": "function", + "modifiers": [ + { + "id": 98, + "kind": "modifierInvocation", + "modifierName": { + "id": 97, + "name": "onlyWhitelist", + "nodeType": "IdentifierPath", + "referencedDeclaration": 58, + "src": "910:13:0" + }, + "nodeType": "ModifierInvocation", + "src": "910:13:0" + } + ], + "name": "addInfo", + "nameLocation": "874:7:0", + "nodeType": "FunctionDefinition", + "parameters": { + "id": 96, + "nodeType": "ParameterList", + "parameters": [ + { + "constant": false, + "id": 95, + "mutability": "mutable", + "name": "_info", + "nameLocation": "896:5:0", + "nodeType": "VariableDeclaration", + "scope": 116, + "src": "882:19:0", + "stateVariable": false, + "storageLocation": "memory", + "typeDescriptions": { + "typeIdentifier": "t_string_memory_ptr", + "typeString": "string" + }, + "typeName": { + "id": 94, + "name": "string", + "nodeType": "ElementaryTypeName", + "src": "882:6:0", + "typeDescriptions": { + "typeIdentifier": "t_string_storage_ptr", + "typeString": "string" + } + }, + "visibility": "internal" + } + ], + "src": "881:21:0" + }, + "returnParameters": { + "id": 101, + "nodeType": "ParameterList", + "parameters": [ + { + "constant": false, + "id": 100, + "mutability": "mutable", + "name": "index", + "nameLocation": "938:5:0", + "nodeType": "VariableDeclaration", + "scope": 116, + "src": "933:10:0", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + }, + "typeName": { + "id": 99, + "name": "uint", + "nodeType": "ElementaryTypeName", + "src": "933:4:0", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "visibility": "internal" + } + ], + "src": "932:12:0" + }, + "scope": 154, + "src": "865:149:0", + "stateMutability": "nonpayable", + "virtual": false, + "visibility": "public" + }, + { + "body": { + "id": 124, + "nodeType": "Block", + "src": "1085:30:0", + "statements": [ + { + "expression": { + "id": 122, + "name": "info", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 4, + "src": "1103:4:0", + "typeDescriptions": { + "typeIdentifier": "t_array$_t_string_storage_$dyn_storage", + "typeString": "string storage ref[] storage ref" + } + }, + "functionReturnParameters": 121, + "id": 123, + "nodeType": "Return", + "src": "1096:11:0" + } + ] + }, + "functionSelector": "d03d5849", + "id": 125, + "implemented": true, + "kind": "function", + "modifiers": [], + "name": "listInfo", + "nameLocation": "1036:8:0", + "nodeType": "FunctionDefinition", + "parameters": { + "id": 117, + "nodeType": "ParameterList", + "parameters": [], + "src": "1044:2:0" + }, + "returnParameters": { + "id": 121, + "nodeType": "ParameterList", + "parameters": [ + { + "constant": false, + "id": 120, + "mutability": "mutable", + "name": "", + "nameLocation": "-1:-1:-1", + "nodeType": "VariableDeclaration", + "scope": 125, + "src": "1068:15:0", + "stateVariable": false, + "storageLocation": "memory", + "typeDescriptions": { + "typeIdentifier": "t_array$_t_string_memory_ptr_$dyn_memory_ptr", + "typeString": "string[]" + }, + "typeName": { + "baseType": { + "id": 118, + "name": "string", + "nodeType": "ElementaryTypeName", + "src": "1068:6:0", + "typeDescriptions": { + "typeIdentifier": "t_string_storage_ptr", + "typeString": "string" + } + }, + "id": 119, + "nodeType": "ArrayTypeName", + "src": "1068:8:0", + "typeDescriptions": { + "typeIdentifier": "t_array$_t_string_storage_$dyn_storage_ptr", + "typeString": "string[]" + } + }, + "visibility": "internal" + } + ], + "src": "1067:17:0" + }, + "scope": 154, + "src": "1027:88:0", + "stateMutability": "view", + "virtual": false, + "visibility": "public" + }, + { + "body": { + "id": 138, + "nodeType": "Block", + "src": "1178:44:0", + "statements": [ + { + "expression": { + "id": 136, + "isConstant": false, + "isLValue": false, + "isPure": false, + "lValueRequested": false, + "leftHandSide": { + "baseExpression": { + "id": 132, + "name": "whiteList", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 10, + "src": "1189:9:0", + "typeDescriptions": { + "typeIdentifier": "t_mapping$_t_address_$_t_bool_$", + "typeString": "mapping(address => bool)" + } + }, + "id": 134, + "indexExpression": { + "id": 133, + "name": "_member", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 127, + "src": "1199:7:0", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "isConstant": false, + "isLValue": true, + "isPure": false, + "lValueRequested": true, + "nodeType": "IndexAccess", + "src": "1189:18:0", + "typeDescriptions": { + "typeIdentifier": "t_bool", + "typeString": "bool" + } + }, + "nodeType": "Assignment", + "operator": "=", + "rightHandSide": { + "hexValue": "74727565", + "id": 135, + "isConstant": false, + "isLValue": false, + "isPure": true, + "kind": "bool", + "lValueRequested": false, + "nodeType": "Literal", + "src": "1210:4:0", + "typeDescriptions": { + "typeIdentifier": "t_bool", + "typeString": "bool" + }, + "value": "true" + }, + "src": "1189:25:0", + "typeDescriptions": { + "typeIdentifier": "t_bool", + "typeString": "bool" + } + }, + "id": 137, + "nodeType": "ExpressionStatement", + "src": "1189:25:0" + } + ] + }, + "functionSelector": "ca6d56dc", + "id": 139, + "implemented": true, + "kind": "function", + "modifiers": [ + { + "id": 130, + "kind": "modifierInvocation", + "modifierName": { + "id": 129, + "name": "onlyOwner", + "nodeType": "IdentifierPath", + "referencedDeclaration": 44, + "src": "1168:9:0" + }, + "nodeType": "ModifierInvocation", + "src": "1168:9:0" + } + ], + "name": "addMember", + "nameLocation": "1133:9:0", + "nodeType": "FunctionDefinition", + "parameters": { + "id": 128, + "nodeType": "ParameterList", + "parameters": [ + { + "constant": false, + "id": 127, + "mutability": "mutable", + "name": "_member", + "nameLocation": "1152:7:0", + "nodeType": "VariableDeclaration", + "scope": 139, + "src": "1144:15:0", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + }, + "typeName": { + "id": 126, + "name": "address", + "nodeType": "ElementaryTypeName", + "src": "1144:7:0", + "stateMutability": "nonpayable", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "visibility": "internal" + } + ], + "src": "1143:17:0" + }, + "returnParameters": { + "id": 131, + "nodeType": "ParameterList", + "parameters": [], + "src": "1178:0:0" + }, + "scope": 154, + "src": "1124:98:0", + "stateMutability": "nonpayable", + "virtual": false, + "visibility": "public" + }, + { + "body": { + "id": 152, + "nodeType": "Block", + "src": "1287:45:0", + "statements": [ + { + "expression": { + "id": 150, + "isConstant": false, + "isLValue": false, + "isPure": false, + "lValueRequested": false, + "leftHandSide": { + "baseExpression": { + "id": 146, + "name": "whiteList", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 10, + "src": "1298:9:0", + "typeDescriptions": { + "typeIdentifier": "t_mapping$_t_address_$_t_bool_$", + "typeString": "mapping(address => bool)" + } + }, + "id": 148, + "indexExpression": { + "id": 147, + "name": "_member", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 141, + "src": "1308:7:0", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "isConstant": false, + "isLValue": true, + "isPure": false, + "lValueRequested": true, + "nodeType": "IndexAccess", + "src": "1298:18:0", + "typeDescriptions": { + "typeIdentifier": "t_bool", + "typeString": "bool" + } + }, + "nodeType": "Assignment", + "operator": "=", + "rightHandSide": { + "hexValue": "66616c7365", + "id": 149, + "isConstant": false, + "isLValue": false, + "isPure": true, + "kind": "bool", + "lValueRequested": false, + "nodeType": "Literal", + "src": "1319:5:0", + "typeDescriptions": { + "typeIdentifier": "t_bool", + "typeString": "bool" + }, + "value": "false" + }, + "src": "1298:26:0", + "typeDescriptions": { + "typeIdentifier": "t_bool", + "typeString": "bool" + } + }, + "id": 151, + "nodeType": "ExpressionStatement", + "src": "1298:26:0" + } + ] + }, + "functionSelector": "1f81595d", + "id": 153, + "implemented": true, + "kind": "function", + "modifiers": [ + { + "id": 144, + "kind": "modifierInvocation", + "modifierName": { + "id": 143, + "name": "onlyOwner", + "nodeType": "IdentifierPath", + "referencedDeclaration": 44, + "src": "1277:9:0" + }, + "nodeType": "ModifierInvocation", + "src": "1277:9:0" + } + ], + "name": "delMember", + "nameLocation": "1242:9:0", + "nodeType": "FunctionDefinition", + "parameters": { + "id": 142, + "nodeType": "ParameterList", + "parameters": [ + { + "constant": false, + "id": 141, + "mutability": "mutable", + "name": "_member", + "nameLocation": "1261:7:0", + "nodeType": "VariableDeclaration", + "scope": 153, + "src": "1253:15:0", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + }, + "typeName": { + "id": 140, + "name": "address", + "nodeType": "ElementaryTypeName", + "src": "1253:7:0", + "stateMutability": "nonpayable", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "visibility": "internal" + } + ], + "src": "1252:17:0" + }, + "returnParameters": { + "id": 145, + "nodeType": "ParameterList", + "parameters": [], + "src": "1287:0:0" + }, + "scope": 154, + "src": "1233:99:0", + "stateMutability": "nonpayable", + "virtual": false, + "visibility": "public" + } + ], + "scope": 155, + "src": "71:1267:0", + "usedErrors": [] + } + ], + "src": "33:1305:0" + }, + "id": 0 + } + } + } +} \ No newline at end of file diff --git a/day1_e2/artifacts/build-info/bb422ee4f05e281d5e9ffcc3067e4ce8.json b/day1_e2/artifacts/build-info/bb422ee4f05e281d5e9ffcc3067e4ce8.json new file mode 100644 index 0000000..33dfc16 --- /dev/null +++ b/day1_e2/artifacts/build-info/bb422ee4f05e281d5e9ffcc3067e4ce8.json @@ -0,0 +1,83 @@ +{ + "id": "bb422ee4f05e281d5e9ffcc3067e4ce8", + "_format": "hh-sol-build-info-1", + "solcVersion": "0.8.13", + "solcLongVersion": "0.8.13+commit.abaa5c0e", + "input": { + "language": "Solidity", + "sources": { + "RegisterAccess.sol": { + "content": "" + } + }, + "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": { + "errors": [ + { + "component": "general", + "errorCode": "1878", + "formattedMessage": "Warning: SPDX license identifier not provided in source file. Before publishing, consider adding a comment containing \"SPDX-License-Identifier: \" to each source file. Use \"SPDX-License-Identifier: UNLICENSED\" for non-open-source code. Please see https://spdx.org for more information.\n--> RegisterAccess.sol\n\n", + "message": "SPDX license identifier not provided in source file. Before publishing, consider adding a comment containing \"SPDX-License-Identifier: \" to each source file. Use \"SPDX-License-Identifier: UNLICENSED\" for non-open-source code. Please see https://spdx.org for more information.", + "severity": "warning", + "sourceLocation": { + "end": -1, + "file": "RegisterAccess.sol", + "start": -1 + }, + "type": "Warning" + }, + { + "component": "general", + "errorCode": "3420", + "formattedMessage": "Warning: Source file does not specify required compiler version! Consider adding \"pragma solidity ^0.8.13;\"\n--> RegisterAccess.sol\n\n", + "message": "Source file does not specify required compiler version! Consider adding \"pragma solidity ^0.8.13;\"", + "severity": "warning", + "sourceLocation": { + "end": -1, + "file": "RegisterAccess.sol", + "start": -1 + }, + "type": "Warning" + } + ], + "sources": { + "RegisterAccess.sol": { + "ast": { + "absolutePath": "RegisterAccess.sol", + "exportedSymbols": {}, + "id": 1, + "nodeType": "SourceUnit", + "nodes": [], + "src": "0:0:0" + }, + "id": 0 + } + } + } +} \ No newline at end of file diff --git a/day1_e2/contracts/1_Storage.sol b/day1_e2/contracts/1_Storage.sol new file mode 100644 index 0000000..6aa9322 --- /dev/null +++ b/day1_e2/contracts/1_Storage.sol @@ -0,0 +1,29 @@ +// SPDX-License-Identifier: GPL-3.0 + +pragma solidity >=0.7.0 <0.9.0; + +/** + * @title Storage + * @dev Store & retrieve value in a variable + * @custom:dev-run-script ./scripts/deploy_with_ethers.ts + */ +contract Storage { + + uint256 number; + + /** + * @dev Store value in variable + * @param num value to store + */ + function store(uint256 num) public { + number = num; + } + + /** + * @dev Return value + * @return value of 'number' + */ + function retrieve() public view returns (uint256){ + return number; + } +} \ No newline at end of file diff --git a/day1_e2/contracts/2_Owner.sol b/day1_e2/contracts/2_Owner.sol new file mode 100644 index 0000000..e6bc652 --- /dev/null +++ b/day1_e2/contracts/2_Owner.sol @@ -0,0 +1,54 @@ +// SPDX-License-Identifier: GPL-3.0 + +pragma solidity >=0.7.0 <0.9.0; + +import "hardhat/console.sol"; + +/** + * @title Owner + * @dev Set & change owner + */ +contract Owner { + + address private owner; + + // event for EVM logging + event OwnerSet(address indexed oldOwner, address indexed newOwner); + + // modifier to check if caller is owner + modifier isOwner() { + // If the first argument of 'require' evaluates to 'false', execution terminates and all + // changes to the state and to Ether balances are reverted. + // This used to consume all gas in old EVM versions, but not anymore. + // It is often a good idea to use 'require' to check if functions are called correctly. + // As a second argument, you can also provide an explanation about what went wrong. + require(msg.sender == owner, "Caller is not owner"); + _; + } + + /** + * @dev Set contract deployer as owner + */ + constructor() { + console.log("Owner contract deployed by:", msg.sender); + owner = msg.sender; // 'msg.sender' is sender of current call, contract deployer for a constructor + emit OwnerSet(address(0), owner); + } + + /** + * @dev Change owner + * @param newOwner address of new owner + */ + function changeOwner(address newOwner) public isOwner { + emit OwnerSet(owner, newOwner); + owner = newOwner; + } + + /** + * @dev Return owner address + * @return address of owner + */ + function getOwner() external view returns (address) { + return owner; + } +} \ No newline at end of file diff --git a/day1_e2/contracts/3_Ballot.sol b/day1_e2/contracts/3_Ballot.sol new file mode 100644 index 0000000..c47be92 --- /dev/null +++ b/day1_e2/contracts/3_Ballot.sol @@ -0,0 +1,138 @@ +// SPDX-License-Identifier: GPL-3.0 + +pragma solidity >=0.7.0 <0.9.0; + +/** + * @title Ballot + * @dev Implements voting process along with vote delegation + */ +contract Ballot { + + struct Voter { + uint weight; // weight is accumulated by delegation + bool voted; // if true, that person already voted + address delegate; // person delegated to + uint vote; // index of the voted proposal + } + + struct Proposal { + // If you can limit the length to a certain number of bytes, + // always use one of bytes1 to bytes32 because they are much cheaper + bytes32 name; // short name (up to 32 bytes) + uint voteCount; // number of accumulated votes + } + + address public chairperson; + + mapping(address => Voter) public voters; + + Proposal[] public proposals; + + /** + * @dev Create a new ballot to choose one of 'proposalNames'. + * @param proposalNames names of proposals + */ + constructor(bytes32[] memory proposalNames) { + chairperson = msg.sender; + voters[chairperson].weight = 1; + + for (uint i = 0; i < proposalNames.length; i++) { + // 'Proposal({...})' creates a temporary + // Proposal object and 'proposals.push(...)' + // appends it to the end of 'proposals'. + proposals.push(Proposal({ + name: proposalNames[i], + voteCount: 0 + })); + } + } + + /** + * @dev Give 'voter' the right to vote on this ballot. May only be called by 'chairperson'. + * @param voter address of voter + */ + function giveRightToVote(address voter) public { + require( + msg.sender == chairperson, + "Only chairperson can give right to vote." + ); + require( + !voters[voter].voted, + "The voter already voted." + ); + require(voters[voter].weight == 0); + voters[voter].weight = 1; + } + + /** + * @dev Delegate your vote to the voter 'to'. + * @param to address to which vote is delegated + */ + function delegate(address to) public { + Voter storage sender = voters[msg.sender]; + require(!sender.voted, "You already voted."); + require(to != msg.sender, "Self-delegation is disallowed."); + + while (voters[to].delegate != address(0)) { + to = voters[to].delegate; + + // We found a loop in the delegation, not allowed. + require(to != msg.sender, "Found loop in delegation."); + } + sender.voted = true; + sender.delegate = to; + Voter storage delegate_ = voters[to]; + if (delegate_.voted) { + // If the delegate already voted, + // directly add to the number of votes + proposals[delegate_.vote].voteCount += sender.weight; + } else { + // If the delegate did not vote yet, + // add to her weight. + delegate_.weight += sender.weight; + } + } + + /** + * @dev Give your vote (including votes delegated to you) to proposal 'proposals[proposal].name'. + * @param proposal index of proposal in the proposals array + */ + function vote(uint proposal) public { + Voter storage sender = voters[msg.sender]; + require(sender.weight != 0, "Has no right to vote"); + require(!sender.voted, "Already voted."); + sender.voted = true; + sender.vote = proposal; + + // If 'proposal' is out of the range of the array, + // this will throw automatically and revert all + // changes. + proposals[proposal].voteCount += sender.weight; + } + + /** + * @dev Computes the winning proposal taking all previous votes into account. + * @return winningProposal_ index of winning proposal in the proposals array + */ + function winningProposal() public view + returns (uint winningProposal_) + { + uint winningVoteCount = 0; + for (uint p = 0; p < proposals.length; p++) { + if (proposals[p].voteCount > winningVoteCount) { + winningVoteCount = proposals[p].voteCount; + winningProposal_ = p; + } + } + } + + /** + * @dev Calls winningProposal() function to get the index of the winner contained in the proposals array and then + * @return winnerName_ the name of the winner + */ + function winnerName() public view + returns (bytes32 winnerName_) + { + winnerName_ = proposals[winningProposal()].name; + } +} diff --git a/day1_e2/scripts/deploy_with_ethers.ts b/day1_e2/scripts/deploy_with_ethers.ts new file mode 100644 index 0000000..9f9d312 --- /dev/null +++ b/day1_e2/scripts/deploy_with_ethers.ts @@ -0,0 +1,16 @@ + +// This script can be used to deploy the "Storage" contract using ethers.js library. +// Please make sure to compile "./contracts/1_Storage.sol" file before running this script. +// And use Right click -> "Run" from context menu of the file to run the script. Shortcut: Ctrl+Shift+S + +import { deploy } from './ethers.ts' + +(async () => { + try { + const result = await deploy('Storage', []) + console.log(JSON.stringify(result, null, ' ')) + console.log(`address: ${result.address}`) + } catch (e) { + console.log(e.message) + } + })() \ No newline at end of file diff --git a/day1_e2/scripts/deploy_with_web3.ts b/day1_e2/scripts/deploy_with_web3.ts new file mode 100644 index 0000000..8bac699 --- /dev/null +++ b/day1_e2/scripts/deploy_with_web3.ts @@ -0,0 +1,16 @@ + +// This script can be used to deploy the "Storage" contract using Web3 library. +// Please make sure to compile "./contracts/1_Storage.sol" file before running this script. +// And use Right click -> "Run" from context menu of the file to run the script. Shortcut: Ctrl+Shift+S + +import { deploy } from './web3.ts' + +(async () => { + try { + const result = await deploy('Storage', []) + console.log(JSON.stringify(result, null, ' '))) + console.log(`address: ${result.address}`) + } catch (e) { + console.log(e.message) + } +})() \ No newline at end of file diff --git a/day1_e2/scripts/ethers.ts b/day1_e2/scripts/ethers.ts new file mode 100644 index 0000000..860f1c6 --- /dev/null +++ b/day1_e2/scripts/ethers.ts @@ -0,0 +1,25 @@ + +export const deploy = async (contractName: string, arguments: Array, from?: string) => { + + console.log(`deploying ${contractName}`) + // Note that the script needs the ABI which is generated from the compilation artifact. + // Make sure contract is compiled and artifacts are generated + const artifactsPath = `browser/contracts/artifacts/${contractName}.json` // Change this for different path + + const metadata = JSON.parse(await remix.call('fileManager', 'getFile', artifactsPath)) + // 'web3Provider' is a remix global variable object + const signer = (new ethers.providers.Web3Provider(web3Provider)).getSigner() + + let factory = new ethers.ContractFactory(metadata.abi, metadata.data.bytecode.object, signer); + + let contract + if (from) { + contract = await factory.connect(from).deploy(...arguments); + } else { + contract = await factory.deploy(...arguments); + } + + // The contract is NOT deployed yet; we must wait until it is mined + await contract.deployed() + return contract +}: Promise \ No newline at end of file diff --git a/day1_e2/scripts/web3.ts b/day1_e2/scripts/web3.ts new file mode 100644 index 0000000..35a5aa5 --- /dev/null +++ b/day1_e2/scripts/web3.ts @@ -0,0 +1,25 @@ + +export const deploy = async (contractName: string, arguments: Array, from?: string, gas?: number) => { + + console.log(`deploying ${contractName}`) + // Note that the script needs the ABI which is generated from the compilation artifact. + // Make sure contract is compiled and artifacts are generated + const artifactsPath = `browser/contracts/artifacts/${contractName}.json` // Change this for different path + + const metadata = JSON.parse(await remix.call('fileManager', 'getFile', artifactsPath)) + + const accounts = await web3.eth.getAccounts() + + let contract = new web3.eth.Contract(metadata.abi) + + contract = contract.deploy({ + data: metadata.data.bytecode.object, + arguments + }) + + const newContractInstance = await contract.send({ + from: from || accounts[0], + gas: gas || 1500000 + }) + return newContractInstance.options +}: Promise \ No newline at end of file diff --git a/day1_e2/tests/Ballot_test.sol b/day1_e2/tests/Ballot_test.sol new file mode 100644 index 0000000..fae5657 --- /dev/null +++ b/day1_e2/tests/Ballot_test.sol @@ -0,0 +1,28 @@ +// SPDX-License-Identifier: GPL-3.0 + +pragma solidity >=0.7.0 <0.9.0; +import "remix_tests.sol"; // this import is automatically injected by Remix. +import "hardhat/console.sol"; +import "../contracts/3_Ballot.sol"; + +contract BallotTest { + + bytes32[] proposalNames; + + Ballot ballotToTest; + function beforeAll () public { + proposalNames.push(bytes32("candidate1")); + ballotToTest = new Ballot(proposalNames); + } + + function checkWinningProposal () public { + console.log("Running checkWinningProposal"); + ballotToTest.vote(0); + Assert.equal(ballotToTest.winningProposal(), uint(0), "proposal at index 0 should be the winning proposal"); + Assert.equal(ballotToTest.winnerName(), bytes32("candidate1"), "candidate1 should be the winner name"); + } + + function checkWinninProposalWithReturnValue () public view returns (bool) { + return ballotToTest.winningProposal() == 0; + } +} diff --git a/day1_e2/tests/storage.test.js b/day1_e2/tests/storage.test.js new file mode 100644 index 0000000..aa14b35 --- /dev/null +++ b/day1_e2/tests/storage.test.js @@ -0,0 +1,22 @@ +// Right click on the script name and hit "Run" to execute +const { expect } = require("chai"); +const { ethers } = require("hardhat"); + +describe("Storage", function () { + it("test initial value", async function () { + const Storage = await ethers.getContractFactory("Storage"); + const storage = await Storage.deploy(); + await storage.deployed(); + console.log('storage deployed at:'+ storage.address) + expect((await storage.retrieve()).toNumber()).to.equal(0); + }); + it("test updating and retrieving updated value", async function () { + const Storage = await ethers.getContractFactory("Storage"); + const storage = await Storage.deploy(); + await storage.deployed(); + const storage2 = await ethers.getContractAt("Storage", storage.address); + const setValue = await storage2.store(56); + await setValue.wait(); + expect((await storage2.retrieve()).toNumber()).to.equal(56); + }); +}); \ No newline at end of file