Skip to content

Instantly share code, notes, and snippets.

@liu316484231
Created December 24, 2021 10:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save liu316484231/b353e9849621d10f1201ab2ff8ff5d8c to your computer and use it in GitHub Desktop.
Save liu316484231/b353e9849621d10f1201ab2ff8ff5d8c to your computer and use it in GitHub Desktop.
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.7+commit.e28d00a7.js&optimize=false&runs=200&gist=
REMIX EXAMPLE PROJECT
Remix example project is present when Remix loads very first time or there are no files existing in the File Explorer.
It 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 test file for 'Ballot' contract with unit tests in Solidity.
SCRIPTS
The 'scripts' folder contains 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).
Scripts have full access to the web3.js and ethers.js libraries.
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.
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.7.0 <0.9.0;
/**
* @title Storage
* @dev Store & retrieve value in a variable
*/
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;
}
}
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.7.0 <0.9.0;
/**
* @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() {
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;
}
}
// 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;
}
}
{
"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": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"methodIdentifiers": {
"allowance(address,address)": "dd62ed3e",
"approve(address,uint256)": "095ea7b3",
"balanceOf(address)": "70a08231",
"totalSupply()": "18160ddd",
"transfer(address,uint256)": "a9059cbb",
"transferFrom(address,address,uint256)": "23b872dd"
}
},
"abi": [
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "_owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "_spender",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "_value",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "_from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "_to",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "_value",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "_owner",
"type": "address"
},
{
"internalType": "address",
"name": "_spender",
"type": "address"
}
],
"name": "allowance",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "_value",
"type": "uint256"
}
],
"name": "approve",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_owner",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "totalSupply",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_to",
"type": "address"
},
{
"internalType": "uint256",
"name": "_value",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_from",
"type": "address"
},
{
"internalType": "address",
"name": "_to",
"type": "address"
},
{
"internalType": "uint256",
"name": "_value",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.7+commit.e28d00a7"
},
"language": "Solidity",
"output": {
"abi": [
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "_owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "_spender",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "_value",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "_from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "_to",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "_value",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "_owner",
"type": "address"
},
{
"internalType": "address",
"name": "_spender",
"type": "address"
}
],
"name": "allowance",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "_value",
"type": "uint256"
}
],
"name": "approve",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_owner",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "totalSupply",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_to",
"type": "address"
},
{
"internalType": "uint256",
"name": "_value",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_from",
"type": "address"
},
{
"internalType": "address",
"name": "_to",
"type": "address"
},
{
"internalType": "uint256",
"name": "_value",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"details": "see https://github.com/ethereum/EIPs/issues/20",
"kind": "dev",
"methods": {},
"title": "ERC20 interface",
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/ERC20.sol": "ERC20"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/ERC20.sol": {
"keccak256": "0x4a84ec2805390f75f0233dd6346c2056c4d76fdbf5e51a0412fb4a762a796da7",
"urls": [
"bzz-raw://818c9f10571e37dbd300e692d5a9a4dc983f3a9fc83892044afe44f2606dab1a",
"dweb:/ipfs/QmZ5bfGr3ZXc1BDKk7rzw7AH6Hen5KDAhxu5iksKVRRS8J"
]
}
},
"version": 1
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {
"@_14": {
"entryPoint": null,
"id": 14,
"parameterSlots": 0,
"returnSlots": 0
}
},
"generatedSources": [],
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50336000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610259806100606000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c80638da5cb5b1461003b578063f2fde38b14610059575b600080fd5b610043610075565b60405161005091906101ba565b60405180910390f35b610073600480360381019061006e919061017e565b610099565b005b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146100f157600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461016657806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b50565b6000813590506101788161020c565b92915050565b60006020828403121561019457610193610207565b5b60006101a284828501610169565b91505092915050565b6101b4816101d5565b82525050565b60006020820190506101cf60008301846101ab565b92915050565b60006101e0826101e7565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600080fd5b610215816101d5565b811461022057600080fd5b5056fea2646970667358221220182bbabb42678586d621d9db97071e196e30680d03c1563f93b4a2009157644664736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLER PUSH1 0x0 DUP1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH2 0x259 DUP1 PUSH2 0x60 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 0x36 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x3B JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x59 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x43 PUSH2 0x75 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x50 SWAP2 SWAP1 PUSH2 0x1BA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x73 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x6E SWAP2 SWAP1 PUSH2 0x17E JUMP JUMPDEST PUSH2 0x99 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xF1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x166 JUMPI DUP1 PUSH1 0x0 DUP1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x178 DUP2 PUSH2 0x20C JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x194 JUMPI PUSH2 0x193 PUSH2 0x207 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1A2 DUP5 DUP3 DUP6 ADD PUSH2 0x169 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1B4 DUP2 PUSH2 0x1D5 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1CF PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1AB JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1E0 DUP3 PUSH2 0x1E7 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x215 DUP2 PUSH2 0x1D5 JUMP JUMPDEST DUP2 EQ PUSH2 0x220 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 XOR 0x2B 0xBA 0xBB TIMESTAMP PUSH8 0x8586D621D9DB9707 0x1E NOT PUSH15 0x30680D03C1563F93B4A20091576446 PUSH5 0x736F6C6343 STOP ADDMOD SMOD STOP CALLER ",
"sourceMap": "224:655:0:-:0;;;387:49;;;;;;;;;;421:10;413:5;;:18;;;;;;;;;;;;;;;;;;224:655;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@owner_4": {
"entryPoint": 117,
"id": 4,
"parameterSlots": 0,
"returnSlots": 0
},
"@transferOwnership_47": {
"entryPoint": 153,
"id": 47,
"parameterSlots": 1,
"returnSlots": 0
},
"abi_decode_t_address": {
"entryPoint": 361,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_address": {
"entryPoint": 382,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_address_to_t_address_fromStack": {
"entryPoint": 427,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
"entryPoint": 442,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 469,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 487,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 519,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"validator_revert_t_address": {
"entryPoint": 524,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:1525:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "59:87:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "69:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "91:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "78:12:1"
},
"nodeType": "YulFunctionCall",
"src": "78:20:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "69:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "134:5:1"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "107:26:1"
},
"nodeType": "YulFunctionCall",
"src": "107:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "107:33:1"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "37:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "45:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "53:5:1",
"type": ""
}
],
"src": "7:139:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "218:263:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "264:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "266:77:1"
},
"nodeType": "YulFunctionCall",
"src": "266:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "266:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "239:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "248:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "235:3:1"
},
"nodeType": "YulFunctionCall",
"src": "235:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "260:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "231:3:1"
},
"nodeType": "YulFunctionCall",
"src": "231:32:1"
},
"nodeType": "YulIf",
"src": "228:119:1"
},
{
"nodeType": "YulBlock",
"src": "357:117:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "372:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "386:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "376:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "401:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "436:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "447:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "432:3:1"
},
"nodeType": "YulFunctionCall",
"src": "432:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "456:7:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "411:20:1"
},
"nodeType": "YulFunctionCall",
"src": "411:53:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "401:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "188:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "199:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "211:6:1",
"type": ""
}
],
"src": "152:329:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "552:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "569:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "592:5:1"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "574:17:1"
},
"nodeType": "YulFunctionCall",
"src": "574:24:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "562:6:1"
},
"nodeType": "YulFunctionCall",
"src": "562:37:1"
},
"nodeType": "YulExpressionStatement",
"src": "562:37:1"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "540:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "547:3:1",
"type": ""
}
],
"src": "487:118:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "709:124:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "719:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "731:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "742:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "727:3:1"
},
"nodeType": "YulFunctionCall",
"src": "727:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "719:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "799:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "812:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "823:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "808:3:1"
},
"nodeType": "YulFunctionCall",
"src": "808:17:1"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "755:43:1"
},
"nodeType": "YulFunctionCall",
"src": "755:71:1"
},
"nodeType": "YulExpressionStatement",
"src": "755:71:1"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "681:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "693:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "704:4:1",
"type": ""
}
],
"src": "611:222:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "879:35:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "889:19:1",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "905:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "899:5:1"
},
"nodeType": "YulFunctionCall",
"src": "899:9:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "889:6:1"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "872:6:1",
"type": ""
}
],
"src": "839:75:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "965:51:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "975:35:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1004:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "986:17:1"
},
"nodeType": "YulFunctionCall",
"src": "986:24:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "975:7:1"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "947:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "957:7:1",
"type": ""
}
],
"src": "920:96:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1067:81:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1077:65:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1092:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1099:42:1",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1088:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1088:54:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1077:7:1"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1049:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1059:7:1",
"type": ""
}
],
"src": "1022:126:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1243:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1260:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1263:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1253:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1253:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "1253:12:1"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "1154:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1366:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1383:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1386:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1376:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1376:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "1376:12:1"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "1277:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1443:79:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1500:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1509:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1512:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1502:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1502:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "1502:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1466:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1491:5:1"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "1473:17:1"
},
"nodeType": "YulFunctionCall",
"src": "1473:24:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "1463:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1463:35:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1456:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1456:43:1"
},
"nodeType": "YulIf",
"src": "1453:63:1"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1436:5:1",
"type": ""
}
],
"src": "1400:122:1"
}
]
},
"contents": "{\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 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 allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106100365760003560e01c80638da5cb5b1461003b578063f2fde38b14610059575b600080fd5b610043610075565b60405161005091906101ba565b60405180910390f35b610073600480360381019061006e919061017e565b610099565b005b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146100f157600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461016657806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b50565b6000813590506101788161020c565b92915050565b60006020828403121561019457610193610207565b5b60006101a284828501610169565b91505092915050565b6101b4816101d5565b82525050565b60006020820190506101cf60008301846101ab565b92915050565b60006101e0826101e7565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600080fd5b610215816101d5565b811461022057600080fd5b5056fea2646970667358221220182bbabb42678586d621d9db97071e196e30680d03c1563f93b4a2009157644664736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x36 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x3B JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x59 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x43 PUSH2 0x75 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x50 SWAP2 SWAP1 PUSH2 0x1BA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x73 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x6E SWAP2 SWAP1 PUSH2 0x17E JUMP JUMPDEST PUSH2 0x99 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xF1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x166 JUMPI DUP1 PUSH1 0x0 DUP1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x178 DUP2 PUSH2 0x20C JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x194 JUMPI PUSH2 0x193 PUSH2 0x207 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1A2 DUP5 DUP3 DUP6 ADD PUSH2 0x169 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1B4 DUP2 PUSH2 0x1D5 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1CF PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1AB JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1E0 DUP3 PUSH2 0x1E7 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x215 DUP2 PUSH2 0x1D5 JUMP JUMPDEST DUP2 EQ PUSH2 0x220 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 XOR 0x2B 0xBA 0xBB TIMESTAMP PUSH8 0x8586D621D9DB9707 0x1E NOT PUSH15 0x30680D03C1563F93B4A20091576446 PUSH5 0x736F6C6343 STOP ADDMOD SMOD STOP CALLER ",
"sourceMap": "224:655:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;245:20;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;746:130;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;245:20;;;;;;;;;;;;:::o;746:130::-;566:5;;;;;;;;;;552:19;;:10;:19;;;544:28;;;;;;837:1:::1;817:22;;:8;:22;;;813:59;;857:8;849:5;::::0;:16:::1;;;;;;;;;;;;;;;;;;813:59;746:130:::0;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:329::-;211:6;260:2;248:9;239:7;235:23;231:32;228:119;;;266:79;;:::i;:::-;228:119;386:1;411:53;456:7;447:6;436:9;432:22;411:53;:::i;:::-;401:63;;357:117;152:329;;;;:::o;487:118::-;574:24;592:5;574:24;:::i;:::-;569:3;562:37;487:118;;:::o;611:222::-;704:4;742:2;731:9;727:18;719:26;;755:71;823:1;812:9;808:17;799:6;755:71;:::i;:::-;611:222;;;;:::o;920:96::-;957:7;986:24;1004:5;986:24;:::i;:::-;975:35;;920:96;;;:::o;1022:126::-;1059:7;1099:42;1092:5;1088:54;1077:65;;1022:126;;;:::o;1277:117::-;1386:1;1383;1376:12;1400:122;1473:24;1491:5;1473:24;:::i;:::-;1466:5;1463:35;1453:63;;1512:1;1509;1502:12;1453:63;1400:122;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "120200",
"executionCost": "24431",
"totalCost": "144631"
},
"external": {
"owner()": "2489",
"transferOwnership(address)": "26924"
}
},
"methodIdentifiers": {
"owner()": "8da5cb5b",
"transferOwnership(address)": "f2fde38b"
}
},
"abi": [
{
"inputs": [],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.7+commit.e28d00a7"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"details": "The Ownable contract has an owner address, and provides basic authorization control functions, this simplifies the implementation of \"user permissions\".",
"kind": "dev",
"methods": {
"constructor": {
"details": "The Ownable constructor sets the original `owner` of the contract to the sender account."
},
"transferOwnership(address)": {
"details": "Allows the current owner to transfer control of the contract to a newOwner.",
"params": {
"newOwner": "The address to transfer ownership to."
}
}
},
"title": "Ownable",
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/Ownable.sol": "Ownable"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/Ownable.sol": {
"keccak256": "0x9542f4fff403d8690334848253868844cce8156e51a532f109d241a773dd57ad",
"urls": [
"bzz-raw://917b8511920b10d3df93f041862dfe041fe4206fef7733fc01b50efcf84ce065",
"dweb:/ipfs/QmdMxGdQycQ5sasznckxBPXDYaQpMDe5t8rj1QX9oQJoYy"
]
}
},
"version": 1
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {
"@_40": {
"entryPoint": null,
"id": 40,
"parameterSlots": 0,
"returnSlots": 0
}
},
"generatedSources": [],
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50336000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f342827c97908e5e2f71151c08502a66d44b6f758e3ac2f1de95f02eb95f0a73560405160405180910390a3610356806100db6000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c8063893d20e81461003b578063a6f9dae114610059575b600080fd5b610043610075565b604051610050919061025d565b60405180910390f35b610073600480360381019061006e91906101fe565b61009e565b005b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461012c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161012390610278565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f342827c97908e5e2f71151c08502a66d44b6f758e3ac2f1de95f02eb95f0a73560405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000813590506101f881610309565b92915050565b600060208284031215610214576102136102db565b5b6000610222848285016101e9565b91505092915050565b610234816102a9565b82525050565b6000610247601383610298565b9150610252826102e0565b602082019050919050565b6000602082019050610272600083018461022b565b92915050565b600060208201905081810360008301526102918161023a565b9050919050565b600082825260208201905092915050565b60006102b4826102bb565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600080fd5b7f43616c6c6572206973206e6f74206f776e657200000000000000000000000000600082015250565b610312816102a9565b811461031d57600080fd5b5056fea26469706673582212208f65d9c920a5e7c951f66594688d8b1bb886420d647e05d3e5c9ec7eeab019cd64736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLER PUSH1 0x0 DUP1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x342827C97908E5E2F71151C08502A66D44B6F758E3AC2F1DE95F02EB95F0A735 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0x356 DUP1 PUSH2 0xDB 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 0x36 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x893D20E8 EQ PUSH2 0x3B JUMPI DUP1 PUSH4 0xA6F9DAE1 EQ PUSH2 0x59 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x43 PUSH2 0x75 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x50 SWAP2 SWAP1 PUSH2 0x25D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x73 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x6E SWAP2 SWAP1 PUSH2 0x1FE JUMP JUMPDEST PUSH2 0x9E JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x12C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x123 SWAP1 PUSH2 0x278 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x342827C97908E5E2F71151C08502A66D44B6F758E3AC2F1DE95F02EB95F0A735 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 DUP1 PUSH1 0x0 DUP1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1F8 DUP2 PUSH2 0x309 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x214 JUMPI PUSH2 0x213 PUSH2 0x2DB JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x222 DUP5 DUP3 DUP6 ADD PUSH2 0x1E9 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x234 DUP2 PUSH2 0x2A9 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x247 PUSH1 0x13 DUP4 PUSH2 0x298 JUMP JUMPDEST SWAP2 POP PUSH2 0x252 DUP3 PUSH2 0x2E0 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x272 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x22B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x291 DUP2 PUSH2 0x23A JUMP JUMPDEST 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 0x2B4 DUP3 PUSH2 0x2BB JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH32 0x43616C6C6572206973206E6F74206F776E657200000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH2 0x312 DUP2 PUSH2 0x2A9 JUMP JUMPDEST DUP2 EQ PUSH2 0x31D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DUP16 PUSH6 0xD9C920A5E7C9 MLOAD 0xF6 PUSH6 0x94688D8B1BB8 DUP7 TIMESTAMP 0xD PUSH5 0x7E05D3E5C9 0xEC PUSH31 0xEAB019CD64736F6C6343000807003300000000000000000000000000000000 ",
"sourceMap": "121:1361:0:-:0;;;923:170;;;;;;;;;;955:10;947:5;;:18;;;;;;;;;;;;;;;;;;1080:5;;;;;;;;;;1059:27;;1076:1;1059:27;;;;;;;;;;;;121:1361;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@changeOwner_58": {
"entryPoint": 158,
"id": 58,
"parameterSlots": 1,
"returnSlots": 0
},
"@getOwner_67": {
"entryPoint": 117,
"id": 67,
"parameterSlots": 0,
"returnSlots": 1
},
"abi_decode_t_address": {
"entryPoint": 489,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_address": {
"entryPoint": 510,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_address_to_t_address_fromStack": {
"entryPoint": 555,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_stringliteral_2d10247a65709fdb3c0696b0ed760a0c246e12f8c496efb56291dd2fe3b0275d_to_t_string_memory_ptr_fromStack": {
"entryPoint": 570,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
"entryPoint": 605,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_2d10247a65709fdb3c0696b0ed760a0c246e12f8c496efb56291dd2fe3b0275d__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 632,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 664,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 681,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 699,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 731,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"store_literal_in_memory_2d10247a65709fdb3c0696b0ed760a0c246e12f8c496efb56291dd2fe3b0275d": {
"entryPoint": 736,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_address": {
"entryPoint": 777,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:2672:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "59:87:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "69:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "91:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "78:12:1"
},
"nodeType": "YulFunctionCall",
"src": "78:20:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "69:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "134:5:1"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "107:26:1"
},
"nodeType": "YulFunctionCall",
"src": "107:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "107:33:1"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "37:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "45:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "53:5:1",
"type": ""
}
],
"src": "7:139:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "218:263:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "264:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "266:77:1"
},
"nodeType": "YulFunctionCall",
"src": "266:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "266:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "239:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "248:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "235:3:1"
},
"nodeType": "YulFunctionCall",
"src": "235:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "260:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "231:3:1"
},
"nodeType": "YulFunctionCall",
"src": "231:32:1"
},
"nodeType": "YulIf",
"src": "228:119:1"
},
{
"nodeType": "YulBlock",
"src": "357:117:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "372:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "386:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "376:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "401:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "436:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "447:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "432:3:1"
},
"nodeType": "YulFunctionCall",
"src": "432:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "456:7:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "411:20:1"
},
"nodeType": "YulFunctionCall",
"src": "411:53:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "401:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "188:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "199:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "211:6:1",
"type": ""
}
],
"src": "152:329:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "552:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "569:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "592:5:1"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "574:17:1"
},
"nodeType": "YulFunctionCall",
"src": "574:24:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "562:6:1"
},
"nodeType": "YulFunctionCall",
"src": "562:37:1"
},
"nodeType": "YulExpressionStatement",
"src": "562:37:1"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "540:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "547:3:1",
"type": ""
}
],
"src": "487:118:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "757:220:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "767:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "833:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "838:2:1",
"type": "",
"value": "19"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "774:58:1"
},
"nodeType": "YulFunctionCall",
"src": "774:67:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "767:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "939:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_2d10247a65709fdb3c0696b0ed760a0c246e12f8c496efb56291dd2fe3b0275d",
"nodeType": "YulIdentifier",
"src": "850:88:1"
},
"nodeType": "YulFunctionCall",
"src": "850:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "850:93:1"
},
{
"nodeType": "YulAssignment",
"src": "952:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "963:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "968:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "959:3:1"
},
"nodeType": "YulFunctionCall",
"src": "959:12:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "952:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_2d10247a65709fdb3c0696b0ed760a0c246e12f8c496efb56291dd2fe3b0275d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "745:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "753:3:1",
"type": ""
}
],
"src": "611:366:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1081:124:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1091:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1103:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1114:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1099:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1099:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1091:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1171:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1184:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1195:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1180:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1180:17:1"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "1127:43:1"
},
"nodeType": "YulFunctionCall",
"src": "1127:71:1"
},
"nodeType": "YulExpressionStatement",
"src": "1127:71:1"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1053:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1065:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1076:4:1",
"type": ""
}
],
"src": "983:222:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1382:248:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1392:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1404:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1415:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1400:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1400:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1392:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1439:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1450:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1435:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1435:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1458:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1464:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1454:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1454:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1428:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1428:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "1428:47:1"
},
{
"nodeType": "YulAssignment",
"src": "1484:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1618:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_2d10247a65709fdb3c0696b0ed760a0c246e12f8c496efb56291dd2fe3b0275d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "1492:124:1"
},
"nodeType": "YulFunctionCall",
"src": "1492:131:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1484:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_2d10247a65709fdb3c0696b0ed760a0c246e12f8c496efb56291dd2fe3b0275d__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1362:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1377:4:1",
"type": ""
}
],
"src": "1211:419:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1676:35:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1686:19:1",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1702:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1696:5:1"
},
"nodeType": "YulFunctionCall",
"src": "1696:9:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1686:6:1"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "1669:6:1",
"type": ""
}
],
"src": "1636:75:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1813:73:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1830:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1835:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1823:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1823:19:1"
},
"nodeType": "YulExpressionStatement",
"src": "1823:19:1"
},
{
"nodeType": "YulAssignment",
"src": "1851:29:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1870:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1875:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1866:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1866:14:1"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "1851:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1785:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1790:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "1801:11:1",
"type": ""
}
],
"src": "1717:169:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1937:51:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1947:35:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1976:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "1958:17:1"
},
"nodeType": "YulFunctionCall",
"src": "1958:24:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1947:7:1"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1919:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1929:7:1",
"type": ""
}
],
"src": "1892:96:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2039:81:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2049:65:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2064:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2071:42:1",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "2060:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2060:54:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "2049:7:1"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2021:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "2031:7:1",
"type": ""
}
],
"src": "1994:126:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2215:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2232:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2235:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2225:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2225:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "2225:12:1"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "2126:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2338:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2355:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2358:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2348:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2348:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "2348:12:1"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "2249:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2478:63:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "2500:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2508:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2496:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2496:14:1"
},
{
"hexValue": "43616c6c6572206973206e6f74206f776e6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "2512:21:1",
"type": "",
"value": "Caller is not owner"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2489:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2489:45:1"
},
"nodeType": "YulExpressionStatement",
"src": "2489:45:1"
}
]
},
"name": "store_literal_in_memory_2d10247a65709fdb3c0696b0ed760a0c246e12f8c496efb56291dd2fe3b0275d",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "2470:6:1",
"type": ""
}
],
"src": "2372:169:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2590:79:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2647:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2656:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2659:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2649:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2649:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "2649:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2613:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2638:5:1"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "2620:17:1"
},
"nodeType": "YulFunctionCall",
"src": "2620:24:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "2610:2:1"
},
"nodeType": "YulFunctionCall",
"src": "2610:35:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2603:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2603:43:1"
},
"nodeType": "YulIf",
"src": "2600:63:1"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2583:5:1",
"type": ""
}
],
"src": "2547:122:1"
}
]
},
"contents": "{\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 abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n function abi_encode_t_stringliteral_2d10247a65709fdb3c0696b0ed760a0c246e12f8c496efb56291dd2fe3b0275d_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 19)\n store_literal_in_memory_2d10247a65709fdb3c0696b0ed760a0c246e12f8c496efb56291dd2fe3b0275d(pos)\n end := add(pos, 32)\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_encode_tuple_t_stringliteral_2d10247a65709fdb3c0696b0ed760a0c246e12f8c496efb56291dd2fe3b0275d__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_2d10247a65709fdb3c0696b0ed760a0c246e12f8c496efb56291dd2fe3b0275d_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\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 cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function store_literal_in_memory_2d10247a65709fdb3c0696b0ed760a0c246e12f8c496efb56291dd2fe3b0275d(memPtr) {\n\n mstore(add(memPtr, 0), \"Caller is not owner\")\n\n }\n\n function validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106100365760003560e01c8063893d20e81461003b578063a6f9dae114610059575b600080fd5b610043610075565b604051610050919061025d565b60405180910390f35b610073600480360381019061006e91906101fe565b61009e565b005b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461012c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161012390610278565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f342827c97908e5e2f71151c08502a66d44b6f758e3ac2f1de95f02eb95f0a73560405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000813590506101f881610309565b92915050565b600060208284031215610214576102136102db565b5b6000610222848285016101e9565b91505092915050565b610234816102a9565b82525050565b6000610247601383610298565b9150610252826102e0565b602082019050919050565b6000602082019050610272600083018461022b565b92915050565b600060208201905081810360008301526102918161023a565b9050919050565b600082825260208201905092915050565b60006102b4826102bb565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600080fd5b7f43616c6c6572206973206e6f74206f776e657200000000000000000000000000600082015250565b610312816102a9565b811461031d57600080fd5b5056fea26469706673582212208f65d9c920a5e7c951f66594688d8b1bb886420d647e05d3e5c9ec7eeab019cd64736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x36 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x893D20E8 EQ PUSH2 0x3B JUMPI DUP1 PUSH4 0xA6F9DAE1 EQ PUSH2 0x59 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x43 PUSH2 0x75 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x50 SWAP2 SWAP1 PUSH2 0x25D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x73 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x6E SWAP2 SWAP1 PUSH2 0x1FE JUMP JUMPDEST PUSH2 0x9E JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x12C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x123 SWAP1 PUSH2 0x278 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x342827C97908E5E2F71151C08502A66D44B6F758E3AC2F1DE95F02EB95F0A735 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 DUP1 PUSH1 0x0 DUP1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1F8 DUP2 PUSH2 0x309 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x214 JUMPI PUSH2 0x213 PUSH2 0x2DB JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x222 DUP5 DUP3 DUP6 ADD PUSH2 0x1E9 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x234 DUP2 PUSH2 0x2A9 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x247 PUSH1 0x13 DUP4 PUSH2 0x298 JUMP JUMPDEST SWAP2 POP PUSH2 0x252 DUP3 PUSH2 0x2E0 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x272 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x22B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x291 DUP2 PUSH2 0x23A JUMP JUMPDEST 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 0x2B4 DUP3 PUSH2 0x2BB JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH32 0x43616C6C6572206973206E6F74206F776E657200000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH2 0x312 DUP2 PUSH2 0x2A9 JUMP JUMPDEST DUP2 EQ PUSH2 0x31D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DUP16 PUSH6 0xD9C920A5E7C9 MLOAD 0xF6 PUSH6 0x94688D8B1BB8 DUP7 TIMESTAMP 0xD PUSH5 0x7E05D3E5C9 0xEC PUSH31 0xEAB019CD64736F6C6343000807003300000000000000000000000000000000 ",
"sourceMap": "121:1361:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1399:81;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1184:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1399:81;1442:7;1468:5;;;;;;;;;;;1461:12;;1399:81;:::o;1184:127::-;807:5;;;;;;;;;;793:19;;:10;:19;;;785:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;1269:8:::1;1253:25;;1262:5;::::0;::::1;;;;;;;;1253:25;;;;;;;;;;;;1296:8;1288:5;::::0;:16:::1;;;;;;;;;;;;;;;;;;1184:127:::0;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:329::-;211:6;260:2;248:9;239:7;235:23;231:32;228:119;;;266:79;;:::i;:::-;228:119;386:1;411:53;456:7;447:6;436:9;432:22;411:53;:::i;:::-;401:63;;357:117;152:329;;;;:::o;487:118::-;574:24;592:5;574:24;:::i;:::-;569:3;562:37;487:118;;:::o;611:366::-;753:3;774:67;838:2;833:3;774:67;:::i;:::-;767:74;;850:93;939:3;850:93;:::i;:::-;968:2;963:3;959:12;952:19;;611:366;;;:::o;983:222::-;1076:4;1114:2;1103:9;1099:18;1091:26;;1127:71;1195:1;1184:9;1180:17;1171:6;1127:71;:::i;:::-;983:222;;;;:::o;1211:419::-;1377:4;1415:2;1404:9;1400:18;1392:26;;1464:9;1458:4;1454:20;1450:1;1439:9;1435:17;1428:47;1492:131;1618:4;1492:131;:::i;:::-;1484:139;;1211:419;;;:::o;1717:169::-;1801:11;1835:6;1830:3;1823:19;1875:4;1870:3;1866:14;1851:29;;1717:169;;;;:::o;1892:96::-;1929:7;1958:24;1976:5;1958:24;:::i;:::-;1947:35;;1892:96;;;:::o;1994:126::-;2031:7;2071:42;2064:5;2060:54;2049:65;;1994:126;;;:::o;2249:117::-;2358:1;2355;2348:12;2372:169;2512:21;2508:1;2500:6;2496:14;2489:45;2372:169;:::o;2547:122::-;2620:24;2638:5;2620:24;:::i;:::-;2613:5;2610:35;2600:63;;2659:1;2656;2649:12;2600:63;2547:122;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "170800",
"executionCost": "28158",
"totalCost": "198958"
},
"external": {
"changeOwner(address)": "30567",
"getOwner()": "2500"
}
},
"methodIdentifiers": {
"changeOwner(address)": "a6f9dae1",
"getOwner()": "893d20e8"
}
},
"abi": [
{
"inputs": [],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "oldOwner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "OwnerSet",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "changeOwner",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "getOwner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.7+commit.e28d00a7"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "oldOwner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "OwnerSet",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "changeOwner",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "getOwner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
}
],
"devdoc": {
"details": "Set & change owner",
"kind": "dev",
"methods": {
"changeOwner(address)": {
"details": "Change owner",
"params": {
"newOwner": "address of new owner"
}
},
"constructor": {
"details": "Set contract deployer as owner"
},
"getOwner()": {
"details": "Return owner address ",
"returns": {
"_0": "address of owner"
}
}
},
"title": "Owner",
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/2_Owner.sol": "Owner"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/2_Owner.sol": {
"keccak256": "0x1e624ada939528fff73575187024d951aa6d33d4cbaad97ecf1f3e2a7d717583",
"license": "GPL-3.0",
"urls": [
"bzz-raw://e3f3c6ab93acd1a8bd389f852149d59b6d713efc51458ff95bba42c3329fb0d1",
"dweb:/ipfs/QmP7NEPrSbYRM4DzpJ31YUC2KNXUX4USuQk3jMNRUdzVyV"
]
}
},
"version": 1
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {
"@_14": {
"entryPoint": null,
"id": 14,
"parameterSlots": 0,
"returnSlots": 0
}
},
"generatedSources": [],
"linkReferences": {},
"object": "608060405260008060146101000a81548160ff02191690831515021790555034801561002a57600080fd5b50336000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506104a18061007a6000396000f3fe608060405234801561001057600080fd5b50600436106100575760003560e01c80633f4ba83a1461005c5780635c975abb1461007a5780638456cb59146100985780638da5cb5b146100b6578063f2fde38b146100d4575b600080fd5b6100646100f0565b60405161007191906103f6565b60405180910390f35b6100826101b1565b60405161008f91906103f6565b60405180910390f35b6100a06101c4565b6040516100ad91906103f6565b60405180910390f35b6100be610287565b6040516100cb91906103db565b60405180910390f35b6100ee60048036038101906100e99190610390565b6102ab565b005b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461014b57600080fd5b600060149054906101000a900460ff1661016457600080fd5b60008060146101000a81548160ff0219169083151502179055507f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3360405160405180910390a16001905090565b600060149054906101000a900460ff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461021f57600080fd5b600060149054906101000a900460ff161561023957600080fd5b6001600060146101000a81548160ff0219169083151502179055507f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62560405160405180910390a16001905090565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461030357600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461037857806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b50565b60008135905061038a81610454565b92915050565b6000602082840312156103a6576103a561044f565b5b60006103b48482850161037b565b91505092915050565b6103c681610411565b82525050565b6103d581610423565b82525050565b60006020820190506103f060008301846103bd565b92915050565b600060208201905061040b60008301846103cc565b92915050565b600061041c8261042f565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600080fd5b61045d81610411565b811461046857600080fd5b5056fea26469706673582212204441e870df06ca92428bba4b62403f5c45ac3cf65e0d377543ca60ba52f7728c64736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 PUSH1 0x14 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP CALLVALUE DUP1 ISZERO PUSH2 0x2A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLER PUSH1 0x0 DUP1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH2 0x4A1 DUP1 PUSH2 0x7A PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x57 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x3F4BA83A EQ PUSH2 0x5C JUMPI DUP1 PUSH4 0x5C975ABB EQ PUSH2 0x7A JUMPI DUP1 PUSH4 0x8456CB59 EQ PUSH2 0x98 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0xB6 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0xD4 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x64 PUSH2 0xF0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x71 SWAP2 SWAP1 PUSH2 0x3F6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x82 PUSH2 0x1B1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x8F SWAP2 SWAP1 PUSH2 0x3F6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xA0 PUSH2 0x1C4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xAD SWAP2 SWAP1 PUSH2 0x3F6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xBE PUSH2 0x287 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xCB SWAP2 SWAP1 PUSH2 0x3DB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xEE PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xE9 SWAP2 SWAP1 PUSH2 0x390 JUMP JUMPDEST PUSH2 0x2AB JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x14B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x14 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH2 0x164 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x14 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH32 0x7805862F689E2F13DF9F062FF482AD3AD112ACA9E0847911ED832E158C525B33 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH1 0x1 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x14 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x21F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x14 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x239 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x0 PUSH1 0x14 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH32 0x6985A02210A168E66602D3235CB6DB0E70F92B3BA4D376A33C0F3D9434BFF625 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH1 0x1 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x303 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x378 JUMPI DUP1 PUSH1 0x0 DUP1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x38A DUP2 PUSH2 0x454 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3A6 JUMPI PUSH2 0x3A5 PUSH2 0x44F JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x3B4 DUP5 DUP3 DUP6 ADD PUSH2 0x37B JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x3C6 DUP2 PUSH2 0x411 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x3D5 DUP2 PUSH2 0x423 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x3F0 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x3BD JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x40B PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x3CC JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x41C DUP3 PUSH2 0x42F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x45D DUP2 PUSH2 0x411 JUMP JUMPDEST DUP2 EQ PUSH2 0x468 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DIFFICULTY COINBASE 0xE8 PUSH17 0xDF06CA92428BBA4B62403F5C45AC3CF65E 0xD CALLDATACOPY PUSH22 0x43CA60BA52F7728C64736F6C63430008070033000000 ",
"sourceMap": "173:793:1:-:0;;;264:5;243:26;;;;;;;;;;;;;;;;;;;;173:793;;;;;;;;;;421:10:0;413:5;;:18;;;;;;;;;;;;;;;;;;173:793:1;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@owner_4": {
"entryPoint": 647,
"id": 4,
"parameterSlots": 0,
"returnSlots": 0
},
"@pause_100": {
"entryPoint": 452,
"id": 100,
"parameterSlots": 0,
"returnSlots": 1
},
"@paused_61": {
"entryPoint": 433,
"id": 61,
"parameterSlots": 0,
"returnSlots": 0
},
"@transferOwnership_47": {
"entryPoint": 683,
"id": 47,
"parameterSlots": 1,
"returnSlots": 0
},
"@unpause_120": {
"entryPoint": 240,
"id": 120,
"parameterSlots": 0,
"returnSlots": 1
},
"abi_decode_t_address": {
"entryPoint": 891,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_address": {
"entryPoint": 912,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_address_to_t_address_fromStack": {
"entryPoint": 957,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_bool_to_t_bool_fromStack": {
"entryPoint": 972,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
"entryPoint": 987,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
"entryPoint": 1014,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 1041,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bool": {
"entryPoint": 1059,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 1071,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 1103,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"validator_revert_t_address": {
"entryPoint": 1108,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:1952:2",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "59:87:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "69:29:2",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "91:6:2"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "78:12:2"
},
"nodeType": "YulFunctionCall",
"src": "78:20:2"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "69:5:2"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "134:5:2"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "107:26:2"
},
"nodeType": "YulFunctionCall",
"src": "107:33:2"
},
"nodeType": "YulExpressionStatement",
"src": "107:33:2"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "37:6:2",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "45:3:2",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "53:5:2",
"type": ""
}
],
"src": "7:139:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "218:263:2",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "264:83:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "266:77:2"
},
"nodeType": "YulFunctionCall",
"src": "266:79:2"
},
"nodeType": "YulExpressionStatement",
"src": "266:79:2"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "239:7:2"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "248:9:2"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "235:3:2"
},
"nodeType": "YulFunctionCall",
"src": "235:23:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "260:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "231:3:2"
},
"nodeType": "YulFunctionCall",
"src": "231:32:2"
},
"nodeType": "YulIf",
"src": "228:119:2"
},
{
"nodeType": "YulBlock",
"src": "357:117:2",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "372:15:2",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "386:1:2",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "376:6:2",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "401:63:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "436:9:2"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "447:6:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "432:3:2"
},
"nodeType": "YulFunctionCall",
"src": "432:22:2"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "456:7:2"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "411:20:2"
},
"nodeType": "YulFunctionCall",
"src": "411:53:2"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "401:6:2"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "188:9:2",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "199:7:2",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "211:6:2",
"type": ""
}
],
"src": "152:329:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "552:53:2",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "569:3:2"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "592:5:2"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "574:17:2"
},
"nodeType": "YulFunctionCall",
"src": "574:24:2"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "562:6:2"
},
"nodeType": "YulFunctionCall",
"src": "562:37:2"
},
"nodeType": "YulExpressionStatement",
"src": "562:37:2"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "540:5:2",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "547:3:2",
"type": ""
}
],
"src": "487:118:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "670:50:2",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "687:3:2"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "707:5:2"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "692:14:2"
},
"nodeType": "YulFunctionCall",
"src": "692:21:2"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "680:6:2"
},
"nodeType": "YulFunctionCall",
"src": "680:34:2"
},
"nodeType": "YulExpressionStatement",
"src": "680:34:2"
}
]
},
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "658:5:2",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "665:3:2",
"type": ""
}
],
"src": "611:109:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "824:124:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "834:26:2",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "846:9:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "857:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "842:3:2"
},
"nodeType": "YulFunctionCall",
"src": "842:18:2"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "834:4:2"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "914:6:2"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "927:9:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "938:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "923:3:2"
},
"nodeType": "YulFunctionCall",
"src": "923:17:2"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "870:43:2"
},
"nodeType": "YulFunctionCall",
"src": "870:71:2"
},
"nodeType": "YulExpressionStatement",
"src": "870:71:2"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "796:9:2",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "808:6:2",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "819:4:2",
"type": ""
}
],
"src": "726:222:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1046:118:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1056:26:2",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1068:9:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1079:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1064:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1064:18:2"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1056:4:2"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1130:6:2"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1143:9:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1154:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1139:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1139:17:2"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulIdentifier",
"src": "1092:37:2"
},
"nodeType": "YulFunctionCall",
"src": "1092:65:2"
},
"nodeType": "YulExpressionStatement",
"src": "1092:65:2"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1018:9:2",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1030:6:2",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1041:4:2",
"type": ""
}
],
"src": "954:210:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1210:35:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1220:19:2",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1236:2:2",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1230:5:2"
},
"nodeType": "YulFunctionCall",
"src": "1230:9:2"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1220:6:2"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "1203:6:2",
"type": ""
}
],
"src": "1170:75:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1296:51:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1306:35:2",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1335:5:2"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "1317:17:2"
},
"nodeType": "YulFunctionCall",
"src": "1317:24:2"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1306:7:2"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1278:5:2",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1288:7:2",
"type": ""
}
],
"src": "1251:96:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1395:48:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1405:32:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1430:5:2"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1423:6:2"
},
"nodeType": "YulFunctionCall",
"src": "1423:13:2"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1416:6:2"
},
"nodeType": "YulFunctionCall",
"src": "1416:21:2"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1405:7:2"
}
]
}
]
},
"name": "cleanup_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1377:5:2",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1387:7:2",
"type": ""
}
],
"src": "1353:90:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1494:81:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1504:65:2",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1519:5:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1526:42:2",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1515:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1515:54:2"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1504:7:2"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1476:5:2",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1486:7:2",
"type": ""
}
],
"src": "1449:126:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1670:28:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1687:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1690:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1680:6:2"
},
"nodeType": "YulFunctionCall",
"src": "1680:12:2"
},
"nodeType": "YulExpressionStatement",
"src": "1680:12:2"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "1581:117:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1793:28:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1810:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1813:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1803:6:2"
},
"nodeType": "YulFunctionCall",
"src": "1803:12:2"
},
"nodeType": "YulExpressionStatement",
"src": "1803:12:2"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "1704:117:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1870:79:2",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1927:16:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1936:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1939:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1929:6:2"
},
"nodeType": "YulFunctionCall",
"src": "1929:12:2"
},
"nodeType": "YulExpressionStatement",
"src": "1929:12:2"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1893:5:2"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1918:5:2"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "1900:17:2"
},
"nodeType": "YulFunctionCall",
"src": "1900:24:2"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "1890:2:2"
},
"nodeType": "YulFunctionCall",
"src": "1890:35:2"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1883:6:2"
},
"nodeType": "YulFunctionCall",
"src": "1883:43:2"
},
"nodeType": "YulIf",
"src": "1880:63:2"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1863:5:2",
"type": ""
}
],
"src": "1827:122:2"
}
]
},
"contents": "{\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 abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(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_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_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 allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function cleanup_t_bool(value) -> cleaned {\n cleaned := iszero(iszero(value))\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n}\n",
"id": 2,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106100575760003560e01c80633f4ba83a1461005c5780635c975abb1461007a5780638456cb59146100985780638da5cb5b146100b6578063f2fde38b146100d4575b600080fd5b6100646100f0565b60405161007191906103f6565b60405180910390f35b6100826101b1565b60405161008f91906103f6565b60405180910390f35b6100a06101c4565b6040516100ad91906103f6565b60405180910390f35b6100be610287565b6040516100cb91906103db565b60405180910390f35b6100ee60048036038101906100e99190610390565b6102ab565b005b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461014b57600080fd5b600060149054906101000a900460ff1661016457600080fd5b60008060146101000a81548160ff0219169083151502179055507f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3360405160405180910390a16001905090565b600060149054906101000a900460ff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461021f57600080fd5b600060149054906101000a900460ff161561023957600080fd5b6001600060146101000a81548160ff0219169083151502179055507f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62560405160405180910390a16001905090565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461030357600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461037857806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b50565b60008135905061038a81610454565b92915050565b6000602082840312156103a6576103a561044f565b5b60006103b48482850161037b565b91505092915050565b6103c681610411565b82525050565b6103d581610423565b82525050565b60006020820190506103f060008301846103bd565b92915050565b600060208201905061040b60008301846103cc565b92915050565b600061041c8261042f565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600080fd5b61045d81610411565b811461046857600080fd5b5056fea26469706673582212204441e870df06ca92428bba4b62403f5c45ac3cf65e0d377543ca60ba52f7728c64736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x57 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x3F4BA83A EQ PUSH2 0x5C JUMPI DUP1 PUSH4 0x5C975ABB EQ PUSH2 0x7A JUMPI DUP1 PUSH4 0x8456CB59 EQ PUSH2 0x98 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0xB6 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0xD4 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x64 PUSH2 0xF0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x71 SWAP2 SWAP1 PUSH2 0x3F6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x82 PUSH2 0x1B1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x8F SWAP2 SWAP1 PUSH2 0x3F6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xA0 PUSH2 0x1C4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xAD SWAP2 SWAP1 PUSH2 0x3F6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xBE PUSH2 0x287 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xCB SWAP2 SWAP1 PUSH2 0x3DB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xEE PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xE9 SWAP2 SWAP1 PUSH2 0x390 JUMP JUMPDEST PUSH2 0x2AB JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x14B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x14 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH2 0x164 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x14 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH32 0x7805862F689E2F13DF9F062FF482AD3AD112ACA9E0847911ED832E158C525B33 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH1 0x1 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x14 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x21F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x14 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x239 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x0 PUSH1 0x14 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH32 0x6985A02210A168E66602D3235CB6DB0E70F92B3BA4D376A33C0F3D9434BFF625 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH1 0x1 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x303 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x378 JUMPI DUP1 PUSH1 0x0 DUP1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x38A DUP2 PUSH2 0x454 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3A6 JUMPI PUSH2 0x3A5 PUSH2 0x44F JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x3B4 DUP5 DUP3 DUP6 ADD PUSH2 0x37B JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x3C6 DUP2 PUSH2 0x411 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x3D5 DUP2 PUSH2 0x423 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x3F0 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x3BD JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x40B PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x3CC JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x41C DUP3 PUSH2 0x42F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x45D DUP2 PUSH2 0x411 JUMP JUMPDEST DUP2 EQ PUSH2 0x468 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DIFFICULTY COINBASE 0xE8 PUSH17 0xDF06CA92428BBA4B62403F5C45AC3CF65E 0xD CALLDATACOPY PUSH22 0x43CA60BA52F7728C64736F6C63430008070033000000 ",
"sourceMap": "173:793:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;840:124;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;243:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;636:122;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;245:20:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;746:130;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;840:124:1;896:4;566:5:0;;;;;;;;;;;552:19;;:10;:19;;;544:28;;;;;;538:6:1::1;;;;;;;;;;;530:15;;;::::0;::::1;;917:5:::2;908:6:::0;::::2;:14;;;;;;;;;;;;;;;;;;933:9;;;;;;;;;;955:4;948:11;;840:124:::0;:::o;243:26::-;;;;;;;;;;;;;:::o;636:122::-;693:4;566:5:0;;;;;;;;;;;552:19;;:10;:19;;;544:28;;;;;;396:6:1::1;;;;;;;;;;;395:7;387:16;;;::::0;::::1;;714:4:::2;705:6;;:13;;;;;;;;;;;;;;;;;;729:7;;;;;;;;;;749:4;742:11;;636:122:::0;:::o;245:20:0:-;;;;;;;;;;;;:::o;746:130::-;566:5;;;;;;;;;;552:19;;:10;:19;;;544:28;;;;;;837:1:::1;817:22;;:8;:22;;;813:59;;857:8;849:5;::::0;:16:::1;;;;;;;;;;;;;;;;;;813:59;746:130:::0;:::o;7:139:2:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:329::-;211:6;260:2;248:9;239:7;235:23;231:32;228:119;;;266:79;;:::i;:::-;228:119;386:1;411:53;456:7;447:6;436:9;432:22;411:53;:::i;:::-;401:63;;357:117;152:329;;;;:::o;487:118::-;574:24;592:5;574:24;:::i;:::-;569:3;562:37;487:118;;:::o;611:109::-;692:21;707:5;692:21;:::i;:::-;687:3;680:34;611:109;;:::o;726:222::-;819:4;857:2;846:9;842:18;834:26;;870:71;938:1;927:9;923:17;914:6;870:71;:::i;:::-;726:222;;;;:::o;954:210::-;1041:4;1079:2;1068:9;1064:18;1056:26;;1092:65;1154:1;1143:9;1139:17;1130:6;1092:65;:::i;:::-;954:210;;;;:::o;1251:96::-;1288:7;1317:24;1335:5;1317:24;:::i;:::-;1306:35;;1251:96;;;:::o;1353:90::-;1387:7;1430:5;1423:13;1416:21;1405:32;;1353:90;;;:::o;1449:126::-;1486:7;1526:42;1519:5;1515:54;1504:65;;1449:126;;;:::o;1704:117::-;1813:1;1810;1803:12;1827:122;1900:24;1918:5;1900:24;:::i;:::-;1893:5;1890:35;1880:63;;1939:1;1936;1929:12;1880:63;1827:122;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "237000",
"executionCost": "48864",
"totalCost": "285864"
},
"external": {
"owner()": "2555",
"pause()": "29835",
"paused()": "2521",
"transferOwnership(address)": "26990",
"unpause()": "29788"
}
},
"methodIdentifiers": {
"owner()": "8da5cb5b",
"pause()": "8456cb59",
"paused()": "5c975abb",
"transferOwnership(address)": "f2fde38b",
"unpause()": "3f4ba83a"
}
},
"abi": [
{
"anonymous": false,
"inputs": [],
"name": "Pause",
"type": "event"
},
{
"anonymous": false,
"inputs": [],
"name": "Unpause",
"type": "event"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "pause",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "paused",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "unpause",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.7+commit.e28d00a7"
},
"language": "Solidity",
"output": {
"abi": [
{
"anonymous": false,
"inputs": [],
"name": "Pause",
"type": "event"
},
{
"anonymous": false,
"inputs": [],
"name": "Unpause",
"type": "event"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "pause",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "paused",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "unpause",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"details": "Base contract which allows children to implement an emergency stop mechanism.",
"kind": "dev",
"methods": {
"pause()": {
"details": "called by the owner to pause, triggers stopped state"
},
"transferOwnership(address)": {
"details": "Allows the current owner to transfer control of the contract to a newOwner.",
"params": {
"newOwner": "The address to transfer ownership to."
}
},
"unpause()": {
"details": "called by the owner to unpause, returns to normal state"
}
},
"title": "Pausable",
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/Pausable.sol": "Pausable"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/Ownable.sol": {
"keccak256": "0x9542f4fff403d8690334848253868844cce8156e51a532f109d241a773dd57ad",
"urls": [
"bzz-raw://917b8511920b10d3df93f041862dfe041fe4206fef7733fc01b50efcf84ce065",
"dweb:/ipfs/QmdMxGdQycQ5sasznckxBPXDYaQpMDe5t8rj1QX9oQJoYy"
]
},
"contracts/Pausable.sol": {
"keccak256": "0xc290403dfa882b1af670d66aadf693d7aa6b8058972e685370621c2a014fab06",
"urls": [
"bzz-raw://2dc54a7cd3b34eae1f6a1f2b713d6dce85b12cbbf37560d9a219b686ff96999c",
"dweb:/ipfs/QmbxvGU6piVzDKuL5ZAdowmihuF7DidchtDd6hkEdEZTL7"
]
}
},
"version": 1
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {
"@_290": {
"entryPoint": null,
"id": 290,
"parameterSlots": 4,
"returnSlots": 0
},
"@_81": {
"entryPoint": null,
"id": 81,
"parameterSlots": 0,
"returnSlots": 0
},
"@createTokenContract_302": {
"entryPoint": 430,
"id": 302,
"parameterSlots": 0,
"returnSlots": 1
},
"abi_decode_t_address_fromMemory": {
"entryPoint": 495,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256_fromMemory": {
"entryPoint": 518,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_addresst_uint256t_uint256t_uint256_fromMemory": {
"entryPoint": 541,
"id": null,
"parameterSlots": 2,
"returnSlots": 4
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"checked_mul_t_uint256": {
"entryPoint": 655,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 752,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 772,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 804,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 814,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 861,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"validator_revert_t_address": {
"entryPoint": 866,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 892,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:2568:6",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "70:80:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "80:22:6",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "95:6:6"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "89:5:6"
},
"nodeType": "YulFunctionCall",
"src": "89:13:6"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "80:5:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "138:5:6"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "111:26:6"
},
"nodeType": "YulFunctionCall",
"src": "111:33:6"
},
"nodeType": "YulExpressionStatement",
"src": "111:33:6"
}
]
},
"name": "abi_decode_t_address_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "48:6:6",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "56:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "64:5:6",
"type": ""
}
],
"src": "7:143:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "219:80:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "229:22:6",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "244:6:6"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "238:5:6"
},
"nodeType": "YulFunctionCall",
"src": "238:13:6"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "229:5:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "287:5:6"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "260:26:6"
},
"nodeType": "YulFunctionCall",
"src": "260:33:6"
},
"nodeType": "YulExpressionStatement",
"src": "260:33:6"
}
]
},
"name": "abi_decode_t_uint256_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "197:6:6",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "205:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "213:5:6",
"type": ""
}
],
"src": "156:143:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "433:692:6",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "480:83:6",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "482:77:6"
},
"nodeType": "YulFunctionCall",
"src": "482:79:6"
},
"nodeType": "YulExpressionStatement",
"src": "482:79:6"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "454:7:6"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "463:9:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "450:3:6"
},
"nodeType": "YulFunctionCall",
"src": "450:23:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "475:3:6",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "446:3:6"
},
"nodeType": "YulFunctionCall",
"src": "446:33:6"
},
"nodeType": "YulIf",
"src": "443:120:6"
},
{
"nodeType": "YulBlock",
"src": "573:128:6",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "588:15:6",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "602:1:6",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "592:6:6",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "617:74:6",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "663:9:6"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "674:6:6"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "659:3:6"
},
"nodeType": "YulFunctionCall",
"src": "659:22:6"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "683:7:6"
}
],
"functionName": {
"name": "abi_decode_t_address_fromMemory",
"nodeType": "YulIdentifier",
"src": "627:31:6"
},
"nodeType": "YulFunctionCall",
"src": "627:64:6"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "617:6:6"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "711:129:6",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "726:16:6",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "740:2:6",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "730:6:6",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "756:74:6",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "802:9:6"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "813:6:6"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "798:3:6"
},
"nodeType": "YulFunctionCall",
"src": "798:22:6"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "822:7:6"
}
],
"functionName": {
"name": "abi_decode_t_uint256_fromMemory",
"nodeType": "YulIdentifier",
"src": "766:31:6"
},
"nodeType": "YulFunctionCall",
"src": "766:64:6"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "756:6:6"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "850:129:6",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "865:16:6",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "879:2:6",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "869:6:6",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "895:74:6",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "941:9:6"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "952:6:6"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "937:3:6"
},
"nodeType": "YulFunctionCall",
"src": "937:22:6"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "961:7:6"
}
],
"functionName": {
"name": "abi_decode_t_uint256_fromMemory",
"nodeType": "YulIdentifier",
"src": "905:31:6"
},
"nodeType": "YulFunctionCall",
"src": "905:64:6"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "895:6:6"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "989:129:6",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1004:16:6",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1018:2:6",
"type": "",
"value": "96"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1008:6:6",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1034:74:6",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1080:9:6"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1091:6:6"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1076:3:6"
},
"nodeType": "YulFunctionCall",
"src": "1076:22:6"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1100:7:6"
}
],
"functionName": {
"name": "abi_decode_t_uint256_fromMemory",
"nodeType": "YulIdentifier",
"src": "1044:31:6"
},
"nodeType": "YulFunctionCall",
"src": "1044:64:6"
},
"variableNames": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "1034:6:6"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256t_uint256t_uint256_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "379:9:6",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "390:7:6",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "402:6:6",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "410:6:6",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "418:6:6",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "426:6:6",
"type": ""
}
],
"src": "305:820:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1171:35:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1181:19:6",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1197:2:6",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1191:5:6"
},
"nodeType": "YulFunctionCall",
"src": "1191:9:6"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1181:6:6"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "1164:6:6",
"type": ""
}
],
"src": "1131:75:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1260:300:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1270:25:6",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "1293:1:6"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "1275:17:6"
},
"nodeType": "YulFunctionCall",
"src": "1275:20:6"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "1270:1:6"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1304:25:6",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "1327:1:6"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "1309:17:6"
},
"nodeType": "YulFunctionCall",
"src": "1309:20:6"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "1304:1:6"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1502:22:6",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "1504:16:6"
},
"nodeType": "YulFunctionCall",
"src": "1504:18:6"
},
"nodeType": "YulExpressionStatement",
"src": "1504:18:6"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "1414:1:6"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1407:6:6"
},
"nodeType": "YulFunctionCall",
"src": "1407:9:6"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1400:6:6"
},
"nodeType": "YulFunctionCall",
"src": "1400:17:6"
},
{
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "1422:1:6"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1429:66:6",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "1497:1:6"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "1425:3:6"
},
"nodeType": "YulFunctionCall",
"src": "1425:74:6"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1419:2:6"
},
"nodeType": "YulFunctionCall",
"src": "1419:81:6"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1396:3:6"
},
"nodeType": "YulFunctionCall",
"src": "1396:105:6"
},
"nodeType": "YulIf",
"src": "1393:131:6"
},
{
"nodeType": "YulAssignment",
"src": "1534:20:6",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "1549:1:6"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "1552:1:6"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "1545:3:6"
},
"nodeType": "YulFunctionCall",
"src": "1545:9:6"
},
"variableNames": [
{
"name": "product",
"nodeType": "YulIdentifier",
"src": "1534:7:6"
}
]
}
]
},
"name": "checked_mul_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "1243:1:6",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "1246:1:6",
"type": ""
}
],
"returnVariables": [
{
"name": "product",
"nodeType": "YulTypedName",
"src": "1252:7:6",
"type": ""
}
],
"src": "1212:348:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1611:51:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1621:35:6",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1650:5:6"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "1632:17:6"
},
"nodeType": "YulFunctionCall",
"src": "1632:24:6"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1621:7:6"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1593:5:6",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1603:7:6",
"type": ""
}
],
"src": "1566:96:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1713:81:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1723:65:6",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1738:5:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1745:42:6",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1734:3:6"
},
"nodeType": "YulFunctionCall",
"src": "1734:54:6"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1723:7:6"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1695:5:6",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1705:7:6",
"type": ""
}
],
"src": "1668:126:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1845:32:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1855:16:6",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "1866:5:6"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1855:7:6"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1827:5:6",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1837:7:6",
"type": ""
}
],
"src": "1800:77:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1911:152:6",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1928:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1931:77:6",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1921:6:6"
},
"nodeType": "YulFunctionCall",
"src": "1921:88:6"
},
"nodeType": "YulExpressionStatement",
"src": "1921:88:6"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2025:1:6",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2028:4:6",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2018:6:6"
},
"nodeType": "YulFunctionCall",
"src": "2018:15:6"
},
"nodeType": "YulExpressionStatement",
"src": "2018:15:6"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2049:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2052:4:6",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2042:6:6"
},
"nodeType": "YulFunctionCall",
"src": "2042:15:6"
},
"nodeType": "YulExpressionStatement",
"src": "2042:15:6"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "1883:180:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2158:28:6",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2175:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2178:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2168:6:6"
},
"nodeType": "YulFunctionCall",
"src": "2168:12:6"
},
"nodeType": "YulExpressionStatement",
"src": "2168:12:6"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "2069:117:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2281:28:6",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2298:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2301:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2291:6:6"
},
"nodeType": "YulFunctionCall",
"src": "2291:12:6"
},
"nodeType": "YulExpressionStatement",
"src": "2291:12:6"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "2192:117:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2358:79:6",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2415:16:6",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2424:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2427:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2417:6:6"
},
"nodeType": "YulFunctionCall",
"src": "2417:12:6"
},
"nodeType": "YulExpressionStatement",
"src": "2417:12:6"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2381:5:6"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2406:5:6"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "2388:17:6"
},
"nodeType": "YulFunctionCall",
"src": "2388:24:6"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "2378:2:6"
},
"nodeType": "YulFunctionCall",
"src": "2378:35:6"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2371:6:6"
},
"nodeType": "YulFunctionCall",
"src": "2371:43:6"
},
"nodeType": "YulIf",
"src": "2368:63:6"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2351:5:6",
"type": ""
}
],
"src": "2315:122:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2486:79:6",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2543:16:6",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2552:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2555:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2545:6:6"
},
"nodeType": "YulFunctionCall",
"src": "2545:12:6"
},
"nodeType": "YulExpressionStatement",
"src": "2545:12:6"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2509:5:6"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2534:5:6"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "2516:17:6"
},
"nodeType": "YulFunctionCall",
"src": "2516:24:6"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "2506:2:6"
},
"nodeType": "YulFunctionCall",
"src": "2506:35:6"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2499:6:6"
},
"nodeType": "YulFunctionCall",
"src": "2499:43:6"
},
"nodeType": "YulIf",
"src": "2496:63:6"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2479:5:6",
"type": ""
}
],
"src": "2443:122:6"
}
]
},
"contents": "{\n\n function abi_decode_t_address_fromMemory(offset, end) -> value {\n value := mload(offset)\n validator_revert_t_address(value)\n }\n\n function abi_decode_t_uint256_fromMemory(offset, end) -> value {\n value := mload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_addresst_uint256t_uint256t_uint256_fromMemory(headStart, dataEnd) -> value0, value1, value2, value3 {\n if slt(sub(dataEnd, headStart), 128) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address_fromMemory(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint256_fromMemory(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_uint256_fromMemory(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 96\n\n value3 := abi_decode_t_uint256_fromMemory(add(headStart, offset), dataEnd)\n }\n\n }\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function checked_mul_t_uint256(x, y) -> product {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n // overflow, if x != 0 and y > (maxValue / x)\n if and(iszero(iszero(x)), gt(y, div(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, x))) { panic_error_0x11() }\n\n product := mul(x, y)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n}\n",
"id": 6,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "608060405260008060146101000a81548160ff0219169083151502179055503480156200002b57600080fd5b50604051620029793803806200297983398181016040528101906200005191906200021d565b336000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415620000cc57600080fd5b6000831015620000db57600080fd5b60008211620000e957600080fd5b620000f9620001ae60201b60201c565b600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555083600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508060068190555082600581905550670de0b6b3a7640000826200019e91906200028f565b6004819055505050505062000396565b6000604051620001be90620001e1565b604051809103906000f080158015620001db573d6000803e3d6000fd5b50905090565b61126b806200170e83390190565b600081519050620002008162000362565b92915050565b60008151905062000217816200037c565b92915050565b600080600080608085870312156200023a57620002396200035d565b5b60006200024a87828801620001ef565b94505060206200025d8782880162000206565b9350506040620002708782880162000206565b9250506060620002838782880162000206565b91505092959194509250565b60006200029c8262000324565b9150620002a98362000324565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620002e557620002e46200032e565b5b828202905092915050565b6000620002fd8262000304565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600080fd5b6200036d81620002f0565b81146200037957600080fd5b50565b620003878162000324565b81146200039357600080fd5b50565b61136880620003a66000396000f3fe6080604052600436106101025760003560e01c80638456cb5911610095578063b967a52e11610064578063b967a52e146102fe578063ec8ac4d814610327578063ecb70fb714610343578063f2fde38b1461036e578063fc0c546a1461039757610103565b80638456cb59146102525780638ac2c6801461027d5780638d4e4083146102a85780638da5cb5b146102d357610103565b80634042b66f116100d15780634042b66f146101ba5780634bb278f3146101e5578063521eb273146101fc5780635c975abb1461022757610103565b80632c4e722e1461010e578063355274ea1461013957806336f7ab5e146101645780633f4ba83a1461018f57610103565b5b61010c336103c2565b005b34801561011a57600080fd5b50610123610584565b6040516101309190610f3a565b60405180910390f35b34801561014557600080fd5b5061014e61058a565b60405161015b9190610f3a565b60405180910390f35b34801561017057600080fd5b50610179610590565b6040516101869190610f18565b60405180910390f35b34801561019b57600080fd5b506101a461061e565b6040516101b19190610ee2565b60405180910390f35b3480156101c657600080fd5b506101cf6106df565b6040516101dc9190610f3a565b60405180910390f35b3480156101f157600080fd5b506101fa6106e5565b005b34801561020857600080fd5b50610211610854565b60405161021e9190610e9e565b60405180910390f35b34801561023357600080fd5b5061023c61087a565b6040516102499190610ee2565b60405180910390f35b34801561025e57600080fd5b5061026761088d565b6040516102749190610ee2565b60405180910390f35b34801561028957600080fd5b50610292610950565b60405161029f9190610f3a565b60405180910390f35b3480156102b457600080fd5b506102bd610956565b6040516102ca9190610ee2565b60405180910390f35b3480156102df57600080fd5b506102e8610969565b6040516102f59190610e9e565b60405180910390f35b34801561030a57600080fd5b5061032560048036038101906103209190610de0565b61098d565b005b610341600480360381019061033c9190610d86565b6103c2565b005b34801561034f57600080fd5b506103586109ff565b6040516103659190610ee2565b60405180910390f35b34801561037a57600080fd5b5061039560048036038101906103909190610d86565b610a27565b005b3480156103a357600080fd5b506103ac610af7565b6040516103b99190610efd565b60405180910390f35b600060149054906101000a900460ff16156103dc57600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561041657600080fd5b61041e610b1d565b61042757600080fd5b600034905061044181600354610b7190919063ffffffff16565b600381905550600061045e60065483610b9d90919063ffffffff16565b9050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f1984836040518363ffffffff1660e01b81526004016104bd929190610eb9565b602060405180830381600087803b1580156104d757600080fd5b505af11580156104eb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061050f9190610db3565b508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f623b3804fa71d67900d064613da8f94b9617215ee90799290593e1745087ad18848460405161056f929190610f55565b60405180910390a361057f610bde565b505050565b60065481565b60045481565b6008805461059d90611191565b80601f01602080910402602001604051908101604052809291908181526020018280546105c990611191565b80156106165780601f106105eb57610100808354040283529160200191610616565b820191906000526020600020905b8154815290600101906020018083116105f957829003601f168201915b505050505081565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461067957600080fd5b600060149054906101000a900460ff1661069257600080fd5b60008060146101000a81548160ff0219169083151502179055507f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3360405160405180910390a16001905090565b60035481565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461073d57600080fd5b600760009054906101000a900460ff161561075757600080fd5b61075f6109ff565b61076857600080fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16637d64bcb46040518163ffffffff1660e01b8152600401602060405180830381600087803b1580156107d257600080fd5b505af11580156107e6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061080a9190610db3565b507f6823b073d48d6e3a7d385eeb601452d680e74bb46afe3255a7d778f3a9b1768160405160405180910390a16001600760006101000a81548160ff021916908315150217905550565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600060149054906101000a900460ff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146108e857600080fd5b600060149054906101000a900460ff161561090257600080fd5b6001600060146101000a81548160ff0219169083151502179055507f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62560405160405180910390a16001905090565b60055481565b600760009054906101000a900460ff1681565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146109e557600080fd5b80600890805190602001906109fb929190610c49565b5050565b600080600454610a1c600654600354610b9d90919063ffffffff16565b101590508091505090565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a7f57600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610af457806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b50565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610b3534600354610b7190919063ffffffff16565b9050600060055434101590506000600454610b5b60065485610b9d90919063ffffffff16565b11159050818015610b695750805b935050505090565b6000808284610b809190610ff0565b905083811015610b9357610b926111f4565b5b8091505092915050565b6000808284610bac9190611077565b90506000841480610bc75750828482610bc59190611046565b145b610bd457610bd36111f4565b5b8091505092915050565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f19350505050158015610c46573d6000803e3d6000fd5b50565b828054610c5590611191565b90600052602060002090601f016020900481019282610c775760008555610cbe565b82601f10610c9057805160ff1916838001178555610cbe565b82800160010185558215610cbe579182015b82811115610cbd578251825591602001919060010190610ca2565b5b509050610ccb9190610ccf565b5090565b5b80821115610ce8576000816000905550600101610cd0565b5090565b6000610cff610cfa84610fa3565b610f7e565b905082815260208101848484011115610d1b57610d1a6112e4565b5b610d2684828561114f565b509392505050565b600081359050610d3d81611304565b92915050565b600081519050610d528161131b565b92915050565b600082601f830112610d6d57610d6c6112df565b5b8135610d7d848260208601610cec565b91505092915050565b600060208284031215610d9c57610d9b6112ee565b5b6000610daa84828501610d2e565b91505092915050565b600060208284031215610dc957610dc86112ee565b5b6000610dd784828501610d43565b91505092915050565b600060208284031215610df657610df56112ee565b5b600082013567ffffffffffffffff811115610e1457610e136112e9565b5b610e2084828501610d58565b91505092915050565b610e32816110d1565b82525050565b610e41816110e3565b82525050565b610e5081611119565b82525050565b6000610e6182610fd4565b610e6b8185610fdf565b9350610e7b81856020860161115e565b610e84816112f3565b840191505092915050565b610e988161110f565b82525050565b6000602082019050610eb36000830184610e29565b92915050565b6000604082019050610ece6000830185610e29565b610edb6020830184610e8f565b9392505050565b6000602082019050610ef76000830184610e38565b92915050565b6000602082019050610f126000830184610e47565b92915050565b60006020820190508181036000830152610f328184610e56565b905092915050565b6000602082019050610f4f6000830184610e8f565b92915050565b6000604082019050610f6a6000830185610e8f565b610f776020830184610e8f565b9392505050565b6000610f88610f99565b9050610f9482826111c3565b919050565b6000604051905090565b600067ffffffffffffffff821115610fbe57610fbd6112b0565b5b610fc7826112f3565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b6000610ffb8261110f565b91506110068361110f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561103b5761103a611223565b5b828201905092915050565b60006110518261110f565b915061105c8361110f565b92508261106c5761106b611252565b5b828204905092915050565b60006110828261110f565b915061108d8361110f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156110c6576110c5611223565b5b828202905092915050565b60006110dc826110ef565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006111248261112b565b9050919050565b60006111368261113d565b9050919050565b6000611148826110ef565b9050919050565b82818337600083830152505050565b60005b8381101561117c578082015181840152602081019050611161565b8381111561118b576000848401525b50505050565b600060028204905060018216806111a957607f821691505b602082108114156111bd576111bc611281565b5b50919050565b6111cc826112f3565b810181811067ffffffffffffffff821117156111eb576111ea6112b0565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b61130d816110d1565b811461131857600080fd5b50565b611324816110e3565b811461132f57600080fd5b5056fea26469706673582212206a69cb5847058873a856b7c4e3f4741096a71fc197c5fa1e9ebfd2d17b0ece4464736f6c6343000807003360806040526000600460006101000a81548160ff02191690831515021790555034801561002b57600080fd5b5033600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506111ef8061007c6000396000f3fe6080604052600436106100e15760003560e01c806370a082311161007f57806395d89b411161005957806395d89b41146102dd578063a9059cbb14610308578063dd62ed3e14610345578063f2fde38b14610382576100e2565b806370a082311461024a5780637d64bcb4146102875780638da5cb5b146102b2576100e2565b806318160ddd116100bb57806318160ddd1461017a57806323b872dd146101a5578063313ce567146101e257806340c10f191461020d576100e2565b806305d2035b146100e757806306fdde0314610112578063095ea7b31461013d576100e2565b5b600080fd5b3480156100f357600080fd5b506100fc6103ab565b6040516101099190610f76565b60405180910390f35b34801561011e57600080fd5b506101276103be565b6040516101349190610f91565b60405180910390f35b34801561014957600080fd5b50610164600480360381019061015f9190610ea6565b6103f7565b6040516101719190610f76565b60405180910390f35b34801561018657600080fd5b5061018f6104e9565b60405161019c9190610fb3565b60405180910390f35b3480156101b157600080fd5b506101cc60048036038101906101c79190610e53565b6104ef565b6040516101d99190610f76565b60405180910390f35b3480156101ee57600080fd5b506101f761079f565b6040516102049190610fce565b60405180910390f35b34801561021957600080fd5b50610234600480360381019061022f9190610ea6565b6107a4565b6040516102419190610f76565b60405180910390f35b34801561025657600080fd5b50610271600480360381019061026c9190610de6565b610922565b60405161027e9190610fb3565b60405180910390f35b34801561029357600080fd5b5061029c61096b565b6040516102a99190610f76565b60405180910390f35b3480156102be57600080fd5b506102c7610a15565b6040516102d49190610f5b565b60405180910390f35b3480156102e957600080fd5b506102f2610a3b565b6040516102ff9190610f91565b60405180910390f35b34801561031457600080fd5b5061032f600480360381019061032a9190610ea6565b610a74565b60405161033c9190610f76565b60405180910390f35b34801561035157600080fd5b5061036c60048036038101906103679190610e13565b610c0f565b6040516103799190610fb3565b60405180910390f35b34801561038e57600080fd5b506103a960048036038101906103a49190610de6565b610c96565b005b600460009054906101000a900460ff1681565b6040518060400160405280601381526020017f50726f6f662050726573616c6520546f6b656e0000000000000000000000000081525081565b600081600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516104d79190610fb3565b60405180910390a36001905092915050565b60005481565b600080600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506105c383600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d6990919063ffffffff16565b600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061065883600260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d9590919063ffffffff16565b600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506106ae8382610d9590919063ffffffff16565b600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161078b9190610fb3565b60405180910390a360019150509392505050565b601281565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461080057600080fd5b600460009054906101000a900460ff161561081a57600080fd5b61082f82600054610d6990919063ffffffff16565b60008190555061088782600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d6990919063ffffffff16565b600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff167f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885836040516109109190610fb3565b60405180910390a26001905092915050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146109c757600080fd5b6001600460006101000a81548160ff0219169083151502179055507fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0860405160405180910390a16001905090565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6040518060400160405280600381526020017f505054000000000000000000000000000000000000000000000000000000000081525081565b6000610ac882600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d9590919063ffffffff16565b600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610b5d82600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d6990919063ffffffff16565b600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610bfd9190610fb3565b60405180910390a36001905092915050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610cf057600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d665780600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b50565b6000808284610d789190611005565b905083811015610d8b57610d8a611117565b5b8091505092915050565b600082821115610da857610da7611117565b5b8183610db4919061105b565b905092915050565b600081359050610dcb8161118b565b92915050565b600081359050610de0816111a2565b92915050565b600060208284031215610dfc57610dfb611175565b5b6000610e0a84828501610dbc565b91505092915050565b60008060408385031215610e2a57610e29611175565b5b6000610e3885828601610dbc565b9250506020610e4985828601610dbc565b9150509250929050565b600080600060608486031215610e6c57610e6b611175565b5b6000610e7a86828701610dbc565b9350506020610e8b86828701610dbc565b9250506040610e9c86828701610dd1565b9150509250925092565b60008060408385031215610ebd57610ebc611175565b5b6000610ecb85828601610dbc565b9250506020610edc85828601610dd1565b9150509250929050565b610eef8161108f565b82525050565b610efe816110a1565b82525050565b6000610f0f82610fe9565b610f198185610ff4565b9350610f298185602086016110e4565b610f328161117a565b840191505092915050565b610f46816110cd565b82525050565b610f55816110d7565b82525050565b6000602082019050610f706000830184610ee6565b92915050565b6000602082019050610f8b6000830184610ef5565b92915050565b60006020820190508181036000830152610fab8184610f04565b905092915050565b6000602082019050610fc86000830184610f3d565b92915050565b6000602082019050610fe36000830184610f4c565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611010826110cd565b915061101b836110cd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156110505761104f611146565b5b828201905092915050565b6000611066826110cd565b9150611071836110cd565b92508282101561108457611083611146565b5b828203905092915050565b600061109a826110ad565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156111025780820151818401526020810190506110e7565b83811115611111576000848401525b50505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600080fd5b6000601f19601f8301169050919050565b6111948161108f565b811461119f57600080fd5b50565b6111ab816110cd565b81146111b657600080fd5b5056fea2646970667358221220763f96381b235141a74618fa66ff5b8a9bc14daa0a1a190264f76c5aa824e48264736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 PUSH1 0x14 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP CALLVALUE DUP1 ISZERO PUSH3 0x2B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x2979 CODESIZE SUB DUP1 PUSH3 0x2979 DUP4 CODECOPY DUP2 DUP2 ADD PUSH1 0x40 MSTORE DUP2 ADD SWAP1 PUSH3 0x51 SWAP2 SWAP1 PUSH3 0x21D JUMP JUMPDEST CALLER PUSH1 0x0 DUP1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH3 0xCC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP4 LT ISZERO PUSH3 0xDB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP3 GT PUSH3 0xE9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH3 0xF9 PUSH3 0x1AE PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST 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 DUP4 PUSH1 0x2 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 PUSH1 0x6 DUP2 SWAP1 SSTORE POP DUP3 PUSH1 0x5 DUP2 SWAP1 SSTORE POP PUSH8 0xDE0B6B3A7640000 DUP3 PUSH3 0x19E SWAP2 SWAP1 PUSH3 0x28F JUMP JUMPDEST PUSH1 0x4 DUP2 SWAP1 SSTORE POP POP POP POP POP PUSH3 0x396 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD PUSH3 0x1BE SWAP1 PUSH3 0x1E1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 PUSH1 0x0 CREATE DUP1 ISZERO DUP1 ISZERO PUSH3 0x1DB JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x126B DUP1 PUSH3 0x170E DUP4 CODECOPY ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH3 0x200 DUP2 PUSH3 0x362 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH3 0x217 DUP2 PUSH3 0x37C JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH3 0x23A JUMPI PUSH3 0x239 PUSH3 0x35D JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH3 0x24A DUP8 DUP3 DUP9 ADD PUSH3 0x1EF JUMP JUMPDEST SWAP5 POP POP PUSH1 0x20 PUSH3 0x25D DUP8 DUP3 DUP9 ADD PUSH3 0x206 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x40 PUSH3 0x270 DUP8 DUP3 DUP9 ADD PUSH3 0x206 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x60 PUSH3 0x283 DUP8 DUP3 DUP9 ADD PUSH3 0x206 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x29C DUP3 PUSH3 0x324 JUMP JUMPDEST SWAP2 POP PUSH3 0x2A9 DUP4 PUSH3 0x324 JUMP JUMPDEST SWAP3 POP DUP2 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH3 0x2E5 JUMPI PUSH3 0x2E4 PUSH3 0x32E JUMP JUMPDEST JUMPDEST DUP3 DUP3 MUL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x2FD DUP3 PUSH3 0x304 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH3 0x36D DUP2 PUSH3 0x2F0 JUMP JUMPDEST DUP2 EQ PUSH3 0x379 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH3 0x387 DUP2 PUSH3 0x324 JUMP JUMPDEST DUP2 EQ PUSH3 0x393 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x1368 DUP1 PUSH3 0x3A6 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x102 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x8456CB59 GT PUSH2 0x95 JUMPI DUP1 PUSH4 0xB967A52E GT PUSH2 0x64 JUMPI DUP1 PUSH4 0xB967A52E EQ PUSH2 0x2FE JUMPI DUP1 PUSH4 0xEC8AC4D8 EQ PUSH2 0x327 JUMPI DUP1 PUSH4 0xECB70FB7 EQ PUSH2 0x343 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x36E JUMPI DUP1 PUSH4 0xFC0C546A EQ PUSH2 0x397 JUMPI PUSH2 0x103 JUMP JUMPDEST DUP1 PUSH4 0x8456CB59 EQ PUSH2 0x252 JUMPI DUP1 PUSH4 0x8AC2C680 EQ PUSH2 0x27D JUMPI DUP1 PUSH4 0x8D4E4083 EQ PUSH2 0x2A8 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x2D3 JUMPI PUSH2 0x103 JUMP JUMPDEST DUP1 PUSH4 0x4042B66F GT PUSH2 0xD1 JUMPI DUP1 PUSH4 0x4042B66F EQ PUSH2 0x1BA JUMPI DUP1 PUSH4 0x4BB278F3 EQ PUSH2 0x1E5 JUMPI DUP1 PUSH4 0x521EB273 EQ PUSH2 0x1FC JUMPI DUP1 PUSH4 0x5C975ABB EQ PUSH2 0x227 JUMPI PUSH2 0x103 JUMP JUMPDEST DUP1 PUSH4 0x2C4E722E EQ PUSH2 0x10E JUMPI DUP1 PUSH4 0x355274EA EQ PUSH2 0x139 JUMPI DUP1 PUSH4 0x36F7AB5E EQ PUSH2 0x164 JUMPI DUP1 PUSH4 0x3F4BA83A EQ PUSH2 0x18F JUMPI PUSH2 0x103 JUMP JUMPDEST JUMPDEST PUSH2 0x10C CALLER PUSH2 0x3C2 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x11A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x123 PUSH2 0x584 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x130 SWAP2 SWAP1 PUSH2 0xF3A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x145 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x14E PUSH2 0x58A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x15B SWAP2 SWAP1 PUSH2 0xF3A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x170 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x179 PUSH2 0x590 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x186 SWAP2 SWAP1 PUSH2 0xF18 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x19B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x1A4 PUSH2 0x61E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1B1 SWAP2 SWAP1 PUSH2 0xEE2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1C6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x1CF PUSH2 0x6DF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1DC SWAP2 SWAP1 PUSH2 0xF3A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1F1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x1FA PUSH2 0x6E5 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x208 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x211 PUSH2 0x854 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x21E SWAP2 SWAP1 PUSH2 0xE9E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x233 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x23C PUSH2 0x87A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x249 SWAP2 SWAP1 PUSH2 0xEE2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x25E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x267 PUSH2 0x88D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x274 SWAP2 SWAP1 PUSH2 0xEE2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x289 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x292 PUSH2 0x950 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x29F SWAP2 SWAP1 PUSH2 0xF3A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2B4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2BD PUSH2 0x956 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2CA SWAP2 SWAP1 PUSH2 0xEE2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2DF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2E8 PUSH2 0x969 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2F5 SWAP2 SWAP1 PUSH2 0xE9E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x30A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x325 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x320 SWAP2 SWAP1 PUSH2 0xDE0 JUMP JUMPDEST PUSH2 0x98D JUMP JUMPDEST STOP JUMPDEST PUSH2 0x341 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x33C SWAP2 SWAP1 PUSH2 0xD86 JUMP JUMPDEST PUSH2 0x3C2 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x34F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x358 PUSH2 0x9FF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x365 SWAP2 SWAP1 PUSH2 0xEE2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x37A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x395 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x390 SWAP2 SWAP1 PUSH2 0xD86 JUMP JUMPDEST PUSH2 0xA27 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3A3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x3AC PUSH2 0xAF7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3B9 SWAP2 SWAP1 PUSH2 0xEFD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 PUSH1 0x14 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x3DC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x416 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x41E PUSH2 0xB1D JUMP JUMPDEST PUSH2 0x427 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 CALLVALUE SWAP1 POP PUSH2 0x441 DUP2 PUSH1 0x3 SLOAD PUSH2 0xB71 SWAP1 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST PUSH1 0x3 DUP2 SWAP1 SSTORE POP PUSH1 0x0 PUSH2 0x45E PUSH1 0x6 SLOAD DUP4 PUSH2 0xB9D SWAP1 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x40C10F19 DUP5 DUP4 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x4BD SWAP3 SWAP2 SWAP1 PUSH2 0xEB9 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x4D7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x4EB JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x50F SWAP2 SWAP1 PUSH2 0xDB3 JUMP JUMPDEST POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x623B3804FA71D67900D064613DA8F94B9617215EE90799290593E1745087AD18 DUP5 DUP5 PUSH1 0x40 MLOAD PUSH2 0x56F SWAP3 SWAP2 SWAP1 PUSH2 0xF55 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0x57F PUSH2 0xBDE JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x6 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x4 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x8 DUP1 SLOAD PUSH2 0x59D SWAP1 PUSH2 0x1191 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 0x5C9 SWAP1 PUSH2 0x1191 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x616 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x5EB JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x616 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 0x5F9 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x679 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x14 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH2 0x692 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x14 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH32 0x7805862F689E2F13DF9F062FF482AD3AD112ACA9E0847911ED832E158C525B33 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH1 0x1 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x3 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x73D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x7 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x757 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x75F PUSH2 0x9FF JUMP JUMPDEST PUSH2 0x768 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x7D64BCB4 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x7D2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x7E6 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x80A SWAP2 SWAP1 PUSH2 0xDB3 JUMP JUMPDEST POP PUSH32 0x6823B073D48D6E3A7D385EEB601452D680E74BB46AFE3255A7D778F3A9B17681 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH1 0x1 PUSH1 0x7 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP JUMP JUMPDEST PUSH1 0x2 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x14 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x8E8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x14 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x902 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x0 PUSH1 0x14 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH32 0x6985A02210A168E66602D3235CB6DB0E70F92B3BA4D376A33C0F3D9434BFF625 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH1 0x1 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x5 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x7 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x9E5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH1 0x8 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x9FB SWAP3 SWAP2 SWAP1 PUSH2 0xC49 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x4 SLOAD PUSH2 0xA1C PUSH1 0x6 SLOAD PUSH1 0x3 SLOAD PUSH2 0xB9D SWAP1 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST LT ISZERO SWAP1 POP DUP1 SWAP2 POP POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xA7F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xAF4 JUMPI DUP1 PUSH1 0x0 DUP1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP JUMPDEST POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0xB35 CALLVALUE PUSH1 0x3 SLOAD PUSH2 0xB71 SWAP1 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH1 0x5 SLOAD CALLVALUE LT ISZERO SWAP1 POP PUSH1 0x0 PUSH1 0x4 SLOAD PUSH2 0xB5B PUSH1 0x6 SLOAD DUP6 PUSH2 0xB9D SWAP1 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST GT ISZERO SWAP1 POP DUP2 DUP1 ISZERO PUSH2 0xB69 JUMPI POP DUP1 JUMPDEST SWAP4 POP POP POP POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 DUP5 PUSH2 0xB80 SWAP2 SWAP1 PUSH2 0xFF0 JUMP JUMPDEST SWAP1 POP DUP4 DUP2 LT ISZERO PUSH2 0xB93 JUMPI PUSH2 0xB92 PUSH2 0x11F4 JUMP JUMPDEST JUMPDEST DUP1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 DUP5 PUSH2 0xBAC SWAP2 SWAP1 PUSH2 0x1077 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP5 EQ DUP1 PUSH2 0xBC7 JUMPI POP DUP3 DUP5 DUP3 PUSH2 0xBC5 SWAP2 SWAP1 PUSH2 0x1046 JUMP JUMPDEST EQ JUMPDEST PUSH2 0xBD4 JUMPI PUSH2 0xBD3 PUSH2 0x11F4 JUMP JUMPDEST JUMPDEST DUP1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x2 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x8FC CALLVALUE SWAP1 DUP2 ISZERO MUL SWAP1 PUSH1 0x40 MLOAD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP9 DUP9 CALL SWAP4 POP POP POP POP ISZERO DUP1 ISZERO PUSH2 0xC46 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH2 0xC55 SWAP1 PUSH2 0x1191 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0xC77 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0xCBE JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0xC90 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0xCBE JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0xCBE JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0xCBD JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0xCA2 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0xCCB SWAP2 SWAP1 PUSH2 0xCCF JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0xCE8 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0xCD0 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0xCFF PUSH2 0xCFA DUP5 PUSH2 0xFA3 JUMP JUMPDEST PUSH2 0xF7E JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0xD1B JUMPI PUSH2 0xD1A PUSH2 0x12E4 JUMP JUMPDEST JUMPDEST PUSH2 0xD26 DUP5 DUP3 DUP6 PUSH2 0x114F JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xD3D DUP2 PUSH2 0x1304 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0xD52 DUP2 PUSH2 0x131B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0xD6D JUMPI PUSH2 0xD6C PUSH2 0x12DF JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0xD7D DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0xCEC JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xD9C JUMPI PUSH2 0xD9B PUSH2 0x12EE JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xDAA DUP5 DUP3 DUP6 ADD PUSH2 0xD2E JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xDC9 JUMPI PUSH2 0xDC8 PUSH2 0x12EE JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xDD7 DUP5 DUP3 DUP6 ADD PUSH2 0xD43 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xDF6 JUMPI PUSH2 0xDF5 PUSH2 0x12EE JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP3 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xE14 JUMPI PUSH2 0xE13 PUSH2 0x12E9 JUMP JUMPDEST JUMPDEST PUSH2 0xE20 DUP5 DUP3 DUP6 ADD PUSH2 0xD58 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xE32 DUP2 PUSH2 0x10D1 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0xE41 DUP2 PUSH2 0x10E3 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0xE50 DUP2 PUSH2 0x1119 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xE61 DUP3 PUSH2 0xFD4 JUMP JUMPDEST PUSH2 0xE6B DUP2 DUP6 PUSH2 0xFDF JUMP JUMPDEST SWAP4 POP PUSH2 0xE7B DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x115E JUMP JUMPDEST PUSH2 0xE84 DUP2 PUSH2 0x12F3 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xE98 DUP2 PUSH2 0x110F JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xEB3 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xE29 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0xECE PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0xE29 JUMP JUMPDEST PUSH2 0xEDB PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0xE8F JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xEF7 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xE38 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xF12 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xE47 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xF32 DUP2 DUP5 PUSH2 0xE56 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xF4F PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xE8F JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0xF6A PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0xE8F JUMP JUMPDEST PUSH2 0xF77 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0xE8F JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xF88 PUSH2 0xF99 JUMP JUMPDEST SWAP1 POP PUSH2 0xF94 DUP3 DUP3 PUSH2 0x11C3 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0xFBE JUMPI PUSH2 0xFBD PUSH2 0x12B0 JUMP JUMPDEST JUMPDEST PUSH2 0xFC7 DUP3 PUSH2 0x12F3 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xFFB DUP3 PUSH2 0x110F JUMP JUMPDEST SWAP2 POP PUSH2 0x1006 DUP4 PUSH2 0x110F JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x103B JUMPI PUSH2 0x103A PUSH2 0x1223 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1051 DUP3 PUSH2 0x110F JUMP JUMPDEST SWAP2 POP PUSH2 0x105C DUP4 PUSH2 0x110F JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x106C JUMPI PUSH2 0x106B PUSH2 0x1252 JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1082 DUP3 PUSH2 0x110F JUMP JUMPDEST SWAP2 POP PUSH2 0x108D DUP4 PUSH2 0x110F JUMP JUMPDEST SWAP3 POP DUP2 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0x10C6 JUMPI PUSH2 0x10C5 PUSH2 0x1223 JUMP JUMPDEST JUMPDEST DUP3 DUP3 MUL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x10DC DUP3 PUSH2 0x10EF JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1124 DUP3 PUSH2 0x112B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1136 DUP3 PUSH2 0x113D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1148 DUP3 PUSH2 0x10EF JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x117C JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x1161 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x118B JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x11A9 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x11BD JUMPI PUSH2 0x11BC PUSH2 0x1281 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x11CC DUP3 PUSH2 0x12F3 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x11EB JUMPI PUSH2 0x11EA PUSH2 0x12B0 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x1 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x130D DUP2 PUSH2 0x10D1 JUMP JUMPDEST DUP2 EQ PUSH2 0x1318 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x1324 DUP2 PUSH2 0x10E3 JUMP JUMPDEST DUP2 EQ PUSH2 0x132F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH11 0x69CB5847058873A856B7C4 0xE3 DELEGATECALL PUSH21 0x1096A71FC197C5FA1E9EBFD2D17B0ECE4464736F6C PUSH4 0x43000807 STOP CALLER PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 PUSH1 0x4 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP CALLVALUE DUP1 ISZERO PUSH2 0x2B 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 PUSH2 0x11EF DUP1 PUSH2 0x7C PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0xE1 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x70A08231 GT PUSH2 0x7F JUMPI DUP1 PUSH4 0x95D89B41 GT PUSH2 0x59 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x2DD JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x308 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x345 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x382 JUMPI PUSH2 0xE2 JUMP JUMPDEST DUP1 PUSH4 0x70A08231 EQ PUSH2 0x24A JUMPI DUP1 PUSH4 0x7D64BCB4 EQ PUSH2 0x287 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x2B2 JUMPI PUSH2 0xE2 JUMP JUMPDEST DUP1 PUSH4 0x18160DDD GT PUSH2 0xBB JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x17A JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x1A5 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x1E2 JUMPI DUP1 PUSH4 0x40C10F19 EQ PUSH2 0x20D JUMPI PUSH2 0xE2 JUMP JUMPDEST DUP1 PUSH4 0x5D2035B EQ PUSH2 0xE7 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x112 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x13D JUMPI PUSH2 0xE2 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xF3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xFC PUSH2 0x3AB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x109 SWAP2 SWAP1 PUSH2 0xF76 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x11E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x127 PUSH2 0x3BE JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x134 SWAP2 SWAP1 PUSH2 0xF91 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x149 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x164 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x15F SWAP2 SWAP1 PUSH2 0xEA6 JUMP JUMPDEST PUSH2 0x3F7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x171 SWAP2 SWAP1 PUSH2 0xF76 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x186 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x18F PUSH2 0x4E9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x19C SWAP2 SWAP1 PUSH2 0xFB3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1B1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x1CC PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1C7 SWAP2 SWAP1 PUSH2 0xE53 JUMP JUMPDEST PUSH2 0x4EF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1D9 SWAP2 SWAP1 PUSH2 0xF76 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1EE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x1F7 PUSH2 0x79F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x204 SWAP2 SWAP1 PUSH2 0xFCE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x219 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x234 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x22F SWAP2 SWAP1 PUSH2 0xEA6 JUMP JUMPDEST PUSH2 0x7A4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x241 SWAP2 SWAP1 PUSH2 0xF76 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x256 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x271 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x26C SWAP2 SWAP1 PUSH2 0xDE6 JUMP JUMPDEST PUSH2 0x922 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x27E SWAP2 SWAP1 PUSH2 0xFB3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x293 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x29C PUSH2 0x96B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2A9 SWAP2 SWAP1 PUSH2 0xF76 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2BE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2C7 PUSH2 0xA15 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2D4 SWAP2 SWAP1 PUSH2 0xF5B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2E9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2F2 PUSH2 0xA3B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2FF SWAP2 SWAP1 PUSH2 0xF91 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x314 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x32F PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x32A SWAP2 SWAP1 PUSH2 0xEA6 JUMP JUMPDEST PUSH2 0xA74 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x33C SWAP2 SWAP1 PUSH2 0xF76 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x351 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x36C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x367 SWAP2 SWAP1 PUSH2 0xE13 JUMP JUMPDEST PUSH2 0xC0F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x379 SWAP2 SWAP1 PUSH2 0xFB3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x38E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x3A9 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x3A4 SWAP2 SWAP1 PUSH2 0xDE6 JUMP JUMPDEST PUSH2 0xC96 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x4 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x13 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x50726F6F662050726573616C6520546F6B656E00000000000000000000000000 DUP2 MSTORE POP DUP2 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x3 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 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP5 PUSH1 0x40 MLOAD PUSH2 0x4D7 SWAP2 SWAP1 PUSH2 0xFB3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x3 PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP PUSH2 0x5C3 DUP4 PUSH1 0x2 PUSH1 0x0 DUP8 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH2 0xD69 SWAP1 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST PUSH1 0x2 PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP PUSH2 0x658 DUP4 PUSH1 0x2 PUSH1 0x0 DUP9 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH2 0xD95 SWAP1 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST PUSH1 0x2 PUSH1 0x0 DUP8 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP PUSH2 0x6AE DUP4 DUP3 PUSH2 0xD95 SWAP1 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST PUSH1 0x3 PUSH1 0x0 DUP8 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP6 PUSH1 0x40 MLOAD PUSH2 0x78B SWAP2 SWAP1 PUSH2 0xFB3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH1 0x1 SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x12 DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x800 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x4 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x81A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x82F DUP3 PUSH1 0x0 SLOAD PUSH2 0xD69 SWAP1 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 SSTORE POP PUSH2 0x887 DUP3 PUSH1 0x2 PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH2 0xD69 SWAP1 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST PUSH1 0x2 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xF6798A560793A54C3BCFE86A93CDE1E73087D944C0EA20544137D4121396885 DUP4 PUSH1 0x40 MLOAD PUSH2 0x910 SWAP2 SWAP1 PUSH2 0xFB3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP 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 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x9C7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x4 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH32 0xAE5184FBA832CB2B1F702ACA6117B8D265EAF03AD33EB133F19DDE0F5920FA08 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH1 0x1 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x3 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x5050540000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH2 0xAC8 DUP3 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 SLOAD PUSH2 0xD95 SWAP1 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST 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 DUP2 SWAP1 SSTORE POP PUSH2 0xB5D DUP3 PUSH1 0x2 PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH2 0xD69 SWAP1 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST PUSH1 0x2 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0xBFD SWAP2 SWAP1 PUSH2 0xFB3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x3 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP3 SWAP2 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 0xCF0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xD66 JUMPI DUP1 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 JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 DUP5 PUSH2 0xD78 SWAP2 SWAP1 PUSH2 0x1005 JUMP JUMPDEST SWAP1 POP DUP4 DUP2 LT ISZERO PUSH2 0xD8B JUMPI PUSH2 0xD8A PUSH2 0x1117 JUMP JUMPDEST JUMPDEST DUP1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 GT ISZERO PUSH2 0xDA8 JUMPI PUSH2 0xDA7 PUSH2 0x1117 JUMP JUMPDEST JUMPDEST DUP2 DUP4 PUSH2 0xDB4 SWAP2 SWAP1 PUSH2 0x105B JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xDCB DUP2 PUSH2 0x118B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xDE0 DUP2 PUSH2 0x11A2 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xDFC JUMPI PUSH2 0xDFB PUSH2 0x1175 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xE0A DUP5 DUP3 DUP6 ADD PUSH2 0xDBC JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xE2A JUMPI PUSH2 0xE29 PUSH2 0x1175 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xE38 DUP6 DUP3 DUP7 ADD PUSH2 0xDBC JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xE49 DUP6 DUP3 DUP7 ADD PUSH2 0xDBC JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xE6C JUMPI PUSH2 0xE6B PUSH2 0x1175 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xE7A DUP7 DUP3 DUP8 ADD PUSH2 0xDBC JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0xE8B DUP7 DUP3 DUP8 ADD PUSH2 0xDBC JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0xE9C DUP7 DUP3 DUP8 ADD PUSH2 0xDD1 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xEBD JUMPI PUSH2 0xEBC PUSH2 0x1175 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xECB DUP6 DUP3 DUP7 ADD PUSH2 0xDBC JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xEDC DUP6 DUP3 DUP7 ADD PUSH2 0xDD1 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH2 0xEEF DUP2 PUSH2 0x108F JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0xEFE DUP2 PUSH2 0x10A1 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xF0F DUP3 PUSH2 0xFE9 JUMP JUMPDEST PUSH2 0xF19 DUP2 DUP6 PUSH2 0xFF4 JUMP JUMPDEST SWAP4 POP PUSH2 0xF29 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x10E4 JUMP JUMPDEST PUSH2 0xF32 DUP2 PUSH2 0x117A JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xF46 DUP2 PUSH2 0x10CD JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0xF55 DUP2 PUSH2 0x10D7 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xF70 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xEE6 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xF8B PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xEF5 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xFAB DUP2 DUP5 PUSH2 0xF04 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xFC8 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xF3D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xFE3 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xF4C JUMP JUMPDEST 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 PUSH2 0x1010 DUP3 PUSH2 0x10CD JUMP JUMPDEST SWAP2 POP PUSH2 0x101B DUP4 PUSH2 0x10CD JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x1050 JUMPI PUSH2 0x104F PUSH2 0x1146 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1066 DUP3 PUSH2 0x10CD JUMP JUMPDEST SWAP2 POP PUSH2 0x1071 DUP4 PUSH2 0x10CD JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x1084 JUMPI PUSH2 0x1083 PUSH2 0x1146 JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x109A DUP3 PUSH2 0x10AD JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x1102 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x10E7 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x1111 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x1 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1194 DUP2 PUSH2 0x108F JUMP JUMPDEST DUP2 EQ PUSH2 0x119F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x11AB DUP2 PUSH2 0x10CD JUMP JUMPDEST DUP2 EQ PUSH2 0x11B6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH23 0x3F96381B235141A74618FA66FF5B8A9BC14DAA0A1A1902 PUSH5 0xF76C5AA824 0xE4 DUP3 PUSH5 0x736F6C6343 STOP ADDMOD SMOD STOP CALLER ",
"sourceMap": "333:3350:3:-:0;;;264:5:2;243:26;;;;;;;;;;;;;;;;;;;;1494:419:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;421:10:1;413:5;;:18;;;;;;;;;;;;;;;;;;1620:3:3;1601:23;;:7;:23;;;;1593:32;;;;;;1657:1;1639:14;:19;;1631:28;;;;;;1680:1;1673:4;:8;1665:17;;;;;;1697:21;:19;;;:21;;:::i;:::-;1689:5;;:29;;;;;;;;;;;;;;;;;;1733:7;1724:6;;:16;;;;;;;;;;;;;;;;;;1753:5;1746:4;:12;;;;1780:14;1764:13;:30;;;;1856:6;1848:4;:15;;;;:::i;:::-;1842:3;:21;;;;1494:419;;;;333:3350;;1944:109;1993:17;2025:23;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;2018:30;;1944:109;:::o;333:3350::-;;;;;;;;:::o;7:143:6:-;64:5;95:6;89:13;80:22;;111:33;138:5;111:33;:::i;:::-;7:143;;;;:::o;156:::-;213:5;244:6;238:13;229:22;;260:33;287:5;260:33;:::i;:::-;156:143;;;;:::o;305:820::-;402:6;410;418;426;475:3;463:9;454:7;450:23;446:33;443:120;;;482:79;;:::i;:::-;443:120;602:1;627:64;683:7;674:6;663:9;659:22;627:64;:::i;:::-;617:74;;573:128;740:2;766:64;822:7;813:6;802:9;798:22;766:64;:::i;:::-;756:74;;711:129;879:2;905:64;961:7;952:6;941:9;937:22;905:64;:::i;:::-;895:74;;850:129;1018:2;1044:64;1100:7;1091:6;1080:9;1076:22;1044:64;:::i;:::-;1034:74;;989:129;305:820;;;;;;;:::o;1212:348::-;1252:7;1275:20;1293:1;1275:20;:::i;:::-;1270:25;;1309:20;1327:1;1309:20;:::i;:::-;1304:25;;1497:1;1429:66;1425:74;1422:1;1419:81;1414:1;1407:9;1400:17;1396:105;1393:131;;;1504:18;;:::i;:::-;1393:131;1552:1;1549;1545:9;1534:20;;1212:348;;;;:::o;1566:96::-;1603:7;1632:24;1650:5;1632:24;:::i;:::-;1621:35;;1566:96;;;:::o;1668:126::-;1705:7;1745:42;1738:5;1734:54;1723:65;;1668:126;;;:::o;1800:77::-;1837:7;1866:5;1855:16;;1800:77;;;:::o;1883:180::-;1931:77;1928:1;1921:88;2028:4;2025:1;2018:15;2052:4;2049:1;2042:15;2192:117;2301:1;2298;2291:12;2315:122;2388:24;2406:5;2388:24;:::i;:::-;2381:5;2378:35;2368:63;;2427:1;2424;2417:12;2368:63;2315:122;:::o;2443:::-;2516:24;2534:5;2516:24;:::i;:::-;2509:5;2506:35;2496:63;;2555:1;2552;2545:12;2496:63;2443:122;:::o;333:3350:3:-;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@_311": {
"entryPoint": null,
"id": 311,
"parameterSlots": 0,
"returnSlots": 0
},
"@add_862": {
"entryPoint": 2929,
"id": 862,
"parameterSlots": 2,
"returnSlots": 1
},
"@buyTokens_371": {
"entryPoint": 962,
"id": 371,
"parameterSlots": 1,
"returnSlots": 0
},
"@cap_208": {
"entryPoint": 1418,
"id": 208,
"parameterSlots": 0,
"returnSlots": 0
},
"@contactInformation_216": {
"entryPoint": 1424,
"id": 216,
"parameterSlots": 0,
"returnSlots": 0
},
"@finalize_447": {
"entryPoint": 1765,
"id": 447,
"parameterSlots": 0,
"returnSlots": 0
},
"@forwardFunds_384": {
"entryPoint": 3038,
"id": 384,
"parameterSlots": 0,
"returnSlots": 0
},
"@hasEnded_477": {
"entryPoint": 2559,
"id": 477,
"parameterSlots": 0,
"returnSlots": 1
},
"@isFinalized_214": {
"entryPoint": 2390,
"id": 214,
"parameterSlots": 0,
"returnSlots": 0
},
"@minInvestment_210": {
"entryPoint": 2384,
"id": 210,
"parameterSlots": 0,
"returnSlots": 0
},
"@mul_800": {
"entryPoint": 2973,
"id": 800,
"parameterSlots": 2,
"returnSlots": 1
},
"@owner_71": {
"entryPoint": 2409,
"id": 71,
"parameterSlots": 0,
"returnSlots": 0
},
"@pause_167": {
"entryPoint": 2189,
"id": 167,
"parameterSlots": 0,
"returnSlots": 1
},
"@paused_128": {
"entryPoint": 2170,
"id": 128,
"parameterSlots": 0,
"returnSlots": 0
},
"@rate_212": {
"entryPoint": 1412,
"id": 212,
"parameterSlots": 0,
"returnSlots": 0
},
"@setContactInformation_459": {
"entryPoint": 2445,
"id": 459,
"parameterSlots": 1,
"returnSlots": 0
},
"@token_202": {
"entryPoint": 2807,
"id": 202,
"parameterSlots": 0,
"returnSlots": 0
},
"@transferOwnership_114": {
"entryPoint": 2599,
"id": 114,
"parameterSlots": 1,
"returnSlots": 0
},
"@unpause_187": {
"entryPoint": 1566,
"id": 187,
"parameterSlots": 0,
"returnSlots": 1
},
"@validPurchase_419": {
"entryPoint": 2845,
"id": 419,
"parameterSlots": 0,
"returnSlots": 1
},
"@wallet_204": {
"entryPoint": 2132,
"id": 204,
"parameterSlots": 0,
"returnSlots": 0
},
"@weiRaised_206": {
"entryPoint": 1759,
"id": 206,
"parameterSlots": 0,
"returnSlots": 0
},
"abi_decode_available_length_t_string_memory_ptr": {
"entryPoint": 3308,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_t_address": {
"entryPoint": 3374,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bool_fromMemory": {
"entryPoint": 3395,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_string_memory_ptr": {
"entryPoint": 3416,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_address": {
"entryPoint": 3462,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_bool_fromMemory": {
"entryPoint": 3507,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_string_memory_ptr": {
"entryPoint": 3552,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_address_to_t_address_fromStack": {
"entryPoint": 3625,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_bool_to_t_bool_fromStack": {
"entryPoint": 3640,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_contract$_ProofPresaleToken_$767_to_t_address_payable_fromStack": {
"entryPoint": 3655,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 3670,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 3727,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
"entryPoint": 3742,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed": {
"entryPoint": 3769,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
"entryPoint": 3810,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_contract$_ProofPresaleToken_$767__to_t_address_payable__fromStack_reversed": {
"entryPoint": 3837,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 3864,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 3898,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed": {
"entryPoint": 3925,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"allocate_memory": {
"entryPoint": 3966,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": 3993,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_allocation_size_t_string_memory_ptr": {
"entryPoint": 4003,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 4052,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 4063,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 4080,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_div_t_uint256": {
"entryPoint": 4166,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_mul_t_uint256": {
"entryPoint": 4215,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 4305,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bool": {
"entryPoint": 4323,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 4335,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 4367,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"convert_t_contract$_ProofPresaleToken_$767_to_t_address_payable": {
"entryPoint": 4377,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"convert_t_uint160_to_t_address_payable": {
"entryPoint": 4395,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"convert_t_uint160_to_t_uint160": {
"entryPoint": 4413,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_calldata_to_memory": {
"entryPoint": 4431,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"copy_memory_to_memory": {
"entryPoint": 4446,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 4497,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"finalize_allocation": {
"entryPoint": 4547,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"panic_error_0x01": {
"entryPoint": 4596,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x11": {
"entryPoint": 4643,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x12": {
"entryPoint": 4690,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 4737,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 4784,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": {
"entryPoint": 4831,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": {
"entryPoint": 4836,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": 4841,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 4846,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 4851,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"validator_revert_t_address": {
"entryPoint": 4868,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_bool": {
"entryPoint": 4891,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:10545:6",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "91:328:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "101:75:6",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "168:6:6"
}
],
"functionName": {
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "126:41:6"
},
"nodeType": "YulFunctionCall",
"src": "126:49:6"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "110:15:6"
},
"nodeType": "YulFunctionCall",
"src": "110:66:6"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "101:5:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "192:5:6"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "199:6:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "185:6:6"
},
"nodeType": "YulFunctionCall",
"src": "185:21:6"
},
"nodeType": "YulExpressionStatement",
"src": "185:21:6"
},
{
"nodeType": "YulVariableDeclaration",
"src": "215:27:6",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "230:5:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "237:4:6",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "226:3:6"
},
"nodeType": "YulFunctionCall",
"src": "226:16:6"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "219:3:6",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "280:83:6",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulIdentifier",
"src": "282:77:6"
},
"nodeType": "YulFunctionCall",
"src": "282:79:6"
},
"nodeType": "YulExpressionStatement",
"src": "282:79:6"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "261:3:6"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "266:6:6"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "257:3:6"
},
"nodeType": "YulFunctionCall",
"src": "257:16:6"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "275:3:6"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "254:2:6"
},
"nodeType": "YulFunctionCall",
"src": "254:25:6"
},
"nodeType": "YulIf",
"src": "251:112:6"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "396:3:6"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "401:3:6"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "406:6:6"
}
],
"functionName": {
"name": "copy_calldata_to_memory",
"nodeType": "YulIdentifier",
"src": "372:23:6"
},
"nodeType": "YulFunctionCall",
"src": "372:41:6"
},
"nodeType": "YulExpressionStatement",
"src": "372:41:6"
}
]
},
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "64:3:6",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "69:6:6",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "77:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "85:5:6",
"type": ""
}
],
"src": "7:412:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "477:87:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "487:29:6",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "509:6:6"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "496:12:6"
},
"nodeType": "YulFunctionCall",
"src": "496:20:6"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "487:5:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "552:5:6"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "525:26:6"
},
"nodeType": "YulFunctionCall",
"src": "525:33:6"
},
"nodeType": "YulExpressionStatement",
"src": "525:33:6"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "455:6:6",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "463:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "471:5:6",
"type": ""
}
],
"src": "425:139:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "630:77:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "640:22:6",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "655:6:6"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "649:5:6"
},
"nodeType": "YulFunctionCall",
"src": "649:13:6"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "640:5:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "695:5:6"
}
],
"functionName": {
"name": "validator_revert_t_bool",
"nodeType": "YulIdentifier",
"src": "671:23:6"
},
"nodeType": "YulFunctionCall",
"src": "671:30:6"
},
"nodeType": "YulExpressionStatement",
"src": "671:30:6"
}
]
},
"name": "abi_decode_t_bool_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "608:6:6",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "616:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "624:5:6",
"type": ""
}
],
"src": "570:137:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "789:278:6",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "838:83:6",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "840:77:6"
},
"nodeType": "YulFunctionCall",
"src": "840:79:6"
},
"nodeType": "YulExpressionStatement",
"src": "840:79:6"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "817:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "825:4:6",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "813:3:6"
},
"nodeType": "YulFunctionCall",
"src": "813:17:6"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "832:3:6"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "809:3:6"
},
"nodeType": "YulFunctionCall",
"src": "809:27:6"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "802:6:6"
},
"nodeType": "YulFunctionCall",
"src": "802:35:6"
},
"nodeType": "YulIf",
"src": "799:122:6"
},
{
"nodeType": "YulVariableDeclaration",
"src": "930:34:6",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "957:6:6"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "944:12:6"
},
"nodeType": "YulFunctionCall",
"src": "944:20:6"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "934:6:6",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "973:88:6",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1034:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1042:4:6",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1030:3:6"
},
"nodeType": "YulFunctionCall",
"src": "1030:17:6"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1049:6:6"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1057:3:6"
}
],
"functionName": {
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "982:47:6"
},
"nodeType": "YulFunctionCall",
"src": "982:79:6"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "973:5:6"
}
]
}
]
},
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "767:6:6",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "775:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "783:5:6",
"type": ""
}
],
"src": "727:340:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1139:263:6",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1185:83:6",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "1187:77:6"
},
"nodeType": "YulFunctionCall",
"src": "1187:79:6"
},
"nodeType": "YulExpressionStatement",
"src": "1187:79:6"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1160:7:6"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1169:9:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1156:3:6"
},
"nodeType": "YulFunctionCall",
"src": "1156:23:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1181:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1152:3:6"
},
"nodeType": "YulFunctionCall",
"src": "1152:32:6"
},
"nodeType": "YulIf",
"src": "1149:119:6"
},
{
"nodeType": "YulBlock",
"src": "1278:117:6",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1293:15:6",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1307:1:6",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1297:6:6",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1322:63:6",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1357:9:6"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1368:6:6"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1353:3:6"
},
"nodeType": "YulFunctionCall",
"src": "1353:22:6"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1377:7:6"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1332:20:6"
},
"nodeType": "YulFunctionCall",
"src": "1332:53:6"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1322:6:6"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1109:9:6",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1120:7:6",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1132:6:6",
"type": ""
}
],
"src": "1073:329:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1482:271:6",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1528:83:6",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "1530:77:6"
},
"nodeType": "YulFunctionCall",
"src": "1530:79:6"
},
"nodeType": "YulExpressionStatement",
"src": "1530:79:6"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1503:7:6"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1512:9:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1499:3:6"
},
"nodeType": "YulFunctionCall",
"src": "1499:23:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1524:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1495:3:6"
},
"nodeType": "YulFunctionCall",
"src": "1495:32:6"
},
"nodeType": "YulIf",
"src": "1492:119:6"
},
{
"nodeType": "YulBlock",
"src": "1621:125:6",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1636:15:6",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1650:1:6",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1640:6:6",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1665:71:6",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1708:9:6"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1719:6:6"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1704:3:6"
},
"nodeType": "YulFunctionCall",
"src": "1704:22:6"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1728:7:6"
}
],
"functionName": {
"name": "abi_decode_t_bool_fromMemory",
"nodeType": "YulIdentifier",
"src": "1675:28:6"
},
"nodeType": "YulFunctionCall",
"src": "1675:61:6"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1665:6:6"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bool_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1452:9:6",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1463:7:6",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1475:6:6",
"type": ""
}
],
"src": "1408:345:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1835:433:6",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1881:83:6",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "1883:77:6"
},
"nodeType": "YulFunctionCall",
"src": "1883:79:6"
},
"nodeType": "YulExpressionStatement",
"src": "1883:79:6"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1856:7:6"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1865:9:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1852:3:6"
},
"nodeType": "YulFunctionCall",
"src": "1852:23:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1877:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1848:3:6"
},
"nodeType": "YulFunctionCall",
"src": "1848:32:6"
},
"nodeType": "YulIf",
"src": "1845:119:6"
},
{
"nodeType": "YulBlock",
"src": "1974:287:6",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1989:45:6",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2020:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2031:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2016:3:6"
},
"nodeType": "YulFunctionCall",
"src": "2016:17:6"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2003:12:6"
},
"nodeType": "YulFunctionCall",
"src": "2003:31:6"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1993:6:6",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2081:83:6",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "2083:77:6"
},
"nodeType": "YulFunctionCall",
"src": "2083:79:6"
},
"nodeType": "YulExpressionStatement",
"src": "2083:79:6"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2053:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2061:18:6",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2050:2:6"
},
"nodeType": "YulFunctionCall",
"src": "2050:30:6"
},
"nodeType": "YulIf",
"src": "2047:117:6"
},
{
"nodeType": "YulAssignment",
"src": "2178:73:6",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2223:9:6"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2234:6:6"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2219:3:6"
},
"nodeType": "YulFunctionCall",
"src": "2219:22:6"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2243:7:6"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2188:30:6"
},
"nodeType": "YulFunctionCall",
"src": "2188:63:6"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2178:6:6"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1805:9:6",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1816:7:6",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1828:6:6",
"type": ""
}
],
"src": "1759:509:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2339:53:6",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2356:3:6"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2379:5:6"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "2361:17:6"
},
"nodeType": "YulFunctionCall",
"src": "2361:24:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2349:6:6"
},
"nodeType": "YulFunctionCall",
"src": "2349:37:6"
},
"nodeType": "YulExpressionStatement",
"src": "2349:37:6"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2327:5:6",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2334:3:6",
"type": ""
}
],
"src": "2274:118:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2457:50:6",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2474:3:6"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2494:5:6"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "2479:14:6"
},
"nodeType": "YulFunctionCall",
"src": "2479:21:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2467:6:6"
},
"nodeType": "YulFunctionCall",
"src": "2467:34:6"
},
"nodeType": "YulExpressionStatement",
"src": "2467:34:6"
}
]
},
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2445:5:6",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2452:3:6",
"type": ""
}
],
"src": "2398:109:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2611:99:6",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2628:3:6"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2697:5:6"
}
],
"functionName": {
"name": "convert_t_contract$_ProofPresaleToken_$767_to_t_address_payable",
"nodeType": "YulIdentifier",
"src": "2633:63:6"
},
"nodeType": "YulFunctionCall",
"src": "2633:70:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2621:6:6"
},
"nodeType": "YulFunctionCall",
"src": "2621:83:6"
},
"nodeType": "YulExpressionStatement",
"src": "2621:83:6"
}
]
},
"name": "abi_encode_t_contract$_ProofPresaleToken_$767_to_t_address_payable_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2599:5:6",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2606:3:6",
"type": ""
}
],
"src": "2513:197:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2808:272:6",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2818:53:6",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2865:5:6"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2832:32:6"
},
"nodeType": "YulFunctionCall",
"src": "2832:39:6"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2822:6:6",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2880:78:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2946:3:6"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2951:6:6"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2887:58:6"
},
"nodeType": "YulFunctionCall",
"src": "2887:71:6"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2880:3:6"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2993:5:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3000:4:6",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2989:3:6"
},
"nodeType": "YulFunctionCall",
"src": "2989:16:6"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3007:3:6"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3012:6:6"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "2967:21:6"
},
"nodeType": "YulFunctionCall",
"src": "2967:52:6"
},
"nodeType": "YulExpressionStatement",
"src": "2967:52:6"
},
{
"nodeType": "YulAssignment",
"src": "3028:46:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3039:3:6"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3066:6:6"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "3044:21:6"
},
"nodeType": "YulFunctionCall",
"src": "3044:29:6"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3035:3:6"
},
"nodeType": "YulFunctionCall",
"src": "3035:39:6"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3028:3:6"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2789:5:6",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2796:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2804:3:6",
"type": ""
}
],
"src": "2716:364:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3151:53:6",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3168:3:6"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3191:5:6"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "3173:17:6"
},
"nodeType": "YulFunctionCall",
"src": "3173:24:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3161:6:6"
},
"nodeType": "YulFunctionCall",
"src": "3161:37:6"
},
"nodeType": "YulExpressionStatement",
"src": "3161:37:6"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3139:5:6",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3146:3:6",
"type": ""
}
],
"src": "3086:118:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3308:124:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3318:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3330:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3341:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3326:3:6"
},
"nodeType": "YulFunctionCall",
"src": "3326:18:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3318:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3398:6:6"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3411:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3422:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3407:3:6"
},
"nodeType": "YulFunctionCall",
"src": "3407:17:6"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "3354:43:6"
},
"nodeType": "YulFunctionCall",
"src": "3354:71:6"
},
"nodeType": "YulExpressionStatement",
"src": "3354:71:6"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3280:9:6",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3292:6:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3303:4:6",
"type": ""
}
],
"src": "3210:222:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3564:206:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3574:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3586:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3597:2:6",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3582:3:6"
},
"nodeType": "YulFunctionCall",
"src": "3582:18:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3574:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3654:6:6"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3667:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3678:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3663:3:6"
},
"nodeType": "YulFunctionCall",
"src": "3663:17:6"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "3610:43:6"
},
"nodeType": "YulFunctionCall",
"src": "3610:71:6"
},
"nodeType": "YulExpressionStatement",
"src": "3610:71:6"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "3735:6:6"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3748:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3759:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3744:3:6"
},
"nodeType": "YulFunctionCall",
"src": "3744:18:6"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "3691:43:6"
},
"nodeType": "YulFunctionCall",
"src": "3691:72:6"
},
"nodeType": "YulExpressionStatement",
"src": "3691:72:6"
}
]
},
"name": "abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3528:9:6",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "3540:6:6",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3548:6:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3559:4:6",
"type": ""
}
],
"src": "3438:332:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3868:118:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3878:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3890:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3901:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3886:3:6"
},
"nodeType": "YulFunctionCall",
"src": "3886:18:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3878:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3952:6:6"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3965:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3976:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3961:3:6"
},
"nodeType": "YulFunctionCall",
"src": "3961:17:6"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulIdentifier",
"src": "3914:37:6"
},
"nodeType": "YulFunctionCall",
"src": "3914:65:6"
},
"nodeType": "YulExpressionStatement",
"src": "3914:65:6"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3840:9:6",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3852:6:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3863:4:6",
"type": ""
}
],
"src": "3776:210:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4123:157:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4133:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4145:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4156:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4141:3:6"
},
"nodeType": "YulFunctionCall",
"src": "4141:18:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4133:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4246:6:6"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4259:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4270:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4255:3:6"
},
"nodeType": "YulFunctionCall",
"src": "4255:17:6"
}
],
"functionName": {
"name": "abi_encode_t_contract$_ProofPresaleToken_$767_to_t_address_payable_fromStack",
"nodeType": "YulIdentifier",
"src": "4169:76:6"
},
"nodeType": "YulFunctionCall",
"src": "4169:104:6"
},
"nodeType": "YulExpressionStatement",
"src": "4169:104:6"
}
]
},
"name": "abi_encode_tuple_t_contract$_ProofPresaleToken_$767__to_t_address_payable__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4095:9:6",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4107:6:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "4118:4:6",
"type": ""
}
],
"src": "3992:288:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4404:195:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4414:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4426:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4437:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4422:3:6"
},
"nodeType": "YulFunctionCall",
"src": "4422:18:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4414:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4461:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4472:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4457:3:6"
},
"nodeType": "YulFunctionCall",
"src": "4457:17:6"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4480:4:6"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4486:9:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4476:3:6"
},
"nodeType": "YulFunctionCall",
"src": "4476:20:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4450:6:6"
},
"nodeType": "YulFunctionCall",
"src": "4450:47:6"
},
"nodeType": "YulExpressionStatement",
"src": "4450:47:6"
},
{
"nodeType": "YulAssignment",
"src": "4506:86:6",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4578:6:6"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4587:4:6"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "4514:63:6"
},
"nodeType": "YulFunctionCall",
"src": "4514:78:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4506:4:6"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4376:9:6",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4388:6:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "4399:4:6",
"type": ""
}
],
"src": "4286:313:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4703:124:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4713:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4725:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4736:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4721:3:6"
},
"nodeType": "YulFunctionCall",
"src": "4721:18:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4713:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4793:6:6"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4806:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4817:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4802:3:6"
},
"nodeType": "YulFunctionCall",
"src": "4802:17:6"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "4749:43:6"
},
"nodeType": "YulFunctionCall",
"src": "4749:71:6"
},
"nodeType": "YulExpressionStatement",
"src": "4749:71:6"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4675:9:6",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4687:6:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "4698:4:6",
"type": ""
}
],
"src": "4605:222:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4959:206:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4969:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4981:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4992:2:6",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4977:3:6"
},
"nodeType": "YulFunctionCall",
"src": "4977:18:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4969:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5049:6:6"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5062:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5073:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5058:3:6"
},
"nodeType": "YulFunctionCall",
"src": "5058:17:6"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "5005:43:6"
},
"nodeType": "YulFunctionCall",
"src": "5005:71:6"
},
"nodeType": "YulExpressionStatement",
"src": "5005:71:6"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "5130:6:6"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5143:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5154:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5139:3:6"
},
"nodeType": "YulFunctionCall",
"src": "5139:18:6"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "5086:43:6"
},
"nodeType": "YulFunctionCall",
"src": "5086:72:6"
},
"nodeType": "YulExpressionStatement",
"src": "5086:72:6"
}
]
},
"name": "abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4923:9:6",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "4935:6:6",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4943:6:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "4954:4:6",
"type": ""
}
],
"src": "4833:332:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5212:88:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5222:30:6",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nodeType": "YulIdentifier",
"src": "5232:18:6"
},
"nodeType": "YulFunctionCall",
"src": "5232:20:6"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "5222:6:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "5281:6:6"
},
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "5289:4:6"
}
],
"functionName": {
"name": "finalize_allocation",
"nodeType": "YulIdentifier",
"src": "5261:19:6"
},
"nodeType": "YulFunctionCall",
"src": "5261:33:6"
},
"nodeType": "YulExpressionStatement",
"src": "5261:33:6"
}
]
},
"name": "allocate_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "5196:4:6",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "5205:6:6",
"type": ""
}
],
"src": "5171:129:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5346:35:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5356:19:6",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5372:2:6",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "5366:5:6"
},
"nodeType": "YulFunctionCall",
"src": "5366:9:6"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "5356:6:6"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "5339:6:6",
"type": ""
}
],
"src": "5306:75:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5454:241:6",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5559:22:6",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "5561:16:6"
},
"nodeType": "YulFunctionCall",
"src": "5561:18:6"
},
"nodeType": "YulExpressionStatement",
"src": "5561:18:6"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5531:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5539:18:6",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "5528:2:6"
},
"nodeType": "YulFunctionCall",
"src": "5528:30:6"
},
"nodeType": "YulIf",
"src": "5525:56:6"
},
{
"nodeType": "YulAssignment",
"src": "5591:37:6",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5621:6:6"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "5599:21:6"
},
"nodeType": "YulFunctionCall",
"src": "5599:29:6"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "5591:4:6"
}
]
},
{
"nodeType": "YulAssignment",
"src": "5665:23:6",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "5677:4:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5683:4:6",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5673:3:6"
},
"nodeType": "YulFunctionCall",
"src": "5673:15:6"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "5665:4:6"
}
]
}
]
},
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5438:6:6",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "5449:4:6",
"type": ""
}
],
"src": "5387:308:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5760:40:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5771:22:6",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5787:5:6"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "5781:5:6"
},
"nodeType": "YulFunctionCall",
"src": "5781:12:6"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5771:6:6"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5743:5:6",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5753:6:6",
"type": ""
}
],
"src": "5701:99:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5902:73:6",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5919:3:6"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5924:6:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5912:6:6"
},
"nodeType": "YulFunctionCall",
"src": "5912:19:6"
},
"nodeType": "YulExpressionStatement",
"src": "5912:19:6"
},
{
"nodeType": "YulAssignment",
"src": "5940:29:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5959:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5964:4:6",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5955:3:6"
},
"nodeType": "YulFunctionCall",
"src": "5955:14:6"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "5940:11:6"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5874:3:6",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5879:6:6",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "5890:11:6",
"type": ""
}
],
"src": "5806:169:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6025:261:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6035:25:6",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "6058:1:6"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "6040:17:6"
},
"nodeType": "YulFunctionCall",
"src": "6040:20:6"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "6035:1:6"
}
]
},
{
"nodeType": "YulAssignment",
"src": "6069:25:6",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "6092:1:6"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "6074:17:6"
},
"nodeType": "YulFunctionCall",
"src": "6074:20:6"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "6069:1:6"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "6232:22:6",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "6234:16:6"
},
"nodeType": "YulFunctionCall",
"src": "6234:18:6"
},
"nodeType": "YulExpressionStatement",
"src": "6234:18:6"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "6153:1:6"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6160:66:6",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "6228:1:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6156:3:6"
},
"nodeType": "YulFunctionCall",
"src": "6156:74:6"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "6150:2:6"
},
"nodeType": "YulFunctionCall",
"src": "6150:81:6"
},
"nodeType": "YulIf",
"src": "6147:107:6"
},
{
"nodeType": "YulAssignment",
"src": "6264:16:6",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "6275:1:6"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "6278:1:6"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6271:3:6"
},
"nodeType": "YulFunctionCall",
"src": "6271:9:6"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "6264:3:6"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "6012:1:6",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "6015:1:6",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "6021:3:6",
"type": ""
}
],
"src": "5981:305:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6334:143:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6344:25:6",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "6367:1:6"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "6349:17:6"
},
"nodeType": "YulFunctionCall",
"src": "6349:20:6"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "6344:1:6"
}
]
},
{
"nodeType": "YulAssignment",
"src": "6378:25:6",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "6401:1:6"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "6383:17:6"
},
"nodeType": "YulFunctionCall",
"src": "6383:20:6"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "6378:1:6"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "6425:22:6",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x12",
"nodeType": "YulIdentifier",
"src": "6427:16:6"
},
"nodeType": "YulFunctionCall",
"src": "6427:18:6"
},
"nodeType": "YulExpressionStatement",
"src": "6427:18:6"
}
]
},
"condition": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "6422:1:6"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "6415:6:6"
},
"nodeType": "YulFunctionCall",
"src": "6415:9:6"
},
"nodeType": "YulIf",
"src": "6412:35:6"
},
{
"nodeType": "YulAssignment",
"src": "6457:14:6",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "6466:1:6"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "6469:1:6"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "6462:3:6"
},
"nodeType": "YulFunctionCall",
"src": "6462:9:6"
},
"variableNames": [
{
"name": "r",
"nodeType": "YulIdentifier",
"src": "6457:1:6"
}
]
}
]
},
"name": "checked_div_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "6323:1:6",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "6326:1:6",
"type": ""
}
],
"returnVariables": [
{
"name": "r",
"nodeType": "YulTypedName",
"src": "6332:1:6",
"type": ""
}
],
"src": "6292:185:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6531:300:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6541:25:6",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "6564:1:6"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "6546:17:6"
},
"nodeType": "YulFunctionCall",
"src": "6546:20:6"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "6541:1:6"
}
]
},
{
"nodeType": "YulAssignment",
"src": "6575:25:6",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "6598:1:6"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "6580:17:6"
},
"nodeType": "YulFunctionCall",
"src": "6580:20:6"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "6575:1:6"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "6773:22:6",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "6775:16:6"
},
"nodeType": "YulFunctionCall",
"src": "6775:18:6"
},
"nodeType": "YulExpressionStatement",
"src": "6775:18:6"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "6685:1:6"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "6678:6:6"
},
"nodeType": "YulFunctionCall",
"src": "6678:9:6"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "6671:6:6"
},
"nodeType": "YulFunctionCall",
"src": "6671:17:6"
},
{
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "6693:1:6"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6700:66:6",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "6768:1:6"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "6696:3:6"
},
"nodeType": "YulFunctionCall",
"src": "6696:74:6"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "6690:2:6"
},
"nodeType": "YulFunctionCall",
"src": "6690:81:6"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "6667:3:6"
},
"nodeType": "YulFunctionCall",
"src": "6667:105:6"
},
"nodeType": "YulIf",
"src": "6664:131:6"
},
{
"nodeType": "YulAssignment",
"src": "6805:20:6",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "6820:1:6"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "6823:1:6"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "6816:3:6"
},
"nodeType": "YulFunctionCall",
"src": "6816:9:6"
},
"variableNames": [
{
"name": "product",
"nodeType": "YulIdentifier",
"src": "6805:7:6"
}
]
}
]
},
"name": "checked_mul_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "6514:1:6",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "6517:1:6",
"type": ""
}
],
"returnVariables": [
{
"name": "product",
"nodeType": "YulTypedName",
"src": "6523:7:6",
"type": ""
}
],
"src": "6483:348:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6882:51:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6892:35:6",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6921:5:6"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "6903:17:6"
},
"nodeType": "YulFunctionCall",
"src": "6903:24:6"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "6892:7:6"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6864:5:6",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "6874:7:6",
"type": ""
}
],
"src": "6837:96:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6981:48:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6991:32:6",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7016:5:6"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "7009:6:6"
},
"nodeType": "YulFunctionCall",
"src": "7009:13:6"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "7002:6:6"
},
"nodeType": "YulFunctionCall",
"src": "7002:21:6"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "6991:7:6"
}
]
}
]
},
"name": "cleanup_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6963:5:6",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "6973:7:6",
"type": ""
}
],
"src": "6939:90:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7080:81:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7090:65:6",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7105:5:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7112:42:6",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "7101:3:6"
},
"nodeType": "YulFunctionCall",
"src": "7101:54:6"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "7090:7:6"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7062:5:6",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "7072:7:6",
"type": ""
}
],
"src": "7035:126:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7212:32:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7222:16:6",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "7233:5:6"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "7222:7:6"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7194:5:6",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "7204:7:6",
"type": ""
}
],
"src": "7167:77:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7343:74:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7353:58:6",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7405:5:6"
}
],
"functionName": {
"name": "convert_t_uint160_to_t_address_payable",
"nodeType": "YulIdentifier",
"src": "7366:38:6"
},
"nodeType": "YulFunctionCall",
"src": "7366:45:6"
},
"variableNames": [
{
"name": "converted",
"nodeType": "YulIdentifier",
"src": "7353:9:6"
}
]
}
]
},
"name": "convert_t_contract$_ProofPresaleToken_$767_to_t_address_payable",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7323:5:6",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nodeType": "YulTypedName",
"src": "7333:9:6",
"type": ""
}
],
"src": "7250:167:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7491:66:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7501:50:6",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7545:5:6"
}
],
"functionName": {
"name": "convert_t_uint160_to_t_uint160",
"nodeType": "YulIdentifier",
"src": "7514:30:6"
},
"nodeType": "YulFunctionCall",
"src": "7514:37:6"
},
"variableNames": [
{
"name": "converted",
"nodeType": "YulIdentifier",
"src": "7501:9:6"
}
]
}
]
},
"name": "convert_t_uint160_to_t_address_payable",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7471:5:6",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nodeType": "YulTypedName",
"src": "7481:9:6",
"type": ""
}
],
"src": "7423:134:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7623:53:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7633:37:6",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7664:5:6"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "7646:17:6"
},
"nodeType": "YulFunctionCall",
"src": "7646:24:6"
},
"variableNames": [
{
"name": "converted",
"nodeType": "YulIdentifier",
"src": "7633:9:6"
}
]
}
]
},
"name": "convert_t_uint160_to_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7603:5:6",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nodeType": "YulTypedName",
"src": "7613:9:6",
"type": ""
}
],
"src": "7563:113:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7733:103:6",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "7756:3:6"
},
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "7761:3:6"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "7766:6:6"
}
],
"functionName": {
"name": "calldatacopy",
"nodeType": "YulIdentifier",
"src": "7743:12:6"
},
"nodeType": "YulFunctionCall",
"src": "7743:30:6"
},
"nodeType": "YulExpressionStatement",
"src": "7743:30:6"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "7814:3:6"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "7819:6:6"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7810:3:6"
},
"nodeType": "YulFunctionCall",
"src": "7810:16:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7828:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7803:6:6"
},
"nodeType": "YulFunctionCall",
"src": "7803:27:6"
},
"nodeType": "YulExpressionStatement",
"src": "7803:27:6"
}
]
},
"name": "copy_calldata_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "7715:3:6",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "7720:3:6",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "7725:6:6",
"type": ""
}
],
"src": "7682:154:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7891:258:6",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7901:10:6",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "7910:1:6",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "7905:1:6",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "7970:63:6",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "7995:3:6"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "8000:1:6"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7991:3:6"
},
"nodeType": "YulFunctionCall",
"src": "7991:11:6"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "8014:3:6"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "8019:1:6"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8010:3:6"
},
"nodeType": "YulFunctionCall",
"src": "8010:11:6"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "8004:5:6"
},
"nodeType": "YulFunctionCall",
"src": "8004:18:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7984:6:6"
},
"nodeType": "YulFunctionCall",
"src": "7984:39:6"
},
"nodeType": "YulExpressionStatement",
"src": "7984:39:6"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "7931:1:6"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "7934:6:6"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "7928:2:6"
},
"nodeType": "YulFunctionCall",
"src": "7928:13:6"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "7942:19:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7944:15:6",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "7953:1:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7956:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7949:3:6"
},
"nodeType": "YulFunctionCall",
"src": "7949:10:6"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "7944:1:6"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "7924:3:6",
"statements": []
},
"src": "7920:113:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8067:76:6",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "8117:3:6"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8122:6:6"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8113:3:6"
},
"nodeType": "YulFunctionCall",
"src": "8113:16:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8131:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8106:6:6"
},
"nodeType": "YulFunctionCall",
"src": "8106:27:6"
},
"nodeType": "YulExpressionStatement",
"src": "8106:27:6"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "8048:1:6"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8051:6:6"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "8045:2:6"
},
"nodeType": "YulFunctionCall",
"src": "8045:13:6"
},
"nodeType": "YulIf",
"src": "8042:101:6"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "7873:3:6",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "7878:3:6",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "7883:6:6",
"type": ""
}
],
"src": "7842:307:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8206:269:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8216:22:6",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "8230:4:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8236:1:6",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "8226:3:6"
},
"nodeType": "YulFunctionCall",
"src": "8226:12:6"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8216:6:6"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "8247:38:6",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "8277:4:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8283:1:6",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "8273:3:6"
},
"nodeType": "YulFunctionCall",
"src": "8273:12:6"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "8251:18:6",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "8324:51:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8338:27:6",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8352:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8360:4:6",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "8348:3:6"
},
"nodeType": "YulFunctionCall",
"src": "8348:17:6"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8338:6:6"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "8304:18:6"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "8297:6:6"
},
"nodeType": "YulFunctionCall",
"src": "8297:26:6"
},
"nodeType": "YulIf",
"src": "8294:81:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8427:42:6",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "8441:16:6"
},
"nodeType": "YulFunctionCall",
"src": "8441:18:6"
},
"nodeType": "YulExpressionStatement",
"src": "8441:18:6"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "8391:18:6"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8414:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8422:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "8411:2:6"
},
"nodeType": "YulFunctionCall",
"src": "8411:14:6"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "8388:2:6"
},
"nodeType": "YulFunctionCall",
"src": "8388:38:6"
},
"nodeType": "YulIf",
"src": "8385:84:6"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "8190:4:6",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "8199:6:6",
"type": ""
}
],
"src": "8155:320:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8524:238:6",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "8534:58:6",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "8556:6:6"
},
{
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "8586:4:6"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "8564:21:6"
},
"nodeType": "YulFunctionCall",
"src": "8564:27:6"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8552:3:6"
},
"nodeType": "YulFunctionCall",
"src": "8552:40:6"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "8538:10:6",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "8703:22:6",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "8705:16:6"
},
"nodeType": "YulFunctionCall",
"src": "8705:18:6"
},
"nodeType": "YulExpressionStatement",
"src": "8705:18:6"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "8646:10:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8658:18:6",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "8643:2:6"
},
"nodeType": "YulFunctionCall",
"src": "8643:34:6"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "8682:10:6"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "8694:6:6"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "8679:2:6"
},
"nodeType": "YulFunctionCall",
"src": "8679:22:6"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "8640:2:6"
},
"nodeType": "YulFunctionCall",
"src": "8640:62:6"
},
"nodeType": "YulIf",
"src": "8637:88:6"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8741:2:6",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "8745:10:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8734:6:6"
},
"nodeType": "YulFunctionCall",
"src": "8734:22:6"
},
"nodeType": "YulExpressionStatement",
"src": "8734:22:6"
}
]
},
"name": "finalize_allocation",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "8510:6:6",
"type": ""
},
{
"name": "size",
"nodeType": "YulTypedName",
"src": "8518:4:6",
"type": ""
}
],
"src": "8481:281:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8796:152:6",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8813:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8816:77:6",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8806:6:6"
},
"nodeType": "YulFunctionCall",
"src": "8806:88:6"
},
"nodeType": "YulExpressionStatement",
"src": "8806:88:6"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8910:1:6",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8913:4:6",
"type": "",
"value": "0x01"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8903:6:6"
},
"nodeType": "YulFunctionCall",
"src": "8903:15:6"
},
"nodeType": "YulExpressionStatement",
"src": "8903:15:6"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8934:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8937:4:6",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "8927:6:6"
},
"nodeType": "YulFunctionCall",
"src": "8927:15:6"
},
"nodeType": "YulExpressionStatement",
"src": "8927:15:6"
}
]
},
"name": "panic_error_0x01",
"nodeType": "YulFunctionDefinition",
"src": "8768:180:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8982:152:6",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8999:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9002:77:6",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8992:6:6"
},
"nodeType": "YulFunctionCall",
"src": "8992:88:6"
},
"nodeType": "YulExpressionStatement",
"src": "8992:88:6"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9096:1:6",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9099:4:6",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9089:6:6"
},
"nodeType": "YulFunctionCall",
"src": "9089:15:6"
},
"nodeType": "YulExpressionStatement",
"src": "9089:15:6"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9120:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9123:4:6",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "9113:6:6"
},
"nodeType": "YulFunctionCall",
"src": "9113:15:6"
},
"nodeType": "YulExpressionStatement",
"src": "9113:15:6"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "8954:180:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9168:152:6",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9185:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9188:77:6",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9178:6:6"
},
"nodeType": "YulFunctionCall",
"src": "9178:88:6"
},
"nodeType": "YulExpressionStatement",
"src": "9178:88:6"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9282:1:6",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9285:4:6",
"type": "",
"value": "0x12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9275:6:6"
},
"nodeType": "YulFunctionCall",
"src": "9275:15:6"
},
"nodeType": "YulExpressionStatement",
"src": "9275:15:6"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9306:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9309:4:6",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "9299:6:6"
},
"nodeType": "YulFunctionCall",
"src": "9299:15:6"
},
"nodeType": "YulExpressionStatement",
"src": "9299:15:6"
}
]
},
"name": "panic_error_0x12",
"nodeType": "YulFunctionDefinition",
"src": "9140:180:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9354:152:6",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9371:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9374:77:6",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9364:6:6"
},
"nodeType": "YulFunctionCall",
"src": "9364:88:6"
},
"nodeType": "YulExpressionStatement",
"src": "9364:88:6"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9468:1:6",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9471:4:6",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9461:6:6"
},
"nodeType": "YulFunctionCall",
"src": "9461:15:6"
},
"nodeType": "YulExpressionStatement",
"src": "9461:15:6"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9492:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9495:4:6",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "9485:6:6"
},
"nodeType": "YulFunctionCall",
"src": "9485:15:6"
},
"nodeType": "YulExpressionStatement",
"src": "9485:15:6"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "9326:180:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9540:152:6",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9557:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9560:77:6",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9550:6:6"
},
"nodeType": "YulFunctionCall",
"src": "9550:88:6"
},
"nodeType": "YulExpressionStatement",
"src": "9550:88:6"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9654:1:6",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9657:4:6",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9647:6:6"
},
"nodeType": "YulFunctionCall",
"src": "9647:15:6"
},
"nodeType": "YulExpressionStatement",
"src": "9647:15:6"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9678:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9681:4:6",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "9671:6:6"
},
"nodeType": "YulFunctionCall",
"src": "9671:15:6"
},
"nodeType": "YulExpressionStatement",
"src": "9671:15:6"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "9512:180:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9787:28:6",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9804:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9807:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "9797:6:6"
},
"nodeType": "YulFunctionCall",
"src": "9797:12:6"
},
"nodeType": "YulExpressionStatement",
"src": "9797:12:6"
}
]
},
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulFunctionDefinition",
"src": "9698:117:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9910:28:6",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9927:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9930:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "9920:6:6"
},
"nodeType": "YulFunctionCall",
"src": "9920:12:6"
},
"nodeType": "YulExpressionStatement",
"src": "9920:12:6"
}
]
},
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulFunctionDefinition",
"src": "9821:117:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10033:28:6",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10050:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10053:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "10043:6:6"
},
"nodeType": "YulFunctionCall",
"src": "10043:12:6"
},
"nodeType": "YulExpressionStatement",
"src": "10043:12:6"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "9944:117:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10156:28:6",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10173:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10176:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "10166:6:6"
},
"nodeType": "YulFunctionCall",
"src": "10166:12:6"
},
"nodeType": "YulExpressionStatement",
"src": "10166:12:6"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "10067:117:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10238:54:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10248:38:6",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "10266:5:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10273:2:6",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10262:3:6"
},
"nodeType": "YulFunctionCall",
"src": "10262:14:6"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10282:2:6",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "10278:3:6"
},
"nodeType": "YulFunctionCall",
"src": "10278:7:6"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "10258:3:6"
},
"nodeType": "YulFunctionCall",
"src": "10258:28:6"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "10248:6:6"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "10221:5:6",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "10231:6:6",
"type": ""
}
],
"src": "10190:102:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10341:79:6",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "10398:16:6",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10407:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10410:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "10400:6:6"
},
"nodeType": "YulFunctionCall",
"src": "10400:12:6"
},
"nodeType": "YulExpressionStatement",
"src": "10400:12:6"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "10364:5:6"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "10389:5:6"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "10371:17:6"
},
"nodeType": "YulFunctionCall",
"src": "10371:24:6"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "10361:2:6"
},
"nodeType": "YulFunctionCall",
"src": "10361:35:6"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "10354:6:6"
},
"nodeType": "YulFunctionCall",
"src": "10354:43:6"
},
"nodeType": "YulIf",
"src": "10351:63:6"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "10334:5:6",
"type": ""
}
],
"src": "10298:122:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10466:76:6",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "10520:16:6",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10529:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10532:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "10522:6:6"
},
"nodeType": "YulFunctionCall",
"src": "10522:12:6"
},
"nodeType": "YulExpressionStatement",
"src": "10522:12:6"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "10489:5:6"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "10511:5:6"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "10496:14:6"
},
"nodeType": "YulFunctionCall",
"src": "10496:21:6"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "10486:2:6"
},
"nodeType": "YulFunctionCall",
"src": "10486:32:6"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "10479:6:6"
},
"nodeType": "YulFunctionCall",
"src": "10479:40:6"
},
"nodeType": "YulIf",
"src": "10476:60:6"
}
]
},
"name": "validator_revert_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "10459:5:6",
"type": ""
}
],
"src": "10426:116:6"
}
]
},
"contents": "{\n\n function abi_decode_available_length_t_string_memory_ptr(src, length, end) -> array {\n array := allocate_memory(array_allocation_size_t_string_memory_ptr(length))\n mstore(array, length)\n let dst := add(array, 0x20)\n if gt(add(src, length), end) { revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() }\n copy_calldata_to_memory(src, dst, length)\n }\n\n function abi_decode_t_address(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address(value)\n }\n\n function abi_decode_t_bool_fromMemory(offset, end) -> value {\n value := mload(offset)\n validator_revert_t_bool(value)\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_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 abi_decode_tuple_t_bool_fromMemory(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bool_fromMemory(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_string_memory_ptr(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := calldataload(add(headStart, 0))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value0 := abi_decode_t_string_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(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_t_contract$_ProofPresaleToken_$767_to_t_address_payable_fromStack(value, pos) {\n mstore(pos, convert_t_contract$_ProofPresaleToken_$767_to_t_address_payable(value))\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(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_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed(headStart , value1, value0) -> tail {\n tail := add(headStart, 64)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value1, add(headStart, 32))\n\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_tuple_t_contract$_ProofPresaleToken_$767__to_t_address_payable__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_contract$_ProofPresaleToken_$767_to_t_address_payable_fromStack(value0, add(headStart, 0))\n\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 abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed(headStart , value1, value0) -> tail {\n tail := add(headStart, 64)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value1, add(headStart, 32))\n\n }\n\n function allocate_memory(size) -> memPtr {\n memPtr := allocate_unbounded()\n finalize_allocation(memPtr, size)\n }\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function array_allocation_size_t_string_memory_ptr(length) -> size {\n // Make sure we can allocate memory without overflow\n if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n\n size := round_up_to_mul_of_32(length)\n\n // add length slot\n size := add(size, 0x20)\n\n }\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function checked_add_t_uint256(x, y) -> sum {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n // overflow, if x > (maxValue - y)\n if gt(x, sub(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, y)) { panic_error_0x11() }\n\n sum := add(x, y)\n }\n\n function checked_div_t_uint256(x, y) -> r {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n if iszero(y) { panic_error_0x12() }\n\n r := div(x, y)\n }\n\n function checked_mul_t_uint256(x, y) -> product {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n // overflow, if x != 0 and y > (maxValue / x)\n if and(iszero(iszero(x)), gt(y, div(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, x))) { panic_error_0x11() }\n\n product := mul(x, y)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function cleanup_t_bool(value) -> cleaned {\n cleaned := iszero(iszero(value))\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function convert_t_contract$_ProofPresaleToken_$767_to_t_address_payable(value) -> converted {\n converted := convert_t_uint160_to_t_address_payable(value)\n }\n\n function convert_t_uint160_to_t_address_payable(value) -> converted {\n converted := convert_t_uint160_to_t_uint160(value)\n }\n\n function convert_t_uint160_to_t_uint160(value) -> converted {\n converted := cleanup_t_uint160(value)\n }\n\n function copy_calldata_to_memory(src, dst, length) {\n calldatacopy(dst, src, length)\n // clear end\n mstore(add(dst, length), 0)\n }\n\n function copy_memory_to_memory(src, dst, length) {\n let i := 0\n for { } lt(i, length) { i := add(i, 32) }\n {\n mstore(add(dst, i), mload(add(src, i)))\n }\n if gt(i, length)\n {\n // clear end\n mstore(add(dst, length), 0)\n }\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function finalize_allocation(memPtr, size) {\n let newFreePtr := add(memPtr, round_up_to_mul_of_32(size))\n // protect against overflow\n if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n }\n\n function panic_error_0x01() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x01)\n revert(0, 0x24)\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function panic_error_0x12() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x12)\n revert(0, 0x24)\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() {\n revert(0, 0)\n }\n\n function revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n function validator_revert_t_bool(value) {\n if iszero(eq(value, cleanup_t_bool(value))) { revert(0, 0) }\n }\n\n}\n",
"id": 6,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "6080604052600436106101025760003560e01c80638456cb5911610095578063b967a52e11610064578063b967a52e146102fe578063ec8ac4d814610327578063ecb70fb714610343578063f2fde38b1461036e578063fc0c546a1461039757610103565b80638456cb59146102525780638ac2c6801461027d5780638d4e4083146102a85780638da5cb5b146102d357610103565b80634042b66f116100d15780634042b66f146101ba5780634bb278f3146101e5578063521eb273146101fc5780635c975abb1461022757610103565b80632c4e722e1461010e578063355274ea1461013957806336f7ab5e146101645780633f4ba83a1461018f57610103565b5b61010c336103c2565b005b34801561011a57600080fd5b50610123610584565b6040516101309190610f3a565b60405180910390f35b34801561014557600080fd5b5061014e61058a565b60405161015b9190610f3a565b60405180910390f35b34801561017057600080fd5b50610179610590565b6040516101869190610f18565b60405180910390f35b34801561019b57600080fd5b506101a461061e565b6040516101b19190610ee2565b60405180910390f35b3480156101c657600080fd5b506101cf6106df565b6040516101dc9190610f3a565b60405180910390f35b3480156101f157600080fd5b506101fa6106e5565b005b34801561020857600080fd5b50610211610854565b60405161021e9190610e9e565b60405180910390f35b34801561023357600080fd5b5061023c61087a565b6040516102499190610ee2565b60405180910390f35b34801561025e57600080fd5b5061026761088d565b6040516102749190610ee2565b60405180910390f35b34801561028957600080fd5b50610292610950565b60405161029f9190610f3a565b60405180910390f35b3480156102b457600080fd5b506102bd610956565b6040516102ca9190610ee2565b60405180910390f35b3480156102df57600080fd5b506102e8610969565b6040516102f59190610e9e565b60405180910390f35b34801561030a57600080fd5b5061032560048036038101906103209190610de0565b61098d565b005b610341600480360381019061033c9190610d86565b6103c2565b005b34801561034f57600080fd5b506103586109ff565b6040516103659190610ee2565b60405180910390f35b34801561037a57600080fd5b5061039560048036038101906103909190610d86565b610a27565b005b3480156103a357600080fd5b506103ac610af7565b6040516103b99190610efd565b60405180910390f35b600060149054906101000a900460ff16156103dc57600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561041657600080fd5b61041e610b1d565b61042757600080fd5b600034905061044181600354610b7190919063ffffffff16565b600381905550600061045e60065483610b9d90919063ffffffff16565b9050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f1984836040518363ffffffff1660e01b81526004016104bd929190610eb9565b602060405180830381600087803b1580156104d757600080fd5b505af11580156104eb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061050f9190610db3565b508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f623b3804fa71d67900d064613da8f94b9617215ee90799290593e1745087ad18848460405161056f929190610f55565b60405180910390a361057f610bde565b505050565b60065481565b60045481565b6008805461059d90611191565b80601f01602080910402602001604051908101604052809291908181526020018280546105c990611191565b80156106165780601f106105eb57610100808354040283529160200191610616565b820191906000526020600020905b8154815290600101906020018083116105f957829003601f168201915b505050505081565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461067957600080fd5b600060149054906101000a900460ff1661069257600080fd5b60008060146101000a81548160ff0219169083151502179055507f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3360405160405180910390a16001905090565b60035481565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461073d57600080fd5b600760009054906101000a900460ff161561075757600080fd5b61075f6109ff565b61076857600080fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16637d64bcb46040518163ffffffff1660e01b8152600401602060405180830381600087803b1580156107d257600080fd5b505af11580156107e6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061080a9190610db3565b507f6823b073d48d6e3a7d385eeb601452d680e74bb46afe3255a7d778f3a9b1768160405160405180910390a16001600760006101000a81548160ff021916908315150217905550565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600060149054906101000a900460ff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146108e857600080fd5b600060149054906101000a900460ff161561090257600080fd5b6001600060146101000a81548160ff0219169083151502179055507f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62560405160405180910390a16001905090565b60055481565b600760009054906101000a900460ff1681565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146109e557600080fd5b80600890805190602001906109fb929190610c49565b5050565b600080600454610a1c600654600354610b9d90919063ffffffff16565b101590508091505090565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a7f57600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610af457806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b50565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610b3534600354610b7190919063ffffffff16565b9050600060055434101590506000600454610b5b60065485610b9d90919063ffffffff16565b11159050818015610b695750805b935050505090565b6000808284610b809190610ff0565b905083811015610b9357610b926111f4565b5b8091505092915050565b6000808284610bac9190611077565b90506000841480610bc75750828482610bc59190611046565b145b610bd457610bd36111f4565b5b8091505092915050565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f19350505050158015610c46573d6000803e3d6000fd5b50565b828054610c5590611191565b90600052602060002090601f016020900481019282610c775760008555610cbe565b82601f10610c9057805160ff1916838001178555610cbe565b82800160010185558215610cbe579182015b82811115610cbd578251825591602001919060010190610ca2565b5b509050610ccb9190610ccf565b5090565b5b80821115610ce8576000816000905550600101610cd0565b5090565b6000610cff610cfa84610fa3565b610f7e565b905082815260208101848484011115610d1b57610d1a6112e4565b5b610d2684828561114f565b509392505050565b600081359050610d3d81611304565b92915050565b600081519050610d528161131b565b92915050565b600082601f830112610d6d57610d6c6112df565b5b8135610d7d848260208601610cec565b91505092915050565b600060208284031215610d9c57610d9b6112ee565b5b6000610daa84828501610d2e565b91505092915050565b600060208284031215610dc957610dc86112ee565b5b6000610dd784828501610d43565b91505092915050565b600060208284031215610df657610df56112ee565b5b600082013567ffffffffffffffff811115610e1457610e136112e9565b5b610e2084828501610d58565b91505092915050565b610e32816110d1565b82525050565b610e41816110e3565b82525050565b610e5081611119565b82525050565b6000610e6182610fd4565b610e6b8185610fdf565b9350610e7b81856020860161115e565b610e84816112f3565b840191505092915050565b610e988161110f565b82525050565b6000602082019050610eb36000830184610e29565b92915050565b6000604082019050610ece6000830185610e29565b610edb6020830184610e8f565b9392505050565b6000602082019050610ef76000830184610e38565b92915050565b6000602082019050610f126000830184610e47565b92915050565b60006020820190508181036000830152610f328184610e56565b905092915050565b6000602082019050610f4f6000830184610e8f565b92915050565b6000604082019050610f6a6000830185610e8f565b610f776020830184610e8f565b9392505050565b6000610f88610f99565b9050610f9482826111c3565b919050565b6000604051905090565b600067ffffffffffffffff821115610fbe57610fbd6112b0565b5b610fc7826112f3565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b6000610ffb8261110f565b91506110068361110f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561103b5761103a611223565b5b828201905092915050565b60006110518261110f565b915061105c8361110f565b92508261106c5761106b611252565b5b828204905092915050565b60006110828261110f565b915061108d8361110f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156110c6576110c5611223565b5b828202905092915050565b60006110dc826110ef565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006111248261112b565b9050919050565b60006111368261113d565b9050919050565b6000611148826110ef565b9050919050565b82818337600083830152505050565b60005b8381101561117c578082015181840152602081019050611161565b8381111561118b576000848401525b50505050565b600060028204905060018216806111a957607f821691505b602082108114156111bd576111bc611281565b5b50919050565b6111cc826112f3565b810181811067ffffffffffffffff821117156111eb576111ea6112b0565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b61130d816110d1565b811461131857600080fd5b50565b611324816110e3565b811461132f57600080fd5b5056fea26469706673582212206a69cb5847058873a856b7c4e3f4741096a71fc197c5fa1e9ebfd2d17b0ece4464736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x102 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x8456CB59 GT PUSH2 0x95 JUMPI DUP1 PUSH4 0xB967A52E GT PUSH2 0x64 JUMPI DUP1 PUSH4 0xB967A52E EQ PUSH2 0x2FE JUMPI DUP1 PUSH4 0xEC8AC4D8 EQ PUSH2 0x327 JUMPI DUP1 PUSH4 0xECB70FB7 EQ PUSH2 0x343 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x36E JUMPI DUP1 PUSH4 0xFC0C546A EQ PUSH2 0x397 JUMPI PUSH2 0x103 JUMP JUMPDEST DUP1 PUSH4 0x8456CB59 EQ PUSH2 0x252 JUMPI DUP1 PUSH4 0x8AC2C680 EQ PUSH2 0x27D JUMPI DUP1 PUSH4 0x8D4E4083 EQ PUSH2 0x2A8 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x2D3 JUMPI PUSH2 0x103 JUMP JUMPDEST DUP1 PUSH4 0x4042B66F GT PUSH2 0xD1 JUMPI DUP1 PUSH4 0x4042B66F EQ PUSH2 0x1BA JUMPI DUP1 PUSH4 0x4BB278F3 EQ PUSH2 0x1E5 JUMPI DUP1 PUSH4 0x521EB273 EQ PUSH2 0x1FC JUMPI DUP1 PUSH4 0x5C975ABB EQ PUSH2 0x227 JUMPI PUSH2 0x103 JUMP JUMPDEST DUP1 PUSH4 0x2C4E722E EQ PUSH2 0x10E JUMPI DUP1 PUSH4 0x355274EA EQ PUSH2 0x139 JUMPI DUP1 PUSH4 0x36F7AB5E EQ PUSH2 0x164 JUMPI DUP1 PUSH4 0x3F4BA83A EQ PUSH2 0x18F JUMPI PUSH2 0x103 JUMP JUMPDEST JUMPDEST PUSH2 0x10C CALLER PUSH2 0x3C2 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x11A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x123 PUSH2 0x584 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x130 SWAP2 SWAP1 PUSH2 0xF3A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x145 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x14E PUSH2 0x58A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x15B SWAP2 SWAP1 PUSH2 0xF3A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x170 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x179 PUSH2 0x590 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x186 SWAP2 SWAP1 PUSH2 0xF18 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x19B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x1A4 PUSH2 0x61E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1B1 SWAP2 SWAP1 PUSH2 0xEE2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1C6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x1CF PUSH2 0x6DF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1DC SWAP2 SWAP1 PUSH2 0xF3A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1F1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x1FA PUSH2 0x6E5 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x208 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x211 PUSH2 0x854 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x21E SWAP2 SWAP1 PUSH2 0xE9E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x233 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x23C PUSH2 0x87A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x249 SWAP2 SWAP1 PUSH2 0xEE2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x25E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x267 PUSH2 0x88D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x274 SWAP2 SWAP1 PUSH2 0xEE2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x289 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x292 PUSH2 0x950 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x29F SWAP2 SWAP1 PUSH2 0xF3A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2B4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2BD PUSH2 0x956 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2CA SWAP2 SWAP1 PUSH2 0xEE2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2DF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2E8 PUSH2 0x969 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2F5 SWAP2 SWAP1 PUSH2 0xE9E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x30A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x325 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x320 SWAP2 SWAP1 PUSH2 0xDE0 JUMP JUMPDEST PUSH2 0x98D JUMP JUMPDEST STOP JUMPDEST PUSH2 0x341 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x33C SWAP2 SWAP1 PUSH2 0xD86 JUMP JUMPDEST PUSH2 0x3C2 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x34F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x358 PUSH2 0x9FF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x365 SWAP2 SWAP1 PUSH2 0xEE2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x37A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x395 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x390 SWAP2 SWAP1 PUSH2 0xD86 JUMP JUMPDEST PUSH2 0xA27 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3A3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x3AC PUSH2 0xAF7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3B9 SWAP2 SWAP1 PUSH2 0xEFD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 PUSH1 0x14 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x3DC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x416 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x41E PUSH2 0xB1D JUMP JUMPDEST PUSH2 0x427 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 CALLVALUE SWAP1 POP PUSH2 0x441 DUP2 PUSH1 0x3 SLOAD PUSH2 0xB71 SWAP1 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST PUSH1 0x3 DUP2 SWAP1 SSTORE POP PUSH1 0x0 PUSH2 0x45E PUSH1 0x6 SLOAD DUP4 PUSH2 0xB9D SWAP1 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x40C10F19 DUP5 DUP4 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x4BD SWAP3 SWAP2 SWAP1 PUSH2 0xEB9 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x4D7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x4EB JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x50F SWAP2 SWAP1 PUSH2 0xDB3 JUMP JUMPDEST POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x623B3804FA71D67900D064613DA8F94B9617215EE90799290593E1745087AD18 DUP5 DUP5 PUSH1 0x40 MLOAD PUSH2 0x56F SWAP3 SWAP2 SWAP1 PUSH2 0xF55 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0x57F PUSH2 0xBDE JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x6 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x4 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x8 DUP1 SLOAD PUSH2 0x59D SWAP1 PUSH2 0x1191 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 0x5C9 SWAP1 PUSH2 0x1191 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x616 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x5EB JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x616 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 0x5F9 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x679 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x14 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH2 0x692 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x14 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH32 0x7805862F689E2F13DF9F062FF482AD3AD112ACA9E0847911ED832E158C525B33 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH1 0x1 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x3 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x73D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x7 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x757 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x75F PUSH2 0x9FF JUMP JUMPDEST PUSH2 0x768 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x7D64BCB4 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x7D2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x7E6 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x80A SWAP2 SWAP1 PUSH2 0xDB3 JUMP JUMPDEST POP PUSH32 0x6823B073D48D6E3A7D385EEB601452D680E74BB46AFE3255A7D778F3A9B17681 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH1 0x1 PUSH1 0x7 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP JUMP JUMPDEST PUSH1 0x2 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x14 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x8E8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x14 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x902 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x0 PUSH1 0x14 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH32 0x6985A02210A168E66602D3235CB6DB0E70F92B3BA4D376A33C0F3D9434BFF625 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH1 0x1 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x5 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x7 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x9E5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH1 0x8 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x9FB SWAP3 SWAP2 SWAP1 PUSH2 0xC49 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x4 SLOAD PUSH2 0xA1C PUSH1 0x6 SLOAD PUSH1 0x3 SLOAD PUSH2 0xB9D SWAP1 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST LT ISZERO SWAP1 POP DUP1 SWAP2 POP POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xA7F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xAF4 JUMPI DUP1 PUSH1 0x0 DUP1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP JUMPDEST POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0xB35 CALLVALUE PUSH1 0x3 SLOAD PUSH2 0xB71 SWAP1 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH1 0x5 SLOAD CALLVALUE LT ISZERO SWAP1 POP PUSH1 0x0 PUSH1 0x4 SLOAD PUSH2 0xB5B PUSH1 0x6 SLOAD DUP6 PUSH2 0xB9D SWAP1 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST GT ISZERO SWAP1 POP DUP2 DUP1 ISZERO PUSH2 0xB69 JUMPI POP DUP1 JUMPDEST SWAP4 POP POP POP POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 DUP5 PUSH2 0xB80 SWAP2 SWAP1 PUSH2 0xFF0 JUMP JUMPDEST SWAP1 POP DUP4 DUP2 LT ISZERO PUSH2 0xB93 JUMPI PUSH2 0xB92 PUSH2 0x11F4 JUMP JUMPDEST JUMPDEST DUP1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 DUP5 PUSH2 0xBAC SWAP2 SWAP1 PUSH2 0x1077 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP5 EQ DUP1 PUSH2 0xBC7 JUMPI POP DUP3 DUP5 DUP3 PUSH2 0xBC5 SWAP2 SWAP1 PUSH2 0x1046 JUMP JUMPDEST EQ JUMPDEST PUSH2 0xBD4 JUMPI PUSH2 0xBD3 PUSH2 0x11F4 JUMP JUMPDEST JUMPDEST DUP1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x2 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x8FC CALLVALUE SWAP1 DUP2 ISZERO MUL SWAP1 PUSH1 0x40 MLOAD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP9 DUP9 CALL SWAP4 POP POP POP POP ISZERO DUP1 ISZERO PUSH2 0xC46 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH2 0xC55 SWAP1 PUSH2 0x1191 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0xC77 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0xCBE JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0xC90 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0xCBE JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0xCBE JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0xCBD JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0xCA2 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0xCCB SWAP2 SWAP1 PUSH2 0xCCF JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0xCE8 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0xCD0 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0xCFF PUSH2 0xCFA DUP5 PUSH2 0xFA3 JUMP JUMPDEST PUSH2 0xF7E JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0xD1B JUMPI PUSH2 0xD1A PUSH2 0x12E4 JUMP JUMPDEST JUMPDEST PUSH2 0xD26 DUP5 DUP3 DUP6 PUSH2 0x114F JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xD3D DUP2 PUSH2 0x1304 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0xD52 DUP2 PUSH2 0x131B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0xD6D JUMPI PUSH2 0xD6C PUSH2 0x12DF JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0xD7D DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0xCEC JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xD9C JUMPI PUSH2 0xD9B PUSH2 0x12EE JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xDAA DUP5 DUP3 DUP6 ADD PUSH2 0xD2E JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xDC9 JUMPI PUSH2 0xDC8 PUSH2 0x12EE JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xDD7 DUP5 DUP3 DUP6 ADD PUSH2 0xD43 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xDF6 JUMPI PUSH2 0xDF5 PUSH2 0x12EE JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP3 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xE14 JUMPI PUSH2 0xE13 PUSH2 0x12E9 JUMP JUMPDEST JUMPDEST PUSH2 0xE20 DUP5 DUP3 DUP6 ADD PUSH2 0xD58 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xE32 DUP2 PUSH2 0x10D1 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0xE41 DUP2 PUSH2 0x10E3 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0xE50 DUP2 PUSH2 0x1119 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xE61 DUP3 PUSH2 0xFD4 JUMP JUMPDEST PUSH2 0xE6B DUP2 DUP6 PUSH2 0xFDF JUMP JUMPDEST SWAP4 POP PUSH2 0xE7B DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x115E JUMP JUMPDEST PUSH2 0xE84 DUP2 PUSH2 0x12F3 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xE98 DUP2 PUSH2 0x110F JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xEB3 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xE29 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0xECE PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0xE29 JUMP JUMPDEST PUSH2 0xEDB PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0xE8F JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xEF7 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xE38 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xF12 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xE47 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xF32 DUP2 DUP5 PUSH2 0xE56 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xF4F PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xE8F JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0xF6A PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0xE8F JUMP JUMPDEST PUSH2 0xF77 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0xE8F JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xF88 PUSH2 0xF99 JUMP JUMPDEST SWAP1 POP PUSH2 0xF94 DUP3 DUP3 PUSH2 0x11C3 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0xFBE JUMPI PUSH2 0xFBD PUSH2 0x12B0 JUMP JUMPDEST JUMPDEST PUSH2 0xFC7 DUP3 PUSH2 0x12F3 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xFFB DUP3 PUSH2 0x110F JUMP JUMPDEST SWAP2 POP PUSH2 0x1006 DUP4 PUSH2 0x110F JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x103B JUMPI PUSH2 0x103A PUSH2 0x1223 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1051 DUP3 PUSH2 0x110F JUMP JUMPDEST SWAP2 POP PUSH2 0x105C DUP4 PUSH2 0x110F JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x106C JUMPI PUSH2 0x106B PUSH2 0x1252 JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1082 DUP3 PUSH2 0x110F JUMP JUMPDEST SWAP2 POP PUSH2 0x108D DUP4 PUSH2 0x110F JUMP JUMPDEST SWAP3 POP DUP2 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0x10C6 JUMPI PUSH2 0x10C5 PUSH2 0x1223 JUMP JUMPDEST JUMPDEST DUP3 DUP3 MUL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x10DC DUP3 PUSH2 0x10EF JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1124 DUP3 PUSH2 0x112B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1136 DUP3 PUSH2 0x113D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1148 DUP3 PUSH2 0x10EF JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x117C JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x1161 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x118B JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x11A9 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x11BD JUMPI PUSH2 0x11BC PUSH2 0x1281 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x11CC DUP3 PUSH2 0x12F3 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x11EB JUMPI PUSH2 0x11EA PUSH2 0x12B0 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x1 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x130D DUP2 PUSH2 0x10D1 JUMP JUMPDEST DUP2 EQ PUSH2 0x1318 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x1324 DUP2 PUSH2 0x10E3 JUMP JUMPDEST DUP2 EQ PUSH2 0x132F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH11 0x69CB5847058873A856B7C4 0xE3 DELEGATECALL PUSH21 0x1096A71FC197C5FA1E9EBFD2D17B0ECE4464736F6C PUSH4 0x43000807 STOP CALLER ",
"sourceMap": "333:3350:3:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2128:21;2138:10;2128:9;:21::i;:::-;333:3350;692:19;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;636:18;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;744:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;840:124:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;563:24:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3222:169;;;;;;;;;;;;;:::i;:::-;;501:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;243:26:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;636:122;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;659:28:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;716:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;245:20:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3396:106:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2260:457;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3552:122;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;746:130:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;427:30:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2260:457;396:6:2;;;;;;;;;;;395:7;387:16;;;;;;2366:3:3::1;2343:27;;:11;:27;;;;2335:36;;;::::0;::::1;;2385:15;:13;:15::i;:::-;2377:24;;;::::0;::::1;;2409:17;2429:9;2409:29;;2480:24;2494:9;2480;;:13;;:24;;;;:::i;:::-;2468:9;:36;;;;2550:14;2567:19;2581:4;;2567:9;:13;;:19;;;;:::i;:::-;2550:36;;2593:5;;;;;;;;;;;:10;;;2604:11;2617:6;2593:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;2661:11;2635:57;;2649:10;2635:57;;;2674:9;2685:6;2635:57;;;;;;;:::i;:::-;;;;;;;;2698:14;:12;:14::i;:::-;2329:388;;2260:457:::0;:::o;692:19::-;;;;:::o;636:18::-;;;;:::o;744:32::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;840:124:2:-;896:4;566:5:1;;;;;;;;;;;552:19;;:10;:19;;;544:28;;;;;;538:6:2::1;;;;;;;;;;;530:15;;;::::0;::::1;;917:5:::2;908:6:::0;::::2;:14;;;;;;;;;;;;;;;;;;933:9;;;;;;;;;;955:4;948:11;;840:124:::0;:::o;563:24:3:-;;;;:::o;3222:169::-;566:5:1;;;;;;;;;;552:19;;:10;:19;;;544:28;;;;;;3274:11:3::1;;;;;;;;;;;3273:12;3265:21;;;::::0;::::1;;3300:10;:8;:10::i;:::-;3292:19;;;::::0;::::1;;3318:5;;;;;;;;;;;:19;;;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;3350:11;;;;;;;;;;3382:4;3368:11;;:18;;;;;;;;;;;;;;;;;;3222:169::o:0;501:21::-;;;;;;;;;;;;;:::o;243:26:2:-;;;;;;;;;;;;;:::o;636:122::-;693:4;566:5:1;;;;;;;;;;;552:19;;:10;:19;;;544:28;;;;;;396:6:2::1;;;;;;;;;;;395:7;387:16;;;::::0;::::1;;714:4:::2;705:6;;:13;;;;;;;;;;;;;;;;;;729:7;;;;;;;;;;749:4;742:11;;636:122:::0;:::o;659:28:3:-;;;;:::o;716:23::-;;;;;;;;;;;;;:::o;245:20:1:-;;;;;;;;;;;;:::o;3396:106:3:-;566:5:1;;;;;;;;;;552:19;;:10;:19;;;544:28;;;;;;3493:4:3::1;3472:18;:25;;;;;;;;;;;;:::i;:::-;;3396:106:::0;:::o;3552:122::-;3588:4;3600:15;3642:3;;3619:19;3633:4;;3619:9;;:13;;:19;;;;:::i;:::-;:26;;3600:46;;3659:10;3652:17;;;3552:122;:::o;746:130:1:-;566:5;;;;;;;;;;552:19;;:10;:19;;;544:28;;;;;;837:1:::1;817:22;;:8;:22;;;813:59;;857:8;849:5;::::0;:16:::1;;;;;;;;;;;;;;;;;;813:59;746:130:::0;:::o;427:30:3:-;;;;;;;;;;;;;:::o;2901:251::-;2944:4;2957:17;2977:24;2991:9;2977;;:13;;:24;;;;:::i;:::-;2957:44;;3007:19;3042:13;;3029:9;:26;;3007:48;;3061:14;3101:3;;3078:19;3092:4;;3078:9;:13;;:19;;;;:::i;:::-;:26;;3061:43;;3119:14;:27;;;;;3137:9;3119:27;3111:36;;;;;2901:251;:::o;663:125:5:-;717:7;732:9;748:1;744;:5;;;;:::i;:::-;732:17;;767:1;762;:6;;755:14;;;;:::i;:::-;;782:1;775:8;;;663:125;;;;:::o;145:139::-;199:7;214:9;230:1;226;:5;;;;:::i;:::-;214:17;;249:1;244;:6;:20;;;;263:1;258;254;:5;;;;:::i;:::-;:10;244:20;237:28;;;;:::i;:::-;;278:1;271:8;;;145:139;;;;:::o;2767:79:3:-;2814:6;;;;;;;;;;;2806:24;;:35;2831:9;2806:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2767:79::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:412:6:-;85:5;110:66;126:49;168:6;126:49;:::i;:::-;110:66;:::i;:::-;101:75;;199:6;192:5;185:21;237:4;230:5;226:16;275:3;266:6;261:3;257:16;254:25;251:112;;;282:79;;:::i;:::-;251:112;372:41;406:6;401:3;396;372:41;:::i;:::-;91:328;7:412;;;;;:::o;425:139::-;471:5;509:6;496:20;487:29;;525:33;552:5;525:33;:::i;:::-;425:139;;;;:::o;570:137::-;624:5;655:6;649:13;640:22;;671:30;695:5;671:30;:::i;:::-;570:137;;;;:::o;727:340::-;783:5;832:3;825:4;817:6;813:17;809:27;799:122;;840:79;;:::i;:::-;799:122;957:6;944:20;982:79;1057:3;1049:6;1042:4;1034:6;1030:17;982:79;:::i;:::-;973:88;;789:278;727:340;;;;:::o;1073:329::-;1132:6;1181:2;1169:9;1160:7;1156:23;1152:32;1149:119;;;1187:79;;:::i;:::-;1149:119;1307:1;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1278:117;1073:329;;;;:::o;1408:345::-;1475:6;1524:2;1512:9;1503:7;1499:23;1495:32;1492:119;;;1530:79;;:::i;:::-;1492:119;1650:1;1675:61;1728:7;1719:6;1708:9;1704:22;1675:61;:::i;:::-;1665:71;;1621:125;1408:345;;;;:::o;1759:509::-;1828:6;1877:2;1865:9;1856:7;1852:23;1848:32;1845:119;;;1883:79;;:::i;:::-;1845:119;2031:1;2020:9;2016:17;2003:31;2061:18;2053:6;2050:30;2047:117;;;2083:79;;:::i;:::-;2047:117;2188:63;2243:7;2234:6;2223:9;2219:22;2188:63;:::i;:::-;2178:73;;1974:287;1759:509;;;;:::o;2274:118::-;2361:24;2379:5;2361:24;:::i;:::-;2356:3;2349:37;2274:118;;:::o;2398:109::-;2479:21;2494:5;2479:21;:::i;:::-;2474:3;2467:34;2398:109;;:::o;2513:197::-;2633:70;2697:5;2633:70;:::i;:::-;2628:3;2621:83;2513:197;;:::o;2716:364::-;2804:3;2832:39;2865:5;2832:39;:::i;:::-;2887:71;2951:6;2946:3;2887:71;:::i;:::-;2880:78;;2967:52;3012:6;3007:3;3000:4;2993:5;2989:16;2967:52;:::i;:::-;3044:29;3066:6;3044:29;:::i;:::-;3039:3;3035:39;3028:46;;2808:272;2716:364;;;;:::o;3086:118::-;3173:24;3191:5;3173:24;:::i;:::-;3168:3;3161:37;3086:118;;:::o;3210:222::-;3303:4;3341:2;3330:9;3326:18;3318:26;;3354:71;3422:1;3411:9;3407:17;3398:6;3354:71;:::i;:::-;3210:222;;;;:::o;3438:332::-;3559:4;3597:2;3586:9;3582:18;3574:26;;3610:71;3678:1;3667:9;3663:17;3654:6;3610:71;:::i;:::-;3691:72;3759:2;3748:9;3744:18;3735:6;3691:72;:::i;:::-;3438:332;;;;;:::o;3776:210::-;3863:4;3901:2;3890:9;3886:18;3878:26;;3914:65;3976:1;3965:9;3961:17;3952:6;3914:65;:::i;:::-;3776:210;;;;:::o;3992:288::-;4118:4;4156:2;4145:9;4141:18;4133:26;;4169:104;4270:1;4259:9;4255:17;4246:6;4169:104;:::i;:::-;3992:288;;;;:::o;4286:313::-;4399:4;4437:2;4426:9;4422:18;4414:26;;4486:9;4480:4;4476:20;4472:1;4461:9;4457:17;4450:47;4514:78;4587:4;4578:6;4514:78;:::i;:::-;4506:86;;4286:313;;;;:::o;4605:222::-;4698:4;4736:2;4725:9;4721:18;4713:26;;4749:71;4817:1;4806:9;4802:17;4793:6;4749:71;:::i;:::-;4605:222;;;;:::o;4833:332::-;4954:4;4992:2;4981:9;4977:18;4969:26;;5005:71;5073:1;5062:9;5058:17;5049:6;5005:71;:::i;:::-;5086:72;5154:2;5143:9;5139:18;5130:6;5086:72;:::i;:::-;4833:332;;;;;:::o;5171:129::-;5205:6;5232:20;;:::i;:::-;5222:30;;5261:33;5289:4;5281:6;5261:33;:::i;:::-;5171:129;;;:::o;5306:75::-;5339:6;5372:2;5366:9;5356:19;;5306:75;:::o;5387:308::-;5449:4;5539:18;5531:6;5528:30;5525:56;;;5561:18;;:::i;:::-;5525:56;5599:29;5621:6;5599:29;:::i;:::-;5591:37;;5683:4;5677;5673:15;5665:23;;5387:308;;;:::o;5701:99::-;5753:6;5787:5;5781:12;5771:22;;5701:99;;;:::o;5806:169::-;5890:11;5924:6;5919:3;5912:19;5964:4;5959:3;5955:14;5940:29;;5806:169;;;;:::o;5981:305::-;6021:3;6040:20;6058:1;6040:20;:::i;:::-;6035:25;;6074:20;6092:1;6074:20;:::i;:::-;6069:25;;6228:1;6160:66;6156:74;6153:1;6150:81;6147:107;;;6234:18;;:::i;:::-;6147:107;6278:1;6275;6271:9;6264:16;;5981:305;;;;:::o;6292:185::-;6332:1;6349:20;6367:1;6349:20;:::i;:::-;6344:25;;6383:20;6401:1;6383:20;:::i;:::-;6378:25;;6422:1;6412:35;;6427:18;;:::i;:::-;6412:35;6469:1;6466;6462:9;6457:14;;6292:185;;;;:::o;6483:348::-;6523:7;6546:20;6564:1;6546:20;:::i;:::-;6541:25;;6580:20;6598:1;6580:20;:::i;:::-;6575:25;;6768:1;6700:66;6696:74;6693:1;6690:81;6685:1;6678:9;6671:17;6667:105;6664:131;;;6775:18;;:::i;:::-;6664:131;6823:1;6820;6816:9;6805:20;;6483:348;;;;:::o;6837:96::-;6874:7;6903:24;6921:5;6903:24;:::i;:::-;6892:35;;6837:96;;;:::o;6939:90::-;6973:7;7016:5;7009:13;7002:21;6991:32;;6939:90;;;:::o;7035:126::-;7072:7;7112:42;7105:5;7101:54;7090:65;;7035:126;;;:::o;7167:77::-;7204:7;7233:5;7222:16;;7167:77;;;:::o;7250:167::-;7333:9;7366:45;7405:5;7366:45;:::i;:::-;7353:58;;7250:167;;;:::o;7423:134::-;7481:9;7514:37;7545:5;7514:37;:::i;:::-;7501:50;;7423:134;;;:::o;7563:113::-;7613:9;7646:24;7664:5;7646:24;:::i;:::-;7633:37;;7563:113;;;:::o;7682:154::-;7766:6;7761:3;7756;7743:30;7828:1;7819:6;7814:3;7810:16;7803:27;7682:154;;;:::o;7842:307::-;7910:1;7920:113;7934:6;7931:1;7928:13;7920:113;;;8019:1;8014:3;8010:11;8004:18;8000:1;7995:3;7991:11;7984:39;7956:2;7953:1;7949:10;7944:15;;7920:113;;;8051:6;8048:1;8045:13;8042:101;;;8131:1;8122:6;8117:3;8113:16;8106:27;8042:101;7891:258;7842:307;;;:::o;8155:320::-;8199:6;8236:1;8230:4;8226:12;8216:22;;8283:1;8277:4;8273:12;8304:18;8294:81;;8360:4;8352:6;8348:17;8338:27;;8294:81;8422:2;8414:6;8411:14;8391:18;8388:38;8385:84;;;8441:18;;:::i;:::-;8385:84;8206:269;8155:320;;;:::o;8481:281::-;8564:27;8586:4;8564:27;:::i;:::-;8556:6;8552:40;8694:6;8682:10;8679:22;8658:18;8646:10;8643:34;8640:62;8637:88;;;8705:18;;:::i;:::-;8637:88;8745:10;8741:2;8734:22;8524:238;8481:281;;:::o;8768:180::-;8816:77;8813:1;8806:88;8913:4;8910:1;8903:15;8937:4;8934:1;8927:15;8954:180;9002:77;8999:1;8992:88;9099:4;9096:1;9089:15;9123:4;9120:1;9113:15;9140:180;9188:77;9185:1;9178:88;9285:4;9282:1;9275:15;9309:4;9306:1;9299:15;9326:180;9374:77;9371:1;9364:88;9471:4;9468:1;9461:15;9495:4;9492:1;9485:15;9512:180;9560:77;9557:1;9550:88;9657:4;9654:1;9647:15;9681:4;9678:1;9671:15;9698:117;9807:1;9804;9797:12;9821:117;9930:1;9927;9920:12;9944:117;10053:1;10050;10043:12;10067:117;10176:1;10173;10166:12;10190:102;10231:6;10282:2;10278:7;10273:2;10266:5;10262:14;10258:28;10248:38;;10190:102;;;:::o;10298:122::-;10371:24;10389:5;10371:24;:::i;:::-;10364:5;10361:35;10351:63;;10410:1;10407;10400:12;10351:63;10298:122;:::o;10426:116::-;10496:21;10511:5;10496:21;:::i;:::-;10489:5;10486:32;10476:60;;10532:1;10529;10522:12;10476:60;10426:116;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "993600",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"": "infinite",
"buyTokens(address)": "infinite",
"cap()": "2475",
"contactInformation()": "infinite",
"finalize()": "infinite",
"hasEnded()": "infinite",
"isFinalized()": "2538",
"minInvestment()": "2474",
"owner()": "2600",
"pause()": "29836",
"paused()": "2610",
"rate()": "2453",
"setContactInformation(string)": "infinite",
"token()": "2710",
"transferOwnership(address)": "27012",
"unpause()": "29900",
"wallet()": "2581",
"weiRaised()": "2452"
},
"internal": {
"createTokenContract()": "infinite",
"forwardFunds()": "infinite",
"validPurchase()": "infinite"
}
},
"methodIdentifiers": {
"buyTokens(address)": "ec8ac4d8",
"cap()": "355274ea",
"contactInformation()": "36f7ab5e",
"finalize()": "4bb278f3",
"hasEnded()": "ecb70fb7",
"isFinalized()": "8d4e4083",
"minInvestment()": "8ac2c680",
"owner()": "8da5cb5b",
"pause()": "8456cb59",
"paused()": "5c975abb",
"rate()": "2c4e722e",
"setContactInformation(string)": "b967a52e",
"token()": "fc0c546a",
"transferOwnership(address)": "f2fde38b",
"unpause()": "3f4ba83a",
"wallet()": "521eb273",
"weiRaised()": "4042b66f"
}
},
"abi": [
{
"inputs": [
{
"internalType": "address",
"name": "_wallet",
"type": "address"
},
{
"internalType": "uint256",
"name": "_minInvestment",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "_cap",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "_rate",
"type": "uint256"
}
],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [],
"name": "Finalized",
"type": "event"
},
{
"anonymous": false,
"inputs": [],
"name": "Pause",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "purchaser",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "beneficiary",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
},
{
"indexed": false,
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "TokenPurchase",
"type": "event"
},
{
"anonymous": false,
"inputs": [],
"name": "Unpause",
"type": "event"
},
{
"stateMutability": "payable",
"type": "fallback"
},
{
"inputs": [
{
"internalType": "address",
"name": "beneficiary",
"type": "address"
}
],
"name": "buyTokens",
"outputs": [],
"stateMutability": "payable",
"type": "function"
},
{
"inputs": [],
"name": "cap",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "contactInformation",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "finalize",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "hasEnded",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "isFinalized",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "minInvestment",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "pause",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "paused",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "rate",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "string",
"name": "info",
"type": "string"
}
],
"name": "setContactInformation",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "token",
"outputs": [
{
"internalType": "contract ProofPresaleToken",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "unpause",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "wallet",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "weiRaised",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.7+commit.e28d00a7"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [
{
"internalType": "address",
"name": "_wallet",
"type": "address"
},
{
"internalType": "uint256",
"name": "_minInvestment",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "_cap",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "_rate",
"type": "uint256"
}
],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [],
"name": "Finalized",
"type": "event"
},
{
"anonymous": false,
"inputs": [],
"name": "Pause",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "purchaser",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "beneficiary",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
},
{
"indexed": false,
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "TokenPurchase",
"type": "event"
},
{
"anonymous": false,
"inputs": [],
"name": "Unpause",
"type": "event"
},
{
"stateMutability": "payable",
"type": "fallback"
},
{
"inputs": [
{
"internalType": "address",
"name": "beneficiary",
"type": "address"
}
],
"name": "buyTokens",
"outputs": [],
"stateMutability": "payable",
"type": "function"
},
{
"inputs": [],
"name": "cap",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "contactInformation",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "finalize",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "hasEnded",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "isFinalized",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "minInvestment",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "pause",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "paused",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "rate",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "string",
"name": "info",
"type": "string"
}
],
"name": "setContactInformation",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "token",
"outputs": [
{
"internalType": "contract ProofPresaleToken",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "unpause",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "wallet",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "weiRaised",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
}
],
"devdoc": {
"events": {
"TokenPurchase(address,address,uint256,uint256)": {
"params": {
"amount": "amount of tokens purchased",
"beneficiary": "who got the tokens",
"purchaser": "who paid for the tokens",
"value": "weis paid for purchase"
}
}
},
"kind": "dev",
"methods": {
"buyTokens(address)": {
"params": {
"beneficiary": "will recieve the tokens."
}
},
"constructor": {
"params": {
"_cap": "above which the crowdsale is closed",
"_minInvestment": "is the minimum amount of ether that can be sent to the contract",
"_rate": "is the amounts of tokens given for 1 ether",
"_wallet": "who receives invested ether"
}
},
"pause()": {
"details": "called by the owner to pause, triggers stopped state"
},
"transferOwnership(address)": {
"details": "Allows the current owner to transfer control of the contract to a newOwner.",
"params": {
"newOwner": "The address to transfer ownership to."
}
},
"unpause()": {
"details": "called by the owner to unpause, returns to normal state"
}
},
"title": "ProofPresale ProofPresale allows investors to make token purchases and assigns them tokens based on a token per ETH rate. Funds collected are forwarded to a wallet as they arrive.",
"version": 1
},
"userdoc": {
"events": {
"Finalized()": {
"notice": "event for signaling finished crowdsale"
},
"TokenPurchase(address,address,uint256,uint256)": {
"notice": "event for token purchase logging"
}
},
"kind": "user",
"methods": {
"buyTokens(address)": {
"notice": "Low level token purchse function"
},
"constructor": {
"notice": "crowdsale constructor"
}
},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/ProofPresale.sol": "ProofPresale"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/ERC20.sol": {
"keccak256": "0x4a84ec2805390f75f0233dd6346c2056c4d76fdbf5e51a0412fb4a762a796da7",
"urls": [
"bzz-raw://818c9f10571e37dbd300e692d5a9a4dc983f3a9fc83892044afe44f2606dab1a",
"dweb:/ipfs/QmZ5bfGr3ZXc1BDKk7rzw7AH6Hen5KDAhxu5iksKVRRS8J"
]
},
"contracts/Ownable.sol": {
"keccak256": "0x9542f4fff403d8690334848253868844cce8156e51a532f109d241a773dd57ad",
"urls": [
"bzz-raw://917b8511920b10d3df93f041862dfe041fe4206fef7733fc01b50efcf84ce065",
"dweb:/ipfs/QmdMxGdQycQ5sasznckxBPXDYaQpMDe5t8rj1QX9oQJoYy"
]
},
"contracts/Pausable.sol": {
"keccak256": "0xc290403dfa882b1af670d66aadf693d7aa6b8058972e685370621c2a014fab06",
"urls": [
"bzz-raw://2dc54a7cd3b34eae1f6a1f2b713d6dce85b12cbbf37560d9a219b686ff96999c",
"dweb:/ipfs/QmbxvGU6piVzDKuL5ZAdowmihuF7DidchtDd6hkEdEZTL7"
]
},
"contracts/ProofPresale.sol": {
"keccak256": "0xa6f5a0ae109e9fd3d9259fb216a6f3fba9a1f3e2b1ab91d5ce3f916c0ac9c7a0",
"urls": [
"bzz-raw://fbf4f63c2a8b7b1973289bbb986d21f322d79604c298305554fa872145882c9a",
"dweb:/ipfs/QmYU1noomUsJbJ8FP7K8a3cBg1BbR2RmRjMJLkEPMF2fR9"
]
},
"contracts/ProofPresaleToken.sol": {
"keccak256": "0x236bfa2f2f40d884c469c312cb3580a74a8bee847897c4326a658409bee68619",
"urls": [
"bzz-raw://0b4184e465ba902ceb24c0da9c1de21373e013e4e0947b6a060643b931352dc0",
"dweb:/ipfs/QmbCX7o17kguMMaUm5WpZjXWeqa2KTL5JbwaVvYF8UNxtD"
]
},
"contracts/SafeMath.sol": {
"keccak256": "0xe23ffdc3a78d058acd5da65b2e521f860b8502320c63d29fd302aaa468a1a14d",
"urls": [
"bzz-raw://db6abc2eab5f0e33649fe15d0b5cdfe169f4fe6a549b9dc223c12b2478cf8f71",
"dweb:/ipfs/QmSxY953kzV9sWFo8hZAwW3uaAEbTN23W8KYcZKkAN11rg"
]
}
},
"version": 1
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {
"@_162": {
"entryPoint": null,
"id": 162,
"parameterSlots": 0,
"returnSlots": 0
},
"@_81": {
"entryPoint": null,
"id": 81,
"parameterSlots": 0,
"returnSlots": 0
}
},
"generatedSources": [],
"linkReferences": {},
"object": "60806040526000600460006101000a81548160ff02191690831515021790555034801561002b57600080fd5b5033600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506111ef8061007c6000396000f3fe6080604052600436106100e15760003560e01c806370a082311161007f57806395d89b411161005957806395d89b41146102dd578063a9059cbb14610308578063dd62ed3e14610345578063f2fde38b14610382576100e2565b806370a082311461024a5780637d64bcb4146102875780638da5cb5b146102b2576100e2565b806318160ddd116100bb57806318160ddd1461017a57806323b872dd146101a5578063313ce567146101e257806340c10f191461020d576100e2565b806305d2035b146100e757806306fdde0314610112578063095ea7b31461013d576100e2565b5b600080fd5b3480156100f357600080fd5b506100fc6103ab565b6040516101099190610f76565b60405180910390f35b34801561011e57600080fd5b506101276103be565b6040516101349190610f91565b60405180910390f35b34801561014957600080fd5b50610164600480360381019061015f9190610ea6565b6103f7565b6040516101719190610f76565b60405180910390f35b34801561018657600080fd5b5061018f6104e9565b60405161019c9190610fb3565b60405180910390f35b3480156101b157600080fd5b506101cc60048036038101906101c79190610e53565b6104ef565b6040516101d99190610f76565b60405180910390f35b3480156101ee57600080fd5b506101f761079f565b6040516102049190610fce565b60405180910390f35b34801561021957600080fd5b50610234600480360381019061022f9190610ea6565b6107a4565b6040516102419190610f76565b60405180910390f35b34801561025657600080fd5b50610271600480360381019061026c9190610de6565b610922565b60405161027e9190610fb3565b60405180910390f35b34801561029357600080fd5b5061029c61096b565b6040516102a99190610f76565b60405180910390f35b3480156102be57600080fd5b506102c7610a15565b6040516102d49190610f5b565b60405180910390f35b3480156102e957600080fd5b506102f2610a3b565b6040516102ff9190610f91565b60405180910390f35b34801561031457600080fd5b5061032f600480360381019061032a9190610ea6565b610a74565b60405161033c9190610f76565b60405180910390f35b34801561035157600080fd5b5061036c60048036038101906103679190610e13565b610c0f565b6040516103799190610fb3565b60405180910390f35b34801561038e57600080fd5b506103a960048036038101906103a49190610de6565b610c96565b005b600460009054906101000a900460ff1681565b6040518060400160405280601381526020017f50726f6f662050726573616c6520546f6b656e0000000000000000000000000081525081565b600081600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516104d79190610fb3565b60405180910390a36001905092915050565b60005481565b600080600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506105c383600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d6990919063ffffffff16565b600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061065883600260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d9590919063ffffffff16565b600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506106ae8382610d9590919063ffffffff16565b600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161078b9190610fb3565b60405180910390a360019150509392505050565b601281565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461080057600080fd5b600460009054906101000a900460ff161561081a57600080fd5b61082f82600054610d6990919063ffffffff16565b60008190555061088782600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d6990919063ffffffff16565b600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff167f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885836040516109109190610fb3565b60405180910390a26001905092915050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146109c757600080fd5b6001600460006101000a81548160ff0219169083151502179055507fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0860405160405180910390a16001905090565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6040518060400160405280600381526020017f505054000000000000000000000000000000000000000000000000000000000081525081565b6000610ac882600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d9590919063ffffffff16565b600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610b5d82600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d6990919063ffffffff16565b600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610bfd9190610fb3565b60405180910390a36001905092915050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610cf057600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d665780600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b50565b6000808284610d789190611005565b905083811015610d8b57610d8a611117565b5b8091505092915050565b600082821115610da857610da7611117565b5b8183610db4919061105b565b905092915050565b600081359050610dcb8161118b565b92915050565b600081359050610de0816111a2565b92915050565b600060208284031215610dfc57610dfb611175565b5b6000610e0a84828501610dbc565b91505092915050565b60008060408385031215610e2a57610e29611175565b5b6000610e3885828601610dbc565b9250506020610e4985828601610dbc565b9150509250929050565b600080600060608486031215610e6c57610e6b611175565b5b6000610e7a86828701610dbc565b9350506020610e8b86828701610dbc565b9250506040610e9c86828701610dd1565b9150509250925092565b60008060408385031215610ebd57610ebc611175565b5b6000610ecb85828601610dbc565b9250506020610edc85828601610dd1565b9150509250929050565b610eef8161108f565b82525050565b610efe816110a1565b82525050565b6000610f0f82610fe9565b610f198185610ff4565b9350610f298185602086016110e4565b610f328161117a565b840191505092915050565b610f46816110cd565b82525050565b610f55816110d7565b82525050565b6000602082019050610f706000830184610ee6565b92915050565b6000602082019050610f8b6000830184610ef5565b92915050565b60006020820190508181036000830152610fab8184610f04565b905092915050565b6000602082019050610fc86000830184610f3d565b92915050565b6000602082019050610fe36000830184610f4c565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611010826110cd565b915061101b836110cd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156110505761104f611146565b5b828201905092915050565b6000611066826110cd565b9150611071836110cd565b92508282101561108457611083611146565b5b828203905092915050565b600061109a826110ad565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156111025780820151818401526020810190506110e7565b83811115611111576000848401525b50505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600080fd5b6000601f19601f8301169050919050565b6111948161108f565b811461119f57600080fd5b50565b6111ab816110cd565b81146111b657600080fd5b5056fea2646970667358221220763f96381b235141a74618fa66ff5b8a9bc14daa0a1a190264f76c5aa824e48264736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 PUSH1 0x4 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP CALLVALUE DUP1 ISZERO PUSH2 0x2B 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 PUSH2 0x11EF DUP1 PUSH2 0x7C PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0xE1 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x70A08231 GT PUSH2 0x7F JUMPI DUP1 PUSH4 0x95D89B41 GT PUSH2 0x59 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x2DD JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x308 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x345 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x382 JUMPI PUSH2 0xE2 JUMP JUMPDEST DUP1 PUSH4 0x70A08231 EQ PUSH2 0x24A JUMPI DUP1 PUSH4 0x7D64BCB4 EQ PUSH2 0x287 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x2B2 JUMPI PUSH2 0xE2 JUMP JUMPDEST DUP1 PUSH4 0x18160DDD GT PUSH2 0xBB JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x17A JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x1A5 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x1E2 JUMPI DUP1 PUSH4 0x40C10F19 EQ PUSH2 0x20D JUMPI PUSH2 0xE2 JUMP JUMPDEST DUP1 PUSH4 0x5D2035B EQ PUSH2 0xE7 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x112 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x13D JUMPI PUSH2 0xE2 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xF3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xFC PUSH2 0x3AB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x109 SWAP2 SWAP1 PUSH2 0xF76 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x11E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x127 PUSH2 0x3BE JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x134 SWAP2 SWAP1 PUSH2 0xF91 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x149 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x164 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x15F SWAP2 SWAP1 PUSH2 0xEA6 JUMP JUMPDEST PUSH2 0x3F7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x171 SWAP2 SWAP1 PUSH2 0xF76 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x186 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x18F PUSH2 0x4E9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x19C SWAP2 SWAP1 PUSH2 0xFB3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1B1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x1CC PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1C7 SWAP2 SWAP1 PUSH2 0xE53 JUMP JUMPDEST PUSH2 0x4EF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1D9 SWAP2 SWAP1 PUSH2 0xF76 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1EE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x1F7 PUSH2 0x79F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x204 SWAP2 SWAP1 PUSH2 0xFCE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x219 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x234 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x22F SWAP2 SWAP1 PUSH2 0xEA6 JUMP JUMPDEST PUSH2 0x7A4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x241 SWAP2 SWAP1 PUSH2 0xF76 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x256 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x271 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x26C SWAP2 SWAP1 PUSH2 0xDE6 JUMP JUMPDEST PUSH2 0x922 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x27E SWAP2 SWAP1 PUSH2 0xFB3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x293 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x29C PUSH2 0x96B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2A9 SWAP2 SWAP1 PUSH2 0xF76 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2BE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2C7 PUSH2 0xA15 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2D4 SWAP2 SWAP1 PUSH2 0xF5B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2E9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2F2 PUSH2 0xA3B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2FF SWAP2 SWAP1 PUSH2 0xF91 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x314 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x32F PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x32A SWAP2 SWAP1 PUSH2 0xEA6 JUMP JUMPDEST PUSH2 0xA74 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x33C SWAP2 SWAP1 PUSH2 0xF76 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x351 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x36C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x367 SWAP2 SWAP1 PUSH2 0xE13 JUMP JUMPDEST PUSH2 0xC0F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x379 SWAP2 SWAP1 PUSH2 0xFB3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x38E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x3A9 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x3A4 SWAP2 SWAP1 PUSH2 0xDE6 JUMP JUMPDEST PUSH2 0xC96 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x4 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x13 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x50726F6F662050726573616C6520546F6B656E00000000000000000000000000 DUP2 MSTORE POP DUP2 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x3 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 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP5 PUSH1 0x40 MLOAD PUSH2 0x4D7 SWAP2 SWAP1 PUSH2 0xFB3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x3 PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP PUSH2 0x5C3 DUP4 PUSH1 0x2 PUSH1 0x0 DUP8 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH2 0xD69 SWAP1 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST PUSH1 0x2 PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP PUSH2 0x658 DUP4 PUSH1 0x2 PUSH1 0x0 DUP9 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH2 0xD95 SWAP1 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST PUSH1 0x2 PUSH1 0x0 DUP8 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP PUSH2 0x6AE DUP4 DUP3 PUSH2 0xD95 SWAP1 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST PUSH1 0x3 PUSH1 0x0 DUP8 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP6 PUSH1 0x40 MLOAD PUSH2 0x78B SWAP2 SWAP1 PUSH2 0xFB3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH1 0x1 SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x12 DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x800 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x4 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x81A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x82F DUP3 PUSH1 0x0 SLOAD PUSH2 0xD69 SWAP1 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 SSTORE POP PUSH2 0x887 DUP3 PUSH1 0x2 PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH2 0xD69 SWAP1 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST PUSH1 0x2 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xF6798A560793A54C3BCFE86A93CDE1E73087D944C0EA20544137D4121396885 DUP4 PUSH1 0x40 MLOAD PUSH2 0x910 SWAP2 SWAP1 PUSH2 0xFB3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP 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 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x9C7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x4 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH32 0xAE5184FBA832CB2B1F702ACA6117B8D265EAF03AD33EB133F19DDE0F5920FA08 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH1 0x1 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x3 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x5050540000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH2 0xAC8 DUP3 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 SLOAD PUSH2 0xD95 SWAP1 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST 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 DUP2 SWAP1 SSTORE POP PUSH2 0xB5D DUP3 PUSH1 0x2 PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH2 0xD69 SWAP1 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST PUSH1 0x2 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0xBFD SWAP2 SWAP1 PUSH2 0xFB3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x3 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP3 SWAP2 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 0xCF0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xD66 JUMPI DUP1 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 JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 DUP5 PUSH2 0xD78 SWAP2 SWAP1 PUSH2 0x1005 JUMP JUMPDEST SWAP1 POP DUP4 DUP2 LT ISZERO PUSH2 0xD8B JUMPI PUSH2 0xD8A PUSH2 0x1117 JUMP JUMPDEST JUMPDEST DUP1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 GT ISZERO PUSH2 0xDA8 JUMPI PUSH2 0xDA7 PUSH2 0x1117 JUMP JUMPDEST JUMPDEST DUP2 DUP4 PUSH2 0xDB4 SWAP2 SWAP1 PUSH2 0x105B JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xDCB DUP2 PUSH2 0x118B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xDE0 DUP2 PUSH2 0x11A2 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xDFC JUMPI PUSH2 0xDFB PUSH2 0x1175 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xE0A DUP5 DUP3 DUP6 ADD PUSH2 0xDBC JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xE2A JUMPI PUSH2 0xE29 PUSH2 0x1175 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xE38 DUP6 DUP3 DUP7 ADD PUSH2 0xDBC JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xE49 DUP6 DUP3 DUP7 ADD PUSH2 0xDBC JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xE6C JUMPI PUSH2 0xE6B PUSH2 0x1175 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xE7A DUP7 DUP3 DUP8 ADD PUSH2 0xDBC JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0xE8B DUP7 DUP3 DUP8 ADD PUSH2 0xDBC JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0xE9C DUP7 DUP3 DUP8 ADD PUSH2 0xDD1 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xEBD JUMPI PUSH2 0xEBC PUSH2 0x1175 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xECB DUP6 DUP3 DUP7 ADD PUSH2 0xDBC JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xEDC DUP6 DUP3 DUP7 ADD PUSH2 0xDD1 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH2 0xEEF DUP2 PUSH2 0x108F JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0xEFE DUP2 PUSH2 0x10A1 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xF0F DUP3 PUSH2 0xFE9 JUMP JUMPDEST PUSH2 0xF19 DUP2 DUP6 PUSH2 0xFF4 JUMP JUMPDEST SWAP4 POP PUSH2 0xF29 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x10E4 JUMP JUMPDEST PUSH2 0xF32 DUP2 PUSH2 0x117A JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xF46 DUP2 PUSH2 0x10CD JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0xF55 DUP2 PUSH2 0x10D7 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xF70 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xEE6 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xF8B PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xEF5 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xFAB DUP2 DUP5 PUSH2 0xF04 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xFC8 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xF3D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xFE3 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xF4C JUMP JUMPDEST 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 PUSH2 0x1010 DUP3 PUSH2 0x10CD JUMP JUMPDEST SWAP2 POP PUSH2 0x101B DUP4 PUSH2 0x10CD JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x1050 JUMPI PUSH2 0x104F PUSH2 0x1146 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1066 DUP3 PUSH2 0x10CD JUMP JUMPDEST SWAP2 POP PUSH2 0x1071 DUP4 PUSH2 0x10CD JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x1084 JUMPI PUSH2 0x1083 PUSH2 0x1146 JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x109A DUP3 PUSH2 0x10AD JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x1102 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x10E7 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x1111 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x1 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1194 DUP2 PUSH2 0x108F JUMP JUMPDEST DUP2 EQ PUSH2 0x119F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x11AB DUP2 PUSH2 0x10CD JUMP JUMPDEST DUP2 EQ PUSH2 0x11B6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH23 0x3F96381B235141A74618FA66FF5B8A9BC14DAA0A1A1902 PUSH5 0xF76C5AA824 0xE4 DUP3 PUSH5 0x736F6C6343 STOP ADDMOD SMOD STOP CALLER ",
"sourceMap": "351:2359:2:-:0;;;695:5;665:35;;;;;;;;;;;;;;;;;;;;780:16;;;;;;;;;;421:10:1;413:5;;:18;;;;;;;;;;;;;;;;;;351:2359:2;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@_169": {
"entryPoint": null,
"id": 169,
"parameterSlots": 0,
"returnSlots": 0
},
"@add_499": {
"entryPoint": 3433,
"id": 499,
"parameterSlots": 2,
"returnSlots": 1
},
"@allowance_336": {
"entryPoint": 3087,
"id": 336,
"parameterSlots": 2,
"returnSlots": 1
},
"@approve_319": {
"entryPoint": 1015,
"id": 319,
"parameterSlots": 2,
"returnSlots": 1
},
"@balanceOf_182": {
"entryPoint": 2338,
"id": 182,
"parameterSlots": 1,
"returnSlots": 1
},
"@decimals_147": {
"entryPoint": 1951,
"id": 147,
"parameterSlots": 0,
"returnSlots": 0
},
"@finishMinting_403": {
"entryPoint": 2411,
"id": 403,
"parameterSlots": 0,
"returnSlots": 1
},
"@mint_385": {
"entryPoint": 1956,
"id": 385,
"parameterSlots": 2,
"returnSlots": 1
},
"@mintingFinished_150": {
"entryPoint": 939,
"id": 150,
"parameterSlots": 0,
"returnSlots": 0
},
"@name_141": {
"entryPoint": 958,
"id": 141,
"parameterSlots": 0,
"returnSlots": 0
},
"@owner_71": {
"entryPoint": 2581,
"id": 71,
"parameterSlots": 0,
"returnSlots": 0
},
"@sub_475": {
"entryPoint": 3477,
"id": 475,
"parameterSlots": 2,
"returnSlots": 1
},
"@symbol_144": {
"entryPoint": 2619,
"id": 144,
"parameterSlots": 0,
"returnSlots": 0
},
"@totalSupply_4": {
"entryPoint": 1257,
"id": 4,
"parameterSlots": 0,
"returnSlots": 0
},
"@transferFrom_290": {
"entryPoint": 1263,
"id": 290,
"parameterSlots": 3,
"returnSlots": 1
},
"@transferOwnership_114": {
"entryPoint": 3222,
"id": 114,
"parameterSlots": 1,
"returnSlots": 0
},
"@transfer_226": {
"entryPoint": 2676,
"id": 226,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_address": {
"entryPoint": 3516,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 3537,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_address": {
"entryPoint": 3558,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_addresst_address": {
"entryPoint": 3603,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_addresst_uint256": {
"entryPoint": 3667,
"id": null,
"parameterSlots": 2,
"returnSlots": 3
},
"abi_decode_tuple_t_addresst_uint256": {
"entryPoint": 3750,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_encode_t_address_to_t_address_fromStack": {
"entryPoint": 3814,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_bool_to_t_bool_fromStack": {
"entryPoint": 3829,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 3844,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 3901,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_uint8_to_t_uint8_fromStack": {
"entryPoint": 3916,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
"entryPoint": 3931,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
"entryPoint": 3958,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 3985,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 4019,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed": {
"entryPoint": 4046,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 4073,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 4084,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 4101,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_sub_t_uint256": {
"entryPoint": 4187,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 4239,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bool": {
"entryPoint": 4257,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 4269,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 4301,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint8": {
"entryPoint": 4311,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_memory_to_memory": {
"entryPoint": 4324,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"panic_error_0x01": {
"entryPoint": 4375,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x11": {
"entryPoint": 4422,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 4469,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 4474,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"validator_revert_t_address": {
"entryPoint": 4491,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 4514,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:6945:4",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "59:87:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "69:29:4",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "91:6:4"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "78:12:4"
},
"nodeType": "YulFunctionCall",
"src": "78:20:4"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "69:5:4"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "134:5:4"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "107:26:4"
},
"nodeType": "YulFunctionCall",
"src": "107:33:4"
},
"nodeType": "YulExpressionStatement",
"src": "107:33:4"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "37:6:4",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "45:3:4",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "53:5:4",
"type": ""
}
],
"src": "7:139:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "204:87:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "214:29:4",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "236:6:4"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "223:12:4"
},
"nodeType": "YulFunctionCall",
"src": "223:20:4"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "214:5:4"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "279:5:4"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "252:26:4"
},
"nodeType": "YulFunctionCall",
"src": "252:33:4"
},
"nodeType": "YulExpressionStatement",
"src": "252:33:4"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "182:6:4",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "190:3:4",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "198:5:4",
"type": ""
}
],
"src": "152:139:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "363:263:4",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "409:83:4",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "411:77:4"
},
"nodeType": "YulFunctionCall",
"src": "411:79:4"
},
"nodeType": "YulExpressionStatement",
"src": "411:79:4"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "384:7:4"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "393:9:4"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "380:3:4"
},
"nodeType": "YulFunctionCall",
"src": "380:23:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "405:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "376:3:4"
},
"nodeType": "YulFunctionCall",
"src": "376:32:4"
},
"nodeType": "YulIf",
"src": "373:119:4"
},
{
"nodeType": "YulBlock",
"src": "502:117:4",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "517:15:4",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "531:1:4",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "521:6:4",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "546:63:4",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "581:9:4"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "592:6:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "577:3:4"
},
"nodeType": "YulFunctionCall",
"src": "577:22:4"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "601:7:4"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "556:20:4"
},
"nodeType": "YulFunctionCall",
"src": "556:53:4"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "546:6:4"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "333:9:4",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "344:7:4",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "356:6:4",
"type": ""
}
],
"src": "297:329:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "715:391:4",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "761:83:4",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "763:77:4"
},
"nodeType": "YulFunctionCall",
"src": "763:79:4"
},
"nodeType": "YulExpressionStatement",
"src": "763:79:4"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "736:7:4"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "745:9:4"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "732:3:4"
},
"nodeType": "YulFunctionCall",
"src": "732:23:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "757:2:4",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "728:3:4"
},
"nodeType": "YulFunctionCall",
"src": "728:32:4"
},
"nodeType": "YulIf",
"src": "725:119:4"
},
{
"nodeType": "YulBlock",
"src": "854:117:4",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "869:15:4",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "883:1:4",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "873:6:4",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "898:63:4",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "933:9:4"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "944:6:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "929:3:4"
},
"nodeType": "YulFunctionCall",
"src": "929:22:4"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "953:7:4"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "908:20:4"
},
"nodeType": "YulFunctionCall",
"src": "908:53:4"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "898:6:4"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "981:118:4",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "996:16:4",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1010:2:4",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1000:6:4",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1026:63:4",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1061:9:4"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1072:6:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1057:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1057:22:4"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1081:7:4"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1036:20:4"
},
"nodeType": "YulFunctionCall",
"src": "1036:53:4"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1026:6:4"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "677:9:4",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "688:7:4",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "700:6:4",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "708:6:4",
"type": ""
}
],
"src": "632:474:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1212:519:4",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1258:83:4",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "1260:77:4"
},
"nodeType": "YulFunctionCall",
"src": "1260:79:4"
},
"nodeType": "YulExpressionStatement",
"src": "1260:79:4"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1233:7:4"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1242:9:4"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1229:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1229:23:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1254:2:4",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1225:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1225:32:4"
},
"nodeType": "YulIf",
"src": "1222:119:4"
},
{
"nodeType": "YulBlock",
"src": "1351:117:4",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1366:15:4",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1380:1:4",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1370:6:4",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1395:63:4",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1430:9:4"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1441:6:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1426:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1426:22:4"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1450:7:4"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1405:20:4"
},
"nodeType": "YulFunctionCall",
"src": "1405:53:4"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1395:6:4"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1478:118:4",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1493:16:4",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1507:2:4",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1497:6:4",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1523:63:4",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1558:9:4"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1569:6:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1554:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1554:22:4"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1578:7:4"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1533:20:4"
},
"nodeType": "YulFunctionCall",
"src": "1533:53:4"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1523:6:4"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1606:118:4",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1621:16:4",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1635:2:4",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1625:6:4",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1651:63:4",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1686:9:4"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1697:6:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1682:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1682:22:4"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1706:7:4"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "1661:20:4"
},
"nodeType": "YulFunctionCall",
"src": "1661:53:4"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "1651:6:4"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1166:9:4",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1177:7:4",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1189:6:4",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1197:6:4",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "1205:6:4",
"type": ""
}
],
"src": "1112:619:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1820:391:4",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1866:83:4",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "1868:77:4"
},
"nodeType": "YulFunctionCall",
"src": "1868:79:4"
},
"nodeType": "YulExpressionStatement",
"src": "1868:79:4"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1841:7:4"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1850:9:4"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1837:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1837:23:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1862:2:4",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1833:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1833:32:4"
},
"nodeType": "YulIf",
"src": "1830:119:4"
},
{
"nodeType": "YulBlock",
"src": "1959:117:4",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1974:15:4",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1988:1:4",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1978:6:4",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2003:63:4",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2038:9:4"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2049:6:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2034:3:4"
},
"nodeType": "YulFunctionCall",
"src": "2034:22:4"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2058:7:4"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "2013:20:4"
},
"nodeType": "YulFunctionCall",
"src": "2013:53:4"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2003:6:4"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "2086:118:4",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2101:16:4",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2115:2:4",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2105:6:4",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2131:63:4",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2166:9:4"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2177:6:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2162:3:4"
},
"nodeType": "YulFunctionCall",
"src": "2162:22:4"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2186:7:4"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "2141:20:4"
},
"nodeType": "YulFunctionCall",
"src": "2141:53:4"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2131:6:4"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1782:9:4",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1793:7:4",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1805:6:4",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1813:6:4",
"type": ""
}
],
"src": "1737:474:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2282:53:4",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2299:3:4"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2322:5:4"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "2304:17:4"
},
"nodeType": "YulFunctionCall",
"src": "2304:24:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2292:6:4"
},
"nodeType": "YulFunctionCall",
"src": "2292:37:4"
},
"nodeType": "YulExpressionStatement",
"src": "2292:37:4"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2270:5:4",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2277:3:4",
"type": ""
}
],
"src": "2217:118:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2400:50:4",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2417:3:4"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2437:5:4"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "2422:14:4"
},
"nodeType": "YulFunctionCall",
"src": "2422:21:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2410:6:4"
},
"nodeType": "YulFunctionCall",
"src": "2410:34:4"
},
"nodeType": "YulExpressionStatement",
"src": "2410:34:4"
}
]
},
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2388:5:4",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2395:3:4",
"type": ""
}
],
"src": "2341:109:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2548:272:4",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2558:53:4",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2605:5:4"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2572:32:4"
},
"nodeType": "YulFunctionCall",
"src": "2572:39:4"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2562:6:4",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2620:78:4",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2686:3:4"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2691:6:4"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2627:58:4"
},
"nodeType": "YulFunctionCall",
"src": "2627:71:4"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2620:3:4"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2733:5:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2740:4:4",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2729:3:4"
},
"nodeType": "YulFunctionCall",
"src": "2729:16:4"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2747:3:4"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2752:6:4"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "2707:21:4"
},
"nodeType": "YulFunctionCall",
"src": "2707:52:4"
},
"nodeType": "YulExpressionStatement",
"src": "2707:52:4"
},
{
"nodeType": "YulAssignment",
"src": "2768:46:4",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2779:3:4"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2806:6:4"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "2784:21:4"
},
"nodeType": "YulFunctionCall",
"src": "2784:29:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2775:3:4"
},
"nodeType": "YulFunctionCall",
"src": "2775:39:4"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2768:3:4"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2529:5:4",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2536:3:4",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2544:3:4",
"type": ""
}
],
"src": "2456:364:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2891:53:4",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2908:3:4"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2931:5:4"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "2913:17:4"
},
"nodeType": "YulFunctionCall",
"src": "2913:24:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2901:6:4"
},
"nodeType": "YulFunctionCall",
"src": "2901:37:4"
},
"nodeType": "YulExpressionStatement",
"src": "2901:37:4"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2879:5:4",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2886:3:4",
"type": ""
}
],
"src": "2826:118:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3011:51:4",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3028:3:4"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3049:5:4"
}
],
"functionName": {
"name": "cleanup_t_uint8",
"nodeType": "YulIdentifier",
"src": "3033:15:4"
},
"nodeType": "YulFunctionCall",
"src": "3033:22:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3021:6:4"
},
"nodeType": "YulFunctionCall",
"src": "3021:35:4"
},
"nodeType": "YulExpressionStatement",
"src": "3021:35:4"
}
]
},
"name": "abi_encode_t_uint8_to_t_uint8_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2999:5:4",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3006:3:4",
"type": ""
}
],
"src": "2950:112:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3166:124:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3176:26:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3188:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3199:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3184:3:4"
},
"nodeType": "YulFunctionCall",
"src": "3184:18:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3176:4:4"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3256:6:4"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3269:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3280:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3265:3:4"
},
"nodeType": "YulFunctionCall",
"src": "3265:17:4"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "3212:43:4"
},
"nodeType": "YulFunctionCall",
"src": "3212:71:4"
},
"nodeType": "YulExpressionStatement",
"src": "3212:71:4"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3138:9:4",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3150:6:4",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3161:4:4",
"type": ""
}
],
"src": "3068:222:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3388:118:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3398:26:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3410:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3421:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3406:3:4"
},
"nodeType": "YulFunctionCall",
"src": "3406:18:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3398:4:4"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3472:6:4"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3485:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3496:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3481:3:4"
},
"nodeType": "YulFunctionCall",
"src": "3481:17:4"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulIdentifier",
"src": "3434:37:4"
},
"nodeType": "YulFunctionCall",
"src": "3434:65:4"
},
"nodeType": "YulExpressionStatement",
"src": "3434:65:4"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3360:9:4",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3372:6:4",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3383:4:4",
"type": ""
}
],
"src": "3296:210:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3630:195:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3640:26:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3652:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3663:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3648:3:4"
},
"nodeType": "YulFunctionCall",
"src": "3648:18:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3640:4:4"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3687:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3698:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3683:3:4"
},
"nodeType": "YulFunctionCall",
"src": "3683:17:4"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3706:4:4"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3712:9:4"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3702:3:4"
},
"nodeType": "YulFunctionCall",
"src": "3702:20:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3676:6:4"
},
"nodeType": "YulFunctionCall",
"src": "3676:47:4"
},
"nodeType": "YulExpressionStatement",
"src": "3676:47:4"
},
{
"nodeType": "YulAssignment",
"src": "3732:86:4",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3804:6:4"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3813:4:4"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "3740:63:4"
},
"nodeType": "YulFunctionCall",
"src": "3740:78:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3732:4:4"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3602:9:4",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3614:6:4",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3625:4:4",
"type": ""
}
],
"src": "3512:313:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3929:124:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3939:26:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3951:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3962:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3947:3:4"
},
"nodeType": "YulFunctionCall",
"src": "3947:18:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3939:4:4"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4019:6:4"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4032:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4043:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4028:3:4"
},
"nodeType": "YulFunctionCall",
"src": "4028:17:4"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "3975:43:4"
},
"nodeType": "YulFunctionCall",
"src": "3975:71:4"
},
"nodeType": "YulExpressionStatement",
"src": "3975:71:4"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3901:9:4",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3913:6:4",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3924:4:4",
"type": ""
}
],
"src": "3831:222:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4153:120:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4163:26:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4175:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4186:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4171:3:4"
},
"nodeType": "YulFunctionCall",
"src": "4171:18:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4163:4:4"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4239:6:4"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4252:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4263:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4248:3:4"
},
"nodeType": "YulFunctionCall",
"src": "4248:17:4"
}
],
"functionName": {
"name": "abi_encode_t_uint8_to_t_uint8_fromStack",
"nodeType": "YulIdentifier",
"src": "4199:39:4"
},
"nodeType": "YulFunctionCall",
"src": "4199:67:4"
},
"nodeType": "YulExpressionStatement",
"src": "4199:67:4"
}
]
},
"name": "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4125:9:4",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4137:6:4",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "4148:4:4",
"type": ""
}
],
"src": "4059:214:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4319:35:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4329:19:4",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4345:2:4",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "4339:5:4"
},
"nodeType": "YulFunctionCall",
"src": "4339:9:4"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "4329:6:4"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "4312:6:4",
"type": ""
}
],
"src": "4279:75:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4419:40:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4430:22:4",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4446:5:4"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "4440:5:4"
},
"nodeType": "YulFunctionCall",
"src": "4440:12:4"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4430:6:4"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4402:5:4",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4412:6:4",
"type": ""
}
],
"src": "4360:99:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4561:73:4",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4578:3:4"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4583:6:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4571:6:4"
},
"nodeType": "YulFunctionCall",
"src": "4571:19:4"
},
"nodeType": "YulExpressionStatement",
"src": "4571:19:4"
},
{
"nodeType": "YulAssignment",
"src": "4599:29:4",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4618:3:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4623:4:4",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4614:3:4"
},
"nodeType": "YulFunctionCall",
"src": "4614:14:4"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "4599:11:4"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4533:3:4",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4538:6:4",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "4549:11:4",
"type": ""
}
],
"src": "4465:169:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4684:261:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4694:25:4",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4717:1:4"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "4699:17:4"
},
"nodeType": "YulFunctionCall",
"src": "4699:20:4"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4694:1:4"
}
]
},
{
"nodeType": "YulAssignment",
"src": "4728:25:4",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "4751:1:4"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "4733:17:4"
},
"nodeType": "YulFunctionCall",
"src": "4733:20:4"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "4728:1:4"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4891:22:4",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "4893:16:4"
},
"nodeType": "YulFunctionCall",
"src": "4893:18:4"
},
"nodeType": "YulExpressionStatement",
"src": "4893:18:4"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4812:1:4"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4819:66:4",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "4887:1:4"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4815:3:4"
},
"nodeType": "YulFunctionCall",
"src": "4815:74:4"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4809:2:4"
},
"nodeType": "YulFunctionCall",
"src": "4809:81:4"
},
"nodeType": "YulIf",
"src": "4806:107:4"
},
{
"nodeType": "YulAssignment",
"src": "4923:16:4",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4934:1:4"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "4937:1:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4930:3:4"
},
"nodeType": "YulFunctionCall",
"src": "4930:9:4"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "4923:3:4"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "4671:1:4",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "4674:1:4",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "4680:3:4",
"type": ""
}
],
"src": "4640:305:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4996:146:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5006:25:4",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5029:1:4"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "5011:17:4"
},
"nodeType": "YulFunctionCall",
"src": "5011:20:4"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5006:1:4"
}
]
},
{
"nodeType": "YulAssignment",
"src": "5040:25:4",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5063:1:4"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "5045:17:4"
},
"nodeType": "YulFunctionCall",
"src": "5045:20:4"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5040:1:4"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5087:22:4",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "5089:16:4"
},
"nodeType": "YulFunctionCall",
"src": "5089:18:4"
},
"nodeType": "YulExpressionStatement",
"src": "5089:18:4"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5081:1:4"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5084:1:4"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "5078:2:4"
},
"nodeType": "YulFunctionCall",
"src": "5078:8:4"
},
"nodeType": "YulIf",
"src": "5075:34:4"
},
{
"nodeType": "YulAssignment",
"src": "5119:17:4",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5131:1:4"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5134:1:4"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5127:3:4"
},
"nodeType": "YulFunctionCall",
"src": "5127:9:4"
},
"variableNames": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "5119:4:4"
}
]
}
]
},
"name": "checked_sub_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "4982:1:4",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "4985:1:4",
"type": ""
}
],
"returnVariables": [
{
"name": "diff",
"nodeType": "YulTypedName",
"src": "4991:4:4",
"type": ""
}
],
"src": "4951:191:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5193:51:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5203:35:4",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5232:5:4"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "5214:17:4"
},
"nodeType": "YulFunctionCall",
"src": "5214:24:4"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "5203:7:4"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5175:5:4",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "5185:7:4",
"type": ""
}
],
"src": "5148:96:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5292:48:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5302:32:4",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5327:5:4"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "5320:6:4"
},
"nodeType": "YulFunctionCall",
"src": "5320:13:4"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "5313:6:4"
},
"nodeType": "YulFunctionCall",
"src": "5313:21:4"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "5302:7:4"
}
]
}
]
},
"name": "cleanup_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5274:5:4",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "5284:7:4",
"type": ""
}
],
"src": "5250:90:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5391:81:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5401:65:4",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5416:5:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5423:42:4",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5412:3:4"
},
"nodeType": "YulFunctionCall",
"src": "5412:54:4"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "5401:7:4"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5373:5:4",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "5383:7:4",
"type": ""
}
],
"src": "5346:126:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5523:32:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5533:16:4",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "5544:5:4"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "5533:7:4"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5505:5:4",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "5515:7:4",
"type": ""
}
],
"src": "5478:77:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5604:43:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5614:27:4",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5629:5:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5636:4:4",
"type": "",
"value": "0xff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5625:3:4"
},
"nodeType": "YulFunctionCall",
"src": "5625:16:4"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "5614:7:4"
}
]
}
]
},
"name": "cleanup_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5586:5:4",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "5596:7:4",
"type": ""
}
],
"src": "5561:86:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5702:258:4",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5712:10:4",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5721:1:4",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "5716:1:4",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5781:63:4",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "5806:3:4"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5811:1:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5802:3:4"
},
"nodeType": "YulFunctionCall",
"src": "5802:11:4"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "5825:3:4"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5830:1:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5821:3:4"
},
"nodeType": "YulFunctionCall",
"src": "5821:11:4"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "5815:5:4"
},
"nodeType": "YulFunctionCall",
"src": "5815:18:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5795:6:4"
},
"nodeType": "YulFunctionCall",
"src": "5795:39:4"
},
"nodeType": "YulExpressionStatement",
"src": "5795:39:4"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5742:1:4"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5745:6:4"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "5739:2:4"
},
"nodeType": "YulFunctionCall",
"src": "5739:13:4"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "5753:19:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5755:15:4",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5764:1:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5767:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5760:3:4"
},
"nodeType": "YulFunctionCall",
"src": "5760:10:4"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5755:1:4"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "5735:3:4",
"statements": []
},
"src": "5731:113:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5878:76:4",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "5928:3:4"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5933:6:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5924:3:4"
},
"nodeType": "YulFunctionCall",
"src": "5924:16:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5942:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5917:6:4"
},
"nodeType": "YulFunctionCall",
"src": "5917:27:4"
},
"nodeType": "YulExpressionStatement",
"src": "5917:27:4"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5859:1:4"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5862:6:4"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "5856:2:4"
},
"nodeType": "YulFunctionCall",
"src": "5856:13:4"
},
"nodeType": "YulIf",
"src": "5853:101:4"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "5684:3:4",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "5689:3:4",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5694:6:4",
"type": ""
}
],
"src": "5653:307:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5994:152:4",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6011:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6014:77:4",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6004:6:4"
},
"nodeType": "YulFunctionCall",
"src": "6004:88:4"
},
"nodeType": "YulExpressionStatement",
"src": "6004:88:4"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6108:1:4",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6111:4:4",
"type": "",
"value": "0x01"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6101:6:4"
},
"nodeType": "YulFunctionCall",
"src": "6101:15:4"
},
"nodeType": "YulExpressionStatement",
"src": "6101:15:4"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6132:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6135:4:4",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6125:6:4"
},
"nodeType": "YulFunctionCall",
"src": "6125:15:4"
},
"nodeType": "YulExpressionStatement",
"src": "6125:15:4"
}
]
},
"name": "panic_error_0x01",
"nodeType": "YulFunctionDefinition",
"src": "5966:180:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6180:152:4",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6197:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6200:77:4",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6190:6:4"
},
"nodeType": "YulFunctionCall",
"src": "6190:88:4"
},
"nodeType": "YulExpressionStatement",
"src": "6190:88:4"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6294:1:4",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6297:4:4",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6287:6:4"
},
"nodeType": "YulFunctionCall",
"src": "6287:15:4"
},
"nodeType": "YulExpressionStatement",
"src": "6287:15:4"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6318:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6321:4:4",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6311:6:4"
},
"nodeType": "YulFunctionCall",
"src": "6311:15:4"
},
"nodeType": "YulExpressionStatement",
"src": "6311:15:4"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "6152:180:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6427:28:4",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6444:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6447:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6437:6:4"
},
"nodeType": "YulFunctionCall",
"src": "6437:12:4"
},
"nodeType": "YulExpressionStatement",
"src": "6437:12:4"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "6338:117:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6550:28:4",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6567:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6570:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6560:6:4"
},
"nodeType": "YulFunctionCall",
"src": "6560:12:4"
},
"nodeType": "YulExpressionStatement",
"src": "6560:12:4"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "6461:117:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6632:54:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6642:38:4",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6660:5:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6667:2:4",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6656:3:4"
},
"nodeType": "YulFunctionCall",
"src": "6656:14:4"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6676:2:4",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "6672:3:4"
},
"nodeType": "YulFunctionCall",
"src": "6672:7:4"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "6652:3:4"
},
"nodeType": "YulFunctionCall",
"src": "6652:28:4"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "6642:6:4"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6615:5:4",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "6625:6:4",
"type": ""
}
],
"src": "6584:102:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6735:79:4",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "6792:16:4",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6801:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6804:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6794:6:4"
},
"nodeType": "YulFunctionCall",
"src": "6794:12:4"
},
"nodeType": "YulExpressionStatement",
"src": "6794:12:4"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6758:5:4"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6783:5:4"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "6765:17:4"
},
"nodeType": "YulFunctionCall",
"src": "6765:24:4"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "6755:2:4"
},
"nodeType": "YulFunctionCall",
"src": "6755:35:4"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "6748:6:4"
},
"nodeType": "YulFunctionCall",
"src": "6748:43:4"
},
"nodeType": "YulIf",
"src": "6745:63:4"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6728:5:4",
"type": ""
}
],
"src": "6692:122:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6863:79:4",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "6920:16:4",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6929:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6932:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6922:6:4"
},
"nodeType": "YulFunctionCall",
"src": "6922:12:4"
},
"nodeType": "YulExpressionStatement",
"src": "6922:12:4"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6886:5:4"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6911:5:4"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "6893:17:4"
},
"nodeType": "YulFunctionCall",
"src": "6893:24:4"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "6883:2:4"
},
"nodeType": "YulFunctionCall",
"src": "6883:35:4"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "6876:6:4"
},
"nodeType": "YulFunctionCall",
"src": "6876:43:4"
},
"nodeType": "YulIf",
"src": "6873:63:4"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6856:5:4",
"type": ""
}
],
"src": "6820:122:4"
}
]
},
"contents": "{\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_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(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 abi_decode_tuple_t_addresst_address(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_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2 {\n if slt(sub(dataEnd, headStart), 96) { 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 let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(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_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_t_uint8_to_t_uint8_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint8(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_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_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 abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint8_to_t_uint8_fromStack(value0, add(headStart, 0))\n\n }\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\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 checked_add_t_uint256(x, y) -> sum {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n // overflow, if x > (maxValue - y)\n if gt(x, sub(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, y)) { panic_error_0x11() }\n\n sum := add(x, y)\n }\n\n function 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 cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function cleanup_t_bool(value) -> cleaned {\n cleaned := iszero(iszero(value))\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function cleanup_t_uint8(value) -> cleaned {\n cleaned := and(value, 0xff)\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 panic_error_0x01() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x01)\n revert(0, 0x24)\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\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 validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n}\n",
"id": 4,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "6080604052600436106100e15760003560e01c806370a082311161007f57806395d89b411161005957806395d89b41146102dd578063a9059cbb14610308578063dd62ed3e14610345578063f2fde38b14610382576100e2565b806370a082311461024a5780637d64bcb4146102875780638da5cb5b146102b2576100e2565b806318160ddd116100bb57806318160ddd1461017a57806323b872dd146101a5578063313ce567146101e257806340c10f191461020d576100e2565b806305d2035b146100e757806306fdde0314610112578063095ea7b31461013d576100e2565b5b600080fd5b3480156100f357600080fd5b506100fc6103ab565b6040516101099190610f76565b60405180910390f35b34801561011e57600080fd5b506101276103be565b6040516101349190610f91565b60405180910390f35b34801561014957600080fd5b50610164600480360381019061015f9190610ea6565b6103f7565b6040516101719190610f76565b60405180910390f35b34801561018657600080fd5b5061018f6104e9565b60405161019c9190610fb3565b60405180910390f35b3480156101b157600080fd5b506101cc60048036038101906101c79190610e53565b6104ef565b6040516101d99190610f76565b60405180910390f35b3480156101ee57600080fd5b506101f761079f565b6040516102049190610fce565b60405180910390f35b34801561021957600080fd5b50610234600480360381019061022f9190610ea6565b6107a4565b6040516102419190610f76565b60405180910390f35b34801561025657600080fd5b50610271600480360381019061026c9190610de6565b610922565b60405161027e9190610fb3565b60405180910390f35b34801561029357600080fd5b5061029c61096b565b6040516102a99190610f76565b60405180910390f35b3480156102be57600080fd5b506102c7610a15565b6040516102d49190610f5b565b60405180910390f35b3480156102e957600080fd5b506102f2610a3b565b6040516102ff9190610f91565b60405180910390f35b34801561031457600080fd5b5061032f600480360381019061032a9190610ea6565b610a74565b60405161033c9190610f76565b60405180910390f35b34801561035157600080fd5b5061036c60048036038101906103679190610e13565b610c0f565b6040516103799190610fb3565b60405180910390f35b34801561038e57600080fd5b506103a960048036038101906103a49190610de6565b610c96565b005b600460009054906101000a900460ff1681565b6040518060400160405280601381526020017f50726f6f662050726573616c6520546f6b656e0000000000000000000000000081525081565b600081600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516104d79190610fb3565b60405180910390a36001905092915050565b60005481565b600080600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506105c383600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d6990919063ffffffff16565b600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061065883600260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d9590919063ffffffff16565b600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506106ae8382610d9590919063ffffffff16565b600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161078b9190610fb3565b60405180910390a360019150509392505050565b601281565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461080057600080fd5b600460009054906101000a900460ff161561081a57600080fd5b61082f82600054610d6990919063ffffffff16565b60008190555061088782600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d6990919063ffffffff16565b600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff167f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885836040516109109190610fb3565b60405180910390a26001905092915050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146109c757600080fd5b6001600460006101000a81548160ff0219169083151502179055507fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0860405160405180910390a16001905090565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6040518060400160405280600381526020017f505054000000000000000000000000000000000000000000000000000000000081525081565b6000610ac882600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d9590919063ffffffff16565b600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610b5d82600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d6990919063ffffffff16565b600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610bfd9190610fb3565b60405180910390a36001905092915050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610cf057600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d665780600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b50565b6000808284610d789190611005565b905083811015610d8b57610d8a611117565b5b8091505092915050565b600082821115610da857610da7611117565b5b8183610db4919061105b565b905092915050565b600081359050610dcb8161118b565b92915050565b600081359050610de0816111a2565b92915050565b600060208284031215610dfc57610dfb611175565b5b6000610e0a84828501610dbc565b91505092915050565b60008060408385031215610e2a57610e29611175565b5b6000610e3885828601610dbc565b9250506020610e4985828601610dbc565b9150509250929050565b600080600060608486031215610e6c57610e6b611175565b5b6000610e7a86828701610dbc565b9350506020610e8b86828701610dbc565b9250506040610e9c86828701610dd1565b9150509250925092565b60008060408385031215610ebd57610ebc611175565b5b6000610ecb85828601610dbc565b9250506020610edc85828601610dd1565b9150509250929050565b610eef8161108f565b82525050565b610efe816110a1565b82525050565b6000610f0f82610fe9565b610f198185610ff4565b9350610f298185602086016110e4565b610f328161117a565b840191505092915050565b610f46816110cd565b82525050565b610f55816110d7565b82525050565b6000602082019050610f706000830184610ee6565b92915050565b6000602082019050610f8b6000830184610ef5565b92915050565b60006020820190508181036000830152610fab8184610f04565b905092915050565b6000602082019050610fc86000830184610f3d565b92915050565b6000602082019050610fe36000830184610f4c565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611010826110cd565b915061101b836110cd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156110505761104f611146565b5b828201905092915050565b6000611066826110cd565b9150611071836110cd565b92508282101561108457611083611146565b5b828203905092915050565b600061109a826110ad565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156111025780820151818401526020810190506110e7565b83811115611111576000848401525b50505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600080fd5b6000601f19601f8301169050919050565b6111948161108f565b811461119f57600080fd5b50565b6111ab816110cd565b81146111b657600080fd5b5056fea2646970667358221220763f96381b235141a74618fa66ff5b8a9bc14daa0a1a190264f76c5aa824e48264736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0xE1 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x70A08231 GT PUSH2 0x7F JUMPI DUP1 PUSH4 0x95D89B41 GT PUSH2 0x59 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x2DD JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x308 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x345 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x382 JUMPI PUSH2 0xE2 JUMP JUMPDEST DUP1 PUSH4 0x70A08231 EQ PUSH2 0x24A JUMPI DUP1 PUSH4 0x7D64BCB4 EQ PUSH2 0x287 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x2B2 JUMPI PUSH2 0xE2 JUMP JUMPDEST DUP1 PUSH4 0x18160DDD GT PUSH2 0xBB JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x17A JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x1A5 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x1E2 JUMPI DUP1 PUSH4 0x40C10F19 EQ PUSH2 0x20D JUMPI PUSH2 0xE2 JUMP JUMPDEST DUP1 PUSH4 0x5D2035B EQ PUSH2 0xE7 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x112 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x13D JUMPI PUSH2 0xE2 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xF3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xFC PUSH2 0x3AB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x109 SWAP2 SWAP1 PUSH2 0xF76 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x11E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x127 PUSH2 0x3BE JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x134 SWAP2 SWAP1 PUSH2 0xF91 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x149 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x164 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x15F SWAP2 SWAP1 PUSH2 0xEA6 JUMP JUMPDEST PUSH2 0x3F7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x171 SWAP2 SWAP1 PUSH2 0xF76 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x186 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x18F PUSH2 0x4E9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x19C SWAP2 SWAP1 PUSH2 0xFB3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1B1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x1CC PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1C7 SWAP2 SWAP1 PUSH2 0xE53 JUMP JUMPDEST PUSH2 0x4EF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1D9 SWAP2 SWAP1 PUSH2 0xF76 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1EE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x1F7 PUSH2 0x79F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x204 SWAP2 SWAP1 PUSH2 0xFCE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x219 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x234 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x22F SWAP2 SWAP1 PUSH2 0xEA6 JUMP JUMPDEST PUSH2 0x7A4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x241 SWAP2 SWAP1 PUSH2 0xF76 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x256 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x271 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x26C SWAP2 SWAP1 PUSH2 0xDE6 JUMP JUMPDEST PUSH2 0x922 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x27E SWAP2 SWAP1 PUSH2 0xFB3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x293 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x29C PUSH2 0x96B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2A9 SWAP2 SWAP1 PUSH2 0xF76 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2BE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2C7 PUSH2 0xA15 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2D4 SWAP2 SWAP1 PUSH2 0xF5B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2E9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2F2 PUSH2 0xA3B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2FF SWAP2 SWAP1 PUSH2 0xF91 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x314 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x32F PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x32A SWAP2 SWAP1 PUSH2 0xEA6 JUMP JUMPDEST PUSH2 0xA74 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x33C SWAP2 SWAP1 PUSH2 0xF76 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x351 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x36C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x367 SWAP2 SWAP1 PUSH2 0xE13 JUMP JUMPDEST PUSH2 0xC0F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x379 SWAP2 SWAP1 PUSH2 0xFB3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x38E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x3A9 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x3A4 SWAP2 SWAP1 PUSH2 0xDE6 JUMP JUMPDEST PUSH2 0xC96 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x4 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x13 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x50726F6F662050726573616C6520546F6B656E00000000000000000000000000 DUP2 MSTORE POP DUP2 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x3 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 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP5 PUSH1 0x40 MLOAD PUSH2 0x4D7 SWAP2 SWAP1 PUSH2 0xFB3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x3 PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP PUSH2 0x5C3 DUP4 PUSH1 0x2 PUSH1 0x0 DUP8 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH2 0xD69 SWAP1 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST PUSH1 0x2 PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP PUSH2 0x658 DUP4 PUSH1 0x2 PUSH1 0x0 DUP9 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH2 0xD95 SWAP1 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST PUSH1 0x2 PUSH1 0x0 DUP8 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP PUSH2 0x6AE DUP4 DUP3 PUSH2 0xD95 SWAP1 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST PUSH1 0x3 PUSH1 0x0 DUP8 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP6 PUSH1 0x40 MLOAD PUSH2 0x78B SWAP2 SWAP1 PUSH2 0xFB3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH1 0x1 SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x12 DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x800 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x4 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x81A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x82F DUP3 PUSH1 0x0 SLOAD PUSH2 0xD69 SWAP1 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 SSTORE POP PUSH2 0x887 DUP3 PUSH1 0x2 PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH2 0xD69 SWAP1 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST PUSH1 0x2 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xF6798A560793A54C3BCFE86A93CDE1E73087D944C0EA20544137D4121396885 DUP4 PUSH1 0x40 MLOAD PUSH2 0x910 SWAP2 SWAP1 PUSH2 0xFB3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP 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 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x9C7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x4 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH32 0xAE5184FBA832CB2B1F702ACA6117B8D265EAF03AD33EB133F19DDE0F5920FA08 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH1 0x1 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x3 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x5050540000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH2 0xAC8 DUP3 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 SLOAD PUSH2 0xD95 SWAP1 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST 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 DUP2 SWAP1 SSTORE POP PUSH2 0xB5D DUP3 PUSH1 0x2 PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH2 0xD69 SWAP1 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST PUSH1 0x2 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0xBFD SWAP2 SWAP1 PUSH2 0xFB3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x3 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP3 SWAP2 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 0xCF0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xD66 JUMPI DUP1 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 JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 DUP5 PUSH2 0xD78 SWAP2 SWAP1 PUSH2 0x1005 JUMP JUMPDEST SWAP1 POP DUP4 DUP2 LT ISZERO PUSH2 0xD8B JUMPI PUSH2 0xD8A PUSH2 0x1117 JUMP JUMPDEST JUMPDEST DUP1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 GT ISZERO PUSH2 0xDA8 JUMPI PUSH2 0xDA7 PUSH2 0x1117 JUMP JUMPDEST JUMPDEST DUP2 DUP4 PUSH2 0xDB4 SWAP2 SWAP1 PUSH2 0x105B JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xDCB DUP2 PUSH2 0x118B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xDE0 DUP2 PUSH2 0x11A2 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xDFC JUMPI PUSH2 0xDFB PUSH2 0x1175 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xE0A DUP5 DUP3 DUP6 ADD PUSH2 0xDBC JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xE2A JUMPI PUSH2 0xE29 PUSH2 0x1175 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xE38 DUP6 DUP3 DUP7 ADD PUSH2 0xDBC JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xE49 DUP6 DUP3 DUP7 ADD PUSH2 0xDBC JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xE6C JUMPI PUSH2 0xE6B PUSH2 0x1175 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xE7A DUP7 DUP3 DUP8 ADD PUSH2 0xDBC JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0xE8B DUP7 DUP3 DUP8 ADD PUSH2 0xDBC JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0xE9C DUP7 DUP3 DUP8 ADD PUSH2 0xDD1 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xEBD JUMPI PUSH2 0xEBC PUSH2 0x1175 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xECB DUP6 DUP3 DUP7 ADD PUSH2 0xDBC JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xEDC DUP6 DUP3 DUP7 ADD PUSH2 0xDD1 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH2 0xEEF DUP2 PUSH2 0x108F JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0xEFE DUP2 PUSH2 0x10A1 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xF0F DUP3 PUSH2 0xFE9 JUMP JUMPDEST PUSH2 0xF19 DUP2 DUP6 PUSH2 0xFF4 JUMP JUMPDEST SWAP4 POP PUSH2 0xF29 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x10E4 JUMP JUMPDEST PUSH2 0xF32 DUP2 PUSH2 0x117A JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xF46 DUP2 PUSH2 0x10CD JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0xF55 DUP2 PUSH2 0x10D7 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xF70 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xEE6 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xF8B PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xEF5 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xFAB DUP2 DUP5 PUSH2 0xF04 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xFC8 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xF3D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xFE3 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xF4C JUMP JUMPDEST 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 PUSH2 0x1010 DUP3 PUSH2 0x10CD JUMP JUMPDEST SWAP2 POP PUSH2 0x101B DUP4 PUSH2 0x10CD JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x1050 JUMPI PUSH2 0x104F PUSH2 0x1146 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1066 DUP3 PUSH2 0x10CD JUMP JUMPDEST SWAP2 POP PUSH2 0x1071 DUP4 PUSH2 0x10CD JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x1084 JUMPI PUSH2 0x1083 PUSH2 0x1146 JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x109A DUP3 PUSH2 0x10AD JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x1102 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x10E7 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x1111 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x1 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1194 DUP2 PUSH2 0x108F JUMP JUMPDEST DUP2 EQ PUSH2 0x119F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x11AB DUP2 PUSH2 0x10CD JUMP JUMPDEST DUP2 EQ PUSH2 0x11B6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH23 0x3F96381B235141A74618FA66FF5B8A9BC14DAA0A1A1902 PUSH5 0xF76C5AA824 0xE4 DUP3 PUSH5 0x736F6C6343 STOP ADDMOD SMOD STOP CALLER ",
"sourceMap": "351:2359:2:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;835:8;;;665:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;530:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1594:194;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;151:26:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1223:367:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;626:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2233:227;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;852:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2569:132;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;245:20:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;585:37:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;968:251;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1792:135;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;746:130:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;665:35:2;;;;;;;;;;;;;:::o;530:51::-;;;;;;;;;;;;;;;;;;;:::o;1594:194::-;1667:4;1711:6;1679:7;:19;1687:10;1679:19;;;;;;;;;;;;;;;:29;1699:8;1679:29;;;;;;;;;;;;;;;:38;;;;1749:8;1728:38;;1737:10;1728:38;;;1759:6;1728:38;;;;;;:::i;:::-;;;;;;;;1779:4;1772:11;;1594:194;;;;:::o;151:26:0:-;;;;:::o;1223:367:2:-;1311:4;1328:15;1346:7;:14;1354:5;1346:14;;;;;;;;;;;;;;;:26;1361:10;1346:26;;;;;;;;;;;;;;;;1328:44;;1395:25;1413:6;1395:8;:13;1404:3;1395:13;;;;;;;;;;;;;;;;:17;;:25;;;;:::i;:::-;1379:8;:13;1388:3;1379:13;;;;;;;;;;;;;;;:41;;;;1444:27;1464:6;1444:8;:15;1453:5;1444:15;;;;;;;;;;;;;;;;:19;;:27;;;;:::i;:::-;1426:8;:15;1435:5;1426:15;;;;;;;;;;;;;;;:45;;;;1506:22;1521:6;1506:10;:14;;:22;;;;:::i;:::-;1477:7;:14;1485:5;1477:14;;;;;;;;;;;;;;;:26;1492:10;1477:26;;;;;;;;;;;;;;;:51;;;;1556:3;1540:28;;1549:5;1540:28;;;1561:6;1540:28;;;;;;:::i;:::-;;;;;;;;1581:4;1574:11;;;1223:367;;;;;:::o;626:35::-;659:2;626:35;:::o;2233:227::-;2311:4;566:5:1;;;;;;;;;;;552:19;;:10;:19;;;544:28;;;;;;1974:15:2::1;;;;;;;;;;;1973:16;1965:25;;;::::0;::::1;;2337:24:::2;2353:7;2337:11;;:15;;:24;;;;:::i;:::-;2323:11;:38;;;;2383:26;2401:7;2383:8;:13;2392:3;2383:13;;;;;;;;;;;;;;;;:17;;:26;;;;:::i;:::-;2367:8;:13;2376:3;2367:13;;;;;;;;;;;;;;;:42;;;;2425:3;2420:18;;;2430:7;2420:18;;;;;;:::i;:::-;;;;;;;;2451:4;2444:11;;2233:227:::0;;;;:::o;852:108::-;917:7;939:8;:16;948:6;939:16;;;;;;;;;;;;;;;;932:23;;852:108;;;:::o;2569:132::-;2620:4;566:5:1;;;;;;;;;;;552:19;;:10;:19;;;544:28;;;;;;2650:4:2::1;2632:15;;:22;;;;;;;;;;;;;;;;;;2665:14;;;;;;;;;;2692:4;2685:11;;2569:132:::0;:::o;245:20:1:-;;;;;;;;;;;;;:::o;585:37:2:-;;;;;;;;;;;;;;;;;;;:::o;968:251::-;1037:4;1073:32;1098:6;1073:8;:20;1082:10;1073:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;1050:8;:20;1059:10;1050:20;;;;;;;;;;;;;;;:55;;;;1127:25;1145:6;1127:8;:13;1136:3;1127:13;;;;;;;;;;;;;;;;:17;;:25;;;;:::i;:::-;1111:8;:13;1120:3;1111:13;;;;;;;;;;;;;;;:41;;;;1185:3;1164:33;;1173:10;1164:33;;;1190:6;1164:33;;;;;;:::i;:::-;;;;;;;;1210:4;1203:11;;968:251;;;;:::o;1792:135::-;1875:7;1897;:15;1905:6;1897:15;;;;;;;;;;;;;;;:25;1913:8;1897:25;;;;;;;;;;;;;;;;1890:32;;1792:135;;;;:::o;746:130:1:-;566:5;;;;;;;;;;;552:19;;:10;:19;;;544:28;;;;;;837:1:::1;817:22;;:8;:22;;;813:59;;857:8;849:5;;:16;;;;;;;;;;;;;;;;;;813:59;746:130:::0;:::o;663:125:3:-;717:7;732:9;748:1;744;:5;;;;:::i;:::-;732:17;;767:1;762;:6;;755:14;;;;:::i;:::-;;782:1;775:8;;;663:125;;;;:::o;553:106::-;607:7;634:1;629;:6;;622:14;;;;:::i;:::-;;653:1;649;:5;;;;:::i;:::-;642:12;;553:106;;;;:::o;7:139:4:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;152:139;;;;:::o;297:329::-;356:6;405:2;393:9;384:7;380:23;376:32;373:119;;;411:79;;:::i;:::-;373:119;531:1;556:53;601:7;592:6;581:9;577:22;556:53;:::i;:::-;546:63;;502:117;297:329;;;;:::o;632:474::-;700:6;708;757:2;745:9;736:7;732:23;728:32;725:119;;;763:79;;:::i;:::-;725:119;883:1;908:53;953:7;944:6;933:9;929:22;908:53;:::i;:::-;898:63;;854:117;1010:2;1036:53;1081:7;1072:6;1061:9;1057:22;1036:53;:::i;:::-;1026:63;;981:118;632:474;;;;;:::o;1112:619::-;1189:6;1197;1205;1254:2;1242:9;1233:7;1229:23;1225:32;1222:119;;;1260:79;;:::i;:::-;1222:119;1380:1;1405:53;1450:7;1441:6;1430:9;1426:22;1405:53;:::i;:::-;1395:63;;1351:117;1507:2;1533:53;1578:7;1569:6;1558:9;1554:22;1533:53;:::i;:::-;1523:63;;1478:118;1635:2;1661:53;1706:7;1697:6;1686:9;1682:22;1661:53;:::i;:::-;1651:63;;1606:118;1112:619;;;;;:::o;1737:474::-;1805:6;1813;1862:2;1850:9;1841:7;1837:23;1833:32;1830:119;;;1868:79;;:::i;:::-;1830:119;1988:1;2013:53;2058:7;2049:6;2038:9;2034:22;2013:53;:::i;:::-;2003:63;;1959:117;2115:2;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2086:118;1737:474;;;;;:::o;2217:118::-;2304:24;2322:5;2304:24;:::i;:::-;2299:3;2292:37;2217:118;;:::o;2341:109::-;2422:21;2437:5;2422:21;:::i;:::-;2417:3;2410:34;2341:109;;:::o;2456:364::-;2544:3;2572:39;2605:5;2572:39;:::i;:::-;2627:71;2691:6;2686:3;2627:71;:::i;:::-;2620:78;;2707:52;2752:6;2747:3;2740:4;2733:5;2729:16;2707:52;:::i;:::-;2784:29;2806:6;2784:29;:::i;:::-;2779:3;2775:39;2768:46;;2548:272;2456:364;;;;:::o;2826:118::-;2913:24;2931:5;2913:24;:::i;:::-;2908:3;2901:37;2826:118;;:::o;2950:112::-;3033:22;3049:5;3033:22;:::i;:::-;3028:3;3021:35;2950:112;;:::o;3068:222::-;3161:4;3199:2;3188:9;3184:18;3176:26;;3212:71;3280:1;3269:9;3265:17;3256:6;3212:71;:::i;:::-;3068:222;;;;:::o;3296:210::-;3383:4;3421:2;3410:9;3406:18;3398:26;;3434:65;3496:1;3485:9;3481:17;3472:6;3434:65;:::i;:::-;3296:210;;;;:::o;3512:313::-;3625:4;3663:2;3652:9;3648:18;3640:26;;3712:9;3706:4;3702:20;3698:1;3687:9;3683:17;3676:47;3740:78;3813:4;3804:6;3740:78;:::i;:::-;3732:86;;3512:313;;;;:::o;3831:222::-;3924:4;3962:2;3951:9;3947:18;3939:26;;3975:71;4043:1;4032:9;4028:17;4019:6;3975:71;:::i;:::-;3831:222;;;;:::o;4059:214::-;4148:4;4186:2;4175:9;4171:18;4163:26;;4199:67;4263:1;4252:9;4248:17;4239:6;4199:67;:::i;:::-;4059:214;;;;:::o;4360:99::-;4412:6;4446:5;4440:12;4430:22;;4360:99;;;:::o;4465:169::-;4549:11;4583:6;4578:3;4571:19;4623:4;4618:3;4614:14;4599:29;;4465:169;;;;:::o;4640:305::-;4680:3;4699:20;4717:1;4699:20;:::i;:::-;4694:25;;4733:20;4751:1;4733:20;:::i;:::-;4728:25;;4887:1;4819:66;4815:74;4812:1;4809:81;4806:107;;;4893:18;;:::i;:::-;4806:107;4937:1;4934;4930:9;4923:16;;4640:305;;;;:::o;4951:191::-;4991:4;5011:20;5029:1;5011:20;:::i;:::-;5006:25;;5045:20;5063:1;5045:20;:::i;:::-;5040:25;;5084:1;5081;5078:8;5075:34;;;5089:18;;:::i;:::-;5075:34;5134:1;5131;5127:9;5119:17;;4951:191;;;;:::o;5148:96::-;5185:7;5214:24;5232:5;5214:24;:::i;:::-;5203:35;;5148:96;;;:::o;5250:90::-;5284:7;5327:5;5320:13;5313:21;5302:32;;5250:90;;;:::o;5346:126::-;5383:7;5423:42;5416:5;5412:54;5401:65;;5346:126;;;:::o;5478:77::-;5515:7;5544:5;5533:16;;5478:77;;;:::o;5561:86::-;5596:7;5636:4;5629:5;5625:16;5614:27;;5561:86;;;:::o;5653:307::-;5721:1;5731:113;5745:6;5742:1;5739:13;5731:113;;;5830:1;5825:3;5821:11;5815:18;5811:1;5806:3;5802:11;5795:39;5767:2;5764:1;5760:10;5755:15;;5731:113;;;5862:6;5859:1;5856:13;5853:101;;;5942:1;5933:6;5928:3;5924:16;5917:27;5853:101;5702:258;5653:307;;;:::o;5966:180::-;6014:77;6011:1;6004:88;6111:4;6108:1;6101:15;6135:4;6132:1;6125:15;6152:180;6200:77;6197:1;6190:88;6297:4;6294:1;6287:15;6321:4;6318:1;6311:15;6461:117;6570:1;6567;6560:12;6584:102;6625:6;6676:2;6672:7;6667:2;6660:5;6656:14;6652:28;6642:38;;6584:102;;;:::o;6692:122::-;6765:24;6783:5;6765:24;:::i;:::-;6758:5;6755:35;6745:63;;6804:1;6801;6794:12;6745:63;6692:122;:::o;6820:::-;6893:24;6911:5;6893:24;:::i;:::-;6886:5;6883:35;6873:63;;6932:1;6929;6922:12;6873:63;6820:122;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "918200",
"executionCost": "49488",
"totalCost": "967688"
},
"external": {
"": "181",
"allowance(address,address)": "infinite",
"approve(address,uint256)": "infinite",
"balanceOf(address)": "2864",
"decimals()": "402",
"finishMinting()": "27602",
"mint(address,uint256)": "infinite",
"mintingFinished()": "2495",
"name()": "infinite",
"owner()": "2581",
"symbol()": "infinite",
"totalSupply()": "2452",
"transfer(address,uint256)": "infinite",
"transferFrom(address,address,uint256)": "infinite",
"transferOwnership(address)": "27015"
}
},
"methodIdentifiers": {
"allowance(address,address)": "dd62ed3e",
"approve(address,uint256)": "095ea7b3",
"balanceOf(address)": "70a08231",
"decimals()": "313ce567",
"finishMinting()": "7d64bcb4",
"mint(address,uint256)": "40c10f19",
"mintingFinished()": "05d2035b",
"name()": "06fdde03",
"owner()": "8da5cb5b",
"symbol()": "95d89b41",
"totalSupply()": "18160ddd",
"transfer(address,uint256)": "a9059cbb",
"transferFrom(address,address,uint256)": "23b872dd",
"transferOwnership(address)": "f2fde38b"
}
},
"abi": [
{
"inputs": [],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "_owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "_spender",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "_value",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "Mint",
"type": "event"
},
{
"anonymous": false,
"inputs": [],
"name": "MintFinished",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "_from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "_to",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "_value",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"stateMutability": "payable",
"type": "fallback"
},
{
"inputs": [
{
"internalType": "address",
"name": "_owner",
"type": "address"
},
{
"internalType": "address",
"name": "_spender",
"type": "address"
}
],
"name": "allowance",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "_value",
"type": "uint256"
}
],
"name": "approve",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_owner",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "decimals",
"outputs": [
{
"internalType": "uint8",
"name": "",
"type": "uint8"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "finishMinting",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_to",
"type": "address"
},
{
"internalType": "uint256",
"name": "_amount",
"type": "uint256"
}
],
"name": "mint",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "mintingFinished",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "symbol",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "totalSupply",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_to",
"type": "address"
},
{
"internalType": "uint256",
"name": "_value",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_from",
"type": "address"
},
{
"internalType": "address",
"name": "_to",
"type": "address"
},
{
"internalType": "uint256",
"name": "_value",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.7+commit.e28d00a7"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "_owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "_spender",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "_value",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "Mint",
"type": "event"
},
{
"anonymous": false,
"inputs": [],
"name": "MintFinished",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "_from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "_to",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "_value",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"stateMutability": "payable",
"type": "fallback"
},
{
"inputs": [
{
"internalType": "address",
"name": "_owner",
"type": "address"
},
{
"internalType": "address",
"name": "_spender",
"type": "address"
}
],
"name": "allowance",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "_value",
"type": "uint256"
}
],
"name": "approve",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_owner",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "decimals",
"outputs": [
{
"internalType": "uint8",
"name": "",
"type": "uint8"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "finishMinting",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_to",
"type": "address"
},
{
"internalType": "uint256",
"name": "_amount",
"type": "uint256"
}
],
"name": "mint",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "mintingFinished",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "symbol",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "totalSupply",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_to",
"type": "address"
},
{
"internalType": "uint256",
"name": "_value",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_from",
"type": "address"
},
{
"internalType": "address",
"name": "_to",
"type": "address"
},
{
"internalType": "uint256",
"name": "_value",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {
"finishMinting()": {
"returns": {
"_0": "True if the operation was successful."
}
},
"mint(address,uint256)": {
"params": {
"_amount": "The amount of tokens to mint.",
"_to": "The address that will recieve the minted tokens."
},
"returns": {
"_0": "A boolean that indicates if the operation was successful."
}
},
"transferOwnership(address)": {
"details": "Allows the current owner to transfer control of the contract to a newOwner.",
"params": {
"newOwner": "The address to transfer ownership to."
}
}
},
"title": "ProofPresaleToken (PROOFP) Standard Mintable ERC20 Token https://github.com/ethereum/EIPs/issues/20 Based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol",
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {
"finishMinting()": {
"notice": "Function to stop minting new tokens."
},
"mint(address,uint256)": {
"notice": "Function to mint tokens"
}
},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/ProofPresaleToken.sol": "ProofPresaleToken"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/ERC20.sol": {
"keccak256": "0x4a84ec2805390f75f0233dd6346c2056c4d76fdbf5e51a0412fb4a762a796da7",
"urls": [
"bzz-raw://818c9f10571e37dbd300e692d5a9a4dc983f3a9fc83892044afe44f2606dab1a",
"dweb:/ipfs/QmZ5bfGr3ZXc1BDKk7rzw7AH6Hen5KDAhxu5iksKVRRS8J"
]
},
"contracts/Ownable.sol": {
"keccak256": "0x9542f4fff403d8690334848253868844cce8156e51a532f109d241a773dd57ad",
"urls": [
"bzz-raw://917b8511920b10d3df93f041862dfe041fe4206fef7733fc01b50efcf84ce065",
"dweb:/ipfs/QmdMxGdQycQ5sasznckxBPXDYaQpMDe5t8rj1QX9oQJoYy"
]
},
"contracts/ProofPresaleToken.sol": {
"keccak256": "0x236bfa2f2f40d884c469c312cb3580a74a8bee847897c4326a658409bee68619",
"urls": [
"bzz-raw://0b4184e465ba902ceb24c0da9c1de21373e013e4e0947b6a060643b931352dc0",
"dweb:/ipfs/QmbCX7o17kguMMaUm5WpZjXWeqa2KTL5JbwaVvYF8UNxtD"
]
},
"contracts/SafeMath.sol": {
"keccak256": "0xe23ffdc3a78d058acd5da65b2e521f860b8502320c63d29fd302aaa468a1a14d",
"urls": [
"bzz-raw://db6abc2eab5f0e33649fe15d0b5cdfe169f4fe6a549b9dc223c12b2478cf8f71",
"dweb:/ipfs/QmSxY953kzV9sWFo8hZAwW3uaAEbTN23W8KYcZKkAN11rg"
]
}
},
"version": 1
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "60566050600b82828239805160001a6073146043577f4e487b7100000000000000000000000000000000000000000000000000000000600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220b787cf7110b5a770d3dd38ec1c9495bd90aa5b412e09ac1a2252233462578e4a64736f6c63430008070033",
"opcodes": "PUSH1 0x56 PUSH1 0x50 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH1 0x0 BYTE PUSH1 0x73 EQ PUSH1 0x43 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST ADDRESS PUSH1 0x0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xB7 DUP8 0xCF PUSH18 0x10B5A770D3DD38EC1C9495BD90AA5B412E09 0xAC BYTE 0x22 MSTORE 0x23 CALLVALUE PUSH3 0x578E4A PUSH5 0x736F6C6343 STOP ADDMOD SMOD STOP CALLER ",
"sourceMap": "124:666:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220b787cf7110b5a770d3dd38ec1c9495bd90aa5b412e09ac1a2252233462578e4a64736f6c63430008070033",
"opcodes": "PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xB7 DUP8 0xCF PUSH18 0x10B5A770D3DD38EC1C9495BD90AA5B412E09 0xAC BYTE 0x22 MSTORE 0x23 CALLVALUE PUSH3 0x578E4A PUSH5 0x736F6C6343 STOP ADDMOD SMOD STOP CALLER ",
"sourceMap": "124:666:0:-:0;;;;;;;;"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "17200",
"executionCost": "97",
"totalCost": "17297"
},
"internal": {
"add(uint256,uint256)": "infinite",
"div(uint256,uint256)": "infinite",
"mul(uint256,uint256)": "infinite",
"sub(uint256,uint256)": "infinite"
}
},
"methodIdentifiers": {}
},
"abi": []
}
{
"compiler": {
"version": "0.8.7+commit.e28d00a7"
},
"language": "Solidity",
"output": {
"abi": [],
"devdoc": {
"details": "Math operations with safety checks that throw on error",
"kind": "dev",
"methods": {},
"title": "SafeMath",
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/SafeMath.sol": "SafeMath"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/SafeMath.sol": {
"keccak256": "0xe23ffdc3a78d058acd5da65b2e521f860b8502320c63d29fd302aaa468a1a14d",
"urls": [
"bzz-raw://db6abc2eab5f0e33649fe15d0b5cdfe169f4fe6a549b9dc223c12b2478cf8f71",
"dweb:/ipfs/QmSxY953kzV9sWFo8hZAwW3uaAEbTN23W8KYcZKkAN11rg"
]
}
},
"version": 1
}
pragma solidity >=0.7.0 <0.9.0;
import './Ownable.sol';
/**
* @title Contactable token
* @dev Basic version of a contactable contract, allowing the owner to provide a string with their
* contact information.
*/
contract Contactable is Ownable {
string public contactInformation;
/**
* @dev Allows the owner to set a string with their contact information.
* @param info The contact information to attach to the contract.
*/
function setContactInformation(string info) onlyOwner{
contactInformation = info;
}
}
pragma solidity >=0.7.0 <0.9.0;
/**
* @title ERC20 interface
* @dev see https://github.com/ethereum/EIPs/issues/20
*/
abstract contract ERC20 {
uint256 public totalSupply;
function balanceOf(address _owner) public virtual view returns (uint256);
function transfer(address _to, uint256 _value) public virtual returns (bool);
function transferFrom(address _from, address _to, uint256 _value) public virtual returns (bool);
function approve(address _spender, uint256 _value) public virtual returns (bool);
function allowance(address _owner, address _spender) public virtual view returns (uint256);
event Transfer(address indexed _from, address indexed _to, uint256 _value);
event Approval(address indexed _owner, address indexed _spender, uint256 _value);
}
pragma solidity >=0.7.0 <0.9.0;
/**
* @title Ownable
* @dev The Ownable contract has an owner address, and provides basic authorization control
* functions, this simplifies the implementation of "user permissions".
*/
contract Ownable {
address public owner;
/**
* @dev The Ownable constructor sets the original `owner` of the contract to the sender
* account.
*/
constructor() public{
owner = msg.sender;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(msg.sender == owner);
_;
}
/**
* @dev Allows the current owner to transfer control of the contract to a newOwner.
* @param newOwner The address to transfer ownership to.
*/
function transferOwnership(address newOwner) onlyOwner public{
if (newOwner != address(0)) {
owner = newOwner;
}
}
}
pragma solidity >=0.7.0 <0.9.0;
import "./Ownable.sol";
/**
* @title Pausable
* @dev Base contract which allows children to implement an emergency stop mechanism.
*/
contract Pausable is Ownable {
event Pause();
event Unpause();
bool public paused = false;
/**
* @dev modifier to allow actions only when the contract IS paused
*/
modifier whenNotPaused() {
require(!paused);
_;
}
/**
* @dev modifier to allow actions only when the contract IS NOT paused
*/
modifier whenPaused {
require(paused);
_;
}
/**
* @dev called by the owner to pause, triggers stopped state
*/
function pause() onlyOwner whenNotPaused public returns (bool) {
paused = true;
emit Pause();
return true;
}
/**
* @dev called by the owner to unpause, returns to normal state
*/
function unpause() onlyOwner whenPaused public returns (bool) {
paused = false;
emit Unpause();
return true;
}
}
pragma solidity >=0.7.0 <0.9.0;
import './SafeMath.sol';
import './Pausable.sol';
import './ProofPresaleToken.sol';
/**
* @title ProofPresale
* ProofPresale allows investors to make
* token purchases and assigns them tokens based
* on a token per ETH rate. Funds collected are forwarded to a wallet
* as they arrive.
*/
contract ProofPresale is Pausable{
using SafeMath for uint256;
// The token being sold
ProofPresaleToken public token;
// address where funds are collected
address public wallet ;
// amount of raised money in wei
uint256 public weiRaised;
// cap above which the crowdsale is ended
uint256 public cap;
uint256 public minInvestment;
uint256 public rate;
bool public isFinalized;
string public contactInformation;
/**
* event for token purchase logging
* @param purchaser who paid for the tokens
* @param beneficiary who got the tokens
* @param value weis paid for purchase
* @param amount amount of tokens purchased
*/
event TokenPurchase(address indexed purchaser, address indexed beneficiary, uint256 value, uint256 amount);
/**
* event for signaling finished crowdsale
*/
event Finalized();
/**
* crowdsale constructor
* @param _wallet who receives invested ether
* @param _minInvestment is the minimum amount of ether that can be sent to the contract
* @param _cap above which the crowdsale is closed
* @param _rate is the amounts of tokens given for 1 ether
*/
constructor(address _wallet, uint256 _minInvestment, uint256 _cap, uint256 _rate) public{
require(_wallet != address(0x0));
require(_minInvestment >= 0);
require(_cap > 0);
token = createTokenContract();
wallet = _wallet;
rate = _rate;
minInvestment = _minInvestment; //minimum investment in wei (=10 ether)
cap = _cap * (10**18); //cap in tokens base units (=295257 tokens)
}
// creates presale token
function createTokenContract() internal returns (ProofPresaleToken) {
return new ProofPresaleToken();
}
// fallback function to buy tokens
fallback() payable external{
buyTokens(msg.sender);
}
/**
* Low level token purchse function
* @param beneficiary will recieve the tokens.
*/
function buyTokens(address beneficiary) public payable whenNotPaused {
require(beneficiary != address(0x0));
require(validPurchase());
uint256 weiAmount = msg.value;
// update weiRaised
weiRaised = weiRaised.add(weiAmount);
// compute amount of tokens created
uint256 tokens = weiAmount.mul(rate);
token.mint(beneficiary, tokens);
emit TokenPurchase(msg.sender, beneficiary, weiAmount, tokens);
forwardFunds();
}
// send ether to the fund collection wallet
function forwardFunds() internal {
payable(wallet).transfer(msg.value);
}
// return true if the transaction can buy tokens
function validPurchase() internal returns (bool) {
uint256 weiAmount = weiRaised.add(msg.value);
bool notSmallAmount = msg.value >= minInvestment;
bool withinCap = weiAmount.mul(rate) <= cap;
return (notSmallAmount && withinCap);
}
//allow owner to finalize the presale once the presale is ended
function finalize() public onlyOwner {
require(!isFinalized);
require(hasEnded());
token.finishMinting();
emit Finalized();
isFinalized = true;
}
function setContactInformation(string memory info) public onlyOwner {
contactInformation = info;
}
//return true if crowdsale event has ended
function hasEnded() public returns (bool) {
bool capReached = (weiRaised.mul(rate) >= cap);
return capReached;
}
}
pragma solidity >=0.7.0 <0.9.0;
import './SafeMath.sol';
import './ERC20.sol';
import './Ownable.sol';
/**
* @title ProofPresaleToken (PROOFP)
* Standard Mintable ERC20 Token
* https://github.com/ethereum/EIPs/issues/20
* Based on code by FirstBlood:
* https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
*/
contract ProofPresaleToken is ERC20, Ownable {
using SafeMath for uint256;
mapping(address => uint) balances ;
mapping (address => mapping (address => uint)) allowed ;
string public constant name = "Proof Presale Token";
string public constant symbol = "PPT";
uint8 public constant decimals = 18;
bool public mintingFinished = false;
event Mint(address indexed to, uint256 amount);
event MintFinished();
constructor() {}
fallback() external payable {
revert();
}
function balanceOf(address _owner) override view public returns (uint256) {
return balances[_owner];
}
function transfer(address _to, uint _value) override public returns (bool) {
balances[msg.sender] = balances[msg.sender].sub(_value);
balances[_to] = balances[_to].add(_value);
emit Transfer(msg.sender, _to, _value);
return true;
}
function transferFrom(address _from, address _to, uint _value) override public returns (bool) {
uint _allowance = allowed[_from][msg.sender];
balances[_to] = balances[_to].add(_value);
balances[_from] = balances[_from].sub(_value);
allowed[_from][msg.sender] = _allowance.sub(_value);
emit Transfer(_from, _to, _value);
return true;
}
function approve(address _spender, uint _value) override public returns (bool) {
allowed[msg.sender][_spender] = _value;
emit Approval(msg.sender, _spender, _value);
return true;
}
function allowance(address _owner, address _spender) override public view returns (uint256) {
return allowed[_owner][_spender];
}
modifier canMint() {
require(!mintingFinished);
_;
}
/**
* Function to mint tokens
* @param _to The address that will recieve the minted tokens.
* @param _amount The amount of tokens to mint.
* @return A boolean that indicates if the operation was successful.
*/
function mint(address _to, uint256 _amount) onlyOwner canMint public returns (bool) {
totalSupply = totalSupply.add(_amount);
balances[_to] = balances[_to].add(_amount);
emit Mint(_to, _amount);
return true;
}
/**
* Function to stop minting new tokens.
* @return True if the operation was successful.
*/
function finishMinting() onlyOwner public returns (bool) {
mintingFinished = true;
emit MintFinished();
return true;
}
}
pragma solidity >=0.7.0 <0.9.0;
/**
* @title SafeMath
* @dev Math operations with safety checks that throw on error
*/
library SafeMath {
function mul(uint256 a, uint256 b) internal returns (uint256) {
uint256 c = a * b;
assert(a == 0 || c / a == b);
return c;
}
function div(uint256 a, uint256 b) internal returns (uint256) {
// assert(b > 0); // Solidity automatically throws when dividing by 0
uint256 c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return c;
}
function sub(uint256 a, uint256 b) internal returns (uint256) {
assert(b <= a);
return a - b;
}
function add(uint256 a, uint256 b) internal returns (uint256) {
uint256 c = a + b;
assert(c >= a);
return c;
}
}
// Right click on the script name and hit "Run" to execute
(async () => {
try {
console.log('Running deployWithEthers script...')
const contractName = 'Storage' // Change this for other contract
const constructorArgs = [] // Put constructor args (if any) here for your contract
// 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 = await factory.deploy(...constructorArgs);
console.log('Contract Address: ', contract.address);
// The contract is NOT deployed yet; we must wait until it is mined
await contract.deployed()
console.log('Deployment successful.')
} catch (e) {
console.log(e.message)
}
})()
// Right click on the script name and hit "Run" to execute
(async () => {
try {
console.log('Running deployWithWeb3 script...')
const contractName = 'Storage' // Change this for other contract
const constructorArgs = [] // Put constructor args (if any) here for your contract
// 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: constructorArgs
})
const newContractInstance = await contract.send({
from: accounts[0],
gas: 1500000,
gasPrice: '30000000000'
})
console.log('Contract deployed at address: ', newContractInstance.options.address)
} catch (e) {
console.log(e.message)
}
})()
// 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 "../contracts/3_Ballot.sol";
contract BallotTest {
bytes32[] proposalNames;
Ballot ballotToTest;
function beforeAll () public {
proposalNames.push(bytes32("candidate1"));
ballotToTest = new Ballot(proposalNames);
}
function checkWinningProposal () public {
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;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment