Skip to content

Instantly share code, notes, and snippets.

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 landtanin/e330a449a3f2dcd99dc5ebd6cf2c671a to your computer and use it in GitHub Desktop.
Save landtanin/e330a449a3f2dcd99dc5ebd6cf2c671a 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.9+commit.e5eed63a.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address sender,
address recipient,
uint256 amount
) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}
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 Message {
string public myMessage;
function setMessage(string memory x) public {
myMessage = x;
}
function getMessage() public view returns (string memory) {
return myMessage;
}
}
// 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;
}
}
pragma solidity >=0.4.24;
contract StringBytes {
// Static byte arrays, Both declarations will create array with 3 byte elements
bytes3 fixedByteArray; // The type byte[] is an array of bytes, but due to padding rules,
//it wastes 31 bytes of space for each element (except in storage).
//It is better to use the bytes type instead.
bytes3 bytes3Array;
// Dynamic bytes arrays
// byte[] dynamicByteArray;
bytes bytesArray;
// String variable
string string1 = "testing";
// Converts the bytes type to string type
function conversionTest() public pure returns(string memory) {
bytes memory string2 = "Udacity"; // dynamic memory bytes type
string memory converted = string(string2);
return converted;
}
// Retrieves the element at specified index
// Cannot do with strings, hence converting to bytes
// Convert string to bytes
function getByteElementAt(uint index) public view returns(bytes1) {
bytes memory bytesData = bytes(string1);
// Get the element at the specified index
bytes1 element = bytesData[index];
return element;
}
function getStringElementAt(uint index, string memory message) public view returns(string memory) {
bytes memory bytesData = bytes(message);
// Get the element at the specified index
bytes1 element = bytesData[index];
// bytes32 memory toConvert = element;
string memory character = string(abi.encodePacked(element));
return character;
}
function testing() internal pure {
// uint8 need to be explicitly converted to byte type
// Converting to byte type, since fixedByteArray
// is a byte type array
// Assignment NOT allowed as bytes3 Array is a static-storage Array
// is readonly
// bytes3Array = "fu";
// bytes1 aa = bytes3Array[0];
// Memory dynamic bytes Array
bytes memory memoryBytes; // dynamic memory array
memoryBytes = new bytes(20); //allocating memory
memoryBytes[0] = "a";
// Push will give compiler error as push() allowed for storage only
//memoryBytes.push('c');
}
function stringExamples() public pure returns(string memory) {
string memory string3 = "abcde"; // string array in memory
return string3;
}
}
pragma solidity >=0.4.24;
contract MappingsContract {
// Creates in Storage
mapping(string => string) relations;
// Add a relation
function addRelation(string memory name, string memory relation) public {
// Store the relation
relations[name] = relation;
}
// Returns a Relation
function getRelation(string memory name) public view returns (string memory){
return relations[name];
}
// Remove the key value pair from the mapping
function removeRelation(string memory name) public {
delete(relations[name]);
}
}
pragma solidity >=0.4.24;
contract EnumsContract {
// Create an Enumeration
enum names {Joe, Brandy, Rachna, Jessica}
// get the value at specified index
function getNames(uint8 arg) public pure returns (string memory){
if(arg == uint8(names.Joe)) return "Joe";
if(arg == uint8(names.Brandy)) return "Brandy";
if(arg == uint8(names.Rachna)) return "Rachna";
if(arg == uint8(names.Jessica)) return "Jessica";
}
}
pragma solidity >=0.4.24;
contract StructsContract {
struct Man {
uint8 height;
}
// Family
struct Family {
bytes32 lastName;
uint8 houseNo;
uint16 age;
Man f;
}
// Creating an array of type family..which is a struct
Family[] myFamily;
// Getting a lastName, and returning complete
// family details
// We cannot compare 2 strings in solidity...
function getName(bytes32 name) public view returns (bytes32, uint8, uint16) {
// Search the array
for(uint8 i = 0; i < myFamily.length; i++){
if(name == myFamily[i].lastName) {
return (myFamily[i].lastName,uint8(myFamily[i].houseNo), myFamily[i].age);
}
}
}
// Structs Cannot be passed as argument so we are passing all elements/attributes of struct as args
function addName(bytes32 _lastName, uint8 _value, uint16 _age) public returns (bool) {
// Declare the struct variable in memory...
Family memory newFamily;
// use the . notation to access members of a struct
newFamily.lastName = _lastName;
newFamily.houseNo = _value;
newFamily.age = _age;
// Push the newFamily struct...into our myFamily array
myFamily.push(newFamily);
return true;
}
}
pragma solidity >=0.4.24;
contract GlobalVariables {
string public lastCaller = "not-set";
// Demonstrates the use of the ether subdenominations
function etherUnitsTest() public pure returns(bool) {
// True
bool value = (1 ether == 1000000000 gwei);
return value;
}
// Demonstrates the use of the time units
function timeUnits() public view returns (bool) {
uint timeNow = block.timestamp; //storing current time using now
//returns block time in seconds since 1970
return timeNow == 1000 days; // converting 1000 literal to days, using the suffix days
}
// Demonstrates the use of block object
function getBlockInformation() public view returns (uint number, bytes32 hash, address coinbase, uint difficulty) {
number = block.number; // Previous block
hash = blockhash(number - 1); // -1 because excluding current...same as block.blockhash()
// Current block
coinbase = block.coinbase;
difficulty = block.difficulty;
}
// Demonstrates the use of the msg object
function getMsgInformation() public view returns (bytes memory data, bytes4 sig, address sender) {
data = msg.data;
sig = msg.sig;
sender = msg.sender;
}
}
pragma solidity >=0.4.24;
contract ExceptionsContract {
// Public variable lastCaller, with a value of none
string public lastCaller = "none";
// Function revertBehavior that takes in a name as an argument,
//and sets the lastCaller variable to this argument received
function revertBehavior(string memory name) public returns (bool) {
lastCaller = name;
// Check if length of the string is zero
// If the argument received has zero length, it throws an exception...
// Once an exception is thrown, the variable lastCaller rolls back to its initial value
if (bytes(name).length == 0) {
revert("The length of the string is zero");
}
// This is the same thing...just using require to check the length of the input string.
// The code will only be exceuted if the length is greater than 0
// The above lines of code may be replaced with this
require(bytes(name).length > 0, "The length of the string is zero");
return true;
}
}
// So, what is going on is that in the function revertBehavior
// lastCaller is being changed to the input argument
// and then an exception is thrown, and the lastCaller reverts back
// to its orginial value, thus nullifying the effect
{
"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": "60806040526040518060400160405280600181526020016002815250600090600261002b92919061003e565b5034801561003857600080fd5b5061009b565b826003810192821561006d579160200282015b8281111561006c578251825591602001919060010190610051565b5b50905061007a919061007e565b5090565b5b8082111561009757600081600090555060010161007f565b5090565b61048b806100aa6000396000f3fe608060405234801561001057600080fd5b506004361061002b5760003560e01c80632283bffd14610030575b600080fd5b61003861003a565b005b600867ffffffffffffffff81111561005557610054610426565b5b6040519080825280602002602001820160405280156100835781602001602082028036833780820191505090505b506004908051906020019061009992919061020b565b506040518060600160405280600160000b60000b8152602001600260000b8152602001600360000b81525060039060036100d49291906102b1565b50606080600867ffffffffffffffff8111156100f3576100f2610426565b5b6040519080825280602002602001820160405280156101215781602001602082028036833780820191505090505b509150604051806060016040528060018152602001600281526020016003815250600090600361015292919061035b565b5061015b61039b565b6040518060400160405280600181526020016002815250905060008160006002811061018a576101896103f7565b5b6020020181815250506001816001600281106101a9576101a86103f7565b5b6020020181815250506001826000815181106101c8576101c76103f7565b5b602002602001019060ff16908160ff16815250506002826001815181106101f2576101f16103f7565b5b602002602001019060ff16908160ff1681525050505050565b82805482825590600052602060002090601f016020900481019282156102a05791602002820160005b8382111561027157835183826101000a81548160ff0219169083151502179055509260200192600101602081600001049283019260010302610234565b801561029e5782816101000a81549060ff0219169055600101602081600001049283019260010302610271565b505b5090506102ad91906103bd565b5090565b82805482825590600052602060002090601f0160209004810192821561034a5791602002820160005b8382111561031b57835183826101000a81548160ff021916908360000b60ff16021790555092602001926001016020816000010492830192600103026102da565b80156103485782816101000a81549060ff021916905560010160208160000104928301926001030261031b565b505b50905061035791906103bd565b5090565b826003810192821561038a579160200282015b8281111561038957825182559160200191906001019061036e565b5b50905061039791906103da565b5090565b6040518060400160405280600290602082028036833780820191505090505090565b5b808211156103d65760008160009055506001016103be565b5090565b5b808211156103f35760008160009055506001016103db565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fdfea264697066735822122077a1289f22d8dea0614a8039a0e4e32cc8fb7ab8a122c3d176804215c0ff693e64736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x2 DUP2 MSTORE POP PUSH1 0x0 SWAP1 PUSH1 0x2 PUSH2 0x2B SWAP3 SWAP2 SWAP1 PUSH2 0x3E JUMP JUMPDEST POP CALLVALUE DUP1 ISZERO PUSH2 0x38 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x9B JUMP JUMPDEST DUP3 PUSH1 0x3 DUP2 ADD SWAP3 DUP3 ISZERO PUSH2 0x6D JUMPI SWAP2 PUSH1 0x20 MUL DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x6C JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x51 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x7A SWAP2 SWAP1 PUSH2 0x7E JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x97 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x7F JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH2 0x48B DUP1 PUSH2 0xAA 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 0x2B JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x2283BFFD EQ PUSH2 0x30 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x38 PUSH2 0x3A JUMP JUMPDEST STOP JUMPDEST PUSH1 0x8 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x55 JUMPI PUSH2 0x54 PUSH2 0x426 JUMP JUMPDEST JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x83 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY DUP1 DUP3 ADD SWAP2 POP POP SWAP1 POP JUMPDEST POP PUSH1 0x4 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x99 SWAP3 SWAP2 SWAP1 PUSH2 0x20B JUMP JUMPDEST POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1 PUSH1 0x0 SIGNEXTEND PUSH1 0x0 SIGNEXTEND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x2 PUSH1 0x0 SIGNEXTEND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x3 PUSH1 0x0 SIGNEXTEND DUP2 MSTORE POP PUSH1 0x3 SWAP1 PUSH1 0x3 PUSH2 0xD4 SWAP3 SWAP2 SWAP1 PUSH2 0x2B1 JUMP JUMPDEST POP PUSH1 0x60 DUP1 PUSH1 0x8 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xF3 JUMPI PUSH2 0xF2 PUSH2 0x426 JUMP JUMPDEST JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x121 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY DUP1 DUP3 ADD SWAP2 POP POP SWAP1 POP JUMPDEST POP SWAP2 POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x2 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x3 DUP2 MSTORE POP PUSH1 0x0 SWAP1 PUSH1 0x3 PUSH2 0x152 SWAP3 SWAP2 SWAP1 PUSH2 0x35B JUMP JUMPDEST POP PUSH2 0x15B PUSH2 0x39B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x2 DUP2 MSTORE POP SWAP1 POP PUSH1 0x0 DUP2 PUSH1 0x0 PUSH1 0x2 DUP2 LT PUSH2 0x18A JUMPI PUSH2 0x189 PUSH2 0x3F7 JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL ADD DUP2 DUP2 MSTORE POP POP PUSH1 0x1 DUP2 PUSH1 0x1 PUSH1 0x2 DUP2 LT PUSH2 0x1A9 JUMPI PUSH2 0x1A8 PUSH2 0x3F7 JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL ADD DUP2 DUP2 MSTORE POP POP PUSH1 0x1 DUP3 PUSH1 0x0 DUP2 MLOAD DUP2 LT PUSH2 0x1C8 JUMPI PUSH2 0x1C7 PUSH2 0x3F7 JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD SWAP1 PUSH1 0xFF AND SWAP1 DUP2 PUSH1 0xFF AND DUP2 MSTORE POP POP PUSH1 0x2 DUP3 PUSH1 0x1 DUP2 MLOAD DUP2 LT PUSH2 0x1F2 JUMPI PUSH2 0x1F1 PUSH2 0x3F7 JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD SWAP1 PUSH1 0xFF AND SWAP1 DUP2 PUSH1 0xFF AND DUP2 MSTORE POP POP POP POP POP JUMP JUMPDEST DUP3 DUP1 SLOAD DUP3 DUP3 SSTORE SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 ISZERO PUSH2 0x2A0 JUMPI SWAP2 PUSH1 0x20 MUL DUP3 ADD PUSH1 0x0 JUMPDEST DUP4 DUP3 GT ISZERO PUSH2 0x271 JUMPI DUP4 MLOAD DUP4 DUP3 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP SWAP3 PUSH1 0x20 ADD SWAP3 PUSH1 0x1 ADD PUSH1 0x20 DUP2 PUSH1 0x0 ADD DIV SWAP3 DUP4 ADD SWAP3 PUSH1 0x1 SUB MUL PUSH2 0x234 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x29E JUMPI DUP3 DUP2 PUSH2 0x100 EXP DUP2 SLOAD SWAP1 PUSH1 0xFF MUL NOT AND SWAP1 SSTORE PUSH1 0x1 ADD PUSH1 0x20 DUP2 PUSH1 0x0 ADD DIV SWAP3 DUP4 ADD SWAP3 PUSH1 0x1 SUB MUL PUSH2 0x271 JUMP JUMPDEST POP JUMPDEST POP SWAP1 POP PUSH2 0x2AD SWAP2 SWAP1 PUSH2 0x3BD JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST DUP3 DUP1 SLOAD DUP3 DUP3 SSTORE SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 ISZERO PUSH2 0x34A JUMPI SWAP2 PUSH1 0x20 MUL DUP3 ADD PUSH1 0x0 JUMPDEST DUP4 DUP3 GT ISZERO PUSH2 0x31B JUMPI DUP4 MLOAD DUP4 DUP3 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 PUSH1 0x0 SIGNEXTEND PUSH1 0xFF AND MUL OR SWAP1 SSTORE POP SWAP3 PUSH1 0x20 ADD SWAP3 PUSH1 0x1 ADD PUSH1 0x20 DUP2 PUSH1 0x0 ADD DIV SWAP3 DUP4 ADD SWAP3 PUSH1 0x1 SUB MUL PUSH2 0x2DA JUMP JUMPDEST DUP1 ISZERO PUSH2 0x348 JUMPI DUP3 DUP2 PUSH2 0x100 EXP DUP2 SLOAD SWAP1 PUSH1 0xFF MUL NOT AND SWAP1 SSTORE PUSH1 0x1 ADD PUSH1 0x20 DUP2 PUSH1 0x0 ADD DIV SWAP3 DUP4 ADD SWAP3 PUSH1 0x1 SUB MUL PUSH2 0x31B JUMP JUMPDEST POP JUMPDEST POP SWAP1 POP PUSH2 0x357 SWAP2 SWAP1 PUSH2 0x3BD JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST DUP3 PUSH1 0x3 DUP2 ADD SWAP3 DUP3 ISZERO PUSH2 0x38A JUMPI SWAP2 PUSH1 0x20 MUL DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x389 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x36E JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x397 SWAP2 SWAP1 PUSH2 0x3DA JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x2 SWAP1 PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY DUP1 DUP3 ADD SWAP2 POP POP SWAP1 POP POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x3D6 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x3BE JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x3F3 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x3DB JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH24 0xA1289F22D8DEA0614A8039A0E4E32CC8FB7AB8A122C3D176 DUP1 TIMESTAMP ISZERO 0xC0 SELFDESTRUCT PUSH10 0x3E64736F6C6343000807 STOP CALLER ",
"sourceMap": "27:1851:0:-:0;;;142:41;;;;;;;;178:1;142:41;;;;181:1;142:41;;;;;;;;;;;:::i;:::-;;27:1851;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@testArray_109": {
"entryPoint": 58,
"id": 109,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x32": {
"entryPoint": 1015,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 1062,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:376:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "35:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "52:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "55:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "45:6:1"
},
"nodeType": "YulFunctionCall",
"src": "45:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "45:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "149:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "152:4:1",
"type": "",
"value": "0x32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "142:6:1"
},
"nodeType": "YulFunctionCall",
"src": "142:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "142:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "173:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "176:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "166:6:1"
},
"nodeType": "YulFunctionCall",
"src": "166:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "166:15:1"
}
]
},
"name": "panic_error_0x32",
"nodeType": "YulFunctionDefinition",
"src": "7:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "221:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "238:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "241:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "231:6:1"
},
"nodeType": "YulFunctionCall",
"src": "231:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "231:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "335:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "338:4:1",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "328:6:1"
},
"nodeType": "YulFunctionCall",
"src": "328:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "328:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "359:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "362:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "352:6:1"
},
"nodeType": "YulFunctionCall",
"src": "352:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "352:15:1"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "193:180:1"
}
]
},
"contents": "{\n\n function panic_error_0x32() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x32)\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}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b506004361061002b5760003560e01c80632283bffd14610030575b600080fd5b61003861003a565b005b600867ffffffffffffffff81111561005557610054610426565b5b6040519080825280602002602001820160405280156100835781602001602082028036833780820191505090505b506004908051906020019061009992919061020b565b506040518060600160405280600160000b60000b8152602001600260000b8152602001600360000b81525060039060036100d49291906102b1565b50606080600867ffffffffffffffff8111156100f3576100f2610426565b5b6040519080825280602002602001820160405280156101215781602001602082028036833780820191505090505b509150604051806060016040528060018152602001600281526020016003815250600090600361015292919061035b565b5061015b61039b565b6040518060400160405280600181526020016002815250905060008160006002811061018a576101896103f7565b5b6020020181815250506001816001600281106101a9576101a86103f7565b5b6020020181815250506001826000815181106101c8576101c76103f7565b5b602002602001019060ff16908160ff16815250506002826001815181106101f2576101f16103f7565b5b602002602001019060ff16908160ff1681525050505050565b82805482825590600052602060002090601f016020900481019282156102a05791602002820160005b8382111561027157835183826101000a81548160ff0219169083151502179055509260200192600101602081600001049283019260010302610234565b801561029e5782816101000a81549060ff0219169055600101602081600001049283019260010302610271565b505b5090506102ad91906103bd565b5090565b82805482825590600052602060002090601f0160209004810192821561034a5791602002820160005b8382111561031b57835183826101000a81548160ff021916908360000b60ff16021790555092602001926001016020816000010492830192600103026102da565b80156103485782816101000a81549060ff021916905560010160208160000104928301926001030261031b565b505b50905061035791906103bd565b5090565b826003810192821561038a579160200282015b8281111561038957825182559160200191906001019061036e565b5b50905061039791906103da565b5090565b6040518060400160405280600290602082028036833780820191505090505090565b5b808211156103d65760008160009055506001016103be565b5090565b5b808211156103f35760008160009055506001016103db565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fdfea264697066735822122077a1289f22d8dea0614a8039a0e4e32cc8fb7ab8a122c3d176804215c0ff693e64736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x2B JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x2283BFFD EQ PUSH2 0x30 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x38 PUSH2 0x3A JUMP JUMPDEST STOP JUMPDEST PUSH1 0x8 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x55 JUMPI PUSH2 0x54 PUSH2 0x426 JUMP JUMPDEST JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x83 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY DUP1 DUP3 ADD SWAP2 POP POP SWAP1 POP JUMPDEST POP PUSH1 0x4 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x99 SWAP3 SWAP2 SWAP1 PUSH2 0x20B JUMP JUMPDEST POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1 PUSH1 0x0 SIGNEXTEND PUSH1 0x0 SIGNEXTEND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x2 PUSH1 0x0 SIGNEXTEND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x3 PUSH1 0x0 SIGNEXTEND DUP2 MSTORE POP PUSH1 0x3 SWAP1 PUSH1 0x3 PUSH2 0xD4 SWAP3 SWAP2 SWAP1 PUSH2 0x2B1 JUMP JUMPDEST POP PUSH1 0x60 DUP1 PUSH1 0x8 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xF3 JUMPI PUSH2 0xF2 PUSH2 0x426 JUMP JUMPDEST JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x121 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY DUP1 DUP3 ADD SWAP2 POP POP SWAP1 POP JUMPDEST POP SWAP2 POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x2 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x3 DUP2 MSTORE POP PUSH1 0x0 SWAP1 PUSH1 0x3 PUSH2 0x152 SWAP3 SWAP2 SWAP1 PUSH2 0x35B JUMP JUMPDEST POP PUSH2 0x15B PUSH2 0x39B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x2 DUP2 MSTORE POP SWAP1 POP PUSH1 0x0 DUP2 PUSH1 0x0 PUSH1 0x2 DUP2 LT PUSH2 0x18A JUMPI PUSH2 0x189 PUSH2 0x3F7 JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL ADD DUP2 DUP2 MSTORE POP POP PUSH1 0x1 DUP2 PUSH1 0x1 PUSH1 0x2 DUP2 LT PUSH2 0x1A9 JUMPI PUSH2 0x1A8 PUSH2 0x3F7 JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL ADD DUP2 DUP2 MSTORE POP POP PUSH1 0x1 DUP3 PUSH1 0x0 DUP2 MLOAD DUP2 LT PUSH2 0x1C8 JUMPI PUSH2 0x1C7 PUSH2 0x3F7 JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD SWAP1 PUSH1 0xFF AND SWAP1 DUP2 PUSH1 0xFF AND DUP2 MSTORE POP POP PUSH1 0x2 DUP3 PUSH1 0x1 DUP2 MLOAD DUP2 LT PUSH2 0x1F2 JUMPI PUSH2 0x1F1 PUSH2 0x3F7 JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD SWAP1 PUSH1 0xFF AND SWAP1 DUP2 PUSH1 0xFF AND DUP2 MSTORE POP POP POP POP POP JUMP JUMPDEST DUP3 DUP1 SLOAD DUP3 DUP3 SSTORE SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 ISZERO PUSH2 0x2A0 JUMPI SWAP2 PUSH1 0x20 MUL DUP3 ADD PUSH1 0x0 JUMPDEST DUP4 DUP3 GT ISZERO PUSH2 0x271 JUMPI DUP4 MLOAD DUP4 DUP3 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP SWAP3 PUSH1 0x20 ADD SWAP3 PUSH1 0x1 ADD PUSH1 0x20 DUP2 PUSH1 0x0 ADD DIV SWAP3 DUP4 ADD SWAP3 PUSH1 0x1 SUB MUL PUSH2 0x234 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x29E JUMPI DUP3 DUP2 PUSH2 0x100 EXP DUP2 SLOAD SWAP1 PUSH1 0xFF MUL NOT AND SWAP1 SSTORE PUSH1 0x1 ADD PUSH1 0x20 DUP2 PUSH1 0x0 ADD DIV SWAP3 DUP4 ADD SWAP3 PUSH1 0x1 SUB MUL PUSH2 0x271 JUMP JUMPDEST POP JUMPDEST POP SWAP1 POP PUSH2 0x2AD SWAP2 SWAP1 PUSH2 0x3BD JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST DUP3 DUP1 SLOAD DUP3 DUP3 SSTORE SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 ISZERO PUSH2 0x34A JUMPI SWAP2 PUSH1 0x20 MUL DUP3 ADD PUSH1 0x0 JUMPDEST DUP4 DUP3 GT ISZERO PUSH2 0x31B JUMPI DUP4 MLOAD DUP4 DUP3 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 PUSH1 0x0 SIGNEXTEND PUSH1 0xFF AND MUL OR SWAP1 SSTORE POP SWAP3 PUSH1 0x20 ADD SWAP3 PUSH1 0x1 ADD PUSH1 0x20 DUP2 PUSH1 0x0 ADD DIV SWAP3 DUP4 ADD SWAP3 PUSH1 0x1 SUB MUL PUSH2 0x2DA JUMP JUMPDEST DUP1 ISZERO PUSH2 0x348 JUMPI DUP3 DUP2 PUSH2 0x100 EXP DUP2 SLOAD SWAP1 PUSH1 0xFF MUL NOT AND SWAP1 SSTORE PUSH1 0x1 ADD PUSH1 0x20 DUP2 PUSH1 0x0 ADD DIV SWAP3 DUP4 ADD SWAP3 PUSH1 0x1 SUB MUL PUSH2 0x31B JUMP JUMPDEST POP JUMPDEST POP SWAP1 POP PUSH2 0x357 SWAP2 SWAP1 PUSH2 0x3BD JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST DUP3 PUSH1 0x3 DUP2 ADD SWAP3 DUP3 ISZERO PUSH2 0x38A JUMPI SWAP2 PUSH1 0x20 MUL DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x389 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x36E JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x397 SWAP2 SWAP1 PUSH2 0x3DA JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x2 SWAP1 PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY DUP1 DUP3 ADD SWAP2 POP POP SWAP1 POP POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x3D6 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x3BE JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x3F3 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x3DB JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH24 0xA1289F22D8DEA0614A8039A0E4E32CC8FB7AB8A122C3D176 DUP1 TIMESTAMP ISZERO 0xC0 SELFDESTRUCT PUSH10 0x3E64736F6C6343000807 STOP CALLER ",
"sourceMap": "27:1851:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;351:1525;;;:::i;:::-;;;495:1;484:13;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;465:16;:32;;;;;;;;;;;;:::i;:::-;;635:31;;;;;;;;659:1;635:31;;;;;;;;662:1;635:31;;;;;;664:1;635:31;;;;;:15;:31;;;;;;;:::i;:::-;;739:26;911:33;1097:1;1085:14;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1071:28;;1446:32;;;;;;;;1471:1;1446:32;;;;1474:1;1446:32;;;;1476:1;1446:32;;;:14;:32;;;;;;;:::i;:::-;;1521:33;;:::i;:::-;1671:31;;;;;;;;1697:1;1671:31;;;;1700:1;1671:31;;;;;1763:1;1740:17;1758:1;1740:20;;;;;;;:::i;:::-;;;;;:24;;;;;1797:1;1774:17;1792:1;1774:20;;;;;;;:::i;:::-;;;;;:24;;;;;1833:1;1809:18;1828:1;1809:21;;;;;;;;:::i;:::-;;;;;;;:25;;;;;;;;;;;1868:1;1844:18;1863:1;1844:21;;;;;;;;:::i;:::-;;;;;;;:25;;;;;;;;;;;379:1497;;;351:1525::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:180:1:-;55:77;52:1;45:88;152:4;149:1;142:15;176:4;173:1;166:15;193:180;241:77;238:1;231:88;338:4;335:1;328:15;362:4;359:1;352:15"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "232600",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"testArray()": "infinite"
}
},
"methodIdentifiers": {
"testArray()": "2283bffd"
}
},
"abi": [
{
"inputs": [],
"name": "testArray",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.7+commit.e28d00a7"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [],
"name": "testArray",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/4_Arrays.sol": "ArraysContract"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/4_Arrays.sol": {
"keccak256": "0xcaa38c7e138b7b32d0833e9b23f8e2c9e094f885700bc626dd8c2391239cba90",
"urls": [
"bzz-raw://00cf74bdc8fb512857f948427a4090c2479570d4fac3809800fa151f97b07818",
"dweb:/ipfs/QmZ6W9BJvRwkfK7inNBc9ArYTcrggU94hUkmDgmTVRcMqP"
]
}
},
"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": "6080604052600a60005534801561001557600080fd5b506101c3806100256000396000f3fe6080604052600436106100295760003560e01c80631998aeef1461002e578063def1810114610038575b600080fd5b610036610063565b005b34801561004457600080fd5b5061004d6100b0565b60405161005a9190610108565b60405180910390f35b60005434116100a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161009e906100e8565b60405180910390fd5b34600081905550565b60005481565b60006100c3602183610123565b91506100ce8261013e565b604082019050919050565b6100e281610134565b82525050565b60006020820190508181036000830152610101816100b6565b9050919050565b600060208201905061011d60008301846100d9565b92915050565b600082825260208201905092915050565b6000819050919050565b7f4d696e696d756d20626964206f6620313020576569206973207265717569726560008201527f640000000000000000000000000000000000000000000000000000000000000060208201525056fea2646970667358221220f2e4f71a13a598721ed166cf2c2fb06c72a3e2f8396bb4d8af18e4507fa84f0764736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0xA PUSH1 0x0 SSTORE CALLVALUE DUP1 ISZERO PUSH2 0x15 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x1C3 DUP1 PUSH2 0x25 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x29 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x1998AEEF EQ PUSH2 0x2E JUMPI DUP1 PUSH4 0xDEF18101 EQ PUSH2 0x38 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x36 PUSH2 0x63 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x44 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x4D PUSH2 0xB0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x5A SWAP2 SWAP1 PUSH2 0x108 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 SLOAD CALLVALUE GT PUSH2 0xA7 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x9E SWAP1 PUSH2 0xE8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST CALLVALUE PUSH1 0x0 DUP2 SWAP1 SSTORE POP JUMP JUMPDEST PUSH1 0x0 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH2 0xC3 PUSH1 0x21 DUP4 PUSH2 0x123 JUMP JUMPDEST SWAP2 POP PUSH2 0xCE DUP3 PUSH2 0x13E JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xE2 DUP2 PUSH2 0x134 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x101 DUP2 PUSH2 0xB6 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x11D PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xD9 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4D696E696D756D20626964206F66203130205765692069732072657175697265 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6400000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 CALLCODE 0xE4 0xF7 BYTE SGT 0xA5 SWAP9 PUSH19 0x1ED166CF2C2FB06C72A3E2F8396BB4D8AF18E4 POP PUSH32 0xA84F0764736F6C63430008070033000000000000000000000000000000000000 ",
"sourceMap": "27:376:0:-:0;;;140:2;115:27;;27:376;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@bid_30": {
"entryPoint": 99,
"id": 30,
"parameterSlots": 0,
"returnSlots": 0
},
"@currentBid_4": {
"entryPoint": 176,
"id": 4,
"parameterSlots": 0,
"returnSlots": 0
},
"abi_encode_t_stringliteral_e1d916511749c6f8d79a9a7278ca0ea64efd62f117ade8ac4b1dab867521c476_to_t_string_memory_ptr_fromStack": {
"entryPoint": 182,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 217,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_stringliteral_e1d916511749c6f8d79a9a7278ca0ea64efd62f117ade8ac4b1dab867521c476__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 232,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 264,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 291,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 308,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"store_literal_in_memory_e1d916511749c6f8d79a9a7278ca0ea64efd62f117ade8ac4b1dab867521c476": {
"entryPoint": 318,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:1637:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "153:220:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "163:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "229:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "234:2:1",
"type": "",
"value": "33"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "170:58:1"
},
"nodeType": "YulFunctionCall",
"src": "170:67:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "163:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "335:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_e1d916511749c6f8d79a9a7278ca0ea64efd62f117ade8ac4b1dab867521c476",
"nodeType": "YulIdentifier",
"src": "246:88:1"
},
"nodeType": "YulFunctionCall",
"src": "246:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "246:93:1"
},
{
"nodeType": "YulAssignment",
"src": "348:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "359:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "364:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "355:3:1"
},
"nodeType": "YulFunctionCall",
"src": "355:12:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "348:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_e1d916511749c6f8d79a9a7278ca0ea64efd62f117ade8ac4b1dab867521c476_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "141:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "149:3:1",
"type": ""
}
],
"src": "7:366:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "444:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "461:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "484:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "466:17:1"
},
"nodeType": "YulFunctionCall",
"src": "466:24:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "454:6:1"
},
"nodeType": "YulFunctionCall",
"src": "454:37:1"
},
"nodeType": "YulExpressionStatement",
"src": "454:37:1"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "432:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "439:3:1",
"type": ""
}
],
"src": "379:118:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "674:248:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "684:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "696:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "707:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "692:3:1"
},
"nodeType": "YulFunctionCall",
"src": "692:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "684:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "731:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "742:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "727:3:1"
},
"nodeType": "YulFunctionCall",
"src": "727:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "750:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "756:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "746:3:1"
},
"nodeType": "YulFunctionCall",
"src": "746:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "720:6:1"
},
"nodeType": "YulFunctionCall",
"src": "720:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "720:47:1"
},
{
"nodeType": "YulAssignment",
"src": "776:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "910:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_e1d916511749c6f8d79a9a7278ca0ea64efd62f117ade8ac4b1dab867521c476_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "784:124:1"
},
"nodeType": "YulFunctionCall",
"src": "784:131:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "776:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_e1d916511749c6f8d79a9a7278ca0ea64efd62f117ade8ac4b1dab867521c476__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "654:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "669:4:1",
"type": ""
}
],
"src": "503:419:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1026:124:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1036:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1048:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1059:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1044:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1044:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1036:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1116:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1129:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1140:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1125:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1125:17:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "1072:43:1"
},
"nodeType": "YulFunctionCall",
"src": "1072:71:1"
},
"nodeType": "YulExpressionStatement",
"src": "1072:71:1"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "998:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1010:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1021:4:1",
"type": ""
}
],
"src": "928:222:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1252:73:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1269:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1274:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1262:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1262:19:1"
},
"nodeType": "YulExpressionStatement",
"src": "1262:19:1"
},
{
"nodeType": "YulAssignment",
"src": "1290:29:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1309:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1314:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1305:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1305:14:1"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "1290:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1224:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1229:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "1240:11:1",
"type": ""
}
],
"src": "1156:169:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1376:32:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1386:16:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "1397:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1386:7:1"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1358:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1368:7:1",
"type": ""
}
],
"src": "1331:77:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1520:114:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1542:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1550:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1538:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1538:14:1"
},
{
"hexValue": "4d696e696d756d20626964206f66203130205765692069732072657175697265",
"kind": "string",
"nodeType": "YulLiteral",
"src": "1554:34:1",
"type": "",
"value": "Minimum bid of 10 Wei is require"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1531:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1531:58:1"
},
"nodeType": "YulExpressionStatement",
"src": "1531:58:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1610:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1618:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1606:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1606:15:1"
},
{
"hexValue": "64",
"kind": "string",
"nodeType": "YulLiteral",
"src": "1623:3:1",
"type": "",
"value": "d"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1599:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1599:28:1"
},
"nodeType": "YulExpressionStatement",
"src": "1599:28:1"
}
]
},
"name": "store_literal_in_memory_e1d916511749c6f8d79a9a7278ca0ea64efd62f117ade8ac4b1dab867521c476",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "1512:6:1",
"type": ""
}
],
"src": "1414:220:1"
}
]
},
"contents": "{\n\n function abi_encode_t_stringliteral_e1d916511749c6f8d79a9a7278ca0ea64efd62f117ade8ac4b1dab867521c476_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 33)\n store_literal_in_memory_e1d916511749c6f8d79a9a7278ca0ea64efd62f117ade8ac4b1dab867521c476(pos)\n end := add(pos, 64)\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_stringliteral_e1d916511749c6f8d79a9a7278ca0ea64efd62f117ade8ac4b1dab867521c476__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_e1d916511749c6f8d79a9a7278ca0ea64efd62f117ade8ac4b1dab867521c476_to_t_string_memory_ptr_fromStack( 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 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_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function store_literal_in_memory_e1d916511749c6f8d79a9a7278ca0ea64efd62f117ade8ac4b1dab867521c476(memPtr) {\n\n mstore(add(memPtr, 0), \"Minimum bid of 10 Wei is require\")\n\n mstore(add(memPtr, 32), \"d\")\n\n }\n\n}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "6080604052600436106100295760003560e01c80631998aeef1461002e578063def1810114610038575b600080fd5b610036610063565b005b34801561004457600080fd5b5061004d6100b0565b60405161005a9190610108565b60405180910390f35b60005434116100a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161009e906100e8565b60405180910390fd5b34600081905550565b60005481565b60006100c3602183610123565b91506100ce8261013e565b604082019050919050565b6100e281610134565b82525050565b60006020820190508181036000830152610101816100b6565b9050919050565b600060208201905061011d60008301846100d9565b92915050565b600082825260208201905092915050565b6000819050919050565b7f4d696e696d756d20626964206f6620313020576569206973207265717569726560008201527f640000000000000000000000000000000000000000000000000000000000000060208201525056fea2646970667358221220f2e4f71a13a598721ed166cf2c2fb06c72a3e2f8396bb4d8af18e4507fa84f0764736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x29 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x1998AEEF EQ PUSH2 0x2E JUMPI DUP1 PUSH4 0xDEF18101 EQ PUSH2 0x38 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x36 PUSH2 0x63 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x44 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x4D PUSH2 0xB0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x5A SWAP2 SWAP1 PUSH2 0x108 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 SLOAD CALLVALUE GT PUSH2 0xA7 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x9E SWAP1 PUSH2 0xE8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST CALLVALUE PUSH1 0x0 DUP2 SWAP1 SSTORE POP JUMP JUMPDEST PUSH1 0x0 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH2 0xC3 PUSH1 0x21 DUP4 PUSH2 0x123 JUMP JUMPDEST SWAP2 POP PUSH2 0xCE DUP3 PUSH2 0x13E JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xE2 DUP2 PUSH2 0x134 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x101 DUP2 PUSH2 0xB6 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x11D PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xD9 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4D696E696D756D20626964206F66203130205765692069732072657175697265 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6400000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 CALLCODE 0xE4 0xF7 BYTE SGT 0xA5 SWAP9 PUSH19 0x1ED166CF2C2FB06C72A3E2F8396BB4D8AF18E4 POP PUSH32 0xA84F0764736F6C63430008070033000000000000000000000000000000000000 ",
"sourceMap": "27:376:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;320:80;;;:::i;:::-;;115:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;320:80;196:10;;183:9;:23;179:129;;222:43;;;;;;;;;;:::i;:::-;;;;;;;;179:129;384:9:::1;371:10;:22;;;;320:80::o:0;115:27::-;;;;:::o;7:366:1:-;149:3;170:67;234:2;229:3;170:67;:::i;:::-;163:74;;246:93;335:3;246:93;:::i;:::-;364:2;359:3;355:12;348:19;;7:366;;;:::o;379:118::-;466:24;484:5;466:24;:::i;:::-;461:3;454:37;379:118;;:::o;503:419::-;669:4;707:2;696:9;692:18;684:26;;756:9;750:4;746:20;742:1;731:9;727:17;720:47;784:131;910:4;784:131;:::i;:::-;776:139;;503:419;;;:::o;928:222::-;1021:4;1059:2;1048:9;1044:18;1036:26;;1072:71;1140:1;1129:9;1125:17;1116:6;1072:71;:::i;:::-;928:222;;;;:::o;1156:169::-;1240:11;1274:6;1269:3;1262:19;1314:4;1309:3;1305:14;1290:29;;1156:169;;;;:::o;1331:77::-;1368:7;1397:5;1386:16;;1331:77;;;:::o;1414:220::-;1554:34;1550:1;1542:6;1538:14;1531:58;1623:3;1618:2;1610:6;1606:15;1599:28;1414:220;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "90200",
"executionCost": "22247",
"totalCost": "112447"
},
"external": {
"bid()": "24333",
"currentBid()": "2429"
}
},
"methodIdentifiers": {
"bid()": "1998aeef",
"currentBid()": "def18101"
}
},
"abi": [
{
"inputs": [],
"name": "bid",
"outputs": [],
"stateMutability": "payable",
"type": "function"
},
{
"inputs": [],
"name": "currentBid",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.7+commit.e28d00a7"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [],
"name": "bid",
"outputs": [],
"stateMutability": "payable",
"type": "function"
},
{
"inputs": [],
"name": "currentBid",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/BiddingContract.sol": "BiddingContract"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/BiddingContract.sol": {
"keccak256": "0x6766f371bf50f1140a7e886b5c60237b73dc2d577b802181603f2b9ca7695889",
"urls": [
"bzz-raw://76a71d39782c621c00583ff0d1d537a9b924ca1c6e24b5082b5dfe98ad42250c",
"dweb:/ipfs/QmSZiPTuD7rx93aJ7xkHFkjSBc5GdL5hGfbjtjQ11NPKKt"
]
}
},
"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": "608060405234801561001057600080fd5b5061036a806100206000396000f3fe608060405234801561001057600080fd5b506004361061002b5760003560e01c8063575e3ab314610030575b600080fd5b61004a600480360381019061004591906101f4565b610060565b604051610057919061025a565b60405180910390f35b606060006003811115610076576100756102d8565b5b60ff168260ff1614156100c0576040518060400160405280600381526020017f4a6f65000000000000000000000000000000000000000000000000000000000081525090506101da565b600160038111156100d4576100d36102d8565b5b60ff168260ff16141561011e576040518060400160405280600681526020017f4272616e6479000000000000000000000000000000000000000000000000000081525090506101da565b60026003811115610132576101316102d8565b5b60ff168260ff16141561017c576040518060400160405280600681526020017f526163686e61000000000000000000000000000000000000000000000000000081525090506101da565b60038081111561018f5761018e6102d8565b5b60ff168260ff1614156101d9576040518060400160405280600781526020017f4a6573736963610000000000000000000000000000000000000000000000000081525090506101da565b5b919050565b6000813590506101ee8161031d565b92915050565b60006020828403121561020a57610209610307565b5b6000610218848285016101df565b91505092915050565b600061022c8261027c565b6102368185610287565b93506102468185602086016102a5565b61024f8161030c565b840191505092915050565b600060208201905081810360008301526102748184610221565b905092915050565b600081519050919050565b600082825260208201905092915050565b600060ff82169050919050565b60005b838110156102c35780820151818401526020810190506102a8565b838111156102d2576000848401525b50505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600080fd5b6000601f19601f8301169050919050565b61032681610298565b811461033157600080fd5b5056fea264697066735822122004d299e38a3410a35a493cdcc7012d6dd54f032d282500aa884842018ae675e764736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x36A DUP1 PUSH2 0x20 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x2B JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x575E3AB3 EQ PUSH2 0x30 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x4A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x45 SWAP2 SWAP1 PUSH2 0x1F4 JUMP JUMPDEST PUSH2 0x60 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x57 SWAP2 SWAP1 PUSH2 0x25A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x76 JUMPI PUSH2 0x75 PUSH2 0x2D8 JUMP JUMPDEST JUMPDEST PUSH1 0xFF AND DUP3 PUSH1 0xFF AND EQ ISZERO PUSH2 0xC0 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x3 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x4A6F650000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP SWAP1 POP PUSH2 0x1DA JUMP JUMPDEST PUSH1 0x1 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0xD4 JUMPI PUSH2 0xD3 PUSH2 0x2D8 JUMP JUMPDEST JUMPDEST PUSH1 0xFF AND DUP3 PUSH1 0xFF AND EQ ISZERO PUSH2 0x11E JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x6 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x4272616E64790000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP SWAP1 POP PUSH2 0x1DA JUMP JUMPDEST PUSH1 0x2 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x132 JUMPI PUSH2 0x131 PUSH2 0x2D8 JUMP JUMPDEST JUMPDEST PUSH1 0xFF AND DUP3 PUSH1 0xFF AND EQ ISZERO PUSH2 0x17C JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x6 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x526163686E610000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP SWAP1 POP PUSH2 0x1DA JUMP JUMPDEST PUSH1 0x3 DUP1 DUP2 GT ISZERO PUSH2 0x18F JUMPI PUSH2 0x18E PUSH2 0x2D8 JUMP JUMPDEST JUMPDEST PUSH1 0xFF AND DUP3 PUSH1 0xFF AND EQ ISZERO PUSH2 0x1D9 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x7 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x4A65737369636100000000000000000000000000000000000000000000000000 DUP2 MSTORE POP SWAP1 POP PUSH2 0x1DA JUMP JUMPDEST JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1EE DUP2 PUSH2 0x31D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x20A JUMPI PUSH2 0x209 PUSH2 0x307 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x218 DUP5 DUP3 DUP6 ADD PUSH2 0x1DF JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x22C DUP3 PUSH2 0x27C JUMP JUMPDEST PUSH2 0x236 DUP2 DUP6 PUSH2 0x287 JUMP JUMPDEST SWAP4 POP PUSH2 0x246 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x2A5 JUMP JUMPDEST PUSH2 0x24F DUP2 PUSH2 0x30C JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x274 DUP2 DUP5 PUSH2 0x221 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x2C3 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x2A8 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x2D2 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x21 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 0x326 DUP2 PUSH2 0x298 JUMP JUMPDEST DUP2 EQ PUSH2 0x331 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DIV 0xD2 SWAP10 0xE3 DUP11 CALLVALUE LT LOG3 GAS 0x49 EXTCODECOPY 0xDC 0xC7 ADD 0x2D PUSH14 0xD54F032D282500AA884842018AE6 PUSH22 0xE764736F6C6343000807003300000000000000000000 ",
"sourceMap": "27:439:0:-:0;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@getNames_54": {
"entryPoint": 96,
"id": 54,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_decode_t_uint8": {
"entryPoint": 479,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint8": {
"entryPoint": 500,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 545,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 602,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 636,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 647,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_uint8": {
"entryPoint": 664,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_memory_to_memory": {
"entryPoint": 677,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"panic_error_0x21": {
"entryPoint": 728,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 775,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 780,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"validator_revert_t_uint8": {
"entryPoint": 797,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:2595:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "57:85:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "67:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "89:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "76:12:1"
},
"nodeType": "YulFunctionCall",
"src": "76:20:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "67:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "130:5:1"
}
],
"functionName": {
"name": "validator_revert_t_uint8",
"nodeType": "YulIdentifier",
"src": "105:24:1"
},
"nodeType": "YulFunctionCall",
"src": "105:31:1"
},
"nodeType": "YulExpressionStatement",
"src": "105:31:1"
}
]
},
"name": "abi_decode_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "35:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "43:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "51:5:1",
"type": ""
}
],
"src": "7:135:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "212:261:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "258:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "260:77:1"
},
"nodeType": "YulFunctionCall",
"src": "260:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "260:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "233:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "242:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "229:3:1"
},
"nodeType": "YulFunctionCall",
"src": "229:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "254:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "225:3:1"
},
"nodeType": "YulFunctionCall",
"src": "225:32:1"
},
"nodeType": "YulIf",
"src": "222:119:1"
},
{
"nodeType": "YulBlock",
"src": "351:115:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "366:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "380:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "370:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "395:61:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "428:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "439:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "424:3:1"
},
"nodeType": "YulFunctionCall",
"src": "424:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "448:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint8",
"nodeType": "YulIdentifier",
"src": "405:18:1"
},
"nodeType": "YulFunctionCall",
"src": "405:51:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "395:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "182:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "193:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "205:6:1",
"type": ""
}
],
"src": "148:325:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "571:272:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "581:53:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "628:5:1"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "595:32:1"
},
"nodeType": "YulFunctionCall",
"src": "595:39:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "585:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "643:78:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "709:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "714:6:1"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "650:58:1"
},
"nodeType": "YulFunctionCall",
"src": "650:71:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "643:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "756:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "763:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "752:3:1"
},
"nodeType": "YulFunctionCall",
"src": "752:16:1"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "770:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "775:6:1"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "730:21:1"
},
"nodeType": "YulFunctionCall",
"src": "730:52:1"
},
"nodeType": "YulExpressionStatement",
"src": "730:52:1"
},
{
"nodeType": "YulAssignment",
"src": "791:46:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "802:3:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "829:6:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "807:21:1"
},
"nodeType": "YulFunctionCall",
"src": "807:29:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "798:3:1"
},
"nodeType": "YulFunctionCall",
"src": "798:39:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "791:3:1"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "552:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "559:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "567:3:1",
"type": ""
}
],
"src": "479:364:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "967:195:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "977:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "989:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1000:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "985:3:1"
},
"nodeType": "YulFunctionCall",
"src": "985:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "977:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1024:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1035:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1020:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1020:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1043:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1049:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1039:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1039:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1013:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1013:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "1013:47:1"
},
{
"nodeType": "YulAssignment",
"src": "1069:86:1",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1141:6:1"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1150:4:1"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "1077:63:1"
},
"nodeType": "YulFunctionCall",
"src": "1077:78:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1069:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "939:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "951:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "962:4:1",
"type": ""
}
],
"src": "849:313:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1208:35:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1218:19:1",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1234:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1228:5:1"
},
"nodeType": "YulFunctionCall",
"src": "1228:9:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1218:6:1"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "1201:6:1",
"type": ""
}
],
"src": "1168:75:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1308:40:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1319:22:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1335:5:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1329:5:1"
},
"nodeType": "YulFunctionCall",
"src": "1329:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1319:6:1"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1291:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1301:6:1",
"type": ""
}
],
"src": "1249:99:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1450:73:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1467:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1472:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1460:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1460:19:1"
},
"nodeType": "YulExpressionStatement",
"src": "1460:19:1"
},
{
"nodeType": "YulAssignment",
"src": "1488:29:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1507:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1512:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1503:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1503:14:1"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "1488:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1422:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1427:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "1438:11:1",
"type": ""
}
],
"src": "1354:169:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1572:43:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1582:27:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1597:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1604:4:1",
"type": "",
"value": "0xff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1593:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1593:16:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1582:7:1"
}
]
}
]
},
"name": "cleanup_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1554:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1564:7:1",
"type": ""
}
],
"src": "1529:86:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1670:258:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1680:10:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1689:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "1684:1:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1749:63:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "1774:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1779:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1770:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1770:11:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "1793:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1798:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1789:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1789:11:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1783:5:1"
},
"nodeType": "YulFunctionCall",
"src": "1783:18:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1763:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1763:39:1"
},
"nodeType": "YulExpressionStatement",
"src": "1763:39:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1710:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1713:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "1707:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1707:13:1"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "1721:19:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1723:15:1",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1732:1:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1735:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1728:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1728:10:1"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1723:1:1"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "1703:3:1",
"statements": []
},
"src": "1699:113:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1846:76:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "1896:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1901:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1892:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1892:16:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1910:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1885:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1885:27:1"
},
"nodeType": "YulExpressionStatement",
"src": "1885:27:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1827:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1830:6:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1824:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1824:13:1"
},
"nodeType": "YulIf",
"src": "1821:101:1"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "1652:3:1",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "1657:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1662:6:1",
"type": ""
}
],
"src": "1621:307:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1962:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1979:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1982:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1972:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1972:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "1972:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2076:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2079:4:1",
"type": "",
"value": "0x21"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2069:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2069:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "2069:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2100:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2103:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2093:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2093:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "2093:15:1"
}
]
},
"name": "panic_error_0x21",
"nodeType": "YulFunctionDefinition",
"src": "1934:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2209:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2226:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2229:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2219:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2219:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "2219:12:1"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "2120:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2332:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2349:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2352:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2342:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2342:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "2342:12:1"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "2243:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2414:54:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2424:38:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2442:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2449:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2438:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2438:14:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2458:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "2454:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2454:7:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "2434:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2434:28:1"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "2424:6:1"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2397:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "2407:6:1",
"type": ""
}
],
"src": "2366:102:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2515:77:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2570:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2579:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2582:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2572:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2572:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "2572:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2538:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2561:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint8",
"nodeType": "YulIdentifier",
"src": "2545:15:1"
},
"nodeType": "YulFunctionCall",
"src": "2545:22:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "2535:2:1"
},
"nodeType": "YulFunctionCall",
"src": "2535:33:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2528:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2528:41:1"
},
"nodeType": "YulIf",
"src": "2525:61:1"
}
]
},
"name": "validator_revert_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2508:5:1",
"type": ""
}
],
"src": "2474:118:1"
}
]
},
"contents": "{\n\n function abi_decode_t_uint8(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint8(value)\n }\n\n function abi_decode_tuple_t_uint8(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_uint8(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_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 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 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_0x21() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x21)\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_uint8(value) {\n if iszero(eq(value, cleanup_t_uint8(value))) { revert(0, 0) }\n }\n\n}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b506004361061002b5760003560e01c8063575e3ab314610030575b600080fd5b61004a600480360381019061004591906101f4565b610060565b604051610057919061025a565b60405180910390f35b606060006003811115610076576100756102d8565b5b60ff168260ff1614156100c0576040518060400160405280600381526020017f4a6f65000000000000000000000000000000000000000000000000000000000081525090506101da565b600160038111156100d4576100d36102d8565b5b60ff168260ff16141561011e576040518060400160405280600681526020017f4272616e6479000000000000000000000000000000000000000000000000000081525090506101da565b60026003811115610132576101316102d8565b5b60ff168260ff16141561017c576040518060400160405280600681526020017f526163686e61000000000000000000000000000000000000000000000000000081525090506101da565b60038081111561018f5761018e6102d8565b5b60ff168260ff1614156101d9576040518060400160405280600781526020017f4a6573736963610000000000000000000000000000000000000000000000000081525090506101da565b5b919050565b6000813590506101ee8161031d565b92915050565b60006020828403121561020a57610209610307565b5b6000610218848285016101df565b91505092915050565b600061022c8261027c565b6102368185610287565b93506102468185602086016102a5565b61024f8161030c565b840191505092915050565b600060208201905081810360008301526102748184610221565b905092915050565b600081519050919050565b600082825260208201905092915050565b600060ff82169050919050565b60005b838110156102c35780820151818401526020810190506102a8565b838111156102d2576000848401525b50505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600080fd5b6000601f19601f8301169050919050565b61032681610298565b811461033157600080fd5b5056fea264697066735822122004d299e38a3410a35a493cdcc7012d6dd54f032d282500aa884842018ae675e764736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x2B JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x575E3AB3 EQ PUSH2 0x30 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x4A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x45 SWAP2 SWAP1 PUSH2 0x1F4 JUMP JUMPDEST PUSH2 0x60 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x57 SWAP2 SWAP1 PUSH2 0x25A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x76 JUMPI PUSH2 0x75 PUSH2 0x2D8 JUMP JUMPDEST JUMPDEST PUSH1 0xFF AND DUP3 PUSH1 0xFF AND EQ ISZERO PUSH2 0xC0 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x3 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x4A6F650000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP SWAP1 POP PUSH2 0x1DA JUMP JUMPDEST PUSH1 0x1 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0xD4 JUMPI PUSH2 0xD3 PUSH2 0x2D8 JUMP JUMPDEST JUMPDEST PUSH1 0xFF AND DUP3 PUSH1 0xFF AND EQ ISZERO PUSH2 0x11E JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x6 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x4272616E64790000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP SWAP1 POP PUSH2 0x1DA JUMP JUMPDEST PUSH1 0x2 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x132 JUMPI PUSH2 0x131 PUSH2 0x2D8 JUMP JUMPDEST JUMPDEST PUSH1 0xFF AND DUP3 PUSH1 0xFF AND EQ ISZERO PUSH2 0x17C JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x6 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x526163686E610000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP SWAP1 POP PUSH2 0x1DA JUMP JUMPDEST PUSH1 0x3 DUP1 DUP2 GT ISZERO PUSH2 0x18F JUMPI PUSH2 0x18E PUSH2 0x2D8 JUMP JUMPDEST JUMPDEST PUSH1 0xFF AND DUP3 PUSH1 0xFF AND EQ ISZERO PUSH2 0x1D9 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x7 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x4A65737369636100000000000000000000000000000000000000000000000000 DUP2 MSTORE POP SWAP1 POP PUSH2 0x1DA JUMP JUMPDEST JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1EE DUP2 PUSH2 0x31D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x20A JUMPI PUSH2 0x209 PUSH2 0x307 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x218 DUP5 DUP3 DUP6 ADD PUSH2 0x1DF JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x22C DUP3 PUSH2 0x27C JUMP JUMPDEST PUSH2 0x236 DUP2 DUP6 PUSH2 0x287 JUMP JUMPDEST SWAP4 POP PUSH2 0x246 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x2A5 JUMP JUMPDEST PUSH2 0x24F DUP2 PUSH2 0x30C JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x274 DUP2 DUP5 PUSH2 0x221 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x2C3 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x2A8 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x2D2 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x21 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 0x326 DUP2 PUSH2 0x298 JUMP JUMPDEST DUP2 EQ PUSH2 0x331 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DIV 0xD2 SWAP10 0xE3 DUP11 CALLVALUE LT LOG3 GAS 0x49 EXTCODECOPY 0xDC 0xC7 ADD 0x2D PUSH14 0xD54F032D282500AA884842018AE6 PUSH22 0xE764736F6C6343000807003300000000000000000000 ",
"sourceMap": "27:439:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;173:291;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;223:13;263:9;257:16;;;;;;;;:::i;:::-;;250:23;;:3;:23;;;247:40;;;275:12;;;;;;;;;;;;;;;;;;;;;247:40;313:12;307:19;;;;;;;;:::i;:::-;;300:26;;:3;:26;;;297:46;;;328:15;;;;;;;;;;;;;;;;;;;;;297:46;369:12;363:19;;;;;;;;:::i;:::-;;356:26;;:3;:26;;;353:46;;;384:15;;;;;;;;;;;;;;;;;;;;;353:46;425:13;419:20;;;;;;;;:::i;:::-;;412:27;;:3;:27;;;409:48;;;441:16;;;;;;;;;;;;;;;;;;;;;409:48;173:291;;;;:::o;7:135:1:-;51:5;89:6;76:20;67:29;;105:31;130:5;105:31;:::i;:::-;7:135;;;;:::o;148:325::-;205:6;254:2;242:9;233:7;229:23;225:32;222:119;;;260:79;;:::i;:::-;222:119;380:1;405:51;448:7;439:6;428:9;424:22;405:51;:::i;:::-;395:61;;351:115;148:325;;;;:::o;479:364::-;567:3;595:39;628:5;595:39;:::i;:::-;650:71;714:6;709:3;650:71;:::i;:::-;643:78;;730:52;775:6;770:3;763:4;756:5;752:16;730:52;:::i;:::-;807:29;829:6;807:29;:::i;:::-;802:3;798:39;791:46;;571:272;479:364;;;;:::o;849:313::-;962:4;1000:2;989:9;985:18;977:26;;1049:9;1043:4;1039:20;1035:1;1024:9;1020:17;1013:47;1077:78;1150:4;1141:6;1077:78;:::i;:::-;1069:86;;849:313;;;;:::o;1249:99::-;1301:6;1335:5;1329:12;1319:22;;1249:99;;;:::o;1354:169::-;1438:11;1472:6;1467:3;1460:19;1512:4;1507:3;1503:14;1488:29;;1354:169;;;;:::o;1529:86::-;1564:7;1604:4;1597:5;1593:16;1582:27;;1529:86;;;:::o;1621:307::-;1689:1;1699:113;1713:6;1710:1;1707:13;1699:113;;;1798:1;1793:3;1789:11;1783:18;1779:1;1774:3;1770:11;1763:39;1735:2;1732:1;1728:10;1723:15;;1699:113;;;1830:6;1827:1;1824:13;1821:101;;;1910:1;1901:6;1896:3;1892:16;1885:27;1821:101;1670:258;1621:307;;;:::o;1934:180::-;1982:77;1979:1;1972:88;2079:4;2076:1;2069:15;2103:4;2100:1;2093:15;2243:117;2352:1;2349;2342:12;2366:102;2407:6;2458:2;2454:7;2449:2;2442:5;2438:14;2434:28;2424:38;;2366:102;;;:::o;2474:118::-;2545:22;2561:5;2545:22;:::i;:::-;2538:5;2535:33;2525:61;;2582:1;2579;2572:12;2525:61;2474:118;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "174800",
"executionCost": "220",
"totalCost": "175020"
},
"external": {
"getNames(uint8)": "infinite"
}
},
"methodIdentifiers": {
"getNames(uint8)": "575e3ab3"
}
},
"abi": [
{
"inputs": [
{
"internalType": "uint8",
"name": "arg",
"type": "uint8"
}
],
"name": "getNames",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "pure",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.7+commit.e28d00a7"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [
{
"internalType": "uint8",
"name": "arg",
"type": "uint8"
}
],
"name": "getNames",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "pure",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/6_Enum.sol": "EnumsContract"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/6_Enum.sol": {
"keccak256": "0x653865634db9c2a2577842b38b3b90ae2b47a748a77132cb4b67490af3554870",
"urls": [
"bzz-raw://448fe08c87b4ee9028553b9b46a6a42129d7d62c5c733b9a513ea0d9b1f3fa63",
"dweb:/ipfs/QmZM25h5pDZoPrMGgJnCBhryG6YTSWQBHuxzhSmqdZqkpH"
]
}
},
"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": {
"@_55": {
"entryPoint": null,
"id": 55,
"parameterSlots": 1,
"returnSlots": 0
},
"abi_decode_t_uint256_fromMemory": {
"entryPoint": 169,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256_fromMemory": {
"entryPoint": 190,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 136,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 131,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 146,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:1048:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "47:35:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "57:19:1",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "73:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "67:5:1"
},
"nodeType": "YulFunctionCall",
"src": "67:9:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "57:6:1"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "40:6:1",
"type": ""
}
],
"src": "7:75:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "177:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "194:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "197:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "187:6:1"
},
"nodeType": "YulFunctionCall",
"src": "187:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "187:12:1"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "88:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "300:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "317:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "320:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "310:6:1"
},
"nodeType": "YulFunctionCall",
"src": "310:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "310:12:1"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "211:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "379:32:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "389:16:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "400:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "389:7:1"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "361:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "371:7:1",
"type": ""
}
],
"src": "334:77:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "460:79:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "517:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "526:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "529:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "519:6:1"
},
"nodeType": "YulFunctionCall",
"src": "519:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "519:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "483:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "508:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "490:17:1"
},
"nodeType": "YulFunctionCall",
"src": "490:24:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "480:2:1"
},
"nodeType": "YulFunctionCall",
"src": "480:35:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "473:6:1"
},
"nodeType": "YulFunctionCall",
"src": "473:43:1"
},
"nodeType": "YulIf",
"src": "470:63:1"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "453:5:1",
"type": ""
}
],
"src": "417:122:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "608:80:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "618:22:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "633:6:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "627:5:1"
},
"nodeType": "YulFunctionCall",
"src": "627:13:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "618:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "676:5:1"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "649:26:1"
},
"nodeType": "YulFunctionCall",
"src": "649:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "649:33:1"
}
]
},
"name": "abi_decode_t_uint256_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "586:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "594:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "602:5:1",
"type": ""
}
],
"src": "545:143:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "771:274:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "817:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "819:77:1"
},
"nodeType": "YulFunctionCall",
"src": "819:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "819:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "792:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "801:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "788:3:1"
},
"nodeType": "YulFunctionCall",
"src": "788:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "813:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "784:3:1"
},
"nodeType": "YulFunctionCall",
"src": "784:32:1"
},
"nodeType": "YulIf",
"src": "781:119:1"
},
{
"nodeType": "YulBlock",
"src": "910:128:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "925:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "939:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "929:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "954:74:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1000:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1011:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "996:3:1"
},
"nodeType": "YulFunctionCall",
"src": "996:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1020:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256_fromMemory",
"nodeType": "YulIdentifier",
"src": "964:31:1"
},
"nodeType": "YulFunctionCall",
"src": "964:64:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "954:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "741:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "752:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "764:6:1",
"type": ""
}
],
"src": "694:351:1"
}
]
},
"contents": "{\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_uint256_fromMemory(offset, end) -> value {\n value := mload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_uint256_fromMemory(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256_fromMemory(add(headStart, offset), dataEnd)\n }\n\n }\n\n}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50604051610d33380380610d33833981810160405281019061003291906100be565b8060008190555080600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550506100eb565b600080fd5b6000819050919050565b61009b81610088565b81146100a657600080fd5b50565b6000815190506100b881610092565b92915050565b6000602082840312156100d4576100d3610083565b5b60006100e2848285016100a9565b91505092915050565b610c39806100fa6000396000f3fe608060405234801561001057600080fd5b50600436106100885760003560e01c8063313ce5671161005b578063313ce5671461012957806370a082311461014757806395d89b4114610177578063a9059cbb1461019557610088565b806306fdde031461008d578063095ea7b3146100ab57806318160ddd146100db57806323b872dd146100f9575b600080fd5b6100956101c5565b6040516100a291906108cc565b60405180910390f35b6100c560048036038101906100c09190610987565b6101fe565b6040516100d291906109e2565b60405180910390f35b6100e36102f0565b6040516100f09190610a0c565b60405180910390f35b610113600480360381019061010e9190610a27565b6102f9565b60405161012091906109e2565b60405180910390f35b61013161058f565b60405161013e9190610a96565b60405180910390f35b610161600480360381019061015c9190610ab1565b610594565b60405161016e9190610a0c565b60405180910390f35b61017f6105dd565b60405161018c91906108cc565b60405180910390f35b6101af60048036038101906101aa9190610987565b610616565b6040516101bc91906109e2565b60405180910390f35b6040518060400160405280600d81526020017f5564616369747920546f6b656e0000000000000000000000000000000000000081525081565b600081600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516102de9190610a0c565b60405180910390a36001905092915050565b60008054905090565b600081600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546103469190610b0d565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546104119190610b0d565b600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546104dc9190610b41565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161057c9190610a0c565b60405180910390a3600190509392505050565b601281565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6040518060400160405280600381526020017f554443000000000000000000000000000000000000000000000000000000000081525081565b6000600182101561065c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065390610be3565b60405180910390fd5b600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548211156106a857600080fd5b81600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106f39190610b0d565b600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107819190610b41565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516108219190610a0c565b60405180910390a36001905092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561086d578082015181840152602081019050610852565b8381111561087c576000848401525b50505050565b6000601f19601f8301169050919050565b600061089e82610833565b6108a8818561083e565b93506108b881856020860161084f565b6108c181610882565b840191505092915050565b600060208201905081810360008301526108e68184610893565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061091e826108f3565b9050919050565b61092e81610913565b811461093957600080fd5b50565b60008135905061094b81610925565b92915050565b6000819050919050565b61096481610951565b811461096f57600080fd5b50565b6000813590506109818161095b565b92915050565b6000806040838503121561099e5761099d6108ee565b5b60006109ac8582860161093c565b92505060206109bd85828601610972565b9150509250929050565b60008115159050919050565b6109dc816109c7565b82525050565b60006020820190506109f760008301846109d3565b92915050565b610a0681610951565b82525050565b6000602082019050610a2160008301846109fd565b92915050565b600080600060608486031215610a4057610a3f6108ee565b5b6000610a4e8682870161093c565b9350506020610a5f8682870161093c565b9250506040610a7086828701610972565b9150509250925092565b600060ff82169050919050565b610a9081610a7a565b82525050565b6000602082019050610aab6000830184610a87565b92915050565b600060208284031215610ac757610ac66108ee565b5b6000610ad58482850161093c565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000610b1882610951565b9150610b2383610951565b925082821015610b3657610b35610ade565b5b828203905092915050565b6000610b4c82610951565b9150610b5783610951565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115610b8c57610b8b610ade565b5b828201905092915050565b7f4e6f7420656e6f7567682045746865722070726f76696465642e000000000000600082015250565b6000610bcd601a8361083e565b9150610bd882610b97565b602082019050919050565b60006020820190508181036000830152610bfc81610bc0565b905091905056fea2646970667358221220e91e3cd1947274cd370c3cbeba8c375188494de71475080049237b166d78a99164736f6c63430008090033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH2 0xD33 CODESIZE SUB DUP1 PUSH2 0xD33 DUP4 CODECOPY DUP2 DUP2 ADD PUSH1 0x40 MSTORE DUP2 ADD SWAP1 PUSH2 0x32 SWAP2 SWAP1 PUSH2 0xBE JUMP JUMPDEST DUP1 PUSH1 0x0 DUP2 SWAP1 SSTORE POP DUP1 PUSH1 0x1 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 POP PUSH2 0xEB JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x9B DUP2 PUSH2 0x88 JUMP JUMPDEST DUP2 EQ PUSH2 0xA6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0xB8 DUP2 PUSH2 0x92 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xD4 JUMPI PUSH2 0xD3 PUSH2 0x83 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xE2 DUP5 DUP3 DUP6 ADD PUSH2 0xA9 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xC39 DUP1 PUSH2 0xFA PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x88 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x313CE567 GT PUSH2 0x5B JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x129 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x147 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x177 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x195 JUMPI PUSH2 0x88 JUMP JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x8D JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0xAB JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0xDB JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0xF9 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x95 PUSH2 0x1C5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xA2 SWAP2 SWAP1 PUSH2 0x8CC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xC5 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xC0 SWAP2 SWAP1 PUSH2 0x987 JUMP JUMPDEST PUSH2 0x1FE JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xD2 SWAP2 SWAP1 PUSH2 0x9E2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xE3 PUSH2 0x2F0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xF0 SWAP2 SWAP1 PUSH2 0xA0C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x113 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x10E SWAP2 SWAP1 PUSH2 0xA27 JUMP JUMPDEST PUSH2 0x2F9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x120 SWAP2 SWAP1 PUSH2 0x9E2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x131 PUSH2 0x58F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x13E SWAP2 SWAP1 PUSH2 0xA96 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x161 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x15C SWAP2 SWAP1 PUSH2 0xAB1 JUMP JUMPDEST PUSH2 0x594 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x16E SWAP2 SWAP1 PUSH2 0xA0C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x17F PUSH2 0x5DD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x18C SWAP2 SWAP1 PUSH2 0x8CC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1AF PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1AA SWAP2 SWAP1 PUSH2 0x987 JUMP JUMPDEST PUSH2 0x616 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1BC SWAP2 SWAP1 PUSH2 0x9E2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0xD DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x5564616369747920546F6B656E00000000000000000000000000000000000000 DUP2 MSTORE POP DUP2 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x2 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 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 0x2DE SWAP2 SWAP1 PUSH2 0xA0C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x1 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 0x346 SWAP2 SWAP1 PUSH2 0xB0D JUMP JUMPDEST PUSH1 0x1 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 DUP2 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 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 0x411 SWAP2 SWAP1 PUSH2 0xB0D 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 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 DUP2 PUSH1 0x1 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH2 0x4DC SWAP2 SWAP1 PUSH2 0xB41 JUMP JUMPDEST PUSH1 0x1 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 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0x57C SWAP2 SWAP1 PUSH2 0xA0C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH1 0x1 SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x12 DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 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 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x3 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x5544430000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 DUP3 LT ISZERO PUSH2 0x65C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x653 SWAP1 PUSH2 0xBE3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD DUP3 GT ISZERO PUSH2 0x6A8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 PUSH1 0x1 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 0x6F3 SWAP2 SWAP1 PUSH2 0xB0D JUMP JUMPDEST PUSH1 0x1 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 DUP2 PUSH1 0x1 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH2 0x781 SWAP2 SWAP1 PUSH2 0xB41 JUMP JUMPDEST PUSH1 0x1 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 0x821 SWAP2 SWAP1 PUSH2 0xA0C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x86D JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x852 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x87C JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x89E DUP3 PUSH2 0x833 JUMP JUMPDEST PUSH2 0x8A8 DUP2 DUP6 PUSH2 0x83E JUMP JUMPDEST SWAP4 POP PUSH2 0x8B8 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x84F JUMP JUMPDEST PUSH2 0x8C1 DUP2 PUSH2 0x882 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x8E6 DUP2 DUP5 PUSH2 0x893 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x91E DUP3 PUSH2 0x8F3 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x92E DUP2 PUSH2 0x913 JUMP JUMPDEST DUP2 EQ PUSH2 0x939 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x94B DUP2 PUSH2 0x925 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x964 DUP2 PUSH2 0x951 JUMP JUMPDEST DUP2 EQ PUSH2 0x96F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x981 DUP2 PUSH2 0x95B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x99E JUMPI PUSH2 0x99D PUSH2 0x8EE JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x9AC DUP6 DUP3 DUP7 ADD PUSH2 0x93C JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x9BD DUP6 DUP3 DUP7 ADD PUSH2 0x972 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x9DC DUP2 PUSH2 0x9C7 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x9F7 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x9D3 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xA06 DUP2 PUSH2 0x951 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xA21 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x9FD JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xA40 JUMPI PUSH2 0xA3F PUSH2 0x8EE JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xA4E DUP7 DUP3 DUP8 ADD PUSH2 0x93C JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0xA5F DUP7 DUP3 DUP8 ADD PUSH2 0x93C JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0xA70 DUP7 DUP3 DUP8 ADD PUSH2 0x972 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xA90 DUP2 PUSH2 0xA7A JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xAAB PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xA87 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xAC7 JUMPI PUSH2 0xAC6 PUSH2 0x8EE JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xAD5 DUP5 DUP3 DUP6 ADD PUSH2 0x93C JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xB18 DUP3 PUSH2 0x951 JUMP JUMPDEST SWAP2 POP PUSH2 0xB23 DUP4 PUSH2 0x951 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0xB36 JUMPI PUSH2 0xB35 PUSH2 0xADE JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xB4C DUP3 PUSH2 0x951 JUMP JUMPDEST SWAP2 POP PUSH2 0xB57 DUP4 PUSH2 0x951 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0xB8C JUMPI PUSH2 0xB8B PUSH2 0xADE JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E6F7420656E6F7567682045746865722070726F76696465642E000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xBCD PUSH1 0x1A DUP4 PUSH2 0x83E JUMP JUMPDEST SWAP2 POP PUSH2 0xBD8 DUP3 PUSH2 0xB97 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xBFC DUP2 PUSH2 0xBC0 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xE9 0x1E EXTCODECOPY 0xD1 SWAP5 PUSH19 0x74CD370C3CBEBA8C375188494DE71475080049 0x23 PUSH28 0x166D78A99164736F6C63430008090033000000000000000000000000 ",
"sourceMap": "27:3364:0:-:0;;;1154:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1211:6;1196:12;:21;;;;1251:6;1228:8;:20;1237:10;1228:20;;;;;;;;;;;;;;;:29;;;;1154:110;27:3364;;88:117:1;197:1;194;187:12;334:77;371:7;400:5;389:16;;334:77;;;:::o;417:122::-;490:24;508:5;490:24;:::i;:::-;483:5;480:35;470:63;;529:1;526;519:12;470:63;417:122;:::o;545:143::-;602:5;633:6;627:13;618:22;;649:33;676:5;649:33;:::i;:::-;545:143;;;;:::o;694:351::-;764:6;813:2;801:9;792:7;788:23;784:32;781:119;;;819:79;;:::i;:::-;781:119;939:1;964:64;1020:7;1011:6;1000:9;996:22;964:64;:::i;:::-;954:74;;910:128;694:351;;;;:::o;27:3364:0:-;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@approve_218": {
"entryPoint": 510,
"id": 218,
"parameterSlots": 2,
"returnSlots": 1
},
"@balanceOf_75": {
"entryPoint": 1428,
"id": 75,
"parameterSlots": 1,
"returnSlots": 1
},
"@decimals_10": {
"entryPoint": 1423,
"id": 10,
"parameterSlots": 0,
"returnSlots": 0
},
"@name_4": {
"entryPoint": 453,
"id": 4,
"parameterSlots": 0,
"returnSlots": 0
},
"@symbol_7": {
"entryPoint": 1501,
"id": 7,
"parameterSlots": 0,
"returnSlots": 0
},
"@totalSupply_63": {
"entryPoint": 752,
"id": 63,
"parameterSlots": 0,
"returnSlots": 1
},
"@transferFrom_190": {
"entryPoint": 761,
"id": 190,
"parameterSlots": 3,
"returnSlots": 1
},
"@transfer_134": {
"entryPoint": 1558,
"id": 134,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_address": {
"entryPoint": 2364,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 2418,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_address": {
"entryPoint": 2737,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_addresst_addresst_uint256": {
"entryPoint": 2599,
"id": null,
"parameterSlots": 2,
"returnSlots": 3
},
"abi_decode_tuple_t_addresst_uint256": {
"entryPoint": 2439,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_encode_t_bool_to_t_bool_fromStack": {
"entryPoint": 2515,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 2195,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_stringliteral_01323d80d2a9cecc721958dfb0ebb355919f2565eeedca1f22d5abb8d9359b45_to_t_string_memory_ptr_fromStack": {
"entryPoint": 3008,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 2557,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_uint8_to_t_uint8_fromStack": {
"entryPoint": 2695,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
"entryPoint": 2530,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 2252,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_01323d80d2a9cecc721958dfb0ebb355919f2565eeedca1f22d5abb8d9359b45__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 3043,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 2572,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed": {
"entryPoint": 2710,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 2099,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 2110,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 2881,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_sub_t_uint256": {
"entryPoint": 2829,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 2323,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bool": {
"entryPoint": 2503,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 2291,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 2385,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint8": {
"entryPoint": 2682,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_memory_to_memory": {
"entryPoint": 2127,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"panic_error_0x11": {
"entryPoint": 2782,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 2286,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 2178,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"store_literal_in_memory_01323d80d2a9cecc721958dfb0ebb355919f2565eeedca1f22d5abb8d9359b45": {
"entryPoint": 2967,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_address": {
"entryPoint": 2341,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 2395,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:6906:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "66:40:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "77:22:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "93:5:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "87:5:1"
},
"nodeType": "YulFunctionCall",
"src": "87:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "77:6:1"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "49:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "59:6:1",
"type": ""
}
],
"src": "7:99:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "208:73:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "225:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "230:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "218:6:1"
},
"nodeType": "YulFunctionCall",
"src": "218:19:1"
},
"nodeType": "YulExpressionStatement",
"src": "218:19:1"
},
{
"nodeType": "YulAssignment",
"src": "246:29:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "265:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "270:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "261:3:1"
},
"nodeType": "YulFunctionCall",
"src": "261:14:1"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "246:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "180:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "185:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "196:11:1",
"type": ""
}
],
"src": "112:169:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "336:258:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "346:10:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "355:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "350:1:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "415:63:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "440:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "445:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "436:3:1"
},
"nodeType": "YulFunctionCall",
"src": "436:11:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "459:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "464:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "455:3:1"
},
"nodeType": "YulFunctionCall",
"src": "455:11:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "449:5:1"
},
"nodeType": "YulFunctionCall",
"src": "449:18:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "429:6:1"
},
"nodeType": "YulFunctionCall",
"src": "429:39:1"
},
"nodeType": "YulExpressionStatement",
"src": "429:39:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "376:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "379:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "373:2:1"
},
"nodeType": "YulFunctionCall",
"src": "373:13:1"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "387:19:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "389:15:1",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "398:1:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "401:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "394:3:1"
},
"nodeType": "YulFunctionCall",
"src": "394:10:1"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "389:1:1"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "369:3:1",
"statements": []
},
"src": "365:113:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "512:76:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "562:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "567:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "558:3:1"
},
"nodeType": "YulFunctionCall",
"src": "558:16:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "576:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "551:6:1"
},
"nodeType": "YulFunctionCall",
"src": "551:27:1"
},
"nodeType": "YulExpressionStatement",
"src": "551:27:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "493:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "496:6:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "490:2:1"
},
"nodeType": "YulFunctionCall",
"src": "490:13:1"
},
"nodeType": "YulIf",
"src": "487:101:1"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "318:3:1",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "323:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "328:6:1",
"type": ""
}
],
"src": "287:307:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "648:54:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "658:38:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "676:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "683:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "672:3:1"
},
"nodeType": "YulFunctionCall",
"src": "672:14:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "692:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "688:3:1"
},
"nodeType": "YulFunctionCall",
"src": "688:7:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "668:3:1"
},
"nodeType": "YulFunctionCall",
"src": "668:28:1"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "658:6:1"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "631:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "641:6:1",
"type": ""
}
],
"src": "600:102:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "800:272:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "810:53:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "857:5:1"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "824:32:1"
},
"nodeType": "YulFunctionCall",
"src": "824:39:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "814:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "872:78:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "938:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "943:6:1"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "879:58:1"
},
"nodeType": "YulFunctionCall",
"src": "879:71:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "872:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "985:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "992:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "981:3:1"
},
"nodeType": "YulFunctionCall",
"src": "981:16:1"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "999:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1004:6:1"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "959:21:1"
},
"nodeType": "YulFunctionCall",
"src": "959:52:1"
},
"nodeType": "YulExpressionStatement",
"src": "959:52:1"
},
{
"nodeType": "YulAssignment",
"src": "1020:46:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1031:3:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1058:6:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "1036:21:1"
},
"nodeType": "YulFunctionCall",
"src": "1036:29:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1027:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1027:39:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1020:3:1"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "781:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "788:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "796:3:1",
"type": ""
}
],
"src": "708:364:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1196:195:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1206:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1218:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1229:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1214:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1214:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1206:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1253:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1264:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1249:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1249:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1272:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1278:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1268:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1268:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1242:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1242:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "1242:47:1"
},
{
"nodeType": "YulAssignment",
"src": "1298:86:1",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1370:6:1"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1379:4:1"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "1306:63:1"
},
"nodeType": "YulFunctionCall",
"src": "1306:78:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1298:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1168:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1180:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1191:4:1",
"type": ""
}
],
"src": "1078:313:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1437:35:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1447:19:1",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1463:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1457:5:1"
},
"nodeType": "YulFunctionCall",
"src": "1457:9:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1447:6:1"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "1430:6:1",
"type": ""
}
],
"src": "1397:75:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1567:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1584:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1587:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1577:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1577:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "1577:12:1"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "1478:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1690:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1707:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1710:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1700:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1700:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "1700:12:1"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "1601:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1769:81:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1779:65:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1794:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1801:42:1",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1790:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1790:54:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1779:7:1"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1751:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1761:7:1",
"type": ""
}
],
"src": "1724:126:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1901:51:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1911:35:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1940:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "1922:17:1"
},
"nodeType": "YulFunctionCall",
"src": "1922:24:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1911:7:1"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1883:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1893:7:1",
"type": ""
}
],
"src": "1856:96:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2001:79:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2058:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2067:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2070:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2060:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2060:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "2060:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2024:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2049:5:1"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "2031:17:1"
},
"nodeType": "YulFunctionCall",
"src": "2031:24:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "2021:2:1"
},
"nodeType": "YulFunctionCall",
"src": "2021:35:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2014:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2014:43:1"
},
"nodeType": "YulIf",
"src": "2011:63:1"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1994:5:1",
"type": ""
}
],
"src": "1958:122:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2138:87:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2148:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2170:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2157:12:1"
},
"nodeType": "YulFunctionCall",
"src": "2157:20:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2148:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2213:5:1"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "2186:26:1"
},
"nodeType": "YulFunctionCall",
"src": "2186:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "2186:33:1"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2116:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2124:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2132:5:1",
"type": ""
}
],
"src": "2086:139:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2276:32:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2286:16:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "2297:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "2286:7:1"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2258:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "2268:7:1",
"type": ""
}
],
"src": "2231:77:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2357:79:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2414:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2423:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2426:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2416:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2416:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "2416:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2380:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2405:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "2387:17:1"
},
"nodeType": "YulFunctionCall",
"src": "2387:24:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "2377:2:1"
},
"nodeType": "YulFunctionCall",
"src": "2377:35:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2370:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2370:43:1"
},
"nodeType": "YulIf",
"src": "2367:63:1"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2350:5:1",
"type": ""
}
],
"src": "2314:122:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2494:87:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2504:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2526:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2513:12:1"
},
"nodeType": "YulFunctionCall",
"src": "2513:20:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2504:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2569:5:1"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "2542:26:1"
},
"nodeType": "YulFunctionCall",
"src": "2542:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "2542:33:1"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2472:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2480:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2488:5:1",
"type": ""
}
],
"src": "2442:139:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2670:391:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2716:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "2718:77:1"
},
"nodeType": "YulFunctionCall",
"src": "2718:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "2718:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2691:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2700:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2687:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2687:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2712:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2683:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2683:32:1"
},
"nodeType": "YulIf",
"src": "2680:119:1"
},
{
"nodeType": "YulBlock",
"src": "2809:117:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2824:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2838:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2828:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2853:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2888:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2899:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2884:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2884:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2908:7:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "2863:20:1"
},
"nodeType": "YulFunctionCall",
"src": "2863:53:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2853:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "2936:118:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2951:16:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2965:2:1",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2955:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2981:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3016:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3027:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3012:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3012:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3036:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "2991:20:1"
},
"nodeType": "YulFunctionCall",
"src": "2991:53:1"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2981:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2632:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2643:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2655:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2663:6:1",
"type": ""
}
],
"src": "2587:474:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3109:48:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3119:32:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3144:5:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3137:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3137:13:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3130:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3130:21:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "3119:7:1"
}
]
}
]
},
"name": "cleanup_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3091:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "3101:7:1",
"type": ""
}
],
"src": "3067:90:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3222:50:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3239:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3259:5:1"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "3244:14:1"
},
"nodeType": "YulFunctionCall",
"src": "3244:21:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3232:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3232:34:1"
},
"nodeType": "YulExpressionStatement",
"src": "3232:34:1"
}
]
},
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3210:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3217:3:1",
"type": ""
}
],
"src": "3163:109:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3370:118:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3380:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3392:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3403:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3388:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3388:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3380:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3454:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3467:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3478:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3463:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3463:17:1"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulIdentifier",
"src": "3416:37:1"
},
"nodeType": "YulFunctionCall",
"src": "3416:65:1"
},
"nodeType": "YulExpressionStatement",
"src": "3416:65:1"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3342:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3354:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3365:4:1",
"type": ""
}
],
"src": "3278:210:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3559:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3576:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3599:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "3581:17:1"
},
"nodeType": "YulFunctionCall",
"src": "3581:24:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3569:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3569:37:1"
},
"nodeType": "YulExpressionStatement",
"src": "3569:37:1"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3547:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3554:3:1",
"type": ""
}
],
"src": "3494:118:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3716:124:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3726:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3738:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3749:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3734:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3734:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3726:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3806:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3819:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3830:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3815:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3815:17:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "3762:43:1"
},
"nodeType": "YulFunctionCall",
"src": "3762:71:1"
},
"nodeType": "YulExpressionStatement",
"src": "3762:71:1"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3688:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3700:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3711:4:1",
"type": ""
}
],
"src": "3618:222:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3946:519:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3992:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "3994:77:1"
},
"nodeType": "YulFunctionCall",
"src": "3994:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "3994:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3967:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3976:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3963:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3963:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3988:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3959:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3959:32:1"
},
"nodeType": "YulIf",
"src": "3956:119:1"
},
{
"nodeType": "YulBlock",
"src": "4085:117:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4100:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4114:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4104:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4129:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4164:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4175:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4160:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4160:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4184:7:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "4139:20:1"
},
"nodeType": "YulFunctionCall",
"src": "4139:53:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4129:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4212:118:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4227:16:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4241:2:1",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4231:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4257:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4292:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4303:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4288:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4288:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4312:7:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "4267:20:1"
},
"nodeType": "YulFunctionCall",
"src": "4267:53:1"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "4257:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4340:118:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4355:16:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4369:2:1",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4359:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4385:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4420:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4431:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4416:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4416:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4440:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "4395:20:1"
},
"nodeType": "YulFunctionCall",
"src": "4395:53:1"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "4385:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3900:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3911:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3923:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "3931:6:1",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "3939:6:1",
"type": ""
}
],
"src": "3846:619:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4514:43:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4524:27:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4539:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4546:4:1",
"type": "",
"value": "0xff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4535:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4535:16:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "4524:7:1"
}
]
}
]
},
"name": "cleanup_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4496:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "4506:7:1",
"type": ""
}
],
"src": "4471:86:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4624:51:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4641:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4662:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint8",
"nodeType": "YulIdentifier",
"src": "4646:15:1"
},
"nodeType": "YulFunctionCall",
"src": "4646:22:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4634:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4634:35:1"
},
"nodeType": "YulExpressionStatement",
"src": "4634:35:1"
}
]
},
"name": "abi_encode_t_uint8_to_t_uint8_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4612:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4619:3:1",
"type": ""
}
],
"src": "4563:112:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4775:120:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4785:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4797:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4808:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4793:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4793:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4785:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4861:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4874:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4885:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4870:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4870:17:1"
}
],
"functionName": {
"name": "abi_encode_t_uint8_to_t_uint8_fromStack",
"nodeType": "YulIdentifier",
"src": "4821:39:1"
},
"nodeType": "YulFunctionCall",
"src": "4821:67:1"
},
"nodeType": "YulExpressionStatement",
"src": "4821:67:1"
}
]
},
"name": "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4747:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4759:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "4770:4:1",
"type": ""
}
],
"src": "4681:214:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4967:263:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5013:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "5015:77:1"
},
"nodeType": "YulFunctionCall",
"src": "5015:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "5015:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4988:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4997:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4984:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4984:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5009:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4980:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4980:32:1"
},
"nodeType": "YulIf",
"src": "4977:119:1"
},
{
"nodeType": "YulBlock",
"src": "5106:117:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5121:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5135:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5125:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5150:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5185:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5196:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5181:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5181:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5205:7:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "5160:20:1"
},
"nodeType": "YulFunctionCall",
"src": "5160:53:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5150:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4937:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "4948:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4960:6:1",
"type": ""
}
],
"src": "4901:329:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5264:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5281:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5284:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5274:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5274:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "5274:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5378:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5381:4:1",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5371:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5371:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "5371:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5402:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5405:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5395:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5395:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "5395:15:1"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "5236:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5467:146:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5477:25:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5500:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "5482:17:1"
},
"nodeType": "YulFunctionCall",
"src": "5482:20:1"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5477:1:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "5511:25:1",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5534:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "5516:17:1"
},
"nodeType": "YulFunctionCall",
"src": "5516:20:1"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5511:1:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5558:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "5560:16:1"
},
"nodeType": "YulFunctionCall",
"src": "5560:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "5560:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5552:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5555:1:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "5549:2:1"
},
"nodeType": "YulFunctionCall",
"src": "5549:8:1"
},
"nodeType": "YulIf",
"src": "5546:34:1"
},
{
"nodeType": "YulAssignment",
"src": "5590:17:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5602:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5605:1:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5598:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5598:9:1"
},
"variableNames": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "5590:4:1"
}
]
}
]
},
"name": "checked_sub_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "5453:1:1",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "5456:1:1",
"type": ""
}
],
"returnVariables": [
{
"name": "diff",
"nodeType": "YulTypedName",
"src": "5462:4:1",
"type": ""
}
],
"src": "5422:191:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5663:261:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5673:25:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5696:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "5678:17:1"
},
"nodeType": "YulFunctionCall",
"src": "5678:20:1"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5673:1:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "5707:25:1",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5730:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "5712:17:1"
},
"nodeType": "YulFunctionCall",
"src": "5712:20:1"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5707:1:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5870:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "5872:16:1"
},
"nodeType": "YulFunctionCall",
"src": "5872:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "5872:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5791:1:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5798:66:1",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5866:1:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5794:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5794:74:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "5788:2:1"
},
"nodeType": "YulFunctionCall",
"src": "5788:81:1"
},
"nodeType": "YulIf",
"src": "5785:107:1"
},
{
"nodeType": "YulAssignment",
"src": "5902:16:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5913:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5916:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5909:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5909:9:1"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "5902:3:1"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "5650:1:1",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "5653:1:1",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "5659:3:1",
"type": ""
}
],
"src": "5619:305:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6036:70:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "6058:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6066:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6054:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6054:14:1"
},
{
"hexValue": "4e6f7420656e6f7567682045746865722070726f76696465642e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "6070:28:1",
"type": "",
"value": "Not enough Ether provided."
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6047:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6047:52:1"
},
"nodeType": "YulExpressionStatement",
"src": "6047:52:1"
}
]
},
"name": "store_literal_in_memory_01323d80d2a9cecc721958dfb0ebb355919f2565eeedca1f22d5abb8d9359b45",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "6028:6:1",
"type": ""
}
],
"src": "5930:176:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6258:220:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6268:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6334:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6339:2:1",
"type": "",
"value": "26"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "6275:58:1"
},
"nodeType": "YulFunctionCall",
"src": "6275:67:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6268:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6440:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_01323d80d2a9cecc721958dfb0ebb355919f2565eeedca1f22d5abb8d9359b45",
"nodeType": "YulIdentifier",
"src": "6351:88:1"
},
"nodeType": "YulFunctionCall",
"src": "6351:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "6351:93:1"
},
{
"nodeType": "YulAssignment",
"src": "6453:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6464:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6469:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6460:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6460:12:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "6453:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_01323d80d2a9cecc721958dfb0ebb355919f2565eeedca1f22d5abb8d9359b45_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6246:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "6254:3:1",
"type": ""
}
],
"src": "6112:366:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6655:248:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6665:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6677:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6688:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6673:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6673:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6665:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6712:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6723:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6708:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6708:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6731:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6737:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6727:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6727:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6701:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6701:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "6701:47:1"
},
{
"nodeType": "YulAssignment",
"src": "6757:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6891:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_01323d80d2a9cecc721958dfb0ebb355919f2565eeedca1f22d5abb8d9359b45_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "6765:124:1"
},
"nodeType": "YulFunctionCall",
"src": "6765:131:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6757:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_01323d80d2a9cecc721958dfb0ebb355919f2565eeedca1f22d5abb8d9359b45__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6635:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "6650:4:1",
"type": ""
}
],
"src": "6484:419:1"
}
]
},
"contents": "{\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function copy_memory_to_memory(src, dst, length) {\n let i := 0\n for { } lt(i, length) { i := add(i, 32) }\n {\n mstore(add(dst, i), mload(add(src, i)))\n }\n if gt(i, length)\n {\n // clear end\n mstore(add(dst, length), 0)\n }\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value0, tail)\n\n }\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_address(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address(value)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_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 cleanup_t_bool(value) -> cleaned {\n cleaned := iszero(iszero(value))\n }\n\n function abi_encode_t_bool_to_t_bool_fromStack(value, pos) {\n mstore(pos, cleanup_t_bool(value))\n }\n\n function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_bool_to_t_bool_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function 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 cleanup_t_uint8(value) -> cleaned {\n cleaned := and(value, 0xff)\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_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 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 panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function checked_sub_t_uint256(x, y) -> diff {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n if lt(x, y) { panic_error_0x11() }\n\n diff := sub(x, y)\n }\n\n function 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 store_literal_in_memory_01323d80d2a9cecc721958dfb0ebb355919f2565eeedca1f22d5abb8d9359b45(memPtr) {\n\n mstore(add(memPtr, 0), \"Not enough Ether provided.\")\n\n }\n\n function abi_encode_t_stringliteral_01323d80d2a9cecc721958dfb0ebb355919f2565eeedca1f22d5abb8d9359b45_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 26)\n store_literal_in_memory_01323d80d2a9cecc721958dfb0ebb355919f2565eeedca1f22d5abb8d9359b45(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_01323d80d2a9cecc721958dfb0ebb355919f2565eeedca1f22d5abb8d9359b45__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_01323d80d2a9cecc721958dfb0ebb355919f2565eeedca1f22d5abb8d9359b45_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106100885760003560e01c8063313ce5671161005b578063313ce5671461012957806370a082311461014757806395d89b4114610177578063a9059cbb1461019557610088565b806306fdde031461008d578063095ea7b3146100ab57806318160ddd146100db57806323b872dd146100f9575b600080fd5b6100956101c5565b6040516100a291906108cc565b60405180910390f35b6100c560048036038101906100c09190610987565b6101fe565b6040516100d291906109e2565b60405180910390f35b6100e36102f0565b6040516100f09190610a0c565b60405180910390f35b610113600480360381019061010e9190610a27565b6102f9565b60405161012091906109e2565b60405180910390f35b61013161058f565b60405161013e9190610a96565b60405180910390f35b610161600480360381019061015c9190610ab1565b610594565b60405161016e9190610a0c565b60405180910390f35b61017f6105dd565b60405161018c91906108cc565b60405180910390f35b6101af60048036038101906101aa9190610987565b610616565b6040516101bc91906109e2565b60405180910390f35b6040518060400160405280600d81526020017f5564616369747920546f6b656e0000000000000000000000000000000000000081525081565b600081600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516102de9190610a0c565b60405180910390a36001905092915050565b60008054905090565b600081600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546103469190610b0d565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546104119190610b0d565b600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546104dc9190610b41565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161057c9190610a0c565b60405180910390a3600190509392505050565b601281565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6040518060400160405280600381526020017f554443000000000000000000000000000000000000000000000000000000000081525081565b6000600182101561065c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065390610be3565b60405180910390fd5b600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548211156106a857600080fd5b81600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106f39190610b0d565b600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107819190610b41565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516108219190610a0c565b60405180910390a36001905092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561086d578082015181840152602081019050610852565b8381111561087c576000848401525b50505050565b6000601f19601f8301169050919050565b600061089e82610833565b6108a8818561083e565b93506108b881856020860161084f565b6108c181610882565b840191505092915050565b600060208201905081810360008301526108e68184610893565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061091e826108f3565b9050919050565b61092e81610913565b811461093957600080fd5b50565b60008135905061094b81610925565b92915050565b6000819050919050565b61096481610951565b811461096f57600080fd5b50565b6000813590506109818161095b565b92915050565b6000806040838503121561099e5761099d6108ee565b5b60006109ac8582860161093c565b92505060206109bd85828601610972565b9150509250929050565b60008115159050919050565b6109dc816109c7565b82525050565b60006020820190506109f760008301846109d3565b92915050565b610a0681610951565b82525050565b6000602082019050610a2160008301846109fd565b92915050565b600080600060608486031215610a4057610a3f6108ee565b5b6000610a4e8682870161093c565b9350506020610a5f8682870161093c565b9250506040610a7086828701610972565b9150509250925092565b600060ff82169050919050565b610a9081610a7a565b82525050565b6000602082019050610aab6000830184610a87565b92915050565b600060208284031215610ac757610ac66108ee565b5b6000610ad58482850161093c565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000610b1882610951565b9150610b2383610951565b925082821015610b3657610b35610ade565b5b828203905092915050565b6000610b4c82610951565b9150610b5783610951565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115610b8c57610b8b610ade565b5b828201905092915050565b7f4e6f7420656e6f7567682045746865722070726f76696465642e000000000000600082015250565b6000610bcd601a8361083e565b9150610bd882610b97565b602082019050919050565b60006020820190508181036000830152610bfc81610bc0565b905091905056fea2646970667358221220e91e3cd1947274cd370c3cbeba8c375188494de71475080049237b166d78a99164736f6c63430008090033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x88 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x313CE567 GT PUSH2 0x5B JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x129 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x147 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x177 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x195 JUMPI PUSH2 0x88 JUMP JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x8D JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0xAB JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0xDB JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0xF9 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x95 PUSH2 0x1C5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xA2 SWAP2 SWAP1 PUSH2 0x8CC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xC5 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xC0 SWAP2 SWAP1 PUSH2 0x987 JUMP JUMPDEST PUSH2 0x1FE JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xD2 SWAP2 SWAP1 PUSH2 0x9E2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xE3 PUSH2 0x2F0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xF0 SWAP2 SWAP1 PUSH2 0xA0C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x113 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x10E SWAP2 SWAP1 PUSH2 0xA27 JUMP JUMPDEST PUSH2 0x2F9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x120 SWAP2 SWAP1 PUSH2 0x9E2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x131 PUSH2 0x58F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x13E SWAP2 SWAP1 PUSH2 0xA96 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x161 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x15C SWAP2 SWAP1 PUSH2 0xAB1 JUMP JUMPDEST PUSH2 0x594 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x16E SWAP2 SWAP1 PUSH2 0xA0C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x17F PUSH2 0x5DD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x18C SWAP2 SWAP1 PUSH2 0x8CC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1AF PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1AA SWAP2 SWAP1 PUSH2 0x987 JUMP JUMPDEST PUSH2 0x616 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1BC SWAP2 SWAP1 PUSH2 0x9E2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0xD DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x5564616369747920546F6B656E00000000000000000000000000000000000000 DUP2 MSTORE POP DUP2 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x2 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 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 0x2DE SWAP2 SWAP1 PUSH2 0xA0C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x1 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 0x346 SWAP2 SWAP1 PUSH2 0xB0D JUMP JUMPDEST PUSH1 0x1 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 DUP2 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 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 0x411 SWAP2 SWAP1 PUSH2 0xB0D 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 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 DUP2 PUSH1 0x1 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH2 0x4DC SWAP2 SWAP1 PUSH2 0xB41 JUMP JUMPDEST PUSH1 0x1 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 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0x57C SWAP2 SWAP1 PUSH2 0xA0C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH1 0x1 SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x12 DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 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 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x3 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x5544430000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 DUP3 LT ISZERO PUSH2 0x65C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x653 SWAP1 PUSH2 0xBE3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD DUP3 GT ISZERO PUSH2 0x6A8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 PUSH1 0x1 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 0x6F3 SWAP2 SWAP1 PUSH2 0xB0D JUMP JUMPDEST PUSH1 0x1 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 DUP2 PUSH1 0x1 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH2 0x781 SWAP2 SWAP1 PUSH2 0xB41 JUMP JUMPDEST PUSH1 0x1 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 0x821 SWAP2 SWAP1 PUSH2 0xA0C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x86D JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x852 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x87C JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x89E DUP3 PUSH2 0x833 JUMP JUMPDEST PUSH2 0x8A8 DUP2 DUP6 PUSH2 0x83E JUMP JUMPDEST SWAP4 POP PUSH2 0x8B8 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x84F JUMP JUMPDEST PUSH2 0x8C1 DUP2 PUSH2 0x882 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x8E6 DUP2 DUP5 PUSH2 0x893 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x91E DUP3 PUSH2 0x8F3 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x92E DUP2 PUSH2 0x913 JUMP JUMPDEST DUP2 EQ PUSH2 0x939 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x94B DUP2 PUSH2 0x925 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x964 DUP2 PUSH2 0x951 JUMP JUMPDEST DUP2 EQ PUSH2 0x96F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x981 DUP2 PUSH2 0x95B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x99E JUMPI PUSH2 0x99D PUSH2 0x8EE JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x9AC DUP6 DUP3 DUP7 ADD PUSH2 0x93C JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x9BD DUP6 DUP3 DUP7 ADD PUSH2 0x972 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x9DC DUP2 PUSH2 0x9C7 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x9F7 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x9D3 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xA06 DUP2 PUSH2 0x951 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xA21 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x9FD JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xA40 JUMPI PUSH2 0xA3F PUSH2 0x8EE JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xA4E DUP7 DUP3 DUP8 ADD PUSH2 0x93C JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0xA5F DUP7 DUP3 DUP8 ADD PUSH2 0x93C JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0xA70 DUP7 DUP3 DUP8 ADD PUSH2 0x972 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xA90 DUP2 PUSH2 0xA7A JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xAAB PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xA87 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xAC7 JUMPI PUSH2 0xAC6 PUSH2 0x8EE JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xAD5 DUP5 DUP3 DUP6 ADD PUSH2 0x93C JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xB18 DUP3 PUSH2 0x951 JUMP JUMPDEST SWAP2 POP PUSH2 0xB23 DUP4 PUSH2 0x951 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0xB36 JUMPI PUSH2 0xB35 PUSH2 0xADE JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xB4C DUP3 PUSH2 0x951 JUMP JUMPDEST SWAP2 POP PUSH2 0xB57 DUP4 PUSH2 0x951 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0xB8C JUMPI PUSH2 0xB8B PUSH2 0xADE JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E6F7420656E6F7567682045746865722070726F76696465642E000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xBCD PUSH1 0x1A DUP4 PUSH2 0x83E JUMP JUMPDEST SWAP2 POP PUSH2 0xBD8 DUP3 PUSH2 0xB97 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xBFC DUP2 PUSH2 0xBC0 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xE9 0x1E EXTCODECOPY 0xD1 SWAP5 PUSH19 0x74CD370C3CBEBA8C375188494DE71475080049 0x23 PUSH28 0x166D78A99164736F6C63430008090033000000000000000000000000 ",
"sourceMap": "27:3364:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57:45;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3183:206;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1312:89;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2555:332;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;151:35;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1520:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;108:37;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1832:389;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57:45;;;;;;;;;;;;;;;;;;;:::o;3183:206::-;3246:12;3303:6;3270:9;:21;3280:10;3270:21;;;;;;;;;;;;;;;:30;3292:7;3270:30;;;;;;;;;;;;;;;:39;;;;3345:7;3324:37;;3333:10;3324:37;;;3354:6;3324:37;;;;;;:::i;:::-;;;;;;;;3378:4;3371:11;;3183:206;;;;:::o;1312:89::-;1356:7;1382:12;;1375:19;;1312:89;:::o;2555:332::-;2632:12;2690:6;2673:8;:14;2682:4;2673:14;;;;;;;;;;;;;;;;:23;;;;:::i;:::-;2656:8;:14;2665:4;2656:14;;;;;;;;;;;;;;;:40;;;;2766:6;2736:9;:15;2746:4;2736:15;;;;;;;;;;;;;;;:27;2752:10;2736:27;;;;;;;;;;;;;;;;:36;;;;:::i;:::-;2706:9;:15;2716:4;2706:15;;;;;;;;;;;;;;;:27;2722:10;2706:27;;;;;;;;;;;;;;;:66;;;;2812:6;2797:8;:12;2806:2;2797:12;;;;;;;;;;;;;;;;:21;;;;:::i;:::-;2782:8;:12;2791:2;2782:12;;;;;;;;;;;;;;;:36;;;;2848:2;2833:26;;2842:4;2833:26;;;2852:6;2833:26;;;;;;:::i;:::-;;;;;;;;2876:4;2869:11;;2555:332;;;;;:::o;151:35::-;184:2;151:35;:::o;1520:118::-;1580:12;1611:8;:20;1620:10;1611:20;;;;;;;;;;;;;;;;1604:27;;1520:118;;;:::o;108:37::-;;;;;;;;;;;;;;;;;;;:::o;1832:389::-;1891:12;1927:1;1918:6;:10;1915:75;;;1943:36;;;;;;;;;;:::i;:::-;;;;;;;;1915:75;2017:8;:20;2026:10;2017:20;;;;;;;;;;;;;;;;2007:6;:30;;1999:39;;;;;;2094:6;2071:8;:20;2080:10;2071:20;;;;;;;;;;;;;;;;:29;;;;:::i;:::-;2048:8;:20;2057:10;2048:20;;;;;;;;;;;;;;;:52;;;;2140:6;2125:8;:12;2134:2;2125:12;;;;;;;;;;;;;;;;:21;;;;:::i;:::-;2110:8;:12;2119:2;2110:12;;;;;;;;;;;;;;;:36;;;;2182:2;2161:32;;2170:10;2161:32;;;2186:6;2161:32;;;;;;:::i;:::-;;;;;;;;2210:4;2203:11;;1832:389;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:118::-;3581:24;3599:5;3581:24;:::i;:::-;3576:3;3569:37;3494:118;;:::o;3618:222::-;3711:4;3749:2;3738:9;3734:18;3726:26;;3762:71;3830:1;3819:9;3815:17;3806:6;3762:71;:::i;:::-;3618:222;;;;:::o;3846:619::-;3923:6;3931;3939;3988:2;3976:9;3967:7;3963:23;3959:32;3956:119;;;3994:79;;:::i;:::-;3956:119;4114:1;4139:53;4184:7;4175:6;4164:9;4160:22;4139:53;:::i;:::-;4129:63;;4085:117;4241:2;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4212:118;4369:2;4395:53;4440:7;4431:6;4420:9;4416:22;4395:53;:::i;:::-;4385:63;;4340:118;3846:619;;;;;:::o;4471:86::-;4506:7;4546:4;4539:5;4535:16;4524:27;;4471:86;;;:::o;4563:112::-;4646:22;4662:5;4646:22;:::i;:::-;4641:3;4634:35;4563:112;;:::o;4681:214::-;4770:4;4808:2;4797:9;4793:18;4785:26;;4821:67;4885:1;4874:9;4870:17;4861:6;4821:67;:::i;:::-;4681:214;;;;:::o;4901:329::-;4960:6;5009:2;4997:9;4988:7;4984:23;4980:32;4977:119;;;5015:79;;:::i;:::-;4977:119;5135:1;5160:53;5205:7;5196:6;5185:9;5181:22;5160:53;:::i;:::-;5150:63;;5106:117;4901:329;;;;:::o;5236:180::-;5284:77;5281:1;5274:88;5381:4;5378:1;5371:15;5405:4;5402:1;5395:15;5422:191;5462:4;5482:20;5500:1;5482:20;:::i;:::-;5477:25;;5516:20;5534:1;5516:20;:::i;:::-;5511:25;;5555:1;5552;5549:8;5546:34;;;5560:18;;:::i;:::-;5546:34;5605:1;5602;5598:9;5590:17;;5422:191;;;;:::o;5619:305::-;5659:3;5678:20;5696:1;5678:20;:::i;:::-;5673:25;;5712:20;5730:1;5712:20;:::i;:::-;5707:25;;5866:1;5798:66;5794:74;5791:1;5788:81;5785:107;;;5872:18;;:::i;:::-;5785:107;5916:1;5913;5909:9;5902:16;;5619:305;;;;:::o;5930:176::-;6070:28;6066:1;6058:6;6054:14;6047:52;5930:176;:::o;6112:366::-;6254:3;6275:67;6339:2;6334:3;6275:67;:::i;:::-;6268:74;;6351:93;6440:3;6351:93;:::i;:::-;6469:2;6464:3;6460:12;6453:19;;6112:366;;;:::o;6484:419::-;6650:4;6688:2;6677:9;6673:18;6665:26;;6737:9;6731:4;6727:20;6723:1;6712:9;6708:17;6701:47;6765:131;6891:4;6765:131;:::i;:::-;6757:139;;6484:419;;;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "625800",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"approve(address,uint256)": "infinite",
"balanceOf(address)": "2863",
"decimals()": "335",
"name()": "infinite",
"symbol()": "infinite",
"totalSupply()": "2482",
"transfer(address,uint256)": "infinite",
"transferFrom(address,address,uint256)": "infinite"
}
},
"methodIdentifiers": {
"approve(address,uint256)": "095ea7b3",
"balanceOf(address)": "70a08231",
"decimals()": "313ce567",
"name()": "06fdde03",
"symbol()": "95d89b41",
"totalSupply()": "18160ddd",
"transfer(address,uint256)": "a9059cbb",
"transferFrom(address,address,uint256)": "23b872dd"
}
},
"abi": [
{
"inputs": [
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "tokenOwner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "tokens",
"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": "tokens",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokens",
"type": "uint256"
}
],
"name": "approve",
"outputs": [
{
"internalType": "bool",
"name": "success",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "tokenOwner",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "balance",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "decimals",
"outputs": [
{
"internalType": "uint8",
"name": "",
"type": "uint8"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"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": "tokens",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"internalType": "bool",
"name": "success",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokens",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [
{
"internalType": "bool",
"name": "success",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.9+commit.e5eed63a"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "tokenOwner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "tokens",
"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": "tokens",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokens",
"type": "uint256"
}
],
"name": "approve",
"outputs": [
{
"internalType": "bool",
"name": "success",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "tokenOwner",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "balance",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "decimals",
"outputs": [
{
"internalType": "uint8",
"name": "",
"type": "uint8"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"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": "tokens",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"internalType": "bool",
"name": "success",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokens",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [
{
"internalType": "bool",
"name": "success",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/ERC20Contract.sol": "ERC20Contract"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/ERC20Contract.sol": {
"keccak256": "0xd6082fee59c917a5d0b8cc2cca7f32f7b17fb08704caacd9338e914159199e46",
"urls": [
"bzz-raw://1aa15a0052662cd93040ed07cc2608e45463cf9a36931485ca4d7f917508f002",
"dweb:/ipfs/Qmc6MTK7SYoyun1dwpnfS9Y4wfiJmRQDuiPsUM5HBk1nKu"
]
}
},
"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": {
"@_58": {
"entryPoint": null,
"id": 58,
"parameterSlots": 0,
"returnSlots": 0
},
"checked_add_t_uint256": {
"entryPoint": 115,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 58,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 68,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:584:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "52:32:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "62:16:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "73:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "62:7:1"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "34:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "44:7:1",
"type": ""
}
],
"src": "7:77:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "118:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "135:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "138:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "128:6:1"
},
"nodeType": "YulFunctionCall",
"src": "128:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "128:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "232:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "235:4:1",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "225:6:1"
},
"nodeType": "YulFunctionCall",
"src": "225:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "225:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "256:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "259:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "249:6:1"
},
"nodeType": "YulFunctionCall",
"src": "249:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "249:15:1"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "90:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "320:261:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "330:25:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "353:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "335:17:1"
},
"nodeType": "YulFunctionCall",
"src": "335:20:1"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "330:1:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "364:25:1",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "387:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "369:17:1"
},
"nodeType": "YulFunctionCall",
"src": "369:20:1"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "364:1:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "527:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "529:16:1"
},
"nodeType": "YulFunctionCall",
"src": "529:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "529:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "448:1:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "455:66:1",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "523:1:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "451:3:1"
},
"nodeType": "YulFunctionCall",
"src": "451:74:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "445:2:1"
},
"nodeType": "YulFunctionCall",
"src": "445:81:1"
},
"nodeType": "YulIf",
"src": "442:107:1"
},
{
"nodeType": "YulAssignment",
"src": "559:16:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "570:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "573:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "566:3:1"
},
"nodeType": "YulFunctionCall",
"src": "566:9:1"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "559:3:1"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "307:1:1",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "310:1:1",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "316:3:1",
"type": ""
}
],
"src": "276:305:1"
}
]
},
"contents": "{\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 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}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "608060405262069780426100139190610073565b60005534801561002257600080fd5b50670de0b6b3a76400006001600201819055506100c9565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061007e8261003a565b91506100898361003a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156100be576100bd610044565b5b828201905092915050565b610771806100d86000396000f3fe6080604052600436106100295760003560e01c80633ce123dc1461002e5780637aef951c1461005b575b600080fd5b34801561003a57600080fd5b50610043610077565b6040516100529392919061046e565b60405180910390f35b610075600480360381019061007091906105f5565b610137565b005b60018060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060010180546100ae9061066d565b80601f01602080910402602001604051908101604052809291908181526020018280546100da9061066d565b80156101275780601f106100fc57610100808354040283529160200191610127565b820191906000526020600020905b81548152906001019060200180831161010a57829003601f168201915b5050505050908060020154905083565b60005442101561029a5760016002015434111561020a5733600160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550806001800190805190602001906101aa9291906102d8565b50346001600201819055503373ffffffffffffffffffffffffffffffffffffffff167fd7f5ff45ff6e232308acbf841d8134c8c65dd893722727b64eef24b489fb893d82346040516101fd92919061069f565b60405180910390a2610295565b3373ffffffffffffffffffffffffffffffffffffffff167faab6e917b2089e850050512474058e20b2f6dfb93b76ac38d1921588535627d2823460405161025292919061069f565b60405180910390a26040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161028c9061071b565b60405180910390fd5b6102d5565b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102cc9061071b565b60405180910390fd5b50565b8280546102e49061066d565b90600052602060002090601f016020900481019282610306576000855561034d565b82601f1061031f57805160ff191683800117855561034d565b8280016001018555821561034d579182015b8281111561034c578251825591602001919060010190610331565b5b50905061035a919061035e565b5090565b5b8082111561037757600081600090555060010161035f565b5090565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006103a68261037b565b9050919050565b6103b68161039b565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b838110156103f65780820151818401526020810190506103db565b83811115610405576000848401525b50505050565b6000601f19601f8301169050919050565b6000610427826103bc565b61043181856103c7565b93506104418185602086016103d8565b61044a8161040b565b840191505092915050565b6000819050919050565b61046881610455565b82525050565b600060608201905061048360008301866103ad565b8181036020830152610495818561041c565b90506104a4604083018461045f565b949350505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6105028261040b565b810181811067ffffffffffffffff82111715610521576105206104ca565b5b80604052505050565b60006105346104ac565b905061054082826104f9565b919050565b600067ffffffffffffffff8211156105605761055f6104ca565b5b6105698261040b565b9050602081019050919050565b82818337600083830152505050565b600061059861059384610545565b61052a565b9050828152602081018484840111156105b4576105b36104c5565b5b6105bf848285610576565b509392505050565b600082601f8301126105dc576105db6104c0565b5b81356105ec848260208601610585565b91505092915050565b60006020828403121561060b5761060a6104b6565b5b600082013567ffffffffffffffff811115610629576106286104bb565b5b610635848285016105c7565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061068557607f821691505b602082108114156106995761069861063e565b5b50919050565b600060408201905081810360008301526106b9818561041c565b90506106c8602083018461045f565b9392505050565b7f5468726f7720616e20657863657074696f6e0000000000000000000000000000600082015250565b60006107056012836103c7565b9150610710826106cf565b602082019050919050565b60006020820190508181036000830152610734816106f8565b905091905056fea2646970667358221220280e17cdeb82b86403000a494527ae2cbdd85aaaffde136656bb44c9bae34b4d64736f6c63430008090033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH3 0x69780 TIMESTAMP PUSH2 0x13 SWAP2 SWAP1 PUSH2 0x73 JUMP JUMPDEST PUSH1 0x0 SSTORE CALLVALUE DUP1 ISZERO PUSH2 0x22 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH8 0xDE0B6B3A7640000 PUSH1 0x1 PUSH1 0x2 ADD DUP2 SWAP1 SSTORE POP PUSH2 0xC9 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 PUSH2 0x7E DUP3 PUSH2 0x3A JUMP JUMPDEST SWAP2 POP PUSH2 0x89 DUP4 PUSH2 0x3A JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0xBE JUMPI PUSH2 0xBD PUSH2 0x44 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x771 DUP1 PUSH2 0xD8 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x29 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x3CE123DC EQ PUSH2 0x2E JUMPI DUP1 PUSH4 0x7AEF951C EQ PUSH2 0x5B JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x43 PUSH2 0x77 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x52 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x46E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x75 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x70 SWAP2 SWAP1 PUSH2 0x5F5 JUMP JUMPDEST PUSH2 0x137 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x1 DUP1 PUSH1 0x0 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 DUP1 PUSH1 0x1 ADD DUP1 SLOAD PUSH2 0xAE SWAP1 PUSH2 0x66D 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 0xDA SWAP1 PUSH2 0x66D JUMP JUMPDEST DUP1 ISZERO PUSH2 0x127 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0xFC JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x127 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 0x10A JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 DUP1 PUSH1 0x2 ADD SLOAD SWAP1 POP DUP4 JUMP JUMPDEST PUSH1 0x0 SLOAD TIMESTAMP LT ISZERO PUSH2 0x29A JUMPI PUSH1 0x1 PUSH1 0x2 ADD SLOAD CALLVALUE GT ISZERO PUSH2 0x20A JUMPI CALLER PUSH1 0x1 PUSH1 0x0 ADD 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 0x1 DUP1 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x1AA SWAP3 SWAP2 SWAP1 PUSH2 0x2D8 JUMP JUMPDEST POP CALLVALUE PUSH1 0x1 PUSH1 0x2 ADD DUP2 SWAP1 SSTORE POP CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xD7F5FF45FF6E232308ACBF841D8134C8C65DD893722727B64EEF24B489FB893D DUP3 CALLVALUE PUSH1 0x40 MLOAD PUSH2 0x1FD SWAP3 SWAP2 SWAP1 PUSH2 0x69F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 PUSH2 0x295 JUMP JUMPDEST CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xAAB6E917B2089E850050512474058E20B2F6DFB93B76AC38D1921588535627D2 DUP3 CALLVALUE PUSH1 0x40 MLOAD PUSH2 0x252 SWAP3 SWAP2 SWAP1 PUSH2 0x69F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x28C SWAP1 PUSH2 0x71B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x2D5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2CC SWAP1 PUSH2 0x71B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH2 0x2E4 SWAP1 PUSH2 0x66D JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0x306 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0x34D JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0x31F JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0x34D JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0x34D JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x34C JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x331 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x35A SWAP2 SWAP1 PUSH2 0x35E JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x377 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x35F JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3A6 DUP3 PUSH2 0x37B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x3B6 DUP2 PUSH2 0x39B JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x3F6 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x3DB JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x405 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x427 DUP3 PUSH2 0x3BC JUMP JUMPDEST PUSH2 0x431 DUP2 DUP6 PUSH2 0x3C7 JUMP JUMPDEST SWAP4 POP PUSH2 0x441 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x3D8 JUMP JUMPDEST PUSH2 0x44A DUP2 PUSH2 0x40B JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x468 DUP2 PUSH2 0x455 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 DUP3 ADD SWAP1 POP PUSH2 0x483 PUSH1 0x0 DUP4 ADD DUP7 PUSH2 0x3AD JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0x495 DUP2 DUP6 PUSH2 0x41C JUMP JUMPDEST SWAP1 POP PUSH2 0x4A4 PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x45F JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x502 DUP3 PUSH2 0x40B JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x521 JUMPI PUSH2 0x520 PUSH2 0x4CA JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x534 PUSH2 0x4AC JUMP JUMPDEST SWAP1 POP PUSH2 0x540 DUP3 DUP3 PUSH2 0x4F9 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x560 JUMPI PUSH2 0x55F PUSH2 0x4CA JUMP JUMPDEST JUMPDEST PUSH2 0x569 DUP3 PUSH2 0x40B JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x598 PUSH2 0x593 DUP5 PUSH2 0x545 JUMP JUMPDEST PUSH2 0x52A JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x5B4 JUMPI PUSH2 0x5B3 PUSH2 0x4C5 JUMP JUMPDEST JUMPDEST PUSH2 0x5BF DUP5 DUP3 DUP6 PUSH2 0x576 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x5DC JUMPI PUSH2 0x5DB PUSH2 0x4C0 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x5EC DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x585 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x60B JUMPI PUSH2 0x60A PUSH2 0x4B6 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP3 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x629 JUMPI PUSH2 0x628 PUSH2 0x4BB JUMP JUMPDEST JUMPDEST PUSH2 0x635 DUP5 DUP3 DUP6 ADD PUSH2 0x5C7 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x685 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x699 JUMPI PUSH2 0x698 PUSH2 0x63E JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x6B9 DUP2 DUP6 PUSH2 0x41C JUMP JUMPDEST SWAP1 POP PUSH2 0x6C8 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x45F JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH32 0x5468726F7720616E20657863657074696F6E0000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x705 PUSH1 0x12 DUP4 PUSH2 0x3C7 JUMP JUMPDEST SWAP2 POP PUSH2 0x710 DUP3 PUSH2 0x6CF JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x734 DUP2 PUSH2 0x6F8 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x28 0xE OR 0xCD 0xEB DUP3 0xB8 PUSH5 0x3000A4945 0x27 0xAE 0x2C 0xBD 0xD8 GAS 0xAA SELFDESTRUCT 0xDE SGT PUSH7 0x56BB44C9BAE34B 0x4D PUSH5 0x736F6C6343 STOP ADDMOD MULMOD STOP CALLER ",
"sourceMap": "27:1629:0:-:0;;;147:6;129:15;:24;;;;:::i;:::-;110:43;;838:103;;;;;;;;;;927:7;910:10;:14;;:24;;;;27:1629;;7:77:1;44:7;73:5;62:16;;7:77;;;:::o;90:180::-;138:77;135:1;128:88;235:4;232:1;225:15;259:4;256:1;249:15;276:305;316:3;335:20;353:1;335:20;:::i;:::-;330:25;;369:20;387:1;369:20;:::i;:::-;364:25;;523:1;455:66;451:74;448:1;445:81;442:107;;;529:18;;:::i;:::-;442:107;573:1;570;566:9;559:16;;276:305;;;;:::o;27:1629:0:-;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@bid_114": {
"entryPoint": 311,
"id": 114,
"parameterSlots": 1,
"returnSlots": 0
},
"@highBidder_17": {
"entryPoint": 119,
"id": 17,
"parameterSlots": 0,
"returnSlots": 0
},
"abi_decode_available_length_t_string_memory_ptr": {
"entryPoint": 1413,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_t_string_memory_ptr": {
"entryPoint": 1479,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_string_memory_ptr": {
"entryPoint": 1525,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_address_to_t_address_fromStack": {
"entryPoint": 941,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 1052,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_stringliteral_d0d0b3bd0b9b44f9d01eb750fabab6dfb7c66bb48f8c7db73a0320f0cbb057dd_to_t_string_memory_ptr_fromStack": {
"entryPoint": 1784,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 1119,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_address_t_string_memory_ptr_t_uint256__to_t_address_t_string_memory_ptr_t_uint256__fromStack_reversed": {
"entryPoint": 1134,
"id": null,
"parameterSlots": 4,
"returnSlots": 1
},
"abi_encode_tuple_t_string_memory_ptr_t_uint256__to_t_string_memory_ptr_t_uint256__fromStack_reversed": {
"entryPoint": 1695,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_d0d0b3bd0b9b44f9d01eb750fabab6dfb7c66bb48f8c7db73a0320f0cbb057dd__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 1819,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_memory": {
"entryPoint": 1322,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": 1196,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_allocation_size_t_string_memory_ptr": {
"entryPoint": 1349,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 956,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 967,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 923,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 891,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 1109,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_calldata_to_memory": {
"entryPoint": 1398,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"copy_memory_to_memory": {
"entryPoint": 984,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 1645,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"finalize_allocation": {
"entryPoint": 1273,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 1598,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 1226,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": {
"entryPoint": 1216,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": {
"entryPoint": 1221,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": 1211,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 1206,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 1035,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"store_literal_in_memory_d0d0b3bd0b9b44f9d01eb750fabab6dfb7c66bb48f8c7db73a0320f0cbb057dd": {
"entryPoint": 1743,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:7039:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "52:81:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "62:65:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "77:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "84:42:1",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "73:3:1"
},
"nodeType": "YulFunctionCall",
"src": "73:54:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "62:7:1"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "34:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "44:7:1",
"type": ""
}
],
"src": "7:126:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "184:51:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "194:35:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "223:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "205:17:1"
},
"nodeType": "YulFunctionCall",
"src": "205:24:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "194:7:1"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "166:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "176:7:1",
"type": ""
}
],
"src": "139:96:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "306:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "323:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "346:5:1"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "328:17:1"
},
"nodeType": "YulFunctionCall",
"src": "328:24:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "316:6:1"
},
"nodeType": "YulFunctionCall",
"src": "316:37:1"
},
"nodeType": "YulExpressionStatement",
"src": "316:37:1"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "294:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "301:3:1",
"type": ""
}
],
"src": "241:118:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "424:40:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "435:22:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "451:5:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "445:5:1"
},
"nodeType": "YulFunctionCall",
"src": "445:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "435:6:1"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "407:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "417:6:1",
"type": ""
}
],
"src": "365:99:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "566:73:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "583:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "588:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "576:6:1"
},
"nodeType": "YulFunctionCall",
"src": "576:19:1"
},
"nodeType": "YulExpressionStatement",
"src": "576:19:1"
},
{
"nodeType": "YulAssignment",
"src": "604:29:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "623:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "628:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "619:3:1"
},
"nodeType": "YulFunctionCall",
"src": "619:14:1"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "604:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "538:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "543:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "554:11:1",
"type": ""
}
],
"src": "470:169:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "694:258:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "704:10:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "713:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "708:1:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "773:63:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "798:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "803:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "794:3:1"
},
"nodeType": "YulFunctionCall",
"src": "794:11:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "817:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "822:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "813:3:1"
},
"nodeType": "YulFunctionCall",
"src": "813:11:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "807:5:1"
},
"nodeType": "YulFunctionCall",
"src": "807:18:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "787:6:1"
},
"nodeType": "YulFunctionCall",
"src": "787:39:1"
},
"nodeType": "YulExpressionStatement",
"src": "787:39:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "734:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "737:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "731:2:1"
},
"nodeType": "YulFunctionCall",
"src": "731:13:1"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "745:19:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "747:15:1",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "756:1:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "759:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "752:3:1"
},
"nodeType": "YulFunctionCall",
"src": "752:10:1"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "747:1:1"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "727:3:1",
"statements": []
},
"src": "723:113:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "870:76:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "920:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "925:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "916:3:1"
},
"nodeType": "YulFunctionCall",
"src": "916:16:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "934:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "909:6:1"
},
"nodeType": "YulFunctionCall",
"src": "909:27:1"
},
"nodeType": "YulExpressionStatement",
"src": "909:27:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "851:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "854:6:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "848:2:1"
},
"nodeType": "YulFunctionCall",
"src": "848:13:1"
},
"nodeType": "YulIf",
"src": "845:101:1"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "676:3:1",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "681:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "686:6:1",
"type": ""
}
],
"src": "645:307:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1006:54:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1016:38:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1034:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1041:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1030:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1030:14:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1050:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "1046:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1046:7:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1026:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1026:28:1"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "1016:6:1"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "989:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "999:6:1",
"type": ""
}
],
"src": "958:102:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1158:272:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1168:53:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1215:5:1"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "1182:32:1"
},
"nodeType": "YulFunctionCall",
"src": "1182:39:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1172:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1230:78:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1296:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1301:6:1"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "1237:58:1"
},
"nodeType": "YulFunctionCall",
"src": "1237:71:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1230:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1343:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1350:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1339:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1339:16:1"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1357:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1362:6:1"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "1317:21:1"
},
"nodeType": "YulFunctionCall",
"src": "1317:52:1"
},
"nodeType": "YulExpressionStatement",
"src": "1317:52:1"
},
{
"nodeType": "YulAssignment",
"src": "1378:46:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1389:3:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1416:6:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "1394:21:1"
},
"nodeType": "YulFunctionCall",
"src": "1394:29:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1385:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1385:39:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1378:3:1"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1139:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1146:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1154:3:1",
"type": ""
}
],
"src": "1066:364:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1481:32:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1491:16:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "1502:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1491:7:1"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1463:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1473:7:1",
"type": ""
}
],
"src": "1436:77:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1584:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1601:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1624:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "1606:17:1"
},
"nodeType": "YulFunctionCall",
"src": "1606:24:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1594:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1594:37:1"
},
"nodeType": "YulExpressionStatement",
"src": "1594:37:1"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1572:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1579:3:1",
"type": ""
}
],
"src": "1519:118:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1817:359:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1827:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1839:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1850:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1835:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1835:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1827:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1907:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1920:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1931:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1916:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1916:17:1"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "1863:43:1"
},
"nodeType": "YulFunctionCall",
"src": "1863:71:1"
},
"nodeType": "YulExpressionStatement",
"src": "1863:71:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1955:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1966:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1951:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1951:18:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1975:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1981:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1971:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1971:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1944:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1944:48:1"
},
"nodeType": "YulExpressionStatement",
"src": "1944:48:1"
},
{
"nodeType": "YulAssignment",
"src": "2001:86:1",
"value": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2073:6:1"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2082:4:1"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2009:63:1"
},
"nodeType": "YulFunctionCall",
"src": "2009:78:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2001:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "2141:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2154:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2165:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2150:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2150:18:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "2097:43:1"
},
"nodeType": "YulFunctionCall",
"src": "2097:72:1"
},
"nodeType": "YulExpressionStatement",
"src": "2097:72:1"
}
]
},
"name": "abi_encode_tuple_t_address_t_string_memory_ptr_t_uint256__to_t_address_t_string_memory_ptr_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1773:9:1",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "1785:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1793:6:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1801:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1812:4:1",
"type": ""
}
],
"src": "1643:533:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2222:35:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2232:19:1",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2248:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "2242:5:1"
},
"nodeType": "YulFunctionCall",
"src": "2242:9:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "2232:6:1"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "2215:6:1",
"type": ""
}
],
"src": "2182:75:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2352:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2369:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2372:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2362:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2362:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "2362:12:1"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "2263:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2475:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2492:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2495:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2485:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2485:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "2485:12:1"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "2386:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2598:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2615:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2618:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2608:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2608:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "2608:12:1"
}
]
},
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulFunctionDefinition",
"src": "2509:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2721:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2738:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2741:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2731:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2731:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "2731:12:1"
}
]
},
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulFunctionDefinition",
"src": "2632:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2783:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2800:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2803:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2793:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2793:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "2793:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2897:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2900:4:1",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2890:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2890:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "2890:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2921:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2924:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2914:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2914:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "2914:15:1"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "2755:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2984:238:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2994:58:1",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "3016:6:1"
},
{
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "3046:4:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "3024:21:1"
},
"nodeType": "YulFunctionCall",
"src": "3024:27:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3012:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3012:40:1"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "2998:10:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3163:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "3165:16:1"
},
"nodeType": "YulFunctionCall",
"src": "3165:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "3165:18:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "3106:10:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3118:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3103:2:1"
},
"nodeType": "YulFunctionCall",
"src": "3103:34:1"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "3142:10:1"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "3154:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "3139:2:1"
},
"nodeType": "YulFunctionCall",
"src": "3139:22:1"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "3100:2:1"
},
"nodeType": "YulFunctionCall",
"src": "3100:62:1"
},
"nodeType": "YulIf",
"src": "3097:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3201:2:1",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "3205:10:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3194:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3194:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "3194:22:1"
}
]
},
"name": "finalize_allocation",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "2970:6:1",
"type": ""
},
{
"name": "size",
"nodeType": "YulTypedName",
"src": "2978:4:1",
"type": ""
}
],
"src": "2941:281:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3269:88:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3279:30:1",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nodeType": "YulIdentifier",
"src": "3289:18:1"
},
"nodeType": "YulFunctionCall",
"src": "3289:20:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "3279:6:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "3338:6:1"
},
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "3346:4:1"
}
],
"functionName": {
"name": "finalize_allocation",
"nodeType": "YulIdentifier",
"src": "3318:19:1"
},
"nodeType": "YulFunctionCall",
"src": "3318:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "3318:33:1"
}
]
},
"name": "allocate_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "3253:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "3262:6:1",
"type": ""
}
],
"src": "3228:129:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3430:241:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3535:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "3537:16:1"
},
"nodeType": "YulFunctionCall",
"src": "3537:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "3537:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3507:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3515:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3504:2:1"
},
"nodeType": "YulFunctionCall",
"src": "3504:30:1"
},
"nodeType": "YulIf",
"src": "3501:56:1"
},
{
"nodeType": "YulAssignment",
"src": "3567:37:1",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3597:6:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "3575:21:1"
},
"nodeType": "YulFunctionCall",
"src": "3575:29:1"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "3567:4:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "3641:23:1",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "3653:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3659:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3649:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3649:15:1"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "3641:4:1"
}
]
}
]
},
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "3414:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "3425:4:1",
"type": ""
}
],
"src": "3363:308:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3728:103:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "3751:3:1"
},
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "3756:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3761:6:1"
}
],
"functionName": {
"name": "calldatacopy",
"nodeType": "YulIdentifier",
"src": "3738:12:1"
},
"nodeType": "YulFunctionCall",
"src": "3738:30:1"
},
"nodeType": "YulExpressionStatement",
"src": "3738:30:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "3809:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3814:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3805:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3805:16:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3823:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3798:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3798:27:1"
},
"nodeType": "YulExpressionStatement",
"src": "3798:27:1"
}
]
},
"name": "copy_calldata_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "3710:3:1",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "3715:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "3720:6:1",
"type": ""
}
],
"src": "3677:154:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3921:328:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3931:75:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3998:6:1"
}
],
"functionName": {
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "3956:41:1"
},
"nodeType": "YulFunctionCall",
"src": "3956:49:1"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "3940:15:1"
},
"nodeType": "YulFunctionCall",
"src": "3940:66:1"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "3931:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "4022:5:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4029:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4015:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4015:21:1"
},
"nodeType": "YulExpressionStatement",
"src": "4015:21:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "4045:27:1",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "4060:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4067:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4056:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4056:16:1"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "4049:3:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4110:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulIdentifier",
"src": "4112:77:1"
},
"nodeType": "YulFunctionCall",
"src": "4112:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "4112:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "4091:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4096:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4087:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4087:16:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "4105:3:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4084:2:1"
},
"nodeType": "YulFunctionCall",
"src": "4084:25:1"
},
"nodeType": "YulIf",
"src": "4081:112:1"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "4226:3:1"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "4231:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4236:6:1"
}
],
"functionName": {
"name": "copy_calldata_to_memory",
"nodeType": "YulIdentifier",
"src": "4202:23:1"
},
"nodeType": "YulFunctionCall",
"src": "4202:41:1"
},
"nodeType": "YulExpressionStatement",
"src": "4202:41:1"
}
]
},
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "3894:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "3899:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3907:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "3915:5:1",
"type": ""
}
],
"src": "3837:412:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4331:278:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4380:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "4382:77:1"
},
"nodeType": "YulFunctionCall",
"src": "4382:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "4382:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4359:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4367:4:1",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4355:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4355:17:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "4374:3:1"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4351:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4351:27:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "4344:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4344:35:1"
},
"nodeType": "YulIf",
"src": "4341:122:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "4472:34:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4499:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "4486:12:1"
},
"nodeType": "YulFunctionCall",
"src": "4486:20:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4476:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4515:88:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4576:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4584:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4572:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4572:17:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4591:6:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "4599:3:1"
}
],
"functionName": {
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "4524:47:1"
},
"nodeType": "YulFunctionCall",
"src": "4524:79:1"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "4515:5:1"
}
]
}
]
},
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4309:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "4317:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "4325:5:1",
"type": ""
}
],
"src": "4269:340:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4691:433:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4737:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "4739:77:1"
},
"nodeType": "YulFunctionCall",
"src": "4739:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "4739:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4712:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4721:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4708:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4708:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4733:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4704:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4704:32:1"
},
"nodeType": "YulIf",
"src": "4701:119:1"
},
{
"nodeType": "YulBlock",
"src": "4830:287:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4845:45:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4876:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4887:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4872:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4872:17:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "4859:12:1"
},
"nodeType": "YulFunctionCall",
"src": "4859:31:1"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4849:6:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4937:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "4939:77:1"
},
"nodeType": "YulFunctionCall",
"src": "4939:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "4939:79:1"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4909:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4917:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4906:2:1"
},
"nodeType": "YulFunctionCall",
"src": "4906:30:1"
},
"nodeType": "YulIf",
"src": "4903:117:1"
},
{
"nodeType": "YulAssignment",
"src": "5034:73:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5079:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5090:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5075:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5075:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5099:7:1"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "5044:30:1"
},
"nodeType": "YulFunctionCall",
"src": "5044:63:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5034:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4661:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "4672:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4684:6:1",
"type": ""
}
],
"src": "4615:509:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5158:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5175:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5178:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5168:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5168:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "5168:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5272:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5275:4:1",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5265:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5265:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "5265:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5296:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5299:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5289:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5289:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "5289:15:1"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "5130:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5367:269:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5377:22:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "5391:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5397:1:1",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "5387:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5387:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5377:6:1"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "5408:38:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "5438:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5444:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5434:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5434:12:1"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "5412:18:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5485:51:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5499:27:1",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5513:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5521:4:1",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5509:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5509:17:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5499:6:1"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "5465:18:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "5458:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5458:26:1"
},
"nodeType": "YulIf",
"src": "5455:81:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5588:42:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "5602:16:1"
},
"nodeType": "YulFunctionCall",
"src": "5602:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "5602:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "5552:18:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5575:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5583:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "5572:2:1"
},
"nodeType": "YulFunctionCall",
"src": "5572:14:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "5549:2:1"
},
"nodeType": "YulFunctionCall",
"src": "5549:38:1"
},
"nodeType": "YulIf",
"src": "5546:84:1"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "5351:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5360:6:1",
"type": ""
}
],
"src": "5316:320:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5788:277:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5798:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5810:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5821:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5806:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5806:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5798:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5845:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5856:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5841:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5841:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5864:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5870:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5860:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5860:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5834:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5834:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "5834:47:1"
},
{
"nodeType": "YulAssignment",
"src": "5890:86:1",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5962:6:1"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5971:4:1"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "5898:63:1"
},
"nodeType": "YulFunctionCall",
"src": "5898:78:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5890:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "6030:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6043:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6054:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6039:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6039:18:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "5986:43:1"
},
"nodeType": "YulFunctionCall",
"src": "5986:72:1"
},
"nodeType": "YulExpressionStatement",
"src": "5986:72:1"
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr_t_uint256__to_t_string_memory_ptr_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5752:9:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "5764:6:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5772:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "5783:4:1",
"type": ""
}
],
"src": "5642:423:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6177:62:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "6199:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6207:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6195:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6195:14:1"
},
{
"hexValue": "5468726f7720616e20657863657074696f6e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "6211:20:1",
"type": "",
"value": "Throw an exception"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6188:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6188:44:1"
},
"nodeType": "YulExpressionStatement",
"src": "6188:44:1"
}
]
},
"name": "store_literal_in_memory_d0d0b3bd0b9b44f9d01eb750fabab6dfb7c66bb48f8c7db73a0320f0cbb057dd",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "6169:6:1",
"type": ""
}
],
"src": "6071:168:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6391:220:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6401:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6467:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6472:2:1",
"type": "",
"value": "18"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "6408:58:1"
},
"nodeType": "YulFunctionCall",
"src": "6408:67:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6401:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6573:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_d0d0b3bd0b9b44f9d01eb750fabab6dfb7c66bb48f8c7db73a0320f0cbb057dd",
"nodeType": "YulIdentifier",
"src": "6484:88:1"
},
"nodeType": "YulFunctionCall",
"src": "6484:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "6484:93:1"
},
{
"nodeType": "YulAssignment",
"src": "6586:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6597:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6602:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6593:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6593:12:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "6586:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_d0d0b3bd0b9b44f9d01eb750fabab6dfb7c66bb48f8c7db73a0320f0cbb057dd_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6379:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "6387:3:1",
"type": ""
}
],
"src": "6245:366:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6788:248:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6798:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6810:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6821:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6806:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6806:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6798:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6845:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6856:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6841:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6841:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6864:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6870:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6860:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6860:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6834:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6834:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "6834:47:1"
},
{
"nodeType": "YulAssignment",
"src": "6890:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7024:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_d0d0b3bd0b9b44f9d01eb750fabab6dfb7c66bb48f8c7db73a0320f0cbb057dd_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "6898:124:1"
},
"nodeType": "YulFunctionCall",
"src": "6898:131:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6890:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_d0d0b3bd0b9b44f9d01eb750fabab6dfb7c66bb48f8c7db73a0320f0cbb057dd__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6768:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "6783:4:1",
"type": ""
}
],
"src": "6617:419:1"
}
]
},
"contents": "{\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function copy_memory_to_memory(src, dst, length) {\n let i := 0\n for { } lt(i, length) { i := add(i, 32) }\n {\n mstore(add(dst, i), mload(add(src, i)))\n }\n if gt(i, length)\n {\n // clear end\n mstore(add(dst, length), 0)\n }\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\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 cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_address_t_string_memory_ptr_t_uint256__to_t_address_t_string_memory_ptr_t_uint256__fromStack_reversed(headStart , value2, value1, value0) -> tail {\n tail := add(headStart, 96)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n mstore(add(headStart, 32), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value1, tail)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value2, add(headStart, 64))\n\n }\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() {\n revert(0, 0)\n }\n\n function revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() {\n revert(0, 0)\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function finalize_allocation(memPtr, size) {\n let newFreePtr := add(memPtr, round_up_to_mul_of_32(size))\n // protect against overflow\n if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n }\n\n function allocate_memory(size) -> memPtr {\n memPtr := allocate_unbounded()\n finalize_allocation(memPtr, size)\n }\n\n function array_allocation_size_t_string_memory_ptr(length) -> size {\n // Make sure we can allocate memory without overflow\n if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n\n size := round_up_to_mul_of_32(length)\n\n // add length slot\n size := add(size, 0x20)\n\n }\n\n function copy_calldata_to_memory(src, dst, length) {\n calldatacopy(dst, src, length)\n // clear end\n mstore(add(dst, length), 0)\n }\n\n function abi_decode_available_length_t_string_memory_ptr(src, length, end) -> array {\n array := allocate_memory(array_allocation_size_t_string_memory_ptr(length))\n mstore(array, length)\n let dst := add(array, 0x20)\n if gt(add(src, length), end) { revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() }\n copy_calldata_to_memory(src, dst, length)\n }\n\n // string\n function abi_decode_t_string_memory_ptr(offset, end) -> array {\n if iszero(slt(add(offset, 0x1f), end)) { revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() }\n let length := calldataload(offset)\n array := abi_decode_available_length_t_string_memory_ptr(add(offset, 0x20), length, end)\n }\n\n function abi_decode_tuple_t_string_memory_ptr(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := calldataload(add(headStart, 0))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value0 := abi_decode_t_string_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function abi_encode_tuple_t_string_memory_ptr_t_uint256__to_t_string_memory_ptr_t_uint256__fromStack_reversed(headStart , value1, value0) -> tail {\n tail := add(headStart, 64)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value0, tail)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value1, add(headStart, 32))\n\n }\n\n function store_literal_in_memory_d0d0b3bd0b9b44f9d01eb750fabab6dfb7c66bb48f8c7db73a0320f0cbb057dd(memPtr) {\n\n mstore(add(memPtr, 0), \"Throw an exception\")\n\n }\n\n function abi_encode_t_stringliteral_d0d0b3bd0b9b44f9d01eb750fabab6dfb7c66bb48f8c7db73a0320f0cbb057dd_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 18)\n store_literal_in_memory_d0d0b3bd0b9b44f9d01eb750fabab6dfb7c66bb48f8c7db73a0320f0cbb057dd(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_d0d0b3bd0b9b44f9d01eb750fabab6dfb7c66bb48f8c7db73a0320f0cbb057dd__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_d0d0b3bd0b9b44f9d01eb750fabab6dfb7c66bb48f8c7db73a0320f0cbb057dd_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "6080604052600436106100295760003560e01c80633ce123dc1461002e5780637aef951c1461005b575b600080fd5b34801561003a57600080fd5b50610043610077565b6040516100529392919061046e565b60405180910390f35b610075600480360381019061007091906105f5565b610137565b005b60018060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060010180546100ae9061066d565b80601f01602080910402602001604051908101604052809291908181526020018280546100da9061066d565b80156101275780601f106100fc57610100808354040283529160200191610127565b820191906000526020600020905b81548152906001019060200180831161010a57829003601f168201915b5050505050908060020154905083565b60005442101561029a5760016002015434111561020a5733600160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550806001800190805190602001906101aa9291906102d8565b50346001600201819055503373ffffffffffffffffffffffffffffffffffffffff167fd7f5ff45ff6e232308acbf841d8134c8c65dd893722727b64eef24b489fb893d82346040516101fd92919061069f565b60405180910390a2610295565b3373ffffffffffffffffffffffffffffffffffffffff167faab6e917b2089e850050512474058e20b2f6dfb93b76ac38d1921588535627d2823460405161025292919061069f565b60405180910390a26040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161028c9061071b565b60405180910390fd5b6102d5565b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102cc9061071b565b60405180910390fd5b50565b8280546102e49061066d565b90600052602060002090601f016020900481019282610306576000855561034d565b82601f1061031f57805160ff191683800117855561034d565b8280016001018555821561034d579182015b8281111561034c578251825591602001919060010190610331565b5b50905061035a919061035e565b5090565b5b8082111561037757600081600090555060010161035f565b5090565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006103a68261037b565b9050919050565b6103b68161039b565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b838110156103f65780820151818401526020810190506103db565b83811115610405576000848401525b50505050565b6000601f19601f8301169050919050565b6000610427826103bc565b61043181856103c7565b93506104418185602086016103d8565b61044a8161040b565b840191505092915050565b6000819050919050565b61046881610455565b82525050565b600060608201905061048360008301866103ad565b8181036020830152610495818561041c565b90506104a4604083018461045f565b949350505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6105028261040b565b810181811067ffffffffffffffff82111715610521576105206104ca565b5b80604052505050565b60006105346104ac565b905061054082826104f9565b919050565b600067ffffffffffffffff8211156105605761055f6104ca565b5b6105698261040b565b9050602081019050919050565b82818337600083830152505050565b600061059861059384610545565b61052a565b9050828152602081018484840111156105b4576105b36104c5565b5b6105bf848285610576565b509392505050565b600082601f8301126105dc576105db6104c0565b5b81356105ec848260208601610585565b91505092915050565b60006020828403121561060b5761060a6104b6565b5b600082013567ffffffffffffffff811115610629576106286104bb565b5b610635848285016105c7565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061068557607f821691505b602082108114156106995761069861063e565b5b50919050565b600060408201905081810360008301526106b9818561041c565b90506106c8602083018461045f565b9392505050565b7f5468726f7720616e20657863657074696f6e0000000000000000000000000000600082015250565b60006107056012836103c7565b9150610710826106cf565b602082019050919050565b60006020820190508181036000830152610734816106f8565b905091905056fea2646970667358221220280e17cdeb82b86403000a494527ae2cbdd85aaaffde136656bb44c9bae34b4d64736f6c63430008090033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x29 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x3CE123DC EQ PUSH2 0x2E JUMPI DUP1 PUSH4 0x7AEF951C EQ PUSH2 0x5B JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x43 PUSH2 0x77 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x52 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x46E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x75 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x70 SWAP2 SWAP1 PUSH2 0x5F5 JUMP JUMPDEST PUSH2 0x137 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x1 DUP1 PUSH1 0x0 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 DUP1 PUSH1 0x1 ADD DUP1 SLOAD PUSH2 0xAE SWAP1 PUSH2 0x66D 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 0xDA SWAP1 PUSH2 0x66D JUMP JUMPDEST DUP1 ISZERO PUSH2 0x127 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0xFC JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x127 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 0x10A JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 DUP1 PUSH1 0x2 ADD SLOAD SWAP1 POP DUP4 JUMP JUMPDEST PUSH1 0x0 SLOAD TIMESTAMP LT ISZERO PUSH2 0x29A JUMPI PUSH1 0x1 PUSH1 0x2 ADD SLOAD CALLVALUE GT ISZERO PUSH2 0x20A JUMPI CALLER PUSH1 0x1 PUSH1 0x0 ADD 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 0x1 DUP1 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x1AA SWAP3 SWAP2 SWAP1 PUSH2 0x2D8 JUMP JUMPDEST POP CALLVALUE PUSH1 0x1 PUSH1 0x2 ADD DUP2 SWAP1 SSTORE POP CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xD7F5FF45FF6E232308ACBF841D8134C8C65DD893722727B64EEF24B489FB893D DUP3 CALLVALUE PUSH1 0x40 MLOAD PUSH2 0x1FD SWAP3 SWAP2 SWAP1 PUSH2 0x69F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 PUSH2 0x295 JUMP JUMPDEST CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xAAB6E917B2089E850050512474058E20B2F6DFB93B76AC38D1921588535627D2 DUP3 CALLVALUE PUSH1 0x40 MLOAD PUSH2 0x252 SWAP3 SWAP2 SWAP1 PUSH2 0x69F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x28C SWAP1 PUSH2 0x71B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x2D5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2CC SWAP1 PUSH2 0x71B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH2 0x2E4 SWAP1 PUSH2 0x66D JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0x306 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0x34D JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0x31F JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0x34D JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0x34D JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x34C JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x331 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x35A SWAP2 SWAP1 PUSH2 0x35E JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x377 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x35F JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3A6 DUP3 PUSH2 0x37B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x3B6 DUP2 PUSH2 0x39B JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x3F6 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x3DB JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x405 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x427 DUP3 PUSH2 0x3BC JUMP JUMPDEST PUSH2 0x431 DUP2 DUP6 PUSH2 0x3C7 JUMP JUMPDEST SWAP4 POP PUSH2 0x441 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x3D8 JUMP JUMPDEST PUSH2 0x44A DUP2 PUSH2 0x40B JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x468 DUP2 PUSH2 0x455 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 DUP3 ADD SWAP1 POP PUSH2 0x483 PUSH1 0x0 DUP4 ADD DUP7 PUSH2 0x3AD JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0x495 DUP2 DUP6 PUSH2 0x41C JUMP JUMPDEST SWAP1 POP PUSH2 0x4A4 PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x45F JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x502 DUP3 PUSH2 0x40B JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x521 JUMPI PUSH2 0x520 PUSH2 0x4CA JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x534 PUSH2 0x4AC JUMP JUMPDEST SWAP1 POP PUSH2 0x540 DUP3 DUP3 PUSH2 0x4F9 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x560 JUMPI PUSH2 0x55F PUSH2 0x4CA JUMP JUMPDEST JUMPDEST PUSH2 0x569 DUP3 PUSH2 0x40B JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x598 PUSH2 0x593 DUP5 PUSH2 0x545 JUMP JUMPDEST PUSH2 0x52A JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x5B4 JUMPI PUSH2 0x5B3 PUSH2 0x4C5 JUMP JUMPDEST JUMPDEST PUSH2 0x5BF DUP5 DUP3 DUP6 PUSH2 0x576 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x5DC JUMPI PUSH2 0x5DB PUSH2 0x4C0 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x5EC DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x585 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x60B JUMPI PUSH2 0x60A PUSH2 0x4B6 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP3 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x629 JUMPI PUSH2 0x628 PUSH2 0x4BB JUMP JUMPDEST JUMPDEST PUSH2 0x635 DUP5 DUP3 DUP6 ADD PUSH2 0x5C7 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x685 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x699 JUMPI PUSH2 0x698 PUSH2 0x63E JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x6B9 DUP2 DUP6 PUSH2 0x41C JUMP JUMPDEST SWAP1 POP PUSH2 0x6C8 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x45F JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH32 0x5468726F7720616E20657863657074696F6E0000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x705 PUSH1 0x12 DUP4 PUSH2 0x3C7 JUMP JUMPDEST SWAP2 POP PUSH2 0x710 DUP3 PUSH2 0x6CF JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x734 DUP2 PUSH2 0x6F8 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x28 0xE OR 0xCD 0xEB DUP3 0xB8 PUSH5 0x3000A4945 0x27 0xAE 0x2C 0xBD 0xD8 GAS 0xAA SELFDESTRUCT 0xDE SGT PUSH7 0x56BB44C9BAE34B 0x4D PUSH5 0x736F6C6343 STOP ADDMOD MULMOD STOP CALLER ",
"sourceMap": "27:1629:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;295:28;;;;;;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;1054:600;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;295:28;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1054:600::-;692:11;;674:15;:29;671:155;;;1139:10:::1;:14;;;1127:9;:26;1124:524;;;1189:10;1169;:17;;;:30;;;;;;;;;;;;;;;;;;1237:10;1213;:21:::0;::::1;:34;;;;;;;;;;;;:::i;:::-;;1278:9;1261:10;:14;;:26;;;;1365:10;1354:45;;;1377:10;1389:9;1354:45;;;;;;;:::i;:::-;;;;;;;;1124:524;;;1503:10;1493:44;;;1515:10;1527:9;1493:44;;;;;;;:::i;:::-;;;;;;;;1609:28;;;;;;;;;;:::i;:::-;;;;;;;;1124:524;671:155:::0;;;787:28;;;;;;;;;;:::i;:::-;;;;;;;;671:155;1054:600;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:126:1:-;44:7;84:42;77:5;73:54;62:65;;7:126;;;:::o;139:96::-;176:7;205:24;223:5;205:24;:::i;:::-;194:35;;139:96;;;:::o;241:118::-;328:24;346:5;328:24;:::i;:::-;323:3;316:37;241:118;;:::o;365:99::-;417:6;451:5;445:12;435:22;;365:99;;;:::o;470:169::-;554:11;588:6;583:3;576:19;628:4;623:3;619:14;604:29;;470:169;;;;:::o;645:307::-;713:1;723:113;737:6;734:1;731:13;723:113;;;822:1;817:3;813:11;807:18;803:1;798:3;794:11;787:39;759:2;756:1;752:10;747:15;;723:113;;;854:6;851:1;848:13;845:101;;;934:1;925:6;920:3;916:16;909:27;845:101;694:258;645:307;;;:::o;958:102::-;999:6;1050:2;1046:7;1041:2;1034:5;1030:14;1026:28;1016:38;;958:102;;;:::o;1066:364::-;1154:3;1182:39;1215:5;1182:39;:::i;:::-;1237:71;1301:6;1296:3;1237:71;:::i;:::-;1230:78;;1317:52;1362:6;1357:3;1350:4;1343:5;1339:16;1317:52;:::i;:::-;1394:29;1416:6;1394:29;:::i;:::-;1389:3;1385:39;1378:46;;1158:272;1066:364;;;;:::o;1436:77::-;1473:7;1502:5;1491:16;;1436:77;;;:::o;1519:118::-;1606:24;1624:5;1606:24;:::i;:::-;1601:3;1594:37;1519:118;;:::o;1643:533::-;1812:4;1850:2;1839:9;1835:18;1827:26;;1863:71;1931:1;1920:9;1916:17;1907:6;1863:71;:::i;:::-;1981:9;1975:4;1971:20;1966:2;1955:9;1951:18;1944:48;2009:78;2082:4;2073:6;2009:78;:::i;:::-;2001:86;;2097:72;2165:2;2154:9;2150:18;2141:6;2097:72;:::i;:::-;1643:533;;;;;;:::o;2182:75::-;2215:6;2248:2;2242:9;2232:19;;2182:75;:::o;2263:117::-;2372:1;2369;2362:12;2386:117;2495:1;2492;2485:12;2509:117;2618:1;2615;2608:12;2632:117;2741:1;2738;2731:12;2755:180;2803:77;2800:1;2793:88;2900:4;2897:1;2890:15;2924:4;2921:1;2914:15;2941:281;3024:27;3046:4;3024:27;:::i;:::-;3016:6;3012:40;3154:6;3142:10;3139:22;3118:18;3106:10;3103:34;3100:62;3097:88;;;3165:18;;:::i;:::-;3097:88;3205:10;3201:2;3194:22;2984:238;2941:281;;:::o;3228:129::-;3262:6;3289:20;;:::i;:::-;3279:30;;3318:33;3346:4;3338:6;3318:33;:::i;:::-;3228:129;;;:::o;3363:308::-;3425:4;3515:18;3507:6;3504:30;3501:56;;;3537:18;;:::i;:::-;3501:56;3575:29;3597:6;3575:29;:::i;:::-;3567:37;;3659:4;3653;3649:15;3641:23;;3363:308;;;:::o;3677:154::-;3761:6;3756:3;3751;3738:30;3823:1;3814:6;3809:3;3805:16;3798:27;3677:154;;;:::o;3837:412::-;3915:5;3940:66;3956:49;3998:6;3956:49;:::i;:::-;3940:66;:::i;:::-;3931:75;;4029:6;4022:5;4015:21;4067:4;4060:5;4056:16;4105:3;4096:6;4091:3;4087:16;4084:25;4081:112;;;4112:79;;:::i;:::-;4081:112;4202:41;4236:6;4231:3;4226;4202:41;:::i;:::-;3921:328;3837:412;;;;;:::o;4269:340::-;4325:5;4374:3;4367:4;4359:6;4355:17;4351:27;4341:122;;4382:79;;:::i;:::-;4341:122;4499:6;4486:20;4524:79;4599:3;4591:6;4584:4;4576:6;4572:17;4524:79;:::i;:::-;4515:88;;4331:278;4269:340;;;;:::o;4615:509::-;4684:6;4733:2;4721:9;4712:7;4708:23;4704:32;4701:119;;;4739:79;;:::i;:::-;4701:119;4887:1;4876:9;4872:17;4859:31;4917:18;4909:6;4906:30;4903:117;;;4939:79;;:::i;:::-;4903:117;5044:63;5099:7;5090:6;5079:9;5075:22;5044:63;:::i;:::-;5034:73;;4830:287;4615:509;;;;:::o;5130:180::-;5178:77;5175:1;5168:88;5275:4;5272:1;5265:15;5299:4;5296:1;5289:15;5316:320;5360:6;5397:1;5391:4;5387:12;5377:22;;5444:1;5438:4;5434:12;5465:18;5455:81;;5521:4;5513:6;5509:17;5499:27;;5455:81;5583:2;5575:6;5572:14;5552:18;5549:38;5546:84;;;5602:18;;:::i;:::-;5546:84;5367:269;5316:320;;;:::o;5642:423::-;5783:4;5821:2;5810:9;5806:18;5798:26;;5870:9;5864:4;5860:20;5856:1;5845:9;5841:17;5834:47;5898:78;5971:4;5962:6;5898:78;:::i;:::-;5890:86;;5986:72;6054:2;6043:9;6039:18;6030:6;5986:72;:::i;:::-;5642:423;;;;;:::o;6071:168::-;6211:20;6207:1;6199:6;6195:14;6188:44;6071:168;:::o;6245:366::-;6387:3;6408:67;6472:2;6467:3;6408:67;:::i;:::-;6401:74;;6484:93;6573:3;6484:93;:::i;:::-;6602:2;6597:3;6593:12;6586:19;;6245:366;;;:::o;6617:419::-;6783:4;6821:2;6810:9;6806:18;6798:26;;6870:9;6864:4;6860:20;6856:1;6845:9;6841:17;6834:47;6898:131;7024:4;6898:131;:::i;:::-;6890:139;;6617:419;;;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "381000",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"bid(string)": "infinite",
"highBidder()": "infinite"
}
},
"methodIdentifiers": {
"bid(string)": "7aef951c",
"highBidder()": "3ce123dc"
}
},
"abi": [
{
"inputs": [],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "who",
"type": "address"
},
{
"indexed": false,
"internalType": "string",
"name": "name",
"type": "string"
},
{
"indexed": false,
"internalType": "uint256",
"name": "howmuch",
"type": "uint256"
}
],
"name": "BidFailed",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "who",
"type": "address"
},
{
"indexed": false,
"internalType": "string",
"name": "name",
"type": "string"
},
{
"indexed": false,
"internalType": "uint256",
"name": "howmuch",
"type": "uint256"
}
],
"name": "NewHighBid",
"type": "event"
},
{
"inputs": [
{
"internalType": "string",
"name": "bidderName",
"type": "string"
}
],
"name": "bid",
"outputs": [],
"stateMutability": "payable",
"type": "function"
},
{
"inputs": [],
"name": "highBidder",
"outputs": [
{
"internalType": "address",
"name": "bidder",
"type": "address"
},
{
"internalType": "string",
"name": "bidderName",
"type": "string"
},
{
"internalType": "uint256",
"name": "bid",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.9+commit.e5eed63a"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "who",
"type": "address"
},
{
"indexed": false,
"internalType": "string",
"name": "name",
"type": "string"
},
{
"indexed": false,
"internalType": "uint256",
"name": "howmuch",
"type": "uint256"
}
],
"name": "BidFailed",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "who",
"type": "address"
},
{
"indexed": false,
"internalType": "string",
"name": "name",
"type": "string"
},
{
"indexed": false,
"internalType": "uint256",
"name": "howmuch",
"type": "uint256"
}
],
"name": "NewHighBid",
"type": "event"
},
{
"inputs": [
{
"internalType": "string",
"name": "bidderName",
"type": "string"
}
],
"name": "bid",
"outputs": [],
"stateMutability": "payable",
"type": "function"
},
{
"inputs": [],
"name": "highBidder",
"outputs": [
{
"internalType": "address",
"name": "bidder",
"type": "address"
},
{
"internalType": "string",
"name": "bidderName",
"type": "string"
},
{
"internalType": "uint256",
"name": "bid",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/EventsContract.sol": "EventsContract"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/EventsContract.sol": {
"keccak256": "0x1da744b2151fa195f6fbc918cc13e15659007eae91933cb2162cec513d7f0627",
"urls": [
"bzz-raw://4ed960ac955c9d4e4e3b216cb0570d7a5b83fc0cde301d4f43dadeadddb4c60a",
"dweb:/ipfs/Qmb7AKnqAk7m2Qnkmnp7aAqcxDwcpC2dC2Q7kZqjDsJE1a"
]
}
},
"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": {
"extract_byte_array_length": {
"entryPoint": 261,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x22": {
"entryPoint": 311,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:516:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "58:269:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "68:22:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "82:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "88:1:1",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "78:3:1"
},
"nodeType": "YulFunctionCall",
"src": "78:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "68:6:1"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "99:38:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "129:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "135:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "125:3:1"
},
"nodeType": "YulFunctionCall",
"src": "125:12:1"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "103:18:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "176:51:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "190:27:1",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "204:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "212:4:1",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "200:3:1"
},
"nodeType": "YulFunctionCall",
"src": "200:17:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "190:6:1"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "156:18:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "149:6:1"
},
"nodeType": "YulFunctionCall",
"src": "149:26:1"
},
"nodeType": "YulIf",
"src": "146:81:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "279:42:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "293:16:1"
},
"nodeType": "YulFunctionCall",
"src": "293:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "293:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "243:18:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "266:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "274:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "263:2:1"
},
"nodeType": "YulFunctionCall",
"src": "263:14:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "240:2:1"
},
"nodeType": "YulFunctionCall",
"src": "240:38:1"
},
"nodeType": "YulIf",
"src": "237:84:1"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "42:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "51:6:1",
"type": ""
}
],
"src": "7:320:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "361:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "378:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "381:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "371:6:1"
},
"nodeType": "YulFunctionCall",
"src": "371:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "371:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "475:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "478:4:1",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "468:6:1"
},
"nodeType": "YulFunctionCall",
"src": "468:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "468:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "499:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "502:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "492:6:1"
},
"nodeType": "YulFunctionCall",
"src": "492:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "492:15:1"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "333:180:1"
}
]
},
"contents": "{\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 panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "60806040526040518060400160405280600481526020017f6e6f6e65000000000000000000000000000000000000000000000000000000008152506000908051906020019061004f929190610062565b5034801561005c57600080fd5b50610166565b82805461006e90610105565b90600052602060002090601f01602090048101928261009057600085556100d7565b82601f106100a957805160ff19168380011785556100d7565b828001600101855582156100d7579182015b828111156100d65782518255916020019190600101906100bb565b5b5090506100e491906100e8565b5090565b5b808211156101015760008160009055506001016100e9565b5090565b6000600282049050600182168061011d57607f821691505b6020821081141561013157610130610137565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6105eb806101756000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c80632113522a1461003b578063d3660c1c14610059575b600080fd5b610043610089565b60405161005091906103a4565b60405180910390f35b610073600480360381019061006e91906102d5565b610117565b6040516100809190610389565b60405180910390f35b60008054610096906104a6565b80601f01602080910402602001604051908101604052809291908181526020018280546100c2906104a6565b801561010f5780601f106100e45761010080835404028352916020019161010f565b820191906000526020600020905b8154815290600101906020018083116100f257829003601f168201915b505050505081565b6000816000908051906020019061012f9291906101c2565b50600082511415610175576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161016c906103c6565b60405180910390fd5b60008251116101b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101b0906103c6565b60405180910390fd5b60019050919050565b8280546101ce906104a6565b90600052602060002090601f0160209004810192826101f05760008555610237565b82601f1061020957805160ff1916838001178555610237565b82800160010185558215610237579182015b8281111561023657825182559160200191906001019061021b565b5b5090506102449190610248565b5090565b5b80821115610261576000816000905550600101610249565b5090565b60006102786102738461040b565b6103e6565b9050828152602081018484840111156102945761029361056c565b5b61029f848285610464565b509392505050565b600082601f8301126102bc576102bb610567565b5b81356102cc848260208601610265565b91505092915050565b6000602082840312156102eb576102ea610576565b5b600082013567ffffffffffffffff81111561030957610308610571565b5b610315848285016102a7565b91505092915050565b61032781610458565b82525050565b60006103388261043c565b6103428185610447565b9350610352818560208601610473565b61035b8161057b565b840191505092915050565b6000610373602083610447565b915061037e8261058c565b602082019050919050565b600060208201905061039e600083018461031e565b92915050565b600060208201905081810360008301526103be818461032d565b905092915050565b600060208201905081810360008301526103df81610366565b9050919050565b60006103f0610401565b90506103fc82826104d8565b919050565b6000604051905090565b600067ffffffffffffffff82111561042657610425610538565b5b61042f8261057b565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b60008115159050919050565b82818337600083830152505050565b60005b83811015610491578082015181840152602081019050610476565b838111156104a0576000848401525b50505050565b600060028204905060018216806104be57607f821691505b602082108114156104d2576104d1610509565b5b50919050565b6104e18261057b565b810181811067ffffffffffffffff82111715610500576104ff610538565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f546865206c656e677468206f662074686520737472696e67206973207a65726f60008201525056fea264697066735822122092f211ed3253762f9eb0d9318b9e7d3db3e2b6788fcbbf3b3de52b7f893196b964736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x4 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x6E6F6E6500000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP PUSH1 0x0 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x4F SWAP3 SWAP2 SWAP1 PUSH2 0x62 JUMP JUMPDEST POP CALLVALUE DUP1 ISZERO PUSH2 0x5C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x166 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH2 0x6E SWAP1 PUSH2 0x105 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0x90 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0xD7 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0xA9 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0xD7 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0xD7 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0xD6 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0xBB JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0xE4 SWAP2 SWAP1 PUSH2 0xE8 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x101 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0xE9 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x11D JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x131 JUMPI PUSH2 0x130 PUSH2 0x137 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x5EB DUP1 PUSH2 0x175 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 0x2113522A EQ PUSH2 0x3B JUMPI DUP1 PUSH4 0xD3660C1C EQ PUSH2 0x59 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x43 PUSH2 0x89 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x50 SWAP2 SWAP1 PUSH2 0x3A4 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 0x2D5 JUMP JUMPDEST PUSH2 0x117 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x80 SWAP2 SWAP1 PUSH2 0x389 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH2 0x96 SWAP1 PUSH2 0x4A6 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 0xC2 SWAP1 PUSH2 0x4A6 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x10F JUMPI DUP1 PUSH1 0x1F LT PUSH2 0xE4 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x10F 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 0xF2 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x12F SWAP3 SWAP2 SWAP1 PUSH2 0x1C2 JUMP JUMPDEST POP PUSH1 0x0 DUP3 MLOAD EQ ISZERO PUSH2 0x175 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x16C SWAP1 PUSH2 0x3C6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 DUP3 MLOAD GT PUSH2 0x1B9 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1B0 SWAP1 PUSH2 0x3C6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH2 0x1CE SWAP1 PUSH2 0x4A6 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0x1F0 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0x237 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0x209 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0x237 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0x237 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x236 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x21B JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x244 SWAP2 SWAP1 PUSH2 0x248 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x261 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x249 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x278 PUSH2 0x273 DUP5 PUSH2 0x40B JUMP JUMPDEST PUSH2 0x3E6 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x294 JUMPI PUSH2 0x293 PUSH2 0x56C JUMP JUMPDEST JUMPDEST PUSH2 0x29F DUP5 DUP3 DUP6 PUSH2 0x464 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x2BC JUMPI PUSH2 0x2BB PUSH2 0x567 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x2CC DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x265 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2EB JUMPI PUSH2 0x2EA PUSH2 0x576 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP3 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x309 JUMPI PUSH2 0x308 PUSH2 0x571 JUMP JUMPDEST JUMPDEST PUSH2 0x315 DUP5 DUP3 DUP6 ADD PUSH2 0x2A7 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x327 DUP2 PUSH2 0x458 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x338 DUP3 PUSH2 0x43C JUMP JUMPDEST PUSH2 0x342 DUP2 DUP6 PUSH2 0x447 JUMP JUMPDEST SWAP4 POP PUSH2 0x352 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x473 JUMP JUMPDEST PUSH2 0x35B DUP2 PUSH2 0x57B JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x373 PUSH1 0x20 DUP4 PUSH2 0x447 JUMP JUMPDEST SWAP2 POP PUSH2 0x37E DUP3 PUSH2 0x58C JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x39E PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x31E 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 0x3BE DUP2 DUP5 PUSH2 0x32D JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3DF DUP2 PUSH2 0x366 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3F0 PUSH2 0x401 JUMP JUMPDEST SWAP1 POP PUSH2 0x3FC DUP3 DUP3 PUSH2 0x4D8 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 0x426 JUMPI PUSH2 0x425 PUSH2 0x538 JUMP JUMPDEST JUMPDEST PUSH2 0x42F DUP3 PUSH2 0x57B JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO 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 0x491 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x476 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x4A0 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 0x4BE JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x4D2 JUMPI PUSH2 0x4D1 PUSH2 0x509 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x4E1 DUP3 PUSH2 0x57B JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x500 JUMPI PUSH2 0x4FF PUSH2 0x538 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x546865206C656E677468206F662074686520737472696E67206973207A65726F PUSH1 0x0 DUP3 ADD MSTORE POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SWAP3 CALLCODE GT 0xED ORIGIN MSTORE8 PUSH23 0x2F9EB0D9318B9E7D3DB3E2B6788FCBBF3B3DE52B7F8931 SWAP7 0xB9 PUSH5 0x736F6C6343 STOP ADDMOD SMOD STOP CALLER ",
"sourceMap": "28:1029:0:-:0;;;119:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28:1029;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:320:1:-;51:6;88:1;82:4;78:12;68:22;;135:1;129:4;125:12;156:18;146:81;;212:4;204:6;200:17;190:27;;146:81;274:2;266:6;263:14;243:18;240:38;237:84;;;293:18;;:::i;:::-;237:84;58:269;7:320;;;:::o;333:180::-;381:77;378:1;371:88;478:4;475:1;468:15;502:4;499:1;492:15;28:1029:0;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@lastCaller_4": {
"entryPoint": 137,
"id": 4,
"parameterSlots": 0,
"returnSlots": 0
},
"@revertBehavior_42": {
"entryPoint": 279,
"id": 42,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_decode_available_length_t_string_memory_ptr": {
"entryPoint": 613,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_t_string_memory_ptr": {
"entryPoint": 679,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_string_memory_ptr": {
"entryPoint": 725,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_bool_to_t_bool_fromStack": {
"entryPoint": 798,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 813,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_stringliteral_cdd72111f86ac656689a1b703bfb97b3fedffa495981cca6363e710248afdb69_to_t_string_memory_ptr_fromStack": {
"entryPoint": 870,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
"entryPoint": 905,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 932,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_cdd72111f86ac656689a1b703bfb97b3fedffa495981cca6363e710248afdb69__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 966,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_memory": {
"entryPoint": 998,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": 1025,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_allocation_size_t_string_memory_ptr": {
"entryPoint": 1035,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 1084,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 1095,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_bool": {
"entryPoint": 1112,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_calldata_to_memory": {
"entryPoint": 1124,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"copy_memory_to_memory": {
"entryPoint": 1139,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 1190,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"finalize_allocation": {
"entryPoint": 1240,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 1289,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 1336,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": {
"entryPoint": 1383,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": {
"entryPoint": 1388,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": 1393,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 1398,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 1403,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"store_literal_in_memory_cdd72111f86ac656689a1b703bfb97b3fedffa495981cca6363e710248afdb69": {
"entryPoint": 1420,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:6266:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "91:328:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "101:75:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "168:6:1"
}
],
"functionName": {
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "126:41:1"
},
"nodeType": "YulFunctionCall",
"src": "126:49:1"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "110:15:1"
},
"nodeType": "YulFunctionCall",
"src": "110:66:1"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "101:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "192:5:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "199:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "185:6:1"
},
"nodeType": "YulFunctionCall",
"src": "185:21:1"
},
"nodeType": "YulExpressionStatement",
"src": "185:21:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "215:27:1",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "230:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "237:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "226:3:1"
},
"nodeType": "YulFunctionCall",
"src": "226:16:1"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "219:3:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "280:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulIdentifier",
"src": "282:77:1"
},
"nodeType": "YulFunctionCall",
"src": "282:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "282:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "261:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "266:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "257:3:1"
},
"nodeType": "YulFunctionCall",
"src": "257:16:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "275:3:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "254:2:1"
},
"nodeType": "YulFunctionCall",
"src": "254:25:1"
},
"nodeType": "YulIf",
"src": "251:112:1"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "396:3:1"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "401:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "406:6:1"
}
],
"functionName": {
"name": "copy_calldata_to_memory",
"nodeType": "YulIdentifier",
"src": "372:23:1"
},
"nodeType": "YulFunctionCall",
"src": "372:41:1"
},
"nodeType": "YulExpressionStatement",
"src": "372:41:1"
}
]
},
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "64:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "69:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "77:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "85:5:1",
"type": ""
}
],
"src": "7:412:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "501:278:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "550:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "552:77:1"
},
"nodeType": "YulFunctionCall",
"src": "552:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "552:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "529:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "537:4:1",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "525:3:1"
},
"nodeType": "YulFunctionCall",
"src": "525:17:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "544:3:1"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "521:3:1"
},
"nodeType": "YulFunctionCall",
"src": "521:27:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "514:6:1"
},
"nodeType": "YulFunctionCall",
"src": "514:35:1"
},
"nodeType": "YulIf",
"src": "511:122:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "642:34:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "669:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "656:12:1"
},
"nodeType": "YulFunctionCall",
"src": "656:20:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "646:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "685:88:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "746:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "754:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "742:3:1"
},
"nodeType": "YulFunctionCall",
"src": "742:17:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "761:6:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "769:3:1"
}
],
"functionName": {
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "694:47:1"
},
"nodeType": "YulFunctionCall",
"src": "694:79:1"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "685:5:1"
}
]
}
]
},
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "479:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "487:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "495:5:1",
"type": ""
}
],
"src": "439:340:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "861:433:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "907:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "909:77:1"
},
"nodeType": "YulFunctionCall",
"src": "909:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "909:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "882:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "891:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "878:3:1"
},
"nodeType": "YulFunctionCall",
"src": "878:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "903:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "874:3:1"
},
"nodeType": "YulFunctionCall",
"src": "874:32:1"
},
"nodeType": "YulIf",
"src": "871:119:1"
},
{
"nodeType": "YulBlock",
"src": "1000:287:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1015:45:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1046:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1057:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1042:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1042:17:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1029:12:1"
},
"nodeType": "YulFunctionCall",
"src": "1029:31:1"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1019:6:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1107:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "1109:77:1"
},
"nodeType": "YulFunctionCall",
"src": "1109:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "1109:79:1"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1079:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1087:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1076:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1076:30:1"
},
"nodeType": "YulIf",
"src": "1073:117:1"
},
{
"nodeType": "YulAssignment",
"src": "1204:73:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1249:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1260:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1245:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1245:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1269:7:1"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "1214:30:1"
},
"nodeType": "YulFunctionCall",
"src": "1214:63:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1204:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "831:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "842:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "854:6:1",
"type": ""
}
],
"src": "785:509:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1359:50:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1376:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1396:5:1"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "1381:14:1"
},
"nodeType": "YulFunctionCall",
"src": "1381:21:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1369:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1369:34:1"
},
"nodeType": "YulExpressionStatement",
"src": "1369:34:1"
}
]
},
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1347:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1354:3:1",
"type": ""
}
],
"src": "1300:109:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1507:272:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1517:53:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1564:5:1"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "1531:32:1"
},
"nodeType": "YulFunctionCall",
"src": "1531:39:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1521:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1579:78:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1645:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1650:6:1"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "1586:58:1"
},
"nodeType": "YulFunctionCall",
"src": "1586:71:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1579:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1692:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1699:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1688:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1688:16:1"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1706:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1711:6:1"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "1666:21:1"
},
"nodeType": "YulFunctionCall",
"src": "1666:52:1"
},
"nodeType": "YulExpressionStatement",
"src": "1666:52:1"
},
{
"nodeType": "YulAssignment",
"src": "1727:46:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1738:3:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1765:6:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "1743:21:1"
},
"nodeType": "YulFunctionCall",
"src": "1743:29:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1734:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1734:39:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1727:3:1"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1488:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1495:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1503:3:1",
"type": ""
}
],
"src": "1415:364:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1931:220:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1941:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2007:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2012:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "1948:58:1"
},
"nodeType": "YulFunctionCall",
"src": "1948:67:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1941:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2113:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_cdd72111f86ac656689a1b703bfb97b3fedffa495981cca6363e710248afdb69",
"nodeType": "YulIdentifier",
"src": "2024:88:1"
},
"nodeType": "YulFunctionCall",
"src": "2024:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "2024:93:1"
},
{
"nodeType": "YulAssignment",
"src": "2126:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2137:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2142:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2133:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2133:12:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2126:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_cdd72111f86ac656689a1b703bfb97b3fedffa495981cca6363e710248afdb69_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1919:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1927:3:1",
"type": ""
}
],
"src": "1785:366:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2249:118:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2259:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2271:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2282:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2267:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2267:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2259:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2333:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2346:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2357:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2342:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2342:17:1"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulIdentifier",
"src": "2295:37:1"
},
"nodeType": "YulFunctionCall",
"src": "2295:65:1"
},
"nodeType": "YulExpressionStatement",
"src": "2295:65:1"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2221:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2233:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "2244:4:1",
"type": ""
}
],
"src": "2157:210:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2491:195:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2501:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2513:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2524:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2509:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2509:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2501:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2548:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2559:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2544:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2544:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2567:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2573:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2563:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2563:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2537:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2537:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "2537:47:1"
},
{
"nodeType": "YulAssignment",
"src": "2593:86:1",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2665:6:1"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2674:4:1"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2601:63:1"
},
"nodeType": "YulFunctionCall",
"src": "2601:78:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2593:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2463:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2475:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "2486:4:1",
"type": ""
}
],
"src": "2373:313:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2863:248:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2873:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2885:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2896:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2881:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2881:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2873:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2920:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2931:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2916:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2916:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2939:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2945:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2935:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2935:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2909:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2909:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "2909:47:1"
},
{
"nodeType": "YulAssignment",
"src": "2965:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3099:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_cdd72111f86ac656689a1b703bfb97b3fedffa495981cca6363e710248afdb69_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2973:124:1"
},
"nodeType": "YulFunctionCall",
"src": "2973:131:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2965:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_cdd72111f86ac656689a1b703bfb97b3fedffa495981cca6363e710248afdb69__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2843:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "2858:4:1",
"type": ""
}
],
"src": "2692:419:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3158:88:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3168:30:1",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nodeType": "YulIdentifier",
"src": "3178:18:1"
},
"nodeType": "YulFunctionCall",
"src": "3178:20:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "3168:6:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "3227:6:1"
},
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "3235:4:1"
}
],
"functionName": {
"name": "finalize_allocation",
"nodeType": "YulIdentifier",
"src": "3207:19:1"
},
"nodeType": "YulFunctionCall",
"src": "3207:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "3207:33:1"
}
]
},
"name": "allocate_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "3142:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "3151:6:1",
"type": ""
}
],
"src": "3117:129:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3292:35:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3302:19:1",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3318:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "3312:5:1"
},
"nodeType": "YulFunctionCall",
"src": "3312:9:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "3302:6:1"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "3285:6:1",
"type": ""
}
],
"src": "3252:75:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3400:241:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3505:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "3507:16:1"
},
"nodeType": "YulFunctionCall",
"src": "3507:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "3507:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3477:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3485:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3474:2:1"
},
"nodeType": "YulFunctionCall",
"src": "3474:30:1"
},
"nodeType": "YulIf",
"src": "3471:56:1"
},
{
"nodeType": "YulAssignment",
"src": "3537:37:1",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3567:6:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "3545:21:1"
},
"nodeType": "YulFunctionCall",
"src": "3545:29:1"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "3537:4:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "3611:23:1",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "3623:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3629:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3619:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3619:15:1"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "3611:4:1"
}
]
}
]
},
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "3384:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "3395:4:1",
"type": ""
}
],
"src": "3333:308:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3706:40:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3717:22:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3733:5:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "3727:5:1"
},
"nodeType": "YulFunctionCall",
"src": "3727:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3717:6:1"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3689:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "3699:6:1",
"type": ""
}
],
"src": "3647:99:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3848:73:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3865:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3870:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3858:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3858:19:1"
},
"nodeType": "YulExpressionStatement",
"src": "3858:19:1"
},
{
"nodeType": "YulAssignment",
"src": "3886:29:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3905:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3910:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3901:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3901:14:1"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "3886:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3820:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "3825:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "3836:11:1",
"type": ""
}
],
"src": "3752:169:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3969:48:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3979:32:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4004:5:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3997:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3997:13:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3990:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3990:21:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "3979:7:1"
}
]
}
]
},
"name": "cleanup_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3951:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "3961:7:1",
"type": ""
}
],
"src": "3927:90:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4074:103:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "4097:3:1"
},
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "4102:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4107:6:1"
}
],
"functionName": {
"name": "calldatacopy",
"nodeType": "YulIdentifier",
"src": "4084:12:1"
},
"nodeType": "YulFunctionCall",
"src": "4084:30:1"
},
"nodeType": "YulExpressionStatement",
"src": "4084:30:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "4155:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4160:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4151:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4151:16:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4169:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4144:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4144:27:1"
},
"nodeType": "YulExpressionStatement",
"src": "4144:27:1"
}
]
},
"name": "copy_calldata_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "4056:3:1",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "4061:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4066:6:1",
"type": ""
}
],
"src": "4023:154:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4232:258:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4242:10:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4251:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "4246:1:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4311:63:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "4336:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4341:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4332:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4332:11:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "4355:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4360:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4351:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4351:11:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "4345:5:1"
},
"nodeType": "YulFunctionCall",
"src": "4345:18:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4325:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4325:39:1"
},
"nodeType": "YulExpressionStatement",
"src": "4325:39:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4272:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4275:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "4269:2:1"
},
"nodeType": "YulFunctionCall",
"src": "4269:13:1"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "4283:19:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4285:15:1",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4294:1:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4297:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4290:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4290:10:1"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4285:1:1"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "4265:3:1",
"statements": []
},
"src": "4261:113:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4408:76:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "4458:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4463:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4454:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4454:16:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4472:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4447:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4447:27:1"
},
"nodeType": "YulExpressionStatement",
"src": "4447:27:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4389:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4392:6:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4386:2:1"
},
"nodeType": "YulFunctionCall",
"src": "4386:13:1"
},
"nodeType": "YulIf",
"src": "4383:101:1"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "4214:3:1",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "4219:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4224:6:1",
"type": ""
}
],
"src": "4183:307:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4547:269:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4557:22:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "4571:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4577:1:1",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "4567:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4567:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4557:6:1"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "4588:38:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "4618:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4624:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4614:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4614:12:1"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "4592:18:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4665:51:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4679:27:1",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4693:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4701:4:1",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4689:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4689:17:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4679:6:1"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "4645:18:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "4638:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4638:26:1"
},
"nodeType": "YulIf",
"src": "4635:81:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4768:42:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "4782:16:1"
},
"nodeType": "YulFunctionCall",
"src": "4782:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "4782:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "4732:18:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4755:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4763:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "4752:2:1"
},
"nodeType": "YulFunctionCall",
"src": "4752:14:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "4729:2:1"
},
"nodeType": "YulFunctionCall",
"src": "4729:38:1"
},
"nodeType": "YulIf",
"src": "4726:84:1"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "4531:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4540:6:1",
"type": ""
}
],
"src": "4496:320:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4865:238:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4875:58:1",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "4897:6:1"
},
{
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "4927:4:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "4905:21:1"
},
"nodeType": "YulFunctionCall",
"src": "4905:27:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4893:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4893:40:1"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "4879:10:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5044:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "5046:16:1"
},
"nodeType": "YulFunctionCall",
"src": "5046:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "5046:18:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "4987:10:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4999:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4984:2:1"
},
"nodeType": "YulFunctionCall",
"src": "4984:34:1"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "5023:10:1"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "5035:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "5020:2:1"
},
"nodeType": "YulFunctionCall",
"src": "5020:22:1"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "4981:2:1"
},
"nodeType": "YulFunctionCall",
"src": "4981:62:1"
},
"nodeType": "YulIf",
"src": "4978:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5082:2:1",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "5086:10:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5075:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5075:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "5075:22:1"
}
]
},
"name": "finalize_allocation",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "4851:6:1",
"type": ""
},
{
"name": "size",
"nodeType": "YulTypedName",
"src": "4859:4:1",
"type": ""
}
],
"src": "4822:281:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5137:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5154:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5157:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5147:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5147:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "5147:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5251:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5254:4:1",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5244:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5244:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "5244:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5275:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5278:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5268:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5268:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "5268:15:1"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "5109:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5323:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5340:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5343:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5333:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5333:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "5333:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5437:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5440:4:1",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5430:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5430:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "5430:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5461:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5464:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5454:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5454:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "5454:15:1"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "5295:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5570:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5587:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5590:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5580:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5580:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "5580:12:1"
}
]
},
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulFunctionDefinition",
"src": "5481:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5693:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5710:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5713:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5703:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5703:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "5703:12:1"
}
]
},
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulFunctionDefinition",
"src": "5604:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5816:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5833:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5836:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5826:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5826:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "5826:12:1"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "5727:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5939:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5956:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5959:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5949:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5949:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "5949:12:1"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "5850:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6021:54:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6031:38:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6049:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6056:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6045:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6045:14:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6065:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "6061:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6061:7:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "6041:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6041:28:1"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "6031:6:1"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6004:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "6014:6:1",
"type": ""
}
],
"src": "5973:102:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6187:76:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "6209:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6217:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6205:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6205:14:1"
},
{
"hexValue": "546865206c656e677468206f662074686520737472696e67206973207a65726f",
"kind": "string",
"nodeType": "YulLiteral",
"src": "6221:34:1",
"type": "",
"value": "The length of the string is zero"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6198:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6198:58:1"
},
"nodeType": "YulExpressionStatement",
"src": "6198:58:1"
}
]
},
"name": "store_literal_in_memory_cdd72111f86ac656689a1b703bfb97b3fedffa495981cca6363e710248afdb69",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "6179:6:1",
"type": ""
}
],
"src": "6081:182:1"
}
]
},
"contents": "{\n\n function abi_decode_available_length_t_string_memory_ptr(src, length, end) -> array {\n array := allocate_memory(array_allocation_size_t_string_memory_ptr(length))\n mstore(array, length)\n let dst := add(array, 0x20)\n if gt(add(src, length), end) { revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() }\n copy_calldata_to_memory(src, dst, length)\n }\n\n // string\n function abi_decode_t_string_memory_ptr(offset, end) -> array {\n if iszero(slt(add(offset, 0x1f), end)) { revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() }\n let length := calldataload(offset)\n array := abi_decode_available_length_t_string_memory_ptr(add(offset, 0x20), length, end)\n }\n\n function abi_decode_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_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_stringliteral_cdd72111f86ac656689a1b703bfb97b3fedffa495981cca6363e710248afdb69_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 32)\n store_literal_in_memory_cdd72111f86ac656689a1b703bfb97b3fedffa495981cca6363e710248afdb69(pos)\n end := add(pos, 32)\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_stringliteral_cdd72111f86ac656689a1b703bfb97b3fedffa495981cca6363e710248afdb69__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_cdd72111f86ac656689a1b703bfb97b3fedffa495981cca6363e710248afdb69_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function allocate_memory(size) -> memPtr {\n memPtr := allocate_unbounded()\n finalize_allocation(memPtr, size)\n }\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function array_allocation_size_t_string_memory_ptr(length) -> size {\n // Make sure we can allocate memory without overflow\n if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n\n size := round_up_to_mul_of_32(length)\n\n // add length slot\n size := add(size, 0x20)\n\n }\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function cleanup_t_bool(value) -> cleaned {\n cleaned := iszero(iszero(value))\n }\n\n function copy_calldata_to_memory(src, dst, length) {\n calldatacopy(dst, src, length)\n // clear end\n mstore(add(dst, length), 0)\n }\n\n function copy_memory_to_memory(src, dst, length) {\n let i := 0\n for { } lt(i, length) { i := add(i, 32) }\n {\n mstore(add(dst, i), mload(add(src, i)))\n }\n if gt(i, length)\n {\n // clear end\n mstore(add(dst, length), 0)\n }\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function finalize_allocation(memPtr, size) {\n let newFreePtr := add(memPtr, round_up_to_mul_of_32(size))\n // protect against overflow\n if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() {\n revert(0, 0)\n }\n\n function revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function store_literal_in_memory_cdd72111f86ac656689a1b703bfb97b3fedffa495981cca6363e710248afdb69(memPtr) {\n\n mstore(add(memPtr, 0), \"The length of the string is zero\")\n\n }\n\n}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106100365760003560e01c80632113522a1461003b578063d3660c1c14610059575b600080fd5b610043610089565b60405161005091906103a4565b60405180910390f35b610073600480360381019061006e91906102d5565b610117565b6040516100809190610389565b60405180910390f35b60008054610096906104a6565b80601f01602080910402602001604051908101604052809291908181526020018280546100c2906104a6565b801561010f5780601f106100e45761010080835404028352916020019161010f565b820191906000526020600020905b8154815290600101906020018083116100f257829003601f168201915b505050505081565b6000816000908051906020019061012f9291906101c2565b50600082511415610175576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161016c906103c6565b60405180910390fd5b60008251116101b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101b0906103c6565b60405180910390fd5b60019050919050565b8280546101ce906104a6565b90600052602060002090601f0160209004810192826101f05760008555610237565b82601f1061020957805160ff1916838001178555610237565b82800160010185558215610237579182015b8281111561023657825182559160200191906001019061021b565b5b5090506102449190610248565b5090565b5b80821115610261576000816000905550600101610249565b5090565b60006102786102738461040b565b6103e6565b9050828152602081018484840111156102945761029361056c565b5b61029f848285610464565b509392505050565b600082601f8301126102bc576102bb610567565b5b81356102cc848260208601610265565b91505092915050565b6000602082840312156102eb576102ea610576565b5b600082013567ffffffffffffffff81111561030957610308610571565b5b610315848285016102a7565b91505092915050565b61032781610458565b82525050565b60006103388261043c565b6103428185610447565b9350610352818560208601610473565b61035b8161057b565b840191505092915050565b6000610373602083610447565b915061037e8261058c565b602082019050919050565b600060208201905061039e600083018461031e565b92915050565b600060208201905081810360008301526103be818461032d565b905092915050565b600060208201905081810360008301526103df81610366565b9050919050565b60006103f0610401565b90506103fc82826104d8565b919050565b6000604051905090565b600067ffffffffffffffff82111561042657610425610538565b5b61042f8261057b565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b60008115159050919050565b82818337600083830152505050565b60005b83811015610491578082015181840152602081019050610476565b838111156104a0576000848401525b50505050565b600060028204905060018216806104be57607f821691505b602082108114156104d2576104d1610509565b5b50919050565b6104e18261057b565b810181811067ffffffffffffffff82111715610500576104ff610538565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f546865206c656e677468206f662074686520737472696e67206973207a65726f60008201525056fea264697066735822122092f211ed3253762f9eb0d9318b9e7d3db3e2b6788fcbbf3b3de52b7f893196b964736f6c63430008070033",
"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 0x2113522A EQ PUSH2 0x3B JUMPI DUP1 PUSH4 0xD3660C1C EQ PUSH2 0x59 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x43 PUSH2 0x89 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x50 SWAP2 SWAP1 PUSH2 0x3A4 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 0x2D5 JUMP JUMPDEST PUSH2 0x117 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x80 SWAP2 SWAP1 PUSH2 0x389 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH2 0x96 SWAP1 PUSH2 0x4A6 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 0xC2 SWAP1 PUSH2 0x4A6 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x10F JUMPI DUP1 PUSH1 0x1F LT PUSH2 0xE4 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x10F 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 0xF2 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x12F SWAP3 SWAP2 SWAP1 PUSH2 0x1C2 JUMP JUMPDEST POP PUSH1 0x0 DUP3 MLOAD EQ ISZERO PUSH2 0x175 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x16C SWAP1 PUSH2 0x3C6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 DUP3 MLOAD GT PUSH2 0x1B9 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1B0 SWAP1 PUSH2 0x3C6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH2 0x1CE SWAP1 PUSH2 0x4A6 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0x1F0 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0x237 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0x209 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0x237 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0x237 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x236 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x21B JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x244 SWAP2 SWAP1 PUSH2 0x248 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x261 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x249 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x278 PUSH2 0x273 DUP5 PUSH2 0x40B JUMP JUMPDEST PUSH2 0x3E6 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x294 JUMPI PUSH2 0x293 PUSH2 0x56C JUMP JUMPDEST JUMPDEST PUSH2 0x29F DUP5 DUP3 DUP6 PUSH2 0x464 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x2BC JUMPI PUSH2 0x2BB PUSH2 0x567 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x2CC DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x265 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2EB JUMPI PUSH2 0x2EA PUSH2 0x576 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP3 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x309 JUMPI PUSH2 0x308 PUSH2 0x571 JUMP JUMPDEST JUMPDEST PUSH2 0x315 DUP5 DUP3 DUP6 ADD PUSH2 0x2A7 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x327 DUP2 PUSH2 0x458 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x338 DUP3 PUSH2 0x43C JUMP JUMPDEST PUSH2 0x342 DUP2 DUP6 PUSH2 0x447 JUMP JUMPDEST SWAP4 POP PUSH2 0x352 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x473 JUMP JUMPDEST PUSH2 0x35B DUP2 PUSH2 0x57B JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x373 PUSH1 0x20 DUP4 PUSH2 0x447 JUMP JUMPDEST SWAP2 POP PUSH2 0x37E DUP3 PUSH2 0x58C JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x39E PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x31E 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 0x3BE DUP2 DUP5 PUSH2 0x32D JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3DF DUP2 PUSH2 0x366 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3F0 PUSH2 0x401 JUMP JUMPDEST SWAP1 POP PUSH2 0x3FC DUP3 DUP3 PUSH2 0x4D8 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 0x426 JUMPI PUSH2 0x425 PUSH2 0x538 JUMP JUMPDEST JUMPDEST PUSH2 0x42F DUP3 PUSH2 0x57B JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO 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 0x491 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x476 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x4A0 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 0x4BE JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x4D2 JUMPI PUSH2 0x4D1 PUSH2 0x509 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x4E1 DUP3 PUSH2 0x57B JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x500 JUMPI PUSH2 0x4FF PUSH2 0x538 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x546865206C656E677468206F662074686520737472696E67206973207A65726F PUSH1 0x0 DUP3 ADD MSTORE POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SWAP3 CALLCODE GT 0xED ORIGIN MSTORE8 PUSH23 0x2F9EB0D9318B9E7D3DB3E2B6788FCBBF3B3DE52B7F8931 SWAP7 0xB9 PUSH5 0x736F6C6343 STOP ADDMOD SMOD STOP CALLER ",
"sourceMap": "28:1029:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;119:34;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;293:761;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;119:34;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;293:761::-;354:4;383;370:10;:17;;;;;;;;;;;;:::i;:::-;;648:1;632:4;626:18;:23;622:96;;;665:42;;;;;;;;;;:::i;:::-;;;;;;;;622:96;987:1;972:4;966:18;:22;958:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;1043:4;1036:11;;293:761;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:412:1:-;85:5;110:66;126:49;168:6;126:49;:::i;:::-;110:66;:::i;:::-;101:75;;199:6;192:5;185:21;237:4;230:5;226:16;275:3;266:6;261:3;257:16;254:25;251:112;;;282:79;;:::i;:::-;251:112;372:41;406:6;401:3;396;372:41;:::i;:::-;91:328;7:412;;;;;:::o;439:340::-;495:5;544:3;537:4;529:6;525:17;521:27;511:122;;552:79;;:::i;:::-;511:122;669:6;656:20;694:79;769:3;761:6;754:4;746:6;742:17;694:79;:::i;:::-;685:88;;501:278;439:340;;;;:::o;785:509::-;854:6;903:2;891:9;882:7;878:23;874:32;871:119;;;909:79;;:::i;:::-;871:119;1057:1;1046:9;1042:17;1029:31;1087:18;1079:6;1076:30;1073:117;;;1109:79;;:::i;:::-;1073:117;1214:63;1269:7;1260:6;1249:9;1245:22;1214:63;:::i;:::-;1204:73;;1000:287;785:509;;;;:::o;1300:109::-;1381:21;1396:5;1381:21;:::i;:::-;1376:3;1369:34;1300:109;;:::o;1415:364::-;1503:3;1531:39;1564:5;1531:39;:::i;:::-;1586:71;1650:6;1645:3;1586:71;:::i;:::-;1579:78;;1666:52;1711:6;1706:3;1699:4;1692:5;1688:16;1666:52;:::i;:::-;1743:29;1765:6;1743:29;:::i;:::-;1738:3;1734:39;1727:46;;1507:272;1415:364;;;;:::o;1785:366::-;1927:3;1948:67;2012:2;2007:3;1948:67;:::i;:::-;1941:74;;2024:93;2113:3;2024:93;:::i;:::-;2142:2;2137:3;2133:12;2126:19;;1785:366;;;:::o;2157:210::-;2244:4;2282:2;2271:9;2267:18;2259:26;;2295:65;2357:1;2346:9;2342:17;2333:6;2295:65;:::i;:::-;2157:210;;;;:::o;2373:313::-;2486:4;2524:2;2513:9;2509:18;2501:26;;2573:9;2567:4;2563:20;2559:1;2548:9;2544:17;2537:47;2601:78;2674:4;2665:6;2601:78;:::i;:::-;2593:86;;2373:313;;;;:::o;2692:419::-;2858:4;2896:2;2885:9;2881:18;2873:26;;2945:9;2939:4;2935:20;2931:1;2920:9;2916:17;2909:47;2973:131;3099:4;2973:131;:::i;:::-;2965:139;;2692:419;;;:::o;3117:129::-;3151:6;3178:20;;:::i;:::-;3168:30;;3207:33;3235:4;3227:6;3207:33;:::i;:::-;3117:129;;;:::o;3252:75::-;3285:6;3318:2;3312:9;3302:19;;3252:75;:::o;3333:308::-;3395:4;3485:18;3477:6;3474:30;3471:56;;;3507:18;;:::i;:::-;3471:56;3545:29;3567:6;3545:29;:::i;:::-;3537:37;;3629:4;3623;3619:15;3611:23;;3333:308;;;:::o;3647:99::-;3699:6;3733:5;3727:12;3717:22;;3647:99;;;:::o;3752:169::-;3836:11;3870:6;3865:3;3858:19;3910:4;3905:3;3901:14;3886:29;;3752:169;;;;:::o;3927:90::-;3961:7;4004:5;3997:13;3990:21;3979:32;;3927:90;;;:::o;4023:154::-;4107:6;4102:3;4097;4084:30;4169:1;4160:6;4155:3;4151:16;4144:27;4023:154;;;:::o;4183:307::-;4251:1;4261:113;4275:6;4272:1;4269:13;4261:113;;;4360:1;4355:3;4351:11;4345:18;4341:1;4336:3;4332:11;4325:39;4297:2;4294:1;4290:10;4285:15;;4261:113;;;4392:6;4389:1;4386:13;4383:101;;;4472:1;4463:6;4458:3;4454:16;4447:27;4383:101;4232:258;4183:307;;;:::o;4496:320::-;4540:6;4577:1;4571:4;4567:12;4557:22;;4624:1;4618:4;4614:12;4645:18;4635:81;;4701:4;4693:6;4689:17;4679:27;;4635:81;4763:2;4755:6;4752:14;4732:18;4729:38;4726:84;;;4782:18;;:::i;:::-;4726:84;4547:269;4496:320;;;:::o;4822:281::-;4905:27;4927:4;4905:27;:::i;:::-;4897:6;4893:40;5035:6;5023:10;5020:22;4999:18;4987:10;4984:34;4981:62;4978:88;;;5046:18;;:::i;:::-;4978:88;5086:10;5082:2;5075:22;4865:238;4822:281;;:::o;5109:180::-;5157:77;5154:1;5147:88;5254:4;5251:1;5244:15;5278:4;5275:1;5268:15;5295:180;5343:77;5340:1;5333:88;5440:4;5437:1;5430:15;5464:4;5461:1;5454:15;5481:117;5590:1;5587;5580:12;5604:117;5713:1;5710;5703:12;5727:117;5836:1;5833;5826:12;5850:117;5959:1;5956;5949:12;5973:102;6014:6;6065:2;6061:7;6056:2;6049:5;6045:14;6041:28;6031:38;;5973:102;;;:::o;6081:182::-;6221:34;6217:1;6209:6;6205:14;6198:58;6081:182;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "303000",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"lastCaller()": "infinite",
"revertBehavior(string)": "infinite"
}
},
"methodIdentifiers": {
"lastCaller()": "2113522a",
"revertBehavior(string)": "d3660c1c"
}
},
"abi": [
{
"inputs": [],
"name": "lastCaller",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "string",
"name": "name",
"type": "string"
}
],
"name": "revertBehavior",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.7+commit.e28d00a7"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [],
"name": "lastCaller",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "string",
"name": "name",
"type": "string"
}
],
"name": "revertBehavior",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/9_Functions.sol": "ExceptionsContract"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/9_Functions.sol": {
"keccak256": "0x4ace6357b4093151ae214cab4d00c3a211ec64d5effa7aca809c2cc77ea225f4",
"urls": [
"bzz-raw://6f2792716087bddbea883d1f45b9dd63e608ba4ed7bda919e847c6527098b02b",
"dweb:/ipfs/QmUXX6BQtxPkNwGKffVCi2Kqat9FWZ4jSs3rpnU75yBirt"
]
}
},
"version": 1
}
pragma solidity >=0.4.24;
contract BiddingContract {
// Public variable lastCaller, with a value of none
uint public currentBid = 10;
modifier minimumBid {
if (msg.value <= currentBid) {
revert("Minimum bid of 10 Wei is required");
} else {
_;
}
}
function bid() minimumBid public payable {
currentBid = msg.value;
}
}
pragma solidity >=0.4.24;
contract ERC20Contract {
string public constant name = "Udacity Token";
string public constant symbol = "UDC";
uint8 public constant decimals = 18; // 18 is the most common number of decimal places
uint _totalSupply;
// Balances for each account stored using a mapping
mapping(address => uint256) balances;
// Owner of the account approves the allowance of another account
// Create an allowance mapping
// The first key is the owner of the tokens
// In the 2nd mapping, its says who can spend on your behalf, and how many
// So, we are creating a mapping, where the kep is an address,
// The value is further a mapping of address to amount
mapping(address => mapping (address => uint256)) allowance;
event Transfer(address indexed from, address indexed to, uint tokens);
event Approval(address indexed tokenOwner, address indexed spender, uint tokens);
// Called automatically when contract is initiated
// Sets to total initial _totalSupply, as per the input argument
// Also gives the initial supply to msg.sender...who creates the contract
constructor(uint amount) public {
_totalSupply = amount;
balances[msg.sender] = amount;
}
// Returns the total supply of tokens
function totalSupply() public view returns (uint256) {
return _totalSupply;
}
// Get the token balance for account `tokenOwner`
// Anyone can query and find the balance of an address
function balanceOf(address tokenOwner) public view returns (uint balance) {
return balances[tokenOwner];
}
// Transfer the balance from owner's account to another account
// Decreases the balance of "from" account
// Increases the balance of "to" account
// Emits Transfer event
function transfer(address to, uint tokens) public returns (bool success) {
if(tokens < 1){
revert("Not enough Ether provided.");
}
require(tokens <= balances[msg.sender]);
balances[msg.sender] = balances[msg.sender] - tokens;
balances[to] = balances[to] + tokens;
emit Transfer(msg.sender, to, tokens);
return true;
}
// Send amount of tokens from address `from` to address `to`
// The transferFrom method is used to allow contracts to spend
// tokens on your behalf
// Decreases the balance of "from" account
// Decreases the allowance of "msg.sender"
// Increases the balance of "to" account
// Emits Transfer event
function transferFrom(address from, address to, uint tokens) public returns (bool success) {
balances[from] = balances[from] - tokens;
allowance[from][msg.sender] = allowance[from][msg.sender] - tokens;
balances[to] = balances[to] + tokens;
emit Transfer(from, to, tokens);
return true;
}
// Approves the `spender` to withdraw from your account, multiple times, up to the `tokens` amount.
// So the msg.sender is approving the spender to spend these many tokens
// from msg.sender's account
// Setting up allowance mapping accordingly
// Emits approval event
function approve(address spender, uint tokens) public returns (bool success) {
allowance[msg.sender][spender] = tokens;
emit Approval(msg.sender, spender, tokens);
return true;
}
}
pragma solidity >=0.4.24;
contract EventsContract {
// Represents the time when the bidding will end
uint biddingEnds = block.timestamp + 5 days;
struct HighBidder {
address bidder;
string bidderName;
uint bid;
}
// Variable of type HighBidder
HighBidder public highBidder;
// Events emitted by contract
// Whenever a high bid is received
event NewHighBid(address indexed who, string name, uint howmuch);
// High bid preceded by this event
event BidFailed(address indexed who, string name, uint howmuch);
// Ensures that bid can be received i.e, auction not ended
modifier timed {
if(block.timestamp < biddingEnds){
_;
} else {
/**throw an exception */
revert("Throw an exception");
}
}
constructor() public {
// Starts the bidding at 1 ether
highBidder.bid = 1 ether;
}
// Payable since ether should be coming along
// Timed, we need to end this bidding in 5 days
function bid(string memory bidderName) public payable timed {
if(msg.value > highBidder.bid) {
highBidder.bidder = msg.sender;
highBidder.bidderName = bidderName;
highBidder.bid = msg.value;
// Received a high bid - emit event
emit NewHighBid(msg.sender, bidderName, msg.value);
} else {
// Received bid less than high bid emit event
emit BidFailed(msg.sender, bidderName, msg.value);
// throwing exception would return the ethers
revert("Throw an exception");
}
}
}
{
"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": {
"sendMoney(uint256,address)": "062a7544"
}
},
"abi": [
{
"inputs": [
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
},
{
"internalType": "address",
"name": "_address",
"type": "address"
}
],
"name": "sendMoney",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.9+commit.e5eed63a"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
},
{
"internalType": "address",
"name": "_address",
"type": "address"
}
],
"name": "sendMoney",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/Inheritance/InheritanceContract.sol": "ContractInterface"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/Inheritance/InheritanceContract.sol": {
"keccak256": "0x55ca8bcd2bee8f188161c475a4aa0e3e5fdb4cf21669d0940318ad7611a7cc12",
"urls": [
"bzz-raw://7c7692b328bd701dfd5862fada1696f94f6b1f3884f950faaddf1a8d75195540",
"dweb:/ipfs/Qmf4n47ceEJzKJnMiQ6EaNJrE9QpUfLxPb4HvbaqbCN5JK"
]
},
"contracts/Inheritance/MainContract.sol": {
"keccak256": "0xbd63efae88d8a794ec05c28287b79a6c191af548ce335fe1b1e469937c07733f",
"urls": [
"bzz-raw://e5ed9093a047b6cb503ba816af6ef7487cfb6034ebf771f9c204fb4e3afdab76",
"dweb:/ipfs/QmSFgZzJvPc4Qe3AdcDoSAGdcbcaLpj8jR83ZrbWo7eoTx"
]
}
},
"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": {
"@_29": {
"entryPoint": null,
"id": 29,
"parameterSlots": 1,
"returnSlots": 0
},
"@_90": {
"entryPoint": null,
"id": 90,
"parameterSlots": 1,
"returnSlots": 0
},
"abi_decode_available_length_t_string_memory_ptr_fromMemory": {
"entryPoint": 560,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_t_string_memory_ptr_fromMemory": {
"entryPoint": 635,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_string_memory_ptr_fromMemory": {
"entryPoint": 686,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_memory": {
"entryPoint": 421,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": 273,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_allocation_size_t_string_memory_ptr": {
"entryPoint": 452,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_memory_to_memory": {
"entryPoint": 506,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 814,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"finalize_allocation": {
"entryPoint": 367,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 767,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 320,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": {
"entryPoint": 293,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": {
"entryPoint": 298,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": 288,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 283,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 303,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:3764:2",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "47:35:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "57:19:2",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "73:2:2",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "67:5:2"
},
"nodeType": "YulFunctionCall",
"src": "67:9:2"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "57:6:2"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "40:6:2",
"type": ""
}
],
"src": "7:75:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "177:28:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "194:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "197:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "187:6:2"
},
"nodeType": "YulFunctionCall",
"src": "187:12:2"
},
"nodeType": "YulExpressionStatement",
"src": "187:12:2"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "88:117:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "300:28:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "317:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "320:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "310:6:2"
},
"nodeType": "YulFunctionCall",
"src": "310:12:2"
},
"nodeType": "YulExpressionStatement",
"src": "310:12:2"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "211:117:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "423:28:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "440:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "443:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "433:6:2"
},
"nodeType": "YulFunctionCall",
"src": "433:12:2"
},
"nodeType": "YulExpressionStatement",
"src": "433:12:2"
}
]
},
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulFunctionDefinition",
"src": "334:117:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "546:28:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "563:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "566:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "556:6:2"
},
"nodeType": "YulFunctionCall",
"src": "556:12:2"
},
"nodeType": "YulExpressionStatement",
"src": "556:12:2"
}
]
},
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulFunctionDefinition",
"src": "457:117:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "628:54:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "638:38:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "656:5:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "663:2:2",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "652:3:2"
},
"nodeType": "YulFunctionCall",
"src": "652:14:2"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "672:2:2",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "668:3:2"
},
"nodeType": "YulFunctionCall",
"src": "668:7:2"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "648:3:2"
},
"nodeType": "YulFunctionCall",
"src": "648:28:2"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "638:6:2"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "611:5:2",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "621:6:2",
"type": ""
}
],
"src": "580:102:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "716:152:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "733:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "736:77:2",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "726:6:2"
},
"nodeType": "YulFunctionCall",
"src": "726:88:2"
},
"nodeType": "YulExpressionStatement",
"src": "726:88:2"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "830:1:2",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "833:4:2",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "823:6:2"
},
"nodeType": "YulFunctionCall",
"src": "823:15:2"
},
"nodeType": "YulExpressionStatement",
"src": "823:15:2"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "854:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "857:4:2",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "847:6:2"
},
"nodeType": "YulFunctionCall",
"src": "847:15:2"
},
"nodeType": "YulExpressionStatement",
"src": "847:15:2"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "688:180:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "917:238:2",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "927:58:2",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "949:6:2"
},
{
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "979:4:2"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "957:21:2"
},
"nodeType": "YulFunctionCall",
"src": "957:27:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "945:3:2"
},
"nodeType": "YulFunctionCall",
"src": "945:40:2"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "931:10:2",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1096:22:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "1098:16:2"
},
"nodeType": "YulFunctionCall",
"src": "1098:18:2"
},
"nodeType": "YulExpressionStatement",
"src": "1098:18:2"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "1039:10:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1051:18:2",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1036:2:2"
},
"nodeType": "YulFunctionCall",
"src": "1036:34:2"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "1075:10:2"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1087:6:2"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "1072:2:2"
},
"nodeType": "YulFunctionCall",
"src": "1072:22:2"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "1033:2:2"
},
"nodeType": "YulFunctionCall",
"src": "1033:62:2"
},
"nodeType": "YulIf",
"src": "1030:88:2"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1134:2:2",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "1138:10:2"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1127:6:2"
},
"nodeType": "YulFunctionCall",
"src": "1127:22:2"
},
"nodeType": "YulExpressionStatement",
"src": "1127:22:2"
}
]
},
"name": "finalize_allocation",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "903:6:2",
"type": ""
},
{
"name": "size",
"nodeType": "YulTypedName",
"src": "911:4:2",
"type": ""
}
],
"src": "874:281:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1202:88:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1212:30:2",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nodeType": "YulIdentifier",
"src": "1222:18:2"
},
"nodeType": "YulFunctionCall",
"src": "1222:20:2"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1212:6:2"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1271:6:2"
},
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1279:4:2"
}
],
"functionName": {
"name": "finalize_allocation",
"nodeType": "YulIdentifier",
"src": "1251:19:2"
},
"nodeType": "YulFunctionCall",
"src": "1251:33:2"
},
"nodeType": "YulExpressionStatement",
"src": "1251:33:2"
}
]
},
"name": "allocate_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "1186:4:2",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "1195:6:2",
"type": ""
}
],
"src": "1161:129:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1363:241:2",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1468:22:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "1470:16:2"
},
"nodeType": "YulFunctionCall",
"src": "1470:18:2"
},
"nodeType": "YulExpressionStatement",
"src": "1470:18:2"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1440:6:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1448:18:2",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1437:2:2"
},
"nodeType": "YulFunctionCall",
"src": "1437:30:2"
},
"nodeType": "YulIf",
"src": "1434:56:2"
},
{
"nodeType": "YulAssignment",
"src": "1500:37:2",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1530:6:2"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "1508:21:2"
},
"nodeType": "YulFunctionCall",
"src": "1508:29:2"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1500:4:2"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1574:23:2",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1586:4:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1592:4:2",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1582:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1582:15:2"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1574:4:2"
}
]
}
]
},
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1347:6:2",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "1358:4:2",
"type": ""
}
],
"src": "1296:308:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1659:258:2",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1669:10:2",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1678:1:2",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "1673:1:2",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1738:63:2",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "1763:3:2"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1768:1:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1759:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1759:11:2"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "1782:3:2"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1787:1:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1778:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1778:11:2"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1772:5:2"
},
"nodeType": "YulFunctionCall",
"src": "1772:18:2"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1752:6:2"
},
"nodeType": "YulFunctionCall",
"src": "1752:39:2"
},
"nodeType": "YulExpressionStatement",
"src": "1752:39:2"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1699:1:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1702:6:2"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "1696:2:2"
},
"nodeType": "YulFunctionCall",
"src": "1696:13:2"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "1710:19:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1712:15:2",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1721:1:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1724:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1717:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1717:10:2"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1712:1:2"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "1692:3:2",
"statements": []
},
"src": "1688:113:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1835:76:2",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "1885:3:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1890:6:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1881:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1881:16:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1899:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1874:6:2"
},
"nodeType": "YulFunctionCall",
"src": "1874:27:2"
},
"nodeType": "YulExpressionStatement",
"src": "1874:27:2"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1816:1:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1819:6:2"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1813:2:2"
},
"nodeType": "YulFunctionCall",
"src": "1813:13:2"
},
"nodeType": "YulIf",
"src": "1810:101:2"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "1641:3:2",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "1646:3:2",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1651:6:2",
"type": ""
}
],
"src": "1610:307:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2018:326:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2028:75:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2095:6:2"
}
],
"functionName": {
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2053:41:2"
},
"nodeType": "YulFunctionCall",
"src": "2053:49:2"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "2037:15:2"
},
"nodeType": "YulFunctionCall",
"src": "2037:66:2"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2028:5:2"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2119:5:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2126:6:2"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2112:6:2"
},
"nodeType": "YulFunctionCall",
"src": "2112:21:2"
},
"nodeType": "YulExpressionStatement",
"src": "2112:21:2"
},
{
"nodeType": "YulVariableDeclaration",
"src": "2142:27:2",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2157:5:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2164:4:2",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2153:3:2"
},
"nodeType": "YulFunctionCall",
"src": "2153:16:2"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "2146:3:2",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2207:83:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulIdentifier",
"src": "2209:77:2"
},
"nodeType": "YulFunctionCall",
"src": "2209:79:2"
},
"nodeType": "YulExpressionStatement",
"src": "2209:79:2"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "2188:3:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2193:6:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2184:3:2"
},
"nodeType": "YulFunctionCall",
"src": "2184:16:2"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2202:3:2"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2181:2:2"
},
"nodeType": "YulFunctionCall",
"src": "2181:25:2"
},
"nodeType": "YulIf",
"src": "2178:112:2"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "2321:3:2"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "2326:3:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2331:6:2"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "2299:21:2"
},
"nodeType": "YulFunctionCall",
"src": "2299:39:2"
},
"nodeType": "YulExpressionStatement",
"src": "2299:39:2"
}
]
},
"name": "abi_decode_available_length_t_string_memory_ptr_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "1991:3:2",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1996:6:2",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2004:3:2",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "2012:5:2",
"type": ""
}
],
"src": "1923:421:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2437:282:2",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2486:83:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "2488:77:2"
},
"nodeType": "YulFunctionCall",
"src": "2488:79:2"
},
"nodeType": "YulExpressionStatement",
"src": "2488:79:2"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2465:6:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2473:4:2",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2461:3:2"
},
"nodeType": "YulFunctionCall",
"src": "2461:17:2"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2480:3:2"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2457:3:2"
},
"nodeType": "YulFunctionCall",
"src": "2457:27:2"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2450:6:2"
},
"nodeType": "YulFunctionCall",
"src": "2450:35:2"
},
"nodeType": "YulIf",
"src": "2447:122:2"
},
{
"nodeType": "YulVariableDeclaration",
"src": "2578:27:2",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2598:6:2"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "2592:5:2"
},
"nodeType": "YulFunctionCall",
"src": "2592:13:2"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2582:6:2",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2614:99:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2686:6:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2694:4:2",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2682:3:2"
},
"nodeType": "YulFunctionCall",
"src": "2682:17:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2701:6:2"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2709:3:2"
}
],
"functionName": {
"name": "abi_decode_available_length_t_string_memory_ptr_fromMemory",
"nodeType": "YulIdentifier",
"src": "2623:58:2"
},
"nodeType": "YulFunctionCall",
"src": "2623:90:2"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2614:5:2"
}
]
}
]
},
"name": "abi_decode_t_string_memory_ptr_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2415:6:2",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2423:3:2",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "2431:5:2",
"type": ""
}
],
"src": "2364:355:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2812:437:2",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2858:83:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "2860:77:2"
},
"nodeType": "YulFunctionCall",
"src": "2860:79:2"
},
"nodeType": "YulExpressionStatement",
"src": "2860:79:2"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2833:7:2"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2842:9:2"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2829:3:2"
},
"nodeType": "YulFunctionCall",
"src": "2829:23:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2854:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2825:3:2"
},
"nodeType": "YulFunctionCall",
"src": "2825:32:2"
},
"nodeType": "YulIf",
"src": "2822:119:2"
},
{
"nodeType": "YulBlock",
"src": "2951:291:2",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2966:38:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2990:9:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3001:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2986:3:2"
},
"nodeType": "YulFunctionCall",
"src": "2986:17:2"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "2980:5:2"
},
"nodeType": "YulFunctionCall",
"src": "2980:24:2"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2970:6:2",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3051:83:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "3053:77:2"
},
"nodeType": "YulFunctionCall",
"src": "3053:79:2"
},
"nodeType": "YulExpressionStatement",
"src": "3053:79:2"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3023:6:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3031:18:2",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3020:2:2"
},
"nodeType": "YulFunctionCall",
"src": "3020:30:2"
},
"nodeType": "YulIf",
"src": "3017:117:2"
},
{
"nodeType": "YulAssignment",
"src": "3148:84:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3204:9:2"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3215:6:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3200:3:2"
},
"nodeType": "YulFunctionCall",
"src": "3200:22:2"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3224:7:2"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr_fromMemory",
"nodeType": "YulIdentifier",
"src": "3158:41:2"
},
"nodeType": "YulFunctionCall",
"src": "3158:74:2"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3148:6:2"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptr_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2782:9:2",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2793:7:2",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2805:6:2",
"type": ""
}
],
"src": "2725:524:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3283:152:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3300:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3303:77:2",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3293:6:2"
},
"nodeType": "YulFunctionCall",
"src": "3293:88:2"
},
"nodeType": "YulExpressionStatement",
"src": "3293:88:2"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3397:1:2",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3400:4:2",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3390:6:2"
},
"nodeType": "YulFunctionCall",
"src": "3390:15:2"
},
"nodeType": "YulExpressionStatement",
"src": "3390:15:2"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3421:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3424:4:2",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3414:6:2"
},
"nodeType": "YulFunctionCall",
"src": "3414:15:2"
},
"nodeType": "YulExpressionStatement",
"src": "3414:15:2"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "3255:180:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3492:269:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3502:22:2",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "3516:4:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3522:1:2",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "3512:3:2"
},
"nodeType": "YulFunctionCall",
"src": "3512:12:2"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3502:6:2"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "3533:38:2",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "3563:4:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3569:1:2",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "3559:3:2"
},
"nodeType": "YulFunctionCall",
"src": "3559:12:2"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "3537:18:2",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3610:51:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3624:27:2",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3638:6:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3646:4:2",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "3634:3:2"
},
"nodeType": "YulFunctionCall",
"src": "3634:17:2"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3624:6:2"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "3590:18:2"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3583:6:2"
},
"nodeType": "YulFunctionCall",
"src": "3583:26:2"
},
"nodeType": "YulIf",
"src": "3580:81:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3713:42:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "3727:16:2"
},
"nodeType": "YulFunctionCall",
"src": "3727:18:2"
},
"nodeType": "YulExpressionStatement",
"src": "3727:18:2"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "3677:18:2"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3700:6:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3708:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "3697:2:2"
},
"nodeType": "YulFunctionCall",
"src": "3697:14:2"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "3674:2:2"
},
"nodeType": "YulFunctionCall",
"src": "3674:38:2"
},
"nodeType": "YulIf",
"src": "3671:84:2"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "3476:4:2",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "3485:6:2",
"type": ""
}
],
"src": "3441:320:2"
}
]
},
"contents": "{\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() {\n revert(0, 0)\n }\n\n function revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() {\n revert(0, 0)\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function finalize_allocation(memPtr, size) {\n let newFreePtr := add(memPtr, round_up_to_mul_of_32(size))\n // protect against overflow\n if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n }\n\n function allocate_memory(size) -> memPtr {\n memPtr := allocate_unbounded()\n finalize_allocation(memPtr, size)\n }\n\n function array_allocation_size_t_string_memory_ptr(length) -> size {\n // Make sure we can allocate memory without overflow\n if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n\n size := round_up_to_mul_of_32(length)\n\n // add length slot\n size := add(size, 0x20)\n\n }\n\n function copy_memory_to_memory(src, dst, length) {\n let i := 0\n for { } lt(i, length) { i := add(i, 32) }\n {\n mstore(add(dst, i), mload(add(src, i)))\n }\n if gt(i, length)\n {\n // clear end\n mstore(add(dst, length), 0)\n }\n }\n\n function abi_decode_available_length_t_string_memory_ptr_fromMemory(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_memory_to_memory(src, dst, length)\n }\n\n // string\n function abi_decode_t_string_memory_ptr_fromMemory(offset, end) -> array {\n if iszero(slt(add(offset, 0x1f), end)) { revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() }\n let length := mload(offset)\n array := abi_decode_available_length_t_string_memory_ptr_fromMemory(add(offset, 0x20), length, end)\n }\n\n function abi_decode_tuple_t_string_memory_ptr_fromMemory(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := mload(add(headStart, 0))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value0 := abi_decode_t_string_memory_ptr_fromMemory(add(headStart, offset), dataEnd)\n }\n\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n}\n",
"id": 2,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "60806040523480156200001157600080fd5b5060405162000913380380620009138339818101604052810190620000379190620002ae565b6064806000819055505080600190805190602001906200005992919062000061565b505062000364565b8280546200006f906200032e565b90600052602060002090601f016020900481019282620000935760008555620000df565b82601f10620000ae57805160ff1916838001178555620000df565b82800160010185558215620000df579182015b82811115620000de578251825591602001919060010190620000c1565b5b509050620000ee9190620000f2565b5090565b5b808211156200010d576000816000905550600101620000f3565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200017a826200012f565b810181811067ffffffffffffffff821117156200019c576200019b62000140565b5b80604052505050565b6000620001b162000111565b9050620001bf82826200016f565b919050565b600067ffffffffffffffff821115620001e257620001e162000140565b5b620001ed826200012f565b9050602081019050919050565b60005b838110156200021a578082015181840152602081019050620001fd565b838111156200022a576000848401525b50505050565b6000620002476200024184620001c4565b620001a5565b9050828152602081018484840111156200026657620002656200012a565b5b62000273848285620001fa565b509392505050565b600082601f83011262000293576200029262000125565b5b8151620002a584826020860162000230565b91505092915050565b600060208284031215620002c757620002c66200011b565b5b600082015167ffffffffffffffff811115620002e857620002e762000120565b5b620002f6848285016200027b565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200034757607f821691505b602082108114156200035e576200035d620002ff565b5b50919050565b61059f80620003746000396000f3fe608060405234801561001057600080fd5b50600436106100575760003560e01c8063062a75441461005c578063209652551461008c5780632e1a7d4d146100aa57806375d0c0dc146100c6578063b6b55f25146100e4575b600080fd5b610076600480360381019061007191906102c7565b610100565b6040516100839190610322565b60405180910390f35b610094610157565b6040516100a1919061034c565b60405180910390f35b6100c460048036038101906100bf9190610367565b610160565b005b6100ce61017b565b6040516100db919061042d565b60405180910390f35b6100fe60048036038101906100f99190610367565b610209565b005b600061010b82610224565b73ffffffffffffffffffffffffffffffffffffffff166108fc849081150290604051600060405180830381858888f19350505050158015610150573d6000803e3d6000fd5b5092915050565b60008054905090565b80600080828254610171919061047e565b9250508190555050565b60018054610188906104e1565b80601f01602080910402602001604051908101604052809291908181526020018280546101b4906104e1565b80156102015780601f106101d657610100808354040283529160200191610201565b820191906000526020600020905b8154815290600101906020018083116101e457829003601f168201915b505050505081565b8060008082825461021a9190610513565b9250508190555050565b6000819050919050565b600080fd5b6000819050919050565b61024681610233565b811461025157600080fd5b50565b6000813590506102638161023d565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061029482610269565b9050919050565b6102a481610289565b81146102af57600080fd5b50565b6000813590506102c18161029b565b92915050565b600080604083850312156102de576102dd61022e565b5b60006102ec85828601610254565b92505060206102fd858286016102b2565b9150509250929050565b60008115159050919050565b61031c81610307565b82525050565b60006020820190506103376000830184610313565b92915050565b61034681610233565b82525050565b6000602082019050610361600083018461033d565b92915050565b60006020828403121561037d5761037c61022e565b5b600061038b84828501610254565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156103ce5780820151818401526020810190506103b3565b838111156103dd576000848401525b50505050565b6000601f19601f8301169050919050565b60006103ff82610394565b610409818561039f565b93506104198185602086016103b0565b610422816103e3565b840191505092915050565b6000602082019050818103600083015261044781846103f4565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061048982610233565b915061049483610233565b9250828210156104a7576104a661044f565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806104f957607f821691505b6020821081141561050d5761050c6104b2565b5b50919050565b600061051e82610233565b915061052983610233565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561055e5761055d61044f565b5b82820190509291505056fea264697066735822122014a90c0443a4bbebd8ca10f5895ef367b1d4a2194afe6a4c19c4ffd98aa7b17864736f6c63430008090033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x913 CODESIZE SUB DUP1 PUSH3 0x913 DUP4 CODECOPY DUP2 DUP2 ADD PUSH1 0x40 MSTORE DUP2 ADD SWAP1 PUSH3 0x37 SWAP2 SWAP1 PUSH3 0x2AE JUMP JUMPDEST PUSH1 0x64 DUP1 PUSH1 0x0 DUP2 SWAP1 SSTORE POP POP DUP1 PUSH1 0x1 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x59 SWAP3 SWAP2 SWAP1 PUSH3 0x61 JUMP JUMPDEST POP POP PUSH3 0x364 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0x6F SWAP1 PUSH3 0x32E JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0x93 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0xDF JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0xAE JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0xDF JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0xDF JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0xDE JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0xC1 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH3 0xEE SWAP2 SWAP1 PUSH3 0xF2 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0x10D JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH3 0xF3 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH3 0x17A DUP3 PUSH3 0x12F JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH3 0x19C JUMPI PUSH3 0x19B PUSH3 0x140 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x1B1 PUSH3 0x111 JUMP JUMPDEST SWAP1 POP PUSH3 0x1BF DUP3 DUP3 PUSH3 0x16F JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH3 0x1E2 JUMPI PUSH3 0x1E1 PUSH3 0x140 JUMP JUMPDEST JUMPDEST PUSH3 0x1ED DUP3 PUSH3 0x12F JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH3 0x21A JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH3 0x1FD JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH3 0x22A JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x247 PUSH3 0x241 DUP5 PUSH3 0x1C4 JUMP JUMPDEST PUSH3 0x1A5 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH3 0x266 JUMPI PUSH3 0x265 PUSH3 0x12A JUMP JUMPDEST JUMPDEST PUSH3 0x273 DUP5 DUP3 DUP6 PUSH3 0x1FA JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH3 0x293 JUMPI PUSH3 0x292 PUSH3 0x125 JUMP JUMPDEST JUMPDEST DUP2 MLOAD PUSH3 0x2A5 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH3 0x230 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH3 0x2C7 JUMPI PUSH3 0x2C6 PUSH3 0x11B JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP3 ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x2E8 JUMPI PUSH3 0x2E7 PUSH3 0x120 JUMP JUMPDEST JUMPDEST PUSH3 0x2F6 DUP5 DUP3 DUP6 ADD PUSH3 0x27B JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH3 0x347 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0x35E JUMPI PUSH3 0x35D PUSH3 0x2FF JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x59F DUP1 PUSH3 0x374 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 0x62A7544 EQ PUSH2 0x5C JUMPI DUP1 PUSH4 0x20965255 EQ PUSH2 0x8C JUMPI DUP1 PUSH4 0x2E1A7D4D EQ PUSH2 0xAA JUMPI DUP1 PUSH4 0x75D0C0DC EQ PUSH2 0xC6 JUMPI DUP1 PUSH4 0xB6B55F25 EQ PUSH2 0xE4 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x76 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x71 SWAP2 SWAP1 PUSH2 0x2C7 JUMP JUMPDEST PUSH2 0x100 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x83 SWAP2 SWAP1 PUSH2 0x322 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x94 PUSH2 0x157 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xA1 SWAP2 SWAP1 PUSH2 0x34C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xC4 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xBF SWAP2 SWAP1 PUSH2 0x367 JUMP JUMPDEST PUSH2 0x160 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xCE PUSH2 0x17B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xDB SWAP2 SWAP1 PUSH2 0x42D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xFE PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xF9 SWAP2 SWAP1 PUSH2 0x367 JUMP JUMPDEST PUSH2 0x209 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 PUSH2 0x10B DUP3 PUSH2 0x224 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x8FC DUP5 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 0x150 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST DUP1 PUSH1 0x0 DUP1 DUP3 DUP3 SLOAD PUSH2 0x171 SWAP2 SWAP1 PUSH2 0x47E JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH2 0x188 SWAP1 PUSH2 0x4E1 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 0x1B4 SWAP1 PUSH2 0x4E1 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x201 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x1D6 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x201 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 0x1E4 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 JUMP JUMPDEST DUP1 PUSH1 0x0 DUP1 DUP3 DUP3 SLOAD PUSH2 0x21A SWAP2 SWAP1 PUSH2 0x513 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x246 DUP2 PUSH2 0x233 JUMP JUMPDEST DUP2 EQ PUSH2 0x251 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x263 DUP2 PUSH2 0x23D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x294 DUP3 PUSH2 0x269 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2A4 DUP2 PUSH2 0x289 JUMP JUMPDEST DUP2 EQ PUSH2 0x2AF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2C1 DUP2 PUSH2 0x29B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2DE JUMPI PUSH2 0x2DD PUSH2 0x22E JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2EC DUP6 DUP3 DUP7 ADD PUSH2 0x254 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x2FD DUP6 DUP3 DUP7 ADD PUSH2 0x2B2 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x31C DUP2 PUSH2 0x307 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x337 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x313 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x346 DUP2 PUSH2 0x233 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x361 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x33D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x37D JUMPI PUSH2 0x37C PUSH2 0x22E JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x38B DUP5 DUP3 DUP6 ADD PUSH2 0x254 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x3CE JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x3B3 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x3DD JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3FF DUP3 PUSH2 0x394 JUMP JUMPDEST PUSH2 0x409 DUP2 DUP6 PUSH2 0x39F JUMP JUMPDEST SWAP4 POP PUSH2 0x419 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x3B0 JUMP JUMPDEST PUSH2 0x422 DUP2 PUSH2 0x3E3 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x447 DUP2 DUP5 PUSH2 0x3F4 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x489 DUP3 PUSH2 0x233 JUMP JUMPDEST SWAP2 POP PUSH2 0x494 DUP4 PUSH2 0x233 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x4A7 JUMPI PUSH2 0x4A6 PUSH2 0x44F JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x4F9 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x50D JUMPI PUSH2 0x50C PUSH2 0x4B2 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x51E DUP3 PUSH2 0x233 JUMP JUMPDEST SWAP2 POP PUSH2 0x529 DUP4 PUSH2 0x233 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x55E JUMPI PUSH2 0x55D PUSH2 0x44F JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 EQ 0xA9 0xC DIV NUMBER LOG4 0xBB 0xEB 0xD8 0xCA LT CREATE2 DUP10 0x5E RETURN PUSH8 0xB1D4A2194AFE6A4C NOT 0xC4 SELFDESTRUCT 0xD9 DUP11 0xA7 0xB1 PUSH25 0x64736F6C634300080900330000000000000000000000000000 ",
"sourceMap": "302:735:0:-:0;;;411:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;366:3;133:6:1;125:5;:14;;;;82:64;474:2:0;459:12;:17;;;;;;;;;;;;:::i;:::-;;411:72;302:735;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:2:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:117;443:1;440;433:12;457:117;566:1;563;556:12;580:102;621:6;672:2;668:7;663:2;656:5;652:14;648:28;638:38;;580:102;;;:::o;688:180::-;736:77;733:1;726:88;833:4;830:1;823:15;857:4;854:1;847:15;874:281;957:27;979:4;957:27;:::i;:::-;949:6;945:40;1087:6;1075:10;1072:22;1051:18;1039:10;1036:34;1033:62;1030:88;;;1098:18;;:::i;:::-;1030:88;1138:10;1134:2;1127:22;917:238;874:281;;:::o;1161:129::-;1195:6;1222:20;;:::i;:::-;1212:30;;1251:33;1279:4;1271:6;1251:33;:::i;:::-;1161:129;;;:::o;1296:308::-;1358:4;1448:18;1440:6;1437:30;1434:56;;;1470:18;;:::i;:::-;1434:56;1508:29;1530:6;1508:29;:::i;:::-;1500:37;;1592:4;1586;1582:15;1574:23;;1296:308;;;:::o;1610:307::-;1678:1;1688:113;1702:6;1699:1;1696:13;1688:113;;;1787:1;1782:3;1778:11;1772:18;1768:1;1763:3;1759:11;1752:39;1724:2;1721:1;1717:10;1712:15;;1688:113;;;1819:6;1816:1;1813:13;1810:101;;;1899:1;1890:6;1885:3;1881:16;1874:27;1810:101;1659:258;1610:307;;;:::o;1923:421::-;2012:5;2037:66;2053:49;2095:6;2053:49;:::i;:::-;2037:66;:::i;:::-;2028:75;;2126:6;2119:5;2112:21;2164:4;2157:5;2153:16;2202:3;2193:6;2188:3;2184:16;2181:25;2178:112;;;2209:79;;:::i;:::-;2178:112;2299:39;2331:6;2326:3;2321;2299:39;:::i;:::-;2018:326;1923:421;;;;;:::o;2364:355::-;2431:5;2480:3;2473:4;2465:6;2461:17;2457:27;2447:122;;2488:79;;:::i;:::-;2447:122;2598:6;2592:13;2623:90;2709:3;2701:6;2694:4;2686:6;2682:17;2623:90;:::i;:::-;2614:99;;2437:282;2364:355;;;;:::o;2725:524::-;2805:6;2854:2;2842:9;2833:7;2829:23;2825:32;2822:119;;;2860:79;;:::i;:::-;2822:119;3001:1;2990:9;2986:17;2980:24;3031:18;3023:6;3020:30;3017:117;;;3053:79;;:::i;:::-;3017:117;3158:74;3224:7;3215:6;3204:9;3200:22;3158:74;:::i;:::-;3148:84;;2951:291;2725:524;;;;:::o;3255:180::-;3303:77;3300:1;3293:88;3400:4;3397:1;3390:15;3424:4;3421:1;3414:15;3441:320;3485:6;3522:1;3516:4;3512:12;3502:22;;3569:1;3563:4;3559:12;3590:18;3580:81;;3646:4;3638:6;3634:17;3624:27;;3580:81;3708:2;3700:6;3697:14;3677:18;3674:38;3671:84;;;3727:18;;:::i;:::-;3671:84;3492:269;3441:320;;;:::o;302:735:0:-;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@_make_payable_56": {
"entryPoint": 548,
"id": 56,
"parameterSlots": 1,
"returnSlots": 1
},
"@contractName_19": {
"entryPoint": 379,
"id": 19,
"parameterSlots": 0,
"returnSlots": 0
},
"@deposit_100": {
"entryPoint": 521,
"id": 100,
"parameterSlots": 1,
"returnSlots": 0
},
"@getValue_37": {
"entryPoint": 343,
"id": 37,
"parameterSlots": 0,
"returnSlots": 1
},
"@sendMoney_75": {
"entryPoint": 256,
"id": 75,
"parameterSlots": 2,
"returnSlots": 1
},
"@withdraw_110": {
"entryPoint": 352,
"id": 110,
"parameterSlots": 1,
"returnSlots": 0
},
"abi_decode_t_address": {
"entryPoint": 690,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 596,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 871,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256t_address": {
"entryPoint": 711,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_encode_t_bool_to_t_bool_fromStack": {
"entryPoint": 787,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 1012,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 829,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
"entryPoint": 802,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 1069,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 844,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 916,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 927,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 1299,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_sub_t_uint256": {
"entryPoint": 1150,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 649,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bool": {
"entryPoint": 775,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 617,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 563,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_memory_to_memory": {
"entryPoint": 944,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 1249,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 1103,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 1202,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 558,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 995,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"validator_revert_t_address": {
"entryPoint": 667,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 573,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:5384:2",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "47:35:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "57:19:2",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "73:2:2",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "67:5:2"
},
"nodeType": "YulFunctionCall",
"src": "67:9:2"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "57:6:2"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "40:6:2",
"type": ""
}
],
"src": "7:75:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "177:28:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "194:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "197:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "187:6:2"
},
"nodeType": "YulFunctionCall",
"src": "187:12:2"
},
"nodeType": "YulExpressionStatement",
"src": "187:12:2"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "88:117:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "300:28:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "317:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "320:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "310:6:2"
},
"nodeType": "YulFunctionCall",
"src": "310:12:2"
},
"nodeType": "YulExpressionStatement",
"src": "310:12:2"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "211:117:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "379:32:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "389:16:2",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "400:5:2"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "389:7:2"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "361:5:2",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "371:7:2",
"type": ""
}
],
"src": "334:77:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "460:79:2",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "517:16:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "526:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "529:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "519:6:2"
},
"nodeType": "YulFunctionCall",
"src": "519:12:2"
},
"nodeType": "YulExpressionStatement",
"src": "519:12:2"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "483:5:2"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "508:5:2"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "490:17:2"
},
"nodeType": "YulFunctionCall",
"src": "490:24:2"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "480:2:2"
},
"nodeType": "YulFunctionCall",
"src": "480:35:2"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "473:6:2"
},
"nodeType": "YulFunctionCall",
"src": "473:43:2"
},
"nodeType": "YulIf",
"src": "470:63:2"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "453:5:2",
"type": ""
}
],
"src": "417:122:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "597:87:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "607:29:2",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "629:6:2"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "616:12:2"
},
"nodeType": "YulFunctionCall",
"src": "616:20:2"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "607:5:2"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "672:5:2"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "645:26:2"
},
"nodeType": "YulFunctionCall",
"src": "645:33:2"
},
"nodeType": "YulExpressionStatement",
"src": "645:33:2"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "575:6:2",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "583:3:2",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "591:5:2",
"type": ""
}
],
"src": "545:139:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "735:81:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "745:65:2",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "760:5:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "767:42:2",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "756:3:2"
},
"nodeType": "YulFunctionCall",
"src": "756:54:2"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "745:7:2"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "717:5:2",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "727:7:2",
"type": ""
}
],
"src": "690:126:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "867:51:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "877:35:2",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "906:5:2"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "888:17:2"
},
"nodeType": "YulFunctionCall",
"src": "888:24:2"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "877:7:2"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "849:5:2",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "859:7:2",
"type": ""
}
],
"src": "822:96:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "967:79:2",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1024:16:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1033:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1036:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1026:6:2"
},
"nodeType": "YulFunctionCall",
"src": "1026:12:2"
},
"nodeType": "YulExpressionStatement",
"src": "1026:12:2"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "990:5:2"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1015:5:2"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "997:17:2"
},
"nodeType": "YulFunctionCall",
"src": "997:24:2"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "987:2:2"
},
"nodeType": "YulFunctionCall",
"src": "987:35:2"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "980:6:2"
},
"nodeType": "YulFunctionCall",
"src": "980:43:2"
},
"nodeType": "YulIf",
"src": "977:63:2"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "960:5:2",
"type": ""
}
],
"src": "924:122:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1104:87:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1114:29:2",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1136:6:2"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1123:12:2"
},
"nodeType": "YulFunctionCall",
"src": "1123:20:2"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1114:5:2"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1179:5:2"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "1152:26:2"
},
"nodeType": "YulFunctionCall",
"src": "1152:33:2"
},
"nodeType": "YulExpressionStatement",
"src": "1152:33:2"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1082:6:2",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1090:3:2",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1098:5:2",
"type": ""
}
],
"src": "1052:139:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1280:391:2",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1326:83:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "1328:77:2"
},
"nodeType": "YulFunctionCall",
"src": "1328:79:2"
},
"nodeType": "YulExpressionStatement",
"src": "1328:79:2"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1301:7:2"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1310:9:2"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1297:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1297:23:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1322:2:2",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1293:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1293:32:2"
},
"nodeType": "YulIf",
"src": "1290:119:2"
},
{
"nodeType": "YulBlock",
"src": "1419:117:2",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1434:15:2",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1448:1:2",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1438:6:2",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1463:63:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1498:9:2"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1509:6:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1494:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1494:22:2"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1518:7:2"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "1473:20:2"
},
"nodeType": "YulFunctionCall",
"src": "1473:53:2"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1463:6:2"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1546:118:2",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1561:16:2",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1575:2:2",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1565:6:2",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1591:63:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1626:9:2"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1637:6:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1622:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1622:22:2"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1646:7:2"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1601:20:2"
},
"nodeType": "YulFunctionCall",
"src": "1601:53:2"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1591:6:2"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1242:9:2",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1253:7:2",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1265:6:2",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1273:6:2",
"type": ""
}
],
"src": "1197:474:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1719:48:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1729:32:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1754:5:2"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1747:6:2"
},
"nodeType": "YulFunctionCall",
"src": "1747:13:2"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1740:6:2"
},
"nodeType": "YulFunctionCall",
"src": "1740:21:2"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1729:7:2"
}
]
}
]
},
"name": "cleanup_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1701:5:2",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1711:7:2",
"type": ""
}
],
"src": "1677:90:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1832:50:2",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1849:3:2"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1869:5:2"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "1854:14:2"
},
"nodeType": "YulFunctionCall",
"src": "1854:21:2"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1842:6:2"
},
"nodeType": "YulFunctionCall",
"src": "1842:34:2"
},
"nodeType": "YulExpressionStatement",
"src": "1842:34:2"
}
]
},
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1820:5:2",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1827:3:2",
"type": ""
}
],
"src": "1773:109:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1980:118:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1990:26:2",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2002:9:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2013:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1998:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1998:18:2"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1990:4:2"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2064:6:2"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2077:9:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2088:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2073:3:2"
},
"nodeType": "YulFunctionCall",
"src": "2073:17:2"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulIdentifier",
"src": "2026:37:2"
},
"nodeType": "YulFunctionCall",
"src": "2026:65:2"
},
"nodeType": "YulExpressionStatement",
"src": "2026:65:2"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1952:9:2",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1964:6:2",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1975:4:2",
"type": ""
}
],
"src": "1888:210:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2169:53:2",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2186:3:2"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2209:5:2"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "2191:17:2"
},
"nodeType": "YulFunctionCall",
"src": "2191:24:2"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2179:6:2"
},
"nodeType": "YulFunctionCall",
"src": "2179:37:2"
},
"nodeType": "YulExpressionStatement",
"src": "2179:37:2"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2157:5:2",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2164:3:2",
"type": ""
}
],
"src": "2104:118:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2326:124:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2336:26:2",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2348:9:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2359:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2344:3:2"
},
"nodeType": "YulFunctionCall",
"src": "2344:18:2"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2336:4:2"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2416:6:2"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2429:9:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2440:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2425:3:2"
},
"nodeType": "YulFunctionCall",
"src": "2425:17:2"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "2372:43:2"
},
"nodeType": "YulFunctionCall",
"src": "2372:71:2"
},
"nodeType": "YulExpressionStatement",
"src": "2372:71:2"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2298:9:2",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2310:6:2",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "2321:4:2",
"type": ""
}
],
"src": "2228:222:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2522:263:2",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2568:83:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "2570:77:2"
},
"nodeType": "YulFunctionCall",
"src": "2570:79:2"
},
"nodeType": "YulExpressionStatement",
"src": "2570:79:2"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2543:7:2"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2552:9:2"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2539:3:2"
},
"nodeType": "YulFunctionCall",
"src": "2539:23:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2564:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2535:3:2"
},
"nodeType": "YulFunctionCall",
"src": "2535:32:2"
},
"nodeType": "YulIf",
"src": "2532:119:2"
},
{
"nodeType": "YulBlock",
"src": "2661:117:2",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2676:15:2",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2690:1:2",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2680:6:2",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2705:63:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2740:9:2"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2751:6:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2736:3:2"
},
"nodeType": "YulFunctionCall",
"src": "2736:22:2"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2760:7:2"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "2715:20:2"
},
"nodeType": "YulFunctionCall",
"src": "2715:53:2"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2705:6:2"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2492:9:2",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2503:7:2",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2515:6:2",
"type": ""
}
],
"src": "2456:329:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2850:40:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2861:22:2",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2877:5:2"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "2871:5:2"
},
"nodeType": "YulFunctionCall",
"src": "2871:12:2"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2861:6:2"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2833:5:2",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2843:6:2",
"type": ""
}
],
"src": "2791:99:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2992:73:2",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3009:3:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3014:6:2"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3002:6:2"
},
"nodeType": "YulFunctionCall",
"src": "3002:19:2"
},
"nodeType": "YulExpressionStatement",
"src": "3002:19:2"
},
{
"nodeType": "YulAssignment",
"src": "3030:29:2",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3049:3:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3054:4:2",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3045:3:2"
},
"nodeType": "YulFunctionCall",
"src": "3045:14:2"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "3030:11:2"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2964:3:2",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2969:6:2",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "2980:11:2",
"type": ""
}
],
"src": "2896:169:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3120:258:2",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3130:10:2",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3139:1:2",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "3134:1:2",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3199:63:2",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "3224:3:2"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "3229:1:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3220:3:2"
},
"nodeType": "YulFunctionCall",
"src": "3220:11:2"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "3243:3:2"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "3248:1:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3239:3:2"
},
"nodeType": "YulFunctionCall",
"src": "3239:11:2"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "3233:5:2"
},
"nodeType": "YulFunctionCall",
"src": "3233:18:2"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3213:6:2"
},
"nodeType": "YulFunctionCall",
"src": "3213:39:2"
},
"nodeType": "YulExpressionStatement",
"src": "3213:39:2"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "3160:1:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3163:6:2"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "3157:2:2"
},
"nodeType": "YulFunctionCall",
"src": "3157:13:2"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "3171:19:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3173:15:2",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "3182:1:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3185:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3178:3:2"
},
"nodeType": "YulFunctionCall",
"src": "3178:10:2"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "3173:1:2"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "3153:3:2",
"statements": []
},
"src": "3149:113:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3296:76:2",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "3346:3:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3351:6:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3342:3:2"
},
"nodeType": "YulFunctionCall",
"src": "3342:16:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3360:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3335:6:2"
},
"nodeType": "YulFunctionCall",
"src": "3335:27:2"
},
"nodeType": "YulExpressionStatement",
"src": "3335:27:2"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "3277:1:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3280:6:2"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3274:2:2"
},
"nodeType": "YulFunctionCall",
"src": "3274:13:2"
},
"nodeType": "YulIf",
"src": "3271:101:2"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "3102:3:2",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "3107:3:2",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "3112:6:2",
"type": ""
}
],
"src": "3071:307:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3432:54:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3442:38:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3460:5:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3467:2:2",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3456:3:2"
},
"nodeType": "YulFunctionCall",
"src": "3456:14:2"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3476:2:2",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "3472:3:2"
},
"nodeType": "YulFunctionCall",
"src": "3472:7:2"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "3452:3:2"
},
"nodeType": "YulFunctionCall",
"src": "3452:28:2"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "3442:6:2"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3415:5:2",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "3425:6:2",
"type": ""
}
],
"src": "3384:102:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3584:272:2",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3594:53:2",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3641:5:2"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "3608:32:2"
},
"nodeType": "YulFunctionCall",
"src": "3608:39:2"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "3598:6:2",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3656:78:2",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3722:3:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3727:6:2"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "3663:58:2"
},
"nodeType": "YulFunctionCall",
"src": "3663:71:2"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3656:3:2"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3769:5:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3776:4:2",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3765:3:2"
},
"nodeType": "YulFunctionCall",
"src": "3765:16:2"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3783:3:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3788:6:2"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "3743:21:2"
},
"nodeType": "YulFunctionCall",
"src": "3743:52:2"
},
"nodeType": "YulExpressionStatement",
"src": "3743:52:2"
},
{
"nodeType": "YulAssignment",
"src": "3804:46:2",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3815:3:2"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3842:6:2"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "3820:21:2"
},
"nodeType": "YulFunctionCall",
"src": "3820:29:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3811:3:2"
},
"nodeType": "YulFunctionCall",
"src": "3811:39:2"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3804:3:2"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3565:5:2",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3572:3:2",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3580:3:2",
"type": ""
}
],
"src": "3492:364:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3980:195:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3990:26:2",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4002:9:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4013:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3998:3:2"
},
"nodeType": "YulFunctionCall",
"src": "3998:18:2"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3990:4:2"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4037:9:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4048:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4033:3:2"
},
"nodeType": "YulFunctionCall",
"src": "4033:17:2"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4056:4:2"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4062:9:2"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4052:3:2"
},
"nodeType": "YulFunctionCall",
"src": "4052:20:2"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4026:6:2"
},
"nodeType": "YulFunctionCall",
"src": "4026:47:2"
},
"nodeType": "YulExpressionStatement",
"src": "4026:47:2"
},
{
"nodeType": "YulAssignment",
"src": "4082:86:2",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4154:6:2"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4163:4:2"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "4090:63:2"
},
"nodeType": "YulFunctionCall",
"src": "4090:78:2"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4082:4:2"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3952:9:2",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3964:6:2",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3975:4:2",
"type": ""
}
],
"src": "3862:313:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4209:152:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4226:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4229:77:2",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4219:6:2"
},
"nodeType": "YulFunctionCall",
"src": "4219:88:2"
},
"nodeType": "YulExpressionStatement",
"src": "4219:88:2"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4323:1:2",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4326:4:2",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4316:6:2"
},
"nodeType": "YulFunctionCall",
"src": "4316:15:2"
},
"nodeType": "YulExpressionStatement",
"src": "4316:15:2"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4347:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4350:4:2",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4340:6:2"
},
"nodeType": "YulFunctionCall",
"src": "4340:15:2"
},
"nodeType": "YulExpressionStatement",
"src": "4340:15:2"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "4181:180:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4412:146:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4422:25:2",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4445:1:2"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "4427:17:2"
},
"nodeType": "YulFunctionCall",
"src": "4427:20:2"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4422:1:2"
}
]
},
{
"nodeType": "YulAssignment",
"src": "4456:25:2",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "4479:1:2"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "4461:17:2"
},
"nodeType": "YulFunctionCall",
"src": "4461:20:2"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "4456:1:2"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4503:22:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "4505:16:2"
},
"nodeType": "YulFunctionCall",
"src": "4505:18:2"
},
"nodeType": "YulExpressionStatement",
"src": "4505:18:2"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4497:1:2"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "4500:1:2"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "4494:2:2"
},
"nodeType": "YulFunctionCall",
"src": "4494:8:2"
},
"nodeType": "YulIf",
"src": "4491:34:2"
},
{
"nodeType": "YulAssignment",
"src": "4535:17:2",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4547:1:2"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "4550:1:2"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4543:3:2"
},
"nodeType": "YulFunctionCall",
"src": "4543:9:2"
},
"variableNames": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "4535:4:2"
}
]
}
]
},
"name": "checked_sub_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "4398:1:2",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "4401:1:2",
"type": ""
}
],
"returnVariables": [
{
"name": "diff",
"nodeType": "YulTypedName",
"src": "4407:4:2",
"type": ""
}
],
"src": "4367:191:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4592:152:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4609:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4612:77:2",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4602:6:2"
},
"nodeType": "YulFunctionCall",
"src": "4602:88:2"
},
"nodeType": "YulExpressionStatement",
"src": "4602:88:2"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4706:1:2",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4709:4:2",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4699:6:2"
},
"nodeType": "YulFunctionCall",
"src": "4699:15:2"
},
"nodeType": "YulExpressionStatement",
"src": "4699:15:2"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4730:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4733:4:2",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4723:6:2"
},
"nodeType": "YulFunctionCall",
"src": "4723:15:2"
},
"nodeType": "YulExpressionStatement",
"src": "4723:15:2"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "4564:180:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4801:269:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4811:22:2",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "4825:4:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4831:1:2",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "4821:3:2"
},
"nodeType": "YulFunctionCall",
"src": "4821:12:2"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4811:6:2"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "4842:38:2",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "4872:4:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4878:1:2",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4868:3:2"
},
"nodeType": "YulFunctionCall",
"src": "4868:12:2"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "4846:18:2",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4919:51:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4933:27:2",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4947:6:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4955:4:2",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4943:3:2"
},
"nodeType": "YulFunctionCall",
"src": "4943:17:2"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4933:6:2"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "4899:18:2"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "4892:6:2"
},
"nodeType": "YulFunctionCall",
"src": "4892:26:2"
},
"nodeType": "YulIf",
"src": "4889:81:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5022:42:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "5036:16:2"
},
"nodeType": "YulFunctionCall",
"src": "5036:18:2"
},
"nodeType": "YulExpressionStatement",
"src": "5036:18:2"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "4986:18:2"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5009:6:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5017:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "5006:2:2"
},
"nodeType": "YulFunctionCall",
"src": "5006:14:2"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "4983:2:2"
},
"nodeType": "YulFunctionCall",
"src": "4983:38:2"
},
"nodeType": "YulIf",
"src": "4980:84:2"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "4785:4:2",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4794:6:2",
"type": ""
}
],
"src": "4750:320:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5120:261:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5130:25:2",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5153:1:2"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "5135:17:2"
},
"nodeType": "YulFunctionCall",
"src": "5135:20:2"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5130:1:2"
}
]
},
{
"nodeType": "YulAssignment",
"src": "5164:25:2",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5187:1:2"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "5169:17:2"
},
"nodeType": "YulFunctionCall",
"src": "5169:20:2"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5164:1:2"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5327:22:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "5329:16:2"
},
"nodeType": "YulFunctionCall",
"src": "5329:18:2"
},
"nodeType": "YulExpressionStatement",
"src": "5329:18:2"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5248:1:2"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5255:66:2",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5323:1:2"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5251:3:2"
},
"nodeType": "YulFunctionCall",
"src": "5251:74:2"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "5245:2:2"
},
"nodeType": "YulFunctionCall",
"src": "5245:81:2"
},
"nodeType": "YulIf",
"src": "5242:107:2"
},
{
"nodeType": "YulAssignment",
"src": "5359:16:2",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5370:1:2"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5373:1:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5366:3:2"
},
"nodeType": "YulFunctionCall",
"src": "5366:9:2"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "5359:3:2"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "5107:1:2",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "5110:1:2",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "5116:3:2",
"type": ""
}
],
"src": "5076:305:2"
}
]
},
"contents": "{\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_address(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address(value)\n }\n\n function abi_decode_tuple_t_uint256t_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_uint256(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 cleanup_t_bool(value) -> cleaned {\n cleaned := iszero(iszero(value))\n }\n\n function abi_encode_t_bool_to_t_bool_fromStack(value, pos) {\n mstore(pos, cleanup_t_bool(value))\n }\n\n function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_bool_to_t_bool_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function copy_memory_to_memory(src, dst, length) {\n let i := 0\n for { } lt(i, length) { i := add(i, 32) }\n {\n mstore(add(dst, i), mload(add(src, i)))\n }\n if gt(i, length)\n {\n // clear end\n mstore(add(dst, length), 0)\n }\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value0, tail)\n\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function checked_sub_t_uint256(x, y) -> diff {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n if lt(x, y) { panic_error_0x11() }\n\n diff := sub(x, y)\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function 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}\n",
"id": 2,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106100575760003560e01c8063062a75441461005c578063209652551461008c5780632e1a7d4d146100aa57806375d0c0dc146100c6578063b6b55f25146100e4575b600080fd5b610076600480360381019061007191906102c7565b610100565b6040516100839190610322565b60405180910390f35b610094610157565b6040516100a1919061034c565b60405180910390f35b6100c460048036038101906100bf9190610367565b610160565b005b6100ce61017b565b6040516100db919061042d565b60405180910390f35b6100fe60048036038101906100f99190610367565b610209565b005b600061010b82610224565b73ffffffffffffffffffffffffffffffffffffffff166108fc849081150290604051600060405180830381858888f19350505050158015610150573d6000803e3d6000fd5b5092915050565b60008054905090565b80600080828254610171919061047e565b9250508190555050565b60018054610188906104e1565b80601f01602080910402602001604051908101604052809291908181526020018280546101b4906104e1565b80156102015780601f106101d657610100808354040283529160200191610201565b820191906000526020600020905b8154815290600101906020018083116101e457829003601f168201915b505050505081565b8060008082825461021a9190610513565b9250508190555050565b6000819050919050565b600080fd5b6000819050919050565b61024681610233565b811461025157600080fd5b50565b6000813590506102638161023d565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061029482610269565b9050919050565b6102a481610289565b81146102af57600080fd5b50565b6000813590506102c18161029b565b92915050565b600080604083850312156102de576102dd61022e565b5b60006102ec85828601610254565b92505060206102fd858286016102b2565b9150509250929050565b60008115159050919050565b61031c81610307565b82525050565b60006020820190506103376000830184610313565b92915050565b61034681610233565b82525050565b6000602082019050610361600083018461033d565b92915050565b60006020828403121561037d5761037c61022e565b5b600061038b84828501610254565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156103ce5780820151818401526020810190506103b3565b838111156103dd576000848401525b50505050565b6000601f19601f8301169050919050565b60006103ff82610394565b610409818561039f565b93506104198185602086016103b0565b610422816103e3565b840191505092915050565b6000602082019050818103600083015261044781846103f4565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061048982610233565b915061049483610233565b9250828210156104a7576104a661044f565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806104f957607f821691505b6020821081141561050d5761050c6104b2565b5b50919050565b600061051e82610233565b915061052983610233565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561055e5761055d61044f565b5b82820190509291505056fea264697066735822122014a90c0443a4bbebd8ca10f5895ef367b1d4a2194afe6a4c19c4ffd98aa7b17864736f6c63430008090033",
"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 0x62A7544 EQ PUSH2 0x5C JUMPI DUP1 PUSH4 0x20965255 EQ PUSH2 0x8C JUMPI DUP1 PUSH4 0x2E1A7D4D EQ PUSH2 0xAA JUMPI DUP1 PUSH4 0x75D0C0DC EQ PUSH2 0xC6 JUMPI DUP1 PUSH4 0xB6B55F25 EQ PUSH2 0xE4 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x76 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x71 SWAP2 SWAP1 PUSH2 0x2C7 JUMP JUMPDEST PUSH2 0x100 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x83 SWAP2 SWAP1 PUSH2 0x322 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x94 PUSH2 0x157 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xA1 SWAP2 SWAP1 PUSH2 0x34C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xC4 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xBF SWAP2 SWAP1 PUSH2 0x367 JUMP JUMPDEST PUSH2 0x160 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xCE PUSH2 0x17B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xDB SWAP2 SWAP1 PUSH2 0x42D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xFE PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xF9 SWAP2 SWAP1 PUSH2 0x367 JUMP JUMPDEST PUSH2 0x209 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 PUSH2 0x10B DUP3 PUSH2 0x224 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x8FC DUP5 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 0x150 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST DUP1 PUSH1 0x0 DUP1 DUP3 DUP3 SLOAD PUSH2 0x171 SWAP2 SWAP1 PUSH2 0x47E JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH2 0x188 SWAP1 PUSH2 0x4E1 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 0x1B4 SWAP1 PUSH2 0x4E1 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x201 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x1D6 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x201 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 0x1E4 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 JUMP JUMPDEST DUP1 PUSH1 0x0 DUP1 DUP3 DUP3 SLOAD PUSH2 0x21A SWAP2 SWAP1 PUSH2 0x513 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x246 DUP2 PUSH2 0x233 JUMP JUMPDEST DUP2 EQ PUSH2 0x251 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x263 DUP2 PUSH2 0x23D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x294 DUP3 PUSH2 0x269 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2A4 DUP2 PUSH2 0x289 JUMP JUMPDEST DUP2 EQ PUSH2 0x2AF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2C1 DUP2 PUSH2 0x29B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2DE JUMPI PUSH2 0x2DD PUSH2 0x22E JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2EC DUP6 DUP3 DUP7 ADD PUSH2 0x254 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x2FD DUP6 DUP3 DUP7 ADD PUSH2 0x2B2 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x31C DUP2 PUSH2 0x307 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x337 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x313 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x346 DUP2 PUSH2 0x233 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x361 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x33D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x37D JUMPI PUSH2 0x37C PUSH2 0x22E JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x38B DUP5 DUP3 DUP6 ADD PUSH2 0x254 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x3CE JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x3B3 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x3DD JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3FF DUP3 PUSH2 0x394 JUMP JUMPDEST PUSH2 0x409 DUP2 DUP6 PUSH2 0x39F JUMP JUMPDEST SWAP4 POP PUSH2 0x419 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x3B0 JUMP JUMPDEST PUSH2 0x422 DUP2 PUSH2 0x3E3 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x447 DUP2 DUP5 PUSH2 0x3F4 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x489 DUP3 PUSH2 0x233 JUMP JUMPDEST SWAP2 POP PUSH2 0x494 DUP4 PUSH2 0x233 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x4A7 JUMPI PUSH2 0x4A6 PUSH2 0x44F JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x4F9 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x50D JUMPI PUSH2 0x50C PUSH2 0x4B2 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x51E DUP3 PUSH2 0x233 JUMP JUMPDEST SWAP2 POP PUSH2 0x529 DUP4 PUSH2 0x233 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x55E JUMPI PUSH2 0x55D PUSH2 0x44F JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 EQ 0xA9 0xC DIV NUMBER LOG4 0xBB 0xEB 0xD8 0xCA LT CREATE2 DUP10 0x5E RETURN PUSH8 0xB1D4A2194AFE6A4C NOT 0xC4 SELFDESTRUCT 0xD9 DUP11 0xA7 0xB1 PUSH25 0x64736F6C634300080900330000000000000000000000000000 ",
"sourceMap": "302:735:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;875:160;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;488:77;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;228:71:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;378:26:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;152:70:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;875:160:0;972:4;988:23;1002:8;988:13;:23::i;:::-;:32;;:40;1021:6;988:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;875:160;;;;:::o;488:77::-;530:4;553:5;;546:12;;488:77;:::o;228:71:1:-;286:6;277:5;;:15;;;;;;;:::i;:::-;;;;;;;;228:71;:::o;378:26:0:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;152:70:1:-;209:6;200:5;;:15;;;;;;;:::i;:::-;;;;;;;;152:70;:::o;648:126:0:-;705:15;763:1;732:35;;648:126;;;:::o;88:117:2:-;197:1;194;187:12;334:77;371:7;400:5;389:16;;334:77;;;:::o;417:122::-;490:24;508:5;490:24;:::i;:::-;483:5;480:35;470:63;;529:1;526;519:12;470:63;417:122;:::o;545:139::-;591:5;629:6;616:20;607:29;;645:33;672:5;645:33;:::i;:::-;545:139;;;;:::o;690:126::-;727:7;767:42;760:5;756:54;745:65;;690:126;;;:::o;822:96::-;859:7;888:24;906:5;888:24;:::i;:::-;877:35;;822:96;;;:::o;924:122::-;997:24;1015:5;997:24;:::i;:::-;990:5;987:35;977:63;;1036:1;1033;1026:12;977:63;924:122;:::o;1052:139::-;1098:5;1136:6;1123:20;1114:29;;1152:33;1179:5;1152:33;:::i;:::-;1052:139;;;;:::o;1197:474::-;1265:6;1273;1322:2;1310:9;1301:7;1297:23;1293:32;1290:119;;;1328:79;;:::i;:::-;1290:119;1448:1;1473:53;1518:7;1509:6;1498:9;1494:22;1473:53;:::i;:::-;1463:63;;1419:117;1575:2;1601:53;1646:7;1637:6;1626:9;1622:22;1601:53;:::i;:::-;1591:63;;1546:118;1197:474;;;;;:::o;1677:90::-;1711:7;1754:5;1747:13;1740:21;1729:32;;1677:90;;;:::o;1773:109::-;1854:21;1869:5;1854:21;:::i;:::-;1849:3;1842:34;1773:109;;:::o;1888:210::-;1975:4;2013:2;2002:9;1998:18;1990:26;;2026:65;2088:1;2077:9;2073:17;2064:6;2026:65;:::i;:::-;1888:210;;;;:::o;2104:118::-;2191:24;2209:5;2191:24;:::i;:::-;2186:3;2179:37;2104:118;;:::o;2228:222::-;2321:4;2359:2;2348:9;2344:18;2336:26;;2372:71;2440:1;2429:9;2425:17;2416:6;2372:71;:::i;:::-;2228:222;;;;:::o;2456:329::-;2515:6;2564:2;2552:9;2543:7;2539:23;2535:32;2532:119;;;2570:79;;:::i;:::-;2532:119;2690:1;2715:53;2760:7;2751:6;2740:9;2736:22;2715:53;:::i;:::-;2705:63;;2661:117;2456:329;;;;:::o;2791:99::-;2843:6;2877:5;2871:12;2861:22;;2791:99;;;:::o;2896:169::-;2980:11;3014:6;3009:3;3002:19;3054:4;3049:3;3045:14;3030:29;;2896:169;;;;:::o;3071:307::-;3139:1;3149:113;3163:6;3160:1;3157:13;3149:113;;;3248:1;3243:3;3239:11;3233:18;3229:1;3224:3;3220:11;3213:39;3185:2;3182:1;3178:10;3173:15;;3149:113;;;3280:6;3277:1;3274:13;3271:101;;;3360:1;3351:6;3346:3;3342:16;3335:27;3271:101;3120:258;3071:307;;;:::o;3384:102::-;3425:6;3476:2;3472:7;3467:2;3460:5;3456:14;3452:28;3442:38;;3384:102;;;:::o;3492:364::-;3580:3;3608:39;3641:5;3608:39;:::i;:::-;3663:71;3727:6;3722:3;3663:71;:::i;:::-;3656:78;;3743:52;3788:6;3783:3;3776:4;3769:5;3765:16;3743:52;:::i;:::-;3820:29;3842:6;3820:29;:::i;:::-;3815:3;3811:39;3804:46;;3584:272;3492:364;;;;:::o;3862:313::-;3975:4;4013:2;4002:9;3998:18;3990:26;;4062:9;4056:4;4052:20;4048:1;4037:9;4033:17;4026:47;4090:78;4163:4;4154:6;4090:78;:::i;:::-;4082:86;;3862:313;;;;:::o;4181:180::-;4229:77;4226:1;4219:88;4326:4;4323:1;4316:15;4350:4;4347:1;4340:15;4367:191;4407:4;4427:20;4445:1;4427:20;:::i;:::-;4422:25;;4461:20;4479:1;4461:20;:::i;:::-;4456:25;;4500:1;4497;4494:8;4491:34;;;4505:18;;:::i;:::-;4491:34;4550:1;4547;4543:9;4535:17;;4367:191;;;;:::o;4564:180::-;4612:77;4609:1;4602:88;4709:4;4706:1;4699:15;4733:4;4730:1;4723:15;4750:320;4794:6;4831:1;4825:4;4821:12;4811:22;;4878:1;4872:4;4868:12;4899:18;4889:81;;4955:4;4947:6;4943:17;4933:27;;4889:81;5017:2;5009:6;5006:14;4986:18;4983:38;4980:84;;;5036:18;;:::i;:::-;4980:84;4801:269;4750:320;;;:::o;5076:305::-;5116:3;5135:20;5153:1;5135:20;:::i;:::-;5130:25;;5169:20;5187:1;5169:20;:::i;:::-;5164:25;;5323:1;5255:66;5251:74;5248:1;5245:81;5242:107;;;5329:18;;:::i;:::-;5242:107;5373:1;5370;5366:9;5359:16;;5076:305;;;;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "287800",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"contractName()": "infinite",
"deposit(uint256)": "infinite",
"getValue()": "2437",
"sendMoney(uint256,address)": "infinite",
"withdraw(uint256)": "infinite"
},
"internal": {
"_make_payable(address)": "28"
}
},
"methodIdentifiers": {
"contractName()": "75d0c0dc",
"deposit(uint256)": "b6b55f25",
"getValue()": "20965255",
"sendMoney(uint256,address)": "062a7544",
"withdraw(uint256)": "2e1a7d4d"
}
},
"abi": [
{
"inputs": [
{
"internalType": "string",
"name": "_n",
"type": "string"
}
],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"inputs": [],
"name": "contractName",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "deposit",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "getValue",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
},
{
"internalType": "address",
"name": "_address",
"type": "address"
}
],
"name": "sendMoney",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "withdraw",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.9+commit.e5eed63a"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [
{
"internalType": "string",
"name": "_n",
"type": "string"
}
],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"inputs": [],
"name": "contractName",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "deposit",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "getValue",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
},
{
"internalType": "address",
"name": "_address",
"type": "address"
}
],
"name": "sendMoney",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "withdraw",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/Inheritance/InheritanceContract.sol": "InheritanceContract"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/Inheritance/InheritanceContract.sol": {
"keccak256": "0x55ca8bcd2bee8f188161c475a4aa0e3e5fdb4cf21669d0940318ad7611a7cc12",
"urls": [
"bzz-raw://7c7692b328bd701dfd5862fada1696f94f6b1f3884f950faaddf1a8d75195540",
"dweb:/ipfs/Qmf4n47ceEJzKJnMiQ6EaNJrE9QpUfLxPb4HvbaqbCN5JK"
]
},
"contracts/Inheritance/MainContract.sol": {
"keccak256": "0xbd63efae88d8a794ec05c28287b79a6c191af548ce335fe1b1e469937c07733f",
"urls": [
"bzz-raw://e5ed9093a047b6cb503ba816af6ef7487cfb6034ebf771f9c204fb4e3afdab76",
"dweb:/ipfs/QmSFgZzJvPc4Qe3AdcDoSAGdcbcaLpj8jR83ZrbWo7eoTx"
]
}
},
"version": 1
}
pragma solidity >=0.4.24;
import "./MainContract.sol";
// We have a ContractInterface, that has a function
// sendmoney...but there is no function body
interface ContractInterface {
function sendMoney (uint amount, address _address) external returns (bool);
}
// This shows multiple inheritance
contract InheritanceContract is ContractInterface, MainContract(100) {
string public contractName;
constructor (string memory _n) public {
contractName = _n;
}
function getValue () public view returns (uint) {
return value;
}
// Function that allows you to convert an address into a payable address
function _make_payable(address x) internal pure returns (address payable) {
return payable(address(uint160(x)));
}
// This function has to be implemented, since it is unimplemented in the ContractInterface
function sendMoney (uint amount, address _address) override(ContractInterface) external returns (bool) {
_make_payable(_address).transfer(amount);
}
}
pragma solidity >=0.4.24;
contract MainContract {
uint internal value;
constructor (uint amount) public {
value = amount;
}
function deposit (uint amount) public {
value += amount;
}
function withdraw (uint amount) public {
value -= amount;
}
}
This file has been truncated, but you can view the full file.
{
"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": {
"@_21": {
"entryPoint": null,
"id": 21,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_decode_available_length_t_string_memory_ptr_fromMemory": {
"entryPoint": 291,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_t_string_memory_ptr_fromMemory": {
"entryPoint": 366,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint8_fromMemory": {
"entryPoint": 417,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_string_memory_ptrt_uint8_fromMemory": {
"entryPoint": 440,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"allocate_memory": {
"entryPoint": 542,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": 573,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_allocation_size_t_string_memory_ptr": {
"entryPoint": 583,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint8": {
"entryPoint": 637,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_memory_to_memory": {
"entryPoint": 650,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 704,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"finalize_allocation": {
"entryPoint": 758,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 812,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 859,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": {
"entryPoint": 906,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": {
"entryPoint": 911,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": 916,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 921,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 926,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"validator_revert_t_uint8": {
"entryPoint": 943,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:4277:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "102:326:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "112:75:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "179:6:1"
}
],
"functionName": {
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "137:41:1"
},
"nodeType": "YulFunctionCall",
"src": "137:49:1"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "121:15:1"
},
"nodeType": "YulFunctionCall",
"src": "121:66:1"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "112:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "203:5:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "210:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "196:6:1"
},
"nodeType": "YulFunctionCall",
"src": "196:21:1"
},
"nodeType": "YulExpressionStatement",
"src": "196:21:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "226:27:1",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "241:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "248:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "237:3:1"
},
"nodeType": "YulFunctionCall",
"src": "237:16:1"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "230:3:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "291:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulIdentifier",
"src": "293:77:1"
},
"nodeType": "YulFunctionCall",
"src": "293:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "293:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "272:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "277:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "268:3:1"
},
"nodeType": "YulFunctionCall",
"src": "268:16:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "286:3:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "265:2:1"
},
"nodeType": "YulFunctionCall",
"src": "265:25:1"
},
"nodeType": "YulIf",
"src": "262:112:1"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "405:3:1"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "410:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "415:6:1"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "383:21:1"
},
"nodeType": "YulFunctionCall",
"src": "383:39:1"
},
"nodeType": "YulExpressionStatement",
"src": "383:39:1"
}
]
},
"name": "abi_decode_available_length_t_string_memory_ptr_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "75:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "80:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "88:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "96:5:1",
"type": ""
}
],
"src": "7:421:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "521:282:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "570:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "572:77:1"
},
"nodeType": "YulFunctionCall",
"src": "572:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "572:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "549:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "557:4:1",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "545:3:1"
},
"nodeType": "YulFunctionCall",
"src": "545:17:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "564:3:1"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "541:3:1"
},
"nodeType": "YulFunctionCall",
"src": "541:27:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "534:6:1"
},
"nodeType": "YulFunctionCall",
"src": "534:35:1"
},
"nodeType": "YulIf",
"src": "531:122:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "662:27:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "682:6:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "676:5:1"
},
"nodeType": "YulFunctionCall",
"src": "676:13:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "666:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "698:99:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "770:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "778:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "766:3:1"
},
"nodeType": "YulFunctionCall",
"src": "766:17:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "785:6:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "793:3:1"
}
],
"functionName": {
"name": "abi_decode_available_length_t_string_memory_ptr_fromMemory",
"nodeType": "YulIdentifier",
"src": "707:58:1"
},
"nodeType": "YulFunctionCall",
"src": "707:90:1"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "698:5:1"
}
]
}
]
},
"name": "abi_decode_t_string_memory_ptr_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "499:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "507:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "515:5:1",
"type": ""
}
],
"src": "448:355:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "870:78:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "880:22:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "895:6:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "889:5:1"
},
"nodeType": "YulFunctionCall",
"src": "889:13:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "880:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "936:5:1"
}
],
"functionName": {
"name": "validator_revert_t_uint8",
"nodeType": "YulIdentifier",
"src": "911:24:1"
},
"nodeType": "YulFunctionCall",
"src": "911:31:1"
},
"nodeType": "YulExpressionStatement",
"src": "911:31:1"
}
]
},
"name": "abi_decode_t_uint8_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "848:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "856:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "864:5:1",
"type": ""
}
],
"src": "809:139:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1056:574:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1102:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "1104:77:1"
},
"nodeType": "YulFunctionCall",
"src": "1104:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "1104:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1077:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1086:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1073:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1073:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1098:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1069:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1069:32:1"
},
"nodeType": "YulIf",
"src": "1066:119:1"
},
{
"nodeType": "YulBlock",
"src": "1195:291:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1210:38:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1234:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1245:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1230:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1230:17:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1224:5:1"
},
"nodeType": "YulFunctionCall",
"src": "1224:24:1"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1214:6:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1295:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "1297:77:1"
},
"nodeType": "YulFunctionCall",
"src": "1297:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "1297:79:1"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1267:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1275:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1264:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1264:30:1"
},
"nodeType": "YulIf",
"src": "1261:117:1"
},
{
"nodeType": "YulAssignment",
"src": "1392:84:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1448:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1459:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1444:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1444:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1468:7:1"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr_fromMemory",
"nodeType": "YulIdentifier",
"src": "1402:41:1"
},
"nodeType": "YulFunctionCall",
"src": "1402:74:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1392:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1496:127:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1511:16:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1525:2:1",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1515:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1541:72:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1585:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1596:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1581:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1581:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1605:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint8_fromMemory",
"nodeType": "YulIdentifier",
"src": "1551:29:1"
},
"nodeType": "YulFunctionCall",
"src": "1551:62:1"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1541:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptrt_uint8_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1018:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1029:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1041:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1049:6:1",
"type": ""
}
],
"src": "954:676:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1677:88:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1687:30:1",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nodeType": "YulIdentifier",
"src": "1697:18:1"
},
"nodeType": "YulFunctionCall",
"src": "1697:20:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1687:6:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1746:6:1"
},
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1754:4:1"
}
],
"functionName": {
"name": "finalize_allocation",
"nodeType": "YulIdentifier",
"src": "1726:19:1"
},
"nodeType": "YulFunctionCall",
"src": "1726:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "1726:33:1"
}
]
},
"name": "allocate_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "1661:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "1670:6:1",
"type": ""
}
],
"src": "1636:129:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1811:35:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1821:19:1",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1837:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1831:5:1"
},
"nodeType": "YulFunctionCall",
"src": "1831:9:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1821:6:1"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "1804:6:1",
"type": ""
}
],
"src": "1771:75:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1919:241:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2024:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "2026:16:1"
},
"nodeType": "YulFunctionCall",
"src": "2026:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "2026:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1996:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2004:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1993:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1993:30:1"
},
"nodeType": "YulIf",
"src": "1990:56:1"
},
{
"nodeType": "YulAssignment",
"src": "2056:37:1",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2086:6:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "2064:21:1"
},
"nodeType": "YulFunctionCall",
"src": "2064:29:1"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "2056:4:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "2130:23:1",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "2142:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2148:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2138:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2138:15:1"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "2130:4:1"
}
]
}
]
},
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1903:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "1914:4:1",
"type": ""
}
],
"src": "1852:308:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2209:43:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2219:27:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2234:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2241:4:1",
"type": "",
"value": "0xff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "2230:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2230:16:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "2219:7:1"
}
]
}
]
},
"name": "cleanup_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2191:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "2201:7:1",
"type": ""
}
],
"src": "2166:86:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2307:258:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2317:10:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2326:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "2321:1:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2386:63:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "2411:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "2416:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2407:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2407:11:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "2430:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "2435:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2426:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2426:11:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "2420:5:1"
},
"nodeType": "YulFunctionCall",
"src": "2420:18:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2400:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2400:39:1"
},
"nodeType": "YulExpressionStatement",
"src": "2400:39:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "2347:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2350:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "2344:2:1"
},
"nodeType": "YulFunctionCall",
"src": "2344:13:1"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "2358:19:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2360:15:1",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "2369:1:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2372:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2365:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2365:10:1"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "2360:1:1"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "2340:3:1",
"statements": []
},
"src": "2336:113:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2483:76:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "2533:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2538:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2529:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2529:16:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2547:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2522:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2522:27:1"
},
"nodeType": "YulExpressionStatement",
"src": "2522:27:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "2464:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2467:6:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2461:2:1"
},
"nodeType": "YulFunctionCall",
"src": "2461:13:1"
},
"nodeType": "YulIf",
"src": "2458:101:1"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "2289:3:1",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "2294:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2299:6:1",
"type": ""
}
],
"src": "2258:307:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2622:269:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2632:22:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "2646:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2652:1:1",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "2642:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2642:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2632:6:1"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "2663:38:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "2693:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2699:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "2689:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2689:12:1"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "2667:18:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2740:51:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2754:27:1",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2768:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2776:4:1",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "2764:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2764:17:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2754:6:1"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "2720:18:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2713:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2713:26:1"
},
"nodeType": "YulIf",
"src": "2710:81:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2843:42:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "2857:16:1"
},
"nodeType": "YulFunctionCall",
"src": "2857:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "2857:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "2807:18:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2830:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2838:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "2827:2:1"
},
"nodeType": "YulFunctionCall",
"src": "2827:14:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "2804:2:1"
},
"nodeType": "YulFunctionCall",
"src": "2804:38:1"
},
"nodeType": "YulIf",
"src": "2801:84:1"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "2606:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2615:6:1",
"type": ""
}
],
"src": "2571:320:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2940:238:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2950:58:1",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "2972:6:1"
},
{
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "3002:4:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "2980:21:1"
},
"nodeType": "YulFunctionCall",
"src": "2980:27:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2968:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2968:40:1"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "2954:10:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3119:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "3121:16:1"
},
"nodeType": "YulFunctionCall",
"src": "3121:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "3121:18:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "3062:10:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3074:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3059:2:1"
},
"nodeType": "YulFunctionCall",
"src": "3059:34:1"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "3098:10:1"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "3110:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "3095:2:1"
},
"nodeType": "YulFunctionCall",
"src": "3095:22:1"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "3056:2:1"
},
"nodeType": "YulFunctionCall",
"src": "3056:62:1"
},
"nodeType": "YulIf",
"src": "3053:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3157:2:1",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "3161:10:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3150:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3150:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "3150:22:1"
}
]
},
"name": "finalize_allocation",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "2926:6:1",
"type": ""
},
{
"name": "size",
"nodeType": "YulTypedName",
"src": "2934:4:1",
"type": ""
}
],
"src": "2897:281:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3212:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3229:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3232:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3222:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3222:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "3222:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3326:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3329:4:1",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3319:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3319:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "3319:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3350:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3353:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3343:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3343:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "3343:15:1"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "3184:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3398:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3415:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3418:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3408:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3408:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "3408:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3512:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3515:4:1",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3505:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3505:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "3505:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3536:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3539:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3529:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3529:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "3529:15:1"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "3370:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3645:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3662:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3665:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3655:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3655:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "3655:12:1"
}
]
},
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulFunctionDefinition",
"src": "3556:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3768:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3785:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3788:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3778:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3778:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "3778:12:1"
}
]
},
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulFunctionDefinition",
"src": "3679:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3891:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3908:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3911:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3901:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3901:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "3901:12:1"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "3802:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4014:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4031:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4034:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4024:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4024:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "4024:12:1"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "3925:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4096:54:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4106:38:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4124:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4131:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4120:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4120:14:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4140:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "4136:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4136:7:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4116:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4116:28:1"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "4106:6:1"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4079:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "4089:6:1",
"type": ""
}
],
"src": "4048:102:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4197:77:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4252:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4261:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4264:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4254:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4254:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "4254:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4220:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4243:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint8",
"nodeType": "YulIdentifier",
"src": "4227:15:1"
},
"nodeType": "YulFunctionCall",
"src": "4227:22:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "4217:2:1"
},
"nodeType": "YulFunctionCall",
"src": "4217:33:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "4210:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4210:41:1"
},
"nodeType": "YulIf",
"src": "4207:61:1"
}
]
},
"name": "validator_revert_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4190:5:1",
"type": ""
}
],
"src": "4156:118:1"
}
]
},
"contents": "{\n\n function abi_decode_available_length_t_string_memory_ptr_fromMemory(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_memory_to_memory(src, dst, length)\n }\n\n // string\n function abi_decode_t_string_memory_ptr_fromMemory(offset, end) -> array {\n if iszero(slt(add(offset, 0x1f), end)) { revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() }\n let length := mload(offset)\n array := abi_decode_available_length_t_string_memory_ptr_fromMemory(add(offset, 0x20), length, end)\n }\n\n function abi_decode_t_uint8_fromMemory(offset, end) -> value {\n value := mload(offset)\n validator_revert_t_uint8(value)\n }\n\n function abi_decode_tuple_t_string_memory_ptrt_uint8_fromMemory(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := mload(add(headStart, 0))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value0 := abi_decode_t_string_memory_ptr_fromMemory(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint8_fromMemory(add(headStart, offset), dataEnd)\n }\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 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 extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function finalize_allocation(memPtr, size) {\n let newFreePtr := add(memPtr, round_up_to_mul_of_32(size))\n // protect against overflow\n if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() {\n revert(0, 0)\n }\n\n function revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function validator_revert_t_uint8(value) {\n if iszero(eq(value, cleanup_t_uint8(value))) { revert(0, 0) }\n }\n\n}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "60806040523480156200001157600080fd5b5060405162000b1438038062000b148339818101604052810190620000379190620001b8565b81600090805190602001906200004f92919062000073565b5080600160006101000a81548160ff021916908360ff1602179055505050620003c9565b8280546200008190620002c0565b90600052602060002090601f016020900481019282620000a55760008555620000f1565b82601f10620000c057805160ff1916838001178555620000f1565b82800160010185558215620000f1579182015b82811115620000f0578251825591602001919060010190620000d3565b5b50905062000100919062000104565b5090565b5b808211156200011f57600081600090555060010162000105565b5090565b60006200013a620001348462000247565b6200021e565b9050828152602081018484840111156200015957620001586200038f565b5b620001668482856200028a565b509392505050565b600082601f8301126200018657620001856200038a565b5b81516200019884826020860162000123565b91505092915050565b600081519050620001b281620003af565b92915050565b60008060408385031215620001d257620001d162000399565b5b600083015167ffffffffffffffff811115620001f357620001f262000394565b5b62000201858286016200016e565b92505060206200021485828601620001a1565b9150509250929050565b60006200022a6200023d565b9050620002388282620002f6565b919050565b6000604051905090565b600067ffffffffffffffff8211156200026557620002646200035b565b5b62000270826200039e565b9050602081019050919050565b600060ff82169050919050565b60005b83811015620002aa5780820151818401526020810190506200028d565b83811115620002ba576000848401525b50505050565b60006002820490506001821680620002d957607f821691505b60208210811415620002f057620002ef6200032c565b5b50919050565b62000301826200039e565b810181811067ffffffffffffffff821117156200032357620003226200035b565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b620003ba816200027d565b8114620003c657600080fd5b50565b61073b80620003d96000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c8063145ef6e914610051578063badbcfe81461006f578063d5f7c53b1461008d578063facf8323146100a9575b600080fd5b6100596100c8565b60405161006691906104da565b60405180910390f35b6100776101d9565b604051610084919061052c565b60405180910390f35b6100a760048036038101906100a29190610409565b6101f0565b005b6100b1610226565b6040516100bf9291906104fc565b60405180910390f35b60603073ffffffffffffffffffffffffffffffffffffffff1663badbcfe86040518163ffffffff1660e01b815260040160206040518083038186803b15801561011057600080fd5b505afa158015610124573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906101489190610465565b506000805461015690610608565b80601f016020809104026020016040519081016040528092919081815260200182805461018290610608565b80156101cf5780601f106101a4576101008083540402835291602001916101cf565b820191906000526020600020905b8154815290600101906020018083116101b257829003601f168201915b5050505050905090565b6000600160009054906101000a900460ff16905090565b81600090805190602001906102069291906102cc565b5080600160006101000a81548160ff021916908360ff1602179055505050565b6060600080805461023690610608565b80601f016020809104026020016040519081016040528092919081815260200182805461026290610608565b80156102af5780601f10610284576101008083540402835291602001916102af565b820191906000526020600020905b81548152906001019060200180831161029257829003601f168201915b50505050509150600160009054906101000a900460ff1690509091565b8280546102d890610608565b90600052602060002090601f0160209004810192826102fa5760008555610341565b82601f1061031357805160ff1916838001178555610341565b82800160010185558215610341579182015b82811115610340578251825591602001919060010190610325565b5b50905061034e9190610352565b5090565b5b8082111561036b576000816000905550600101610353565b5090565b600061038261037d8461056c565b610547565b90508281526020810184848401111561039e5761039d6106ce565b5b6103a98482856105c6565b509392505050565b600082601f8301126103c6576103c56106c9565b5b81356103d684826020860161036f565b91505092915050565b6000813590506103ee816106ee565b92915050565b600081519050610403816106ee565b92915050565b600080604083850312156104205761041f6106d8565b5b600083013567ffffffffffffffff81111561043e5761043d6106d3565b5b61044a858286016103b1565b925050602061045b858286016103df565b9150509250929050565b60006020828403121561047b5761047a6106d8565b5b6000610489848285016103f4565b91505092915050565b600061049d8261059d565b6104a781856105a8565b93506104b78185602086016105d5565b6104c0816106dd565b840191505092915050565b6104d4816105b9565b82525050565b600060208201905081810360008301526104f48184610492565b905092915050565b600060408201905081810360008301526105168185610492565b905061052560208301846104cb565b9392505050565b600060208201905061054160008301846104cb565b92915050565b6000610551610562565b905061055d828261063a565b919050565b6000604051905090565b600067ffffffffffffffff8211156105875761058661069a565b5b610590826106dd565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156105f35780820151818401526020810190506105d8565b83811115610602576000848401525b50505050565b6000600282049050600182168061062057607f821691505b602082108114156106345761063361066b565b5b50919050565b610643826106dd565b810181811067ffffffffffffffff821117156106625761066161069a565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b6106f7816105b9565b811461070257600080fd5b5056fea264697066735822122060f166064611e635f24c6b87789eb2f2e4beb89863035fa64d800ce12f84d2be64736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0xB14 CODESIZE SUB DUP1 PUSH3 0xB14 DUP4 CODECOPY DUP2 DUP2 ADD PUSH1 0x40 MSTORE DUP2 ADD SWAP1 PUSH3 0x37 SWAP2 SWAP1 PUSH3 0x1B8 JUMP JUMPDEST DUP2 PUSH1 0x0 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x4F SWAP3 SWAP2 SWAP1 PUSH3 0x73 JUMP JUMPDEST POP DUP1 PUSH1 0x1 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 PUSH1 0xFF AND MUL OR SWAP1 SSTORE POP POP POP PUSH3 0x3C9 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0x81 SWAP1 PUSH3 0x2C0 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0xA5 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0xF1 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0xC0 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0xF1 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0xF1 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0xF0 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0xD3 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH3 0x100 SWAP2 SWAP1 PUSH3 0x104 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0x11F JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH3 0x105 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH3 0x13A PUSH3 0x134 DUP5 PUSH3 0x247 JUMP JUMPDEST PUSH3 0x21E JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH3 0x159 JUMPI PUSH3 0x158 PUSH3 0x38F JUMP JUMPDEST JUMPDEST PUSH3 0x166 DUP5 DUP3 DUP6 PUSH3 0x28A JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH3 0x186 JUMPI PUSH3 0x185 PUSH3 0x38A JUMP JUMPDEST JUMPDEST DUP2 MLOAD PUSH3 0x198 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH3 0x123 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH3 0x1B2 DUP2 PUSH3 0x3AF JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH3 0x1D2 JUMPI PUSH3 0x1D1 PUSH3 0x399 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP4 ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x1F3 JUMPI PUSH3 0x1F2 PUSH3 0x394 JUMP JUMPDEST JUMPDEST PUSH3 0x201 DUP6 DUP3 DUP7 ADD PUSH3 0x16E JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH3 0x214 DUP6 DUP3 DUP7 ADD PUSH3 0x1A1 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x22A PUSH3 0x23D JUMP JUMPDEST SWAP1 POP PUSH3 0x238 DUP3 DUP3 PUSH3 0x2F6 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH3 0x265 JUMPI PUSH3 0x264 PUSH3 0x35B JUMP JUMPDEST JUMPDEST PUSH3 0x270 DUP3 PUSH3 0x39E JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD 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 PUSH3 0x2AA JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH3 0x28D JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH3 0x2BA 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 PUSH3 0x2D9 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0x2F0 JUMPI PUSH3 0x2EF PUSH3 0x32C JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH3 0x301 DUP3 PUSH3 0x39E JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH3 0x323 JUMPI PUSH3 0x322 PUSH3 0x35B JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH3 0x3BA DUP2 PUSH3 0x27D JUMP JUMPDEST DUP2 EQ PUSH3 0x3C6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x73B DUP1 PUSH3 0x3D9 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x4C JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x145EF6E9 EQ PUSH2 0x51 JUMPI DUP1 PUSH4 0xBADBCFE8 EQ PUSH2 0x6F JUMPI DUP1 PUSH4 0xD5F7C53B EQ PUSH2 0x8D JUMPI DUP1 PUSH4 0xFACF8323 EQ PUSH2 0xA9 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x59 PUSH2 0xC8 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x66 SWAP2 SWAP1 PUSH2 0x4DA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x77 PUSH2 0x1D9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x84 SWAP2 SWAP1 PUSH2 0x52C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xA7 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xA2 SWAP2 SWAP1 PUSH2 0x409 JUMP JUMPDEST PUSH2 0x1F0 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xB1 PUSH2 0x226 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xBF SWAP3 SWAP2 SWAP1 PUSH2 0x4FC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x60 ADDRESS PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xBADBCFE8 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x110 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x124 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 0x148 SWAP2 SWAP1 PUSH2 0x465 JUMP JUMPDEST POP PUSH1 0x0 DUP1 SLOAD PUSH2 0x156 SWAP1 PUSH2 0x608 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 0x182 SWAP1 PUSH2 0x608 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x1CF JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x1A4 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x1CF 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 0x1B2 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP1 JUMP JUMPDEST DUP2 PUSH1 0x0 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x206 SWAP3 SWAP2 SWAP1 PUSH2 0x2CC JUMP JUMPDEST POP DUP1 PUSH1 0x1 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 PUSH1 0xFF AND MUL OR SWAP1 SSTORE POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP1 DUP1 SLOAD PUSH2 0x236 SWAP1 PUSH2 0x608 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 0x262 SWAP1 PUSH2 0x608 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x2AF JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x284 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x2AF 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 0x292 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP2 POP PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP1 SWAP2 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH2 0x2D8 SWAP1 PUSH2 0x608 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0x2FA JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0x341 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0x313 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0x341 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0x341 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x340 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x325 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x34E SWAP2 SWAP1 PUSH2 0x352 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x36B JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x353 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x382 PUSH2 0x37D DUP5 PUSH2 0x56C JUMP JUMPDEST PUSH2 0x547 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x39E JUMPI PUSH2 0x39D PUSH2 0x6CE JUMP JUMPDEST JUMPDEST PUSH2 0x3A9 DUP5 DUP3 DUP6 PUSH2 0x5C6 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x3C6 JUMPI PUSH2 0x3C5 PUSH2 0x6C9 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x3D6 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x36F JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x3EE DUP2 PUSH2 0x6EE JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x403 DUP2 PUSH2 0x6EE JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x420 JUMPI PUSH2 0x41F PUSH2 0x6D8 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x43E JUMPI PUSH2 0x43D PUSH2 0x6D3 JUMP JUMPDEST JUMPDEST PUSH2 0x44A DUP6 DUP3 DUP7 ADD PUSH2 0x3B1 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x45B DUP6 DUP3 DUP7 ADD PUSH2 0x3DF JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x47B JUMPI PUSH2 0x47A PUSH2 0x6D8 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x489 DUP5 DUP3 DUP6 ADD PUSH2 0x3F4 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x49D DUP3 PUSH2 0x59D JUMP JUMPDEST PUSH2 0x4A7 DUP2 DUP6 PUSH2 0x5A8 JUMP JUMPDEST SWAP4 POP PUSH2 0x4B7 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x5D5 JUMP JUMPDEST PUSH2 0x4C0 DUP2 PUSH2 0x6DD JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x4D4 DUP2 PUSH2 0x5B9 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x4F4 DUP2 DUP5 PUSH2 0x492 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x516 DUP2 DUP6 PUSH2 0x492 JUMP JUMPDEST SWAP1 POP PUSH2 0x525 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x4CB JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x541 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x4CB JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x551 PUSH2 0x562 JUMP JUMPDEST SWAP1 POP PUSH2 0x55D DUP3 DUP3 PUSH2 0x63A 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 0x587 JUMPI PUSH2 0x586 PUSH2 0x69A JUMP JUMPDEST JUMPDEST PUSH2 0x590 DUP3 PUSH2 0x6DD 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 PUSH1 0xFF DUP3 AND 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 0x5F3 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x5D8 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x602 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 0x620 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x634 JUMPI PUSH2 0x633 PUSH2 0x66B JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x643 DUP3 PUSH2 0x6DD JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x662 JUMPI PUSH2 0x661 PUSH2 0x69A JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x6F7 DUP2 PUSH2 0x5B9 JUMP JUMPDEST DUP2 EQ PUSH2 0x702 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH1 0xF1 PUSH7 0x64611E635F24C PUSH12 0x87789EB2F2E4BEB89863035F 0xA6 0x4D DUP1 0xC 0xE1 0x2F DUP5 0xD2 0xBE PUSH5 0x736F6C6343 STOP ADDMOD SMOD STOP CALLER ",
"sourceMap": "26:867:0:-:0;;;105:108;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;178:4;166:9;:16;;;;;;;;;;;;:::i;:::-;;203:3;192:8;;:14;;;;;;;;;;;;;;;;;;105:108;;26:867;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:421:1:-;96:5;121:66;137:49;179:6;137:49;:::i;:::-;121:66;:::i;:::-;112:75;;210:6;203:5;196:21;248:4;241:5;237:16;286:3;277:6;272:3;268:16;265:25;262:112;;;293:79;;:::i;:::-;262:112;383:39;415:6;410:3;405;383:39;:::i;:::-;102:326;7:421;;;;;:::o;448:355::-;515:5;564:3;557:4;549:6;545:17;541:27;531:122;;572:79;;:::i;:::-;531:122;682:6;676:13;707:90;793:3;785:6;778:4;770:6;766:17;707:90;:::i;:::-;698:99;;521:282;448:355;;;;:::o;809:139::-;864:5;895:6;889:13;880:22;;911:31;936:5;911:31;:::i;:::-;809:139;;;;:::o;954:676::-;1041:6;1049;1098:2;1086:9;1077:7;1073:23;1069:32;1066:119;;;1104:79;;:::i;:::-;1066:119;1245:1;1234:9;1230:17;1224:24;1275:18;1267:6;1264:30;1261:117;;;1297:79;;:::i;:::-;1261:117;1402:74;1468:7;1459:6;1448:9;1444:22;1402:74;:::i;:::-;1392:84;;1195:291;1525:2;1551:62;1605:7;1596:6;1585:9;1581:22;1551:62;:::i;:::-;1541:72;;1496:127;954:676;;;;;:::o;1636:129::-;1670:6;1697:20;;:::i;:::-;1687:30;;1726:33;1754:4;1746:6;1726:33;:::i;:::-;1636:129;;;:::o;1771:75::-;1804:6;1837:2;1831:9;1821:19;;1771:75;:::o;1852:308::-;1914:4;2004:18;1996:6;1993:30;1990:56;;;2026:18;;:::i;:::-;1990:56;2064:29;2086:6;2064:29;:::i;:::-;2056:37;;2148:4;2142;2138:15;2130:23;;1852:308;;;:::o;2166:86::-;2201:7;2241:4;2234:5;2230:16;2219:27;;2166:86;;;:::o;2258:307::-;2326:1;2336:113;2350:6;2347:1;2344:13;2336:113;;;2435:1;2430:3;2426:11;2420:18;2416:1;2411:3;2407:11;2400:39;2372:2;2369:1;2365:10;2360:15;;2336:113;;;2467:6;2464:1;2461:13;2458:101;;;2547:1;2538:6;2533:3;2529:16;2522:27;2458:101;2307:258;2258:307;;;:::o;2571:320::-;2615:6;2652:1;2646:4;2642:12;2632:22;;2699:1;2693:4;2689:12;2720:18;2710:81;;2776:4;2768:6;2764:17;2754:27;;2710:81;2838:2;2830:6;2827:14;2807:18;2804:38;2801:84;;;2857:18;;:::i;:::-;2801:84;2622:269;2571:320;;;:::o;2897:281::-;2980:27;3002:4;2980:27;:::i;:::-;2972:6;2968:40;3110:6;3098:10;3095:22;3074:18;3062:10;3059:34;3056:62;3053:88;;;3121:18;;:::i;:::-;3053:88;3161:10;3157:2;3150:22;2940:238;2897:281;;:::o;3184:180::-;3232:77;3229:1;3222:88;3329:4;3326:1;3319:15;3353:4;3350:1;3343:15;3370:180;3418:77;3415:1;3408:88;3515:4;3512:1;3505:15;3539:4;3536:1;3529:15;3556:117;3665:1;3662;3655:12;3679:117;3788:1;3785;3778:12;3802:117;3911:1;3908;3901:12;3925:117;4034:1;4031;4024:12;4048:102;4089:6;4140:2;4136:7;4131:2;4124:5;4120:14;4116:28;4106:38;;4048:102;;;:::o;4156:118::-;4227:22;4243:5;4227:22;:::i;:::-;4220:5;4217:33;4207:61;;4264:1;4261;4254:12;4207:61;4156:118;:::o;26:867:0:-;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@getOwnerAge_80": {
"entryPoint": 473,
"id": 80,
"parameterSlots": 0,
"returnSlots": 1
},
"@getOwnerInfo_57": {
"entryPoint": 550,
"id": 57,
"parameterSlots": 0,
"returnSlots": 2
},
"@getOwnerName_70": {
"entryPoint": 200,
"id": 70,
"parameterSlots": 0,
"returnSlots": 1
},
"@setOwnerInfo_37": {
"entryPoint": 496,
"id": 37,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_decode_available_length_t_string_memory_ptr": {
"entryPoint": 879,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_t_string_memory_ptr": {
"entryPoint": 945,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint8": {
"entryPoint": 991,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint8_fromMemory": {
"entryPoint": 1012,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_string_memory_ptrt_uint8": {
"entryPoint": 1033,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_uint8_fromMemory": {
"entryPoint": 1125,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 1170,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_uint8_to_t_uint8_fromStack": {
"entryPoint": 1227,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 1242,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_string_memory_ptr_t_uint8__to_t_string_memory_ptr_t_uint8__fromStack_reversed": {
"entryPoint": 1276,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed": {
"entryPoint": 1324,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_memory": {
"entryPoint": 1351,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": 1378,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_allocation_size_t_string_memory_ptr": {
"entryPoint": 1388,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 1437,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 1448,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_uint8": {
"entryPoint": 1465,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_calldata_to_memory": {
"entryPoint": 1478,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"copy_memory_to_memory": {
"entryPoint": 1493,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 1544,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"finalize_allocation": {
"entryPoint": 1594,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 1643,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 1690,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": {
"entryPoint": 1737,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": {
"entryPoint": 1742,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": 1747,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 1752,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 1757,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"validator_revert_t_uint8": {
"entryPoint": 1774,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:6609:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "91:328:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "101:75:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "168:6:1"
}
],
"functionName": {
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "126:41:1"
},
"nodeType": "YulFunctionCall",
"src": "126:49:1"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "110:15:1"
},
"nodeType": "YulFunctionCall",
"src": "110:66:1"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "101:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "192:5:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "199:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "185:6:1"
},
"nodeType": "YulFunctionCall",
"src": "185:21:1"
},
"nodeType": "YulExpressionStatement",
"src": "185:21:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "215:27:1",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "230:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "237:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "226:3:1"
},
"nodeType": "YulFunctionCall",
"src": "226:16:1"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "219:3:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "280:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulIdentifier",
"src": "282:77:1"
},
"nodeType": "YulFunctionCall",
"src": "282:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "282:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "261:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "266:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "257:3:1"
},
"nodeType": "YulFunctionCall",
"src": "257:16:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "275:3:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "254:2:1"
},
"nodeType": "YulFunctionCall",
"src": "254:25:1"
},
"nodeType": "YulIf",
"src": "251:112:1"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "396:3:1"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "401:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "406:6:1"
}
],
"functionName": {
"name": "copy_calldata_to_memory",
"nodeType": "YulIdentifier",
"src": "372:23:1"
},
"nodeType": "YulFunctionCall",
"src": "372:41:1"
},
"nodeType": "YulExpressionStatement",
"src": "372:41:1"
}
]
},
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "64:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "69:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "77:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "85:5:1",
"type": ""
}
],
"src": "7:412:
View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment