Skip to content

Instantly share code, notes, and snippets.

@ajitsen
Created November 5, 2022 17:38
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 ajitsen/e4072d1a4db4a8d4eac59a968c5facf7 to your computer and use it in GitHub Desktop.
Save ajitsen/e4072d1a4db4a8d4eac59a968c5facf7 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.6.12+commit.27d51765.js&optimize=false&runs=200&gist=
This gist exceeds the recommended number of files (~10). To access all files, please clone this gist.
REMIX DEFAULT WORKSPACE
Remix default workspace is present when:
i. Remix loads for the very first time
ii. A new workspace is created with 'Default' template
iii. There are no files existing in the File Explorer
This workspace contains 3 directories:
1. 'contracts': Holds three contracts with increasing levels of complexity.
2. 'scripts': Contains four typescript files to deploy a contract. It is explained below.
3. 'tests': Contains one Solidity test file for 'Ballot' contract & one JS test file for 'Storage' contract.
SCRIPTS
The 'scripts' folder has four typescript files which help to deploy the 'Storage' contract using 'web3.js' and 'ethers.js' libraries.
For the deployment of any other contract, just update the contract's name from 'Storage' to the desired contract and provide constructor arguments accordingly
in the file `deploy_with_ethers.ts` or `deploy_with_web3.ts`
In the 'tests' folder there is a script containing Mocha-Chai unit tests for 'Storage' contract.
To run a script, right click on file name in the file explorer and click 'Run'. Remember, Solidity file must already be compiled.
Output from script will appear in remix terminal.
Please note, require/import is supported in a limited manner for Remix supported modules.
For now, modules supported by Remix are ethers, web3, swarmgw, chai, multihashes, remix and hardhat only for hardhat.ethers object/plugin.
For unsupported modules, an error like this will be thrown: '<module_name> module require is not supported by Remix IDE' will be shown.
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^ 0.6.12;
contract moneySample{
address owner=0x78731D3Ca6b7E34aC0F824c42a7cC18A495cabaB;
function getMoney() public payable {}
//fallback() external payable{}
function checkContractBalance() public view returns(uint){
return address(this).balance;
}
function transferToAddress() public {
payable(owner).transfer(address(this).balance);
}
function checkAddressBalance() public view returns(uint){
return owner.balance;
}
}
// getMoney -> checkContractBalance -> transfetToAddress -> checkAddressBalance
// 5 eth transfered from c4 -> 0xab
// SPDX-License-Identifier: GPL-3.0
contract parent {
string name;
function setName(string memory _name) public {
name=_name;
}
}
contract child is parent {
function getName() public view returns(string memory){
return name;
}
}
pragma solidity ^0.8.0;
contract structSample{
address public Simplilearn;
constructor() public{
Simplilearn = msg.sender;
}
modifier onlySimplilearn(){
require(msg.sender == Simplilearn);
_;
}
struct learner{
string name;
uint8 age;
}
//mapping (key => value) mapping name
//1 => ("Alice", 38)
//2 => ("Tom", 39)
//3 => ("Jerry", 40)
mapping (uint8 => learner) learners;
function setLearnerDetails (uint8 _key, string memory _name, uint8 _age) public onlySimplilearn {
//learners[1].name="Alice"
//learners[1].age=38
learners[_key].name=_name;
learners[_key].age=_age;
}
function getLearnerDetails (uint8 _key) public view returns (string memory, uint8) {
return (learners[_key].name, learners[_key].age);
}
}
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.6.12;
contract overloadingSample{
string name;
uint8 age;
function setDetails(string memory _name, uint8 _age) public {
name=_name;
age=_age;
}
function setDetails(string memory _name) public {
name=_name;
}
function setDetails(uint8 _age) public {
age=_age;
}
}
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.6.12;
contract errorHandlingSample{
uint balance =100;
function revertDeductbal(uint _amount) public returns(uint){
if (_amount < 2) {
revert ("REVERT: Input amount is not valid");
}
balance = balance - _amount;
return balance;
}
function requireDeductBalance(uint _amount) public returns(uint){
require(_amount >1, "REQUIRE: Input amount is not valid");
balance = balance - _amount;
return balance;
}
function assertDeductbal(uint _amount) public returns (uint){
assert(_amount > 1);
balance = balance - _amount;
return balance;
}
}
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.7.0 <0.9.0;
/**
* @title Storage
* @dev Store & retrieve value in a variable
* @custom:dev-run-script ./scripts/deploy_with_ethers.ts
*/
contract Storage {
uint256 number;
/**
* @dev Store value in variable
* @param num value to store
*/
function store(uint256 num) public {
number = num;
}
/**
* @dev Return value
* @return value of 'number'
*/
function retrieve() public view returns (uint256){
return number;
}
}
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.7.0 <0.9.0;
import "hardhat/console.sol";
/**
* @title Owner
* @dev Set & change owner
*/
contract Owner {
address private owner;
// event for EVM logging
event OwnerSet(address indexed oldOwner, address indexed newOwner);
// modifier to check if caller is owner
modifier isOwner() {
// If the first argument of 'require' evaluates to 'false', execution terminates and all
// changes to the state and to Ether balances are reverted.
// This used to consume all gas in old EVM versions, but not anymore.
// It is often a good idea to use 'require' to check if functions are called correctly.
// As a second argument, you can also provide an explanation about what went wrong.
require(msg.sender == owner, "Caller is not owner");
_;
}
/**
* @dev Set contract deployer as owner
*/
constructor() {
console.log("Owner contract deployed by:", msg.sender);
owner = msg.sender; // 'msg.sender' is sender of current call, contract deployer for a constructor
emit OwnerSet(address(0), owner);
}
/**
* @dev Change owner
* @param newOwner address of new owner
*/
function changeOwner(address newOwner) public isOwner {
emit OwnerSet(owner, newOwner);
owner = newOwner;
}
/**
* @dev Return owner address
* @return address of owner
*/
function getOwner() external view returns (address) {
return owner;
}
}
// 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;
}
}
// SPDX-License-Identifier: MIT
// 1. Solidity Version range of versions, single version ^0.8.7
pragma solidity >=0.7.0 <0.9.0;
// 2. Name of Contract
contract MyContract {
// 3. Variable
uint public age;
// 4. Set Age
function setAge(uint pAge) public {
age = pAge;
}
function getAge() public view returns (uint) {
return age;
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;
contract variables {
// 0..255 -> 0.001 KB
uint8 age = 42;
// uint8 height = 172;
// int64 balance;
// uint amount;
// // if we know length of Characters
// bytes4 name = "Ajit";
// // Don't know the length
// string country = "India";
// // Boolean
// bool isStudent = false;
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.12;
contract variables1 {
uint8 age;
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;
contract array {
uint8[42] ages;
uint64[] phone;
function setAge(uint8 _index, uint8 _value) public {
ages[_index] = _value;
}
function getAge(uint8 _index) public view returns(uint8) {
return ages[_index];
}
function pushPhone(uint64 _phonenumber) public {
phone.push(_phonenumber);
}
function getPhone(uint8 _index) public view returns(uint64) {
if (_index < phone.length) {
return phone[_index];
}
return 0;
}
}
// Contract in VM London - 0xd9145CCE52D386f254917e481eB44e9943F39138
// Contract with dynamic array - 0x358AA13c52544ECCEF6B0ADD0f801012ADAD5eE3
// Contract 0x0fC5025C764cE34df352757e82f7B5c4Df39A836
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;
contract EnumSample {
enum Gender { male, female, notprovided}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;
contract StructSample {
struct learner {
string name;
uint8 age;
}
// mapping (keyType => dataType) mappingName
mapping (uint8 => learner) learnerMap;
event newLearner(string name);
function setLearner(uint8 _index, string memory _name, uint8 _age) public {
learnerMap[_index].name = _name;
learnerMap[_index].age = _age;
emit newLearner(_name);
}
function getLearner(uint8 _index) public view returns(string memory, uint8) {
return (learnerMap[_index].name, learnerMap[_index].age);
}
}
// 0xcD6a42782d230D7c13A74ddec5dD140e55499Df9
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"goerli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "608060405234801561001057600080fd5b506103e8806100206000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c8063107a2c661461005157806347e12f8c1461006d578063729582201461009d578063cb520b8c146100b9575b600080fd5b61006b6004803603810190610066919061025c565b6100e9565b005b610087600480360381019061008291906102c2565b610142565b60405161009491906102fe565b60405180910390f35b6100b760048036038101906100b29190610319565b610177565b005b6100d360048036038101906100ce91906102c2565b6101b3565b6040516100e09190610368565b60405180910390f35b60028190806001815401808255809150506001900390600052602060002090600491828204019190066008029091909190916101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555050565b6000808260ff16602a811061015a57610159610383565b5b602091828204019190069054906101000a900460ff169050919050565b8060008360ff16602a811061018f5761018e610383565b5b602091828204019190066101000a81548160ff021916908360ff1602179055505050565b60006002805490508260ff16101561020d5760028260ff16815481106101dc576101db610383565b5b90600052602060002090600491828204019190066008029054906101000a900467ffffffffffffffff169050610212565b600090505b919050565b600080fd5b600067ffffffffffffffff82169050919050565b6102398161021c565b811461024457600080fd5b50565b60008135905061025681610230565b92915050565b60006020828403121561027257610271610217565b5b600061028084828501610247565b91505092915050565b600060ff82169050919050565b61029f81610289565b81146102aa57600080fd5b50565b6000813590506102bc81610296565b92915050565b6000602082840312156102d8576102d7610217565b5b60006102e6848285016102ad565b91505092915050565b6102f881610289565b82525050565b600060208201905061031360008301846102ef565b92915050565b600080604083850312156103305761032f610217565b5b600061033e858286016102ad565b925050602061034f858286016102ad565b9150509250929050565b6103628161021c565b82525050565b600060208201905061037d6000830184610359565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212204631f3d9adf731c28cc0fbffd13638902a15d4631092c5bc02a1e2d85f68256864736f6c63430008110033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x3E8 DUP1 PUSH2 0x20 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x4C JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x107A2C66 EQ PUSH2 0x51 JUMPI DUP1 PUSH4 0x47E12F8C EQ PUSH2 0x6D JUMPI DUP1 PUSH4 0x72958220 EQ PUSH2 0x9D JUMPI DUP1 PUSH4 0xCB520B8C EQ PUSH2 0xB9 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x6B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x66 SWAP2 SWAP1 PUSH2 0x25C JUMP JUMPDEST PUSH2 0xE9 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x87 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x82 SWAP2 SWAP1 PUSH2 0x2C2 JUMP JUMPDEST PUSH2 0x142 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x94 SWAP2 SWAP1 PUSH2 0x2FE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xB7 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xB2 SWAP2 SWAP1 PUSH2 0x319 JUMP JUMPDEST PUSH2 0x177 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xD3 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xCE SWAP2 SWAP1 PUSH2 0x2C2 JUMP JUMPDEST PUSH2 0x1B3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xE0 SWAP2 SWAP1 PUSH2 0x368 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x2 DUP2 SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x4 SWAP2 DUP3 DUP3 DIV ADD SWAP2 SWAP1 MOD PUSH1 0x8 MUL SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH8 0xFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH8 0xFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH1 0xFF AND PUSH1 0x2A DUP2 LT PUSH2 0x15A JUMPI PUSH2 0x159 PUSH2 0x383 JUMP JUMPDEST JUMPDEST PUSH1 0x20 SWAP2 DUP3 DUP3 DIV ADD SWAP2 SWAP1 MOD SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP1 PUSH1 0x0 DUP4 PUSH1 0xFF AND PUSH1 0x2A DUP2 LT PUSH2 0x18F JUMPI PUSH2 0x18E PUSH2 0x383 JUMP JUMPDEST JUMPDEST PUSH1 0x20 SWAP2 DUP3 DUP3 DIV ADD SWAP2 SWAP1 MOD 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 0x0 PUSH1 0x2 DUP1 SLOAD SWAP1 POP DUP3 PUSH1 0xFF AND LT ISZERO PUSH2 0x20D JUMPI PUSH1 0x2 DUP3 PUSH1 0xFF AND DUP2 SLOAD DUP2 LT PUSH2 0x1DC JUMPI PUSH2 0x1DB PUSH2 0x383 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x4 SWAP2 DUP3 DUP3 DIV ADD SWAP2 SWAP1 MOD PUSH1 0x8 MUL SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH8 0xFFFFFFFFFFFFFFFF AND SWAP1 POP PUSH2 0x212 JUMP JUMPDEST PUSH1 0x0 SWAP1 POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x239 DUP2 PUSH2 0x21C JUMP JUMPDEST DUP2 EQ PUSH2 0x244 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x256 DUP2 PUSH2 0x230 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x272 JUMPI PUSH2 0x271 PUSH2 0x217 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x280 DUP5 DUP3 DUP6 ADD PUSH2 0x247 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x29F DUP2 PUSH2 0x289 JUMP JUMPDEST DUP2 EQ PUSH2 0x2AA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2BC DUP2 PUSH2 0x296 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2D8 JUMPI PUSH2 0x2D7 PUSH2 0x217 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2E6 DUP5 DUP3 DUP6 ADD PUSH2 0x2AD JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x2F8 DUP2 PUSH2 0x289 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x313 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2EF JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x330 JUMPI PUSH2 0x32F PUSH2 0x217 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x33E DUP6 DUP3 DUP7 ADD PUSH2 0x2AD JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x34F DUP6 DUP3 DUP7 ADD PUSH2 0x2AD JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH2 0x362 DUP2 PUSH2 0x21C JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x37D PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x359 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 CHAINID BALANCE RETURN 0xD9 0xAD 0xF7 BALANCE 0xC2 DUP13 0xC0 0xFB SELFDESTRUCT 0xD1 CALLDATASIZE CODESIZE SWAP1 0x2A ISZERO 0xD4 PUSH4 0x1092C5BC MUL LOG1 0xE2 0xD8 0x5F PUSH9 0x256864736F6C634300 ADDMOD GT STOP CALLER ",
"sourceMap": "58:523:0:-:0;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@getAge_34": {
"entryPoint": 322,
"id": 34,
"parameterSlots": 1,
"returnSlots": 1
},
"@getPhone_66": {
"entryPoint": 435,
"id": 66,
"parameterSlots": 1,
"returnSlots": 1
},
"@pushPhone_46": {
"entryPoint": 233,
"id": 46,
"parameterSlots": 1,
"returnSlots": 0
},
"@setAge_22": {
"entryPoint": 375,
"id": 22,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_decode_t_uint64": {
"entryPoint": 583,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint8": {
"entryPoint": 685,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint64": {
"entryPoint": 604,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint8": {
"entryPoint": 706,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint8t_uint8": {
"entryPoint": 793,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_encode_t_uint64_to_t_uint64_fromStack": {
"entryPoint": 857,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_uint8_to_t_uint8_fromStack": {
"entryPoint": 751,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed": {
"entryPoint": 872,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed": {
"entryPoint": 766,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"cleanup_t_uint64": {
"entryPoint": 540,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint8": {
"entryPoint": 649,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x32": {
"entryPoint": 899,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 535,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"validator_revert_t_uint64": {
"entryPoint": 560,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint8": {
"entryPoint": 662,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:3069: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": "378:57:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "388:41:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "403:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "410:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "399:3:1"
},
"nodeType": "YulFunctionCall",
"src": "399:30:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "388:7:1"
}
]
}
]
},
"name": "cleanup_t_uint64",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "360:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "370:7:1",
"type": ""
}
],
"src": "334:101:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "483:78:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "539:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "548:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "551:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "541:6:1"
},
"nodeType": "YulFunctionCall",
"src": "541:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "541:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "506:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "530:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint64",
"nodeType": "YulIdentifier",
"src": "513:16:1"
},
"nodeType": "YulFunctionCall",
"src": "513:23:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "503:2:1"
},
"nodeType": "YulFunctionCall",
"src": "503:34:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "496:6:1"
},
"nodeType": "YulFunctionCall",
"src": "496:42:1"
},
"nodeType": "YulIf",
"src": "493:62:1"
}
]
},
"name": "validator_revert_t_uint64",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "476:5:1",
"type": ""
}
],
"src": "441:120:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "618:86:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "628:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "650:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "637:12:1"
},
"nodeType": "YulFunctionCall",
"src": "637:20:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "628:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "692:5:1"
}
],
"functionName": {
"name": "validator_revert_t_uint64",
"nodeType": "YulIdentifier",
"src": "666:25:1"
},
"nodeType": "YulFunctionCall",
"src": "666:32:1"
},
"nodeType": "YulExpressionStatement",
"src": "666:32:1"
}
]
},
"name": "abi_decode_t_uint64",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "596:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "604:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "612:5:1",
"type": ""
}
],
"src": "567:137:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "775:262:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "821:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "823:77:1"
},
"nodeType": "YulFunctionCall",
"src": "823:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "823:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "796:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "805:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "792:3:1"
},
"nodeType": "YulFunctionCall",
"src": "792:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "817:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "788:3:1"
},
"nodeType": "YulFunctionCall",
"src": "788:32:1"
},
"nodeType": "YulIf",
"src": "785:119:1"
},
{
"nodeType": "YulBlock",
"src": "914:116:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "929:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "943:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "933:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "958:62:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "992:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1003:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "988:3:1"
},
"nodeType": "YulFunctionCall",
"src": "988:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1012:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint64",
"nodeType": "YulIdentifier",
"src": "968:19:1"
},
"nodeType": "YulFunctionCall",
"src": "968:52:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "958:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint64",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "745:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "756:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "768:6:1",
"type": ""
}
],
"src": "710:327:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1086:43:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1096:27:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1111:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1118:4:1",
"type": "",
"value": "0xff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1107:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1107:16:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1096:7:1"
}
]
}
]
},
"name": "cleanup_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1068:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1078:7:1",
"type": ""
}
],
"src": "1043:86:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1176:77:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1231:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1240:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1243:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1233:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1233:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "1233:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1199:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1222:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint8",
"nodeType": "YulIdentifier",
"src": "1206:15:1"
},
"nodeType": "YulFunctionCall",
"src": "1206:22:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "1196:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1196:33:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1189:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1189:41:1"
},
"nodeType": "YulIf",
"src": "1186:61:1"
}
]
},
"name": "validator_revert_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1169:5:1",
"type": ""
}
],
"src": "1135:118:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1309:85:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1319:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1341:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1328:12:1"
},
"nodeType": "YulFunctionCall",
"src": "1328:20:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1319:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1382:5:1"
}
],
"functionName": {
"name": "validator_revert_t_uint8",
"nodeType": "YulIdentifier",
"src": "1357:24:1"
},
"nodeType": "YulFunctionCall",
"src": "1357:31:1"
},
"nodeType": "YulExpressionStatement",
"src": "1357:31:1"
}
]
},
"name": "abi_decode_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1287:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1295:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1303:5:1",
"type": ""
}
],
"src": "1259:135:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1464:261:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1510:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "1512:77:1"
},
"nodeType": "YulFunctionCall",
"src": "1512:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "1512:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1485:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1494:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1481:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1481:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1506:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1477:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1477:32:1"
},
"nodeType": "YulIf",
"src": "1474:119:1"
},
{
"nodeType": "YulBlock",
"src": "1603:115:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1618:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1632:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1622:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1647:61:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1680:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1691:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1676:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1676:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1700:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint8",
"nodeType": "YulIdentifier",
"src": "1657:18:1"
},
"nodeType": "YulFunctionCall",
"src": "1657:51:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1647:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1434:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1445:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1457:6:1",
"type": ""
}
],
"src": "1400:325:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1792:51:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1809:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1830:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint8",
"nodeType": "YulIdentifier",
"src": "1814:15:1"
},
"nodeType": "YulFunctionCall",
"src": "1814:22:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1802:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1802:35:1"
},
"nodeType": "YulExpressionStatement",
"src": "1802:35:1"
}
]
},
"name": "abi_encode_t_uint8_to_t_uint8_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1780:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1787:3:1",
"type": ""
}
],
"src": "1731:112:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1943:120:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1953:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1965:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1976:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1961:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1961:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1953:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2029:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2042:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2053:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2038:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2038:17:1"
}
],
"functionName": {
"name": "abi_encode_t_uint8_to_t_uint8_fromStack",
"nodeType": "YulIdentifier",
"src": "1989:39:1"
},
"nodeType": "YulFunctionCall",
"src": "1989:67:1"
},
"nodeType": "YulExpressionStatement",
"src": "1989:67:1"
}
]
},
"name": "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1915:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1927:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1938:4:1",
"type": ""
}
],
"src": "1849:214:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2148:387:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2194:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "2196:77:1"
},
"nodeType": "YulFunctionCall",
"src": "2196:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "2196:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2169:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2178:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2165:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2165:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2190:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2161:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2161:32:1"
},
"nodeType": "YulIf",
"src": "2158:119:1"
},
{
"nodeType": "YulBlock",
"src": "2287:115:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2302:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2316:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2306:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2331:61:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2364:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2375:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2360:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2360:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2384:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint8",
"nodeType": "YulIdentifier",
"src": "2341:18:1"
},
"nodeType": "YulFunctionCall",
"src": "2341:51:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2331:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "2412:116:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2427:16:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2441:2:1",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2431:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2457:61:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2490:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2501:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2486:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2486:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2510:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint8",
"nodeType": "YulIdentifier",
"src": "2467:18:1"
},
"nodeType": "YulFunctionCall",
"src": "2467:51:1"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2457:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint8t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2110:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2121:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2133:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2141:6:1",
"type": ""
}
],
"src": "2069:466:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2604:52:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2621:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2643:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint64",
"nodeType": "YulIdentifier",
"src": "2626:16:1"
},
"nodeType": "YulFunctionCall",
"src": "2626:23:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2614:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2614:36:1"
},
"nodeType": "YulExpressionStatement",
"src": "2614:36:1"
}
]
},
"name": "abi_encode_t_uint64_to_t_uint64_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2592:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2599:3:1",
"type": ""
}
],
"src": "2541:115:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2758:122:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2768:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2780:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2791:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2776:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2776:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2768:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2846:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2859:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2870:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2855:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2855:17:1"
}
],
"functionName": {
"name": "abi_encode_t_uint64_to_t_uint64_fromStack",
"nodeType": "YulIdentifier",
"src": "2804:41:1"
},
"nodeType": "YulFunctionCall",
"src": "2804:69:1"
},
"nodeType": "YulExpressionStatement",
"src": "2804:69:1"
}
]
},
"name": "abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2730:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2742:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "2753:4:1",
"type": ""
}
],
"src": "2662:218:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2914:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2931:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2934:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2924:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2924:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "2924:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3028:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3031:4:1",
"type": "",
"value": "0x32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3021:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3021:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "3021:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3052:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3055:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3045:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3045:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "3045:15:1"
}
]
},
"name": "panic_error_0x32",
"nodeType": "YulFunctionDefinition",
"src": "2886:180: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_uint64(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffff)\n }\n\n function validator_revert_t_uint64(value) {\n if iszero(eq(value, cleanup_t_uint64(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_uint64(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint64(value)\n }\n\n function abi_decode_tuple_t_uint64(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_uint64(add(headStart, offset), dataEnd)\n }\n\n }\n\n function cleanup_t_uint8(value) -> cleaned {\n cleaned := and(value, 0xff)\n }\n\n function validator_revert_t_uint8(value) {\n if iszero(eq(value, cleanup_t_uint8(value))) { revert(0, 0) }\n }\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_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_uint8t_uint8(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_uint8(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint8(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_encode_t_uint64_to_t_uint64_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint64(value))\n }\n\n function abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint64_to_t_uint64_fromStack(value0, add(headStart, 0))\n\n }\n\n function panic_error_0x32() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x32)\n revert(0, 0x24)\n }\n\n}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b506004361061004c5760003560e01c8063107a2c661461005157806347e12f8c1461006d578063729582201461009d578063cb520b8c146100b9575b600080fd5b61006b6004803603810190610066919061025c565b6100e9565b005b610087600480360381019061008291906102c2565b610142565b60405161009491906102fe565b60405180910390f35b6100b760048036038101906100b29190610319565b610177565b005b6100d360048036038101906100ce91906102c2565b6101b3565b6040516100e09190610368565b60405180910390f35b60028190806001815401808255809150506001900390600052602060002090600491828204019190066008029091909190916101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555050565b6000808260ff16602a811061015a57610159610383565b5b602091828204019190069054906101000a900460ff169050919050565b8060008360ff16602a811061018f5761018e610383565b5b602091828204019190066101000a81548160ff021916908360ff1602179055505050565b60006002805490508260ff16101561020d5760028260ff16815481106101dc576101db610383565b5b90600052602060002090600491828204019190066008029054906101000a900467ffffffffffffffff169050610212565b600090505b919050565b600080fd5b600067ffffffffffffffff82169050919050565b6102398161021c565b811461024457600080fd5b50565b60008135905061025681610230565b92915050565b60006020828403121561027257610271610217565b5b600061028084828501610247565b91505092915050565b600060ff82169050919050565b61029f81610289565b81146102aa57600080fd5b50565b6000813590506102bc81610296565b92915050565b6000602082840312156102d8576102d7610217565b5b60006102e6848285016102ad565b91505092915050565b6102f881610289565b82525050565b600060208201905061031360008301846102ef565b92915050565b600080604083850312156103305761032f610217565b5b600061033e858286016102ad565b925050602061034f858286016102ad565b9150509250929050565b6103628161021c565b82525050565b600060208201905061037d6000830184610359565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212204631f3d9adf731c28cc0fbffd13638902a15d4631092c5bc02a1e2d85f68256864736f6c63430008110033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x4C JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x107A2C66 EQ PUSH2 0x51 JUMPI DUP1 PUSH4 0x47E12F8C EQ PUSH2 0x6D JUMPI DUP1 PUSH4 0x72958220 EQ PUSH2 0x9D JUMPI DUP1 PUSH4 0xCB520B8C EQ PUSH2 0xB9 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x6B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x66 SWAP2 SWAP1 PUSH2 0x25C JUMP JUMPDEST PUSH2 0xE9 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x87 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x82 SWAP2 SWAP1 PUSH2 0x2C2 JUMP JUMPDEST PUSH2 0x142 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x94 SWAP2 SWAP1 PUSH2 0x2FE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xB7 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xB2 SWAP2 SWAP1 PUSH2 0x319 JUMP JUMPDEST PUSH2 0x177 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xD3 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xCE SWAP2 SWAP1 PUSH2 0x2C2 JUMP JUMPDEST PUSH2 0x1B3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xE0 SWAP2 SWAP1 PUSH2 0x368 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x2 DUP2 SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x4 SWAP2 DUP3 DUP3 DIV ADD SWAP2 SWAP1 MOD PUSH1 0x8 MUL SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH8 0xFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH8 0xFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH1 0xFF AND PUSH1 0x2A DUP2 LT PUSH2 0x15A JUMPI PUSH2 0x159 PUSH2 0x383 JUMP JUMPDEST JUMPDEST PUSH1 0x20 SWAP2 DUP3 DUP3 DIV ADD SWAP2 SWAP1 MOD SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP1 PUSH1 0x0 DUP4 PUSH1 0xFF AND PUSH1 0x2A DUP2 LT PUSH2 0x18F JUMPI PUSH2 0x18E PUSH2 0x383 JUMP JUMPDEST JUMPDEST PUSH1 0x20 SWAP2 DUP3 DUP3 DIV ADD SWAP2 SWAP1 MOD 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 0x0 PUSH1 0x2 DUP1 SLOAD SWAP1 POP DUP3 PUSH1 0xFF AND LT ISZERO PUSH2 0x20D JUMPI PUSH1 0x2 DUP3 PUSH1 0xFF AND DUP2 SLOAD DUP2 LT PUSH2 0x1DC JUMPI PUSH2 0x1DB PUSH2 0x383 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x4 SWAP2 DUP3 DUP3 DIV ADD SWAP2 SWAP1 MOD PUSH1 0x8 MUL SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH8 0xFFFFFFFFFFFFFFFF AND SWAP1 POP PUSH2 0x212 JUMP JUMPDEST PUSH1 0x0 SWAP1 POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x239 DUP2 PUSH2 0x21C JUMP JUMPDEST DUP2 EQ PUSH2 0x244 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x256 DUP2 PUSH2 0x230 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x272 JUMPI PUSH2 0x271 PUSH2 0x217 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x280 DUP5 DUP3 DUP6 ADD PUSH2 0x247 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x29F DUP2 PUSH2 0x289 JUMP JUMPDEST DUP2 EQ PUSH2 0x2AA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2BC DUP2 PUSH2 0x296 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2D8 JUMPI PUSH2 0x2D7 PUSH2 0x217 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2E6 DUP5 DUP3 DUP6 ADD PUSH2 0x2AD JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x2F8 DUP2 PUSH2 0x289 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x313 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2EF JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x330 JUMPI PUSH2 0x32F PUSH2 0x217 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x33E DUP6 DUP3 DUP7 ADD PUSH2 0x2AD JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x34F DUP6 DUP3 DUP7 ADD PUSH2 0x2AD JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH2 0x362 DUP2 PUSH2 0x21C JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x37D PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x359 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 CHAINID BALANCE RETURN 0xD9 0xAD 0xF7 BALANCE 0xC2 DUP13 0xC0 0xFB SELFDESTRUCT 0xD1 CALLDATASIZE CODESIZE SWAP1 0x2A ISZERO 0xD4 PUSH4 0x1092C5BC MUL LOG1 0xE2 0xD8 0x5F PUSH9 0x256864736F6C634300 ADDMOD GT STOP CALLER ",
"sourceMap": "58:523:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;318:88;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;219:93;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;120:89;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;412:166;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;318:88;375:5;386:12;375:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;318:88;:::o;219:93::-;269:5;293:4;298:6;293:12;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;286:19;;219:93;;;:::o;120:89::-;196:6;181:4;186:6;181:12;;;;;;;;;:::i;:::-;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;120:89;;:::o;412:166::-;464:6;495:5;:12;;;;486:6;:21;;;482:72;;;530:5;536:6;530:13;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;523:20;;;;482:72;570:1;563:8;;412:166;;;;:::o;88:117:1:-;197:1;194;187:12;334:101;370:7;410:18;403:5;399:30;388:41;;334:101;;;:::o;441:120::-;513:23;530:5;513:23;:::i;:::-;506:5;503:34;493:62;;551:1;548;541:12;493:62;441:120;:::o;567:137::-;612:5;650:6;637:20;628:29;;666:32;692:5;666:32;:::i;:::-;567:137;;;;:::o;710:327::-;768:6;817:2;805:9;796:7;792:23;788:32;785:119;;;823:79;;:::i;:::-;785:119;943:1;968:52;1012:7;1003:6;992:9;988:22;968:52;:::i;:::-;958:62;;914:116;710:327;;;;:::o;1043:86::-;1078:7;1118:4;1111:5;1107:16;1096:27;;1043:86;;;:::o;1135:118::-;1206:22;1222:5;1206:22;:::i;:::-;1199:5;1196:33;1186:61;;1243:1;1240;1233:12;1186:61;1135:118;:::o;1259:135::-;1303:5;1341:6;1328:20;1319:29;;1357:31;1382:5;1357:31;:::i;:::-;1259:135;;;;:::o;1400:325::-;1457:6;1506:2;1494:9;1485:7;1481:23;1477:32;1474:119;;;1512:79;;:::i;:::-;1474:119;1632:1;1657:51;1700:7;1691:6;1680:9;1676:22;1657:51;:::i;:::-;1647:61;;1603:115;1400:325;;;;:::o;1731:112::-;1814:22;1830:5;1814:22;:::i;:::-;1809:3;1802:35;1731:112;;:::o;1849:214::-;1938:4;1976:2;1965:9;1961:18;1953:26;;1989:67;2053:1;2042:9;2038:17;2029:6;1989:67;:::i;:::-;1849:214;;;;:::o;2069:466::-;2133:6;2141;2190:2;2178:9;2169:7;2165:23;2161:32;2158:119;;;2196:79;;:::i;:::-;2158:119;2316:1;2341:51;2384:7;2375:6;2364:9;2360:22;2341:51;:::i;:::-;2331:61;;2287:115;2441:2;2467:51;2510:7;2501:6;2490:9;2486:22;2467:51;:::i;:::-;2457:61;;2412:116;2069:466;;;;;:::o;2541:115::-;2626:23;2643:5;2626:23;:::i;:::-;2621:3;2614:36;2541:115;;:::o;2662:218::-;2753:4;2791:2;2780:9;2776:18;2768:26;;2804:69;2870:1;2859:9;2855:17;2846:6;2804:69;:::i;:::-;2662:218;;;;:::o;2886:180::-;2934:77;2931:1;2924:88;3031:4;3028:1;3021:15;3055:4;3052:1;3045:15"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "200000",
"executionCost": "245",
"totalCost": "200245"
},
"external": {
"getAge(uint8)": "infinite",
"getPhone(uint8)": "8767",
"pushPhone(uint64)": "50605",
"setAge(uint8,uint8)": "infinite"
}
},
"methodIdentifiers": {
"getAge(uint8)": "47e12f8c",
"getPhone(uint8)": "cb520b8c",
"pushPhone(uint64)": "107a2c66",
"setAge(uint8,uint8)": "72958220"
}
},
"abi": [
{
"inputs": [
{
"internalType": "uint8",
"name": "_index",
"type": "uint8"
}
],
"name": "getAge",
"outputs": [
{
"internalType": "uint8",
"name": "",
"type": "uint8"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint8",
"name": "_index",
"type": "uint8"
}
],
"name": "getPhone",
"outputs": [
{
"internalType": "uint64",
"name": "",
"type": "uint64"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint64",
"name": "_phonenumber",
"type": "uint64"
}
],
"name": "pushPhone",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint8",
"name": "_index",
"type": "uint8"
},
{
"internalType": "uint8",
"name": "_value",
"type": "uint8"
}
],
"name": "setAge",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.17+commit.8df45f5f"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [
{
"internalType": "uint8",
"name": "_index",
"type": "uint8"
}
],
"name": "getAge",
"outputs": [
{
"internalType": "uint8",
"name": "",
"type": "uint8"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint8",
"name": "_index",
"type": "uint8"
}
],
"name": "getPhone",
"outputs": [
{
"internalType": "uint64",
"name": "",
"type": "uint64"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint64",
"name": "_phonenumber",
"type": "uint64"
}
],
"name": "pushPhone",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint8",
"name": "_index",
"type": "uint8"
},
{
"internalType": "uint8",
"name": "_value",
"type": "uint8"
}
],
"name": "setAge",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/7_array.sol": "array"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/7_array.sol": {
"keccak256": "0x4edca278e33c32e7f42624bbd32cda455882f80bfc0a42124a19ba9c5dce0431",
"license": "MIT",
"urls": [
"bzz-raw://5115199ef4f2e77bfb133e15e11f2650aebbd4aa8638d223c6e2cd5e9c784b0a",
"dweb:/ipfs/QmcQdKrehY87EUmdTLUZ8HQtqkNvj1ry2fq8EQBwFp8tsB"
]
}
},
"version": 1
}
{
"id": "00461d4f7542a8f6eb76ca08ab70dc3b",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.7",
"solcLongVersion": "0.8.7+commit.e28d00a7",
"input": {
"language": "Solidity",
"sources": {
"contracts/6_variables1.sol": {
"content": ""
}
},
"settings": {
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"": [
"ast"
],
"*": [
"abi",
"metadata",
"devdoc",
"userdoc",
"storageLayout",
"evm.legacyAssembly",
"evm.bytecode",
"evm.deployedBytecode",
"evm.methodIdentifiers",
"evm.gasEstimates",
"evm.assembly"
]
}
}
}
},
"output": {
"errors": [
{
"component": "general",
"errorCode": "1878",
"formattedMessage": "Warning: SPDX license identifier not provided in source file. Before publishing, consider adding a comment containing \"SPDX-License-Identifier: <SPDX-License>\" to each source file. Use \"SPDX-License-Identifier: UNLICENSED\" for non-open-source code. Please see https://spdx.org for more information.\n--> contracts/6_variables1.sol\n\n",
"message": "SPDX license identifier not provided in source file. Before publishing, consider adding a comment containing \"SPDX-License-Identifier: <SPDX-License>\" to each source file. Use \"SPDX-License-Identifier: UNLICENSED\" for non-open-source code. Please see https://spdx.org for more information.",
"severity": "warning",
"sourceLocation": {
"end": -1,
"file": "contracts/6_variables1.sol",
"start": -1
},
"type": "Warning"
},
{
"component": "general",
"errorCode": "3420",
"formattedMessage": "Warning: Source file does not specify required compiler version! Consider adding \"pragma solidity ^0.8.7;\"\n--> contracts/6_variables1.sol\n\n",
"message": "Source file does not specify required compiler version! Consider adding \"pragma solidity ^0.8.7;\"",
"severity": "warning",
"sourceLocation": {
"end": -1,
"file": "contracts/6_variables1.sol",
"start": -1
},
"type": "Warning"
}
],
"sources": {
"contracts/6_variables1.sol": {
"ast": {
"absolutePath": "contracts/6_variables1.sol",
"exportedSymbols": {},
"id": 1,
"nodeType": "SourceUnit",
"nodes": [],
"src": "0:0:0"
},
"id": 0
}
}
}
}
{
"id": "00625893cbe8ed9ae7868754ea4e1262",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.17",
"solcLongVersion": "0.8.17+commit.8df45f5f",
"input": {
"language": "Solidity",
"sources": {
"contracts/7_array.sol": {
"content": "// SPDX-License-Identifier: MIT\n\npragma solidity ^0.8.7;\n\ncontract array {\n uint8[42] ages;\n\n function setAge(uint8 _index, uint8 _value) public {\n ages[_index] = _value;\n }\n \n\n}\n"
}
},
"settings": {
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"": [
"ast"
],
"*": [
"abi",
"metadata",
"devdoc",
"userdoc",
"storageLayout",
"evm.legacyAssembly",
"evm.bytecode",
"evm.deployedBytecode",
"evm.methodIdentifiers",
"evm.gasEstimates",
"evm.assembly"
]
}
}
}
},
"output": {
"contracts": {
"contracts/7_array.sol": {
"array": {
"abi": [
{
"inputs": [
{
"internalType": "uint8",
"name": "_index",
"type": "uint8"
},
{
"internalType": "uint8",
"name": "_value",
"type": "uint8"
}
],
"name": "setAge",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"evm": {
"assembly": " /* \"contracts/7_array.sol\":58:197 contract array {... */\n mstore(0x40, 0x80)\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\ntag_1:\n pop\n dataSize(sub_0)\n dup1\n dataOffset(sub_0)\n 0x00\n codecopy\n 0x00\n return\nstop\n\nsub_0: assembly {\n /* \"contracts/7_array.sol\":58:197 contract array {... */\n mstore(0x40, 0x80)\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\n tag_1:\n pop\n jumpi(tag_2, lt(calldatasize, 0x04))\n shr(0xe0, calldataload(0x00))\n dup1\n 0x72958220\n eq\n tag_3\n jumpi\n tag_2:\n 0x00\n dup1\n revert\n /* \"contracts/7_array.sol\":100:189 function setAge(uint8 _index, uint8 _value) public {... */\n tag_3:\n tag_4\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_5\n swap2\n swap1\n tag_6\n jump\t// in\n tag_5:\n tag_7\n jump\t// in\n tag_4:\n stop\n tag_7:\n /* \"contracts/7_array.sol\":176:182 _value */\n dup1\n /* \"contracts/7_array.sol\":161:165 ages */\n 0x00\n /* \"contracts/7_array.sol\":166:172 _index */\n dup4\n /* \"contracts/7_array.sol\":161:173 ages[_index] */\n 0xff\n and\n 0x2a\n dup2\n lt\n tag_9\n jumpi\n tag_10\n tag_11\n jump\t// in\n tag_10:\n tag_9:\n 0x20\n swap2\n dup3\n dup3\n div\n add\n swap2\n swap1\n mod\n /* \"contracts/7_array.sol\":161:182 ages[_index] = _value */\n 0x0100\n exp\n dup2\n sload\n dup2\n 0xff\n mul\n not\n and\n swap1\n dup4\n 0xff\n and\n mul\n or\n swap1\n sstore\n pop\n /* \"contracts/7_array.sol\":100:189 function setAge(uint8 _index, uint8 _value) public {... */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":88:205 */\n tag_14:\n /* \"#utility.yul\":197:198 */\n 0x00\n /* \"#utility.yul\":194:195 */\n dup1\n /* \"#utility.yul\":187:199 */\n revert\n /* \"#utility.yul\":334:420 */\n tag_16:\n /* \"#utility.yul\":369:376 */\n 0x00\n /* \"#utility.yul\":409:413 */\n 0xff\n /* \"#utility.yul\":402:407 */\n dup3\n /* \"#utility.yul\":398:414 */\n and\n /* \"#utility.yul\":387:414 */\n swap1\n pop\n /* \"#utility.yul\":334:420 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":426:544 */\n tag_17:\n /* \"#utility.yul\":497:519 */\n tag_25\n /* \"#utility.yul\":513:518 */\n dup2\n /* \"#utility.yul\":497:519 */\n tag_16\n jump\t// in\n tag_25:\n /* \"#utility.yul\":490:495 */\n dup2\n /* \"#utility.yul\":487:520 */\n eq\n /* \"#utility.yul\":477:538 */\n tag_26\n jumpi\n /* \"#utility.yul\":534:535 */\n 0x00\n /* \"#utility.yul\":531:532 */\n dup1\n /* \"#utility.yul\":524:536 */\n revert\n /* \"#utility.yul\":477:538 */\n tag_26:\n /* \"#utility.yul\":426:544 */\n pop\n jump\t// out\n /* \"#utility.yul\":550:685 */\n tag_18:\n /* \"#utility.yul\":594:599 */\n 0x00\n /* \"#utility.yul\":632:638 */\n dup2\n /* \"#utility.yul\":619:639 */\n calldataload\n /* \"#utility.yul\":610:639 */\n swap1\n pop\n /* \"#utility.yul\":648:679 */\n tag_28\n /* \"#utility.yul\":673:678 */\n dup2\n /* \"#utility.yul\":648:679 */\n tag_17\n jump\t// in\n tag_28:\n /* \"#utility.yul\":550:685 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":691:1157 */\n tag_6:\n /* \"#utility.yul\":755:761 */\n 0x00\n /* \"#utility.yul\":763:769 */\n dup1\n /* \"#utility.yul\":812:814 */\n 0x40\n /* \"#utility.yul\":800:809 */\n dup4\n /* \"#utility.yul\":791:798 */\n dup6\n /* \"#utility.yul\":787:810 */\n sub\n /* \"#utility.yul\":783:815 */\n slt\n /* \"#utility.yul\":780:899 */\n iszero\n tag_30\n jumpi\n /* \"#utility.yul\":818:897 */\n tag_31\n tag_14\n jump\t// in\n tag_31:\n /* \"#utility.yul\":780:899 */\n tag_30:\n /* \"#utility.yul\":938:939 */\n 0x00\n /* \"#utility.yul\":963:1014 */\n tag_32\n /* \"#utility.yul\":1006:1013 */\n dup6\n /* \"#utility.yul\":997:1003 */\n dup3\n /* \"#utility.yul\":986:995 */\n dup7\n /* \"#utility.yul\":982:1004 */\n add\n /* \"#utility.yul\":963:1014 */\n tag_18\n jump\t// in\n tag_32:\n /* \"#utility.yul\":953:1014 */\n swap3\n pop\n /* \"#utility.yul\":909:1024 */\n pop\n /* \"#utility.yul\":1063:1065 */\n 0x20\n /* \"#utility.yul\":1089:1140 */\n tag_33\n /* \"#utility.yul\":1132:1139 */\n dup6\n /* \"#utility.yul\":1123:1129 */\n dup3\n /* \"#utility.yul\":1112:1121 */\n dup7\n /* \"#utility.yul\":1108:1130 */\n add\n /* \"#utility.yul\":1089:1140 */\n tag_18\n jump\t// in\n tag_33:\n /* \"#utility.yul\":1079:1140 */\n swap2\n pop\n /* \"#utility.yul\":1034:1150 */\n pop\n /* \"#utility.yul\":691:1157 */\n swap3\n pop\n swap3\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1163:1343 */\n tag_11:\n /* \"#utility.yul\":1211:1288 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":1208:1209 */\n 0x00\n /* \"#utility.yul\":1201:1289 */\n mstore\n /* \"#utility.yul\":1308:1312 */\n 0x32\n /* \"#utility.yul\":1305:1306 */\n 0x04\n /* \"#utility.yul\":1298:1313 */\n mstore\n /* \"#utility.yul\":1332:1336 */\n 0x24\n /* \"#utility.yul\":1329:1330 */\n 0x00\n /* \"#utility.yul\":1322:1337 */\n revert\n\n auxdata: 0xa2646970667358221220f1bbfd4acd3f1ca288dfaa6b8a84bce9f0a8cc76fa707b09111d4f42d5c625c764736f6c63430008110033\n}\n",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "608060405234801561001057600080fd5b5061016b806100206000396000f3fe608060405234801561001057600080fd5b506004361061002b5760003560e01c80637295822014610030575b600080fd5b61004a600480360381019061004591906100c6565b61004c565b005b8060008360ff16602a811061006457610063610106565b5b602091828204019190066101000a81548160ff021916908360ff1602179055505050565b600080fd5b600060ff82169050919050565b6100a38161008d565b81146100ae57600080fd5b50565b6000813590506100c08161009a565b92915050565b600080604083850312156100dd576100dc610088565b5b60006100eb858286016100b1565b92505060206100fc858286016100b1565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220f1bbfd4acd3f1ca288dfaa6b8a84bce9f0a8cc76fa707b09111d4f42d5c625c764736f6c63430008110033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x16B 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 0x72958220 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 0xC6 JUMP JUMPDEST PUSH2 0x4C JUMP JUMPDEST STOP JUMPDEST DUP1 PUSH1 0x0 DUP4 PUSH1 0xFF AND PUSH1 0x2A DUP2 LT PUSH2 0x64 JUMPI PUSH2 0x63 PUSH2 0x106 JUMP JUMPDEST JUMPDEST PUSH1 0x20 SWAP2 DUP3 DUP3 DIV ADD SWAP2 SWAP1 MOD 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 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xA3 DUP2 PUSH2 0x8D JUMP JUMPDEST DUP2 EQ PUSH2 0xAE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xC0 DUP2 PUSH2 0x9A JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xDD JUMPI PUSH2 0xDC PUSH2 0x88 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xEB DUP6 DUP3 DUP7 ADD PUSH2 0xB1 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xFC DUP6 DUP3 DUP7 ADD PUSH2 0xB1 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 CALL 0xBB REVERT 0x4A 0xCD EXTCODEHASH SHR LOG2 DUP9 0xDF 0xAA PUSH12 0x8A84BCE9F0A8CC76FA707B09 GT SAR 0x4F TIMESTAMP 0xD5 0xC6 0x25 0xC7 PUSH5 0x736F6C6343 STOP ADDMOD GT STOP CALLER ",
"sourceMap": "58:139:0:-:0;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@setAge_19": {
"entryPoint": 76,
"id": 19,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_decode_t_uint8": {
"entryPoint": 177,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint8t_uint8": {
"entryPoint": 198,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"cleanup_t_uint8": {
"entryPoint": 141,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x32": {
"entryPoint": 262,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 136,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"validator_revert_t_uint8": {
"entryPoint": 154,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:1346: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": "377:43:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "387:27:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "402:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "409:4:1",
"type": "",
"value": "0xff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "398:3:1"
},
"nodeType": "YulFunctionCall",
"src": "398:16:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "387:7:1"
}
]
}
]
},
"name": "cleanup_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "359:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "369:7:1",
"type": ""
}
],
"src": "334:86:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "467:77:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "522:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "531:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "534:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "524:6:1"
},
"nodeType": "YulFunctionCall",
"src": "524:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "524:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "490:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "513:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint8",
"nodeType": "YulIdentifier",
"src": "497:15:1"
},
"nodeType": "YulFunctionCall",
"src": "497:22:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "487:2:1"
},
"nodeType": "YulFunctionCall",
"src": "487:33:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "480:6:1"
},
"nodeType": "YulFunctionCall",
"src": "480:41:1"
},
"nodeType": "YulIf",
"src": "477:61:1"
}
]
},
"name": "validator_revert_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "460:5:1",
"type": ""
}
],
"src": "426:118:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "600:85:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "610:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "632:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "619:12:1"
},
"nodeType": "YulFunctionCall",
"src": "619:20:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "610:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "673:5:1"
}
],
"functionName": {
"name": "validator_revert_t_uint8",
"nodeType": "YulIdentifier",
"src": "648:24:1"
},
"nodeType": "YulFunctionCall",
"src": "648:31:1"
},
"nodeType": "YulExpressionStatement",
"src": "648:31:1"
}
]
},
"name": "abi_decode_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "578:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "586:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "594:5:1",
"type": ""
}
],
"src": "550:135:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "770:387:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "816:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "818:77:1"
},
"nodeType": "YulFunctionCall",
"src": "818:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "818:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "791:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "800:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "787:3:1"
},
"nodeType": "YulFunctionCall",
"src": "787:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "812:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "783:3:1"
},
"nodeType": "YulFunctionCall",
"src": "783:32:1"
},
"nodeType": "YulIf",
"src": "780:119:1"
},
{
"nodeType": "YulBlock",
"src": "909:115:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "924:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "938:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "928:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "953:61:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "986:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "997:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "982:3:1"
},
"nodeType": "YulFunctionCall",
"src": "982:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1006:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint8",
"nodeType": "YulIdentifier",
"src": "963:18:1"
},
"nodeType": "YulFunctionCall",
"src": "963:51:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "953:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1034:116:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1049:16:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1063:2:1",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1053:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1079:61:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1112:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1123:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1108:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1108:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1132:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint8",
"nodeType": "YulIdentifier",
"src": "1089:18:1"
},
"nodeType": "YulFunctionCall",
"src": "1089:51:1"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1079:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint8t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "732:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "743:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "755:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "763:6:1",
"type": ""
}
],
"src": "691:466:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1191:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1208:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1211:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1201:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1201:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "1201:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1305:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1308:4:1",
"type": "",
"value": "0x32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1298:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1298:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "1298:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1329:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1332:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1322:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1322:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "1322:15:1"
}
]
},
"name": "panic_error_0x32",
"nodeType": "YulFunctionDefinition",
"src": "1163:180: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_uint8(value) -> cleaned {\n cleaned := and(value, 0xff)\n }\n\n function validator_revert_t_uint8(value) {\n if iszero(eq(value, cleanup_t_uint8(value))) { revert(0, 0) }\n }\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_uint8t_uint8(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_uint8(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint8(add(headStart, offset), dataEnd)\n }\n\n }\n\n function panic_error_0x32() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x32)\n revert(0, 0x24)\n }\n\n}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b506004361061002b5760003560e01c80637295822014610030575b600080fd5b61004a600480360381019061004591906100c6565b61004c565b005b8060008360ff16602a811061006457610063610106565b5b602091828204019190066101000a81548160ff021916908360ff1602179055505050565b600080fd5b600060ff82169050919050565b6100a38161008d565b81146100ae57600080fd5b50565b6000813590506100c08161009a565b92915050565b600080604083850312156100dd576100dc610088565b5b60006100eb858286016100b1565b92505060206100fc858286016100b1565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220f1bbfd4acd3f1ca288dfaa6b8a84bce9f0a8cc76fa707b09111d4f42d5c625c764736f6c63430008110033",
"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 0x72958220 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 0xC6 JUMP JUMPDEST PUSH2 0x4C JUMP JUMPDEST STOP JUMPDEST DUP1 PUSH1 0x0 DUP4 PUSH1 0xFF AND PUSH1 0x2A DUP2 LT PUSH2 0x64 JUMPI PUSH2 0x63 PUSH2 0x106 JUMP JUMPDEST JUMPDEST PUSH1 0x20 SWAP2 DUP3 DUP3 DIV ADD SWAP2 SWAP1 MOD 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 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xA3 DUP2 PUSH2 0x8D JUMP JUMPDEST DUP2 EQ PUSH2 0xAE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xC0 DUP2 PUSH2 0x9A JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xDD JUMPI PUSH2 0xDC PUSH2 0x88 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xEB DUP6 DUP3 DUP7 ADD PUSH2 0xB1 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xFC DUP6 DUP3 DUP7 ADD PUSH2 0xB1 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 CALL 0xBB REVERT 0x4A 0xCD EXTCODEHASH SHR LOG2 DUP9 0xDF 0xAA PUSH12 0x8A84BCE9F0A8CC76FA707B09 GT SAR 0x4F TIMESTAMP 0xD5 0xC6 0x25 0xC7 PUSH5 0x736F6C6343 STOP ADDMOD GT STOP CALLER ",
"sourceMap": "58:139:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100:89;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;176:6;161:4;166:6;161:12;;;;;;;;;:::i;:::-;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;100:89;;:::o;88:117:1:-;197:1;194;187:12;334:86;369:7;409:4;402:5;398:16;387:27;;334:86;;;:::o;426:118::-;497:22;513:5;497:22;:::i;:::-;490:5;487:33;477:61;;534:1;531;524:12;477:61;426:118;:::o;550:135::-;594:5;632:6;619:20;610:29;;648:31;673:5;648:31;:::i;:::-;550:135;;;;:::o;691:466::-;755:6;763;812:2;800:9;791:7;787:23;783:32;780:119;;;818:79;;:::i;:::-;780:119;938:1;963:51;1006:7;997:6;986:9;982:22;963:51;:::i;:::-;953:61;;909:115;1063:2;1089:51;1132:7;1123:6;1112:9;1108:22;1089:51;:::i;:::-;1079:61;;1034:116;691:466;;;;;:::o;1163:180::-;1211:77;1208:1;1201:88;1308:4;1305:1;1298:15;1332:4;1329:1;1322:15"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "72600",
"executionCost": "123",
"totalCost": "72723"
},
"external": {
"setAge(uint8,uint8)": "infinite"
}
},
"legacyAssembly": {
".code": [
{
"begin": 58,
"end": 197,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 58,
"end": 197,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 58,
"end": 197,
"name": "MSTORE",
"source": 0
},
{
"begin": 58,
"end": 197,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 58,
"end": 197,
"name": "DUP1",
"source": 0
},
{
"begin": 58,
"end": 197,
"name": "ISZERO",
"source": 0
},
{
"begin": 58,
"end": 197,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 58,
"end": 197,
"name": "JUMPI",
"source": 0
},
{
"begin": 58,
"end": 197,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 58,
"end": 197,
"name": "DUP1",
"source": 0
},
{
"begin": 58,
"end": 197,
"name": "REVERT",
"source": 0
},
{
"begin": 58,
"end": 197,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 58,
"end": 197,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 58,
"end": 197,
"name": "POP",
"source": 0
},
{
"begin": 58,
"end": 197,
"name": "PUSH #[$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 58,
"end": 197,
"name": "DUP1",
"source": 0
},
{
"begin": 58,
"end": 197,
"name": "PUSH [$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 58,
"end": 197,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 58,
"end": 197,
"name": "CODECOPY",
"source": 0
},
{
"begin": 58,
"end": 197,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 58,
"end": 197,
"name": "RETURN",
"source": 0
}
],
".data": {
"0": {
".auxdata": "a2646970667358221220f1bbfd4acd3f1ca288dfaa6b8a84bce9f0a8cc76fa707b09111d4f42d5c625c764736f6c63430008110033",
".code": [
{
"begin": 58,
"end": 197,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 58,
"end": 197,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 58,
"end": 197,
"name": "MSTORE",
"source": 0
},
{
"begin": 58,
"end": 197,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 58,
"end": 197,
"name": "DUP1",
"source": 0
},
{
"begin": 58,
"end": 197,
"name": "ISZERO",
"source": 0
},
{
"begin": 58,
"end": 197,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 58,
"end": 197,
"name": "JUMPI",
"source": 0
},
{
"begin": 58,
"end": 197,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 58,
"end": 197,
"name": "DUP1",
"source": 0
},
{
"begin": 58,
"end": 197,
"name": "REVERT",
"source": 0
},
{
"begin": 58,
"end": 197,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 58,
"end": 197,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 58,
"end": 197,
"name": "POP",
"source": 0
},
{
"begin": 58,
"end": 197,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 58,
"end": 197,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 58,
"end": 197,
"name": "LT",
"source": 0
},
{
"begin": 58,
"end": 197,
"name": "PUSH [tag]",
"source": 0,
"value": "2"
},
{
"begin": 58,
"end": 197,
"name": "JUMPI",
"source": 0
},
{
"begin": 58,
"end": 197,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 58,
"end": 197,
"name": "CALLDATALOAD",
"source": 0
},
{
"begin": 58,
"end": 197,
"name": "PUSH",
"source": 0,
"value": "E0"
},
{
"begin": 58,
"end": 197,
"name": "SHR",
"source": 0
},
{
"begin": 58,
"end": 197,
"name": "DUP1",
"source": 0
},
{
"begin": 58,
"end": 197,
"name": "PUSH",
"source": 0,
"value": "72958220"
},
{
"begin": 58,
"end": 197,
"name": "EQ",
"source": 0
},
{
"begin": 58,
"end": 197,
"name": "PUSH [tag]",
"source": 0,
"value": "3"
},
{
"begin": 58,
"end": 197,
"name": "JUMPI",
"source": 0
},
{
"begin": 58,
"end": 197,
"name": "tag",
"source": 0,
"value": "2"
},
{
"begin": 58,
"end": 197,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 58,
"end": 197,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 58,
"end": 197,
"name": "DUP1",
"source": 0
},
{
"begin": 58,
"end": 197,
"name": "REVERT",
"source": 0
},
{
"begin": 100,
"end": 189,
"name": "tag",
"source": 0,
"value": "3"
},
{
"begin": 100,
"end": 189,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 100,
"end": 189,
"name": "PUSH [tag]",
"source": 0,
"value": "4"
},
{
"begin": 100,
"end": 189,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 100,
"end": 189,
"name": "DUP1",
"source": 0
},
{
"begin": 100,
"end": 189,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 100,
"end": 189,
"name": "SUB",
"source": 0
},
{
"begin": 100,
"end": 189,
"name": "DUP2",
"source": 0
},
{
"begin": 100,
"end": 189,
"name": "ADD",
"source": 0
},
{
"begin": 100,
"end": 189,
"name": "SWAP1",
"source": 0
},
{
"begin": 100,
"end": 189,
"name": "PUSH [tag]",
"source": 0,
"value": "5"
},
{
"begin": 100,
"end": 189,
"name": "SWAP2",
"source": 0
},
{
"begin": 100,
"end": 189,
"name": "SWAP1",
"source": 0
},
{
"begin": 100,
"end": 189,
"name": "PUSH [tag]",
"source": 0,
"value": "6"
},
{
"begin": 100,
"end": 189,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 100,
"end": 189,
"name": "tag",
"source": 0,
"value": "5"
},
{
"begin": 100,
"end": 189,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 100,
"end": 189,
"name": "PUSH [tag]",
"source": 0,
"value": "7"
},
{
"begin": 100,
"end": 189,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 100,
"end": 189,
"name": "tag",
"source": 0,
"value": "4"
},
{
"begin": 100,
"end": 189,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 100,
"end": 189,
"name": "STOP",
"source": 0
},
{
"begin": 100,
"end": 189,
"name": "tag",
"source": 0,
"value": "7"
},
{
"begin": 100,
"end": 189,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 176,
"end": 182,
"name": "DUP1",
"source": 0
},
{
"begin": 161,
"end": 165,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 166,
"end": 172,
"name": "DUP4",
"source": 0
},
{
"begin": 161,
"end": 173,
"name": "PUSH",
"source": 0,
"value": "FF"
},
{
"begin": 161,
"end": 173,
"name": "AND",
"source": 0
},
{
"begin": 161,
"end": 173,
"name": "PUSH",
"source": 0,
"value": "2A"
},
{
"begin": 161,
"end": 173,
"name": "DUP2",
"source": 0
},
{
"begin": 161,
"end": 173,
"name": "LT",
"source": 0
},
{
"begin": 161,
"end": 173,
"name": "PUSH [tag]",
"source": 0,
"value": "9"
},
{
"begin": 161,
"end": 173,
"name": "JUMPI",
"source": 0
},
{
"begin": 161,
"end": 173,
"name": "PUSH [tag]",
"source": 0,
"value": "10"
},
{
"begin": 161,
"end": 173,
"name": "PUSH [tag]",
"source": 0,
"value": "11"
},
{
"begin": 161,
"end": 173,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 161,
"end": 173,
"name": "tag",
"source": 0,
"value": "10"
},
{
"begin": 161,
"end": 173,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 161,
"end": 173,
"name": "tag",
"source": 0,
"value": "9"
},
{
"begin": 161,
"end": 173,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 161,
"end": 173,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 161,
"end": 173,
"name": "SWAP2",
"source": 0
},
{
"begin": 161,
"end": 173,
"name": "DUP3",
"source": 0
},
{
"begin": 161,
"end": 173,
"name": "DUP3",
"source": 0
},
{
"begin": 161,
"end": 173,
"name": "DIV",
"source": 0
},
{
"begin": 161,
"end": 173,
"name": "ADD",
"source": 0
},
{
"begin": 161,
"end": 173,
"name": "SWAP2",
"source": 0
},
{
"begin": 161,
"end": 173,
"name": "SWAP1",
"source": 0
},
{
"begin": 161,
"end": 173,
"name": "MOD",
"source": 0
},
{
"begin": 161,
"end": 182,
"name": "PUSH",
"source": 0,
"value": "100"
},
{
"begin": 161,
"end": 182,
"name": "EXP",
"source": 0
},
{
"begin": 161,
"end": 182,
"name": "DUP2",
"source": 0
},
{
"begin": 161,
"end": 182,
"name": "SLOAD",
"source": 0
},
{
"begin": 161,
"end": 182,
"name": "DUP2",
"source": 0
},
{
"begin": 161,
"end": 182,
"name": "PUSH",
"source": 0,
"value": "FF"
},
{
"begin": 161,
"end": 182,
"name": "MUL",
"source": 0
},
{
"begin": 161,
"end": 182,
"name": "NOT",
"source": 0
},
{
"begin": 161,
"end": 182,
"name": "AND",
"source": 0
},
{
"begin": 161,
"end": 182,
"name": "SWAP1",
"source": 0
},
{
"begin": 161,
"end": 182,
"name": "DUP4",
"source": 0
},
{
"begin": 161,
"end": 182,
"name": "PUSH",
"source": 0,
"value": "FF"
},
{
"begin": 161,
"end": 182,
"name": "AND",
"source": 0
},
{
"begin": 161,
"end": 182,
"name": "MUL",
"source": 0
},
{
"begin": 161,
"end": 182,
"name": "OR",
"source": 0
},
{
"begin": 161,
"end": 182,
"name": "SWAP1",
"source": 0
},
{
"begin": 161,
"end": 182,
"name": "SSTORE",
"source": 0
},
{
"begin": 161,
"end": 182,
"name": "POP",
"source": 0
},
{
"begin": 100,
"end": 189,
"name": "POP",
"source": 0
},
{
"begin": 100,
"end": 189,
"name": "POP",
"source": 0
},
{
"begin": 100,
"end": 189,
"jumpType": "[out]",
"name": "JUMP",
"source": 0
},
{
"begin": 88,
"end": 205,
"name": "tag",
"source": 1,
"value": "14"
},
{
"begin": 88,
"end": 205,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 197,
"end": 198,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 194,
"end": 195,
"name": "DUP1",
"source": 1
},
{
"begin": 187,
"end": 199,
"name": "REVERT",
"source": 1
},
{
"begin": 334,
"end": 420,
"name": "tag",
"source": 1,
"value": "16"
},
{
"begin": 334,
"end": 420,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 369,
"end": 376,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 409,
"end": 413,
"name": "PUSH",
"source": 1,
"value": "FF"
},
{
"begin": 402,
"end": 407,
"name": "DUP3",
"source": 1
},
{
"begin": 398,
"end": 414,
"name": "AND",
"source": 1
},
{
"begin": 387,
"end": 414,
"name": "SWAP1",
"source": 1
},
{
"begin": 387,
"end": 414,
"name": "POP",
"source": 1
},
{
"begin": 334,
"end": 420,
"name": "SWAP2",
"source": 1
},
{
"begin": 334,
"end": 420,
"name": "SWAP1",
"source": 1
},
{
"begin": 334,
"end": 420,
"name": "POP",
"source": 1
},
{
"begin": 334,
"end": 420,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 426,
"end": 544,
"name": "tag",
"source": 1,
"value": "17"
},
{
"begin": 426,
"end": 544,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 497,
"end": 519,
"name": "PUSH [tag]",
"source": 1,
"value": "25"
},
{
"begin": 513,
"end": 518,
"name": "DUP2",
"source": 1
},
{
"begin": 497,
"end": 519,
"name": "PUSH [tag]",
"source": 1,
"value": "16"
},
{
"begin": 497,
"end": 519,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 497,
"end": 519,
"name": "tag",
"source": 1,
"value": "25"
},
{
"begin": 497,
"end": 519,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 490,
"end": 495,
"name": "DUP2",
"source": 1
},
{
"begin": 487,
"end": 520,
"name": "EQ",
"source": 1
},
{
"begin": 477,
"end": 538,
"name": "PUSH [tag]",
"source": 1,
"value": "26"
},
{
"begin": 477,
"end": 538,
"name": "JUMPI",
"source": 1
},
{
"begin": 534,
"end": 535,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 531,
"end": 532,
"name": "DUP1",
"source": 1
},
{
"begin": 524,
"end": 536,
"name": "REVERT",
"source": 1
},
{
"begin": 477,
"end": 538,
"name": "tag",
"source": 1,
"value": "26"
},
{
"begin": 477,
"end": 538,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 426,
"end": 544,
"name": "POP",
"source": 1
},
{
"begin": 426,
"end": 544,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 550,
"end": 685,
"name": "tag",
"source": 1,
"value": "18"
},
{
"begin": 550,
"end": 685,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 594,
"end": 599,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 632,
"end": 638,
"name": "DUP2",
"source": 1
},
{
"begin": 619,
"end": 639,
"name": "CALLDATALOAD",
"source": 1
},
{
"begin": 610,
"end": 639,
"name": "SWAP1",
"source": 1
},
{
"begin": 610,
"end": 639,
"name": "POP",
"source": 1
},
{
"begin": 648,
"end": 679,
"name": "PUSH [tag]",
"source": 1,
"value": "28"
},
{
"begin": 673,
"end": 678,
"name": "DUP2",
"source": 1
},
{
"begin": 648,
"end": 679,
"name": "PUSH [tag]",
"source": 1,
"value": "17"
},
{
"begin": 648,
"end": 679,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 648,
"end": 679,
"name": "tag",
"source": 1,
"value": "28"
},
{
"begin": 648,
"end": 679,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 550,
"end": 685,
"name": "SWAP3",
"source": 1
},
{
"begin": 550,
"end": 685,
"name": "SWAP2",
"source": 1
},
{
"begin": 550,
"end": 685,
"name": "POP",
"source": 1
},
{
"begin": 550,
"end": 685,
"name": "POP",
"source": 1
},
{
"begin": 550,
"end": 685,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 691,
"end": 1157,
"name": "tag",
"source": 1,
"value": "6"
},
{
"begin": 691,
"end": 1157,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 755,
"end": 761,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 763,
"end": 769,
"name": "DUP1",
"source": 1
},
{
"begin": 812,
"end": 814,
"name": "PUSH",
"source": 1,
"value": "40"
},
{
"begin": 800,
"end": 809,
"name": "DUP4",
"source": 1
},
{
"begin": 791,
"end": 798,
"name": "DUP6",
"source": 1
},
{
"begin": 787,
"end": 810,
"name": "SUB",
"source": 1
},
{
"begin": 783,
"end": 815,
"name": "SLT",
"source": 1
},
{
"begin": 780,
"end": 899,
"name": "ISZERO",
"source": 1
},
{
"begin": 780,
"end": 899,
"name": "PUSH [tag]",
"source": 1,
"value": "30"
},
{
"begin": 780,
"end": 899,
"name": "JUMPI",
"source": 1
},
{
"begin": 818,
"end": 897,
"name": "PUSH [tag]",
"source": 1,
"value": "31"
},
{
"begin": 818,
"end": 897,
"name": "PUSH [tag]",
"source": 1,
"value": "14"
},
{
"begin": 818,
"end": 897,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 818,
"end": 897,
"name": "tag",
"source": 1,
"value": "31"
},
{
"begin": 818,
"end": 897,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 780,
"end": 899,
"name": "tag",
"source": 1,
"value": "30"
},
{
"begin": 780,
"end": 899,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 938,
"end": 939,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 963,
"end": 1014,
"name": "PUSH [tag]",
"source": 1,
"value": "32"
},
{
"begin": 1006,
"end": 1013,
"name": "DUP6",
"source": 1
},
{
"begin": 997,
"end": 1003,
"name": "DUP3",
"source": 1
},
{
"begin": 986,
"end": 995,
"name": "DUP7",
"source": 1
},
{
"begin": 982,
"end": 1004,
"name": "ADD",
"source": 1
},
{
"begin": 963,
"end": 1014,
"name": "PUSH [tag]",
"source": 1,
"value": "18"
},
{
"begin": 963,
"end": 1014,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 963,
"end": 1014,
"name": "tag",
"source": 1,
"value": "32"
},
{
"begin": 963,
"end": 1014,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 953,
"end": 1014,
"name": "SWAP3",
"source": 1
},
{
"begin": 953,
"end": 1014,
"name": "POP",
"source": 1
},
{
"begin": 909,
"end": 1024,
"name": "POP",
"source": 1
},
{
"begin": 1063,
"end": 1065,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 1089,
"end": 1140,
"name": "PUSH [tag]",
"source": 1,
"value": "33"
},
{
"begin": 1132,
"end": 1139,
"name": "DUP6",
"source": 1
},
{
"begin": 1123,
"end": 1129,
"name": "DUP3",
"source": 1
},
{
"begin": 1112,
"end": 1121,
"name": "DUP7",
"source": 1
},
{
"begin": 1108,
"end": 1130,
"name": "ADD",
"source": 1
},
{
"begin": 1089,
"end": 1140,
"name": "PUSH [tag]",
"source": 1,
"value": "18"
},
{
"begin": 1089,
"end": 1140,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 1089,
"end": 1140,
"name": "tag",
"source": 1,
"value": "33"
},
{
"begin": 1089,
"end": 1140,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1079,
"end": 1140,
"name": "SWAP2",
"source": 1
},
{
"begin": 1079,
"end": 1140,
"name": "POP",
"source": 1
},
{
"begin": 1034,
"end": 1150,
"name": "POP",
"source": 1
},
{
"begin": 691,
"end": 1157,
"name": "SWAP3",
"source": 1
},
{
"begin": 691,
"end": 1157,
"name": "POP",
"source": 1
},
{
"begin": 691,
"end": 1157,
"name": "SWAP3",
"source": 1
},
{
"begin": 691,
"end": 1157,
"name": "SWAP1",
"source": 1
},
{
"begin": 691,
"end": 1157,
"name": "POP",
"source": 1
},
{
"begin": 691,
"end": 1157,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 1163,
"end": 1343,
"name": "tag",
"source": 1,
"value": "11"
},
{
"begin": 1163,
"end": 1343,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1211,
"end": 1288,
"name": "PUSH",
"source": 1,
"value": "4E487B7100000000000000000000000000000000000000000000000000000000"
},
{
"begin": 1208,
"end": 1209,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1201,
"end": 1289,
"name": "MSTORE",
"source": 1
},
{
"begin": 1308,
"end": 1312,
"name": "PUSH",
"source": 1,
"value": "32"
},
{
"begin": 1305,
"end": 1306,
"name": "PUSH",
"source": 1,
"value": "4"
},
{
"begin": 1298,
"end": 1313,
"name": "MSTORE",
"source": 1
},
{
"begin": 1332,
"end": 1336,
"name": "PUSH",
"source": 1,
"value": "24"
},
{
"begin": 1329,
"end": 1330,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1322,
"end": 1337,
"name": "REVERT",
"source": 1
}
]
}
},
"sourceList": [
"contracts/7_array.sol",
"#utility.yul"
]
},
"methodIdentifiers": {
"setAge(uint8,uint8)": "72958220"
}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.17+commit.8df45f5f\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"uint8\",\"name\":\"_index\",\"type\":\"uint8\"},{\"internalType\":\"uint8\",\"name\":\"_value\",\"type\":\"uint8\"}],\"name\":\"setAge\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/7_array.sol\":\"array\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"contracts/7_array.sol\":{\"keccak256\":\"0x45a147656dab64631badcc787c7092592d051d89d4b412a2528e54ad1595d579\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://79a5673c3054b0e8a9f949702ce3196d26e7cdbd6c33620868aa31e913aba954\",\"dweb:/ipfs/QmNjuFG5bWrEjR3uVTUHjgbqxMjJyKjqJ4mHXNmcRhGsRN\"]}},\"version\":1}",
"storageLayout": {
"storage": [
{
"astId": 5,
"contract": "contracts/7_array.sol:array",
"label": "ages",
"offset": 0,
"slot": "0",
"type": "t_array(t_uint8)42_storage"
}
],
"types": {
"t_array(t_uint8)42_storage": {
"base": "t_uint8",
"encoding": "inplace",
"label": "uint8[42]",
"numberOfBytes": "64"
},
"t_uint8": {
"encoding": "inplace",
"label": "uint8",
"numberOfBytes": "1"
}
}
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
}
},
"sources": {
"contracts/7_array.sol": {
"ast": {
"absolutePath": "contracts/7_array.sol",
"exportedSymbols": {
"array": [
20
]
},
"id": 21,
"license": "MIT",
"nodeType": "SourceUnit",
"nodes": [
{
"id": 1,
"literals": [
"solidity",
"^",
"0.8",
".7"
],
"nodeType": "PragmaDirective",
"src": "33:23:0"
},
{
"abstract": false,
"baseContracts": [],
"canonicalName": "array",
"contractDependencies": [],
"contractKind": "contract",
"fullyImplemented": true,
"id": 20,
"linearizedBaseContracts": [
20
],
"name": "array",
"nameLocation": "67:5:0",
"nodeType": "ContractDefinition",
"nodes": [
{
"constant": false,
"id": 5,
"mutability": "mutable",
"name": "ages",
"nameLocation": "89:4:0",
"nodeType": "VariableDeclaration",
"scope": 20,
"src": "79:14:0",
"stateVariable": true,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_array$_t_uint8_$42_storage",
"typeString": "uint8[42]"
},
"typeName": {
"baseType": {
"id": 2,
"name": "uint8",
"nodeType": "ElementaryTypeName",
"src": "79:5:0",
"typeDescriptions": {
"typeIdentifier": "t_uint8",
"typeString": "uint8"
}
},
"id": 4,
"length": {
"hexValue": "3432",
"id": 3,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "number",
"lValueRequested": false,
"nodeType": "Literal",
"src": "85:2:0",
"typeDescriptions": {
"typeIdentifier": "t_rational_42_by_1",
"typeString": "int_const 42"
},
"value": "42"
},
"nodeType": "ArrayTypeName",
"src": "79:9:0",
"typeDescriptions": {
"typeIdentifier": "t_array$_t_uint8_$42_storage_ptr",
"typeString": "uint8[42]"
}
},
"visibility": "internal"
},
{
"body": {
"id": 18,
"nodeType": "Block",
"src": "151:38:0",
"statements": [
{
"expression": {
"id": 16,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"leftHandSide": {
"baseExpression": {
"id": 12,
"name": "ages",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 5,
"src": "161:4:0",
"typeDescriptions": {
"typeIdentifier": "t_array$_t_uint8_$42_storage",
"typeString": "uint8[42] storage ref"
}
},
"id": 14,
"indexExpression": {
"id": 13,
"name": "_index",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 7,
"src": "166:6:0",
"typeDescriptions": {
"typeIdentifier": "t_uint8",
"typeString": "uint8"
}
},
"isConstant": false,
"isLValue": true,
"isPure": false,
"lValueRequested": true,
"nodeType": "IndexAccess",
"src": "161:12:0",
"typeDescriptions": {
"typeIdentifier": "t_uint8",
"typeString": "uint8"
}
},
"nodeType": "Assignment",
"operator": "=",
"rightHandSide": {
"id": 15,
"name": "_value",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 9,
"src": "176:6:0",
"typeDescriptions": {
"typeIdentifier": "t_uint8",
"typeString": "uint8"
}
},
"src": "161:21:0",
"typeDescriptions": {
"typeIdentifier": "t_uint8",
"typeString": "uint8"
}
},
"id": 17,
"nodeType": "ExpressionStatement",
"src": "161:21:0"
}
]
},
"functionSelector": "72958220",
"id": 19,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "setAge",
"nameLocation": "109:6:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 10,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 7,
"mutability": "mutable",
"name": "_index",
"nameLocation": "122:6:0",
"nodeType": "VariableDeclaration",
"scope": 19,
"src": "116:12:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint8",
"typeString": "uint8"
},
"typeName": {
"id": 6,
"name": "uint8",
"nodeType": "ElementaryTypeName",
"src": "116:5:0",
"typeDescriptions": {
"typeIdentifier": "t_uint8",
"typeString": "uint8"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 9,
"mutability": "mutable",
"name": "_value",
"nameLocation": "136:6:0",
"nodeType": "VariableDeclaration",
"scope": 19,
"src": "130:12:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint8",
"typeString": "uint8"
},
"typeName": {
"id": 8,
"name": "uint8",
"nodeType": "ElementaryTypeName",
"src": "130:5:0",
"typeDescriptions": {
"typeIdentifier": "t_uint8",
"typeString": "uint8"
}
},
"visibility": "internal"
}
],
"src": "115:28:0"
},
"returnParameters": {
"id": 11,
"nodeType": "ParameterList",
"parameters": [],
"src": "151:0:0"
},
"scope": 20,
"src": "100:89:0",
"stateMutability": "nonpayable",
"virtual": false,
"visibility": "public"
}
],
"scope": 21,
"src": "58:139:0",
"usedErrors": []
}
],
"src": "33:165:0"
},
"id": 0
}
}
}
}
{
"id": "00c0604c003338aada9879d9c69195ca",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.7",
"solcLongVersion": "0.8.7+commit.e28d00a7",
"input": {
"language": "Solidity",
"sources": {
"contracts/5_variables.sol": {
"content": "// SPDX-License-Identifier: MIT\n\npragma solidity ^0.8.7;\n\ncontract variables {\n\n uint8 age = 42;\n uint8 height = 172;\n\n int64 balance;\n uint amount;\n\n bytes4 name = \"Ajit\";\n\n\n}"
}
},
"settings": {
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"": [
"ast"
],
"*": [
"abi",
"metadata",
"devdoc",
"userdoc",
"storageLayout",
"evm.legacyAssembly",
"evm.bytecode",
"evm.deployedBytecode",
"evm.methodIdentifiers",
"evm.gasEstimates",
"evm.assembly"
]
}
}
}
},
"output": {
"contracts": {
"contracts/5_variables.sol": {
"variables": {
"abi": [],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"evm": {
"assembly": " /* \"contracts/5_variables.sol\":58:191 contract variables {... */\n mstore(0x40, 0x80)\n /* \"contracts/5_variables.sol\":96:98 42 */\n 0x2a\n /* \"contracts/5_variables.sol\":84:98 uint8 age = 42 */\n 0x00\n dup1\n 0x0100\n exp\n dup2\n sload\n dup2\n 0xff\n mul\n not\n and\n swap1\n dup4\n 0xff\n and\n mul\n or\n swap1\n sstore\n pop\n /* \"contracts/5_variables.sol\":119:122 172 */\n 0xac\n /* \"contracts/5_variables.sol\":104:122 uint8 height = 172 */\n 0x00\n exp(0x0100, 0x01)\n dup2\n sload\n dup2\n 0xff\n mul\n not\n and\n swap1\n dup4\n 0xff\n and\n mul\n or\n swap1\n sstore\n pop\n /* \"contracts/5_variables.sol\":166:186 bytes4 name = \"Ajit\" */\n 0x416a697400000000000000000000000000000000000000000000000000000000\n 0x02\n exp(0x0100, 0x00)\n dup2\n sload\n dup2\n 0xffffffff\n mul\n not\n and\n swap1\n dup4\n 0xe0\n shr\n mul\n or\n swap1\n sstore\n pop\n /* \"contracts/5_variables.sol\":58:191 contract variables {... */\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\ntag_1:\n pop\n dataSize(sub_0)\n dup1\n dataOffset(sub_0)\n 0x00\n codecopy\n 0x00\n return\nstop\n\nsub_0: assembly {\n /* \"contracts/5_variables.sol\":58:191 contract variables {... */\n mstore(0x40, 0x80)\n 0x00\n dup1\n revert\n\n auxdata: 0xa2646970667358221220b4741c1661c041d48830166ab2bcb8095a967c981d24bde05d331dff429b11aa64736f6c63430008070033\n}\n",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "6080604052602a6000806101000a81548160ff021916908360ff16021790555060ac600060016101000a81548160ff021916908360ff1602179055507f416a697400000000000000000000000000000000000000000000000000000000600260006101000a81548163ffffffff021916908360e01c0217905550348015608457600080fd5b50603f8060926000396000f3fe6080604052600080fdfea2646970667358221220b4741c1661c041d48830166ab2bcb8095a967c981d24bde05d331dff429b11aa64736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x2A PUSH1 0x0 DUP1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 PUSH1 0xFF AND MUL OR SWAP1 SSTORE POP PUSH1 0xAC PUSH1 0x0 PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 PUSH1 0xFF AND MUL OR SWAP1 SSTORE POP PUSH32 0x416A697400000000000000000000000000000000000000000000000000000000 PUSH1 0x2 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH4 0xFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH1 0xE0 SHR MUL OR SWAP1 SSTORE POP CALLVALUE DUP1 ISZERO PUSH1 0x84 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x3F DUP1 PUSH1 0x92 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xB4 PUSH21 0x1C1661C041D48830166AB2BCB8095A967C981D24BD 0xE0 0x5D CALLER SAR SELFDESTRUCT TIMESTAMP SWAP12 GT 0xAA PUSH5 0x736F6C6343 STOP ADDMOD SMOD STOP CALLER ",
"sourceMap": "58:133:0:-:0;;;96:2;84:14;;;;;;;;;;;;;;;;;;;;119:3;104:18;;;;;;;;;;;;;;;;;;;;166:20;;;;;;;;;;;;;;;;;;;;;58:133;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "6080604052600080fdfea2646970667358221220b4741c1661c041d48830166ab2bcb8095a967c981d24bde05d331dff429b11aa64736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xB4 PUSH21 0x1C1661C041D48830166AB2BCB8095A967C981D24BD 0xE0 0x5D CALLER SAR SELFDESTRUCT TIMESTAMP SWAP12 GT 0xAA PUSH5 0x736F6C6343 STOP ADDMOD SMOD STOP CALLER ",
"sourceMap": "58:133:0:-:0;;;;;"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "12600",
"executionCost": "72917",
"totalCost": "85517"
}
},
"legacyAssembly": {
".code": [
{
"begin": 58,
"end": 191,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 58,
"end": 191,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 58,
"end": 191,
"name": "MSTORE",
"source": 0
},
{
"begin": 96,
"end": 98,
"name": "PUSH",
"source": 0,
"value": "2A"
},
{
"begin": 84,
"end": 98,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 84,
"end": 98,
"name": "DUP1",
"source": 0
},
{
"begin": 84,
"end": 98,
"name": "PUSH",
"source": 0,
"value": "100"
},
{
"begin": 84,
"end": 98,
"name": "EXP",
"source": 0
},
{
"begin": 84,
"end": 98,
"name": "DUP2",
"source": 0
},
{
"begin": 84,
"end": 98,
"name": "SLOAD",
"source": 0
},
{
"begin": 84,
"end": 98,
"name": "DUP2",
"source": 0
},
{
"begin": 84,
"end": 98,
"name": "PUSH",
"source": 0,
"value": "FF"
},
{
"begin": 84,
"end": 98,
"name": "MUL",
"source": 0
},
{
"begin": 84,
"end": 98,
"name": "NOT",
"source": 0
},
{
"begin": 84,
"end": 98,
"name": "AND",
"source": 0
},
{
"begin": 84,
"end": 98,
"name": "SWAP1",
"source": 0
},
{
"begin": 84,
"end": 98,
"name": "DUP4",
"source": 0
},
{
"begin": 84,
"end": 98,
"name": "PUSH",
"source": 0,
"value": "FF"
},
{
"begin": 84,
"end": 98,
"name": "AND",
"source": 0
},
{
"begin": 84,
"end": 98,
"name": "MUL",
"source": 0
},
{
"begin": 84,
"end": 98,
"name": "OR",
"source": 0
},
{
"begin": 84,
"end": 98,
"name": "SWAP1",
"source": 0
},
{
"begin": 84,
"end": 98,
"name": "SSTORE",
"source": 0
},
{
"begin": 84,
"end": 98,
"name": "POP",
"source": 0
},
{
"begin": 119,
"end": 122,
"name": "PUSH",
"source": 0,
"value": "AC"
},
{
"begin": 104,
"end": 122,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 104,
"end": 122,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 104,
"end": 122,
"name": "PUSH",
"source": 0,
"value": "100"
},
{
"begin": 104,
"end": 122,
"name": "EXP",
"source": 0
},
{
"begin": 104,
"end": 122,
"name": "DUP2",
"source": 0
},
{
"begin": 104,
"end": 122,
"name": "SLOAD",
"source": 0
},
{
"begin": 104,
"end": 122,
"name": "DUP2",
"source": 0
},
{
"begin": 104,
"end": 122,
"name": "PUSH",
"source": 0,
"value": "FF"
},
{
"begin": 104,
"end": 122,
"name": "MUL",
"source": 0
},
{
"begin": 104,
"end": 122,
"name": "NOT",
"source": 0
},
{
"begin": 104,
"end": 122,
"name": "AND",
"source": 0
},
{
"begin": 104,
"end": 122,
"name": "SWAP1",
"source": 0
},
{
"begin": 104,
"end": 122,
"name": "DUP4",
"source": 0
},
{
"begin": 104,
"end": 122,
"name": "PUSH",
"source": 0,
"value": "FF"
},
{
"begin": 104,
"end": 122,
"name": "AND",
"source": 0
},
{
"begin": 104,
"end": 122,
"name": "MUL",
"source": 0
},
{
"begin": 104,
"end": 122,
"name": "OR",
"source": 0
},
{
"begin": 104,
"end": 122,
"name": "SWAP1",
"source": 0
},
{
"begin": 104,
"end": 122,
"name": "SSTORE",
"source": 0
},
{
"begin": 104,
"end": 122,
"name": "POP",
"source": 0
},
{
"begin": 166,
"end": 186,
"name": "PUSH",
"source": 0,
"value": "416A697400000000000000000000000000000000000000000000000000000000"
},
{
"begin": 166,
"end": 186,
"name": "PUSH",
"source": 0,
"value": "2"
},
{
"begin": 166,
"end": 186,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 166,
"end": 186,
"name": "PUSH",
"source": 0,
"value": "100"
},
{
"begin": 166,
"end": 186,
"name": "EXP",
"source": 0
},
{
"begin": 166,
"end": 186,
"name": "DUP2",
"source": 0
},
{
"begin": 166,
"end": 186,
"name": "SLOAD",
"source": 0
},
{
"begin": 166,
"end": 186,
"name": "DUP2",
"source": 0
},
{
"begin": 166,
"end": 186,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFF"
},
{
"begin": 166,
"end": 186,
"name": "MUL",
"source": 0
},
{
"begin": 166,
"end": 186,
"name": "NOT",
"source": 0
},
{
"begin": 166,
"end": 186,
"name": "AND",
"source": 0
},
{
"begin": 166,
"end": 186,
"name": "SWAP1",
"source": 0
},
{
"begin": 166,
"end": 186,
"name": "DUP4",
"source": 0
},
{
"begin": 166,
"end": 186,
"name": "PUSH",
"source": 0,
"value": "E0"
},
{
"begin": 166,
"end": 186,
"name": "SHR",
"source": 0
},
{
"begin": 166,
"end": 186,
"name": "MUL",
"source": 0
},
{
"begin": 166,
"end": 186,
"name": "OR",
"source": 0
},
{
"begin": 166,
"end": 186,
"name": "SWAP1",
"source": 0
},
{
"begin": 166,
"end": 186,
"name": "SSTORE",
"source": 0
},
{
"begin": 166,
"end": 186,
"name": "POP",
"source": 0
},
{
"begin": 58,
"end": 191,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 58,
"end": 191,
"name": "DUP1",
"source": 0
},
{
"begin": 58,
"end": 191,
"name": "ISZERO",
"source": 0
},
{
"begin": 58,
"end": 191,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 58,
"end": 191,
"name": "JUMPI",
"source": 0
},
{
"begin": 58,
"end": 191,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 58,
"end": 191,
"name": "DUP1",
"source": 0
},
{
"begin": 58,
"end": 191,
"name": "REVERT",
"source": 0
},
{
"begin": 58,
"end": 191,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 58,
"end": 191,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 58,
"end": 191,
"name": "POP",
"source": 0
},
{
"begin": 58,
"end": 191,
"name": "PUSH #[$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 58,
"end": 191,
"name": "DUP1",
"source": 0
},
{
"begin": 58,
"end": 191,
"name": "PUSH [$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 58,
"end": 191,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 58,
"end": 191,
"name": "CODECOPY",
"source": 0
},
{
"begin": 58,
"end": 191,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 58,
"end": 191,
"name": "RETURN",
"source": 0
}
],
".data": {
"0": {
".auxdata": "a2646970667358221220b4741c1661c041d48830166ab2bcb8095a967c981d24bde05d331dff429b11aa64736f6c63430008070033",
".code": [
{
"begin": 58,
"end": 191,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 58,
"end": 191,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 58,
"end": 191,
"name": "MSTORE",
"source": 0
},
{
"begin": 58,
"end": 191,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 58,
"end": 191,
"name": "DUP1",
"source": 0
},
{
"begin": 58,
"end": 191,
"name": "REVERT",
"source": 0
}
]
}
}
},
"methodIdentifiers": {}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.7+commit.e28d00a7\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/5_variables.sol\":\"variables\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"contracts/5_variables.sol\":{\"keccak256\":\"0x37989730ce9721c665aa298003fa665952a89dfc8adddb722847e429e3a56fc1\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://81a9b7a979ba79298323f06bb94cff60f4bd69990fb8bcbd929b292553be0908\",\"dweb:/ipfs/QmbXDPN3Ud4GU9GzS2PZVWejZFgACW3iUttCwSbKY4QUYB\"]}},\"version\":1}",
"storageLayout": {
"storage": [
{
"astId": 4,
"contract": "contracts/5_variables.sol:variables",
"label": "age",
"offset": 0,
"slot": "0",
"type": "t_uint8"
},
{
"astId": 7,
"contract": "contracts/5_variables.sol:variables",
"label": "height",
"offset": 1,
"slot": "0",
"type": "t_uint8"
},
{
"astId": 9,
"contract": "contracts/5_variables.sol:variables",
"label": "balance",
"offset": 2,
"slot": "0",
"type": "t_int64"
},
{
"astId": 11,
"contract": "contracts/5_variables.sol:variables",
"label": "amount",
"offset": 0,
"slot": "1",
"type": "t_uint256"
},
{
"astId": 14,
"contract": "contracts/5_variables.sol:variables",
"label": "name",
"offset": 0,
"slot": "2",
"type": "t_bytes4"
}
],
"types": {
"t_bytes4": {
"encoding": "inplace",
"label": "bytes4",
"numberOfBytes": "4"
},
"t_int64": {
"encoding": "inplace",
"label": "int64",
"numberOfBytes": "8"
},
"t_uint256": {
"encoding": "inplace",
"label": "uint256",
"numberOfBytes": "32"
},
"t_uint8": {
"encoding": "inplace",
"label": "uint8",
"numberOfBytes": "1"
}
}
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
}
},
"sources": {
"contracts/5_variables.sol": {
"ast": {
"absolutePath": "contracts/5_variables.sol",
"exportedSymbols": {
"variables": [
15
]
},
"id": 16,
"license": "MIT",
"nodeType": "SourceUnit",
"nodes": [
{
"id": 1,
"literals": [
"solidity",
"^",
"0.8",
".7"
],
"nodeType": "PragmaDirective",
"src": "33:23:0"
},
{
"abstract": false,
"baseContracts": [],
"contractDependencies": [],
"contractKind": "contract",
"fullyImplemented": true,
"id": 15,
"linearizedBaseContracts": [
15
],
"name": "variables",
"nameLocation": "67:9:0",
"nodeType": "ContractDefinition",
"nodes": [
{
"constant": false,
"id": 4,
"mutability": "mutable",
"name": "age",
"nameLocation": "90:3:0",
"nodeType": "VariableDeclaration",
"scope": 15,
"src": "84:14:0",
"stateVariable": true,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint8",
"typeString": "uint8"
},
"typeName": {
"id": 2,
"name": "uint8",
"nodeType": "ElementaryTypeName",
"src": "84:5:0",
"typeDescriptions": {
"typeIdentifier": "t_uint8",
"typeString": "uint8"
}
},
"value": {
"hexValue": "3432",
"id": 3,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "number",
"lValueRequested": false,
"nodeType": "Literal",
"src": "96:2:0",
"typeDescriptions": {
"typeIdentifier": "t_rational_42_by_1",
"typeString": "int_const 42"
},
"value": "42"
},
"visibility": "internal"
},
{
"constant": false,
"id": 7,
"mutability": "mutable",
"name": "height",
"nameLocation": "110:6:0",
"nodeType": "VariableDeclaration",
"scope": 15,
"src": "104:18:0",
"stateVariable": true,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint8",
"typeString": "uint8"
},
"typeName": {
"id": 5,
"name": "uint8",
"nodeType": "ElementaryTypeName",
"src": "104:5:0",
"typeDescriptions": {
"typeIdentifier": "t_uint8",
"typeString": "uint8"
}
},
"value": {
"hexValue": "313732",
"id": 6,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "number",
"lValueRequested": false,
"nodeType": "Literal",
"src": "119:3:0",
"typeDescriptions": {
"typeIdentifier": "t_rational_172_by_1",
"typeString": "int_const 172"
},
"value": "172"
},
"visibility": "internal"
},
{
"constant": false,
"id": 9,
"mutability": "mutable",
"name": "balance",
"nameLocation": "135:7:0",
"nodeType": "VariableDeclaration",
"scope": 15,
"src": "129:13:0",
"stateVariable": true,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_int64",
"typeString": "int64"
},
"typeName": {
"id": 8,
"name": "int64",
"nodeType": "ElementaryTypeName",
"src": "129:5:0",
"typeDescriptions": {
"typeIdentifier": "t_int64",
"typeString": "int64"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 11,
"mutability": "mutable",
"name": "amount",
"nameLocation": "153:6:0",
"nodeType": "VariableDeclaration",
"scope": 15,
"src": "148:11:0",
"stateVariable": true,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 10,
"name": "uint",
"nodeType": "ElementaryTypeName",
"src": "148:4:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 14,
"mutability": "mutable",
"name": "name",
"nameLocation": "173:4:0",
"nodeType": "VariableDeclaration",
"scope": 15,
"src": "166:20:0",
"stateVariable": true,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bytes4",
"typeString": "bytes4"
},
"typeName": {
"id": 12,
"name": "bytes4",
"nodeType": "ElementaryTypeName",
"src": "166:6:0",
"typeDescriptions": {
"typeIdentifier": "t_bytes4",
"typeString": "bytes4"
}
},
"value": {
"hexValue": "416a6974",
"id": 13,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "string",
"lValueRequested": false,
"nodeType": "Literal",
"src": "180:6:0",
"typeDescriptions": {
"typeIdentifier": "t_stringliteral_7e6c097673ab4f98086db78323bb57996c2e897be0e647e62845bc4a1f57b72e",
"typeString": "literal_string \"Ajit\""
},
"value": "Ajit"
},
"visibility": "internal"
}
],
"scope": 16,
"src": "58:133:0",
"usedErrors": []
}
],
"src": "33:158:0"
},
"id": 0
}
}
}
}
{
"id": "0121c7000e1ea778711f062d4de6aad0",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.7",
"solcLongVersion": "0.8.7+commit.e28d00a7",
"input": {
"language": "Solidity",
"sources": {
"contracts/4_structure.sol": {
"content": "// SPDX-License-Identifier: MIT\n\n// 1. Solidity Version range of versions\npragma solidity >=0.7.0 <0.9.0;\n\n\n// 2. Name of Contract\ncontract MyContract {\n\n // 3. Variable\n uint public age;\n\n\n // 4. Set Age\n\n\n\n}"
}
},
"settings": {
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"": [
"ast"
],
"*": [
"abi",
"metadata",
"devdoc",
"userdoc",
"storageLayout",
"evm.legacyAssembly",
"evm.bytecode",
"evm.deployedBytecode",
"evm.methodIdentifiers",
"evm.gasEstimates",
"evm.assembly"
]
}
}
}
},
"output": {
"contracts": {
"contracts/4_structure.sol": {
"MyContract": {
"abi": [
{
"inputs": [],
"name": "age",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"evm": {
"assembly": " /* \"contracts/4_structure.sol\":131:218 contract MyContract {... */\n mstore(0x40, 0x80)\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\ntag_1:\n pop\n dataSize(sub_0)\n dup1\n dataOffset(sub_0)\n 0x00\n codecopy\n 0x00\n return\nstop\n\nsub_0: assembly {\n /* \"contracts/4_structure.sol\":131:218 contract MyContract {... */\n mstore(0x40, 0x80)\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\n tag_1:\n pop\n jumpi(tag_2, lt(calldatasize, 0x04))\n shr(0xe0, calldataload(0x00))\n dup1\n 0x262a9dff\n eq\n tag_3\n jumpi\n tag_2:\n 0x00\n dup1\n revert\n /* \"contracts/4_structure.sol\":177:192 uint public age */\n tag_3:\n tag_4\n tag_5\n jump\t// in\n tag_4:\n mload(0x40)\n tag_6\n swap2\n swap1\n tag_7\n jump\t// in\n tag_6:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n tag_5:\n sload(0x00)\n dup2\n jump\t// out\n /* \"#utility.yul\":7:125 */\n tag_9:\n /* \"#utility.yul\":94:118 */\n tag_11\n /* \"#utility.yul\":112:117 */\n dup2\n /* \"#utility.yul\":94:118 */\n tag_12\n jump\t// in\n tag_11:\n /* \"#utility.yul\":89:92 */\n dup3\n /* \"#utility.yul\":82:119 */\n mstore\n /* \"#utility.yul\":7:125 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":131:353 */\n tag_7:\n /* \"#utility.yul\":224:228 */\n 0x00\n /* \"#utility.yul\":262:264 */\n 0x20\n /* \"#utility.yul\":251:260 */\n dup3\n /* \"#utility.yul\":247:265 */\n add\n /* \"#utility.yul\":239:265 */\n swap1\n pop\n /* \"#utility.yul\":275:346 */\n tag_14\n /* \"#utility.yul\":343:344 */\n 0x00\n /* \"#utility.yul\":332:341 */\n dup4\n /* \"#utility.yul\":328:345 */\n add\n /* \"#utility.yul\":319:325 */\n dup5\n /* \"#utility.yul\":275:346 */\n tag_9\n jump\t// in\n tag_14:\n /* \"#utility.yul\":131:353 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":359:436 */\n tag_12:\n /* \"#utility.yul\":396:403 */\n 0x00\n /* \"#utility.yul\":425:430 */\n dup2\n /* \"#utility.yul\":414:430 */\n swap1\n pop\n /* \"#utility.yul\":359:436 */\n swap2\n swap1\n pop\n jump\t// out\n\n auxdata: 0xa2646970667358221220e4131ece41e11ba6272540bf8b252f7c18af6af5797602dfe6517ffdf64e546564736f6c63430008070033\n}\n",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "608060405234801561001057600080fd5b5060b38061001f6000396000f3fe6080604052348015600f57600080fd5b506004361060285760003560e01c8063262a9dff14602d575b600080fd5b60336047565b604051603e9190605a565b60405180910390f35b60005481565b6054816073565b82525050565b6000602082019050606d6000830184604d565b92915050565b600081905091905056fea2646970667358221220e4131ece41e11ba6272540bf8b252f7c18af6af5797602dfe6517ffdf64e546564736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0xB3 DUP1 PUSH2 0x1F PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH1 0xF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH1 0x28 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x262A9DFF EQ PUSH1 0x2D JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x33 PUSH1 0x47 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x3E SWAP2 SWAP1 PUSH1 0x5A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x54 DUP2 PUSH1 0x73 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH1 0x6D PUSH1 0x0 DUP4 ADD DUP5 PUSH1 0x4D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xE4 SGT 0x1E 0xCE COINBASE 0xE1 SHL 0xA6 0x27 0x25 BLOCKHASH 0xBF DUP12 0x25 0x2F PUSH29 0x18AF6AF5797602DFE6517FFDF64E546564736F6C634300080700330000 ",
"sourceMap": "131:87:0:-:0;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@age_3": {
"entryPoint": 71,
"id": 3,
"parameterSlots": 0,
"returnSlots": 0
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 77,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 90,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 115,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:439:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "72:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "89:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "112:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "94:17:1"
},
"nodeType": "YulFunctionCall",
"src": "94:24:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "82:6:1"
},
"nodeType": "YulFunctionCall",
"src": "82:37:1"
},
"nodeType": "YulExpressionStatement",
"src": "82:37:1"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "60:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "67:3:1",
"type": ""
}
],
"src": "7:118:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "229:124:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "239:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "251:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "262:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "247:3:1"
},
"nodeType": "YulFunctionCall",
"src": "247:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "239:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "319:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "332:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "343:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "328:3:1"
},
"nodeType": "YulFunctionCall",
"src": "328:17:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "275:43:1"
},
"nodeType": "YulFunctionCall",
"src": "275:71:1"
},
"nodeType": "YulExpressionStatement",
"src": "275:71:1"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "201:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "213:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "224:4:1",
"type": ""
}
],
"src": "131:222:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "404:32:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "414:16:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "425:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "414:7:1"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "386:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "396:7:1",
"type": ""
}
],
"src": "359:77:1"
}
]
},
"contents": "{\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 cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "6080604052348015600f57600080fd5b506004361060285760003560e01c8063262a9dff14602d575b600080fd5b60336047565b604051603e9190605a565b60405180910390f35b60005481565b6054816073565b82525050565b6000602082019050606d6000830184604d565b92915050565b600081905091905056fea2646970667358221220e4131ece41e11ba6272540bf8b252f7c18af6af5797602dfe6517ffdf64e546564736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH1 0xF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH1 0x28 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x262A9DFF EQ PUSH1 0x2D JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x33 PUSH1 0x47 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x3E SWAP2 SWAP1 PUSH1 0x5A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x54 DUP2 PUSH1 0x73 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH1 0x6D PUSH1 0x0 DUP4 ADD DUP5 PUSH1 0x4D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xE4 SGT 0x1E 0xCE COINBASE 0xE1 SHL 0xA6 0x27 0x25 BLOCKHASH 0xBF DUP12 0x25 0x2F PUSH29 0x18AF6AF5797602DFE6517FFDF64E546564736F6C634300080700330000 ",
"sourceMap": "131:87:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;177:15;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;:::o;7:118:1:-;94:24;112:5;94:24;:::i;:::-;89:3;82:37;7:118;;:::o;131:222::-;224:4;262:2;251:9;247:18;239:26;;275:71;343:1;332:9;328:17;319:6;275:71;:::i;:::-;131:222;;;;:::o;359:77::-;396:7;425:5;414:16;;359:77;;;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "35800",
"executionCost": "87",
"totalCost": "35887"
},
"external": {
"age()": "2407"
}
},
"legacyAssembly": {
".code": [
{
"begin": 131,
"end": 218,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 131,
"end": 218,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 131,
"end": 218,
"name": "MSTORE",
"source": 0
},
{
"begin": 131,
"end": 218,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 131,
"end": 218,
"name": "DUP1",
"source": 0
},
{
"begin": 131,
"end": 218,
"name": "ISZERO",
"source": 0
},
{
"begin": 131,
"end": 218,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 131,
"end": 218,
"name": "JUMPI",
"source": 0
},
{
"begin": 131,
"end": 218,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 131,
"end": 218,
"name": "DUP1",
"source": 0
},
{
"begin": 131,
"end": 218,
"name": "REVERT",
"source": 0
},
{
"begin": 131,
"end": 218,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 131,
"end": 218,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 131,
"end": 218,
"name": "POP",
"source": 0
},
{
"begin": 131,
"end": 218,
"name": "PUSH #[$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 131,
"end": 218,
"name": "DUP1",
"source": 0
},
{
"begin": 131,
"end": 218,
"name": "PUSH [$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 131,
"end": 218,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 131,
"end": 218,
"name": "CODECOPY",
"source": 0
},
{
"begin": 131,
"end": 218,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 131,
"end": 218,
"name": "RETURN",
"source": 0
}
],
".data": {
"0": {
".auxdata": "a2646970667358221220e4131ece41e11ba6272540bf8b252f7c18af6af5797602dfe6517ffdf64e546564736f6c63430008070033",
".code": [
{
"begin": 131,
"end": 218,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 131,
"end": 218,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 131,
"end": 218,
"name": "MSTORE",
"source": 0
},
{
"begin": 131,
"end": 218,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 131,
"end": 218,
"name": "DUP1",
"source": 0
},
{
"begin": 131,
"end": 218,
"name": "ISZERO",
"source": 0
},
{
"begin": 131,
"end": 218,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 131,
"end": 218,
"name": "JUMPI",
"source": 0
},
{
"begin": 131,
"end": 218,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 131,
"end": 218,
"name": "DUP1",
"source": 0
},
{
"begin": 131,
"end": 218,
"name": "REVERT",
"source": 0
},
{
"begin": 131,
"end": 218,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 131,
"end": 218,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 131,
"end": 218,
"name": "POP",
"source": 0
},
{
"begin": 131,
"end": 218,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 131,
"end": 218,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 131,
"end": 218,
"name": "LT",
"source": 0
},
{
"begin": 131,
"end": 218,
"name": "PUSH [tag]",
"source": 0,
"value": "2"
},
{
"begin": 131,
"end": 218,
"name": "JUMPI",
"source": 0
},
{
"begin": 131,
"end": 218,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 131,
"end": 218,
"name": "CALLDATALOAD",
"source": 0
},
{
"begin": 131,
"end": 218,
"name": "PUSH",
"source": 0,
"value": "E0"
},
{
"begin": 131,
"end": 218,
"name": "SHR",
"source": 0
},
{
"begin": 131,
"end": 218,
"name": "DUP1",
"source": 0
},
{
"begin": 131,
"end": 218,
"name": "PUSH",
"source": 0,
"value": "262A9DFF"
},
{
"begin": 131,
"end": 218,
"name": "EQ",
"source": 0
},
{
"begin": 131,
"end": 218,
"name": "PUSH [tag]",
"source": 0,
"value": "3"
},
{
"begin": 131,
"end": 218,
"name": "JUMPI",
"source": 0
},
{
"begin": 131,
"end": 218,
"name": "tag",
"source": 0,
"value": "2"
},
{
"begin": 131,
"end": 218,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 131,
"end": 218,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 131,
"end": 218,
"name": "DUP1",
"source": 0
},
{
"begin": 131,
"end": 218,
"name": "REVERT",
"source": 0
},
{
"begin": 177,
"end": 192,
"name": "tag",
"source": 0,
"value": "3"
},
{
"begin": 177,
"end": 192,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 177,
"end": 192,
"name": "PUSH [tag]",
"source": 0,
"value": "4"
},
{
"begin": 177,
"end": 192,
"name": "PUSH [tag]",
"source": 0,
"value": "5"
},
{
"begin": 177,
"end": 192,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 177,
"end": 192,
"name": "tag",
"source": 0,
"value": "4"
},
{
"begin": 177,
"end": 192,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 177,
"end": 192,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 177,
"end": 192,
"name": "MLOAD",
"source": 0
},
{
"begin": 177,
"end": 192,
"name": "PUSH [tag]",
"source": 0,
"value": "6"
},
{
"begin": 177,
"end": 192,
"name": "SWAP2",
"source": 0
},
{
"begin": 177,
"end": 192,
"name": "SWAP1",
"source": 0
},
{
"begin": 177,
"end": 192,
"name": "PUSH [tag]",
"source": 0,
"value": "7"
},
{
"begin": 177,
"end": 192,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 177,
"end": 192,
"name": "tag",
"source": 0,
"value": "6"
},
{
"begin": 177,
"end": 192,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 177,
"end": 192,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 177,
"end": 192,
"name": "MLOAD",
"source": 0
},
{
"begin": 177,
"end": 192,
"name": "DUP1",
"source": 0
},
{
"begin": 177,
"end": 192,
"name": "SWAP2",
"source": 0
},
{
"begin": 177,
"end": 192,
"name": "SUB",
"source": 0
},
{
"begin": 177,
"end": 192,
"name": "SWAP1",
"source": 0
},
{
"begin": 177,
"end": 192,
"name": "RETURN",
"source": 0
},
{
"begin": 177,
"end": 192,
"name": "tag",
"source": 0,
"value": "5"
},
{
"begin": 177,
"end": 192,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 177,
"end": 192,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 177,
"end": 192,
"name": "SLOAD",
"source": 0
},
{
"begin": 177,
"end": 192,
"name": "DUP2",
"source": 0
},
{
"begin": 177,
"end": 192,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 7,
"end": 125,
"name": "tag",
"source": 1,
"value": "9"
},
{
"begin": 7,
"end": 125,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 94,
"end": 118,
"name": "PUSH [tag]",
"source": 1,
"value": "11"
},
{
"begin": 112,
"end": 117,
"name": "DUP2",
"source": 1
},
{
"begin": 94,
"end": 118,
"name": "PUSH [tag]",
"source": 1,
"value": "12"
},
{
"begin": 94,
"end": 118,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 94,
"end": 118,
"name": "tag",
"source": 1,
"value": "11"
},
{
"begin": 94,
"end": 118,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 89,
"end": 92,
"name": "DUP3",
"source": 1
},
{
"begin": 82,
"end": 119,
"name": "MSTORE",
"source": 1
},
{
"begin": 7,
"end": 125,
"name": "POP",
"source": 1
},
{
"begin": 7,
"end": 125,
"name": "POP",
"source": 1
},
{
"begin": 7,
"end": 125,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 131,
"end": 353,
"name": "tag",
"source": 1,
"value": "7"
},
{
"begin": 131,
"end": 353,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 224,
"end": 228,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 262,
"end": 264,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 251,
"end": 260,
"name": "DUP3",
"source": 1
},
{
"begin": 247,
"end": 265,
"name": "ADD",
"source": 1
},
{
"begin": 239,
"end": 265,
"name": "SWAP1",
"source": 1
},
{
"begin": 239,
"end": 265,
"name": "POP",
"source": 1
},
{
"begin": 275,
"end": 346,
"name": "PUSH [tag]",
"source": 1,
"value": "14"
},
{
"begin": 343,
"end": 344,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 332,
"end": 341,
"name": "DUP4",
"source": 1
},
{
"begin": 328,
"end": 345,
"name": "ADD",
"source": 1
},
{
"begin": 319,
"end": 325,
"name": "DUP5",
"source": 1
},
{
"begin": 275,
"end": 346,
"name": "PUSH [tag]",
"source": 1,
"value": "9"
},
{
"begin": 275,
"end": 346,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 275,
"end": 346,
"name": "tag",
"source": 1,
"value": "14"
},
{
"begin": 275,
"end": 346,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 131,
"end": 353,
"name": "SWAP3",
"source": 1
},
{
"begin": 131,
"end": 353,
"name": "SWAP2",
"source": 1
},
{
"begin": 131,
"end": 353,
"name": "POP",
"source": 1
},
{
"begin": 131,
"end": 353,
"name": "POP",
"source": 1
},
{
"begin": 131,
"end": 353,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 359,
"end": 436,
"name": "tag",
"source": 1,
"value": "12"
},
{
"begin": 359,
"end": 436,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 396,
"end": 403,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 425,
"end": 430,
"name": "DUP2",
"source": 1
},
{
"begin": 414,
"end": 430,
"name": "SWAP1",
"source": 1
},
{
"begin": 414,
"end": 430,
"name": "POP",
"source": 1
},
{
"begin": 359,
"end": 436,
"name": "SWAP2",
"source": 1
},
{
"begin": 359,
"end": 436,
"name": "SWAP1",
"source": 1
},
{
"begin": 359,
"end": 436,
"name": "POP",
"source": 1
},
{
"begin": 359,
"end": 436,
"name": "JUMP",
"source": 1,
"value": "[out]"
}
]
}
}
},
"methodIdentifiers": {
"age()": "262a9dff"
}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.7+commit.e28d00a7\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"age\",\"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/4_structure.sol\":\"MyContract\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"contracts/4_structure.sol\":{\"keccak256\":\"0xad8a7a44362a11e127c5c06566dbd2144fd72f2ed9420e9ac0b9bd7dc6f403ca\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://3a503f42d1ffffb26120d1a7b72dfa6f122844438d2c9d88ce966ed825189861\",\"dweb:/ipfs/QmaJmY2EXDJyewPFg9RWitcAaNRXZMMgL4xmuN8PHcBbQh\"]}},\"version\":1}",
"storageLayout": {
"storage": [
{
"astId": 3,
"contract": "contracts/4_structure.sol:MyContract",
"label": "age",
"offset": 0,
"slot": "0",
"type": "t_uint256"
}
],
"types": {
"t_uint256": {
"encoding": "inplace",
"label": "uint256",
"numberOfBytes": "32"
}
}
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
}
},
"sources": {
"contracts/4_structure.sol": {
"ast": {
"absolutePath": "contracts/4_structure.sol",
"exportedSymbols": {
"MyContract": [
4
]
},
"id": 5,
"license": "MIT",
"nodeType": "SourceUnit",
"nodes": [
{
"id": 1,
"literals": [
"solidity",
">=",
"0.7",
".0",
"<",
"0.9",
".0"
],
"nodeType": "PragmaDirective",
"src": "74:31:0"
},
{
"abstract": false,
"baseContracts": [],
"contractDependencies": [],
"contractKind": "contract",
"fullyImplemented": true,
"id": 4,
"linearizedBaseContracts": [
4
],
"name": "MyContract",
"nameLocation": "140:10:0",
"nodeType": "ContractDefinition",
"nodes": [
{
"constant": false,
"functionSelector": "262a9dff",
"id": 3,
"mutability": "mutable",
"name": "age",
"nameLocation": "189:3:0",
"nodeType": "VariableDeclaration",
"scope": 4,
"src": "177:15:0",
"stateVariable": true,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 2,
"name": "uint",
"nodeType": "ElementaryTypeName",
"src": "177:4:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"visibility": "public"
}
],
"scope": 5,
"src": "131:87:0",
"usedErrors": []
}
],
"src": "74:144:0"
},
"id": 0
}
}
}
}
{
"id": "02d4f3a0cb8ba60984ecfd43761b6796",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.7",
"solcLongVersion": "0.8.7+commit.e28d00a7",
"input": {
"language": "Solidity",
"sources": {
"contracts/5_variables.sol": {
"content": "pragma solidity ^0.8.7;\n\n"
}
},
"settings": {
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"": [
"ast"
],
"*": [
"abi",
"metadata",
"devdoc",
"userdoc",
"storageLayout",
"evm.legacyAssembly",
"evm.bytecode",
"evm.deployedBytecode",
"evm.methodIdentifiers",
"evm.gasEstimates",
"evm.assembly"
]
}
}
}
},
"output": {
"errors": [
{
"component": "general",
"errorCode": "1878",
"formattedMessage": "Warning: SPDX license identifier not provided in source file. Before publishing, consider adding a comment containing \"SPDX-License-Identifier: <SPDX-License>\" to each source file. Use \"SPDX-License-Identifier: UNLICENSED\" for non-open-source code. Please see https://spdx.org for more information.\n--> contracts/5_variables.sol\n\n",
"message": "SPDX license identifier not provided in source file. Before publishing, consider adding a comment containing \"SPDX-License-Identifier: <SPDX-License>\" to each source file. Use \"SPDX-License-Identifier: UNLICENSED\" for non-open-source code. Please see https://spdx.org for more information.",
"severity": "warning",
"sourceLocation": {
"end": -1,
"file": "contracts/5_variables.sol",
"start": -1
},
"type": "Warning"
}
],
"sources": {
"contracts/5_variables.sol": {
"ast": {
"absolutePath": "contracts/5_variables.sol",
"exportedSymbols": {},
"id": 2,
"nodeType": "SourceUnit",
"nodes": [
{
"id": 1,
"literals": [
"solidity",
"^",
"0.8",
".7"
],
"nodeType": "PragmaDirective",
"src": "0:23:0"
}
],
"src": "0:25:0"
},
"id": 0
}
}
}
}
{
"id": "049a79e00ff615be9d7679992ed407b1",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.17",
"solcLongVersion": "0.8.17+commit.8df45f5f",
"input": {
"language": "Solidity",
"sources": {
"contracts/7_array.sol": {
"content": "// SPDX-License-Identifier: MIT\n\npragma solidity ^0.8.7;\n\ncontract array {\n uint8[42] ages;\n\n function setAge(uint8 _index, uint8 _value) public {\n ages[_index] = _value;\n }\n \n function getAge(uint8 _index) public view returns(uint8) {\n return ages[_index];\n }\n\n}\n\n\n// Contract in VM Lu0xd9145CCE52D386f254917e481eB44e9943F39138 \n"
}
},
"settings": {
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"": [
"ast"
],
"*": [
"abi",
"metadata",
"devdoc",
"userdoc",
"storageLayout",
"evm.legacyAssembly",
"evm.bytecode",
"evm.deployedBytecode",
"evm.methodIdentifiers",
"evm.gasEstimates",
"evm.assembly"
]
}
}
}
},
"output": {
"contracts": {
"contracts/7_array.sol": {
"array": {
"abi": [
{
"inputs": [
{
"internalType": "uint8",
"name": "_index",
"type": "uint8"
}
],
"name": "getAge",
"outputs": [
{
"internalType": "uint8",
"name": "",
"type": "uint8"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint8",
"name": "_index",
"type": "uint8"
},
{
"internalType": "uint8",
"name": "_value",
"type": "uint8"
}
],
"name": "setAge",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"evm": {
"assembly": " /* \"contracts/7_array.sol\":58:295 contract array {... */\n mstore(0x40, 0x80)\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\ntag_1:\n pop\n dataSize(sub_0)\n dup1\n dataOffset(sub_0)\n 0x00\n codecopy\n 0x00\n return\nstop\n\nsub_0: assembly {\n /* \"contracts/7_array.sol\":58:295 contract array {... */\n mstore(0x40, 0x80)\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\n tag_1:\n pop\n jumpi(tag_2, lt(calldatasize, 0x04))\n shr(0xe0, calldataload(0x00))\n dup1\n 0x47e12f8c\n eq\n tag_3\n jumpi\n dup1\n 0x72958220\n eq\n tag_4\n jumpi\n tag_2:\n 0x00\n dup1\n revert\n /* \"contracts/7_array.sol\":199:292 function getAge(uint8 _index) public view returns(uint8) {... */\n tag_3:\n tag_5\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_6\n swap2\n swap1\n tag_7\n jump\t// in\n tag_6:\n tag_8\n jump\t// in\n tag_5:\n mload(0x40)\n tag_9\n swap2\n swap1\n tag_10\n jump\t// in\n tag_9:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/7_array.sol\":100:189 function setAge(uint8 _index, uint8 _value) public {... */\n tag_4:\n tag_11\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_12\n swap2\n swap1\n tag_13\n jump\t// in\n tag_12:\n tag_14\n jump\t// in\n tag_11:\n stop\n /* \"contracts/7_array.sol\":199:292 function getAge(uint8 _index) public view returns(uint8) {... */\n tag_8:\n /* \"contracts/7_array.sol\":249:254 uint8 */\n 0x00\n /* \"contracts/7_array.sol\":273:277 ages */\n dup1\n /* \"contracts/7_array.sol\":278:284 _index */\n dup3\n /* \"contracts/7_array.sol\":273:285 ages[_index] */\n 0xff\n and\n 0x2a\n dup2\n lt\n tag_16\n jumpi\n tag_17\n tag_18\n jump\t// in\n tag_17:\n tag_16:\n 0x20\n swap2\n dup3\n dup3\n div\n add\n swap2\n swap1\n mod\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xff\n and\n /* \"contracts/7_array.sol\":266:285 return ages[_index] */\n swap1\n pop\n /* \"contracts/7_array.sol\":199:292 function getAge(uint8 _index) public view returns(uint8) {... */\n swap2\n swap1\n pop\n jump\t// out\n /* \"contracts/7_array.sol\":100:189 function setAge(uint8 _index, uint8 _value) public {... */\n tag_14:\n /* \"contracts/7_array.sol\":176:182 _value */\n dup1\n /* \"contracts/7_array.sol\":161:165 ages */\n 0x00\n /* \"contracts/7_array.sol\":166:172 _index */\n dup4\n /* \"contracts/7_array.sol\":161:173 ages[_index] */\n 0xff\n and\n 0x2a\n dup2\n lt\n tag_21\n jumpi\n tag_22\n tag_18\n jump\t// in\n tag_22:\n tag_21:\n 0x20\n swap2\n dup3\n dup3\n div\n add\n swap2\n swap1\n mod\n /* \"contracts/7_array.sol\":161:182 ages[_index] = _value */\n 0x0100\n exp\n dup2\n sload\n dup2\n 0xff\n mul\n not\n and\n swap1\n dup4\n 0xff\n and\n mul\n or\n swap1\n sstore\n pop\n /* \"contracts/7_array.sol\":100:189 function setAge(uint8 _index, uint8 _value) public {... */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":88:205 */\n tag_25:\n /* \"#utility.yul\":197:198 */\n 0x00\n /* \"#utility.yul\":194:195 */\n dup1\n /* \"#utility.yul\":187:199 */\n revert\n /* \"#utility.yul\":334:420 */\n tag_27:\n /* \"#utility.yul\":369:376 */\n 0x00\n /* \"#utility.yul\":409:413 */\n 0xff\n /* \"#utility.yul\":402:407 */\n dup3\n /* \"#utility.yul\":398:414 */\n and\n /* \"#utility.yul\":387:414 */\n swap1\n pop\n /* \"#utility.yul\":334:420 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":426:544 */\n tag_28:\n /* \"#utility.yul\":497:519 */\n tag_37\n /* \"#utility.yul\":513:518 */\n dup2\n /* \"#utility.yul\":497:519 */\n tag_27\n jump\t// in\n tag_37:\n /* \"#utility.yul\":490:495 */\n dup2\n /* \"#utility.yul\":487:520 */\n eq\n /* \"#utility.yul\":477:538 */\n tag_38\n jumpi\n /* \"#utility.yul\":534:535 */\n 0x00\n /* \"#utility.yul\":531:532 */\n dup1\n /* \"#utility.yul\":524:536 */\n revert\n /* \"#utility.yul\":477:538 */\n tag_38:\n /* \"#utility.yul\":426:544 */\n pop\n jump\t// out\n /* \"#utility.yul\":550:685 */\n tag_29:\n /* \"#utility.yul\":594:599 */\n 0x00\n /* \"#utility.yul\":632:638 */\n dup2\n /* \"#utility.yul\":619:639 */\n calldataload\n /* \"#utility.yul\":610:639 */\n swap1\n pop\n /* \"#utility.yul\":648:679 */\n tag_40\n /* \"#utility.yul\":673:678 */\n dup2\n /* \"#utility.yul\":648:679 */\n tag_28\n jump\t// in\n tag_40:\n /* \"#utility.yul\":550:685 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":691:1016 */\n tag_7:\n /* \"#utility.yul\":748:754 */\n 0x00\n /* \"#utility.yul\":797:799 */\n 0x20\n /* \"#utility.yul\":785:794 */\n dup3\n /* \"#utility.yul\":776:783 */\n dup5\n /* \"#utility.yul\":772:795 */\n sub\n /* \"#utility.yul\":768:800 */\n slt\n /* \"#utility.yul\":765:884 */\n iszero\n tag_42\n jumpi\n /* \"#utility.yul\":803:882 */\n tag_43\n tag_25\n jump\t// in\n tag_43:\n /* \"#utility.yul\":765:884 */\n tag_42:\n /* \"#utility.yul\":923:924 */\n 0x00\n /* \"#utility.yul\":948:999 */\n tag_44\n /* \"#utility.yul\":991:998 */\n dup5\n /* \"#utility.yul\":982:988 */\n dup3\n /* \"#utility.yul\":971:980 */\n dup6\n /* \"#utility.yul\":967:989 */\n add\n /* \"#utility.yul\":948:999 */\n tag_29\n jump\t// in\n tag_44:\n /* \"#utility.yul\":938:999 */\n swap2\n pop\n /* \"#utility.yul\":894:1009 */\n pop\n /* \"#utility.yul\":691:1016 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1022:1134 */\n tag_30:\n /* \"#utility.yul\":1105:1127 */\n tag_46\n /* \"#utility.yul\":1121:1126 */\n dup2\n /* \"#utility.yul\":1105:1127 */\n tag_27\n jump\t// in\n tag_46:\n /* \"#utility.yul\":1100:1103 */\n dup3\n /* \"#utility.yul\":1093:1128 */\n mstore\n /* \"#utility.yul\":1022:1134 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1140:1354 */\n tag_10:\n /* \"#utility.yul\":1229:1233 */\n 0x00\n /* \"#utility.yul\":1267:1269 */\n 0x20\n /* \"#utility.yul\":1256:1265 */\n dup3\n /* \"#utility.yul\":1252:1270 */\n add\n /* \"#utility.yul\":1244:1270 */\n swap1\n pop\n /* \"#utility.yul\":1280:1347 */\n tag_48\n /* \"#utility.yul\":1344:1345 */\n 0x00\n /* \"#utility.yul\":1333:1342 */\n dup4\n /* \"#utility.yul\":1329:1346 */\n add\n /* \"#utility.yul\":1320:1326 */\n dup5\n /* \"#utility.yul\":1280:1347 */\n tag_30\n jump\t// in\n tag_48:\n /* \"#utility.yul\":1140:1354 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1360:1826 */\n tag_13:\n /* \"#utility.yul\":1424:1430 */\n 0x00\n /* \"#utility.yul\":1432:1438 */\n dup1\n /* \"#utility.yul\":1481:1483 */\n 0x40\n /* \"#utility.yul\":1469:1478 */\n dup4\n /* \"#utility.yul\":1460:1467 */\n dup6\n /* \"#utility.yul\":1456:1479 */\n sub\n /* \"#utility.yul\":1452:1484 */\n slt\n /* \"#utility.yul\":1449:1568 */\n iszero\n tag_50\n jumpi\n /* \"#utility.yul\":1487:1566 */\n tag_51\n tag_25\n jump\t// in\n tag_51:\n /* \"#utility.yul\":1449:1568 */\n tag_50:\n /* \"#utility.yul\":1607:1608 */\n 0x00\n /* \"#utility.yul\":1632:1683 */\n tag_52\n /* \"#utility.yul\":1675:1682 */\n dup6\n /* \"#utility.yul\":1666:1672 */\n dup3\n /* \"#utility.yul\":1655:1664 */\n dup7\n /* \"#utility.yul\":1651:1673 */\n add\n /* \"#utility.yul\":1632:1683 */\n tag_29\n jump\t// in\n tag_52:\n /* \"#utility.yul\":1622:1683 */\n swap3\n pop\n /* \"#utility.yul\":1578:1693 */\n pop\n /* \"#utility.yul\":1732:1734 */\n 0x20\n /* \"#utility.yul\":1758:1809 */\n tag_53\n /* \"#utility.yul\":1801:1808 */\n dup6\n /* \"#utility.yul\":1792:1798 */\n dup3\n /* \"#utility.yul\":1781:1790 */\n dup7\n /* \"#utility.yul\":1777:1799 */\n add\n /* \"#utility.yul\":1758:1809 */\n tag_29\n jump\t// in\n tag_53:\n /* \"#utility.yul\":1748:1809 */\n swap2\n pop\n /* \"#utility.yul\":1703:1819 */\n pop\n /* \"#utility.yul\":1360:1826 */\n swap3\n pop\n swap3\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1832:2012 */\n tag_18:\n /* \"#utility.yul\":1880:1957 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":1877:1878 */\n 0x00\n /* \"#utility.yul\":1870:1958 */\n mstore\n /* \"#utility.yul\":1977:1981 */\n 0x32\n /* \"#utility.yul\":1974:1975 */\n 0x04\n /* \"#utility.yul\":1967:1982 */\n mstore\n /* \"#utility.yul\":2001:2005 */\n 0x24\n /* \"#utility.yul\":1998:1999 */\n 0x00\n /* \"#utility.yul\":1991:2006 */\n revert\n\n auxdata: 0xa2646970667358221220a2c87e70eb2c1dc2dca219753de09a302837430ecfaa80d09c50a14cf8f4861f64736f6c63430008110033\n}\n",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50610232806100206000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c806347e12f8c1461003b578063729582201461006b575b600080fd5b61005560048036038101906100509190610136565b610087565b6040516100629190610172565b60405180910390f35b6100856004803603810190610080919061018d565b6100bc565b005b6000808260ff16602a811061009f5761009e6101cd565b5b602091828204019190069054906101000a900460ff169050919050565b8060008360ff16602a81106100d4576100d36101cd565b5b602091828204019190066101000a81548160ff021916908360ff1602179055505050565b600080fd5b600060ff82169050919050565b610113816100fd565b811461011e57600080fd5b50565b6000813590506101308161010a565b92915050565b60006020828403121561014c5761014b6100f8565b5b600061015a84828501610121565b91505092915050565b61016c816100fd565b82525050565b60006020820190506101876000830184610163565b92915050565b600080604083850312156101a4576101a36100f8565b5b60006101b285828601610121565b92505060206101c385828601610121565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220a2c87e70eb2c1dc2dca219753de09a302837430ecfaa80d09c50a14cf8f4861f64736f6c63430008110033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x232 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 0x36 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x47E12F8C EQ PUSH2 0x3B JUMPI DUP1 PUSH4 0x72958220 EQ PUSH2 0x6B JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x55 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x50 SWAP2 SWAP1 PUSH2 0x136 JUMP JUMPDEST PUSH2 0x87 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x62 SWAP2 SWAP1 PUSH2 0x172 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x85 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x80 SWAP2 SWAP1 PUSH2 0x18D JUMP JUMPDEST PUSH2 0xBC JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH1 0xFF AND PUSH1 0x2A DUP2 LT PUSH2 0x9F JUMPI PUSH2 0x9E PUSH2 0x1CD JUMP JUMPDEST JUMPDEST PUSH1 0x20 SWAP2 DUP3 DUP3 DIV ADD SWAP2 SWAP1 MOD SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP1 PUSH1 0x0 DUP4 PUSH1 0xFF AND PUSH1 0x2A DUP2 LT PUSH2 0xD4 JUMPI PUSH2 0xD3 PUSH2 0x1CD JUMP JUMPDEST JUMPDEST PUSH1 0x20 SWAP2 DUP3 DUP3 DIV ADD SWAP2 SWAP1 MOD 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 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x113 DUP2 PUSH2 0xFD JUMP JUMPDEST DUP2 EQ PUSH2 0x11E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x130 DUP2 PUSH2 0x10A JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x14C JUMPI PUSH2 0x14B PUSH2 0xF8 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x15A DUP5 DUP3 DUP6 ADD PUSH2 0x121 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x16C DUP2 PUSH2 0xFD JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x187 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x163 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1A4 JUMPI PUSH2 0x1A3 PUSH2 0xF8 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1B2 DUP6 DUP3 DUP7 ADD PUSH2 0x121 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1C3 DUP6 DUP3 DUP7 ADD PUSH2 0x121 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 LOG2 0xC8 PUSH31 0x70EB2C1DC2DCA219753DE09A302837430ECFAA80D09C50A14CF8F4861F6473 PUSH16 0x6C634300081100330000000000000000 ",
"sourceMap": "58:237:0:-:0;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@getAge_31": {
"entryPoint": 135,
"id": 31,
"parameterSlots": 1,
"returnSlots": 1
},
"@setAge_19": {
"entryPoint": 188,
"id": 19,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_decode_t_uint8": {
"entryPoint": 289,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint8": {
"entryPoint": 310,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint8t_uint8": {
"entryPoint": 397,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_encode_t_uint8_to_t_uint8_fromStack": {
"entryPoint": 355,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed": {
"entryPoint": 370,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"cleanup_t_uint8": {
"entryPoint": 253,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x32": {
"entryPoint": 461,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 248,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"validator_revert_t_uint8": {
"entryPoint": 266,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:2015: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": "377:43:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "387:27:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "402:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "409:4:1",
"type": "",
"value": "0xff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "398:3:1"
},
"nodeType": "YulFunctionCall",
"src": "398:16:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "387:7:1"
}
]
}
]
},
"name": "cleanup_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "359:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "369:7:1",
"type": ""
}
],
"src": "334:86:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "467:77:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "522:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "531:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "534:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "524:6:1"
},
"nodeType": "YulFunctionCall",
"src": "524:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "524:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "490:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "513:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint8",
"nodeType": "YulIdentifier",
"src": "497:15:1"
},
"nodeType": "YulFunctionCall",
"src": "497:22:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "487:2:1"
},
"nodeType": "YulFunctionCall",
"src": "487:33:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "480:6:1"
},
"nodeType": "YulFunctionCall",
"src": "480:41:1"
},
"nodeType": "YulIf",
"src": "477:61:1"
}
]
},
"name": "validator_revert_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "460:5:1",
"type": ""
}
],
"src": "426:118:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "600:85:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "610:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "632:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "619:12:1"
},
"nodeType": "YulFunctionCall",
"src": "619:20:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "610:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "673:5:1"
}
],
"functionName": {
"name": "validator_revert_t_uint8",
"nodeType": "YulIdentifier",
"src": "648:24:1"
},
"nodeType": "YulFunctionCall",
"src": "648:31:1"
},
"nodeType": "YulExpressionStatement",
"src": "648:31:1"
}
]
},
"name": "abi_decode_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "578:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "586:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "594:5:1",
"type": ""
}
],
"src": "550:135:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "755:261:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "801:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "803:77:1"
},
"nodeType": "YulFunctionCall",
"src": "803:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "803:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "776:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "785:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "772:3:1"
},
"nodeType": "YulFunctionCall",
"src": "772:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "797:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "768:3:1"
},
"nodeType": "YulFunctionCall",
"src": "768:32:1"
},
"nodeType": "YulIf",
"src": "765:119:1"
},
{
"nodeType": "YulBlock",
"src": "894:115:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "909:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "923:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "913:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "938:61:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "971:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "982:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "967:3:1"
},
"nodeType": "YulFunctionCall",
"src": "967:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "991:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint8",
"nodeType": "YulIdentifier",
"src": "948:18:1"
},
"nodeType": "YulFunctionCall",
"src": "948:51:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "938:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "725:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "736:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "748:6:1",
"type": ""
}
],
"src": "691:325:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1083:51:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1100:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1121:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint8",
"nodeType": "YulIdentifier",
"src": "1105:15:1"
},
"nodeType": "YulFunctionCall",
"src": "1105:22:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1093:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1093:35:1"
},
"nodeType": "YulExpressionStatement",
"src": "1093:35:1"
}
]
},
"name": "abi_encode_t_uint8_to_t_uint8_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1071:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1078:3:1",
"type": ""
}
],
"src": "1022:112:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1234:120:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1244:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1256:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1267:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1252:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1252:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1244:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1320:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1333:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1344:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1329:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1329:17:1"
}
],
"functionName": {
"name": "abi_encode_t_uint8_to_t_uint8_fromStack",
"nodeType": "YulIdentifier",
"src": "1280:39:1"
},
"nodeType": "YulFunctionCall",
"src": "1280:67:1"
},
"nodeType": "YulExpressionStatement",
"src": "1280:67:1"
}
]
},
"name": "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1206:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1218:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1229:4:1",
"type": ""
}
],
"src": "1140:214:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1439:387:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1485:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "1487:77:1"
},
"nodeType": "YulFunctionCall",
"src": "1487:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "1487:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1460:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1469:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1456:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1456:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1481:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1452:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1452:32:1"
},
"nodeType": "YulIf",
"src": "1449:119:1"
},
{
"nodeType": "YulBlock",
"src": "1578:115:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1593:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1607:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1597:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1622:61:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1655:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1666:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1651:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1651:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1675:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint8",
"nodeType": "YulIdentifier",
"src": "1632:18:1"
},
"nodeType": "YulFunctionCall",
"src": "1632:51:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1622:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1703:116:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1718:16:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1732:2:1",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1722:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1748:61:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1781:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1792:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1777:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1777:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1801:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint8",
"nodeType": "YulIdentifier",
"src": "1758:18:1"
},
"nodeType": "YulFunctionCall",
"src": "1758:51:1"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1748:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint8t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1401:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1412:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1424:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1432:6:1",
"type": ""
}
],
"src": "1360:466:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1860:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1877:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1880:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1870:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1870:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "1870:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1974:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1977:4:1",
"type": "",
"value": "0x32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1967:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1967:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "1967:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1998:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2001:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1991:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1991:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "1991:15:1"
}
]
},
"name": "panic_error_0x32",
"nodeType": "YulFunctionDefinition",
"src": "1832:180: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_uint8(value) -> cleaned {\n cleaned := and(value, 0xff)\n }\n\n function validator_revert_t_uint8(value) {\n if iszero(eq(value, cleanup_t_uint8(value))) { revert(0, 0) }\n }\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_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_uint8t_uint8(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_uint8(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint8(add(headStart, offset), dataEnd)\n }\n\n }\n\n function panic_error_0x32() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x32)\n revert(0, 0x24)\n }\n\n}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106100365760003560e01c806347e12f8c1461003b578063729582201461006b575b600080fd5b61005560048036038101906100509190610136565b610087565b6040516100629190610172565b60405180910390f35b6100856004803603810190610080919061018d565b6100bc565b005b6000808260ff16602a811061009f5761009e6101cd565b5b602091828204019190069054906101000a900460ff169050919050565b8060008360ff16602a81106100d4576100d36101cd565b5b602091828204019190066101000a81548160ff021916908360ff1602179055505050565b600080fd5b600060ff82169050919050565b610113816100fd565b811461011e57600080fd5b50565b6000813590506101308161010a565b92915050565b60006020828403121561014c5761014b6100f8565b5b600061015a84828501610121565b91505092915050565b61016c816100fd565b82525050565b60006020820190506101876000830184610163565b92915050565b600080604083850312156101a4576101a36100f8565b5b60006101b285828601610121565b92505060206101c385828601610121565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220a2c87e70eb2c1dc2dca219753de09a302837430ecfaa80d09c50a14cf8f4861f64736f6c63430008110033",
"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 0x47E12F8C EQ PUSH2 0x3B JUMPI DUP1 PUSH4 0x72958220 EQ PUSH2 0x6B JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x55 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x50 SWAP2 SWAP1 PUSH2 0x136 JUMP JUMPDEST PUSH2 0x87 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x62 SWAP2 SWAP1 PUSH2 0x172 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x85 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x80 SWAP2 SWAP1 PUSH2 0x18D JUMP JUMPDEST PUSH2 0xBC JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH1 0xFF AND PUSH1 0x2A DUP2 LT PUSH2 0x9F JUMPI PUSH2 0x9E PUSH2 0x1CD JUMP JUMPDEST JUMPDEST PUSH1 0x20 SWAP2 DUP3 DUP3 DIV ADD SWAP2 SWAP1 MOD SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP1 PUSH1 0x0 DUP4 PUSH1 0xFF AND PUSH1 0x2A DUP2 LT PUSH2 0xD4 JUMPI PUSH2 0xD3 PUSH2 0x1CD JUMP JUMPDEST JUMPDEST PUSH1 0x20 SWAP2 DUP3 DUP3 DIV ADD SWAP2 SWAP1 MOD 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 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x113 DUP2 PUSH2 0xFD JUMP JUMPDEST DUP2 EQ PUSH2 0x11E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x130 DUP2 PUSH2 0x10A JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x14C JUMPI PUSH2 0x14B PUSH2 0xF8 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x15A DUP5 DUP3 DUP6 ADD PUSH2 0x121 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x16C DUP2 PUSH2 0xFD JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x187 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x163 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1A4 JUMPI PUSH2 0x1A3 PUSH2 0xF8 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1B2 DUP6 DUP3 DUP7 ADD PUSH2 0x121 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1C3 DUP6 DUP3 DUP7 ADD PUSH2 0x121 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 LOG2 0xC8 PUSH31 0x70EB2C1DC2DCA219753DE09A302837430ECFAA80D09C50A14CF8F4861F6473 PUSH16 0x6C634300081100330000000000000000 ",
"sourceMap": "58:237:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;199:93;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;100:89;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;199:93;249:5;273:4;278:6;273:12;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;266:19;;199:93;;;:::o;100:89::-;176:6;161:4;166:6;161:12;;;;;;;;;:::i;:::-;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;100:89;;:::o;88:117:1:-;197:1;194;187:12;334:86;369:7;409:4;402:5;398:16;387:27;;334:86;;;:::o;426:118::-;497:22;513:5;497:22;:::i;:::-;490:5;487:33;477:61;;534:1;531;524:12;477:61;426:118;:::o;550:135::-;594:5;632:6;619:20;610:29;;648:31;673:5;648:31;:::i;:::-;550:135;;;;:::o;691:325::-;748:6;797:2;785:9;776:7;772:23;768:32;765:119;;;803:79;;:::i;:::-;765:119;923:1;948:51;991:7;982:6;971:9;967:22;948:51;:::i;:::-;938:61;;894:115;691:325;;;;:::o;1022:112::-;1105:22;1121:5;1105:22;:::i;:::-;1100:3;1093:35;1022:112;;:::o;1140:214::-;1229:4;1267:2;1256:9;1252:18;1244:26;;1280:67;1344:1;1333:9;1329:17;1320:6;1280:67;:::i;:::-;1140:214;;;;:::o;1360:466::-;1424:6;1432;1481:2;1469:9;1460:7;1456:23;1452:32;1449:119;;;1487:79;;:::i;:::-;1449:119;1607:1;1632:51;1675:7;1666:6;1655:9;1651:22;1632:51;:::i;:::-;1622:61;;1578:115;1732:2;1758:51;1801:7;1792:6;1781:9;1777:22;1758:51;:::i;:::-;1748:61;;1703:116;1360:466;;;;;:::o;1832:180::-;1880:77;1877:1;1870:88;1977:4;1974:1;1967:15;2001:4;1998:1;1991:15"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "112400",
"executionCost": "159",
"totalCost": "112559"
},
"external": {
"getAge(uint8)": "infinite",
"setAge(uint8,uint8)": "infinite"
}
},
"legacyAssembly": {
".code": [
{
"begin": 58,
"end": 295,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 58,
"end": 295,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 58,
"end": 295,
"name": "MSTORE",
"source": 0
},
{
"begin": 58,
"end": 295,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 58,
"end": 295,
"name": "DUP1",
"source": 0
},
{
"begin": 58,
"end": 295,
"name": "ISZERO",
"source": 0
},
{
"begin": 58,
"end": 295,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 58,
"end": 295,
"name": "JUMPI",
"source": 0
},
{
"begin": 58,
"end": 295,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 58,
"end": 295,
"name": "DUP1",
"source": 0
},
{
"begin": 58,
"end": 295,
"name": "REVERT",
"source": 0
},
{
"begin": 58,
"end": 295,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 58,
"end": 295,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 58,
"end": 295,
"name": "POP",
"source": 0
},
{
"begin": 58,
"end": 295,
"name": "PUSH #[$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 58,
"end": 295,
"name": "DUP1",
"source": 0
},
{
"begin": 58,
"end": 295,
"name": "PUSH [$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 58,
"end": 295,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 58,
"end": 295,
"name": "CODECOPY",
"source": 0
},
{
"begin": 58,
"end": 295,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 58,
"end": 295,
"name": "RETURN",
"source": 0
}
],
".data": {
"0": {
".auxdata": "a2646970667358221220a2c87e70eb2c1dc2dca219753de09a302837430ecfaa80d09c50a14cf8f4861f64736f6c63430008110033",
".code": [
{
"begin": 58,
"end": 295,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 58,
"end": 295,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 58,
"end": 295,
"name": "MSTORE",
"source": 0
},
{
"begin": 58,
"end": 295,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 58,
"end": 295,
"name": "DUP1",
"source": 0
},
{
"begin": 58,
"end": 295,
"name": "ISZERO",
"source": 0
},
{
"begin": 58,
"end": 295,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 58,
"end": 295,
"name": "JUMPI",
"source": 0
},
{
"begin": 58,
"end": 295,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 58,
"end": 295,
"name": "DUP1",
"source": 0
},
{
"begin": 58,
"end": 295,
"name": "REVERT",
"source": 0
},
{
"begin": 58,
"end": 295,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 58,
"end": 295,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 58,
"end": 295,
"name": "POP",
"source": 0
},
{
"begin": 58,
"end": 295,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 58,
"end": 295,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 58,
"end": 295,
"name": "LT",
"source": 0
},
{
"begin": 58,
"end": 295,
"name": "PUSH [tag]",
"source": 0,
"value": "2"
},
{
"begin": 58,
"end": 295,
"name": "JUMPI",
"source": 0
},
{
"begin": 58,
"end": 295,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 58,
"end": 295,
"name": "CALLDATALOAD",
"source": 0
},
{
"begin": 58,
"end": 295,
"name": "PUSH",
"source": 0,
"value": "E0"
},
{
"begin": 58,
"end": 295,
"name": "SHR",
"source": 0
},
{
"begin": 58,
"end": 295,
"name": "DUP1",
"source": 0
},
{
"begin": 58,
"end": 295,
"name": "PUSH",
"source": 0,
"value": "47E12F8C"
},
{
"begin": 58,
"end": 295,
"name": "EQ",
"source": 0
},
{
"begin": 58,
"end": 295,
"name": "PUSH [tag]",
"source": 0,
"value": "3"
},
{
"begin": 58,
"end": 295,
"name": "JUMPI",
"source": 0
},
{
"begin": 58,
"end": 295,
"name": "DUP1",
"source": 0
},
{
"begin": 58,
"end": 295,
"name": "PUSH",
"source": 0,
"value": "72958220"
},
{
"begin": 58,
"end": 295,
"name": "EQ",
"source": 0
},
{
"begin": 58,
"end": 295,
"name": "PUSH [tag]",
"source": 0,
"value": "4"
},
{
"begin": 58,
"end": 295,
"name": "JUMPI",
"source": 0
},
{
"begin": 58,
"end": 295,
"name": "tag",
"source": 0,
"value": "2"
},
{
"begin": 58,
"end": 295,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 58,
"end": 295,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 58,
"end": 295,
"name": "DUP1",
"source": 0
},
{
"begin": 58,
"end": 295,
"name": "REVERT",
"source": 0
},
{
"begin": 199,
"end": 292,
"name": "tag",
"source": 0,
"value": "3"
},
{
"begin": 199,
"end": 292,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 199,
"end": 292,
"name": "PUSH [tag]",
"source": 0,
"value": "5"
},
{
"begin": 199,
"end": 292,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 199,
"end": 292,
"name": "DUP1",
"source": 0
},
{
"begin": 199,
"end": 292,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 199,
"end": 292,
"name": "SUB",
"source": 0
},
{
"begin": 199,
"end": 292,
"name": "DUP2",
"source": 0
},
{
"begin": 199,
"end": 292,
"name": "ADD",
"source": 0
},
{
"begin": 199,
"end": 292,
"name": "SWAP1",
"source": 0
},
{
"begin": 199,
"end": 292,
"name": "PUSH [tag]",
"source": 0,
"value": "6"
},
{
"begin": 199,
"end": 292,
"name": "SWAP2",
"source": 0
},
{
"begin": 199,
"end": 292,
"name": "SWAP1",
"source": 0
},
{
"begin": 199,
"end": 292,
"name": "PUSH [tag]",
"source": 0,
"value": "7"
},
{
"begin": 199,
"end": 292,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 199,
"end": 292,
"name": "tag",
"source": 0,
"value": "6"
},
{
"begin": 199,
"end": 292,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 199,
"end": 292,
"name": "PUSH [tag]",
"source": 0,
"value": "8"
},
{
"begin": 199,
"end": 292,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 199,
"end": 292,
"name": "tag",
"source": 0,
"value": "5"
},
{
"begin": 199,
"end": 292,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 199,
"end": 292,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 199,
"end": 292,
"name": "MLOAD",
"source": 0
},
{
"begin": 199,
"end": 292,
"name": "PUSH [tag]",
"source": 0,
"value": "9"
},
{
"begin": 199,
"end": 292,
"name": "SWAP2",
"source": 0
},
{
"begin": 199,
"end": 292,
"name": "SWAP1",
"source": 0
},
{
"begin": 199,
"end": 292,
"name": "PUSH [tag]",
"source": 0,
"value": "10"
},
{
"begin": 199,
"end": 292,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 199,
"end": 292,
"name": "tag",
"source": 0,
"value": "9"
},
{
"begin": 199,
"end": 292,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 199,
"end": 292,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 199,
"end": 292,
"name": "MLOAD",
"source": 0
},
{
"begin": 199,
"end": 292,
"name": "DUP1",
"source": 0
},
{
"begin": 199,
"end": 292,
"name": "SWAP2",
"source": 0
},
{
"begin": 199,
"end": 292,
"name": "SUB",
"source": 0
},
{
"begin": 199,
"end": 292,
"name": "SWAP1",
"source": 0
},
{
"begin": 199,
"end": 292,
"name": "RETURN",
"source": 0
},
{
"begin": 100,
"end": 189,
"name": "tag",
"source": 0,
"value": "4"
},
{
"begin": 100,
"end": 189,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 100,
"end": 189,
"name": "PUSH [tag]",
"source": 0,
"value": "11"
},
{
"begin": 100,
"end": 189,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 100,
"end": 189,
"name": "DUP1",
"source": 0
},
{
"begin": 100,
"end": 189,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 100,
"end": 189,
"name": "SUB",
"source": 0
},
{
"begin": 100,
"end": 189,
"name": "DUP2",
"source": 0
},
{
"begin": 100,
"end": 189,
"name": "ADD",
"source": 0
},
{
"begin": 100,
"end": 189,
"name": "SWAP1",
"source": 0
},
{
"begin": 100,
"end": 189,
"name": "PUSH [tag]",
"source": 0,
"value": "12"
},
{
"begin": 100,
"end": 189,
"name": "SWAP2",
"source": 0
},
{
"begin": 100,
"end": 189,
"name": "SWAP1",
"source": 0
},
{
"begin": 100,
"end": 189,
"name": "PUSH [tag]",
"source": 0,
"value": "13"
},
{
"begin": 100,
"end": 189,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 100,
"end": 189,
"name": "tag",
"source": 0,
"value": "12"
},
{
"begin": 100,
"end": 189,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 100,
"end": 189,
"name": "PUSH [tag]",
"source": 0,
"value": "14"
},
{
"begin": 100,
"end": 189,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 100,
"end": 189,
"name": "tag",
"source": 0,
"value": "11"
},
{
"begin": 100,
"end": 189,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 100,
"end": 189,
"name": "STOP",
"source": 0
},
{
"begin": 199,
"end": 292,
"name": "tag",
"source": 0,
"value": "8"
},
{
"begin": 199,
"end": 292,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 249,
"end": 254,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 273,
"end": 277,
"name": "DUP1",
"source": 0
},
{
"begin": 278,
"end": 284,
"name": "DUP3",
"source": 0
},
{
"begin": 273,
"end": 285,
"name": "PUSH",
"source": 0,
"value": "FF"
},
{
"begin": 273,
"end": 285,
"name": "AND",
"source": 0
},
{
"begin": 273,
"end": 285,
"name": "PUSH",
"source": 0,
"value": "2A"
},
{
"begin": 273,
"end": 285,
"name": "DUP2",
"source": 0
},
{
"begin": 273,
"end": 285,
"name": "LT",
"source": 0
},
{
"begin": 273,
"end": 285,
"name": "PUSH [tag]",
"source": 0,
"value": "16"
},
{
"begin": 273,
"end": 285,
"name": "JUMPI",
"source": 0
},
{
"begin": 273,
"end": 285,
"name": "PUSH [tag]",
"source": 0,
"value": "17"
},
{
"begin": 273,
"end": 285,
"name": "PUSH [tag]",
"source": 0,
"value": "18"
},
{
"begin": 273,
"end": 285,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 273,
"end": 285,
"name": "tag",
"source": 0,
"value": "17"
},
{
"begin": 273,
"end": 285,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 273,
"end": 285,
"name": "tag",
"source": 0,
"value": "16"
},
{
"begin": 273,
"end": 285,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 273,
"end": 285,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 273,
"end": 285,
"name": "SWAP2",
"source": 0
},
{
"begin": 273,
"end": 285,
"name": "DUP3",
"source": 0
},
{
"begin": 273,
"end": 285,
"name": "DUP3",
"source": 0
},
{
"begin": 273,
"end": 285,
"name": "DIV",
"source": 0
},
{
"begin": 273,
"end": 285,
"name": "ADD",
"source": 0
},
{
"begin": 273,
"end": 285,
"name": "SWAP2",
"source": 0
},
{
"begin": 273,
"end": 285,
"name": "SWAP1",
"source": 0
},
{
"begin": 273,
"end": 285,
"name": "MOD",
"source": 0
},
{
"begin": 273,
"end": 285,
"name": "SWAP1",
"source": 0
},
{
"begin": 273,
"end": 285,
"name": "SLOAD",
"source": 0
},
{
"begin": 273,
"end": 285,
"name": "SWAP1",
"source": 0
},
{
"begin": 273,
"end": 285,
"name": "PUSH",
"source": 0,
"value": "100"
},
{
"begin": 273,
"end": 285,
"name": "EXP",
"source": 0
},
{
"begin": 273,
"end": 285,
"name": "SWAP1",
"source": 0
},
{
"begin": 273,
"end": 285,
"name": "DIV",
"source": 0
},
{
"begin": 273,
"end": 285,
"name": "PUSH",
"source": 0,
"value": "FF"
},
{
"begin": 273,
"end": 285,
"name": "AND",
"source": 0
},
{
"begin": 266,
"end": 285,
"name": "SWAP1",
"source": 0
},
{
"begin": 266,
"end": 285,
"name": "POP",
"source": 0
},
{
"begin": 199,
"end": 292,
"name": "SWAP2",
"source": 0
},
{
"begin": 199,
"end": 292,
"name": "SWAP1",
"source": 0
},
{
"begin": 199,
"end": 292,
"name": "POP",
"source": 0
},
{
"begin": 199,
"end": 292,
"jumpType": "[out]",
"name": "JUMP",
"source": 0
},
{
"begin": 100,
"end": 189,
"name": "tag",
"source": 0,
"value": "14"
},
{
"begin": 100,
"end": 189,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 176,
"end": 182,
"name": "DUP1",
"source": 0
},
{
"begin": 161,
"end": 165,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 166,
"end": 172,
"name": "DUP4",
"source": 0
},
{
"begin": 161,
"end": 173,
"name": "PUSH",
"source": 0,
"value": "FF"
},
{
"begin": 161,
"end": 173,
"name": "AND",
"source": 0
},
{
"begin": 161,
"end": 173,
"name": "PUSH",
"source": 0,
"value": "2A"
},
{
"begin": 161,
"end": 173,
"name": "DUP2",
"source": 0
},
{
"begin": 161,
"end": 173,
"name": "LT",
"source": 0
},
{
"begin": 161,
"end": 173,
"name": "PUSH [tag]",
"source": 0,
"value": "21"
},
{
"begin": 161,
"end": 173,
"name": "JUMPI",
"source": 0
},
{
"begin": 161,
"end": 173,
"name": "PUSH [tag]",
"source": 0,
"value": "22"
},
{
"begin": 161,
"end": 173,
"name": "PUSH [tag]",
"source": 0,
"value": "18"
},
{
"begin": 161,
"end": 173,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 161,
"end": 173,
"name": "tag",
"source": 0,
"value": "22"
},
{
"begin": 161,
"end": 173,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 161,
"end": 173,
"name": "tag",
"source": 0,
"value": "21"
},
{
"begin": 161,
"end": 173,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 161,
"end": 173,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 161,
"end": 173,
"name": "SWAP2",
"source": 0
},
{
"begin": 161,
"end": 173,
"name": "DUP3",
"source": 0
},
{
"begin": 161,
"end": 173,
"name": "DUP3",
"source": 0
},
{
"begin": 161,
"end": 173,
"name": "DIV",
"source": 0
},
{
"begin": 161,
"end": 173,
"name": "ADD",
"source": 0
},
{
"begin": 161,
"end": 173,
"name": "SWAP2",
"source": 0
},
{
"begin": 161,
"end": 173,
"name": "SWAP1",
"source": 0
},
{
"begin": 161,
"end": 173,
"name": "MOD",
"source": 0
},
{
"begin": 161,
"end": 182,
"name": "PUSH",
"source": 0,
"value": "100"
},
{
"begin": 161,
"end": 182,
"name": "EXP",
"source": 0
},
{
"begin": 161,
"end": 182,
"name": "DUP2",
"source": 0
},
{
"begin": 161,
"end": 182,
"name": "SLOAD",
"source": 0
},
{
"begin": 161,
"end": 182,
"name": "DUP2",
"source": 0
},
{
"begin": 161,
"end": 182,
"name": "PUSH",
"source": 0,
"value": "FF"
},
{
"begin": 161,
"end": 182,
"name": "MUL",
"source": 0
},
{
"begin": 161,
"end": 182,
"name": "NOT",
"source": 0
},
{
"begin": 161,
"end": 182,
"name": "AND",
"source": 0
},
{
"begin": 161,
"end": 182,
"name": "SWAP1",
"source": 0
},
{
"begin": 161,
"end": 182,
"name": "DUP4",
"source": 0
},
{
"begin": 161,
"end": 182,
"name": "PUSH",
"source": 0,
"value": "FF"
},
{
"begin": 161,
"end": 182,
"name": "AND",
"source": 0
},
{
"begin": 161,
"end": 182,
"name": "MUL",
"source": 0
},
{
"begin": 161,
"end": 182,
"name": "OR",
"source": 0
},
{
"begin": 161,
"end": 182,
"name": "SWAP1",
"source": 0
},
{
"begin": 161,
"end": 182,
"name": "SSTORE",
"source": 0
},
{
"begin": 161,
"end": 182,
"name": "POP",
"source": 0
},
{
"begin": 100,
"end": 189,
"name": "POP",
"source": 0
},
{
"begin": 100,
"end": 189,
"name": "POP",
"source": 0
},
{
"begin": 100,
"end": 189,
"jumpType": "[out]",
"name": "JUMP",
"source": 0
},
{
"begin": 88,
"end": 205,
"name": "tag",
"source": 1,
"value": "25"
},
{
"begin": 88,
"end": 205,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 197,
"end": 198,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 194,
"end": 195,
"name": "DUP1",
"source": 1
},
{
"begin": 187,
"end": 199,
"name": "REVERT",
"source": 1
},
{
"begin": 334,
"end": 420,
"name": "tag",
"source": 1,
"value": "27"
},
{
"begin": 334,
"end": 420,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 369,
"end": 376,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 409,
"end": 413,
"name": "PUSH",
"source": 1,
"value": "FF"
},
{
"begin": 402,
"end": 407,
"name": "DUP3",
"source": 1
},
{
"begin": 398,
"end": 414,
"name": "AND",
"source": 1
},
{
"begin": 387,
"end": 414,
"name": "SWAP1",
"source": 1
},
{
"begin": 387,
"end": 414,
"name": "POP",
"source": 1
},
{
"begin": 334,
"end": 420,
"name": "SWAP2",
"source": 1
},
{
"begin": 334,
"end": 420,
"name": "SWAP1",
"source": 1
},
{
"begin": 334,
"end": 420,
"name": "POP",
"source": 1
},
{
"begin": 334,
"end": 420,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 426,
"end": 544,
"name": "tag",
"source": 1,
"value": "28"
},
{
"begin": 426,
"end": 544,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 497,
"end": 519,
"name": "PUSH [tag]",
"source": 1,
"value": "37"
},
{
"begin": 513,
"end": 518,
"name": "DUP2",
"source": 1
},
{
"begin": 497,
"end": 519,
"name": "PUSH [tag]",
"source": 1,
"value": "27"
},
{
"begin": 497,
"end": 519,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 497,
"end": 519,
"name": "tag",
"source": 1,
"value": "37"
},
{
"begin": 497,
"end": 519,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 490,
"end": 495,
"name": "DUP2",
"source": 1
},
{
"begin": 487,
"end": 520,
"name": "EQ",
"source": 1
},
{
"begin": 477,
"end": 538,
"name": "PUSH [tag]",
"source": 1,
"value": "38"
},
{
"begin": 477,
"end": 538,
"name": "JUMPI",
"source": 1
},
{
"begin": 534,
"end": 535,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 531,
"end": 532,
"name": "DUP1",
"source": 1
},
{
"begin": 524,
"end": 536,
"name": "REVERT",
"source": 1
},
{
"begin": 477,
"end": 538,
"name": "tag",
"source": 1,
"value": "38"
},
{
"begin": 477,
"end": 538,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 426,
"end": 544,
"name": "POP",
"source": 1
},
{
"begin": 426,
"end": 544,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 550,
"end": 685,
"name": "tag",
"source": 1,
"value": "29"
},
{
"begin": 550,
"end": 685,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 594,
"end": 599,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 632,
"end": 638,
"name": "DUP2",
"source": 1
},
{
"begin": 619,
"end": 639,
"name": "CALLDATALOAD",
"source": 1
},
{
"begin": 610,
"end": 639,
"name": "SWAP1",
"source": 1
},
{
"begin": 610,
"end": 639,
"name": "POP",
"source": 1
},
{
"begin": 648,
"end": 679,
"name": "PUSH [tag]",
"source": 1,
"value": "40"
},
{
"begin": 673,
"end": 678,
"name": "DUP2",
"source": 1
},
{
"begin": 648,
"end": 679,
"name": "PUSH [tag]",
"source": 1,
"value": "28"
},
{
"begin": 648,
"end": 679,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 648,
"end": 679,
"name": "tag",
"source": 1,
"value": "40"
},
{
"begin": 648,
"end": 679,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 550,
"end": 685,
"name": "SWAP3",
"source": 1
},
{
"begin": 550,
"end": 685,
"name": "SWAP2",
"source": 1
},
{
"begin": 550,
"end": 685,
"name": "POP",
"source": 1
},
{
"begin": 550,
"end": 685,
"name": "POP",
"source": 1
},
{
"begin": 550,
"end": 685,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 691,
"end": 1016,
"name": "tag",
"source": 1,
"value": "7"
},
{
"begin": 691,
"end": 1016,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 748,
"end": 754,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 797,
"end": 799,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 785,
"end": 794,
"name": "DUP3",
"source": 1
},
{
"begin": 776,
"end": 783,
"name": "DUP5",
"source": 1
},
{
"begin": 772,
"end": 795,
"name": "SUB",
"source": 1
},
{
"begin": 768,
"end": 800,
"name": "SLT",
"source": 1
},
{
"begin": 765,
"end": 884,
"name": "ISZERO",
"source": 1
},
{
"begin": 765,
"end": 884,
"name": "PUSH [tag]",
"source": 1,
"value": "42"
},
{
"begin": 765,
"end": 884,
"name": "JUMPI",
"source": 1
},
{
"begin": 803,
"end": 882,
"name": "PUSH [tag]",
"source": 1,
"value": "43"
},
{
"begin": 803,
"end": 882,
"name": "PUSH [tag]",
"source": 1,
"value": "25"
},
{
"begin": 803,
"end": 882,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 803,
"end": 882,
"name": "tag",
"source": 1,
"value": "43"
},
{
"begin": 803,
"end": 882,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 765,
"end": 884,
"name": "tag",
"source": 1,
"value": "42"
},
{
"begin": 765,
"end": 884,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 923,
"end": 924,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 948,
"end": 999,
"name": "PUSH [tag]",
"source": 1,
"value": "44"
},
{
"begin": 991,
"end": 998,
"name": "DUP5",
"source": 1
},
{
"begin": 982,
"end": 988,
"name": "DUP3",
"source": 1
},
{
"begin": 971,
"end": 980,
"name": "DUP6",
"source": 1
},
{
"begin": 967,
"end": 989,
"name": "ADD",
"source": 1
},
{
"begin": 948,
"end": 999,
"name": "PUSH [tag]",
"source": 1,
"value": "29"
},
{
"begin": 948,
"end": 999,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 948,
"end": 999,
"name": "tag",
"source": 1,
"value": "44"
},
{
"begin": 948,
"end": 999,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 938,
"end": 999,
"name": "SWAP2",
"source": 1
},
{
"begin": 938,
"end": 999,
"name": "POP",
"source": 1
},
{
"begin": 894,
"end": 1009,
"name": "POP",
"source": 1
},
{
"begin": 691,
"end": 1016,
"name": "SWAP3",
"source": 1
},
{
"begin": 691,
"end": 1016,
"name": "SWAP2",
"source": 1
},
{
"begin": 691,
"end": 1016,
"name": "POP",
"source": 1
},
{
"begin": 691,
"end": 1016,
"name": "POP",
"source": 1
},
{
"begin": 691,
"end": 1016,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 1022,
"end": 1134,
"name": "tag",
"source": 1,
"value": "30"
},
{
"begin": 1022,
"end": 1134,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1105,
"end": 1127,
"name": "PUSH [tag]",
"source": 1,
"value": "46"
},
{
"begin": 1121,
"end": 1126,
"name": "DUP2",
"source": 1
},
{
"begin": 1105,
"end": 1127,
"name": "PUSH [tag]",
"source": 1,
"value": "27"
},
{
"begin": 1105,
"end": 1127,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 1105,
"end": 1127,
"name": "tag",
"source": 1,
"value": "46"
},
{
"begin": 1105,
"end": 1127,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1100,
"end": 1103,
"name": "DUP3",
"source": 1
},
{
"begin": 1093,
"end": 1128,
"name": "MSTORE",
"source": 1
},
{
"begin": 1022,
"end": 1134,
"name": "POP",
"source": 1
},
{
"begin": 1022,
"end": 1134,
"name": "POP",
"source": 1
},
{
"begin": 1022,
"end": 1134,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 1140,
"end": 1354,
"name": "tag",
"source": 1,
"value": "10"
},
{
"begin": 1140,
"end": 1354,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1229,
"end": 1233,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1267,
"end": 1269,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 1256,
"end": 1265,
"name": "DUP3",
"source": 1
},
{
"begin": 1252,
"end": 1270,
"name": "ADD",
"source": 1
},
{
"begin": 1244,
"end": 1270,
"name": "SWAP1",
"source": 1
},
{
"begin": 1244,
"end": 1270,
"name": "POP",
"source": 1
},
{
"begin": 1280,
"end": 1347,
"name": "PUSH [tag]",
"source": 1,
"value": "48"
},
{
"begin": 1344,
"end": 1345,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1333,
"end": 1342,
"name": "DUP4",
"source": 1
},
{
"begin": 1329,
"end": 1346,
"name": "ADD",
"source": 1
},
{
"begin": 1320,
"end": 1326,
"name": "DUP5",
"source": 1
},
{
"begin": 1280,
"end": 1347,
"name": "PUSH [tag]",
"source": 1,
"value": "30"
},
{
"begin": 1280,
"end": 1347,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 1280,
"end": 1347,
"name": "tag",
"source": 1,
"value": "48"
},
{
"begin": 1280,
"end": 1347,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1140,
"end": 1354,
"name": "SWAP3",
"source": 1
},
{
"begin": 1140,
"end": 1354,
"name": "SWAP2",
"source": 1
},
{
"begin": 1140,
"end": 1354,
"name": "POP",
"source": 1
},
{
"begin": 1140,
"end": 1354,
"name": "POP",
"source": 1
},
{
"begin": 1140,
"end": 1354,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 1360,
"end": 1826,
"name": "tag",
"source": 1,
"value": "13"
},
{
"begin": 1360,
"end": 1826,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1424,
"end": 1430,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1432,
"end": 1438,
"name": "DUP1",
"source": 1
},
{
"begin": 1481,
"end": 1483,
"name": "PUSH",
"source": 1,
"value": "40"
},
{
"begin": 1469,
"end": 1478,
"name": "DUP4",
"source": 1
},
{
"begin": 1460,
"end": 1467,
"name": "DUP6",
"source": 1
},
{
"begin": 1456,
"end": 1479,
"name": "SUB",
"source": 1
},
{
"begin": 1452,
"end": 1484,
"name": "SLT",
"source": 1
},
{
"begin": 1449,
"end": 1568,
"name": "ISZERO",
"source": 1
},
{
"begin": 1449,
"end": 1568,
"name": "PUSH [tag]",
"source": 1,
"value": "50"
},
{
"begin": 1449,
"end": 1568,
"name": "JUMPI",
"source": 1
},
{
"begin": 1487,
"end": 1566,
"name": "PUSH [tag]",
"source": 1,
"value": "51"
},
{
"begin": 1487,
"end": 1566,
"name": "PUSH [tag]",
"source": 1,
"value": "25"
},
{
"begin": 1487,
"end": 1566,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 1487,
"end": 1566,
"name": "tag",
"source": 1,
"value": "51"
},
{
"begin": 1487,
"end": 1566,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1449,
"end": 1568,
"name": "tag",
"source": 1,
"value": "50"
},
{
"begin": 1449,
"end": 1568,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1607,
"end": 1608,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1632,
"end": 1683,
"name": "PUSH [tag]",
"source": 1,
"value": "52"
},
{
"begin": 1675,
"end": 1682,
"name": "DUP6",
"source": 1
},
{
"begin": 1666,
"end": 1672,
"name": "DUP3",
"source": 1
},
{
"begin": 1655,
"end": 1664,
"name": "DUP7",
"source": 1
},
{
"begin": 1651,
"end": 1673,
"name": "ADD",
"source": 1
},
{
"begin": 1632,
"end": 1683,
"name": "PUSH [tag]",
"source": 1,
"value": "29"
},
{
"begin": 1632,
"end": 1683,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 1632,
"end": 1683,
"name": "tag",
"source": 1,
"value": "52"
},
{
"begin": 1632,
"end": 1683,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1622,
"end": 1683,
"name": "SWAP3",
"source": 1
},
{
"begin": 1622,
"end": 1683,
"name": "POP",
"source": 1
},
{
"begin": 1578,
"end": 1693,
"name": "POP",
"source": 1
},
{
"begin": 1732,
"end": 1734,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 1758,
"end": 1809,
"name": "PUSH [tag]",
"source": 1,
"value": "53"
},
{
"begin": 1801,
"end": 1808,
"name": "DUP6",
"source": 1
},
{
"begin": 1792,
"end": 1798,
"name": "DUP3",
"source": 1
},
{
"begin": 1781,
"end": 1790,
"name": "DUP7",
"source": 1
},
{
"begin": 1777,
"end": 1799,
"name": "ADD",
"source": 1
},
{
"begin": 1758,
"end": 1809,
"name": "PUSH [tag]",
"source": 1,
"value": "29"
},
{
"begin": 1758,
"end": 1809,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 1758,
"end": 1809,
"name": "tag",
"source": 1,
"value": "53"
},
{
"begin": 1758,
"end": 1809,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1748,
"end": 1809,
"name": "SWAP2",
"source": 1
},
{
"begin": 1748,
"end": 1809,
"name": "POP",
"source": 1
},
{
"begin": 1703,
"end": 1819,
"name": "POP",
"source": 1
},
{
"begin": 1360,
"end": 1826,
"name": "SWAP3",
"source": 1
},
{
"begin": 1360,
"end": 1826,
"name": "POP",
"source": 1
},
{
"begin": 1360,
"end": 1826,
"name": "SWAP3",
"source": 1
},
{
"begin": 1360,
"end": 1826,
"name": "SWAP1",
"source": 1
},
{
"begin": 1360,
"end": 1826,
"name": "POP",
"source": 1
},
{
"begin": 1360,
"end": 1826,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 1832,
"end": 2012,
"name": "tag",
"source": 1,
"value": "18"
},
{
"begin": 1832,
"end": 2012,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1880,
"end": 1957,
"name": "PUSH",
"source": 1,
"value": "4E487B7100000000000000000000000000000000000000000000000000000000"
},
{
"begin": 1877,
"end": 1878,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1870,
"end": 1958,
"name": "MSTORE",
"source": 1
},
{
"begin": 1977,
"end": 1981,
"name": "PUSH",
"source": 1,
"value": "32"
},
{
"begin": 1974,
"end": 1975,
"name": "PUSH",
"source": 1,
"value": "4"
},
{
"begin": 1967,
"end": 1982,
"name": "MSTORE",
"source": 1
},
{
"begin": 2001,
"end": 2005,
"name": "PUSH",
"source": 1,
"value": "24"
},
{
"begin": 1998,
"end": 1999,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1991,
"end": 2006,
"name": "REVERT",
"source": 1
}
]
}
},
"sourceList": [
"contracts/7_array.sol",
"#utility.yul"
]
},
"methodIdentifiers": {
"getAge(uint8)": "47e12f8c",
"setAge(uint8,uint8)": "72958220"
}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.17+commit.8df45f5f\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"uint8\",\"name\":\"_index\",\"type\":\"uint8\"}],\"name\":\"getAge\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint8\",\"name\":\"_index\",\"type\":\"uint8\"},{\"internalType\":\"uint8\",\"name\":\"_value\",\"type\":\"uint8\"}],\"name\":\"setAge\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/7_array.sol\":\"array\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"contracts/7_array.sol\":{\"keccak256\":\"0x16501bc096d30c837d2d0f2147c65e17e22bad14efeb9b2e5241457eb9bcd725\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a4c9833dcaf1b596b73eca6279fc381abec99588c8ab1f531e022505668598bc\",\"dweb:/ipfs/QmRa9BHKAaYcPvYpFmSFMbDKns7VgWb7nmUwRAzrHVk5B2\"]}},\"version\":1}",
"storageLayout": {
"storage": [
{
"astId": 5,
"contract": "contracts/7_array.sol:array",
"label": "ages",
"offset": 0,
"slot": "0",
"type": "t_array(t_uint8)42_storage"
}
],
"types": {
"t_array(t_uint8)42_storage": {
"base": "t_uint8",
"encoding": "inplace",
"label": "uint8[42]",
"numberOfBytes": "64"
},
"t_uint8": {
"encoding": "inplace",
"label": "uint8",
"numberOfBytes": "1"
}
}
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
}
},
"sources": {
"contracts/7_array.sol": {
"ast": {
"absolutePath": "contracts/7_array.sol",
"exportedSymbols": {
"array": [
32
]
},
"id": 33,
"license": "MIT",
"nodeType": "SourceUnit",
"nodes": [
{
"id": 1,
"literals": [
"solidity",
"^",
"0.8",
".7"
],
"nodeType": "PragmaDirective",
"src": "33:23:0"
},
{
"abstract": false,
"baseContracts": [],
"canonicalName": "array",
"contractDependencies": [],
"contractKind": "contract",
"fullyImplemented": true,
"id": 32,
"linearizedBaseContracts": [
32
],
"name": "array",
"nameLocation": "67:5:0",
"nodeType": "ContractDefinition",
"nodes": [
{
"constant": false,
"id": 5,
"mutability": "mutable",
"name": "ages",
"nameLocation": "89:4:0",
"nodeType": "VariableDeclaration",
"scope": 32,
"src": "79:14:0",
"stateVariable": true,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_array$_t_uint8_$42_storage",
"typeString": "uint8[42]"
},
"typeName": {
"baseType": {
"id": 2,
"name": "uint8",
"nodeType": "ElementaryTypeName",
"src": "79:5:0",
"typeDescriptions": {
"typeIdentifier": "t_uint8",
"typeString": "uint8"
}
},
"id": 4,
"length": {
"hexValue": "3432",
"id": 3,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "number",
"lValueRequested": false,
"nodeType": "Literal",
"src": "85:2:0",
"typeDescriptions": {
"typeIdentifier": "t_rational_42_by_1",
"typeString": "int_const 42"
},
"value": "42"
},
"nodeType": "ArrayTypeName",
"src": "79:9:0",
"typeDescriptions": {
"typeIdentifier": "t_array$_t_uint8_$42_storage_ptr",
"typeString": "uint8[42]"
}
},
"visibility": "internal"
},
{
"body": {
"id": 18,
"nodeType": "Block",
"src": "151:38:0",
"statements": [
{
"expression": {
"id": 16,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"leftHandSide": {
"baseExpression": {
"id": 12,
"name": "ages",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 5,
"src": "161:4:0",
"typeDescriptions": {
"typeIdentifier": "t_array$_t_uint8_$42_storage",
"typeString": "uint8[42] storage ref"
}
},
"id": 14,
"indexExpression": {
"id": 13,
"name": "_index",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 7,
"src": "166:6:0",
"typeDescriptions": {
"typeIdentifier": "t_uint8",
"typeString": "uint8"
}
},
"isConstant": false,
"isLValue": true,
"isPure": false,
"lValueRequested": true,
"nodeType": "IndexAccess",
"src": "161:12:0",
"typeDescriptions": {
"typeIdentifier": "t_uint8",
"typeString": "uint8"
}
},
"nodeType": "Assignment",
"operator": "=",
"rightHandSide": {
"id": 15,
"name": "_value",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 9,
"src": "176:6:0",
"typeDescriptions": {
"typeIdentifier": "t_uint8",
"typeString": "uint8"
}
},
"src": "161:21:0",
"typeDescriptions": {
"typeIdentifier": "t_uint8",
"typeString": "uint8"
}
},
"id": 17,
"nodeType": "ExpressionStatement",
"src": "161:21:0"
}
]
},
"functionSelector": "72958220",
"id": 19,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "setAge",
"nameLocation": "109:6:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 10,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 7,
"mutability": "mutable",
"name": "_index",
"nameLocation": "122:6:0",
"nodeType": "VariableDeclaration",
"scope": 19,
"src": "116:12:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint8",
"typeString": "uint8"
},
"typeName": {
"id": 6,
"name": "uint8",
"nodeType": "ElementaryTypeName",
"src": "116:5:0",
"typeDescriptions": {
"typeIdentifier": "t_uint8",
"typeString": "uint8"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 9,
"mutability": "mutable",
"name": "_value",
"nameLocation": "136:6:0",
"nodeType": "VariableDeclaration",
"scope": 19,
"src": "130:12:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint8",
"typeString": "uint8"
},
"typeName": {
"id": 8,
"name": "uint8",
"nodeType": "ElementaryTypeName",
"src": "130:5:0",
"typeDescriptions": {
"typeIdentifier": "t_uint8",
"typeString": "uint8"
}
},
"visibility": "internal"
}
],
"src": "115:28:0"
},
"returnParameters": {
"id": 11,
"nodeType": "ParameterList",
"parameters": [],
"src": "151:0:0"
},
"scope": 32,
"src": "100:89:0",
"stateMutability": "nonpayable",
"virtual": false,
"visibility": "public"
},
{
"body": {
"id": 30,
"nodeType": "Block",
"src": "256:36:0",
"statements": [
{
"expression": {
"baseExpression": {
"id": 26,
"name": "ages",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 5,
"src": "273:4:0",
"typeDescriptions": {
"typeIdentifier": "t_array$_t_uint8_$42_storage",
"typeString": "uint8[42] storage ref"
}
},
"id": 28,
"indexExpression": {
"id": 27,
"name": "_index",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 21,
"src": "278:6:0",
"typeDescriptions": {
"typeIdentifier": "t_uint8",
"typeString": "uint8"
}
},
"isConstant": false,
"isLValue": true,
"isPure": false,
"lValueRequested": false,
"nodeType": "IndexAccess",
"src": "273:12:0",
"typeDescriptions": {
"typeIdentifier": "t_uint8",
"typeString": "uint8"
}
},
"functionReturnParameters": 25,
"id": 29,
"nodeType": "Return",
"src": "266:19:0"
}
]
},
"functionSelector": "47e12f8c",
"id": 31,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "getAge",
"nameLocation": "208:6:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 22,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 21,
"mutability": "mutable",
"name": "_index",
"nameLocation": "221:6:0",
"nodeType": "VariableDeclaration",
"scope": 31,
"src": "215:12:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint8",
"typeString": "uint8"
},
"typeName": {
"id": 20,
"name": "uint8",
"nodeType": "ElementaryTypeName",
"src": "215:5:0",
"typeDescriptions": {
"typeIdentifier": "t_uint8",
"typeString": "uint8"
}
},
"visibility": "internal"
}
],
"src": "214:14:0"
},
"returnParameters": {
"id": 25,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 24,
"mutability": "mutable",
"name": "",
"nameLocation": "-1:-1:-1",
"nodeType": "VariableDeclaration",
"scope": 31,
"src": "249:5:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint8",
"typeString": "uint8"
},
"typeName": {
"id": 23,
"name": "uint8",
"nodeType": "ElementaryTypeName",
"src": "249:5:0",
"typeDescriptions": {
"typeIdentifier": "t_uint8",
"typeString": "uint8"
}
},
"visibility": "internal"
}
],
"src": "248:7:0"
},
"scope": 32,
"src": "199:93:0",
"stateMutability": "view",
"virtual": false,
"visibility": "public"
}
],
"scope": 33,
"src": "58:237:0",
"usedErrors": []
}
],
"src": "33:329:0"
},
"id": 0
}
}
}
}
{
"id": "04dd753d94182cdcf67d97bcba0ec0c5",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.7",
"solcLongVersion": "0.8.7+commit.e28d00a7",
"input": {
"language": "Solidity",
"sources": {
"contracts/5_variables.sol": {
"content": "// SPDX-License-Identifier: MIT\n\npragma solidity ^0.8.7;\n\ncontract variables {\n\n uint8 age = 42;\n uint8 height = 172;\n\n int64 balance;\n uint amount;\n\n // if we know length of Characters \n bytes4 name = \"Ajit\";\n\n // Don't know the length \n string country = \"India\";\n\n // Boolean \n \n\n}"
}
},
"settings": {
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"": [
"ast"
],
"*": [
"abi",
"metadata",
"devdoc",
"userdoc",
"storageLayout",
"evm.legacyAssembly",
"evm.bytecode",
"evm.deployedBytecode",
"evm.methodIdentifiers",
"evm.gasEstimates",
"evm.assembly"
]
}
}
}
},
"output": {
"contracts": {
"contracts/5_variables.sol": {
"variables": {
"abi": [],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"evm": {
"assembly": " /* \"contracts/5_variables.sol\":58:313 contract variables {... */\n mstore(0x40, 0x80)\n /* \"contracts/5_variables.sol\":96:98 42 */\n 0x2a\n /* \"contracts/5_variables.sol\":84:98 uint8 age = 42 */\n 0x00\n dup1\n 0x0100\n exp\n dup2\n sload\n dup2\n 0xff\n mul\n not\n and\n swap1\n dup4\n 0xff\n and\n mul\n or\n swap1\n sstore\n pop\n /* \"contracts/5_variables.sol\":119:122 172 */\n 0xac\n /* \"contracts/5_variables.sol\":104:122 uint8 height = 172 */\n 0x00\n exp(0x0100, 0x01)\n dup2\n sload\n dup2\n 0xff\n mul\n not\n and\n swap1\n dup4\n 0xff\n and\n mul\n or\n swap1\n sstore\n pop\n /* \"contracts/5_variables.sol\":206:226 bytes4 name = \"Ajit\" */\n 0x416a697400000000000000000000000000000000000000000000000000000000\n 0x02\n exp(0x0100, 0x00)\n dup2\n sload\n dup2\n 0xffffffff\n mul\n not\n and\n swap1\n dup4\n 0xe0\n shr\n mul\n or\n swap1\n sstore\n pop\n /* \"contracts/5_variables.sol\":263:287 string country = \"India\" */\n mload(0x40)\n dup1\n 0x40\n add\n 0x40\n mstore\n dup1\n 0x05\n dup2\n mstore\n 0x20\n add\n 0x496e646961000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n pop\n 0x03\n swap1\n dup1\n mload\n swap1\n 0x20\n add\n swap1\n tag_1\n swap3\n swap2\n swap1\n tag_2\n jump\t// in\ntag_1:\n pop\n /* \"contracts/5_variables.sol\":58:313 contract variables {... */\n callvalue\n dup1\n iszero\n tag_3\n jumpi\n 0x00\n dup1\n revert\ntag_3:\n pop\n jump(tag_4)\ntag_2:\n dup3\n dup1\n sload\n tag_5\n swap1\n tag_6\n jump\t// in\ntag_5:\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n 0x1f\n add\n 0x20\n swap1\n div\n dup2\n add\n swap3\n dup3\n tag_8\n jumpi\n 0x00\n dup6\n sstore\n jump(tag_7)\ntag_8:\n dup3\n 0x1f\n lt\n tag_9\n jumpi\n dup1\n mload\n not(0xff)\n and\n dup4\n dup1\n add\n or\n dup6\n sstore\n jump(tag_7)\ntag_9:\n dup3\n dup1\n add\n 0x01\n add\n dup6\n sstore\n dup3\n iszero\n tag_7\n jumpi\n swap2\n dup3\n add\ntag_10:\n dup3\n dup2\n gt\n iszero\n tag_11\n jumpi\n dup3\n mload\n dup3\n sstore\n swap2\n 0x20\n add\n swap2\n swap1\n 0x01\n add\n swap1\n jump(tag_10)\ntag_11:\ntag_7:\n pop\n swap1\n pop\n tag_12\n swap2\n swap1\n tag_13\n jump\t// in\ntag_12:\n pop\n swap1\n jump\t// out\ntag_13:\ntag_14:\n dup1\n dup3\n gt\n iszero\n tag_15\n jumpi\n 0x00\n dup2\n 0x00\n swap1\n sstore\n pop\n 0x01\n add\n jump(tag_14)\ntag_15:\n pop\n swap1\n jump\t// out\n /* \"#utility.yul\":7:327 */\ntag_6:\n /* \"#utility.yul\":51:57 */\n 0x00\n /* \"#utility.yul\":88:89 */\n 0x02\n /* \"#utility.yul\":82:86 */\n dup3\n /* \"#utility.yul\":78:90 */\n div\n /* \"#utility.yul\":68:90 */\n swap1\n pop\n /* \"#utility.yul\":135:136 */\n 0x01\n /* \"#utility.yul\":129:133 */\n dup3\n /* \"#utility.yul\":125:137 */\n and\n /* \"#utility.yul\":156:174 */\n dup1\n /* \"#utility.yul\":146:227 */\n tag_18\n jumpi\n /* \"#utility.yul\":212:216 */\n 0x7f\n /* \"#utility.yul\":204:210 */\n dup3\n /* \"#utility.yul\":200:217 */\n and\n /* \"#utility.yul\":190:217 */\n swap2\n pop\n /* \"#utility.yul\":146:227 */\ntag_18:\n /* \"#utility.yul\":274:276 */\n 0x20\n /* \"#utility.yul\":266:272 */\n dup3\n /* \"#utility.yul\":263:277 */\n lt\n /* \"#utility.yul\":243:261 */\n dup2\n /* \"#utility.yul\":240:278 */\n eq\n /* \"#utility.yul\":237:321 */\n iszero\n tag_19\n jumpi\n /* \"#utility.yul\":293:311 */\n tag_20\n tag_21\n jump\t// in\ntag_20:\n /* \"#utility.yul\":237:321 */\ntag_19:\n /* \"#utility.yul\":58:327 */\n pop\n /* \"#utility.yul\":7:327 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":333:513 */\ntag_21:\n /* \"#utility.yul\":381:458 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":378:379 */\n 0x00\n /* \"#utility.yul\":371:459 */\n mstore\n /* \"#utility.yul\":478:482 */\n 0x22\n /* \"#utility.yul\":475:476 */\n 0x04\n /* \"#utility.yul\":468:483 */\n mstore\n /* \"#utility.yul\":502:506 */\n 0x24\n /* \"#utility.yul\":499:500 */\n 0x00\n /* \"#utility.yul\":492:507 */\n revert\n /* \"contracts/5_variables.sol\":58:313 contract variables {... */\ntag_4:\n dataSize(sub_0)\n dup1\n dataOffset(sub_0)\n 0x00\n codecopy\n 0x00\n return\nstop\n\nsub_0: assembly {\n /* \"contracts/5_variables.sol\":58:313 contract variables {... */\n mstore(0x40, 0x80)\n 0x00\n dup1\n revert\n\n auxdata: 0xa2646970667358221220f6205b888f26bbc42d37a6f67adc5fba07b94cef0e909c3b19c97843e8d4473564736f6c63430008070033\n}\n",
"bytecode": {
"functionDebugData": {
"extract_byte_array_length": {
"entryPoint": 378,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x22": {
"entryPoint": 428,
"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": "6080604052602a6000806101000a81548160ff021916908360ff16021790555060ac600060016101000a81548160ff021916908360ff1602179055507f416a697400000000000000000000000000000000000000000000000000000000600260006101000a81548163ffffffff021916908360e01c02179055506040518060400160405280600581526020017f496e646961000000000000000000000000000000000000000000000000000000815250600390805190602001906100c49291906100d7565b503480156100d157600080fd5b506101db565b8280546100e39061017a565b90600052602060002090601f016020900481019282610105576000855561014c565b82601f1061011e57805160ff191683800117855561014c565b8280016001018555821561014c579182015b8281111561014b578251825591602001919060010190610130565b5b509050610159919061015d565b5090565b5b8082111561017657600081600090555060010161015e565b5090565b6000600282049050600182168061019257607f821691505b602082108114156101a6576101a56101ac565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b603f806101e96000396000f3fe6080604052600080fdfea2646970667358221220f6205b888f26bbc42d37a6f67adc5fba07b94cef0e909c3b19c97843e8d4473564736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x2A PUSH1 0x0 DUP1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 PUSH1 0xFF AND MUL OR SWAP1 SSTORE POP PUSH1 0xAC PUSH1 0x0 PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 PUSH1 0xFF AND MUL OR SWAP1 SSTORE POP PUSH32 0x416A697400000000000000000000000000000000000000000000000000000000 PUSH1 0x2 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH4 0xFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH1 0xE0 SHR MUL OR SWAP1 SSTORE POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x5 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x496E646961000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP PUSH1 0x3 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0xC4 SWAP3 SWAP2 SWAP1 PUSH2 0xD7 JUMP JUMPDEST POP CALLVALUE DUP1 ISZERO PUSH2 0xD1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x1DB JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH2 0xE3 SWAP1 PUSH2 0x17A JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0x105 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0x14C JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0x11E JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0x14C JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0x14C JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x14B JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x130 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x159 SWAP2 SWAP1 PUSH2 0x15D JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x176 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x15E JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x192 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x1A6 JUMPI PUSH2 0x1A5 PUSH2 0x1AC 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 PUSH1 0x3F DUP1 PUSH2 0x1E9 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xF6 KECCAK256 JUMPDEST DUP9 DUP16 0x26 0xBB 0xC4 0x2D CALLDATACOPY 0xA6 0xF6 PUSH27 0xDC5FBA07B94CEF0E909C3B19C97843E8D4473564736F6C63430008 SMOD STOP CALLER ",
"sourceMap": "58:255:0:-:0;;;96:2;84:14;;;;;;;;;;;;;;;;;;;;119:3;104:18;;;;;;;;;;;;;;;;;;;;206:20;;;;;;;;;;;;;;;;;;;;;263:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;58:255;;;;;;;;;;;;;;;;;;;:::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;58:255:0;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "6080604052600080fdfea2646970667358221220f6205b888f26bbc42d37a6f67adc5fba07b94cef0e909c3b19c97843e8d4473564736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xF6 KECCAK256 JUMPDEST DUP9 DUP16 0x26 0xBB 0xC4 0x2D CALLDATACOPY 0xA6 0xF6 PUSH27 0xDC5FBA07B94CEF0E909C3B19C97843E8D4473564736F6C63430008 SMOD STOP CALLER ",
"sourceMap": "58:255:0:-:0;;;;;"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "12600",
"executionCost": "infinite",
"totalCost": "infinite"
}
},
"legacyAssembly": {
".code": [
{
"begin": 58,
"end": 313,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 58,
"end": 313,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 58,
"end": 313,
"name": "MSTORE",
"source": 0
},
{
"begin": 96,
"end": 98,
"name": "PUSH",
"source": 0,
"value": "2A"
},
{
"begin": 84,
"end": 98,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 84,
"end": 98,
"name": "DUP1",
"source": 0
},
{
"begin": 84,
"end": 98,
"name": "PUSH",
"source": 0,
"value": "100"
},
{
"begin": 84,
"end": 98,
"name": "EXP",
"source": 0
},
{
"begin": 84,
"end": 98,
"name": "DUP2",
"source": 0
},
{
"begin": 84,
"end": 98,
"name": "SLOAD",
"source": 0
},
{
"begin": 84,
"end": 98,
"name": "DUP2",
"source": 0
},
{
"begin": 84,
"end": 98,
"name": "PUSH",
"source": 0,
"value": "FF"
},
{
"begin": 84,
"end": 98,
"name": "MUL",
"source": 0
},
{
"begin": 84,
"end": 98,
"name": "NOT",
"source": 0
},
{
"begin": 84,
"end": 98,
"name": "AND",
"source": 0
},
{
"begin": 84,
"end": 98,
"name": "SWAP1",
"source": 0
},
{
"begin": 84,
"end": 98,
"name": "DUP4",
"source": 0
},
{
"begin": 84,
"end": 98,
"name": "PUSH",
"source": 0,
"value": "FF"
},
{
"begin": 84,
"end": 98,
"name": "AND",
"source": 0
},
{
"begin": 84,
"end": 98,
"name": "MUL",
"source": 0
},
{
"begin": 84,
"end": 98,
"name": "OR",
"source": 0
},
{
"begin": 84,
"end": 98,
"name": "SWAP1",
"source": 0
},
{
"begin": 84,
"end": 98,
"name": "SSTORE",
"source": 0
},
{
"begin": 84,
"end": 98,
"name": "POP",
"source": 0
},
{
"begin": 119,
"end": 122,
"name": "PUSH",
"source": 0,
"value": "AC"
},
{
"begin": 104,
"end": 122,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 104,
"end": 122,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 104,
"end": 122,
"name": "PUSH",
"source": 0,
"value": "100"
},
{
"begin": 104,
"end": 122,
"name": "EXP",
"source": 0
},
{
"begin": 104,
"end": 122,
"name": "DUP2",
"source": 0
},
{
"begin": 104,
"end": 122,
"name": "SLOAD",
"source": 0
},
{
"begin": 104,
"end": 122,
"name": "DUP2",
"source": 0
},
{
"begin": 104,
"end": 122,
"name": "PUSH",
"source": 0,
"value": "FF"
},
{
"begin": 104,
"end": 122,
"name": "MUL",
"source": 0
},
{
"begin": 104,
"end": 122,
"name": "NOT",
"source": 0
},
{
"begin": 104,
"end": 122,
"name": "AND",
"source": 0
},
{
"begin": 104,
"end": 122,
"name": "SWAP1",
"source": 0
},
{
"begin": 104,
"end": 122,
"name": "DUP4",
"source": 0
},
{
"begin": 104,
"end": 122,
"name": "PUSH",
"source": 0,
"value": "FF"
},
{
"begin": 104,
"end": 122,
"name": "AND",
"source": 0
},
{
"begin": 104,
"end": 122,
"name": "MUL",
"source": 0
},
{
"begin": 104,
"end": 122,
"name": "OR",
"source": 0
},
{
"begin": 104,
"end": 122,
"name": "SWAP1",
"source": 0
},
{
"begin": 104,
"end": 122,
"name": "SSTORE",
"source": 0
},
{
"begin": 104,
"end": 122,
"name": "POP",
"source": 0
},
{
"begin": 206,
"end": 226,
"name": "PUSH",
"source": 0,
"value": "416A697400000000000000000000000000000000000000000000000000000000"
},
{
"begin": 206,
"end": 226,
"name": "PUSH",
"source": 0,
"value": "2"
},
{
"begin": 206,
"end": 226,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 206,
"end": 226,
"name": "PUSH",
"source": 0,
"value": "100"
},
{
"begin": 206,
"end": 226,
"name": "EXP",
"source": 0
},
{
"begin": 206,
"end": 226,
"name": "DUP2",
"source": 0
},
{
"begin": 206,
"end": 226,
"name": "SLOAD",
"source": 0
},
{
"begin": 206,
"end": 226,
"name": "DUP2",
"source": 0
},
{
"begin": 206,
"end": 226,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFF"
},
{
"begin": 206,
"end": 226,
"name": "MUL",
"source": 0
},
{
"begin": 206,
"end": 226,
"name": "NOT",
"source": 0
},
{
"begin": 206,
"end": 226,
"name": "AND",
"source": 0
},
{
"begin": 206,
"end": 226,
"name": "SWAP1",
"source": 0
},
{
"begin": 206,
"end": 226,
"name": "DUP4",
"source": 0
},
{
"begin": 206,
"end": 226,
"name": "PUSH",
"source": 0,
"value": "E0"
},
{
"begin": 206,
"end": 226,
"name": "SHR",
"source": 0
},
{
"begin": 206,
"end": 226,
"name": "MUL",
"source": 0
},
{
"begin": 206,
"end": 226,
"name": "OR",
"source": 0
},
{
"begin": 206,
"end": 226,
"name": "SWAP1",
"source": 0
},
{
"begin": 206,
"end": 226,
"name": "SSTORE",
"source": 0
},
{
"begin": 206,
"end": 226,
"name": "POP",
"source": 0
},
{
"begin": 263,
"end": 287,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 263,
"end": 287,
"name": "MLOAD",
"source": 0
},
{
"begin": 263,
"end": 287,
"name": "DUP1",
"source": 0
},
{
"begin": 263,
"end": 287,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 263,
"end": 287,
"name": "ADD",
"source": 0
},
{
"begin": 263,
"end": 287,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 263,
"end": 287,
"name": "MSTORE",
"source": 0
},
{
"begin": 263,
"end": 287,
"name": "DUP1",
"source": 0
},
{
"begin": 263,
"end": 287,
"name": "PUSH",
"source": 0,
"value": "5"
},
{
"begin": 263,
"end": 287,
"name": "DUP2",
"source": 0
},
{
"begin": 263,
"end": 287,
"name": "MSTORE",
"source": 0
},
{
"begin": 263,
"end": 287,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 263,
"end": 287,
"name": "ADD",
"source": 0
},
{
"begin": 263,
"end": 287,
"name": "PUSH",
"source": 0,
"value": "496E646961000000000000000000000000000000000000000000000000000000"
},
{
"begin": 263,
"end": 287,
"name": "DUP2",
"source": 0
},
{
"begin": 263,
"end": 287,
"name": "MSTORE",
"source": 0
},
{
"begin": 263,
"end": 287,
"name": "POP",
"source": 0
},
{
"begin": 263,
"end": 287,
"name": "PUSH",
"source": 0,
"value": "3"
},
{
"begin": 263,
"end": 287,
"name": "SWAP1",
"source": 0
},
{
"begin": 263,
"end": 287,
"name": "DUP1",
"source": 0
},
{
"begin": 263,
"end": 287,
"name": "MLOAD",
"source": 0
},
{
"begin": 263,
"end": 287,
"name": "SWAP1",
"source": 0
},
{
"begin": 263,
"end": 287,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 263,
"end": 287,
"name": "ADD",
"source": 0
},
{
"begin": 263,
"end": 287,
"name": "SWAP1",
"source": 0
},
{
"begin": 263,
"end": 287,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 263,
"end": 287,
"name": "SWAP3",
"source": 0
},
{
"begin": 263,
"end": 287,
"name": "SWAP2",
"source": 0
},
{
"begin": 263,
"end": 287,
"name": "SWAP1",
"source": 0
},
{
"begin": 263,
"end": 287,
"name": "PUSH [tag]",
"source": 0,
"value": "2"
},
{
"begin": 263,
"end": 287,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 263,
"end": 287,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 263,
"end": 287,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 263,
"end": 287,
"name": "POP",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "DUP1",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "ISZERO",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "PUSH [tag]",
"source": 0,
"value": "3"
},
{
"begin": 58,
"end": 313,
"name": "JUMPI",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 58,
"end": 313,
"name": "DUP1",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "REVERT",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "tag",
"source": 0,
"value": "3"
},
{
"begin": 58,
"end": 313,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "POP",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "PUSH [tag]",
"source": 0,
"value": "4"
},
{
"begin": 58,
"end": 313,
"name": "JUMP",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "tag",
"source": 0,
"value": "2"
},
{
"begin": 58,
"end": 313,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "DUP3",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "DUP1",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "SLOAD",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "PUSH [tag]",
"source": 0,
"value": "5"
},
{
"begin": 58,
"end": 313,
"name": "SWAP1",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "PUSH [tag]",
"source": 0,
"value": "6"
},
{
"begin": 58,
"end": 313,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 58,
"end": 313,
"name": "tag",
"source": 0,
"value": "5"
},
{
"begin": 58,
"end": 313,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "SWAP1",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 58,
"end": 313,
"name": "MSTORE",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 58,
"end": 313,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 58,
"end": 313,
"name": "KECCAK256",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "SWAP1",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "PUSH",
"source": 0,
"value": "1F"
},
{
"begin": 58,
"end": 313,
"name": "ADD",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 58,
"end": 313,
"name": "SWAP1",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "DIV",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "DUP2",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "ADD",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "SWAP3",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "DUP3",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "PUSH [tag]",
"source": 0,
"value": "8"
},
{
"begin": 58,
"end": 313,
"name": "JUMPI",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 58,
"end": 313,
"name": "DUP6",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "SSTORE",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "PUSH [tag]",
"source": 0,
"value": "7"
},
{
"begin": 58,
"end": 313,
"name": "JUMP",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "tag",
"source": 0,
"value": "8"
},
{
"begin": 58,
"end": 313,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "DUP3",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "PUSH",
"source": 0,
"value": "1F"
},
{
"begin": 58,
"end": 313,
"name": "LT",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "PUSH [tag]",
"source": 0,
"value": "9"
},
{
"begin": 58,
"end": 313,
"name": "JUMPI",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "DUP1",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "MLOAD",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "PUSH",
"source": 0,
"value": "FF"
},
{
"begin": 58,
"end": 313,
"name": "NOT",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "AND",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "DUP4",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "DUP1",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "ADD",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "OR",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "DUP6",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "SSTORE",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "PUSH [tag]",
"source": 0,
"value": "7"
},
{
"begin": 58,
"end": 313,
"name": "JUMP",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "tag",
"source": 0,
"value": "9"
},
{
"begin": 58,
"end": 313,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "DUP3",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "DUP1",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "ADD",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 58,
"end": 313,
"name": "ADD",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "DUP6",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "SSTORE",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "DUP3",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "ISZERO",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "PUSH [tag]",
"source": 0,
"value": "7"
},
{
"begin": 58,
"end": 313,
"name": "JUMPI",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "SWAP2",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "DUP3",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "ADD",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "tag",
"source": 0,
"value": "10"
},
{
"begin": 58,
"end": 313,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "DUP3",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "DUP2",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "GT",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "ISZERO",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "PUSH [tag]",
"source": 0,
"value": "11"
},
{
"begin": 58,
"end": 313,
"name": "JUMPI",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "DUP3",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "MLOAD",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "DUP3",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "SSTORE",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "SWAP2",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 58,
"end": 313,
"name": "ADD",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "SWAP2",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "SWAP1",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 58,
"end": 313,
"name": "ADD",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "SWAP1",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "PUSH [tag]",
"source": 0,
"value": "10"
},
{
"begin": 58,
"end": 313,
"name": "JUMP",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "tag",
"source": 0,
"value": "11"
},
{
"begin": 58,
"end": 313,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "tag",
"source": 0,
"value": "7"
},
{
"begin": 58,
"end": 313,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "POP",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "SWAP1",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "POP",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "PUSH [tag]",
"source": 0,
"value": "12"
},
{
"begin": 58,
"end": 313,
"name": "SWAP2",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "SWAP1",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "PUSH [tag]",
"source": 0,
"value": "13"
},
{
"begin": 58,
"end": 313,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 58,
"end": 313,
"name": "tag",
"source": 0,
"value": "12"
},
{
"begin": 58,
"end": 313,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "POP",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "SWAP1",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 58,
"end": 313,
"name": "tag",
"source": 0,
"value": "13"
},
{
"begin": 58,
"end": 313,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "tag",
"source": 0,
"value": "14"
},
{
"begin": 58,
"end": 313,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "DUP1",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "DUP3",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "GT",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "ISZERO",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "PUSH [tag]",
"source": 0,
"value": "15"
},
{
"begin": 58,
"end": 313,
"name": "JUMPI",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 58,
"end": 313,
"name": "DUP2",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 58,
"end": 313,
"name": "SWAP1",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "SSTORE",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "POP",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 58,
"end": 313,
"name": "ADD",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "PUSH [tag]",
"source": 0,
"value": "14"
},
{
"begin": 58,
"end": 313,
"name": "JUMP",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "tag",
"source": 0,
"value": "15"
},
{
"begin": 58,
"end": 313,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "POP",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "SWAP1",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 7,
"end": 327,
"name": "tag",
"source": 1,
"value": "6"
},
{
"begin": 7,
"end": 327,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 51,
"end": 57,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 88,
"end": 89,
"name": "PUSH",
"source": 1,
"value": "2"
},
{
"begin": 82,
"end": 86,
"name": "DUP3",
"source": 1
},
{
"begin": 78,
"end": 90,
"name": "DIV",
"source": 1
},
{
"begin": 68,
"end": 90,
"name": "SWAP1",
"source": 1
},
{
"begin": 68,
"end": 90,
"name": "POP",
"source": 1
},
{
"begin": 135,
"end": 136,
"name": "PUSH",
"source": 1,
"value": "1"
},
{
"begin": 129,
"end": 133,
"name": "DUP3",
"source": 1
},
{
"begin": 125,
"end": 137,
"name": "AND",
"source": 1
},
{
"begin": 156,
"end": 174,
"name": "DUP1",
"source": 1
},
{
"begin": 146,
"end": 227,
"name": "PUSH [tag]",
"source": 1,
"value": "18"
},
{
"begin": 146,
"end": 227,
"name": "JUMPI",
"source": 1
},
{
"begin": 212,
"end": 216,
"name": "PUSH",
"source": 1,
"value": "7F"
},
{
"begin": 204,
"end": 210,
"name": "DUP3",
"source": 1
},
{
"begin": 200,
"end": 217,
"name": "AND",
"source": 1
},
{
"begin": 190,
"end": 217,
"name": "SWAP2",
"source": 1
},
{
"begin": 190,
"end": 217,
"name": "POP",
"source": 1
},
{
"begin": 146,
"end": 227,
"name": "tag",
"source": 1,
"value": "18"
},
{
"begin": 146,
"end": 227,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 274,
"end": 276,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 266,
"end": 272,
"name": "DUP3",
"source": 1
},
{
"begin": 263,
"end": 277,
"name": "LT",
"source": 1
},
{
"begin": 243,
"end": 261,
"name": "DUP2",
"source": 1
},
{
"begin": 240,
"end": 278,
"name": "EQ",
"source": 1
},
{
"begin": 237,
"end": 321,
"name": "ISZERO",
"source": 1
},
{
"begin": 237,
"end": 321,
"name": "PUSH [tag]",
"source": 1,
"value": "19"
},
{
"begin": 237,
"end": 321,
"name": "JUMPI",
"source": 1
},
{
"begin": 293,
"end": 311,
"name": "PUSH [tag]",
"source": 1,
"value": "20"
},
{
"begin": 293,
"end": 311,
"name": "PUSH [tag]",
"source": 1,
"value": "21"
},
{
"begin": 293,
"end": 311,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 293,
"end": 311,
"name": "tag",
"source": 1,
"value": "20"
},
{
"begin": 293,
"end": 311,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 237,
"end": 321,
"name": "tag",
"source": 1,
"value": "19"
},
{
"begin": 237,
"end": 321,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 58,
"end": 327,
"name": "POP",
"source": 1
},
{
"begin": 7,
"end": 327,
"name": "SWAP2",
"source": 1
},
{
"begin": 7,
"end": 327,
"name": "SWAP1",
"source": 1
},
{
"begin": 7,
"end": 327,
"name": "POP",
"source": 1
},
{
"begin": 7,
"end": 327,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 333,
"end": 513,
"name": "tag",
"source": 1,
"value": "21"
},
{
"begin": 333,
"end": 513,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 381,
"end": 458,
"name": "PUSH",
"source": 1,
"value": "4E487B7100000000000000000000000000000000000000000000000000000000"
},
{
"begin": 378,
"end": 379,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 371,
"end": 459,
"name": "MSTORE",
"source": 1
},
{
"begin": 478,
"end": 482,
"name": "PUSH",
"source": 1,
"value": "22"
},
{
"begin": 475,
"end": 476,
"name": "PUSH",
"source": 1,
"value": "4"
},
{
"begin": 468,
"end": 483,
"name": "MSTORE",
"source": 1
},
{
"begin": 502,
"end": 506,
"name": "PUSH",
"source": 1,
"value": "24"
},
{
"begin": 499,
"end": 500,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 492,
"end": 507,
"name": "REVERT",
"source": 1
},
{
"begin": 58,
"end": 313,
"name": "tag",
"source": 0,
"value": "4"
},
{
"begin": 58,
"end": 313,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "PUSH #[$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 58,
"end": 313,
"name": "DUP1",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "PUSH [$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 58,
"end": 313,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 58,
"end": 313,
"name": "CODECOPY",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 58,
"end": 313,
"name": "RETURN",
"source": 0
}
],
".data": {
"0": {
".auxdata": "a2646970667358221220f6205b888f26bbc42d37a6f67adc5fba07b94cef0e909c3b19c97843e8d4473564736f6c63430008070033",
".code": [
{
"begin": 58,
"end": 313,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 58,
"end": 313,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 58,
"end": 313,
"name": "MSTORE",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 58,
"end": 313,
"name": "DUP1",
"source": 0
},
{
"begin": 58,
"end": 313,
"name": "REVERT",
"source": 0
}
]
}
}
},
"methodIdentifiers": {}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.7+commit.e28d00a7\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/5_variables.sol\":\"variables\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"contracts/5_variables.sol\":{\"keccak256\":\"0xc59cd5a8ae225a70c365e617636dd801e37154e278dceb01c9d989dd212e3af4\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ad366d58e6de0abffa43a2d6345a8e02525b2ec9b888b3240e2a80e492ae6da5\",\"dweb:/ipfs/QmXJgHA2gBio5DfwFK2RVKKNiDMcMPgWx4aQ3hbG33vgi9\"]}},\"version\":1}",
"storageLayout": {
"storage": [
{
"astId": 4,
"contract": "contracts/5_variables.sol:variables",
"label": "age",
"offset": 0,
"slot": "0",
"type": "t_uint8"
},
{
"astId": 7,
"contract": "contracts/5_variables.sol:variables",
"label": "height",
"offset": 1,
"slot": "0",
"type": "t_uint8"
},
{
"astId": 9,
"contract": "contracts/5_variables.sol:variables",
"label": "balance",
"offset": 2,
"slot": "0",
"type": "t_int64"
},
{
"astId": 11,
"contract": "contracts/5_variables.sol:variables",
"label": "amount",
"offset": 0,
"slot": "1",
"type": "t_uint256"
},
{
"astId": 14,
"contract": "contracts/5_variables.sol:variables",
"label": "name",
"offset": 0,
"slot": "2",
"type": "t_bytes4"
},
{
"astId": 17,
"contract": "contracts/5_variables.sol:variables",
"label": "country",
"offset": 0,
"slot": "3",
"type": "t_string_storage"
}
],
"types": {
"t_bytes4": {
"encoding": "inplace",
"label": "bytes4",
"numberOfBytes": "4"
},
"t_int64": {
"encoding": "inplace",
"label": "int64",
"numberOfBytes": "8"
},
"t_string_storage": {
"encoding": "bytes",
"label": "string",
"numberOfBytes": "32"
},
"t_uint256": {
"encoding": "inplace",
"label": "uint256",
"numberOfBytes": "32"
},
"t_uint8": {
"encoding": "inplace",
"label": "uint8",
"numberOfBytes": "1"
}
}
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
}
},
"sources": {
"contracts/5_variables.sol": {
"ast": {
"absolutePath": "contracts/5_variables.sol",
"exportedSymbols": {
"variables": [
18
]
},
"id": 19,
"license": "MIT",
"nodeType": "SourceUnit",
"nodes": [
{
"id": 1,
"literals": [
"solidity",
"^",
"0.8",
".7"
],
"nodeType": "PragmaDirective",
"src": "33:23:0"
},
{
"abstract": false,
"baseContracts": [],
"contractDependencies": [],
"contractKind": "contract",
"fullyImplemented": true,
"id": 18,
"linearizedBaseContracts": [
18
],
"name": "variables",
"nameLocation": "67:9:0",
"nodeType": "ContractDefinition",
"nodes": [
{
"constant": false,
"id": 4,
"mutability": "mutable",
"name": "age",
"nameLocation": "90:3:0",
"nodeType": "VariableDeclaration",
"scope": 18,
"src": "84:14:0",
"stateVariable": true,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint8",
"typeString": "uint8"
},
"typeName": {
"id": 2,
"name": "uint8",
"nodeType": "ElementaryTypeName",
"src": "84:5:0",
"typeDescriptions": {
"typeIdentifier": "t_uint8",
"typeString": "uint8"
}
},
"value": {
"hexValue": "3432",
"id": 3,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "number",
"lValueRequested": false,
"nodeType": "Literal",
"src": "96:2:0",
"typeDescriptions": {
"typeIdentifier": "t_rational_42_by_1",
"typeString": "int_const 42"
},
"value": "42"
},
"visibility": "internal"
},
{
"constant": false,
"id": 7,
"mutability": "mutable",
"name": "height",
"nameLocation": "110:6:0",
"nodeType": "VariableDeclaration",
"scope": 18,
"src": "104:18:0",
"stateVariable": true,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint8",
"typeString": "uint8"
},
"typeName": {
"id": 5,
"name": "uint8",
"nodeType": "ElementaryTypeName",
"src": "104:5:0",
"typeDescriptions": {
"typeIdentifier": "t_uint8",
"typeString": "uint8"
}
},
"value": {
"hexValue": "313732",
"id": 6,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "number",
"lValueRequested": false,
"nodeType": "Literal",
"src": "119:3:0",
"typeDescriptions": {
"typeIdentifier": "t_rational_172_by_1",
"typeString": "int_const 172"
},
"value": "172"
},
"visibility": "internal"
},
{
"constant": false,
"id": 9,
"mutability": "mutable",
"name": "balance",
"nameLocation": "135:7:0",
"nodeType": "VariableDeclaration",
"scope": 18,
"src": "129:13:0",
"stateVariable": true,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_int64",
"typeString": "int64"
},
"typeName": {
"id": 8,
"name": "int64",
"nodeType": "ElementaryTypeName",
"src": "129:5:0",
"typeDescriptions": {
"typeIdentifier": "t_int64",
"typeString": "int64"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 11,
"mutability": "mutable",
"name": "amount",
"nameLocation": "153:6:0",
"nodeType": "VariableDeclaration",
"scope": 18,
"src": "148:11:0",
"stateVariable": true,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 10,
"name": "uint",
"nodeType": "ElementaryTypeName",
"src": "148:4:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 14,
"mutability": "mutable",
"name": "name",
"nameLocation": "213:4:0",
"nodeType": "VariableDeclaration",
"scope": 18,
"src": "206:20:0",
"stateVariable": true,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bytes4",
"typeString": "bytes4"
},
"typeName": {
"id": 12,
"name": "bytes4",
"nodeType": "ElementaryTypeName",
"src": "206:6:0",
"typeDescriptions": {
"typeIdentifier": "t_bytes4",
"typeString": "bytes4"
}
},
"value": {
"hexValue": "416a6974",
"id": 13,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "string",
"lValueRequested": false,
"nodeType": "Literal",
"src": "220:6:0",
"typeDescriptions": {
"typeIdentifier": "t_stringliteral_7e6c097673ab4f98086db78323bb57996c2e897be0e647e62845bc4a1f57b72e",
"typeString": "literal_string \"Ajit\""
},
"value": "Ajit"
},
"visibility": "internal"
},
{
"constant": false,
"id": 17,
"mutability": "mutable",
"name": "country",
"nameLocation": "270:7:0",
"nodeType": "VariableDeclaration",
"scope": 18,
"src": "263:24:0",
"stateVariable": true,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_string_storage",
"typeString": "string"
},
"typeName": {
"id": 15,
"name": "string",
"nodeType": "ElementaryTypeName",
"src": "263:6:0",
"typeDescriptions": {
"typeIdentifier": "t_string_storage_ptr",
"typeString": "string"
}
},
"value": {
"hexValue": "496e646961",
"id": 16,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "string",
"lValueRequested": false,
"nodeType": "Literal",
"src": "280:7:0",
"typeDescriptions": {
"typeIdentifier": "t_stringliteral_afb612801c0c9f3c3a00f818ee652e98411618e2f8d2ae05988522d78f08fdeb",
"typeString": "literal_string \"India\""
},
"value": "India"
},
"visibility": "internal"
}
],
"scope": 19,
"src": "58:255:0",
"usedErrors": []
}
],
"src": "33:280:0"
},
"id": 0
}
}
}
}
{
"id": "056bc35f44ece147fa4f58044e991f72",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.7",
"solcLongVersion": "0.8.7+commit.e28d00a7",
"input": {
"language": "Solidity",
"sources": {
"contracts/5_variables.sol": {
"content": "// SPDX-License-Identifier: MIT\n\npragma solidity ^0.8.7;\n\ncontract variables {\n\n uint age = 42;\n uint height = 172;\n\n \n}"
}
},
"settings": {
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"": [
"ast"
],
"*": [
"abi",
"metadata",
"devdoc",
"userdoc",
"storageLayout",
"evm.legacyAssembly",
"evm.bytecode",
"evm.deployedBytecode",
"evm.methodIdentifiers",
"evm.gasEstimates",
"evm.assembly"
]
}
}
}
},
"output": {
"contracts": {
"contracts/5_variables.sol": {
"variables": {
"abi": [],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"evm": {
"assembly": " /* \"contracts/5_variables.sol\":58:129 contract variables {... */\n mstore(0x40, 0x80)\n /* \"contracts/5_variables.sol\":95:97 42 */\n 0x2a\n /* \"contracts/5_variables.sol\":84:97 uint age = 42 */\n 0x00\n sstore\n /* \"contracts/5_variables.sol\":117:120 172 */\n 0xac\n /* \"contracts/5_variables.sol\":103:120 uint height = 172 */\n 0x01\n sstore\n /* \"contracts/5_variables.sol\":58:129 contract variables {... */\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\ntag_1:\n pop\n dataSize(sub_0)\n dup1\n dataOffset(sub_0)\n 0x00\n codecopy\n 0x00\n return\nstop\n\nsub_0: assembly {\n /* \"contracts/5_variables.sol\":58:129 contract variables {... */\n mstore(0x40, 0x80)\n 0x00\n dup1\n revert\n\n auxdata: 0xa2646970667358221220092d40c02621b98c91d846b26e6408ddd58cc6051575ee80da46954f12fb392c64736f6c63430008070033\n}\n",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "6080604052602a60005560ac600155348015601957600080fd5b50603f8060276000396000f3fe6080604052600080fdfea2646970667358221220092d40c02621b98c91d846b26e6408ddd58cc6051575ee80da46954f12fb392c64736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x2A PUSH1 0x0 SSTORE PUSH1 0xAC PUSH1 0x1 SSTORE CALLVALUE DUP1 ISZERO PUSH1 0x19 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x3F DUP1 PUSH1 0x27 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 MULMOD 0x2D BLOCKHASH 0xC0 0x26 0x21 0xB9 DUP13 SWAP2 0xD8 CHAINID 0xB2 PUSH15 0x6408DDD58CC6051575EE80DA46954F SLT 0xFB CODECOPY 0x2C PUSH5 0x736F6C6343 STOP ADDMOD SMOD STOP CALLER ",
"sourceMap": "58:71:0:-:0;;;95:2;84:13;;117:3;103:17;;58:71;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "6080604052600080fdfea2646970667358221220092d40c02621b98c91d846b26e6408ddd58cc6051575ee80da46954f12fb392c64736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 MULMOD 0x2D BLOCKHASH 0xC0 0x26 0x21 0xB9 DUP13 SWAP2 0xD8 CHAINID 0xB2 PUSH15 0x6408DDD58CC6051575EE80DA46954F SLT 0xFB CODECOPY 0x2C PUSH5 0x736F6C6343 STOP ADDMOD SMOD STOP CALLER ",
"sourceMap": "58:71:0:-:0;;;;;"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "12600",
"executionCost": "44278",
"totalCost": "56878"
}
},
"legacyAssembly": {
".code": [
{
"begin": 58,
"end": 129,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 58,
"end": 129,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 58,
"end": 129,
"name": "MSTORE",
"source": 0
},
{
"begin": 95,
"end": 97,
"name": "PUSH",
"source": 0,
"value": "2A"
},
{
"begin": 84,
"end": 97,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 84,
"end": 97,
"name": "SSTORE",
"source": 0
},
{
"begin": 117,
"end": 120,
"name": "PUSH",
"source": 0,
"value": "AC"
},
{
"begin": 103,
"end": 120,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 103,
"end": 120,
"name": "SSTORE",
"source": 0
},
{
"begin": 58,
"end": 129,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 58,
"end": 129,
"name": "DUP1",
"source": 0
},
{
"begin": 58,
"end": 129,
"name": "ISZERO",
"source": 0
},
{
"begin": 58,
"end": 129,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 58,
"end": 129,
"name": "JUMPI",
"source": 0
},
{
"begin": 58,
"end": 129,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 58,
"end": 129,
"name": "DUP1",
"source": 0
},
{
"begin": 58,
"end": 129,
"name": "REVERT",
"source": 0
},
{
"begin": 58,
"end": 129,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 58,
"end": 129,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 58,
"end": 129,
"name": "POP",
"source": 0
},
{
"begin": 58,
"end": 129,
"name": "PUSH #[$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 58,
"end": 129,
"name": "DUP1",
"source": 0
},
{
"begin": 58,
"end": 129,
"name": "PUSH [$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 58,
"end": 129,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 58,
"end": 129,
"name": "CODECOPY",
"source": 0
},
{
"begin": 58,
"end": 129,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 58,
"end": 129,
"name": "RETURN",
"source": 0
}
],
".data": {
"0": {
".auxdata": "a2646970667358221220092d40c02621b98c91d846b26e6408ddd58cc6051575ee80da46954f12fb392c64736f6c63430008070033",
".code": [
{
"begin": 58,
"end": 129,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 58,
"end": 129,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 58,
"end": 129,
"name": "MSTORE",
"source": 0
},
{
"begin": 58,
"end": 129,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 58,
"end": 129,
"name": "DUP1",
"source": 0
},
{
"begin": 58,
"end": 129,
"name": "REVERT",
"source": 0
}
]
}
}
},
"methodIdentifiers": {}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.7+commit.e28d00a7\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/5_variables.sol\":\"variables\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"contracts/5_variables.sol\":{\"keccak256\":\"0x0535a0296e41f90e57f4082d74e59f64eb2ad9a4d36f767b77c689881205b6b9\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a1d96db33fb5b94103babf566f384c5f935289cd698d48901521421a1699f578\",\"dweb:/ipfs/QmUP33A39AgthMocSR6oE3miaNoEgXFg9Zc9v7CZZnie5A\"]}},\"version\":1}",
"storageLayout": {
"storage": [
{
"astId": 4,
"contract": "contracts/5_variables.sol:variables",
"label": "age",
"offset": 0,
"slot": "0",
"type": "t_uint256"
},
{
"astId": 7,
"contract": "contracts/5_variables.sol:variables",
"label": "height",
"offset": 0,
"slot": "1",
"type": "t_uint256"
}
],
"types": {
"t_uint256": {
"encoding": "inplace",
"label": "uint256",
"numberOfBytes": "32"
}
}
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
}
},
"sources": {
"contracts/5_variables.sol": {
"ast": {
"absolutePath": "contracts/5_variables.sol",
"exportedSymbols": {
"variables": [
8
]
},
"id": 9,
"license": "MIT",
"nodeType": "SourceUnit",
"nodes": [
{
"id": 1,
"literals": [
"solidity",
"^",
"0.8",
".7"
],
"nodeType": "PragmaDirective",
"src": "33:23:0"
},
{
"abstract": false,
"baseContracts": [],
"contractDependencies": [],
"contractKind": "contract",
"fullyImplemented": true,
"id": 8,
"linearizedBaseContracts": [
8
],
"name": "variables",
"nameLocation": "67:9:0",
"nodeType": "ContractDefinition",
"nodes": [
{
"constant": false,
"id": 4,
"mutability": "mutable",
"name": "age",
"nameLocation": "89:3:0",
"nodeType": "VariableDeclaration",
"scope": 8,
"src": "84:13:0",
"stateVariable": true,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 2,
"name": "uint",
"nodeType": "ElementaryTypeName",
"src": "84:4:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"value": {
"hexValue": "3432",
"id": 3,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "number",
"lValueRequested": false,
"nodeType": "Literal",
"src": "95:2:0",
"typeDescriptions": {
"typeIdentifier": "t_rational_42_by_1",
"typeString": "int_const 42"
},
"value": "42"
},
"visibility": "internal"
},
{
"constant": false,
"id": 7,
"mutability": "mutable",
"name": "height",
"nameLocation": "108:6:0",
"nodeType": "VariableDeclaration",
"scope": 8,
"src": "103:17:0",
"stateVariable": true,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 5,
"name": "uint",
"nodeType": "ElementaryTypeName",
"src": "103:4:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"value": {
"hexValue": "313732",
"id": 6,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "number",
"lValueRequested": false,
"nodeType": "Literal",
"src": "117:3:0",
"typeDescriptions": {
"typeIdentifier": "t_rational_172_by_1",
"typeString": "int_const 172"
},
"value": "172"
},
"visibility": "internal"
}
],
"scope": 9,
"src": "58:71:0",
"usedErrors": []
}
],
"src": "33:96:0"
},
"id": 0
}
}
}
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"goerli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "6080604052348015600f57600080fd5b50603f80601d6000396000f3fe6080604052600080fdfea264697066735822122026877c8ab99750cabc77372d526443af19fd6cb46fab49be9e9e3731b90a865364736f6c63430008110033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH1 0xF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x3F DUP1 PUSH1 0x1D PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x26 DUP8 PUSH29 0x8AB99750CABC77372D526443AF19FD6CB46FAB49BE9E9E3731B90A8653 PUSH5 0x736F6C6343 STOP ADDMOD GT STOP CALLER ",
"sourceMap": "58:17:0:-:0;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "6080604052600080fdfea264697066735822122026877c8ab99750cabc77372d526443af19fd6cb46fab49be9e9e3731b90a865364736f6c63430008110033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x26 DUP8 PUSH29 0x8AB99750CABC77372D526443AF19FD6CB46FAB49BE9E9E3731B90A8653 PUSH5 0x736F6C6343 STOP ADDMOD GT STOP CALLER ",
"sourceMap": "58:17:0:-:0;;;;;"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "12600",
"executionCost": "66",
"totalCost": "12666"
}
},
"methodIdentifiers": {}
},
"abi": []
}
{
"compiler": {
"version": "0.8.17+commit.8df45f5f"
},
"language": "Solidity",
"output": {
"abi": [],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/8_enum.sol": "Enum"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/8_enum.sol": {
"keccak256": "0x3c043721d78b9282a30c66e098c9b719a32990515df88d06aeb1a1a9882a9b7e",
"license": "MIT",
"urls": [
"bzz-raw://619f62f0c6ccd90a4c20e5f947d198c8faa1c62f3dd0d59b07be4d431e3b59ea",
"dweb:/ipfs/QmaenWf7ukMjxwSxXz4NgnzNtQudL1HurKesstBeetDkE2"
]
}
},
"version": 1
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"goerli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "6080604052348015600f57600080fd5b50603f80601d6000396000f3fe6080604052600080fdfea26469706673582212201e84d6463636cddd3ea0f3123058978fbd5d744ce3ee4805f9b79584cb363f0b64736f6c63430008110033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH1 0xF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x3F DUP1 PUSH1 0x1D PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x1E DUP5 0xD6 CHAINID CALLDATASIZE CALLDATASIZE 0xCD 0xDD RETURNDATACOPY LOG0 RETURN SLT ADDRESS PC SWAP8 DUP16 0xBD 0x5D PUSH21 0x4CE3EE4805F9B79584CB363F0B64736F6C63430008 GT STOP CALLER ",
"sourceMap": "58:75:0:-:0;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "6080604052600080fdfea26469706673582212201e84d6463636cddd3ea0f3123058978fbd5d744ce3ee4805f9b79584cb363f0b64736f6c63430008110033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x1E DUP5 0xD6 CHAINID CALLDATASIZE CALLDATASIZE 0xCD 0xDD RETURNDATACOPY LOG0 RETURN SLT ADDRESS PC SWAP8 DUP16 0xBD 0x5D PUSH21 0x4CE3EE4805F9B79584CB363F0B64736F6C63430008 GT STOP CALLER ",
"sourceMap": "58:75:0:-:0;;;;;"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "12600",
"executionCost": "66",
"totalCost": "12666"
}
},
"methodIdentifiers": {}
},
"abi": []
}
{
"compiler": {
"version": "0.8.17+commit.8df45f5f"
},
"language": "Solidity",
"output": {
"abi": [],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/8_enum.sol": "EnumSample"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/8_enum.sol": {
"keccak256": "0xbff4d28d9f45504215dd464e935a6b14ca8c3ad0159271ba2e2b74d4d1331430",
"license": "MIT",
"urls": [
"bzz-raw://776d9e4cf85396d97b8f5de5f35516cecfc590e120fec65d2a3da6d786beba9f",
"dweb:/ipfs/QmcZEPXMFZmoSiehjb3kepmBQpRQGz9oJpGSe31UCuZLBc"
]
}
},
"version": 1
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"goerli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "608060405234801561001057600080fd5b5061017f806100206000396000f3fe608060405234801561001057600080fd5b50600436106100415760003560e01c8063262a9dff14610046578063967e6e6514610064578063d5dcf12714610082575b600080fd5b61004e61009e565b60405161005b9190610108565b60405180910390f35b61006c6100a4565b6040516100799190610108565b60405180910390f35b61009c600480360381019061009791906100cc565b6100ad565b005b60005481565b60008054905090565b8060008190555050565b6000813590506100c681610132565b92915050565b6000602082840312156100e2576100e161012d565b5b60006100f0848285016100b7565b91505092915050565b61010281610123565b82525050565b600060208201905061011d60008301846100f9565b92915050565b6000819050919050565b600080fd5b61013b81610123565b811461014657600080fd5b5056fea264697066735822122039675188a7ac028f5cc6ff96c0bf538cab76fcd0d842f88dad8cadfa4a318a0664736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x17F 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 0x41 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x262A9DFF EQ PUSH2 0x46 JUMPI DUP1 PUSH4 0x967E6E65 EQ PUSH2 0x64 JUMPI DUP1 PUSH4 0xD5DCF127 EQ PUSH2 0x82 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x4E PUSH2 0x9E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x5B SWAP2 SWAP1 PUSH2 0x108 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x6C PUSH2 0xA4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x79 SWAP2 SWAP1 PUSH2 0x108 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x9C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x97 SWAP2 SWAP1 PUSH2 0xCC JUMP JUMPDEST PUSH2 0xAD JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST DUP1 PUSH1 0x0 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xC6 DUP2 PUSH2 0x132 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xE2 JUMPI PUSH2 0xE1 PUSH2 0x12D JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xF0 DUP5 DUP3 DUP6 ADD PUSH2 0xB7 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x102 DUP2 PUSH2 0x123 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x11D PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xF9 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x13B DUP2 PUSH2 0x123 JUMP JUMPDEST DUP2 EQ PUSH2 0x146 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 CODECOPY PUSH8 0x5188A7AC028F5CC6 SELFDESTRUCT SWAP7 0xC0 0xBF MSTORE8 DUP13 0xAB PUSH23 0xFCD0D842F88DAD8CADFA4A318A0664736F6C6343000807 STOP CALLER ",
"sourceMap": "154:229:0:-:0;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@age_3": {
"entryPoint": 158,
"id": 3,
"parameterSlots": 0,
"returnSlots": 0
},
"@getAge_21": {
"entryPoint": 164,
"id": 21,
"parameterSlots": 0,
"returnSlots": 1
},
"@setAge_13": {
"entryPoint": 173,
"id": 13,
"parameterSlots": 1,
"returnSlots": 0
},
"abi_decode_t_uint256": {
"entryPoint": 183,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 204,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 249,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 264,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 291,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 301,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 306,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:1374:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "59:87:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "69:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "91:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "78:12:1"
},
"nodeType": "YulFunctionCall",
"src": "78:20:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "69:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "134:5:1"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "107:26:1"
},
"nodeType": "YulFunctionCall",
"src": "107:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "107:33:1"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "37:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "45:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "53:5:1",
"type": ""
}
],
"src": "7:139:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "218:263:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "264:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "266:77:1"
},
"nodeType": "YulFunctionCall",
"src": "266:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "266:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "239:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "248:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "235:3:1"
},
"nodeType": "YulFunctionCall",
"src": "235:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "260:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "231:3:1"
},
"nodeType": "YulFunctionCall",
"src": "231:32:1"
},
"nodeType": "YulIf",
"src": "228:119:1"
},
{
"nodeType": "YulBlock",
"src": "357:117:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "372:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "386:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "376:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "401:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "436:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "447:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "432:3:1"
},
"nodeType": "YulFunctionCall",
"src": "432:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "456:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "411:20:1"
},
"nodeType": "YulFunctionCall",
"src": "411:53:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "401:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "188:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "199:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "211:6:1",
"type": ""
}
],
"src": "152:329:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "552:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "569:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "592:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "574:17:1"
},
"nodeType": "YulFunctionCall",
"src": "574:24:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "562:6:1"
},
"nodeType": "YulFunctionCall",
"src": "562:37:1"
},
"nodeType": "YulExpressionStatement",
"src": "562:37:1"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "540:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "547:3:1",
"type": ""
}
],
"src": "487:118:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "709:124:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "719:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "731:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "742:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "727:3:1"
},
"nodeType": "YulFunctionCall",
"src": "727:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "719:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "799:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "812:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "823:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "808:3:1"
},
"nodeType": "YulFunctionCall",
"src": "808:17:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "755:43:1"
},
"nodeType": "YulFunctionCall",
"src": "755:71:1"
},
"nodeType": "YulExpressionStatement",
"src": "755:71:1"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "681:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "693:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "704:4:1",
"type": ""
}
],
"src": "611:222:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "879:35:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "889:19:1",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "905:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "899:5:1"
},
"nodeType": "YulFunctionCall",
"src": "899:9:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "889:6:1"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "872:6:1",
"type": ""
}
],
"src": "839:75:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "965:32:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "975:16:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "986:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "975:7:1"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "947:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "957:7:1",
"type": ""
}
],
"src": "920:77:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1092:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1109:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1112:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1102:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1102:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "1102:12:1"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "1003:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1215:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1232:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1235:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1225:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1225:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "1225:12:1"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "1126:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1292:79:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1349:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1358:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1361:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1351:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1351:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "1351:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1315:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1340:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "1322:17:1"
},
"nodeType": "YulFunctionCall",
"src": "1322:24:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "1312:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1312:35:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1305:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1305:43:1"
},
"nodeType": "YulIf",
"src": "1302:63:1"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1285:5:1",
"type": ""
}
],
"src": "1249:122:1"
}
]
},
"contents": "{\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_encode_t_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 allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106100415760003560e01c8063262a9dff14610046578063967e6e6514610064578063d5dcf12714610082575b600080fd5b61004e61009e565b60405161005b9190610108565b60405180910390f35b61006c6100a4565b6040516100799190610108565b60405180910390f35b61009c600480360381019061009791906100cc565b6100ad565b005b60005481565b60008054905090565b8060008190555050565b6000813590506100c681610132565b92915050565b6000602082840312156100e2576100e161012d565b5b60006100f0848285016100b7565b91505092915050565b61010281610123565b82525050565b600060208201905061011d60008301846100f9565b92915050565b6000819050919050565b600080fd5b61013b81610123565b811461014657600080fd5b5056fea264697066735822122039675188a7ac028f5cc6ff96c0bf538cab76fcd0d842f88dad8cadfa4a318a0664736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x41 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x262A9DFF EQ PUSH2 0x46 JUMPI DUP1 PUSH4 0x967E6E65 EQ PUSH2 0x64 JUMPI DUP1 PUSH4 0xD5DCF127 EQ PUSH2 0x82 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x4E PUSH2 0x9E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x5B SWAP2 SWAP1 PUSH2 0x108 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x6C PUSH2 0xA4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x79 SWAP2 SWAP1 PUSH2 0x108 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x9C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x97 SWAP2 SWAP1 PUSH2 0xCC JUMP JUMPDEST PUSH2 0xAD JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST DUP1 PUSH1 0x0 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xC6 DUP2 PUSH2 0x132 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xE2 JUMPI PUSH2 0xE1 PUSH2 0x12D JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xF0 DUP5 DUP3 DUP6 ADD PUSH2 0xB7 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x102 DUP2 PUSH2 0x123 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x11D PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xF9 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x13B DUP2 PUSH2 0x123 JUMP JUMPDEST DUP2 EQ PUSH2 0x146 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 CODECOPY PUSH8 0x5188A7AC028F5CC6 SELFDESTRUCT SWAP7 0xC0 0xBF MSTORE8 DUP13 0xAB PUSH23 0xFCD0D842F88DAD8CADFA4A318A0664736F6C6343000807 STOP CALLER ",
"sourceMap": "154:229:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;200:15;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;308:72;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;241:61;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;200:15;;;;:::o;308:72::-;347:4;370:3;;363:10;;308:72;:::o;241:61::-;291:4;285:3;:10;;;;241:61;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:329::-;211:6;260:2;248:9;239:7;235:23;231:32;228:119;;;266:79;;:::i;:::-;228:119;386:1;411:53;456:7;447:6;436:9;432:22;411:53;:::i;:::-;401:63;;357:117;152:329;;;;:::o;487:118::-;574:24;592:5;574:24;:::i;:::-;569:3;562:37;487:118;;:::o;611:222::-;704:4;742:2;731:9;727:18;719:26;;755:71;823:1;812:9;808:17;799:6;755:71;:::i;:::-;611:222;;;;:::o;920:77::-;957:7;986:5;975:16;;920:77;;;:::o;1126:117::-;1235:1;1232;1225:12;1249:122;1322:24;1340:5;1322:24;:::i;:::-;1315:5;1312:35;1302:63;;1361:1;1358;1351:12;1302:63;1249:122;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "76600",
"executionCost": "123",
"totalCost": "76723"
},
"external": {
"age()": "2407",
"getAge()": "2437",
"setAge(uint256)": "22542"
}
},
"methodIdentifiers": {
"age()": "262a9dff",
"getAge()": "967e6e65",
"setAge(uint256)": "d5dcf127"
}
},
"abi": [
{
"inputs": [],
"name": "age",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "getAge",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "pAge",
"type": "uint256"
}
],
"name": "setAge",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.7+commit.e28d00a7"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [],
"name": "age",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "getAge",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "pAge",
"type": "uint256"
}
],
"name": "setAge",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/4_structure.sol": "MyContract"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/4_structure.sol": {
"keccak256": "0xa030766ec1780d9c0a8be2700fa91b4a4e934e3b1ee55d45e7954946bfffa5b3",
"license": "MIT",
"urls": [
"bzz-raw://1b6dea6b320e1d8862f71c5cc6af141edd2ae81ca2f11fe8386a225443a08f18",
"dweb:/ipfs/QmanWe75yR9RY3qHxSqaZmv82VmfkRouBTVVNDmca8TA4S"
]
}
},
"version": 1
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"goerli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50610150806100206000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c80632e64cec11461003b5780636057361d14610059575b600080fd5b610043610075565b60405161005091906100a1565b60405180910390f35b610073600480360381019061006e91906100ed565b61007e565b005b60008054905090565b8060008190555050565b6000819050919050565b61009b81610088565b82525050565b60006020820190506100b66000830184610092565b92915050565b600080fd5b6100ca81610088565b81146100d557600080fd5b50565b6000813590506100e7816100c1565b92915050565b600060208284031215610103576101026100bc565b5b6000610111848285016100d8565b9150509291505056fea2646970667358221220522334dfd7decc643eeb644e28d6d7f11bae5f5b74d14e33980a35d12bc7771f64736f6c63430008110033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x150 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 0x36 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x2E64CEC1 EQ PUSH2 0x3B JUMPI DUP1 PUSH4 0x6057361D EQ PUSH2 0x59 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x43 PUSH2 0x75 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x50 SWAP2 SWAP1 PUSH2 0xA1 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 0xED JUMP JUMPDEST PUSH2 0x7E JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST DUP1 PUSH1 0x0 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x9B DUP2 PUSH2 0x88 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xB6 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x92 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xCA DUP2 PUSH2 0x88 JUMP JUMPDEST DUP2 EQ PUSH2 0xD5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xE7 DUP2 PUSH2 0xC1 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x103 JUMPI PUSH2 0x102 PUSH2 0xBC JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x111 DUP5 DUP3 DUP6 ADD PUSH2 0xD8 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 MSTORE 0x23 CALLVALUE 0xDF 0xD7 0xDE 0xCC PUSH5 0x3EEB644E28 0xD6 0xD7 CALL SHL 0xAE 0x5F JUMPDEST PUSH21 0xD14E33980A35D12BC7771F64736F6C634300081100 CALLER ",
"sourceMap": "199:356:0:-:0;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@retrieve_24": {
"entryPoint": 117,
"id": 24,
"parameterSlots": 0,
"returnSlots": 1
},
"@store_15": {
"entryPoint": 126,
"id": 15,
"parameterSlots": 1,
"returnSlots": 0
},
"abi_decode_t_uint256": {
"entryPoint": 216,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 237,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 146,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 161,
"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": 188,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 193,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:1374: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": "155:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "172:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "195:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "177:17:1"
},
"nodeType": "YulFunctionCall",
"src": "177:24:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "165:6:1"
},
"nodeType": "YulFunctionCall",
"src": "165:37:1"
},
"nodeType": "YulExpressionStatement",
"src": "165:37:1"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "143:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "150:3:1",
"type": ""
}
],
"src": "90:118:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "312:124:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "322:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "334:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "345:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "330:3:1"
},
"nodeType": "YulFunctionCall",
"src": "330:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "322:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "402:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "415:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "426:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "411:3:1"
},
"nodeType": "YulFunctionCall",
"src": "411:17:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "358:43:1"
},
"nodeType": "YulFunctionCall",
"src": "358:71:1"
},
"nodeType": "YulExpressionStatement",
"src": "358:71:1"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "284:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "296:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "307:4:1",
"type": ""
}
],
"src": "214:222:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "482:35:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "492:19:1",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "508:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "502:5:1"
},
"nodeType": "YulFunctionCall",
"src": "502:9:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "492:6:1"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "475:6:1",
"type": ""
}
],
"src": "442:75:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "612:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "629:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "632:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "622:6:1"
},
"nodeType": "YulFunctionCall",
"src": "622:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "622:12:1"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "523:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "735:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "752:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "755:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "745:6:1"
},
"nodeType": "YulFunctionCall",
"src": "745:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "745:12:1"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "646:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "812:79:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "869:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "878:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "881:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "871:6:1"
},
"nodeType": "YulFunctionCall",
"src": "871:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "871:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "835:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "860:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "842:17:1"
},
"nodeType": "YulFunctionCall",
"src": "842:24:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "832:2:1"
},
"nodeType": "YulFunctionCall",
"src": "832:35:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "825:6:1"
},
"nodeType": "YulFunctionCall",
"src": "825:43:1"
},
"nodeType": "YulIf",
"src": "822:63:1"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "805:5:1",
"type": ""
}
],
"src": "769:122:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "949:87:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "959:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "981:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "968:12:1"
},
"nodeType": "YulFunctionCall",
"src": "968:20:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "959:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1024:5:1"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "997:26:1"
},
"nodeType": "YulFunctionCall",
"src": "997:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "997:33:1"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "927:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "935:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "943:5:1",
"type": ""
}
],
"src": "897:139:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1108:263:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1154:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "1156:77:1"
},
"nodeType": "YulFunctionCall",
"src": "1156:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "1156:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1129:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1138:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1125:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1125:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1150:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1121:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1121:32:1"
},
"nodeType": "YulIf",
"src": "1118:119:1"
},
{
"nodeType": "YulBlock",
"src": "1247:117:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1262:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1276:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1266:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1291:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1326:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1337:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1322:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1322:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1346:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "1301:20:1"
},
"nodeType": "YulFunctionCall",
"src": "1301:53:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1291:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1078:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1089:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1101:6:1",
"type": ""
}
],
"src": "1042:329:1"
}
]
},
"contents": "{\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function 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 validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106100365760003560e01c80632e64cec11461003b5780636057361d14610059575b600080fd5b610043610075565b60405161005091906100a1565b60405180910390f35b610073600480360381019061006e91906100ed565b61007e565b005b60008054905090565b8060008190555050565b6000819050919050565b61009b81610088565b82525050565b60006020820190506100b66000830184610092565b92915050565b600080fd5b6100ca81610088565b81146100d557600080fd5b50565b6000813590506100e7816100c1565b92915050565b600060208284031215610103576101026100bc565b5b6000610111848285016100d8565b9150509291505056fea2646970667358221220522334dfd7decc643eeb644e28d6d7f11bae5f5b74d14e33980a35d12bc7771f64736f6c63430008110033",
"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 0x2E64CEC1 EQ PUSH2 0x3B JUMPI DUP1 PUSH4 0x6057361D EQ PUSH2 0x59 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x43 PUSH2 0x75 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x50 SWAP2 SWAP1 PUSH2 0xA1 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 0xED JUMP JUMPDEST PUSH2 0x7E JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST DUP1 PUSH1 0x0 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x9B DUP2 PUSH2 0x88 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xB6 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x92 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xCA DUP2 PUSH2 0x88 JUMP JUMPDEST DUP2 EQ PUSH2 0xD5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xE7 DUP2 PUSH2 0xC1 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x103 JUMPI PUSH2 0x102 PUSH2 0xBC JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x111 DUP5 DUP3 DUP6 ADD PUSH2 0xD8 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 MSTORE 0x23 CALLVALUE 0xDF 0xD7 0xDE 0xCC PUSH5 0x3EEB644E28 0xD6 0xD7 CALL SHL 0xAE 0x5F JUMPDEST PUSH21 0xD14E33980A35D12BC7771F64736F6C634300081100 CALLER ",
"sourceMap": "199:356:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;474:79;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;329:64;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;474:79;515:7;540:6;;533:13;;474:79;:::o;329:64::-;383:3;374:6;:12;;;;329:64;:::o;7:77:1:-;44:7;73:5;62:16;;7:77;;;:::o;90:118::-;177:24;195:5;177:24;:::i;:::-;172:3;165:37;90:118;;:::o;214:222::-;307:4;345:2;334:9;330:18;322:26;;358:71;426:1;415:9;411:17;402:6;358:71;:::i;:::-;214:222;;;;:::o;523:117::-;632:1;629;622:12;769:122;842:24;860:5;842:24;:::i;:::-;835:5;832:35;822:63;;881:1;878;871:12;822:63;769:122;:::o;897:139::-;943:5;981:6;968:20;959:29;;997:33;1024:5;997:33;:::i;:::-;897:139;;;;:::o;1042:329::-;1101:6;1150:2;1138:9;1129:7;1125:23;1121:32;1118:119;;;1156:79;;:::i;:::-;1118:119;1276:1;1301:53;1346:7;1337:6;1326:9;1322:22;1301:53;:::i;:::-;1291:63;;1247:117;1042:329;;;;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "67200",
"executionCost": "117",
"totalCost": "67317"
},
"external": {
"retrieve()": "2415",
"store(uint256)": "22520"
}
},
"methodIdentifiers": {
"retrieve()": "2e64cec1",
"store(uint256)": "6057361d"
}
},
"abi": [
{
"inputs": [],
"name": "retrieve",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "num",
"type": "uint256"
}
],
"name": "store",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.17+commit.8df45f5f"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [],
"name": "retrieve",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "num",
"type": "uint256"
}
],
"name": "store",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"custom:dev-run-script": "./scripts/deploy_with_ethers.ts",
"details": "Store & retrieve value in a variable",
"kind": "dev",
"methods": {
"retrieve()": {
"details": "Return value ",
"returns": {
"_0": "value of 'number'"
}
},
"store(uint256)": {
"details": "Store value in variable",
"params": {
"num": "value to store"
}
}
},
"title": "Storage",
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/1_Storage.sol": "Storage"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/1_Storage.sol": {
"keccak256": "0x0cce91e0b241d8850bf4ef9d14d0ec8f2f13deb59b5ec164d70ed107e0acb462",
"license": "GPL-3.0",
"urls": [
"bzz-raw://ec43708d31356793d9923dcc67345558fc6957e2ac4029b882c2501efcd8eabe",
"dweb:/ipfs/QmQQfBMkpDgmxKzYaoAtqfaybzfgGm9b2LWYyT56Chv6xH"
]
}
},
"version": 1
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"goerli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "608060405234801561001057600080fd5b5061082b806100206000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c806315ef194e1461003b578063174d39f614610057575b600080fd5b61005560048036038101906100509190610391565b610088565b005b610071600480360381019061006c9190610400565b610121565b60405161007f9291906104bb565b60405180910390f35b816000808560ff1660ff16815260200190815260200160002060000190816100b09190610701565b50806000808560ff1660ff16815260200190815260200160002060010160006101000a81548160ff021916908360ff1602179055507f5d1d96f061794b83c7c2e59d0c80057abcc1c8431426b1a8774acd9aa72268ba8260405161011491906107d3565b60405180910390a1505050565b606060008060008460ff1660ff1681526020019081526020016000206000016000808560ff1660ff16815260200190815260200160002060010160009054906101000a900460ff168180546101759061051a565b80601f01602080910402602001604051908101604052809291908181526020018280546101a19061051a565b80156101ee5780601f106101c3576101008083540402835291602001916101ee565b820191906000526020600020905b8154815290600101906020018083116101d157829003601f168201915b5050505050915091509150915091565b6000604051905090565b600080fd5b600080fd5b600060ff82169050919050565b61022881610212565b811461023357600080fd5b50565b6000813590506102458161021f565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61029e82610255565b810181811067ffffffffffffffff821117156102bd576102bc610266565b5b80604052505050565b60006102d06101fe565b90506102dc8282610295565b919050565b600067ffffffffffffffff8211156102fc576102fb610266565b5b61030582610255565b9050602081019050919050565b82818337600083830152505050565b600061033461032f846102e1565b6102c6565b9050828152602081018484840111156103505761034f610250565b5b61035b848285610312565b509392505050565b600082601f8301126103785761037761024b565b5b8135610388848260208601610321565b91505092915050565b6000806000606084860312156103aa576103a9610208565b5b60006103b886828701610236565b935050602084013567ffffffffffffffff8111156103d9576103d861020d565b5b6103e586828701610363565b92505060406103f686828701610236565b9150509250925092565b60006020828403121561041657610415610208565b5b600061042484828501610236565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561046757808201518184015260208101905061044c565b60008484015250505050565b600061047e8261042d565b6104888185610438565b9350610498818560208601610449565b6104a181610255565b840191505092915050565b6104b581610212565b82525050565b600060408201905081810360008301526104d58185610473565b90506104e460208301846104ac565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061053257607f821691505b602082108103610545576105446104eb565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026105ad7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610570565b6105b78683610570565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006105fe6105f96105f4846105cf565b6105d9565b6105cf565b9050919050565b6000819050919050565b610618836105e3565b61062c61062482610605565b84845461057d565b825550505050565b600090565b610641610634565b61064c81848461060f565b505050565b5b8181101561067057610665600082610639565b600181019050610652565b5050565b601f8211156106b5576106868161054b565b61068f84610560565b8101602085101561069e578190505b6106b26106aa85610560565b830182610651565b50505b505050565b600082821c905092915050565b60006106d8600019846008026106ba565b1980831691505092915050565b60006106f183836106c7565b9150826002028217905092915050565b61070a8261042d565b67ffffffffffffffff81111561072357610722610266565b5b61072d825461051a565b610738828285610674565b600060209050601f83116001811461076b5760008415610759578287015190505b61076385826106e5565b8655506107cb565b601f1984166107798661054b565b60005b828110156107a15784890151825560018201915060208501945060208101905061077c565b868310156107be57848901516107ba601f8916826106c7565b8355505b6001600288020188555050505b505050505050565b600060208201905081810360008301526107ed8184610473565b90509291505056fea2646970667358221220b24288dc8a57ce69ae29b434a4fa77f36eab62a77f5408622910d180eeafe1c464736f6c63430008110033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x82B 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 0x36 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x15EF194E EQ PUSH2 0x3B JUMPI DUP1 PUSH4 0x174D39F6 EQ PUSH2 0x57 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x55 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x50 SWAP2 SWAP1 PUSH2 0x391 JUMP JUMPDEST PUSH2 0x88 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x71 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x6C SWAP2 SWAP1 PUSH2 0x400 JUMP JUMPDEST PUSH2 0x121 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x7F SWAP3 SWAP2 SWAP1 PUSH2 0x4BB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST DUP2 PUSH1 0x0 DUP1 DUP6 PUSH1 0xFF AND PUSH1 0xFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 ADD SWAP1 DUP2 PUSH2 0xB0 SWAP2 SWAP1 PUSH2 0x701 JUMP JUMPDEST POP DUP1 PUSH1 0x0 DUP1 DUP6 PUSH1 0xFF AND PUSH1 0xFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x1 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 PUSH1 0xFF AND MUL OR SWAP1 SSTORE POP PUSH32 0x5D1D96F061794B83C7C2E59D0C80057ABCC1C8431426B1A8774ACD9AA72268BA DUP3 PUSH1 0x40 MLOAD PUSH2 0x114 SWAP2 SWAP1 PUSH2 0x7D3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP1 PUSH1 0x0 DUP5 PUSH1 0xFF AND PUSH1 0xFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 ADD PUSH1 0x0 DUP1 DUP6 PUSH1 0xFF AND PUSH1 0xFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x1 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 DUP1 SLOAD PUSH2 0x175 SWAP1 PUSH2 0x51A 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 0x1A1 SWAP1 PUSH2 0x51A JUMP JUMPDEST DUP1 ISZERO PUSH2 0x1EE JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x1C3 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x1EE 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 0x1D1 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP2 POP SWAP2 POP SWAP2 POP SWAP2 POP SWAP2 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x228 DUP2 PUSH2 0x212 JUMP JUMPDEST DUP2 EQ PUSH2 0x233 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x245 DUP2 PUSH2 0x21F JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x29E DUP3 PUSH2 0x255 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x2BD JUMPI PUSH2 0x2BC PUSH2 0x266 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2D0 PUSH2 0x1FE JUMP JUMPDEST SWAP1 POP PUSH2 0x2DC DUP3 DUP3 PUSH2 0x295 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x2FC JUMPI PUSH2 0x2FB PUSH2 0x266 JUMP JUMPDEST JUMPDEST PUSH2 0x305 DUP3 PUSH2 0x255 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 0x334 PUSH2 0x32F DUP5 PUSH2 0x2E1 JUMP JUMPDEST PUSH2 0x2C6 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x350 JUMPI PUSH2 0x34F PUSH2 0x250 JUMP JUMPDEST JUMPDEST PUSH2 0x35B DUP5 DUP3 DUP6 PUSH2 0x312 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x378 JUMPI PUSH2 0x377 PUSH2 0x24B JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x388 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x321 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x3AA JUMPI PUSH2 0x3A9 PUSH2 0x208 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x3B8 DUP7 DUP3 DUP8 ADD PUSH2 0x236 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x3D9 JUMPI PUSH2 0x3D8 PUSH2 0x20D JUMP JUMPDEST JUMPDEST PUSH2 0x3E5 DUP7 DUP3 DUP8 ADD PUSH2 0x363 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x3F6 DUP7 DUP3 DUP8 ADD PUSH2 0x236 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x416 JUMPI PUSH2 0x415 PUSH2 0x208 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x424 DUP5 DUP3 DUP6 ADD PUSH2 0x236 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 0x467 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x44C JUMP JUMPDEST PUSH1 0x0 DUP5 DUP5 ADD MSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x47E DUP3 PUSH2 0x42D JUMP JUMPDEST PUSH2 0x488 DUP2 DUP6 PUSH2 0x438 JUMP JUMPDEST SWAP4 POP PUSH2 0x498 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x449 JUMP JUMPDEST PUSH2 0x4A1 DUP2 PUSH2 0x255 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x4B5 DUP2 PUSH2 0x212 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x4D5 DUP2 DUP6 PUSH2 0x473 JUMP JUMPDEST SWAP1 POP PUSH2 0x4E4 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x4AC JUMP JUMPDEST SWAP4 SWAP3 POP 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 0x532 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x545 JUMPI PUSH2 0x544 PUSH2 0x4EB JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP DUP2 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 PUSH1 0x1F DUP4 ADD DIV SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 SHL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x8 DUP4 MUL PUSH2 0x5AD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 PUSH2 0x570 JUMP JUMPDEST PUSH2 0x5B7 DUP7 DUP4 PUSH2 0x570 JUMP JUMPDEST SWAP6 POP DUP1 NOT DUP5 AND SWAP4 POP DUP1 DUP7 AND DUP5 OR SWAP3 POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x5FE PUSH2 0x5F9 PUSH2 0x5F4 DUP5 PUSH2 0x5CF JUMP JUMPDEST PUSH2 0x5D9 JUMP JUMPDEST PUSH2 0x5CF JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x618 DUP4 PUSH2 0x5E3 JUMP JUMPDEST PUSH2 0x62C PUSH2 0x624 DUP3 PUSH2 0x605 JUMP JUMPDEST DUP5 DUP5 SLOAD PUSH2 0x57D JUMP JUMPDEST DUP3 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 SWAP1 JUMP JUMPDEST PUSH2 0x641 PUSH2 0x634 JUMP JUMPDEST PUSH2 0x64C DUP2 DUP5 DUP5 PUSH2 0x60F JUMP JUMPDEST POP POP POP JUMP JUMPDEST JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x670 JUMPI PUSH2 0x665 PUSH1 0x0 DUP3 PUSH2 0x639 JUMP JUMPDEST PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x652 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH2 0x6B5 JUMPI PUSH2 0x686 DUP2 PUSH2 0x54B JUMP JUMPDEST PUSH2 0x68F DUP5 PUSH2 0x560 JUMP JUMPDEST DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH2 0x69E JUMPI DUP2 SWAP1 POP JUMPDEST PUSH2 0x6B2 PUSH2 0x6AA DUP6 PUSH2 0x560 JUMP JUMPDEST DUP4 ADD DUP3 PUSH2 0x651 JUMP JUMPDEST POP POP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 SHR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x6D8 PUSH1 0x0 NOT DUP5 PUSH1 0x8 MUL PUSH2 0x6BA JUMP JUMPDEST NOT DUP1 DUP4 AND SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x6F1 DUP4 DUP4 PUSH2 0x6C7 JUMP JUMPDEST SWAP2 POP DUP3 PUSH1 0x2 MUL DUP3 OR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x70A DUP3 PUSH2 0x42D JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x723 JUMPI PUSH2 0x722 PUSH2 0x266 JUMP JUMPDEST JUMPDEST PUSH2 0x72D DUP3 SLOAD PUSH2 0x51A JUMP JUMPDEST PUSH2 0x738 DUP3 DUP3 DUP6 PUSH2 0x674 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 SWAP1 POP PUSH1 0x1F DUP4 GT PUSH1 0x1 DUP2 EQ PUSH2 0x76B JUMPI PUSH1 0x0 DUP5 ISZERO PUSH2 0x759 JUMPI DUP3 DUP8 ADD MLOAD SWAP1 POP JUMPDEST PUSH2 0x763 DUP6 DUP3 PUSH2 0x6E5 JUMP JUMPDEST DUP7 SSTORE POP PUSH2 0x7CB JUMP JUMPDEST PUSH1 0x1F NOT DUP5 AND PUSH2 0x779 DUP7 PUSH2 0x54B JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x7A1 JUMPI DUP5 DUP10 ADD MLOAD DUP3 SSTORE PUSH1 0x1 DUP3 ADD SWAP2 POP PUSH1 0x20 DUP6 ADD SWAP5 POP PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x77C JUMP JUMPDEST DUP7 DUP4 LT ISZERO PUSH2 0x7BE JUMPI DUP5 DUP10 ADD MLOAD PUSH2 0x7BA PUSH1 0x1F DUP10 AND DUP3 PUSH2 0x6C7 JUMP JUMPDEST DUP4 SSTORE POP JUMPDEST PUSH1 0x1 PUSH1 0x2 DUP9 MUL ADD DUP9 SSTORE POP POP POP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x7ED DUP2 DUP5 PUSH2 0x473 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xB2 TIMESTAMP DUP9 0xDC DUP11 JUMPI 0xCE PUSH10 0xAE29B434A4FA77F36EAB PUSH3 0xA77F54 ADDMOD PUSH3 0x2910D1 DUP1 0xEE 0xAF 0xE1 0xC4 PUSH5 0x736F6C6343 STOP ADDMOD GT STOP CALLER ",
"sourceMap": "58:578:0:-:0;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@getLearner_63": {
"entryPoint": 289,
"id": 63,
"parameterSlots": 1,
"returnSlots": 2
},
"@setLearner_43": {
"entryPoint": 136,
"id": 43,
"parameterSlots": 3,
"returnSlots": 0
},
"abi_decode_available_length_t_string_memory_ptr": {
"entryPoint": 801,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_t_string_memory_ptr": {
"entryPoint": 867,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint8": {
"entryPoint": 566,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint8": {
"entryPoint": 1024,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint8t_string_memory_ptrt_uint8": {
"entryPoint": 913,
"id": null,
"parameterSlots": 2,
"returnSlots": 3
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 1139,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_uint8_to_t_uint8_fromStack": {
"entryPoint": 1196,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 2003,
"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": 1211,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"allocate_memory": {
"entryPoint": 710,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": 510,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_allocation_size_t_string_memory_ptr": {
"entryPoint": 737,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_dataslot_t_string_storage": {
"entryPoint": 1355,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 1069,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 1080,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"clean_up_bytearray_end_slots_t_string_storage": {
"entryPoint": 1652,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"cleanup_t_uint256": {
"entryPoint": 1487,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint8": {
"entryPoint": 530,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"clear_storage_range_t_bytes1": {
"entryPoint": 1617,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"convert_t_uint256_to_t_uint256": {
"entryPoint": 1507,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage": {
"entryPoint": 1793,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"copy_calldata_to_memory_with_cleanup": {
"entryPoint": 786,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"copy_memory_to_memory_with_cleanup": {
"entryPoint": 1097,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"divide_by_32_ceil": {
"entryPoint": 1376,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_byte_array_length": {
"entryPoint": 1306,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_used_part_and_set_length_of_short_byte_array": {
"entryPoint": 1765,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"finalize_allocation": {
"entryPoint": 661,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"identity": {
"entryPoint": 1497,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"mask_bytes_dynamic": {
"entryPoint": 1735,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"panic_error_0x22": {
"entryPoint": 1259,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 614,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"prepare_store_t_uint256": {
"entryPoint": 1541,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": {
"entryPoint": 587,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": {
"entryPoint": 592,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": 525,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 520,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 597,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"shift_left_dynamic": {
"entryPoint": 1392,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"shift_right_unsigned_dynamic": {
"entryPoint": 1722,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"storage_set_to_zero_t_uint256": {
"entryPoint": 1593,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"update_byte_slice_dynamic32": {
"entryPoint": 1405,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"update_storage_value_t_uint256_to_t_uint256": {
"entryPoint": 1551,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"validator_revert_t_uint8": {
"entryPoint": 543,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"zero_value_for_split_t_uint256": {
"entryPoint": 1588,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:10744: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": "377:43:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "387:27:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "402:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "409:4:1",
"type": "",
"value": "0xff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "398:3:1"
},
"nodeType": "YulFunctionCall",
"src": "398:16:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "387:7:1"
}
]
}
]
},
"name": "cleanup_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "359:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "369:7:1",
"type": ""
}
],
"src": "334:86:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "467:77:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "522:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "531:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "534:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "524:6:1"
},
"nodeType": "YulFunctionCall",
"src": "524:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "524:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "490:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "513:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint8",
"nodeType": "YulIdentifier",
"src": "497:15:1"
},
"nodeType": "YulFunctionCall",
"src": "497:22:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "487:2:1"
},
"nodeType": "YulFunctionCall",
"src": "487:33:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "480:6:1"
},
"nodeType": "YulFunctionCall",
"src": "480:41:1"
},
"nodeType": "YulIf",
"src": "477:61:1"
}
]
},
"name": "validator_revert_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "460:5:1",
"type": ""
}
],
"src": "426:118:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "600:85:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "610:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "632:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "619:12:1"
},
"nodeType": "YulFunctionCall",
"src": "619:20:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "610:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "673:5:1"
}
],
"functionName": {
"name": "validator_revert_t_uint8",
"nodeType": "YulIdentifier",
"src": "648:24:1"
},
"nodeType": "YulFunctionCall",
"src": "648:31:1"
},
"nodeType": "YulExpressionStatement",
"src": "648:31:1"
}
]
},
"name": "abi_decode_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "578:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "586:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "594:5:1",
"type": ""
}
],
"src": "550:135:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "780:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "797:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "800:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "790:6:1"
},
"nodeType": "YulFunctionCall",
"src": "790:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "790:12:1"
}
]
},
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulFunctionDefinition",
"src": "691:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "903:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "920:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "923:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "913:6:1"
},
"nodeType": "YulFunctionCall",
"src": "913:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "913:12:1"
}
]
},
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulFunctionDefinition",
"src": "814:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "985:54:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "995:38:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1013:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1020:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1009:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1009:14:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1029:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "1025:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1025:7:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1005:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1005:28:1"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "995:6:1"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "968:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "978:6:1",
"type": ""
}
],
"src": "937:102:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1073:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1090:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1093:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1083:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1083:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "1083:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1187:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1190:4:1",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1180:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1180:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "1180:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1211:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1214:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1204:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1204:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "1204:15:1"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "1045:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1274:238:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1284:58:1",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1306:6:1"
},
{
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1336:4:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "1314:21:1"
},
"nodeType": "YulFunctionCall",
"src": "1314:27:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1302:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1302:40:1"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "1288:10:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1453:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "1455:16:1"
},
"nodeType": "YulFunctionCall",
"src": "1455:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "1455:18:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "1396:10:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1408:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1393:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1393:34:1"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "1432:10:1"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1444:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "1429:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1429:22:1"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "1390:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1390:62:1"
},
"nodeType": "YulIf",
"src": "1387:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1491:2:1",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "1495:10:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1484:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1484:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "1484:22:1"
}
]
},
"name": "finalize_allocation",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "1260:6:1",
"type": ""
},
{
"name": "size",
"nodeType": "YulTypedName",
"src": "1268:4:1",
"type": ""
}
],
"src": "1231:281:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1559:88:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1569:30:1",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nodeType": "YulIdentifier",
"src": "1579:18:1"
},
"nodeType": "YulFunctionCall",
"src": "1579:20:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1569:6:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1628:6:1"
},
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1636:4:1"
}
],
"functionName": {
"name": "finalize_allocation",
"nodeType": "YulIdentifier",
"src": "1608:19:1"
},
"nodeType": "YulFunctionCall",
"src": "1608:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "1608:33:1"
}
]
},
"name": "allocate_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "1543:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "1552:6:1",
"type": ""
}
],
"src": "1518:129:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1720:241:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1825:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "1827:16:1"
},
"nodeType": "YulFunctionCall",
"src": "1827:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "1827:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1797:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1805:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1794:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1794:30:1"
},
"nodeType": "YulIf",
"src": "1791:56:1"
},
{
"nodeType": "YulAssignment",
"src": "1857:37:1",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1887:6:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "1865:21:1"
},
"nodeType": "YulFunctionCall",
"src": "1865:29:1"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1857:4:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1931:23:1",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1943:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1949:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1939:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1939:15:1"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1931:4:1"
}
]
}
]
},
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1704:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "1715:4:1",
"type": ""
}
],
"src": "1653:308:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2031:82:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "2054:3:1"
},
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "2059:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2064:6:1"
}
],
"functionName": {
"name": "calldatacopy",
"nodeType": "YulIdentifier",
"src": "2041:12:1"
},
"nodeType": "YulFunctionCall",
"src": "2041:30:1"
},
"nodeType": "YulExpressionStatement",
"src": "2041:30:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "2091:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2096:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2087:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2087:16:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2105:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2080:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2080:27:1"
},
"nodeType": "YulExpressionStatement",
"src": "2080:27:1"
}
]
},
"name": "copy_calldata_to_memory_with_cleanup",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "2013:3:1",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "2018:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2023:6:1",
"type": ""
}
],
"src": "1967:146:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2203:341:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2213:75:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2280:6:1"
}
],
"functionName": {
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2238:41:1"
},
"nodeType": "YulFunctionCall",
"src": "2238:49:1"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "2222:15:1"
},
"nodeType": "YulFunctionCall",
"src": "2222:66:1"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2213:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2304:5:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2311:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2297:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2297:21:1"
},
"nodeType": "YulExpressionStatement",
"src": "2297:21:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "2327:27:1",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2342:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2349:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2338:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2338:16:1"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "2331:3:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2392:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulIdentifier",
"src": "2394:77:1"
},
"nodeType": "YulFunctionCall",
"src": "2394:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "2394:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "2373:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2378:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2369:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2369:16:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2387:3:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2366:2:1"
},
"nodeType": "YulFunctionCall",
"src": "2366:25:1"
},
"nodeType": "YulIf",
"src": "2363:112:1"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "2521:3:1"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "2526:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2531:6:1"
}
],
"functionName": {
"name": "copy_calldata_to_memory_with_cleanup",
"nodeType": "YulIdentifier",
"src": "2484:36:1"
},
"nodeType": "YulFunctionCall",
"src": "2484:54:1"
},
"nodeType": "YulExpressionStatement",
"src": "2484:54:1"
}
]
},
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "2176:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2181:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2189:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "2197:5:1",
"type": ""
}
],
"src": "2119:425:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2626:278:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2675:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "2677:77:1"
},
"nodeType": "YulFunctionCall",
"src": "2677:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "2677:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2654:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2662:4:1",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2650:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2650:17:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2669:3:1"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2646:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2646:27:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2639:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2639:35:1"
},
"nodeType": "YulIf",
"src": "2636:122:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "2767:34:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2794:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2781:12:1"
},
"nodeType": "YulFunctionCall",
"src": "2781:20:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2771:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2810:88:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2871:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2879:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2867:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2867:17:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2886:6:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2894:3:1"
}
],
"functionName": {
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2819:47:1"
},
"nodeType": "YulFunctionCall",
"src": "2819:79:1"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2810:5:1"
}
]
}
]
},
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2604:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2612:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "2620:5:1",
"type": ""
}
],
"src": "2564:340:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3016:685:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3062:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "3064:77:1"
},
"nodeType": "YulFunctionCall",
"src": "3064:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "3064:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3037:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3046:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3033:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3033:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3058:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3029:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3029:32:1"
},
"nodeType": "YulIf",
"src": "3026:119:1"
},
{
"nodeType": "YulBlock",
"src": "3155:115:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3170:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3184:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3174:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3199:61:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3232:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3243:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3228:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3228:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3252:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint8",
"nodeType": "YulIdentifier",
"src": "3209:18:1"
},
"nodeType": "YulFunctionCall",
"src": "3209:51:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3199:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "3280:288:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3295:46:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3326:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3337:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3322:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3322:18:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "3309:12:1"
},
"nodeType": "YulFunctionCall",
"src": "3309:32:1"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3299:6:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3388:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "3390:77:1"
},
"nodeType": "YulFunctionCall",
"src": "3390:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "3390:79:1"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3360:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3368:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3357:2:1"
},
"nodeType": "YulFunctionCall",
"src": "3357:30:1"
},
"nodeType": "YulIf",
"src": "3354:117:1"
},
{
"nodeType": "YulAssignment",
"src": "3485:73:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3530:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3541:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3526:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3526:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3550:7:1"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "3495:30:1"
},
"nodeType": "YulFunctionCall",
"src": "3495:63:1"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "3485:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "3578:116:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3593:16:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3607:2:1",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3597:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3623:61:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3656:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3667:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3652:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3652:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3676:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint8",
"nodeType": "YulIdentifier",
"src": "3633:18:1"
},
"nodeType": "YulFunctionCall",
"src": "3633:51:1"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "3623:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint8t_string_memory_ptrt_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2970:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2981:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2993:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "3001:6:1",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "3009:6:1",
"type": ""
}
],
"src": "2910:791:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3771:261:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3817:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "3819:77:1"
},
"nodeType": "YulFunctionCall",
"src": "3819:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "3819:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3792:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3801:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3788:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3788:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3813:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3784:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3784:32:1"
},
"nodeType": "YulIf",
"src": "3781:119:1"
},
{
"nodeType": "YulBlock",
"src": "3910:115:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3925:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3939:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3929:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3954:61:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3987:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3998:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3983:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3983:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4007:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint8",
"nodeType": "YulIdentifier",
"src": "3964:18:1"
},
"nodeType": "YulFunctionCall",
"src": "3964:51:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3954:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3741:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3752:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3764:6:1",
"type": ""
}
],
"src": "3707:325:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4097:40:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4108:22:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4124:5:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "4118:5:1"
},
"nodeType": "YulFunctionCall",
"src": "4118:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4108:6:1"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4080:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4090:6:1",
"type": ""
}
],
"src": "4038:99:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4239:73:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4256:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4261:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4249:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4249:19:1"
},
"nodeType": "YulExpressionStatement",
"src": "4249:19:1"
},
{
"nodeType": "YulAssignment",
"src": "4277:29:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4296:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4301:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4292:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4292:14:1"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "4277:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4211:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4216:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "4227:11:1",
"type": ""
}
],
"src": "4143:169:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4380:184:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4390:10:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4399:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "4394:1:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4459:63:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "4484:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4489:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4480:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4480:11:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "4503:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4508:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4499:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4499:11:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "4493:5:1"
},
"nodeType": "YulFunctionCall",
"src": "4493:18:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4473:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4473:39:1"
},
"nodeType": "YulExpressionStatement",
"src": "4473:39:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4420:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4423:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "4417:2:1"
},
"nodeType": "YulFunctionCall",
"src": "4417:13:1"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "4431:19:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4433:15:1",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4442:1:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4445:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4438:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4438:10:1"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4433:1:1"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "4413:3:1",
"statements": []
},
"src": "4409:113:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "4542:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4547:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4538:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4538:16:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4556:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4531:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4531:27:1"
},
"nodeType": "YulExpressionStatement",
"src": "4531:27:1"
}
]
},
"name": "copy_memory_to_memory_with_cleanup",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "4362:3:1",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "4367:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4372:6:1",
"type": ""
}
],
"src": "4318:246:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4662:285:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4672:53:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4719:5:1"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "4686:32:1"
},
"nodeType": "YulFunctionCall",
"src": "4686:39:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4676:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4734:78:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4800:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4805:6:1"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "4741:58:1"
},
"nodeType": "YulFunctionCall",
"src": "4741:71:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4734:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4860:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4867:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4856:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4856:16:1"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4874:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4879:6:1"
}
],
"functionName": {
"name": "copy_memory_to_memory_with_cleanup",
"nodeType": "YulIdentifier",
"src": "4821:34:1"
},
"nodeType": "YulFunctionCall",
"src": "4821:65:1"
},
"nodeType": "YulExpressionStatement",
"src": "4821:65:1"
},
{
"nodeType": "YulAssignment",
"src": "4895:46:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4906:3:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4933:6:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "4911:21:1"
},
"nodeType": "YulFunctionCall",
"src": "4911:29:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4902:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4902:39:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "4895:3:1"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4643:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4650:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "4658:3:1",
"type": ""
}
],
"src": "4570:377:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5014:51:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5031:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5052:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint8",
"nodeType": "YulIdentifier",
"src": "5036:15:1"
},
"nodeType": "YulFunctionCall",
"src": "5036:22:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5024:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5024:35:1"
},
"nodeType": "YulExpressionStatement",
"src": "5024:35:1"
}
]
},
"name": "abi_encode_t_uint8_to_t_uint8_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5002:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5009:3:1",
"type": ""
}
],
"src": "4953:112:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5213:273:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5223:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5235:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5246:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5231:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5231:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5223:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5270:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5281:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5266:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5266:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5289:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5295:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5285:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5285:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5259:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5259:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "5259:47:1"
},
{
"nodeType": "YulAssignment",
"src": "5315:86:1",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5387:6:1"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5396:4:1"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "5323:63:1"
},
"nodeType": "YulFunctionCall",
"src": "5323:78:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5315:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "5451:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5464:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5475:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5460:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5460:18:1"
}
],
"functionName": {
"name": "abi_encode_t_uint8_to_t_uint8_fromStack",
"nodeType": "YulIdentifier",
"src": "5411:39:1"
},
"nodeType": "YulFunctionCall",
"src": "5411:68:1"
},
"nodeType": "YulExpressionStatement",
"src": "5411:68:1"
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr_t_uint8__to_t_string_memory_ptr_t_uint8__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5177:9:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "5189:6:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5197:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "5208:4:1",
"type": ""
}
],
"src": "5071:415:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5520:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5537:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5540:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5530:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5530:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "5530:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5634:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5637:4:1",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5627:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5627:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "5627:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5658:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5661:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5651:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5651:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "5651:15:1"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "5492:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5729:269:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5739:22:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "5753:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5759:1:1",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "5749:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5749:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5739:6:1"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "5770:38:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "5800:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5806:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5796:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5796:12:1"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "5774:18:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5847:51:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5861:27:1",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5875:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5883:4:1",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5871:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5871:17:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5861:6:1"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "5827:18:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "5820:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5820:26:1"
},
"nodeType": "YulIf",
"src": "5817:81:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5950:42:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "5964:16:1"
},
"nodeType": "YulFunctionCall",
"src": "5964:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "5964:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "5914:18:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5937:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5945:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "5934:2:1"
},
"nodeType": "YulFunctionCall",
"src": "5934:14:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "5911:2:1"
},
"nodeType": "YulFunctionCall",
"src": "5911:38:1"
},
"nodeType": "YulIf",
"src": "5908:84:1"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "5713:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5722:6:1",
"type": ""
}
],
"src": "5678:320:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6058:87:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6068:11:1",
"value": {
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "6076:3:1"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "6068:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6096:1:1",
"type": "",
"value": "0"
},
{
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "6099:3:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6089:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6089:14:1"
},
"nodeType": "YulExpressionStatement",
"src": "6089:14:1"
},
{
"nodeType": "YulAssignment",
"src": "6112:26:1",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6130:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6133:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "keccak256",
"nodeType": "YulIdentifier",
"src": "6120:9:1"
},
"nodeType": "YulFunctionCall",
"src": "6120:18:1"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "6112:4:1"
}
]
}
]
},
"name": "array_dataslot_t_string_storage",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "ptr",
"nodeType": "YulTypedName",
"src": "6045:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "6053:4:1",
"type": ""
}
],
"src": "6004:141:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6195:49:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6205:33:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6223:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6230:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6219:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6219:14:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6235:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "6215:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6215:23:1"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "6205:6:1"
}
]
}
]
},
"name": "divide_by_32_ceil",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6178:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "6188:6:1",
"type": ""
}
],
"src": "6151:93:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6303:54:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6313:37:1",
"value": {
"arguments": [
{
"name": "bits",
"nodeType": "YulIdentifier",
"src": "6338:4:1"
},
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6344:5:1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "6334:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6334:16:1"
},
"variableNames": [
{
"name": "newValue",
"nodeType": "YulIdentifier",
"src": "6313:8:1"
}
]
}
]
},
"name": "shift_left_dynamic",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "bits",
"nodeType": "YulTypedName",
"src": "6278:4:1",
"type": ""
},
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6284:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nodeType": "YulTypedName",
"src": "6294:8:1",
"type": ""
}
],
"src": "6250:107:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6439:317:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6449:35:1",
"value": {
"arguments": [
{
"name": "shiftBytes",
"nodeType": "YulIdentifier",
"src": "6470:10:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6482:1:1",
"type": "",
"value": "8"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "6466:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6466:18:1"
},
"variables": [
{
"name": "shiftBits",
"nodeType": "YulTypedName",
"src": "6453:9:1",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "6493:109:1",
"value": {
"arguments": [
{
"name": "shiftBits",
"nodeType": "YulIdentifier",
"src": "6524:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6535:66:1",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "shift_left_dynamic",
"nodeType": "YulIdentifier",
"src": "6505:18:1"
},
"nodeType": "YulFunctionCall",
"src": "6505:97:1"
},
"variables": [
{
"name": "mask",
"nodeType": "YulTypedName",
"src": "6497:4:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6611:51:1",
"value": {
"arguments": [
{
"name": "shiftBits",
"nodeType": "YulIdentifier",
"src": "6642:9:1"
},
{
"name": "toInsert",
"nodeType": "YulIdentifier",
"src": "6653:8:1"
}
],
"functionName": {
"name": "shift_left_dynamic",
"nodeType": "YulIdentifier",
"src": "6623:18:1"
},
"nodeType": "YulFunctionCall",
"src": "6623:39:1"
},
"variableNames": [
{
"name": "toInsert",
"nodeType": "YulIdentifier",
"src": "6611:8:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "6671:30:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6684:5:1"
},
{
"arguments": [
{
"name": "mask",
"nodeType": "YulIdentifier",
"src": "6695:4:1"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "6691:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6691:9:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "6680:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6680:21:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6671:5:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "6710:40:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6723:5:1"
},
{
"arguments": [
{
"name": "toInsert",
"nodeType": "YulIdentifier",
"src": "6734:8:1"
},
{
"name": "mask",
"nodeType": "YulIdentifier",
"src": "6744:4:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "6730:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6730:19:1"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "6720:2:1"
},
"nodeType": "YulFunctionCall",
"src": "6720:30:1"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "6710:6:1"
}
]
}
]
},
"name": "update_byte_slice_dynamic32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6400:5:1",
"type": ""
},
{
"name": "shiftBytes",
"nodeType": "YulTypedName",
"src": "6407:10:1",
"type": ""
},
{
"name": "toInsert",
"nodeType": "YulTypedName",
"src": "6419:8:1",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "6432:6:1",
"type": ""
}
],
"src": "6363:393:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6807:32:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6817:16:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "6828:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "6817:7:1"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6789:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "6799:7:1",
"type": ""
}
],
"src": "6762:77:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6877:28:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6887:12:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "6894:5:1"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "6887:3:1"
}
]
}
]
},
"name": "identity",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6863:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "6873:3:1",
"type": ""
}
],
"src": "6845:60:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6971:82:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6981:66:1",
"value": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7039:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "7021:17:1"
},
"nodeType": "YulFunctionCall",
"src": "7021:24:1"
}
],
"functionName": {
"name": "identity",
"nodeType": "YulIdentifier",
"src": "7012:8:1"
},
"nodeType": "YulFunctionCall",
"src": "7012:34:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "6994:17:1"
},
"nodeType": "YulFunctionCall",
"src": "6994:53:1"
},
"variableNames": [
{
"name": "converted",
"nodeType": "YulIdentifier",
"src": "6981:9:1"
}
]
}
]
},
"name": "convert_t_uint256_to_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6951:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nodeType": "YulTypedName",
"src": "6961:9:1",
"type": ""
}
],
"src": "6911:142:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7106:28:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7116:12:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "7123:5:1"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "7116:3:1"
}
]
}
]
},
"name": "prepare_store_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7092:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "7102:3:1",
"type": ""
}
],
"src": "7059:75:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7216:193:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7226:63:1",
"value": {
"arguments": [
{
"name": "value_0",
"nodeType": "YulIdentifier",
"src": "7281:7:1"
}
],
"functionName": {
"name": "convert_t_uint256_to_t_uint256",
"nodeType": "YulIdentifier",
"src": "7250:30:1"
},
"nodeType": "YulFunctionCall",
"src": "7250:39:1"
},
"variables": [
{
"name": "convertedValue_0",
"nodeType": "YulTypedName",
"src": "7230:16:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "7305:4:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "7345:4:1"
}
],
"functionName": {
"name": "sload",
"nodeType": "YulIdentifier",
"src": "7339:5:1"
},
"nodeType": "YulFunctionCall",
"src": "7339:11:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "7352:6:1"
},
{
"arguments": [
{
"name": "convertedValue_0",
"nodeType": "YulIdentifier",
"src": "7384:16:1"
}
],
"functionName": {
"name": "prepare_store_t_uint256",
"nodeType": "YulIdentifier",
"src": "7360:23:1"
},
"nodeType": "YulFunctionCall",
"src": "7360:41:1"
}
],
"functionName": {
"name": "update_byte_slice_dynamic32",
"nodeType": "YulIdentifier",
"src": "7311:27:1"
},
"nodeType": "YulFunctionCall",
"src": "7311:91:1"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "7298:6:1"
},
"nodeType": "YulFunctionCall",
"src": "7298:105:1"
},
"nodeType": "YulExpressionStatement",
"src": "7298:105:1"
}
]
},
"name": "update_storage_value_t_uint256_to_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nodeType": "YulTypedName",
"src": "7193:4:1",
"type": ""
},
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "7199:6:1",
"type": ""
},
{
"name": "value_0",
"nodeType": "YulTypedName",
"src": "7207:7:1",
"type": ""
}
],
"src": "7140:269:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7464:24:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7474:8:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "7481:1:1",
"type": "",
"value": "0"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "7474:3:1"
}
]
}
]
},
"name": "zero_value_for_split_t_uint256",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "7460:3:1",
"type": ""
}
],
"src": "7415:73:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7547:136:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7557:46:1",
"value": {
"arguments": [],
"functionName": {
"name": "zero_value_for_split_t_uint256",
"nodeType": "YulIdentifier",
"src": "7571:30:1"
},
"nodeType": "YulFunctionCall",
"src": "7571:32:1"
},
"variables": [
{
"name": "zero_0",
"nodeType": "YulTypedName",
"src": "7561:6:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "7656:4:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "7662:6:1"
},
{
"name": "zero_0",
"nodeType": "YulIdentifier",
"src": "7670:6:1"
}
],
"functionName": {
"name": "update_storage_value_t_uint256_to_t_uint256",
"nodeType": "YulIdentifier",
"src": "7612:43:1"
},
"nodeType": "YulFunctionCall",
"src": "7612:65:1"
},
"nodeType": "YulExpressionStatement",
"src": "7612:65:1"
}
]
},
"name": "storage_set_to_zero_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nodeType": "YulTypedName",
"src": "7533:4:1",
"type": ""
},
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "7539:6:1",
"type": ""
}
],
"src": "7494:189:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7739:136:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "7806:63:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "7850:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7857:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "storage_set_to_zero_t_uint256",
"nodeType": "YulIdentifier",
"src": "7820:29:1"
},
"nodeType": "YulFunctionCall",
"src": "7820:39:1"
},
"nodeType": "YulExpressionStatement",
"src": "7820:39:1"
}
]
},
"condition": {
"arguments": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "7759:5:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "7766:3:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "7756:2:1"
},
"nodeType": "YulFunctionCall",
"src": "7756:14:1"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "7771:26:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7773:22:1",
"value": {
"arguments": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "7786:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7793:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7782:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7782:13:1"
},
"variableNames": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "7773:5:1"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "7753:2:1",
"statements": []
},
"src": "7749:120:1"
}
]
},
"name": "clear_storage_range_t_bytes1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "start",
"nodeType": "YulTypedName",
"src": "7727:5:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "7734:3:1",
"type": ""
}
],
"src": "7689:186:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7960:464:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "7986:431:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "8000:54:1",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "8048:5:1"
}
],
"functionName": {
"name": "array_dataslot_t_string_storage",
"nodeType": "YulIdentifier",
"src": "8016:31:1"
},
"nodeType": "YulFunctionCall",
"src": "8016:38:1"
},
"variables": [
{
"name": "dataArea",
"nodeType": "YulTypedName",
"src": "8004:8:1",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "8067:63:1",
"value": {
"arguments": [
{
"name": "dataArea",
"nodeType": "YulIdentifier",
"src": "8090:8:1"
},
{
"arguments": [
{
"name": "startIndex",
"nodeType": "YulIdentifier",
"src": "8118:10:1"
}
],
"functionName": {
"name": "divide_by_32_ceil",
"nodeType": "YulIdentifier",
"src": "8100:17:1"
},
"nodeType": "YulFunctionCall",
"src": "8100:29:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8086:3:1"
},
"nodeType": "YulFunctionCall",
"src": "8086:44:1"
},
"variables": [
{
"name": "deleteStart",
"nodeType": "YulTypedName",
"src": "8071:11:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "8287:27:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8289:23:1",
"value": {
"name": "dataArea",
"nodeType": "YulIdentifier",
"src": "8304:8:1"
},
"variableNames": [
{
"name": "deleteStart",
"nodeType": "YulIdentifier",
"src": "8289:11:1"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "startIndex",
"nodeType": "YulIdentifier",
"src": "8271:10:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8283:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "8268:2:1"
},
"nodeType": "YulFunctionCall",
"src": "8268:18:1"
},
"nodeType": "YulIf",
"src": "8265:49:1"
},
{
"expression": {
"arguments": [
{
"name": "deleteStart",
"nodeType": "YulIdentifier",
"src": "8356:11:1"
},
{
"arguments": [
{
"name": "dataArea",
"nodeType": "YulIdentifier",
"src": "8373:8:1"
},
{
"arguments": [
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "8401:3:1"
}
],
"functionName": {
"name": "divide_by_32_ceil",
"nodeType": "YulIdentifier",
"src": "8383:17:1"
},
"nodeType": "YulFunctionCall",
"src": "8383:22:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8369:3:1"
},
"nodeType": "YulFunctionCall",
"src": "8369:37:1"
}
],
"functionName": {
"name": "clear_storage_range_t_bytes1",
"nodeType": "YulIdentifier",
"src": "8327:28:1"
},
"nodeType": "YulFunctionCall",
"src": "8327:80:1"
},
"nodeType": "YulExpressionStatement",
"src": "8327:80:1"
}
]
},
"condition": {
"arguments": [
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "7977:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7982:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "7974:2:1"
},
"nodeType": "YulFunctionCall",
"src": "7974:11:1"
},
"nodeType": "YulIf",
"src": "7971:446:1"
}
]
},
"name": "clean_up_bytearray_end_slots_t_string_storage",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "7936:5:1",
"type": ""
},
{
"name": "len",
"nodeType": "YulTypedName",
"src": "7943:3:1",
"type": ""
},
{
"name": "startIndex",
"nodeType": "YulTypedName",
"src": "7948:10:1",
"type": ""
}
],
"src": "7881:543:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8493:54:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8503:37:1",
"value": {
"arguments": [
{
"name": "bits",
"nodeType": "YulIdentifier",
"src": "8528:4:1"
},
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "8534:5:1"
}
],
"functionName": {
"name": "shr",
"nodeType": "YulIdentifier",
"src": "8524:3:1"
},
"nodeType": "YulFunctionCall",
"src": "8524:16:1"
},
"variableNames": [
{
"name": "newValue",
"nodeType": "YulIdentifier",
"src": "8503:8:1"
}
]
}
]
},
"name": "shift_right_unsigned_dynamic",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "bits",
"nodeType": "YulTypedName",
"src": "8468:4:1",
"type": ""
},
{
"name": "value",
"nodeType": "YulTypedName",
"src": "8474:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nodeType": "YulTypedName",
"src": "8484:8:1",
"type": ""
}
],
"src": "8430:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8604:118:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "8614:68:1",
"value": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8663:1:1",
"type": "",
"value": "8"
},
{
"name": "bytes",
"nodeType": "YulIdentifier",
"src": "8666:5:1"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "8659:3:1"
},
"nodeType": "YulFunctionCall",
"src": "8659:13:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8678:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "8674:3:1"
},
"nodeType": "YulFunctionCall",
"src": "8674:6:1"
}
],
"functionName": {
"name": "shift_right_unsigned_dynamic",
"nodeType": "YulIdentifier",
"src": "8630:28:1"
},
"nodeType": "YulFunctionCall",
"src": "8630:51:1"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "8626:3:1"
},
"nodeType": "YulFunctionCall",
"src": "8626:56:1"
},
"variables": [
{
"name": "mask",
"nodeType": "YulTypedName",
"src": "8618:4:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "8691:25:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "8705:4:1"
},
{
"name": "mask",
"nodeType": "YulIdentifier",
"src": "8711:4:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "8701:3:1"
},
"nodeType": "YulFunctionCall",
"src": "8701:15:1"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "8691:6:1"
}
]
}
]
},
"name": "mask_bytes_dynamic",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "8581:4:1",
"type": ""
},
{
"name": "bytes",
"nodeType": "YulTypedName",
"src": "8587:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "8597:6:1",
"type": ""
}
],
"src": "8553:169:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8808:214:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8941:37:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "8968:4:1"
},
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "8974:3:1"
}
],
"functionName": {
"name": "mask_bytes_dynamic",
"nodeType": "YulIdentifier",
"src": "8949:18:1"
},
"nodeType": "YulFunctionCall",
"src": "8949:29:1"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "8941:4:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "8987:29:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "8998:4:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9008:1:1",
"type": "",
"value": "2"
},
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "9011:3:1"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "9004:3:1"
},
"nodeType": "YulFunctionCall",
"src": "9004:11:1"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "8995:2:1"
},
"nodeType": "YulFunctionCall",
"src": "8995:21:1"
},
"variableNames": [
{
"name": "used",
"nodeType": "YulIdentifier",
"src": "8987:4:1"
}
]
}
]
},
"name": "extract_used_part_and_set_length_of_short_byte_array",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "8789:4:1",
"type": ""
},
{
"name": "len",
"nodeType": "YulTypedName",
"src": "8795:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "used",
"nodeType": "YulTypedName",
"src": "8803:4:1",
"type": ""
}
],
"src": "8727:295:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9119:1303:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "9130:51:1",
"value": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "9177:3:1"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "9144:32:1"
},
"nodeType": "YulFunctionCall",
"src": "9144:37:1"
},
"variables": [
{
"name": "newLen",
"nodeType": "YulTypedName",
"src": "9134:6:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "9266:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "9268:16:1"
},
"nodeType": "YulFunctionCall",
"src": "9268:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "9268:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "9238:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9246:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "9235:2:1"
},
"nodeType": "YulFunctionCall",
"src": "9235:30:1"
},
"nodeType": "YulIf",
"src": "9232:56:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "9298:52:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "9344:4:1"
}
],
"functionName": {
"name": "sload",
"nodeType": "YulIdentifier",
"src": "9338:5:1"
},
"nodeType": "YulFunctionCall",
"src": "9338:11:1"
}
],
"functionName": {
"name": "extract_byte_array_length",
"nodeType": "YulIdentifier",
"src": "9312:25:1"
},
"nodeType": "YulFunctionCall",
"src": "9312:38:1"
},
"variables": [
{
"name": "oldLen",
"nodeType": "YulTypedName",
"src": "9302:6:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "9443:4:1"
},
{
"name": "oldLen",
"nodeType": "YulIdentifier",
"src": "9449:6:1"
},
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "9457:6:1"
}
],
"functionName": {
"name": "clean_up_bytearray_end_slots_t_string_storage",
"nodeType": "YulIdentifier",
"src": "9397:45:1"
},
"nodeType": "YulFunctionCall",
"src": "9397:67:1"
},
"nodeType": "YulExpressionStatement",
"src": "9397:67:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "9474:18:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "9491:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "srcOffset",
"nodeType": "YulTypedName",
"src": "9478:9:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "9502:17:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "9515:4:1",
"type": "",
"value": "0x20"
},
"variableNames": [
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "9502:9:1"
}
]
},
{
"cases": [
{
"body": {
"nodeType": "YulBlock",
"src": "9566:611:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "9580:37:1",
"value": {
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "9599:6:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9611:4:1",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "9607:3:1"
},
"nodeType": "YulFunctionCall",
"src": "9607:9:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "9595:3:1"
},
"nodeType": "YulFunctionCall",
"src": "9595:22:1"
},
"variables": [
{
"name": "loopEnd",
"nodeType": "YulTypedName",
"src": "9584:7:1",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "9631:51:1",
"value": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "9677:4:1"
}
],
"functionName": {
"name": "array_dataslot_t_string_storage",
"nodeType": "YulIdentifier",
"src": "9645:31:1"
},
"nodeType": "YulFunctionCall",
"src": "9645:37:1"
},
"variables": [
{
"name": "dstPtr",
"nodeType": "YulTypedName",
"src": "9635:6:1",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "9695:10:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "9704:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "9699:1:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "9763:163:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "9788:6:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "9806:3:1"
},
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "9811:9:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9802:3:1"
},
"nodeType": "YulFunctionCall",
"src": "9802:19:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "9796:5:1"
},
"nodeType": "YulFunctionCall",
"src": "9796:26:1"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "9781:6:1"
},
"nodeType": "YulFunctionCall",
"src": "9781:42:1"
},
"nodeType": "YulExpressionStatement",
"src": "9781:42:1"
},
{
"nodeType": "YulAssignment",
"src": "9840:24:1",
"value": {
"arguments": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "9854:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9862:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9850:3:1"
},
"nodeType": "YulFunctionCall",
"src": "9850:14:1"
},
"variableNames": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "9840:6:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "9881:31:1",
"value": {
"arguments": [
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "9898:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9909:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9894:3:1"
},
"nodeType": "YulFunctionCall",
"src": "9894:18:1"
},
"variableNames": [
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "9881:9:1"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "9729:1:1"
},
{
"name": "loopEnd",
"nodeType": "YulIdentifier",
"src": "9732:7:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "9726:2:1"
},
"nodeType": "YulFunctionCall",
"src": "9726:14:1"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "9741:21:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9743:17:1",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "9752:1:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9755:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9748:3:1"
},
"nodeType": "YulFunctionCall",
"src": "9748:12:1"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "9743:1:1"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "9722:3:1",
"statements": []
},
"src": "9718:208:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9962:156:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "9980:43:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "10007:3:1"
},
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "10012:9:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10003:3:1"
},
"nodeType": "YulFunctionCall",
"src": "10003:19:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "9997:5:1"
},
"nodeType": "YulFunctionCall",
"src": "9997:26:1"
},
"variables": [
{
"name": "lastValue",
"nodeType": "YulTypedName",
"src": "9984:9:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "10047:6:1"
},
{
"arguments": [
{
"name": "lastValue",
"nodeType": "YulIdentifier",
"src": "10074:9:1"
},
{
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "10089:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10097:4:1",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "10085:3:1"
},
"nodeType": "YulFunctionCall",
"src": "10085:17:1"
}
],
"functionName": {
"name": "mask_bytes_dynamic",
"nodeType": "YulIdentifier",
"src": "10055:18:1"
},
"nodeType": "YulFunctionCall",
"src": "10055:48:1"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "10040:6:1"
},
"nodeType": "YulFunctionCall",
"src": "10040:64:1"
},
"nodeType": "YulExpressionStatement",
"src": "10040:64:1"
}
]
},
"condition": {
"arguments": [
{
"name": "loopEnd",
"nodeType": "YulIdentifier",
"src": "9945:7:1"
},
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "9954:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "9942:2:1"
},
"nodeType": "YulFunctionCall",
"src": "9942:19:1"
},
"nodeType": "YulIf",
"src": "9939:179:1"
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "10138:4:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "10152:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10160:1:1",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "10148:3:1"
},
"nodeType": "YulFunctionCall",
"src": "10148:14:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10164:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10144:3:1"
},
"nodeType": "YulFunctionCall",
"src": "10144:22:1"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "10131:6:1"
},
"nodeType": "YulFunctionCall",
"src": "10131:36:1"
},
"nodeType": "YulExpressionStatement",
"src": "10131:36:1"
}
]
},
"nodeType": "YulCase",
"src": "9559:618:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "9564:1:1",
"type": "",
"value": "1"
}
},
{
"body": {
"nodeType": "YulBlock",
"src": "10194:222:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "10208:14:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "10221:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "10212:5:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "10245:67:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10263:35:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "10282:3:1"
},
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "10287:9:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10278:3:1"
},
"nodeType": "YulFunctionCall",
"src": "10278:19:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "10272:5:1"
},
"nodeType": "YulFunctionCall",
"src": "10272:26:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "10263:5:1"
}
]
}
]
},
"condition": {
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "10238:6:1"
},
"nodeType": "YulIf",
"src": "10235:77:1"
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "10332:4:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "10391:5:1"
},
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "10398:6:1"
}
],
"functionName": {
"name": "extract_used_part_and_set_length_of_short_byte_array",
"nodeType": "YulIdentifier",
"src": "10338:52:1"
},
"nodeType": "YulFunctionCall",
"src": "10338:67:1"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "10325:6:1"
},
"nodeType": "YulFunctionCall",
"src": "10325:81:1"
},
"nodeType": "YulExpressionStatement",
"src": "10325:81:1"
}
]
},
"nodeType": "YulCase",
"src": "10186:230:1",
"value": "default"
}
],
"expression": {
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "9539:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9547:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "9536:2:1"
},
"nodeType": "YulFunctionCall",
"src": "9536:14:1"
},
"nodeType": "YulSwitch",
"src": "9529:887:1"
}
]
},
"name": "copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nodeType": "YulTypedName",
"src": "9108:4:1",
"type": ""
},
{
"name": "src",
"nodeType": "YulTypedName",
"src": "9114:3:1",
"type": ""
}
],
"src": "9027:1395:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10546:195:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10556:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10568:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10579:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10564:3:1"
},
"nodeType": "YulFunctionCall",
"src": "10564:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10556:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10603:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10614:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10599:3:1"
},
"nodeType": "YulFunctionCall",
"src": "10599:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10622:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10628:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "10618:3:1"
},
"nodeType": "YulFunctionCall",
"src": "10618:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10592:6:1"
},
"nodeType": "YulFunctionCall",
"src": "10592:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "10592:47:1"
},
{
"nodeType": "YulAssignment",
"src": "10648:86:1",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "10720:6:1"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10729:4:1"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "10656:63:1"
},
"nodeType": "YulFunctionCall",
"src": "10656:78:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10648: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": "10518:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "10530:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "10541:4:1",
"type": ""
}
],
"src": "10428:313: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_uint8(value) -> cleaned {\n cleaned := and(value, 0xff)\n }\n\n function validator_revert_t_uint8(value) {\n if iszero(eq(value, cleanup_t_uint8(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_uint8(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint8(value)\n }\n\n function revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() {\n revert(0, 0)\n }\n\n function revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() {\n revert(0, 0)\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function finalize_allocation(memPtr, size) {\n let newFreePtr := add(memPtr, round_up_to_mul_of_32(size))\n // protect against overflow\n if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n }\n\n function allocate_memory(size) -> memPtr {\n memPtr := allocate_unbounded()\n finalize_allocation(memPtr, size)\n }\n\n function array_allocation_size_t_string_memory_ptr(length) -> size {\n // Make sure we can allocate memory without overflow\n if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n\n size := round_up_to_mul_of_32(length)\n\n // add length slot\n size := add(size, 0x20)\n\n }\n\n function copy_calldata_to_memory_with_cleanup(src, dst, length) {\n calldatacopy(dst, src, length)\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_with_cleanup(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_uint8t_string_memory_ptrt_uint8(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_uint8(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := calldataload(add(headStart, 32))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value1 := abi_decode_t_string_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_uint8(add(headStart, offset), dataEnd)\n }\n\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 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_with_cleanup(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 mstore(add(dst, length), 0)\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_with_cleanup(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\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_string_memory_ptr_t_uint8__to_t_string_memory_ptr_t_uint8__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_uint8_to_t_uint8_fromStack(value1, add(headStart, 32))\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 array_dataslot_t_string_storage(ptr) -> data {\n data := ptr\n\n mstore(0, ptr)\n data := keccak256(0, 0x20)\n\n }\n\n function divide_by_32_ceil(value) -> result {\n result := div(add(value, 31), 32)\n }\n\n function shift_left_dynamic(bits, value) -> newValue {\n newValue :=\n\n shl(bits, value)\n\n }\n\n function update_byte_slice_dynamic32(value, shiftBytes, toInsert) -> result {\n let shiftBits := mul(shiftBytes, 8)\n let mask := shift_left_dynamic(shiftBits, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n toInsert := shift_left_dynamic(shiftBits, toInsert)\n value := and(value, not(mask))\n result := or(value, and(toInsert, mask))\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function identity(value) -> ret {\n ret := value\n }\n\n function convert_t_uint256_to_t_uint256(value) -> converted {\n converted := cleanup_t_uint256(identity(cleanup_t_uint256(value)))\n }\n\n function prepare_store_t_uint256(value) -> ret {\n ret := value\n }\n\n function update_storage_value_t_uint256_to_t_uint256(slot, offset, value_0) {\n let convertedValue_0 := convert_t_uint256_to_t_uint256(value_0)\n sstore(slot, update_byte_slice_dynamic32(sload(slot), offset, prepare_store_t_uint256(convertedValue_0)))\n }\n\n function zero_value_for_split_t_uint256() -> ret {\n ret := 0\n }\n\n function storage_set_to_zero_t_uint256(slot, offset) {\n let zero_0 := zero_value_for_split_t_uint256()\n update_storage_value_t_uint256_to_t_uint256(slot, offset, zero_0)\n }\n\n function clear_storage_range_t_bytes1(start, end) {\n for {} lt(start, end) { start := add(start, 1) }\n {\n storage_set_to_zero_t_uint256(start, 0)\n }\n }\n\n function clean_up_bytearray_end_slots_t_string_storage(array, len, startIndex) {\n\n if gt(len, 31) {\n let dataArea := array_dataslot_t_string_storage(array)\n let deleteStart := add(dataArea, divide_by_32_ceil(startIndex))\n // If we are clearing array to be short byte array, we want to clear only data starting from array data area.\n if lt(startIndex, 32) { deleteStart := dataArea }\n clear_storage_range_t_bytes1(deleteStart, add(dataArea, divide_by_32_ceil(len)))\n }\n\n }\n\n function shift_right_unsigned_dynamic(bits, value) -> newValue {\n newValue :=\n\n shr(bits, value)\n\n }\n\n function mask_bytes_dynamic(data, bytes) -> result {\n let mask := not(shift_right_unsigned_dynamic(mul(8, bytes), not(0)))\n result := and(data, mask)\n }\n function extract_used_part_and_set_length_of_short_byte_array(data, len) -> used {\n // we want to save only elements that are part of the array after resizing\n // others should be set to zero\n data := mask_bytes_dynamic(data, len)\n used := or(data, mul(2, len))\n }\n function copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage(slot, src) {\n\n let newLen := array_length_t_string_memory_ptr(src)\n // Make sure array length is sane\n if gt(newLen, 0xffffffffffffffff) { panic_error_0x41() }\n\n let oldLen := extract_byte_array_length(sload(slot))\n\n // potentially truncate data\n clean_up_bytearray_end_slots_t_string_storage(slot, oldLen, newLen)\n\n let srcOffset := 0\n\n srcOffset := 0x20\n\n switch gt(newLen, 31)\n case 1 {\n let loopEnd := and(newLen, not(0x1f))\n\n let dstPtr := array_dataslot_t_string_storage(slot)\n let i := 0\n for { } lt(i, loopEnd) { i := add(i, 0x20) } {\n sstore(dstPtr, mload(add(src, srcOffset)))\n dstPtr := add(dstPtr, 1)\n srcOffset := add(srcOffset, 32)\n }\n if lt(loopEnd, newLen) {\n let lastValue := mload(add(src, srcOffset))\n sstore(dstPtr, mask_bytes_dynamic(lastValue, and(newLen, 0x1f)))\n }\n sstore(slot, add(mul(newLen, 2), 1))\n }\n default {\n let value := 0\n if newLen {\n value := mload(add(src, srcOffset))\n }\n sstore(slot, extract_used_part_and_set_length_of_short_byte_array(value, newLen))\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}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106100365760003560e01c806315ef194e1461003b578063174d39f614610057575b600080fd5b61005560048036038101906100509190610391565b610088565b005b610071600480360381019061006c9190610400565b610121565b60405161007f9291906104bb565b60405180910390f35b816000808560ff1660ff16815260200190815260200160002060000190816100b09190610701565b50806000808560ff1660ff16815260200190815260200160002060010160006101000a81548160ff021916908360ff1602179055507f5d1d96f061794b83c7c2e59d0c80057abcc1c8431426b1a8774acd9aa72268ba8260405161011491906107d3565b60405180910390a1505050565b606060008060008460ff1660ff1681526020019081526020016000206000016000808560ff1660ff16815260200190815260200160002060010160009054906101000a900460ff168180546101759061051a565b80601f01602080910402602001604051908101604052809291908181526020018280546101a19061051a565b80156101ee5780601f106101c3576101008083540402835291602001916101ee565b820191906000526020600020905b8154815290600101906020018083116101d157829003601f168201915b5050505050915091509150915091565b6000604051905090565b600080fd5b600080fd5b600060ff82169050919050565b61022881610212565b811461023357600080fd5b50565b6000813590506102458161021f565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61029e82610255565b810181811067ffffffffffffffff821117156102bd576102bc610266565b5b80604052505050565b60006102d06101fe565b90506102dc8282610295565b919050565b600067ffffffffffffffff8211156102fc576102fb610266565b5b61030582610255565b9050602081019050919050565b82818337600083830152505050565b600061033461032f846102e1565b6102c6565b9050828152602081018484840111156103505761034f610250565b5b61035b848285610312565b509392505050565b600082601f8301126103785761037761024b565b5b8135610388848260208601610321565b91505092915050565b6000806000606084860312156103aa576103a9610208565b5b60006103b886828701610236565b935050602084013567ffffffffffffffff8111156103d9576103d861020d565b5b6103e586828701610363565b92505060406103f686828701610236565b9150509250925092565b60006020828403121561041657610415610208565b5b600061042484828501610236565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561046757808201518184015260208101905061044c565b60008484015250505050565b600061047e8261042d565b6104888185610438565b9350610498818560208601610449565b6104a181610255565b840191505092915050565b6104b581610212565b82525050565b600060408201905081810360008301526104d58185610473565b90506104e460208301846104ac565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061053257607f821691505b602082108103610545576105446104eb565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026105ad7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610570565b6105b78683610570565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006105fe6105f96105f4846105cf565b6105d9565b6105cf565b9050919050565b6000819050919050565b610618836105e3565b61062c61062482610605565b84845461057d565b825550505050565b600090565b610641610634565b61064c81848461060f565b505050565b5b8181101561067057610665600082610639565b600181019050610652565b5050565b601f8211156106b5576106868161054b565b61068f84610560565b8101602085101561069e578190505b6106b26106aa85610560565b830182610651565b50505b505050565b600082821c905092915050565b60006106d8600019846008026106ba565b1980831691505092915050565b60006106f183836106c7565b9150826002028217905092915050565b61070a8261042d565b67ffffffffffffffff81111561072357610722610266565b5b61072d825461051a565b610738828285610674565b600060209050601f83116001811461076b5760008415610759578287015190505b61076385826106e5565b8655506107cb565b601f1984166107798661054b565b60005b828110156107a15784890151825560018201915060208501945060208101905061077c565b868310156107be57848901516107ba601f8916826106c7565b8355505b6001600288020188555050505b505050505050565b600060208201905081810360008301526107ed8184610473565b90509291505056fea2646970667358221220b24288dc8a57ce69ae29b434a4fa77f36eab62a77f5408622910d180eeafe1c464736f6c63430008110033",
"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 0x15EF194E EQ PUSH2 0x3B JUMPI DUP1 PUSH4 0x174D39F6 EQ PUSH2 0x57 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x55 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x50 SWAP2 SWAP1 PUSH2 0x391 JUMP JUMPDEST PUSH2 0x88 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x71 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x6C SWAP2 SWAP1 PUSH2 0x400 JUMP JUMPDEST PUSH2 0x121 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x7F SWAP3 SWAP2 SWAP1 PUSH2 0x4BB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST DUP2 PUSH1 0x0 DUP1 DUP6 PUSH1 0xFF AND PUSH1 0xFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 ADD SWAP1 DUP2 PUSH2 0xB0 SWAP2 SWAP1 PUSH2 0x701 JUMP JUMPDEST POP DUP1 PUSH1 0x0 DUP1 DUP6 PUSH1 0xFF AND PUSH1 0xFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x1 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 PUSH1 0xFF AND MUL OR SWAP1 SSTORE POP PUSH32 0x5D1D96F061794B83C7C2E59D0C80057ABCC1C8431426B1A8774ACD9AA72268BA DUP3 PUSH1 0x40 MLOAD PUSH2 0x114 SWAP2 SWAP1 PUSH2 0x7D3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP1 PUSH1 0x0 DUP5 PUSH1 0xFF AND PUSH1 0xFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 ADD PUSH1 0x0 DUP1 DUP6 PUSH1 0xFF AND PUSH1 0xFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x1 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 DUP1 SLOAD PUSH2 0x175 SWAP1 PUSH2 0x51A 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 0x1A1 SWAP1 PUSH2 0x51A JUMP JUMPDEST DUP1 ISZERO PUSH2 0x1EE JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x1C3 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x1EE 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 0x1D1 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP2 POP SWAP2 POP SWAP2 POP SWAP2 POP SWAP2 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x228 DUP2 PUSH2 0x212 JUMP JUMPDEST DUP2 EQ PUSH2 0x233 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x245 DUP2 PUSH2 0x21F JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x29E DUP3 PUSH2 0x255 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x2BD JUMPI PUSH2 0x2BC PUSH2 0x266 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2D0 PUSH2 0x1FE JUMP JUMPDEST SWAP1 POP PUSH2 0x2DC DUP3 DUP3 PUSH2 0x295 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x2FC JUMPI PUSH2 0x2FB PUSH2 0x266 JUMP JUMPDEST JUMPDEST PUSH2 0x305 DUP3 PUSH2 0x255 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 0x334 PUSH2 0x32F DUP5 PUSH2 0x2E1 JUMP JUMPDEST PUSH2 0x2C6 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x350 JUMPI PUSH2 0x34F PUSH2 0x250 JUMP JUMPDEST JUMPDEST PUSH2 0x35B DUP5 DUP3 DUP6 PUSH2 0x312 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x378 JUMPI PUSH2 0x377 PUSH2 0x24B JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x388 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x321 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x3AA JUMPI PUSH2 0x3A9 PUSH2 0x208 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x3B8 DUP7 DUP3 DUP8 ADD PUSH2 0x236 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x3D9 JUMPI PUSH2 0x3D8 PUSH2 0x20D JUMP JUMPDEST JUMPDEST PUSH2 0x3E5 DUP7 DUP3 DUP8 ADD PUSH2 0x363 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x3F6 DUP7 DUP3 DUP8 ADD PUSH2 0x236 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x416 JUMPI PUSH2 0x415 PUSH2 0x208 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x424 DUP5 DUP3 DUP6 ADD PUSH2 0x236 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 0x467 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x44C JUMP JUMPDEST PUSH1 0x0 DUP5 DUP5 ADD MSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x47E DUP3 PUSH2 0x42D JUMP JUMPDEST PUSH2 0x488 DUP2 DUP6 PUSH2 0x438 JUMP JUMPDEST SWAP4 POP PUSH2 0x498 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x449 JUMP JUMPDEST PUSH2 0x4A1 DUP2 PUSH2 0x255 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x4B5 DUP2 PUSH2 0x212 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x4D5 DUP2 DUP6 PUSH2 0x473 JUMP JUMPDEST SWAP1 POP PUSH2 0x4E4 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x4AC JUMP JUMPDEST SWAP4 SWAP3 POP 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 0x532 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x545 JUMPI PUSH2 0x544 PUSH2 0x4EB JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP DUP2 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 PUSH1 0x1F DUP4 ADD DIV SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 SHL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x8 DUP4 MUL PUSH2 0x5AD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 PUSH2 0x570 JUMP JUMPDEST PUSH2 0x5B7 DUP7 DUP4 PUSH2 0x570 JUMP JUMPDEST SWAP6 POP DUP1 NOT DUP5 AND SWAP4 POP DUP1 DUP7 AND DUP5 OR SWAP3 POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x5FE PUSH2 0x5F9 PUSH2 0x5F4 DUP5 PUSH2 0x5CF JUMP JUMPDEST PUSH2 0x5D9 JUMP JUMPDEST PUSH2 0x5CF JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x618 DUP4 PUSH2 0x5E3 JUMP JUMPDEST PUSH2 0x62C PUSH2 0x624 DUP3 PUSH2 0x605 JUMP JUMPDEST DUP5 DUP5 SLOAD PUSH2 0x57D JUMP JUMPDEST DUP3 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 SWAP1 JUMP JUMPDEST PUSH2 0x641 PUSH2 0x634 JUMP JUMPDEST PUSH2 0x64C DUP2 DUP5 DUP5 PUSH2 0x60F JUMP JUMPDEST POP POP POP JUMP JUMPDEST JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x670 JUMPI PUSH2 0x665 PUSH1 0x0 DUP3 PUSH2 0x639 JUMP JUMPDEST PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x652 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH2 0x6B5 JUMPI PUSH2 0x686 DUP2 PUSH2 0x54B JUMP JUMPDEST PUSH2 0x68F DUP5 PUSH2 0x560 JUMP JUMPDEST DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH2 0x69E JUMPI DUP2 SWAP1 POP JUMPDEST PUSH2 0x6B2 PUSH2 0x6AA DUP6 PUSH2 0x560 JUMP JUMPDEST DUP4 ADD DUP3 PUSH2 0x651 JUMP JUMPDEST POP POP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 SHR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x6D8 PUSH1 0x0 NOT DUP5 PUSH1 0x8 MUL PUSH2 0x6BA JUMP JUMPDEST NOT DUP1 DUP4 AND SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x6F1 DUP4 DUP4 PUSH2 0x6C7 JUMP JUMPDEST SWAP2 POP DUP3 PUSH1 0x2 MUL DUP3 OR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x70A DUP3 PUSH2 0x42D JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x723 JUMPI PUSH2 0x722 PUSH2 0x266 JUMP JUMPDEST JUMPDEST PUSH2 0x72D DUP3 SLOAD PUSH2 0x51A JUMP JUMPDEST PUSH2 0x738 DUP3 DUP3 DUP6 PUSH2 0x674 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 SWAP1 POP PUSH1 0x1F DUP4 GT PUSH1 0x1 DUP2 EQ PUSH2 0x76B JUMPI PUSH1 0x0 DUP5 ISZERO PUSH2 0x759 JUMPI DUP3 DUP8 ADD MLOAD SWAP1 POP JUMPDEST PUSH2 0x763 DUP6 DUP3 PUSH2 0x6E5 JUMP JUMPDEST DUP7 SSTORE POP PUSH2 0x7CB JUMP JUMPDEST PUSH1 0x1F NOT DUP5 AND PUSH2 0x779 DUP7 PUSH2 0x54B JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x7A1 JUMPI DUP5 DUP10 ADD MLOAD DUP3 SSTORE PUSH1 0x1 DUP3 ADD SWAP2 POP PUSH1 0x20 DUP6 ADD SWAP5 POP PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x77C JUMP JUMPDEST DUP7 DUP4 LT ISZERO PUSH2 0x7BE JUMPI DUP5 DUP10 ADD MLOAD PUSH2 0x7BA PUSH1 0x1F DUP10 AND DUP3 PUSH2 0x6C7 JUMP JUMPDEST DUP4 SSTORE POP JUMPDEST PUSH1 0x1 PUSH1 0x2 DUP9 MUL ADD DUP9 SSTORE POP POP POP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x7ED DUP2 DUP5 PUSH2 0x473 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xB2 TIMESTAMP DUP9 0xDC DUP11 JUMPI 0xCE PUSH10 0xAE29B434A4FA77F36EAB PUSH3 0xA77F54 ADDMOD PUSH3 0x2910D1 DUP1 0xEE 0xAF 0xE1 0xC4 PUSH5 0x736F6C6343 STOP ADDMOD GT STOP CALLER ",
"sourceMap": "58:578:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;285:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;484:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;285:193;395:5;369:10;:18;380:6;369:18;;;;;;;;;;;;;;;:23;;:31;;;;;;:::i;:::-;;435:4;410:10;:18;421:6;410:18;;;;;;;;;;;;;;;:22;;;:29;;;;;;;;;;;;;;;;;;454:17;465:5;454:17;;;;;;:::i;:::-;;;;;;;;285:193;;;:::o;484:149::-;538:13;553:5;578:10;:18;589:6;578:18;;;;;;;;;;;;;;;:23;;603:10;:18;614:6;603:18;;;;;;;;;;;;;;;:22;;;;;;;;;;;;570:56;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;484:149;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:86;369:7;409:4;402:5;398:16;387:27;;334:86;;;:::o;426:118::-;497:22;513:5;497:22;:::i;:::-;490:5;487:33;477:61;;534:1;531;524:12;477:61;426:118;:::o;550:135::-;594:5;632:6;619:20;610:29;;648:31;673:5;648:31;:::i;:::-;550:135;;;;:::o;691:117::-;800:1;797;790:12;814:117;923:1;920;913:12;937:102;978:6;1029:2;1025:7;1020:2;1013:5;1009:14;1005:28;995:38;;937:102;;;:::o;1045:180::-;1093:77;1090:1;1083:88;1190:4;1187:1;1180:15;1214:4;1211:1;1204:15;1231:281;1314:27;1336:4;1314:27;:::i;:::-;1306:6;1302:40;1444:6;1432:10;1429:22;1408:18;1396:10;1393:34;1390:62;1387:88;;;1455:18;;:::i;:::-;1387:88;1495:10;1491:2;1484:22;1274:238;1231:281;;:::o;1518:129::-;1552:6;1579:20;;:::i;:::-;1569:30;;1608:33;1636:4;1628:6;1608:33;:::i;:::-;1518:129;;;:::o;1653:308::-;1715:4;1805:18;1797:6;1794:30;1791:56;;;1827:18;;:::i;:::-;1791:56;1865:29;1887:6;1865:29;:::i;:::-;1857:37;;1949:4;1943;1939:15;1931:23;;1653:308;;;:::o;1967:146::-;2064:6;2059:3;2054;2041:30;2105:1;2096:6;2091:3;2087:16;2080:27;1967:146;;;:::o;2119:425::-;2197:5;2222:66;2238:49;2280:6;2238:49;:::i;:::-;2222:66;:::i;:::-;2213:75;;2311:6;2304:5;2297:21;2349:4;2342:5;2338:16;2387:3;2378:6;2373:3;2369:16;2366:25;2363:112;;;2394:79;;:::i;:::-;2363:112;2484:54;2531:6;2526:3;2521;2484:54;:::i;:::-;2203:341;2119:425;;;;;:::o;2564:340::-;2620:5;2669:3;2662:4;2654:6;2650:17;2646:27;2636:122;;2677:79;;:::i;:::-;2636:122;2794:6;2781:20;2819:79;2894:3;2886:6;2879:4;2871:6;2867:17;2819:79;:::i;:::-;2810:88;;2626:278;2564:340;;;;:::o;2910:791::-;2993:6;3001;3009;3058:2;3046:9;3037:7;3033:23;3029:32;3026:119;;;3064:79;;:::i;:::-;3026:119;3184:1;3209:51;3252:7;3243:6;3232:9;3228:22;3209:51;:::i;:::-;3199:61;;3155:115;3337:2;3326:9;3322:18;3309:32;3368:18;3360:6;3357:30;3354:117;;;3390:79;;:::i;:::-;3354:117;3495:63;3550:7;3541:6;3530:9;3526:22;3495:63;:::i;:::-;3485:73;;3280:288;3607:2;3633:51;3676:7;3667:6;3656:9;3652:22;3633:51;:::i;:::-;3623:61;;3578:116;2910:791;;;;;:::o;3707:325::-;3764:6;3813:2;3801:9;3792:7;3788:23;3784:32;3781:119;;;3819:79;;:::i;:::-;3781:119;3939:1;3964:51;4007:7;3998:6;3987:9;3983:22;3964:51;:::i;:::-;3954:61;;3910:115;3707:325;;;;:::o;4038:99::-;4090:6;4124:5;4118:12;4108:22;;4038:99;;;:::o;4143:169::-;4227:11;4261:6;4256:3;4249:19;4301:4;4296:3;4292:14;4277:29;;4143:169;;;;:::o;4318:246::-;4399:1;4409:113;4423:6;4420:1;4417:13;4409:113;;;4508:1;4503:3;4499:11;4493:18;4489:1;4484:3;4480:11;4473:39;4445:2;4442:1;4438:10;4433:15;;4409:113;;;4556:1;4547:6;4542:3;4538:16;4531:27;4380:184;4318:246;;;:::o;4570:377::-;4658:3;4686:39;4719:5;4686:39;:::i;:::-;4741:71;4805:6;4800:3;4741:71;:::i;:::-;4734:78;;4821:65;4879:6;4874:3;4867:4;4860:5;4856:16;4821:65;:::i;:::-;4911:29;4933:6;4911:29;:::i;:::-;4906:3;4902:39;4895:46;;4662:285;4570:377;;;;:::o;4953:112::-;5036:22;5052:5;5036:22;:::i;:::-;5031:3;5024:35;4953:112;;:::o;5071:415::-;5208:4;5246:2;5235:9;5231:18;5223:26;;5295:9;5289:4;5285:20;5281:1;5270:9;5266:17;5259:47;5323:78;5396:4;5387:6;5323:78;:::i;:::-;5315:86;;5411:68;5475:2;5464:9;5460:18;5451:6;5411:68;:::i;:::-;5071:415;;;;;:::o;5492:180::-;5540:77;5537:1;5530:88;5637:4;5634:1;5627:15;5661:4;5658:1;5651:15;5678:320;5722:6;5759:1;5753:4;5749:12;5739:22;;5806:1;5800:4;5796:12;5827:18;5817:81;;5883:4;5875:6;5871:17;5861:27;;5817:81;5945:2;5937:6;5934:14;5914:18;5911:38;5908:84;;5964:18;;:::i;:::-;5908:84;5729:269;5678:320;;;:::o;6004:141::-;6053:4;6076:3;6068:11;;6099:3;6096:1;6089:14;6133:4;6130:1;6120:18;6112:26;;6004:141;;;:::o;6151:93::-;6188:6;6235:2;6230;6223:5;6219:14;6215:23;6205:33;;6151:93;;;:::o;6250:107::-;6294:8;6344:5;6338:4;6334:16;6313:37;;6250:107;;;;:::o;6363:393::-;6432:6;6482:1;6470:10;6466:18;6505:97;6535:66;6524:9;6505:97;:::i;:::-;6623:39;6653:8;6642:9;6623:39;:::i;:::-;6611:51;;6695:4;6691:9;6684:5;6680:21;6671:30;;6744:4;6734:8;6730:19;6723:5;6720:30;6710:40;;6439:317;;6363:393;;;;;:::o;6762:77::-;6799:7;6828:5;6817:16;;6762:77;;;:::o;6845:60::-;6873:3;6894:5;6887:12;;6845:60;;;:::o;6911:142::-;6961:9;6994:53;7012:34;7021:24;7039:5;7021:24;:::i;:::-;7012:34;:::i;:::-;6994:53;:::i;:::-;6981:66;;6911:142;;;:::o;7059:75::-;7102:3;7123:5;7116:12;;7059:75;;;:::o;7140:269::-;7250:39;7281:7;7250:39;:::i;:::-;7311:91;7360:41;7384:16;7360:41;:::i;:::-;7352:6;7345:4;7339:11;7311:91;:::i;:::-;7305:4;7298:105;7216:193;7140:269;;;:::o;7415:73::-;7460:3;7415:73;:::o;7494:189::-;7571:32;;:::i;:::-;7612:65;7670:6;7662;7656:4;7612:65;:::i;:::-;7547:136;7494:189;;:::o;7689:186::-;7749:120;7766:3;7759:5;7756:14;7749:120;;;7820:39;7857:1;7850:5;7820:39;:::i;:::-;7793:1;7786:5;7782:13;7773:22;;7749:120;;;7689:186;;:::o;7881:543::-;7982:2;7977:3;7974:11;7971:446;;;8016:38;8048:5;8016:38;:::i;:::-;8100:29;8118:10;8100:29;:::i;:::-;8090:8;8086:44;8283:2;8271:10;8268:18;8265:49;;;8304:8;8289:23;;8265:49;8327:80;8383:22;8401:3;8383:22;:::i;:::-;8373:8;8369:37;8356:11;8327:80;:::i;:::-;7986:431;;7971:446;7881:543;;;:::o;8430:117::-;8484:8;8534:5;8528:4;8524:16;8503:37;;8430:117;;;;:::o;8553:169::-;8597:6;8630:51;8678:1;8674:6;8666:5;8663:1;8659:13;8630:51;:::i;:::-;8626:56;8711:4;8705;8701:15;8691:25;;8604:118;8553:169;;;;:::o;8727:295::-;8803:4;8949:29;8974:3;8968:4;8949:29;:::i;:::-;8941:37;;9011:3;9008:1;9004:11;8998:4;8995:21;8987:29;;8727:295;;;;:::o;9027:1395::-;9144:37;9177:3;9144:37;:::i;:::-;9246:18;9238:6;9235:30;9232:56;;;9268:18;;:::i;:::-;9232:56;9312:38;9344:4;9338:11;9312:38;:::i;:::-;9397:67;9457:6;9449;9443:4;9397:67;:::i;:::-;9491:1;9515:4;9502:17;;9547:2;9539:6;9536:14;9564:1;9559:618;;;;10221:1;10238:6;10235:77;;;10287:9;10282:3;10278:19;10272:26;10263:35;;10235:77;10338:67;10398:6;10391:5;10338:67;:::i;:::-;10332:4;10325:81;10194:222;9529:887;;9559:618;9611:4;9607:9;9599:6;9595:22;9645:37;9677:4;9645:37;:::i;:::-;9704:1;9718:208;9732:7;9729:1;9726:14;9718:208;;;9811:9;9806:3;9802:19;9796:26;9788:6;9781:42;9862:1;9854:6;9850:14;9840:24;;9909:2;9898:9;9894:18;9881:31;;9755:4;9752:1;9748:12;9743:17;;9718:208;;;9954:6;9945:7;9942:19;9939:179;;;10012:9;10007:3;10003:19;9997:26;10055:48;10097:4;10089:6;10085:17;10074:9;10055:48;:::i;:::-;10047:6;10040:64;9962:156;9939:179;10164:1;10160;10152:6;10148:14;10144:22;10138:4;10131:36;9566:611;;;9529:887;;9119:1303;;;9027:1395;;:::o;10428:313::-;10541:4;10579:2;10568:9;10564:18;10556:26;;10628:9;10622:4;10618:20;10614:1;10603:9;10599:17;10592:47;10656:78;10729:4;10720:6;10656:78;:::i;:::-;10648:86;;10428:313;;;;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "418200",
"executionCost": "455",
"totalCost": "418655"
},
"external": {
"getLearner(uint8)": "infinite",
"setLearner(uint8,string,uint8)": "infinite"
}
},
"methodIdentifiers": {
"getLearner(uint8)": "174d39f6",
"setLearner(uint8,string,uint8)": "15ef194e"
}
},
"abi": [
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "string",
"name": "name",
"type": "string"
}
],
"name": "newLearner",
"type": "event"
},
{
"inputs": [
{
"internalType": "uint8",
"name": "_index",
"type": "uint8"
}
],
"name": "getLearner",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
},
{
"internalType": "uint8",
"name": "",
"type": "uint8"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint8",
"name": "_index",
"type": "uint8"
},
{
"internalType": "string",
"name": "_name",
"type": "string"
},
{
"internalType": "uint8",
"name": "_age",
"type": "uint8"
}
],
"name": "setLearner",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.17+commit.8df45f5f"
},
"language": "Solidity",
"output": {
"abi": [
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "string",
"name": "name",
"type": "string"
}
],
"name": "newLearner",
"type": "event"
},
{
"inputs": [
{
"internalType": "uint8",
"name": "_index",
"type": "uint8"
}
],
"name": "getLearner",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
},
{
"internalType": "uint8",
"name": "",
"type": "uint8"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint8",
"name": "_index",
"type": "uint8"
},
{
"internalType": "string",
"name": "_name",
"type": "string"
},
{
"internalType": "uint8",
"name": "_age",
"type": "uint8"
}
],
"name": "setLearner",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/9_struct.sol": "StructSample"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/9_struct.sol": {
"keccak256": "0x29481cae7a0dbd639ccf4cd2838cecd457bd9694f761f5d0783aefbd6191ff96",
"license": "MIT",
"urls": [
"bzz-raw://f6a0373d0c3e33ae751f2876cdfeb7b3cdf64d52d955743c5d2dae8d3f8c8049",
"dweb:/ipfs/QmX9ZBJbTmrPtuJX3nDvyK881Q1ztoAZZ7EwmAu2k1MUwi"
]
}
},
"version": 1
}
This file has been truncated, but you can view the full file.
{
"id": "0709f6bc8329c32d873798a50f3672a8",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.17",
"solcLongVersion": "0.8.17+commit.8df45f5f",
"input": {
"language": "Solidity",
"sources": {
"contracts/9_struct.sol": {
"content": "// SPDX-License-Identifier: MIT\n\npragma solidity ^0.8.7;\n\ncontract StructSample {\n\n struct learner {\n string name;\n uint8 age;\n }\n\n // mapping (keyType => dataType) mappingName \n mapping (uint8 => learner) learnerMap;\n\n function setLearner(uint8 _index, string memory _name, uint8 _age) public {\n learnerMap[_index].name = _name;\n learnerMap[_index].age = _age;\n }\n\n function getLearner(uint8 _index) public view returns(string memory, uint8) {\n return (learnerMap[_index].name, learnerMap[_index].age);\n }\n\n}\n\n// 0xcD6a42782d230D7c13A74ddec5dD140e55499Df9"
}
},
"settings": {
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"": [
"ast"
],
"*": [
"abi",
"metadata",
"devdoc",
"userdoc",
"storageLayout",
"evm.legacyAssembly",
"evm.bytecode",
"evm.deployedBytecode",
"evm.methodIdentifiers",
"evm.gasEstimates",
"evm.assembly"
]
}
}
}
},
"output": {
"contracts": {
"contracts/9_struct.sol": {
"StructSample": {
"abi": [
{
"inputs": [
{
"internalType": "uint8",
"name": "_index",
"type": "uint8"
}
],
"name": "getLearner",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
},
{
"internalType": "uint8",
"name": "",
"type": "uint8"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint8",
"name": "_index",
"type": "uint8"
},
{
"internalType": "string",
"name": "_name",
"type": "string"
},
{
"internalType": "uint8",
"name": "_age",
"type": "uint8"
}
],
"name": "setLearner",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"evm": {
"assembly": " /* \"contracts/9_struct.sol\":58:568 contract StructSample {... */\n mstore(0x40, 0x80)\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\ntag_1:\n pop\n dataSize(sub_0)\n dup1\n dataOffset(sub_0)\n 0x00\n codecopy\n 0x00\n return\nstop\n\nsub_0: assembly {\n /* \"contracts/9_struct.sol\":58:568 contract StructSample {... */\n mstore(0x40, 0x80)\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\n tag_1:\n pop\n jumpi(tag_2, lt(calldatasize, 0x04))\n shr(0xe0, calldataload(0x00))\n dup1\n 0x15ef194e\n eq\n tag_3\n jumpi\n dup1\n 0x174d39f6\n eq\n tag_4\n jumpi\n tag_2:\n 0x00\n dup1\n revert\n /* \"contracts/9_struct.sol\":249:410 function setLearner(uint8 _index, string memory _name, uint8 _age) public {... */\n tag_3:\n tag_5\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_6\n swap2\n swap1\n tag_7\n jump\t// in\n tag_6:\n tag_8\n jump\t// in\n tag_5:\n stop\n /* \"contracts/9_struct.sol\":416:565 function getLearner(uint8 _index) public view returns(string memory, uint8) {... */\n tag_4:\n tag_9\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_10\n swap2\n swap1\n tag_11\n jump\t// in\n tag_10:\n tag_12\n jump\t// in\n tag_9:\n mload(0x40)\n tag_13\n swap3\n swap2\n swap1\n tag_14\n jump\t// in\n tag_13:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/9_struct.sol\":249:410 function setLearner(uint8 _index, string memory _name, uint8 _age) public {... */\n tag_8:\n /* \"contracts/9_struct.sol\":359:364 _name */\n dup2\n /* \"contracts/9_struct.sol\":333:343 learnerMap */\n 0x00\n /* \"contracts/9_struct.sol\":333:351 learnerMap[_index] */\n dup1\n /* \"contracts/9_struct.sol\":344:350 _index */\n dup6\n /* \"contracts/9_struct.sol\":333:351 learnerMap[_index] */\n 0xff\n and\n 0xff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"contracts/9_struct.sol\":333:356 learnerMap[_index].name */\n 0x00\n add\n /* \"contracts/9_struct.sol\":333:364 learnerMap[_index].name = _name */\n swap1\n dup2\n tag_16\n swap2\n swap1\n tag_17\n jump\t// in\n tag_16:\n pop\n /* \"contracts/9_struct.sol\":399:403 _age */\n dup1\n /* \"contracts/9_struct.sol\":374:384 learnerMap */\n 0x00\n /* \"contracts/9_struct.sol\":374:392 learnerMap[_index] */\n dup1\n /* \"contracts/9_struct.sol\":385:391 _index */\n dup6\n /* \"contracts/9_struct.sol\":374:392 learnerMap[_index] */\n 0xff\n and\n 0xff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"contracts/9_struct.sol\":374:396 learnerMap[_index].age */\n 0x01\n add\n 0x00\n /* \"contracts/9_struct.sol\":374:403 learnerMap[_index].age = _age */\n 0x0100\n exp\n dup2\n sload\n dup2\n 0xff\n mul\n not\n and\n swap1\n dup4\n 0xff\n and\n mul\n or\n swap1\n sstore\n pop\n /* \"contracts/9_struct.sol\":249:410 function setLearner(uint8 _index, string memory _name, uint8 _age) public {... */\n pop\n pop\n pop\n jump\t// out\n /* \"contracts/9_struct.sol\":416:565 function getLearner(uint8 _index) public view returns(string memory, uint8) {... */\n tag_12:\n /* \"contracts/9_struct.sol\":470:483 string memory */\n 0x60\n /* \"contracts/9_struct.sol\":485:490 uint8 */\n 0x00\n /* \"contracts/9_struct.sol\":510:520 learnerMap */\n dup1\n /* \"contracts/9_struct.sol\":510:528 learnerMap[_index] */\n 0x00\n /* \"contracts/9_struct.sol\":521:527 _index */\n dup5\n /* \"contracts/9_struct.sol\":510:528 learnerMap[_index] */\n 0xff\n and\n 0xff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"contracts/9_struct.sol\":510:533 learnerMap[_index].name */\n 0x00\n add\n /* \"contracts/9_struct.sol\":535:545 learnerMap */\n 0x00\n /* \"contracts/9_struct.sol\":535:553 learnerMap[_index] */\n dup1\n /* \"contracts/9_struct.sol\":546:552 _index */\n dup6\n /* \"contracts/9_struct.sol\":535:553 learnerMap[_index] */\n 0xff\n and\n 0xff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"contracts/9_struct.sol\":535:557 learnerMap[_index].age */\n 0x01\n add\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xff\n and\n /* \"contracts/9_struct.sol\":502:558 return (learnerMap[_index].name, learnerMap[_index].age) */\n dup2\n dup1\n sload\n tag_19\n swap1\n tag_20\n jump\t// in\n tag_19:\n dup1\n 0x1f\n add\n 0x20\n dup1\n swap2\n div\n mul\n 0x20\n add\n mload(0x40)\n swap1\n dup2\n add\n 0x40\n mstore\n dup1\n swap3\n swap2\n swap1\n dup2\n dup2\n mstore\n 0x20\n add\n dup3\n dup1\n sload\n tag_21\n swap1\n tag_20\n jump\t// in\n tag_21:\n dup1\n iszero\n tag_22\n jumpi\n dup1\n 0x1f\n lt\n tag_23\n jumpi\n 0x0100\n dup1\n dup4\n sload\n div\n mul\n dup4\n mstore\n swap2\n 0x20\n add\n swap2\n jump(tag_22)\n tag_23:\n dup3\n add\n swap2\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n tag_24:\n dup2\n sload\n dup2\n mstore\n swap1\n 0x01\n add\n swap1\n 0x20\n add\n dup1\n dup4\n gt\n tag_24\n jumpi\n dup3\n swap1\n sub\n 0x1f\n and\n dup3\n add\n swap2\n tag_22:\n pop\n pop\n pop\n pop\n pop\n swap2\n pop\n swap2\n pop\n swap2\n pop\n /* \"contracts/9_struct.sol\":416:565 function getLearner(uint8 _index) public view returns(string memory, uint8) {... */\n swap2\n pop\n swap2\n jump\t// out\n /* \"#utility.yul\":7:82 */\n tag_25:\n /* \"#utility.yul\":40:46 */\n 0x00\n /* \"#utility.yul\":73:75 */\n 0x40\n /* \"#utility.yul\":67:76 */\n mload\n /* \"#utility.yul\":57:76 */\n swap1\n pop\n /* \"#utility.yul\":7:82 */\n swap1\n jump\t// out\n /* \"#utility.yul\":88:205 */\n tag_26:\n /* \"#utility.yul\":197:198 */\n 0x00\n /* \"#utility.yul\":194:195 */\n dup1\n /* \"#utility.yul\":187:199 */\n revert\n /* \"#utility.yul\":211:328 */\n tag_27:\n /* \"#utility.yul\":320:321 */\n 0x00\n /* \"#utility.yul\":317:318 */\n dup1\n /* \"#utility.yul\":310:322 */\n revert\n /* \"#utility.yul\":334:420 */\n tag_28:\n /* \"#utility.yul\":369:376 */\n 0x00\n /* \"#utility.yul\":409:413 */\n 0xff\n /* \"#utility.yul\":402:407 */\n dup3\n /* \"#utility.yul\":398:414 */\n and\n /* \"#utility.yul\":387:414 */\n swap1\n pop\n /* \"#utility.yul\":334:420 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":426:544 */\n tag_29:\n /* \"#utility.yul\":497:519 */\n tag_69\n /* \"#utility.yul\":513:518 */\n dup2\n /* \"#utility.yul\":497:519 */\n tag_28\n jump\t// in\n tag_69:\n /* \"#utility.yul\":490:495 */\n dup2\n /* \"#utility.yul\":487:520 */\n eq\n /* \"#utility.yul\":477:538 */\n tag_70\n jumpi\n /* \"#utility.yul\":534:535 */\n 0x00\n /* \"#utility.yul\":531:532 */\n dup1\n /* \"#utility.yul\":524:536 */\n revert\n /* \"#utility.yul\":477:538 */\n tag_70:\n /* \"#utility.yul\":426:544 */\n pop\n jump\t// out\n /* \"#utility.yul\":550:685 */\n tag_30:\n /* \"#utility.yul\":594:599 */\n 0x00\n /* \"#utility.yul\":632:638 */\n dup2\n /* \"#utility.yul\":619:639 */\n calldataload\n /* \"#utility.yul\":610:639 */\n swap1\n pop\n /* \"#utility.yul\":648:679 */\n tag_72\n /* \"#utility.yul\":673:678 */\n dup2\n /* \"#utility.yul\":648:679 */\n tag_29\n jump\t// in\n tag_72:\n /* \"#utility.yul\":550:685 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":691:808 */\n tag_31:\n /* \"#utility.yul\":800:801 */\n 0x00\n /* \"#utility.yul\":797:798 */\n dup1\n /* \"#utility.yul\":790:802 */\n revert\n /* \"#utility.yul\":814:931 */\n tag_32:\n /* \"#utility.yul\":923:924 */\n 0x00\n /* \"#utility.yul\":920:921 */\n dup1\n /* \"#utility.yul\":913:925 */\n revert\n /* \"#utility.yul\":937:1039 */\n tag_33:\n /* \"#utility.yul\":978:984 */\n 0x00\n /* \"#utility.yul\":1029:1031 */\n 0x1f\n /* \"#utility.yul\":1025:1032 */\n not\n /* \"#utility.yul\":1020:1022 */\n 0x1f\n /* \"#utility.yul\":1013:1018 */\n dup4\n /* \"#utility.yul\":1009:1023 */\n add\n /* \"#utility.yul\":1005:1033 */\n and\n /* \"#utility.yul\":995:1033 */\n swap1\n pop\n /* \"#utility.yul\":937:1039 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1045:1225 */\n tag_34:\n /* \"#utility.yul\":1093:1170 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":1090:1091 */\n 0x00\n /* \"#utility.yul\":1083:1171 */\n mstore\n /* \"#utility.yul\":1190:1194 */\n 0x41\n /* \"#utility.yul\":1187:1188 */\n 0x04\n /* \"#utility.yul\":1180:1195 */\n mstore\n /* \"#utility.yul\":1214:1218 */\n 0x24\n /* \"#utility.yul\":1211:1212 */\n 0x00\n /* \"#utility.yul\":1204:1219 */\n revert\n /* \"#utility.yul\":1231:1512 */\n tag_35:\n /* \"#utility.yul\":1314:1341 */\n tag_78\n /* \"#utility.yul\":1336:1340 */\n dup3\n /* \"#utility.yul\":1314:1341 */\n tag_33\n jump\t// in\n tag_78:\n /* \"#utility.yul\":1306:1312 */\n dup2\n /* \"#utility.yul\":1302:1342 */\n add\n /* \"#utility.yul\":1444:1450 */\n dup2\n /* \"#utility.yul\":1432:1442 */\n dup2\n /* \"#utility.yul\":1429:1451 */\n lt\n /* \"#utility.yul\":1408:1426 */\n 0xffffffffffffffff\n /* \"#utility.yul\":1396:1406 */\n dup3\n /* \"#utility.yul\":1393:1427 */\n gt\n /* \"#utility.yul\":1390:1452 */\n or\n /* \"#utility.yul\":1387:1475 */\n iszero\n tag_79\n jumpi\n /* \"#utility.yul\":1455:1473 */\n tag_80\n tag_34\n jump\t// in\n tag_80:\n /* \"#utility.yul\":1387:1475 */\n tag_79:\n /* \"#utility.yul\":1495:1505 */\n dup1\n /* \"#utility.yul\":1491:1493 */\n 0x40\n /* \"#utility.yul\":1484:1506 */\n mstore\n /* \"#utility.yul\":1274:1512 */\n pop\n /* \"#utility.yul\":1231:1512 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1518:1647 */\n tag_36:\n /* \"#utility.yul\":1552:1558 */\n 0x00\n /* \"#utility.yul\":1579:1599 */\n tag_82\n tag_25\n jump\t// in\n tag_82:\n /* \"#utility.yul\":1569:1599 */\n swap1\n pop\n /* \"#utility.yul\":1608:1641 */\n tag_83\n /* \"#utility.yul\":1636:1640 */\n dup3\n /* \"#utility.yul\":1628:1634 */\n dup3\n /* \"#utility.yul\":1608:1641 */\n tag_35\n jump\t// in\n tag_83:\n /* \"#utility.yul\":1518:1647 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1653:1961 */\n tag_37:\n /* \"#utility.yul\":1715:1719 */\n 0x00\n /* \"#utility.yul\":1805:1823 */\n 0xffffffffffffffff\n /* \"#utility.yul\":1797:1803 */\n dup3\n /* \"#utility.yul\":1794:1824 */\n gt\n /* \"#utility.yul\":1791:1847 */\n iszero\n tag_85\n jumpi\n /* \"#utility.yul\":1827:1845 */\n tag_86\n tag_34\n jump\t// in\n tag_86:\n /* \"#utility.yul\":1791:1847 */\n tag_85:\n /* \"#utility.yul\":1865:1894 */\n tag_87\n /* \"#utility.yul\":1887:1893 */\n dup3\n /* \"#utility.yul\":1865:1894 */\n tag_33\n jump\t// in\n tag_87:\n /* \"#utility.yul\":1857:1894 */\n swap1\n pop\n /* \"#utility.yul\":1949:1953 */\n 0x20\n /* \"#utility.yul\":1943:1947 */\n dup2\n /* \"#utility.yul\":1939:1954 */\n add\n /* \"#utility.yul\":1931:1954 */\n swap1\n pop\n /* \"#utility.yul\":1653:1961 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1967:2113 */\n tag_38:\n /* \"#utility.yul\":2064:2070 */\n dup3\n /* \"#utility.yul\":2059:2062 */\n dup2\n /* \"#utility.yul\":2054:2057 */\n dup4\n /* \"#utility.yul\":2041:2071 */\n calldatacopy\n /* \"#utility.yul\":2105:2106 */\n 0x00\n /* \"#utility.yul\":2096:2102 */\n dup4\n /* \"#utility.yul\":2091:2094 */\n dup4\n /* \"#utility.yul\":2087:2103 */\n add\n /* \"#utility.yul\":2080:2107 */\n mstore\n /* \"#utility.yul\":1967:2113 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2119:2544 */\n tag_39:\n /* \"#utility.yul\":2197:2202 */\n 0x00\n /* \"#utility.yul\":2222:2288 */\n tag_90\n /* \"#utility.yul\":2238:2287 */\n tag_91\n /* \"#utility.yul\":2280:2286 */\n dup5\n /* \"#utility.yul\":2238:2287 */\n tag_37\n jump\t// in\n tag_91:\n /* \"#utility.yul\":2222:2288 */\n tag_36\n jump\t// in\n tag_90:\n /* \"#utility.yul\":2213:2288 */\n swap1\n pop\n /* \"#utility.yul\":2311:2317 */\n dup3\n /* \"#utility.yul\":2304:2309 */\n dup2\n /* \"#utility.yul\":2297:2318 */\n mstore\n /* \"#utility.yul\":2349:2353 */\n 0x20\n /* \"#utility.yul\":2342:2347 */\n dup2\n /* \"#utility.yul\":2338:2354 */\n add\n /* \"#utility.yul\":2387:2390 */\n dup5\n /* \"#utility.yul\":2378:2384 */\n dup5\n /* \"#utility.yul\":2373:2376 */\n dup5\n /* \"#utility.yul\":2369:2385 */\n add\n /* \"#utility.yul\":2366:2391 */\n gt\n /* \"#utility.yul\":2363:2475 */\n iszero\n tag_92\n jumpi\n /* \"#utility.yul\":2394:2473 */\n tag_93\n tag_32\n jump\t// in\n tag_93:\n /* \"#utility.yul\":2363:2475 */\n tag_92:\n /* \"#utility.yul\":2484:2538 */\n tag_94\n /* \"#utility.yul\":2531:2537 */\n dup5\n /* \"#utility.yul\":2526:2529 */\n dup3\n /* \"#utility.yul\":2521:2524 */\n dup6\n /* \"#utility.yul\":2484:2538 */\n tag_38\n jump\t// in\n tag_94:\n /* \"#utility.yul\":2203:2544 */\n pop\n /* \"#utility.yul\":2119:2544 */\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2564:2904 */\n tag_40:\n /* \"#utility.yul\":2620:2625 */\n 0x00\n /* \"#utility.yul\":2669:2672 */\n dup3\n /* \"#utility.yul\":2662:2666 */\n 0x1f\n /* \"#utility.yul\":2654:2660 */\n dup4\n /* \"#utility.yul\":2650:2667 */\n add\n /* \"#utility.yul\":2646:2673 */\n slt\n /* \"#utility.yul\":2636:2758 */\n tag_96\n jumpi\n /* \"#utility.yul\":2677:2756 */\n tag_97\n tag_31\n jump\t// in\n tag_97:\n /* \"#utility.yul\":2636:2758 */\n tag_96:\n /* \"#utility.yul\":2794:2800 */\n dup2\n /* \"#utility.yul\":2781:2801 */\n calldataload\n /* \"#utility.yul\":2819:2898 */\n tag_98\n /* \"#utility.yul\":2894:2897 */\n dup5\n /* \"#utility.yul\":2886:2892 */\n dup3\n /* \"#utility.yul\":2879:2883 */\n 0x20\n /* \"#utility.yul\":2871:2877 */\n dup7\n /* \"#utility.yul\":2867:2884 */\n add\n /* \"#utility.yul\":2819:2898 */\n tag_39\n jump\t// in\n tag_98:\n /* \"#utility.yul\":2810:2898 */\n swap2\n pop\n /* \"#utility.yul\":2626:2904 */\n pop\n /* \"#utility.yul\":2564:2904 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2910:3701 */\n tag_7:\n /* \"#utility.yul\":2993:2999 */\n 0x00\n /* \"#utility.yul\":3001:3007 */\n dup1\n /* \"#utility.yul\":3009:3015 */\n 0x00\n /* \"#utility.yul\":3058:3060 */\n 0x60\n /* \"#utility.yul\":3046:3055 */\n dup5\n /* \"#utility.yul\":3037:3044 */\n dup7\n /* \"#utility.yul\":3033:3056 */\n sub\n /* \"#utility.yul\":3029:3061 */\n slt\n /* \"#utility.yul\":3026:3145 */\n iszero\n tag_100\n jumpi\n /* \"#utility.yul\":3064:3143 */\n tag_101\n tag_26\n jump\t// in\n tag_101:\n /* \"#utility.yul\":3026:3145 */\n tag_100:\n /* \"#utility.yul\":3184:3185 */\n 0x00\n /* \"#utility.yul\":3209:3260 */\n tag_102\n /* \"#utility.yul\":3252:3259 */\n dup7\n /* \"#utility.yul\":3243:3249 */\n dup3\n /* \"#utility.yul\":3232:3241 */\n dup8\n /* \"#utility.yul\":3228:3250 */\n add\n /* \"#utility.yul\":3209:3260 */\n tag_30\n jump\t// in\n tag_102:\n /* \"#utility.yul\":3199:3260 */\n swap4\n pop\n /* \"#utility.yul\":3155:3270 */\n pop\n /* \"#utility.yul\":3337:3339 */\n 0x20\n /* \"#utility.yul\":3326:3335 */\n dup5\n /* \"#utility.yul\":3322:3340 */\n add\n /* \"#utility.yul\":3309:3341 */\n calldataload\n /* \"#utility.yul\":3368:3386 */\n 0xffffffffffffffff\n /* \"#utility.yul\":3360:3366 */\n dup2\n /* \"#utility.yul\":3357:3387 */\n gt\n /* \"#utility.yul\":3354:3471 */\n iszero\n tag_103\n jumpi\n /* \"#utility.yul\":3390:3469 */\n tag_104\n tag_27\n jump\t// in\n tag_104:\n /* \"#utility.yul\":3354:3471 */\n tag_103:\n /* \"#utility.yul\":3495:3558 */\n tag_105\n /* \"#utility.yul\":3550:3557 */\n dup7\n /* \"#utility.yul\":3541:3547 */\n dup3\n /* \"#utility.yul\":3530:3539 */\n dup8\n /* \"#utility.yul\":3526:3548 */\n add\n /* \"#utility.yul\":3495:3558 */\n tag_40\n jump\t// in\n tag_105:\n /* \"#utility.yul\":3485:3558 */\n swap3\n pop\n /* \"#utility.yul\":3280:3568 */\n pop\n /* \"#utility.yul\":3607:3609 */\n 0x40\n /* \"#utility.yul\":3633:3684 */\n tag_106\n /* \"#utility.yul\":3676:3683 */\n dup7\n /* \"#utility.yul\":3667:3673 */\n dup3\n /* \"#utility.yul\":3656:3665 */\n dup8\n /* \"#utility.yul\":3652:3674 */\n add\n /* \"#utility.yul\":3633:3684 */\n tag_30\n jump\t// in\n tag_106:\n /* \"#utility.yul\":3623:3684 */\n swap2\n pop\n /* \"#utility.yul\":3578:3694 */\n pop\n /* \"#utility.yul\":2910:3701 */\n swap3\n pop\n swap3\n pop\n swap3\n jump\t// out\n /* \"#utility.yul\":3707:4032 */\n tag_11:\n /* \"#utility.yul\":3764:3770 */\n 0x00\n /* \"#utility.yul\":3813:3815 */\n 0x20\n /* \"#utility.yul\":3801:3810 */\n dup3\n /* \"#utility.yul\":3792:3799 */\n dup5\n /* \"#utility.yul\":3788:3811 */\n sub\n /* \"#utility.yul\":3784:3816 */\n slt\n /* \"#utility.yul\":3781:3900 */\n iszero\n tag_108\n jumpi\n /* \"#utility.yul\":3819:3898 */\n tag_109\n tag_26\n jump\t// in\n tag_109:\n /* \"#utility.yul\":3781:3900 */\n tag_108:\n /* \"#utility.yul\":3939:3940 */\n 0x00\n /* \"#utility.yul\":3964:4015 */\n tag_110\n /* \"#utility.yul\":4007:4014 */\n dup5\n /* \"#utility.yul\":3998:4004 */\n dup3\n /* \"#utility.yul\":3987:3996 */\n dup6\n /* \"#utility.yul\":3983:4005 */\n add\n /* \"#utility.yul\":3964:4015 */\n tag_30\n jump\t// in\n tag_110:\n /* \"#utility.yul\":3954:4015 */\n swap2\n pop\n /* \"#utility.yul\":3910:4025 */\n pop\n /* \"#utility.yul\":3707:4032 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":4038:4137 */\n tag_41:\n /* \"#utility.yul\":4090:4096 */\n 0x00\n /* \"#utility.yul\":4124:4129 */\n dup2\n /* \"#utility.yul\":4118:4130 */\n mload\n /* \"#utility.yul\":4108:4130 */\n swap1\n pop\n /* \"#utility.yul\":4038:4137 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":4143:4312 */\n tag_42:\n /* \"#utility.yul\":4227:4238 */\n 0x00\n /* \"#utility.yul\":4261:4267 */\n dup3\n /* \"#utility.yul\":4256:4259 */\n dup3\n /* \"#utility.yul\":4249:4268 */\n mstore\n /* \"#utility.yul\":4301:4305 */\n 0x20\n /* \"#utility.yul\":4296:4299 */\n dup3\n /* \"#utility.yul\":4292:4306 */\n add\n /* \"#utility.yul\":4277:4306 */\n swap1\n pop\n /* \"#utility.yul\":4143:4312 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":4318:4564 */\n tag_43:\n /* \"#utility.yul\":4399:4400 */\n 0x00\n /* \"#utility.yul\":4409:4522 */\n tag_114:\n /* \"#utility.yul\":4423:4429 */\n dup4\n /* \"#utility.yul\":4420:4421 */\n dup2\n /* \"#utility.yul\":4417:4430 */\n lt\n /* \"#utility.yul\":4409:4522 */\n iszero\n tag_116\n jumpi\n /* \"#utility.yul\":4508:4509 */\n dup1\n /* \"#utility.yul\":4503:4506 */\n dup3\n /* \"#utility.yul\":4499:4510 */\n add\n /* \"#utility.yul\":4493:4511 */\n mload\n /* \"#utility.yul\":4489:4490 */\n dup2\n /* \"#utility.yul\":4484:4487 */\n dup5\n /* \"#utility.yul\":4480:4491 */\n add\n /* \"#utility.yul\":4473:4512 */\n mstore\n /* \"#utility.yul\":4445:4447 */\n 0x20\n /* \"#utility.yul\":4442:4443 */\n dup2\n /* \"#utility.yul\":4438:4448 */\n add\n /* \"#utility.yul\":4433:4448 */\n swap1\n pop\n /* \"#utility.yul\":4409:4522 */\n jump(tag_114)\n tag_116:\n /* \"#utility.yul\":4556:4557 */\n 0x00\n /* \"#utility.yul\":4547:4553 */\n dup5\n /* \"#utility.yul\":4542:4545 */\n dup5\n /* \"#utility.yul\":4538:4554 */\n add\n /* \"#utility.yul\":4531:4558 */\n mstore\n /* \"#utility.yul\":4380:4564 */\n pop\n /* \"#utility.yul\":4318:4564 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":4570:4947 */\n tag_44:\n /* \"#utility.yul\":4658:4661 */\n 0x00\n /* \"#utility.yul\":4686:4725 */\n tag_118\n /* \"#utility.yul\":4719:4724 */\n dup3\n /* \"#utility.yul\":4686:4725 */\n tag_41\n jump\t// in\n tag_118:\n /* \"#utility.yul\":4741:4812 */\n tag_119\n /* \"#utility.yul\":4805:4811 */\n dup2\n /* \"#utility.yul\":4800:4803 */\n dup6\n /* \"#utility.yul\":4741:4812 */\n tag_42\n jump\t// in\n tag_119:\n /* \"#utility.yul\":4734:4812 */\n swap4\n pop\n /* \"#utility.yul\":4821:4886 */\n tag_120\n /* \"#utility.yul\":4879:4885 */\n dup2\n /* \"#utility.yul\":4874:4877 */\n dup6\n /* \"#utility.yul\":4867:4871 */\n 0x20\n /* \"#utility.yul\":4860:4865 */\n dup7\n /* \"#utility.yul\":4856:4872 */\n add\n /* \"#utility.yul\":4821:4886 */\n tag_43\n jump\t// in\n tag_120:\n /* \"#utility.yul\":4911:4940 */\n tag_121\n /* \"#utility.yul\":4933:4939 */\n dup2\n /* \"#utility.yul\":4911:4940 */\n tag_33\n jump\t// in\n tag_121:\n /* \"#utility.yul\":4906:4909 */\n dup5\n /* \"#utility.yul\":4902:4941 */\n add\n /* \"#utility.yul\":4895:4941 */\n swap2\n pop\n /* \"#utility.yul\":4662:4947 */\n pop\n /* \"#utility.yul\":4570:4947 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":4953:5065 */\n tag_45:\n /* \"#utility.yul\":5036:5058 */\n tag_123\n /* \"#utility.yul\":5052:5057 */\n dup2\n /* \"#utility.yul\":5036:5058 */\n tag_28\n jump\t// in\n tag_123:\n /* \"#utility.yul\":5031:5034 */\n dup3\n /* \"#utility.yul\":5024:5059 */\n mstore\n /* \"#utility.yul\":4953:5065 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5071:5486 */\n tag_14:\n /* \"#utility.yul\":5208:5212 */\n 0x00\n /* \"#utility.yul\":5246:5248 */\n 0x40\n /* \"#utility.yul\":5235:5244 */\n dup3\n /* \"#utility.yul\":5231:5249 */\n add\n /* \"#utility.yul\":5223:5249 */\n swap1\n pop\n /* \"#utility.yul\":5295:5304 */\n dup2\n /* \"#utility.yul\":5289:5293 */\n dup2\n /* \"#utility.yul\":5285:5305 */\n sub\n /* \"#utility.yul\":5281:5282 */\n 0x00\n /* \"#utility.yul\":5270:5279 */\n dup4\n /* \"#utility.yul\":5266:5283 */\n add\n /* \"#utility.yul\":5259:5306 */\n mstore\n /* \"#utility.yul\":5323:5401 */\n tag_125\n /* \"#utility.yul\":5396:5400 */\n dup2\n /* \"#utility.yul\":5387:5393 */\n dup6\n /* \"#utility.yul\":5323:5401 */\n tag_44\n jump\t// in\n tag_125:\n /* \"#utility.yul\":5315:5401 */\n swap1\n pop\n /* \"#utility.yul\":5411:5479 */\n tag_126\n /* \"#utility.yul\":5475:5477 */\n 0x20\n /* \"#utility.yul\":5464:5473 */\n dup4\n /* \"#utility.yul\":5460:5478 */\n add\n /* \"#utility.yul\":5451:5457 */\n dup5\n /* \"#utility.yul\":5411:5479 */\n tag_45\n jump\t// in\n tag_126:\n /* \"#utility.yul\":5071:5486 */\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5492:5672 */\n tag_46:\n /* \"#utility.yul\":5540:5617 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":5537:5538 */\n 0x00\n /* \"#utility.yul\":5530:5618 */\n mstore\n /* \"#utility.yul\":5637:5641 */\n 0x22\n /* \"#utility.yul\":5634:5635 */\n 0x04\n /* \"#utility.yul\":5627:5642 */\n mstore\n /* \"#utility.yul\":5661:5665 */\n 0x24\n /* \"#utility.yul\":5658:5659 */\n 0x00\n /* \"#utility.yul\":5651:5666 */\n revert\n /* \"#utility.yul\":5678:5998 */\n tag_20:\n /* \"#utility.yul\":5722:5728 */\n 0x00\n /* \"#utility.yul\":5759:5760 */\n 0x02\n /* \"#utility.yul\":5753:5757 */\n dup3\n /* \"#utility.yul\":5749:5761 */\n div\n /* \"#utility.yul\":5739:5761 */\n swap1\n pop\n /* \"#utility.yul\":5806:5807 */\n 0x01\n /* \"#utility.yul\":5800:5804 */\n dup3\n /* \"#utility.yul\":5796:5808 */\n and\n /* \"#utility.yul\":5827:5845 */\n dup1\n /* \"#utility.yul\":5817:5898 */\n tag_129\n jumpi\n /* \"#utility.yul\":5883:5887 */\n 0x7f\n /* \"#utility.yul\":5875:5881 */\n dup3\n /* \"#utility.yul\":5871:5888 */\n and\n /* \"#utility.yul\":5861:5888 */\n swap2\n pop\n /* \"#utility.yul\":5817:5898 */\n tag_129:\n /* \"#utility.yul\":5945:5947 */\n 0x20\n /* \"#utility.yul\":5937:5943 */\n dup3\n /* \"#utility.yul\":5934:5948 */\n lt\n /* \"#utility.yul\":5914:5932 */\n dup2\n /* \"#utility.yul\":5911:5949 */\n sub\n /* \"#utility.yul\":5908:5992 */\n tag_130\n jumpi\n /* \"#utility.yul\":5964:5982 */\n tag_131\n tag_46\n jump\t// in\n tag_131:\n /* \"#utility.yul\":5908:5992 */\n tag_130:\n /* \"#utility.yul\":5729:5998 */\n pop\n /* \"#utility.yul\":5678:5998 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":6004:6145 */\n tag_47:\n /* \"#utility.yul\":6053:6057 */\n 0x00\n /* \"#utility.yul\":6076:6079 */\n dup2\n /* \"#utility.yul\":6068:6079 */\n swap1\n pop\n /* \"#utility.yul\":6099:6102 */\n dup2\n /* \"#utility.yul\":6096:6097 */\n 0x00\n /* \"#utility.yul\":6089:6103 */\n mstore\n /* \"#utility.yul\":6133:6137 */\n 0x20\n /* \"#utility.yul\":6130:6131 */\n 0x00\n /* \"#utility.yul\":6120:6138 */\n keccak256\n /* \"#utility.yul\":6112:6138 */\n swap1\n pop\n /* \"#utility.yul\":6004:6145 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":6151:6244 */\n tag_48:\n /* \"#utility.yul\":6188:6194 */\n 0x00\n /* \"#utility.yul\":6235:6237 */\n 0x20\n /* \"#utility.yul\":6230:6232 */\n 0x1f\n /* \"#utility.yul\":6223:6228 */\n dup4\n /* \"#utility.yul\":6219:6233 */\n add\n /* \"#utility.yul\":6215:6238 */\n div\n /* \"#utility.yul\":6205:6238 */\n swap1\n pop\n /* \"#utility.yul\":6151:6244 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":6250:6357 */\n tag_49:\n /* \"#utility.yul\":6294:6302 */\n 0x00\n /* \"#utility.yul\":6344:6349 */\n dup3\n /* \"#utility.yul\":6338:6342 */\n dup3\n /* \"#utility.yul\":6334:6350 */\n shl\n /* \"#utility.yul\":6313:6350 */\n swap1\n pop\n /* \"#utility.yul\":6250:6357 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":6363:6756 */\n tag_50:\n /* \"#utility.yul\":6432:6438 */\n 0x00\n /* \"#utility.yul\":6482:6483 */\n 0x08\n /* \"#utility.yul\":6470:6480 */\n dup4\n /* \"#utility.yul\":6466:6484 */\n mul\n /* \"#utility.yul\":6505:6602 */\n tag_136\n /* \"#utility.yul\":6535:6601 */\n 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\n /* \"#utility.yul\":6524:6533 */\n dup3\n /* \"#utility.yul\":6505:6602 */\n tag_49\n jump\t// in\n tag_136:\n /* \"#utility.yul\":6623:6662 */\n tag_137\n /* \"#utility.yul\":6653:6661 */\n dup7\n /* \"#utility.yul\":6642:6651 */\n dup4\n /* \"#utility.yul\":6623:6662 */\n tag_49\n jump\t// in\n tag_137:\n /* \"#utility.yul\":6611:6662 */\n swap6\n pop\n /* \"#utility.yul\":6695:6699 */\n dup1\n /* \"#utility.yul\":6691:6700 */\n not\n /* \"#utility.yul\":6684:6689 */\n dup5\n /* \"#utility.yul\":6680:6701 */\n and\n /* \"#utility.yul\":6671:6701 */\n swap4\n pop\n /* \"#utility.yul\":6744:6748 */\n dup1\n /* \"#utility.yul\":6734:6742 */\n dup7\n /* \"#utility.yul\":6730:6749 */\n and\n /* \"#utility.yul\":6723:6728 */\n dup5\n /* \"#utility.yul\":6720:6750 */\n or\n /* \"#utility.yul\":6710:6750 */\n swap3\n pop\n /* \"#utility.yul\":6439:6756 */\n pop\n pop\n /* \"#utility.yul\":6363:6756 */\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":6762:6839 */\n tag_51:\n /* \"#utility.yul\":6799:6806 */\n 0x00\n /* \"#utility.yul\":6828:6833 */\n dup2\n /* \"#utility.yul\":6817:6833 */\n swap1\n pop\n /* \"#utility.yul\":6762:6839 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":6845:6905 */\n tag_52:\n /* \"#utility.yul\":6873:6876 */\n 0x00\n /* \"#utility.yul\":6894:6899 */\n dup2\n /* \"#utility.yul\":6887:6899 */\n swap1\n pop\n /* \"#utility.yul\":6845:6905 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":6911:7053 */\n tag_53:\n /* \"#utility.yul\":6961:6970 */\n 0x00\n /* \"#utility.yul\":6994:7047 */\n tag_141\n /* \"#utility.yul\":7012:7046 */\n tag_142\n /* \"#utility.yul\":7021:7045 */\n tag_143\n /* \"#utility.yul\":7039:7044 */\n dup5\n /* \"#utility.yul\":7021:7045 */\n tag_51\n jump\t// in\n tag_143:\n /* \"#utility.yul\":7012:7046 */\n tag_52\n jump\t// in\n tag_142:\n /* \"#utility.yul\":6994:7047 */\n tag_51\n jump\t// in\n tag_141:\n /* \"#utility.yul\":6981:7047 */\n swap1\n pop\n /* \"#utility.yul\":6911:7053 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":7059:7134 */\n tag_54:\n /* \"#utility.yul\":7102:7105 */\n 0x00\n /* \"#utility.yul\":7123:7128 */\n dup2\n /* \"#utility.yul\":7116:7128 */\n swap1\n pop\n /* \"#utility.yul\":7059:7134 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":7140:7409 */\n tag_55:\n /* \"#utility.yul\":7250:7289 */\n tag_146\n /* \"#utility.yul\":7281:7288 */\n dup4\n /* \"#utility.yul\":7250:7289 */\n tag_53\n jump\t// in\n tag_146:\n /* \"#utility.yul\":7311:7402 */\n tag_147\n /* \"#utility.yul\":7360:7401 */\n tag_148\n /* \"#utility.yul\":7384:7400 */\n dup3\n /* \"#utility.yul\":7360:7401 */\n tag_54\n jump\t// in\n tag_148:\n /* \"#utility.yul\":7352:7358 */\n dup5\n /* \"#utility.yul\":7345:7349 */\n dup5\n /* \"#utility.yul\":7339:7350 */\n sload\n /* \"#utility.yul\":7311:7402 */\n tag_50\n jump\t// in\n tag_147:\n /* \"#utility.yul\":7305:7309 */\n dup3\n /* \"#utility.yul\":7298:7403 */\n sstore\n /* \"#utility.yul\":7216:7409 */\n pop\n /* \"#utility.yul\":7140:7409 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":7415:7488 */\n tag_56:\n /* \"#utility.yul\":7460:7463 */\n 0x00\n /* \"#utility.yul\":7415:7488 */\n swap1\n jump\t// out\n /* \"#utility.yul\":7494:7683 */\n tag_57:\n /* \"#utility.yul\":7571:7603 */\n tag_151\n tag_56\n jump\t// in\n tag_151:\n /* \"#utility.yul\":7612:7677 */\n tag_152\n /* \"#utility.yul\":7670:7676 */\n dup2\n /* \"#utility.yul\":7662:7668 */\n dup5\n /* \"#utility.yul\":7656:7660 */\n dup5\n /* \"#utility.yul\":7612:7677 */\n tag_55\n jump\t// in\n tag_152:\n /* \"#utility.yul\":7547:7683 */\n pop\n /* \"#utility.yul\":7494:7683 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":7689:7875 */\n tag_58:\n /* \"#utility.yul\":7749:7869 */\n tag_154:\n /* \"#utility.yul\":7766:7769 */\n dup2\n /* \"#utility.yul\":7759:7764 */\n dup2\n /* \"#utility.yul\":7756:7770 */\n lt\n /* \"#utility.yul\":7749:7869 */\n iszero\n tag_156\n jumpi\n /* \"#utility.yul\":7820:7859 */\n tag_157\n /* \"#utility.yul\":7857:7858 */\n 0x00\n /* \"#utility.yul\":7850:7855 */\n dup3\n /* \"#utility.yul\":7820:7859 */\n tag_57\n jump\t// in\n tag_157:\n /* \"#utility.yul\":7793:7794 */\n 0x01\n /* \"#utility.yul\":7786:7791 */\n dup2\n /* \"#utility.yul\":7782:7795 */\n add\n /* \"#utility.yul\":7773:7795 */\n swap1\n pop\n /* \"#utility.yul\":7749:7869 */\n jump(tag_154)\n tag_156:\n /* \"#utility.yul\":7689:7875 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":7881:8424 */\n tag_59:\n /* \"#utility.yul\":7982:7984 */\n 0x1f\n /* \"#utility.yul\":7977:7980 */\n dup3\n /* \"#utility.yul\":7974:7985 */\n gt\n /* \"#utility.yul\":7971:8417 */\n iszero\n tag_159\n jumpi\n /* \"#utility.yul\":8016:8054 */\n tag_160\n /* \"#utility.yul\":8048:8053 */\n dup2\n /* \"#utility.yul\":8016:8054 */\n tag_47\n jump\t// in\n tag_160:\n /* \"#utility.yul\":8100:8129 */\n tag_161\n /* \"#utility.yul\":8118:8128 */\n dup5\n /* \"#utility.yul\":8100:8129 */\n tag_48\n jump\t// in\n tag_161:\n /* \"#utility.yul\":8090:8098 */\n dup2\n /* \"#utility.yul\":8086:8130 */\n add\n /* \"#utility.yul\":8283:8285 */\n 0x20\n /* \"#utility.yul\":8271:8281 */\n dup6\n /* \"#utility.yul\":8268:8286 */\n lt\n /* \"#utility.yul\":8265:8314 */\n iszero\n tag_162\n jumpi\n /* \"#utility.yul\":8304:8312 */\n dup2\n /* \"#utility.yul\":8289:8312 */\n swap1\n pop\n /* \"#utility.yul\":8265:8314 */\n tag_162:\n /* \"#utility.yul\":8327:8407 */\n tag_163\n /* \"#utility.yul\":8383:8405 */\n tag_164\n /* \"#utility.yul\":8401:8404 */\n dup6\n /* \"#utility.yul\":8383:8405 */\n tag_48\n jump\t// in\n tag_164:\n /* \"#utility.yul\":8373:8381 */\n dup4\n /* \"#utility.yul\":8369:8406 */\n add\n /* \"#utility.yul\":8356:8367 */\n dup3\n /* \"#utility.yul\":8327:8407 */\n tag_58\n jump\t// in\n tag_163:\n /* \"#utility.yul\":7986:8417 */\n pop\n pop\n /* \"#utility.yul\":7971:8417 */\n tag_159:\n /* \"#utility.yul\":7881:8424 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":8430:8547 */\n tag_60:\n /* \"#utility.yul\":8484:8492 */\n 0x00\n /* \"#utility.yul\":8534:8539 */\n dup3\n /* \"#utility.yul\":8528:8532 */\n dup3\n /* \"#utility.yul\":8524:8540 */\n shr\n /* \"#utility.yul\":8503:8540 */\n swap1\n pop\n /* \"#utility.yul\":8430:8547 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":8553:8722 */\n tag_61:\n /* \"#utility.yul\":8597:8603 */\n 0x00\n /* \"#utility.yul\":8630:8681 */\n tag_167\n /* \"#utility.yul\":8678:8679 */\n 0x00\n /* \"#utility.yul\":8674:8680 */\n not\n /* \"#utility.yul\":8666:8671 */\n dup5\n /* \"#utility.yul\":8663:8664 */\n 0x08\n /* \"#utility.yul\":8659:8672 */\n mul\n /* \"#utility.yul\":8630:8681 */\n tag_60\n jump\t// in\n tag_167:\n /* \"#utility.yul\":8626:8682 */\n not\n /* \"#utility.yul\":8711:8715 */\n dup1\n /* \"#utility.yul\":8705:8709 */\n dup4\n /* \"#utility.yul\":8701:8716 */\n and\n /* \"#utility.yul\":8691:8716 */\n swap2\n pop\n /* \"#utility.yul\":8604:8722 */\n pop\n /* \"#utility.yul\":8553:8722 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":8727:9022 */\n tag_62:\n /* \"#utility.yul\":8803:8807 */\n 0x00\n /* \"#utility.yul\":8949:8978 */\n tag_169\n /* \"#utility.yul\":8974:8977 */\n dup4\n /* \"#utility.yul\":8968:8972 */\n dup4\n /* \"#utility.yul\":8949:8978 */\n tag_61\n jump\t// in\n tag_169:\n /* \"#utility.yul\":8941:8978 */\n swap2\n pop\n /* \"#utility.yul\":9011:9014 */\n dup3\n /* \"#utility.yul\":9008:9009 */\n 0x02\n /* \"#utility.yul\":9004:9015 */\n mul\n /* \"#utility.yul\":8998:9002 */\n dup3\n /* \"#utility.yul\":8995:9016 */\n or\n /* \"#utility.yul\":8987:9016 */\n swap1\n pop\n /* \"#utility.yul\":8727:9022 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":9027:10422 */\n tag_17:\n /* \"#utility.yul\":9144:9181 */\n tag_171\n /* \"#utility.yul\":9177:9180 */\n dup3\n /* \"#utility.yul\":9144:9181 */\n tag_41\n jump\t// in\n tag_171:\n /* \"#utility.yul\":9246:9264 */\n 0xffffffffffffffff\n /* \"#utility.yul\":9238:9244 */\n dup2\n /* \"#utility.yul\":9235:9265 */\n gt\n /* \"#utility.yul\":9232:9288 */\n iszero\n tag_172\n jumpi\n /* \"#utility.yul\":9268:9286 */\n tag_173\n tag_34\n jump\t// in\n tag_173:\n /* \"#utility.yul\":9232:9288 */\n tag_172:\n /* \"#utility.yul\":9312:9350 */\n tag_174\n /* \"#utility.yul\":9344:9348 */\n dup3\n /* \"#utility.yul\":9338:9349 */\n sload\n /* \"#utility.yul\":9312:9350 */\n tag_20\n jump\t// in\n tag_174:\n /* \"#utility.yul\":9397:9464 */\n tag_175\n /* \"#utility.yul\":9457:9463 */\n dup3\n /* \"#utility.yul\":9449:9455 */\n dup3\n /* \"#utility.yul\":9443:9447 */\n dup6\n /* \"#utility.yul\":9397:9464 */\n tag_59\n jump\t// in\n tag_175:\n /* \"#utility.yul\":9491:9492 */\n 0x00\n /* \"#utility.yul\":9515:9519 */\n 0x20\n /* \"#utility.yul\":9502:9519 */\n swap1\n pop\n /* \"#utility.yul\":9547:9549 */\n 0x1f\n /* \"#utility.yul\":9539:9545 */\n dup4\n /* \"#utility.yul\":9536:9550 */\n gt\n /* \"#utility.yul\":9564:9565 */\n 0x01\n /* \"#utility.yul\":9559:10177 */\n dup2\n eq\n tag_177\n jumpi\n /* \"#utility.yul\":10221:10222 */\n 0x00\n /* \"#utility.yul\":10238:10244 */\n dup5\n /* \"#utility.yul\":10235:10312 */\n iszero\n tag_178\n jumpi\n /* \"#utility.yul\":10287:10296 */\n dup3\n /* \"#utility.yul\":10282:10285 */\n dup8\n /* \"#utility.yul\":10278:10297 */\n add\n /* \"#utility.yul\":10272:10298 */\n mload\n /* \"#utility.yul\":10263:10298 */\n swap1\n pop\n /* \"#utility.yul\":10235:10312 */\n tag_178:\n /* \"#utility.yul\":10338:10405 */\n tag_179\n /* \"#utility.yul\":10398:10404 */\n dup6\n /* \"#utility.yul\":10391:10396 */\n dup3\n /* \"#utility.yul\":10338:10405 */\n tag_62\n jump\t// in\n tag_179:\n /* \"#utility.yul\":10332:10336 */\n dup7\n /* \"#utility.yul\":10325:10406 */\n sstore\n /* \"#utility.yul\":10194:10416 */\n pop\n /* \"#utility.yul\":9529:10416 */\n jump(tag_176)\n /* \"#utility.yul\":9559:10177 */\n tag_177:\n /* \"#utility.yul\":9611:9615 */\n 0x1f\n /* \"#utility.yul\":9607:9616 */\n not\n /* \"#utility.yul\":9599:9605 */\n dup5\n /* \"#utility.yul\":9595:9617 */\n and\n /* \"#utility.yul\":9645:9682 */\n tag_180\n /* \"#utility.yul\":9677:9681 */\n dup7\n /* \"#utility.yul\":9645:9682 */\n tag_47\n jump\t// in\n tag_180:\n /* \"#utility.yul\":9704:9705 */\n 0x00\n /* \"#utility.yul\":9718:9926 */\n tag_181:\n /* \"#utility.yul\":9732:9739 */\n dup3\n /* \"#utility.yul\":9729:9730 */\n dup2\n /* \"#utility.yul\":9726:9740 */\n lt\n /* \"#utility.yul\":9718:9926 */\n iszero\n tag_183\n jumpi\n /* \"#utility.yul\":9811:9820 */\n dup5\n /* \"#utility.yul\":9806:9809 */\n dup10\n /* \"#utility.yul\":9802:9821 */\n add\n /* \"#utility.yul\":9796:9822 */\n mload\n /* \"#utility.yul\":9788:9794 */\n dup3\n /* \"#utility.yul\":9781:9823 */\n sstore\n /* \"#utility.yul\":9862:9863 */\n 0x01\n /* \"#utility.yul\":9854:9860 */\n dup3\n /* \"#utility.yul\":9850:9864 */\n add\n /* \"#utility.yul\":9840:9864 */\n swap2\n pop\n /* \"#utility.yul\":9909:9911 */\n 0x20\n /* \"#utility.yul\":9898:9907 */\n dup6\n /* \"#utility.yul\":9894:9912 */\n add\n /* \"#utility.yul\":9881:9912 */\n swap5\n pop\n /* \"#utility.yul\":9755:9759 */\n 0x20\n /* \"#utility.yul\":9752:9753 */\n dup2\n /* \"#utility.yul\":9748:9760 */\n add\n /* \"#utility.yul\":9743:9760 */\n swap1\n pop\n /* \"#utility.yul\":9718:9926 */\n jump(tag_181)\n tag_183:\n /* \"#utility.yul\":9954:9960 */\n dup7\n /* \"#utility.yul\":9945:9952 */\n dup4\n /* \"#utility.yul\":9942:9961 */\n lt\n /* \"#utility.yul\":9939:10118 */\n iszero\n tag_184\n jumpi\n /* \"#utility.yul\":10012:10021 */\n dup5\n /* \"#utility.yul\":10007:10010 */\n dup10\n /* \"#utility.yul\":10003:10022 */\n add\n /* \"#utility.yul\":9997:10023 */\n mload\n /* \"#utility.yul\":10055:10103 */\n tag_185\n /* \"#utility.yul\":10097:10101 */\n 0x1f\n /* \"#utility.yul\":10089:10095 */\n dup10\n /* \"#utility.yul\":10085:10102 */\n and\n /* \"#utility.yul\":10074:10083 */\n dup3\n /* \"#utility.yul\":10055:10103 */\n tag_61\n jump\t// in\n tag_185:\n /* \"#utility.yul\":10047:10053 */\n dup4\n /* \"#utility.yul\":10040:10104 */\n sstore\n /* \"#utility.yul\":9962:10118 */\n pop\n /* \"#utility.yul\":9939:10118 */\n tag_184:\n /* \"#utility.yul\":10164:10165 */\n 0x01\n /* \"#utility.yul\":10160:10161 */\n 0x02\n /* \"#utility.yul\":10152:10158 */\n dup9\n /* \"#utility.yul\":10148:10162 */\n mul\n /* \"#utility.yul\":10144:10166 */\n add\n /* \"#utility.yul\":10138:10142 */\n dup9\n /* \"#utility.yul\":10131:10167 */\n sstore\n /* \"#utility.yul\":9566:10177 */\n pop\n pop\n pop\n /* \"#utility.yul\":9529:10416 */\n tag_176:\n pop\n /* \"#utility.yul\":9119:10422 */\n pop\n pop\n pop\n /* \"#utility.yul\":9027:10422 */\n pop\n pop\n jump\t// out\n\n auxdata: 0xa26469706673582212207eb1638f2c589d24e28e69ba2046c7a668e6f5605f39f0acaad434cf7d70f0c564736f6c63430008110033\n}\n",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "608060405234801561001057600080fd5b506107d2806100206000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c806315ef194e1461003b578063174d39f614610057575b600080fd5b6100556004803603810190610050919061035a565b610088565b005b610071600480360381019061006c91906103c9565b6100ea565b60405161007f929190610484565b60405180910390f35b816000808560ff1660ff16815260200190815260200160002060000190816100b091906106ca565b50806000808560ff1660ff16815260200190815260200160002060010160006101000a81548160ff021916908360ff160217905550505050565b606060008060008460ff1660ff1681526020019081526020016000206000016000808560ff1660ff16815260200190815260200160002060010160009054906101000a900460ff1681805461013e906104e3565b80601f016020809104026020016040519081016040528092919081815260200182805461016a906104e3565b80156101b75780601f1061018c576101008083540402835291602001916101b7565b820191906000526020600020905b81548152906001019060200180831161019a57829003601f168201915b5050505050915091509150915091565b6000604051905090565b600080fd5b600080fd5b600060ff82169050919050565b6101f1816101db565b81146101fc57600080fd5b50565b60008135905061020e816101e8565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6102678261021e565b810181811067ffffffffffffffff821117156102865761028561022f565b5b80604052505050565b60006102996101c7565b90506102a5828261025e565b919050565b600067ffffffffffffffff8211156102c5576102c461022f565b5b6102ce8261021e565b9050602081019050919050565b82818337600083830152505050565b60006102fd6102f8846102aa565b61028f565b90508281526020810184848401111561031957610318610219565b5b6103248482856102db565b509392505050565b600082601f83011261034157610340610214565b5b81356103518482602086016102ea565b91505092915050565b600080600060608486031215610373576103726101d1565b5b6000610381868287016101ff565b935050602084013567ffffffffffffffff8111156103a2576103a16101d6565b5b6103ae8682870161032c565b92505060406103bf868287016101ff565b9150509250925092565b6000602082840312156103df576103de6101d1565b5b60006103ed848285016101ff565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610430578082015181840152602081019050610415565b60008484015250505050565b6000610447826103f6565b6104518185610401565b9350610461818560208601610412565b61046a8161021e565b840191505092915050565b61047e816101db565b82525050565b6000604082019050818103600083015261049e818561043c565b90506104ad6020830184610475565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806104fb57607f821691505b60208210810361050e5761050d6104b4565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026105767fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610539565b6105808683610539565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006105c76105c26105bd84610598565b6105a2565b610598565b9050919050565b6000819050919050565b6105e1836105ac565b6105f56105ed826105ce565b848454610546565b825550505050565b600090565b61060a6105fd565b6106158184846105d8565b505050565b5b818110156106395761062e600082610602565b60018101905061061b565b5050565b601f82111561067e5761064f81610514565b61065884610529565b81016020851015610667578190505b61067b61067385610529565b83018261061a565b50505b505050565b600082821c905092915050565b60006106a160001984600802610683565b1980831691505092915050565b60006106ba8383610690565b9150826002028217905092915050565b6106d3826103f6565b67ffffffffffffffff8111156106ec576106eb61022f565b5b6106f682546104e3565b61070182828561063d565b600060209050601f8311600181146107345760008415610722578287015190505b61072c85826106ae565b865550610794565b601f19841661074286610514565b60005b8281101561076a57848901518255600182019150602085019450602081019050610745565b868310156107875784890151610783601f891682610690565b8355505b6001600288020188555050505b50505050505056fea26469706673582212207eb1638f2c589d24e28e69ba2046c7a668e6f5605f39f0acaad434cf7d70f0c564736f6c63430008110033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x7D2 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 0x36 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x15EF194E EQ PUSH2 0x3B JUMPI DUP1 PUSH4 0x174D39F6 EQ PUSH2 0x57 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x55 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x50 SWAP2 SWAP1 PUSH2 0x35A JUMP JUMPDEST PUSH2 0x88 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x71 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x6C SWAP2 SWAP1 PUSH2 0x3C9 JUMP JUMPDEST PUSH2 0xEA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x7F SWAP3 SWAP2 SWAP1 PUSH2 0x484 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST DUP2 PUSH1 0x0 DUP1 DUP6 PUSH1 0xFF AND PUSH1 0xFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 ADD SWAP1 DUP2 PUSH2 0xB0 SWAP2 SWAP1 PUSH2 0x6CA JUMP JUMPDEST POP DUP1 PUSH1 0x0 DUP1 DUP6 PUSH1 0xFF AND PUSH1 0xFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x1 ADD 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 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP1 PUSH1 0x0 DUP5 PUSH1 0xFF AND PUSH1 0xFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 ADD PUSH1 0x0 DUP1 DUP6 PUSH1 0xFF AND PUSH1 0xFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x1 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 DUP1 SLOAD PUSH2 0x13E SWAP1 PUSH2 0x4E3 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 0x16A SWAP1 PUSH2 0x4E3 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x1B7 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x18C JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x1B7 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 0x19A JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP2 POP SWAP2 POP SWAP2 POP SWAP2 POP SWAP2 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1F1 DUP2 PUSH2 0x1DB JUMP JUMPDEST DUP2 EQ PUSH2 0x1FC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x20E DUP2 PUSH2 0x1E8 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x267 DUP3 PUSH2 0x21E JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x286 JUMPI PUSH2 0x285 PUSH2 0x22F JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x299 PUSH2 0x1C7 JUMP JUMPDEST SWAP1 POP PUSH2 0x2A5 DUP3 DUP3 PUSH2 0x25E JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x2C5 JUMPI PUSH2 0x2C4 PUSH2 0x22F JUMP JUMPDEST JUMPDEST PUSH2 0x2CE DUP3 PUSH2 0x21E 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 0x2FD PUSH2 0x2F8 DUP5 PUSH2 0x2AA JUMP JUMPDEST PUSH2 0x28F JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x319 JUMPI PUSH2 0x318 PUSH2 0x219 JUMP JUMPDEST JUMPDEST PUSH2 0x324 DUP5 DUP3 DUP6 PUSH2 0x2DB JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x341 JUMPI PUSH2 0x340 PUSH2 0x214 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x351 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x2EA JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x373 JUMPI PUSH2 0x372 PUSH2 0x1D1 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x381 DUP7 DUP3 DUP8 ADD PUSH2 0x1FF JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x3A2 JUMPI PUSH2 0x3A1 PUSH2 0x1D6 JUMP JUMPDEST JUMPDEST PUSH2 0x3AE DUP7 DUP3 DUP8 ADD PUSH2 0x32C JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x3BF DUP7 DUP3 DUP8 ADD PUSH2 0x1FF JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3DF JUMPI PUSH2 0x3DE PUSH2 0x1D1 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x3ED DUP5 DUP3 DUP6 ADD PUSH2 0x1FF 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 0x430 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x415 JUMP JUMPDEST PUSH1 0x0 DUP5 DUP5 ADD MSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x447 DUP3 PUSH2 0x3F6 JUMP JUMPDEST PUSH2 0x451 DUP2 DUP6 PUSH2 0x401 JUMP JUMPDEST SWAP4 POP PUSH2 0x461 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x412 JUMP JUMPDEST PUSH2 0x46A DUP2 PUSH2 0x21E JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x47E DUP2 PUSH2 0x1DB JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x49E DUP2 DUP6 PUSH2 0x43C JUMP JUMPDEST SWAP1 POP PUSH2 0x4AD PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x475 JUMP JUMPDEST SWAP4 SWAP3 POP 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 0x4FB JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x50E JUMPI PUSH2 0x50D PUSH2 0x4B4 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP DUP2 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 PUSH1 0x1F DUP4 ADD DIV SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 SHL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x8 DUP4 MUL PUSH2 0x576 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 PUSH2 0x539 JUMP JUMPDEST PUSH2 0x580 DUP7 DUP4 PUSH2 0x539 JUMP JUMPDEST SWAP6 POP DUP1 NOT DUP5 AND SWAP4 POP DUP1 DUP7 AND DUP5 OR SWAP3 POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x5C7 PUSH2 0x5C2 PUSH2 0x5BD DUP5 PUSH2 0x598 JUMP JUMPDEST PUSH2 0x5A2 JUMP JUMPDEST PUSH2 0x598 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x5E1 DUP4 PUSH2 0x5AC JUMP JUMPDEST PUSH2 0x5F5 PUSH2 0x5ED DUP3 PUSH2 0x5CE JUMP JUMPDEST DUP5 DUP5 SLOAD PUSH2 0x546 JUMP JUMPDEST DUP3 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 SWAP1 JUMP JUMPDEST PUSH2 0x60A PUSH2 0x5FD JUMP JUMPDEST PUSH2 0x615 DUP2 DUP5 DUP5 PUSH2 0x5D8 JUMP JUMPDEST POP POP POP JUMP JUMPDEST JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x639 JUMPI PUSH2 0x62E PUSH1 0x0 DUP3 PUSH2 0x602 JUMP JUMPDEST PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x61B JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH2 0x67E JUMPI PUSH2 0x64F DUP2 PUSH2 0x514 JUMP JUMPDEST PUSH2 0x658 DUP5 PUSH2 0x529 JUMP JUMPDEST DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH2 0x667 JUMPI DUP2 SWAP1 POP JUMPDEST PUSH2 0x67B PUSH2 0x673 DUP6 PUSH2 0x529 JUMP JUMPDEST DUP4 ADD DUP3 PUSH2 0x61A JUMP JUMPDEST POP POP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 SHR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x6A1 PUSH1 0x0 NOT DUP5 PUSH1 0x8 MUL PUSH2 0x683 JUMP JUMPDEST NOT DUP1 DUP4 AND SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x6BA DUP4 DUP4 PUSH2 0x690 JUMP JUMPDEST SWAP2 POP DUP3 PUSH1 0x2 MUL DUP3 OR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x6D3 DUP3 PUSH2 0x3F6 JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x6EC JUMPI PUSH2 0x6EB PUSH2 0x22F JUMP JUMPDEST JUMPDEST PUSH2 0x6F6 DUP3 SLOAD PUSH2 0x4E3 JUMP JUMPDEST PUSH2 0x701 DUP3 DUP3 DUP6 PUSH2 0x63D JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 SWAP1 POP PUSH1 0x1F DUP4 GT PUSH1 0x1 DUP2 EQ PUSH2 0x734 JUMPI PUSH1 0x0 DUP5 ISZERO PUSH2 0x722 JUMPI DUP3 DUP8 ADD MLOAD SWAP1 POP JUMPDEST PUSH2 0x72C DUP6 DUP3 PUSH2 0x6AE JUMP JUMPDEST DUP7 SSTORE POP PUSH2 0x794 JUMP JUMPDEST PUSH1 0x1F NOT DUP5 AND PUSH2 0x742 DUP7 PUSH2 0x514 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x76A JUMPI DUP5 DUP10 ADD MLOAD DUP3 SSTORE PUSH1 0x1 DUP3 ADD SWAP2 POP PUSH1 0x20 DUP6 ADD SWAP5 POP PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x745 JUMP JUMPDEST DUP7 DUP4 LT ISZERO PUSH2 0x787 JUMPI DUP5 DUP10 ADD MLOAD PUSH2 0x783 PUSH1 0x1F DUP10 AND DUP3 PUSH2 0x690 JUMP JUMPDEST DUP4 SSTORE POP JUMPDEST PUSH1 0x1 PUSH1 0x2 DUP9 MUL ADD DUP9 SSTORE POP POP POP JUMPDEST POP POP POP POP POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH31 0xB1638F2C589D24E28E69BA2046C7A668E6F5605F39F0ACAAD434CF7D70F0C5 PUSH5 0x736F6C6343 STOP ADDMOD GT STOP CALLER ",
"sourceMap": "58:510:0:-:0;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@getLearner_55": {
"entryPoint": 234,
"id": 55,
"parameterSlots": 1,
"returnSlots": 2
},
"@setLearner_35": {
"entryPoint": 136,
"id": 35,
"parameterSlots": 3,
"returnSlots": 0
},
"abi_decode_available_length_t_string_memory_ptr": {
"entryPoint": 746,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_t_string_memory_ptr": {
"entryPoint": 812,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint8": {
"entryPoint": 511,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint8": {
"entryPoint": 969,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint8t_string_memory_ptrt_uint8": {
"entryPoint": 858,
"id": null,
"parameterSlots": 2,
"returnSlots": 3
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 1084,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_uint8_to_t_uint8_fromStack": {
"entryPoint": 1141,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_string_memory_ptr_t_uint8__to_t_string_memory_ptr_t_uint8__fromStack_reversed": {
"entryPoint": 1156,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"allocate_memory": {
"entryPoint": 655,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": 455,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_allocation_size_t_string_memory_ptr": {
"entryPoint": 682,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_dataslot_t_string_storage": {
"entryPoint": 1300,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 1014,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 1025,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"clean_up_bytearray_end_slots_t_string_storage": {
"entryPoint": 1597,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"cleanup_t_uint256": {
"entryPoint": 1432,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint8": {
"entryPoint": 475,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"clear_storage_range_t_bytes1": {
"entryPoint": 1562,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"convert_t_uint256_to_t_uint256": {
"entryPoint": 1452,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage": {
"entryPoint": 1738,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"copy_calldata_to_memory_with_cleanup": {
"entryPoint": 731,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"copy_memory_to_memory_with_cleanup": {
"entryPoint": 1042,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"divide_by_32_ceil": {
"entryPoint": 1321,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_byte_array_length": {
"entryPoint": 1251,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_used_part_and_set_length_of_short_byte_array": {
"entryPoint": 1710,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"finalize_allocation": {
"entryPoint": 606,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"identity": {
"entryPoint": 1442,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"mask_bytes_dynamic": {
"entryPoint": 1680,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"panic_error_0x22": {
"entryPoint": 1204,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 559,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"prepare_store_t_uint256": {
"entryPoint": 1486,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": {
"entryPoint": 532,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": {
"entryPoint": 537,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": 470,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 465,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 542,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"shift_left_dynamic": {
"entryPoint": 1337,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"shift_right_unsigned_dynamic": {
"entryPoint": 1667,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"storage_set_to_zero_t_uint256": {
"entryPoint": 1538,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"update_byte_slice_dynamic32": {
"entryPoint": 1350,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"update_storage_value_t_uint256_to_t_uint256": {
"entryPoint": 1496,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"validator_revert_t_uint8": {
"entryPoint": 488,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"zero_value_for_split_t_uint256": {
"entryPoint": 1533,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:10425: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": "377:43:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "387:27:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "402:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "409:4:1",
"type": "",
"value": "0xff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "398:3:1"
},
"nodeType": "YulFunctionCall",
"src": "398:16:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "387:7:1"
}
]
}
]
},
"name": "cleanup_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "359:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "369:7:1",
"type": ""
}
],
"src": "334:86:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "467:77:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "522:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "531:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "534:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "524:6:1"
},
"nodeType": "YulFunctionCall",
"src": "524:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "524:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "490:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "513:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint8",
"nodeType": "YulIdentifier",
"src": "497:15:1"
},
"nodeType": "YulFunctionCall",
"src": "497:22:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "487:2:1"
},
"nodeType": "YulFunctionCall",
"src": "487:33:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "480:6:1"
},
"nodeType": "YulFunctionCall",
"src": "480:41:1"
},
"nodeType": "YulIf",
"src": "477:61:1"
}
]
},
"name": "validator_revert_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "460:5:1",
"type": ""
}
],
"src": "426:118:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "600:85:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "610:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "632:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "619:12:1"
},
"nodeType": "YulFunctionCall",
"src": "619:20:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "610:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "673:5:1"
}
],
"functionName": {
"name": "validator_revert_t_uint8",
"nodeType": "YulIdentifier",
"src": "648:24:1"
},
"nodeType": "YulFunctionCall",
"src": "648:31:1"
},
"nodeType": "YulExpressionStatement",
"src": "648:31:1"
}
]
},
"name": "abi_decode_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "578:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "586:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "594:5:1",
"type": ""
}
],
"src": "550:135:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "780:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "797:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "800:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "790:6:1"
},
"nodeType": "YulFunctionCall",
"src": "790:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "790:12:1"
}
]
},
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulFunctionDefinition",
"src": "691:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "903:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "920:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "923:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "913:6:1"
},
"nodeType": "YulFunctionCall",
"src": "913:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "913:12:1"
}
]
},
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulFunctionDefinition",
"src": "814:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "985:54:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "995:38:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1013:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1020:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1009:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1009:14:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1029:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "1025:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1025:7:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1005:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1005:28:1"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "995:6:1"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "968:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "978:6:1",
"type": ""
}
],
"src": "937:102:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1073:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1090:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1093:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1083:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1083:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "1083:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1187:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1190:4:1",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1180:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1180:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "1180:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1211:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1214:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1204:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1204:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "1204:15:1"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "1045:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1274:238:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1284:58:1",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1306:6:1"
},
{
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1336:4:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "1314:21:1"
},
"nodeType": "YulFunctionCall",
"src": "1314:27:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1302:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1302:40:1"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "1288:10:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1453:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "1455:16:1"
},
"nodeType": "YulFunctionCall",
"src": "1455:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "1455:18:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "1396:10:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1408:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1393:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1393:34:1"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "1432:10:1"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1444:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "1429:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1429:22:1"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "1390:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1390:62:1"
},
"nodeType": "YulIf",
"src": "1387:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1491:2:1",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "1495:10:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1484:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1484:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "1484:22:1"
}
]
},
"name": "finalize_allocation",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "1260:6:1",
"type": ""
},
{
"name": "size",
"nodeType": "YulTypedName",
"src": "1268:4:1",
"type": ""
}
],
"src": "1231:281:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1559:88:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1569:30:1",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nodeType": "YulIdentifier",
"src": "1579:18:1"
},
"nodeType": "YulFunctionCall",
"src": "1579:20:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1569:6:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1628:6:1"
},
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1636:4:1"
}
],
"functionName": {
"name": "finalize_allocation",
"nodeType": "YulIdentifier",
"src": "1608:19:1"
},
"nodeType": "YulFunctionCall",
"src": "1608:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "1608:33:1"
}
]
},
"name": "allocate_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "1543:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "1552:6:1",
"type": ""
}
],
"src": "1518:129:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1720:241:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1825:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "1827:16:1"
},
"nodeType": "YulFunctionCall",
"src": "1827:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "1827:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1797:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1805:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1794:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1794:30:1"
},
"nodeType": "YulIf",
"src": "1791:56:1"
},
{
"nodeType": "YulAssignment",
"src": "1857:37:1",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1887:6:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "1865:21:1"
},
"nodeType": "YulFunctionCall",
"src": "1865:29:1"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1857:4:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1931:23:1",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1943:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1949:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1939:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1939:15:1"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1931:4:1"
}
]
}
]
},
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1704:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "1715:4:1",
"type": ""
}
],
"src": "1653:308:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2031:82:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "2054:3:1"
},
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "2059:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2064:6:1"
}
],
"functionName": {
"name": "calldatacopy",
"nodeType": "YulIdentifier",
"src": "2041:12:1"
},
"nodeType": "YulFunctionCall",
"src": "2041:30:1"
},
"nodeType": "YulExpressionStatement",
"src": "2041:30:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "2091:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2096:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2087:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2087:16:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2105:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2080:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2080:27:1"
},
"nodeType": "YulExpressionStatement",
"src": "2080:27:1"
}
]
},
"name": "copy_calldata_to_memory_with_cleanup",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "2013:3:1",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "2018:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2023:6:1",
"type": ""
}
],
"src": "1967:146:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2203:341:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2213:75:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2280:6:1"
}
],
"functionName": {
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2238:41:1"
},
"nodeType": "YulFunctionCall",
"src": "2238:49:1"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "2222:15:1"
},
"nodeType": "YulFunctionCall",
"src": "2222:66:1"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2213:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2304:5:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2311:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2297:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2297:21:1"
},
"nodeType": "YulExpressionStatement",
"src": "2297:21:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "2327:27:1",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2342:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2349:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2338:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2338:16:1"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "2331:3:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2392:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulIdentifier",
"src": "2394:77:1"
},
"nodeType": "YulFunctionCall",
"src": "2394:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "2394:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "2373:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2378:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2369:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2369:16:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2387:3:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2366:2:1"
},
"nodeType": "YulFunctionCall",
"src": "2366:25:1"
},
"nodeType": "YulIf",
"src": "2363:112:1"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "2521:3:1"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "2526:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2531:6:1"
}
],
"functionName": {
"name": "copy_calldata_to_memory_with_cleanup",
"nodeType": "YulIdentifier",
"src": "2484:36:1"
},
"nodeType": "YulFunctionCall",
"src": "2484:54:1"
},
"nodeType": "YulExpressionStatement",
"src": "2484:54:1"
}
]
},
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "2176:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2181:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2189:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "2197:5:1",
"type": ""
}
],
"src": "2119:425:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2626:278:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2675:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "2677:77:1"
},
"nodeType": "YulFunctionCall",
"src": "2677:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "2677:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2654:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2662:4:1",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2650:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2650:17:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2669:3:1"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2646:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2646:27:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2639:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2639:35:1"
},
"nodeType": "YulIf",
"src": "2636:122:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "2767:34:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2794:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2781:12:1"
},
"nodeType": "YulFunctionCall",
"src": "2781:20:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2771:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2810:88:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2871:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2879:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2867:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2867:17:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2886:6:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2894:3:1"
}
],
"functionName": {
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2819:47:1"
},
"nodeType": "YulFunctionCall",
"src": "2819:79:1"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2810:5:1"
}
]
}
]
},
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2604:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2612:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "2620:5:1",
"type": ""
}
],
"src": "2564:340:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3016:685:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3062:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "3064:77:1"
},
"nodeType": "YulFunctionCall",
"src": "3064:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "3064:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3037:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3046:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3033:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3033:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3058:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3029:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3029:32:1"
},
"nodeType": "YulIf",
"src": "3026:119:1"
},
{
"nodeType": "YulBlock",
"src": "3155:115:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3170:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3184:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3174:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3199:61:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3232:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3243:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3228:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3228:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3252:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint8",
"nodeType": "YulIdentifier",
"src": "3209:18:1"
},
"nodeType": "YulFunctionCall",
"src": "3209:51:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3199:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "3280:288:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3295:46:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3326:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3337:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3322:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3322:18:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "3309:12:1"
},
"nodeType": "YulFunctionCall",
"src": "3309:32:1"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3299:6:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3388:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "3390:77:1"
},
"nodeType": "YulFunctionCall",
"src": "3390:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "3390:79:1"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3360:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3368:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3357:2:1"
},
"nodeType": "YulFunctionCall",
"src": "3357:30:1"
},
"nodeType": "YulIf",
"src": "3354:117:1"
},
{
"nodeType": "YulAssignment",
"src": "3485:73:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3530:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3541:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3526:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3526:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3550:7:1"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "3495:30:1"
},
"nodeType": "YulFunctionCall",
"src": "3495:63:1"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "3485:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "3578:116:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3593:16:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3607:2:1",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3597:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3623:61:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3656:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3667:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3652:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3652:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3676:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint8",
"nodeType": "YulIdentifier",
"src": "3633:18:1"
},
"nodeType": "YulFunctionCall",
"src": "3633:51:1"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "3623:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint8t_string_memory_ptrt_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2970:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2981:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2993:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "3001:6:1",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "3009:6:1",
"type": ""
}
],
"src": "2910:791:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3771:261:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3817:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "3819:77:1"
},
"nodeType": "YulFunctionCall",
"src": "3819:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "3819:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3792:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3801:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3788:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3788:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3813:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3784:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3784:32:1"
},
"nodeType": "YulIf",
"src": "3781:119:1"
},
{
"nodeType": "YulBlock",
"src": "3910:115:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3925:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3939:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3929:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3954:61:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3987:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3998:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3983:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3983:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4007:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint8",
"nodeType": "YulIdentifier",
"src": "3964:18:1"
},
"nodeType": "YulFunctionCall",
"src": "3964:51:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3954:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3741:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3752:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3764:6:1",
"type": ""
}
],
"src": "3707:325:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4097:40:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4108:22:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4124:5:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "4118:5:1"
},
"nodeType": "YulFunctionCall",
"src": "4118:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4108:6:1"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4080:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4090:6:1",
"type": ""
}
],
"src": "4038:99:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4239:73:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4256:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4261:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4249:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4249:19:1"
},
"nodeType": "YulExpressionStatement",
"src": "4249:19:1"
},
{
"nodeType": "YulAssignment",
"src": "4277:29:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4296:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4301:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4292:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4292:14:1"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "4277:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4211:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4216:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "4227:11:1",
"type": ""
}
],
"src": "4143:169:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4380:184:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4390:10:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4399:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "4394:1:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4459:63:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "4484:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4489:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4480:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4480:11:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "4503:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4508:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4499:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4499:11:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "4493:5:1"
},
"nodeType": "YulFunctionCall",
"src": "4493:18:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4473:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4473:39:1"
},
"nodeType": "YulExpressionStatement",
"src": "4473:39:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4420:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4423:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "4417:2:1"
},
"nodeType": "YulFunctionCall",
"src": "4417:13:1"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "4431:19:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4433:15:1",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4442:1:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4445:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4438:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4438:10:1"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4433:1:1"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "4413:3:1",
"statements": []
},
"src": "4409:113:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "4542:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4547:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4538:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4538:16:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4556:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4531:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4531:27:1"
},
"nodeType": "YulExpressionStatement",
"src": "4531:27:1"
}
]
},
"name": "copy_memory_to_memory_with_cleanup",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "4362:3:1",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "4367:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4372:6:1",
"type": ""
}
],
"src": "4318:246:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4662:285:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4672:53:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4719:5:1"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "4686:32:1"
},
"nodeType": "YulFunctionCall",
"src": "4686:39:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4676:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4734:78:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4800:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4805:6:1"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "4741:58:1"
},
"nodeType": "YulFunctionCall",
"src": "4741:71:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4734:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4860:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4867:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4856:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4856:16:1"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4874:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4879:6:1"
}
],
"functionName": {
"name": "copy_memory_to_memory_with_cleanup",
"nodeType": "YulIdentifier",
"src": "4821:34:1"
},
"nodeType": "YulFunctionCall",
"src": "4821:65:1"
},
"nodeType": "YulExpressionStatement",
"src": "4821:65:1"
},
{
"nodeType": "YulAssignment",
"src": "4895:46:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4906:3:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4933:6:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "4911:21:1"
},
"nodeType": "YulFunctionCall",
"src": "4911:29:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4902:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4902:39:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "4895:3:1"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4643:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4650:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "4658:3:1",
"type": ""
}
],
"src": "4570:377:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5014:51:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5031:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5052:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint8",
"nodeType": "YulIdentifier",
"src": "5036:15:1"
},
"nodeType": "YulFunctionCall",
"src": "5036:22:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5024:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5024:35:1"
},
"nodeType": "YulExpressionStatement",
"src": "5024:35:1"
}
]
},
"name": "abi_encode_t_uint8_to_t_uint8_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5002:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5009:3:1",
"type": ""
}
],
"src": "4953:112:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5213:273:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5223:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5235:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5246:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5231:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5231:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5223:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5270:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5281:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5266:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5266:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5289:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5295:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5285:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5285:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5259:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5259:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "5259:47:1"
},
{
"nodeType": "YulAssignment",
"src": "5315:86:1",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5387:6:1"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5396:4:1"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "5323:63:1"
},
"nodeType": "YulFunctionCall",
"src": "5323:78:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5315:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "5451:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5464:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5475:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5460:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5460:18:1"
}
],
"functionName": {
"name": "abi_encode_t_uint8_to_t_uint8_fromStack",
"nodeType": "YulIdentifier",
"src": "5411:39:1"
},
"nodeType": "YulFunctionCall",
"src": "5411:68:1"
},
"nodeType": "YulExpressionStatement",
"src": "5411:68:1"
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr_t_uint8__to_t_string_memory_ptr_t_uint8__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5177:9:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "5189:6:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5197:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "5208:4:1",
"type": ""
}
],
"src": "5071:415:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5520:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5537:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5540:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5530:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5530:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "5530:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5634:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5637:4:1",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5627:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5627:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "5627:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5658:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5661:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5651:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5651:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "5651:15:1"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "5492:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5729:269:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5739:22:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "5753:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5759:1:1",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "5749:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5749:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5739:6:1"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "5770:38:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "5800:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5806:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5796:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5796:12:1"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "5774:18:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5847:51:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5861:27:1",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5875:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5883:4:1",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5871:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5871:17:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5861:6:1"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "5827:18:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "5820:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5820:26:1"
},
"nodeType": "YulIf",
"src": "5817:81:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5950:42:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "5964:16:1"
},
"nodeType": "YulFunctionCall",
"src": "5964:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "5964:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "5914:18:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5937:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5945:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "5934:2:1"
},
"nodeType": "YulFunctionCall",
"src": "5934:14:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "5911:2:1"
},
"nodeType": "YulFunctionCall",
"src": "5911:38:1"
},
"nodeType": "YulIf",
"src": "5908:84:1"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "5713:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5722:6:1",
"type": ""
}
],
"src": "5678:320:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6058:87:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6068:11:1",
"value": {
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "6076:3:1"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "6068:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6096:1:1",
"type": "",
"value": "0"
},
{
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "6099:3:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6089:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6089:14:1"
},
"nodeType": "YulExpressionStatement",
"src": "6089:14:1"
},
{
"nodeType": "YulAssignment",
"src": "6112:26:1",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6130:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6133:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "keccak256",
"nodeType": "YulIdentifier",
"src": "6120:9:1"
},
"nodeType": "YulFunctionCall",
"src": "6120:18:1"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "6112:4:1"
}
]
}
]
},
"name": "array_dataslot_t_string_storage",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "ptr",
"nodeType": "YulTypedName",
"src": "6045:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "6053:4:1",
"type": ""
}
],
"src": "6004:141:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6195:49:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6205:33:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6223:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6230:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6219:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6219:14:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6235:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "6215:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6215:23:1"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "6205:6:1"
}
]
}
]
},
"name": "divide_by_32_ceil",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6178:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "6188:6:1",
"type": ""
}
],
"src": "6151:93:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6303:54:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6313:37:1",
"value": {
"arguments": [
{
"name": "bits",
"nodeType": "YulIdentifier",
"src": "6338:4:1"
},
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6344:5:1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "6334:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6334:16:1"
},
"variableNames": [
{
"name": "newValue",
"nodeType": "YulIdentifier",
"src": "6313:8:1"
}
]
}
]
},
"name": "shift_left_dynamic",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "bits",
"nodeType": "YulTypedName",
"src": "6278:4:1",
"type": ""
},
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6284:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nodeType": "YulTypedName",
"src": "6294:8:1",
"type": ""
}
],
"src": "6250:107:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6439:317:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6449:35:1",
"value": {
"arguments": [
{
"name": "shiftBytes",
"nodeType": "YulIdentifier",
"src": "6470:10:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6482:1:1",
"type": "",
"value": "8"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "6466:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6466:18:1"
},
"variables": [
{
"name": "shiftBits",
"nodeType": "YulTypedName",
"src": "6453:9:1",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "6493:109:1",
"value": {
"arguments": [
{
"name": "shiftBits",
"nodeType": "YulIdentifier",
"src": "6524:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6535:66:1",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "shift_left_dynamic",
"nodeType": "YulIdentifier",
"src": "6505:18:1"
},
"nodeType": "YulFunctionCall",
"src": "6505:97:1"
},
"variables": [
{
"name": "mask",
"nodeType": "YulTypedName",
"src": "6497:4:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6611:51:1",
"value": {
"arguments": [
{
"name": "shiftBits",
"nodeType": "YulIdentifier",
"src": "6642:9:1"
},
{
"name": "toInsert",
"nodeType": "YulIdentifier",
"src": "6653:8:1"
}
],
"functionName": {
"name": "shift_left_dynamic",
"nodeType": "YulIdentifier",
"src": "6623:18:1"
},
"nodeType": "YulFunctionCall",
"src": "6623:39:1"
},
"variableNames": [
{
"name": "toInsert",
"nodeType": "YulIdentifier",
"src": "6611:8:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "6671:30:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6684:5:1"
},
{
"arguments": [
{
"name": "mask",
"nodeType": "YulIdentifier",
"src": "6695:4:1"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "6691:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6691:9:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "6680:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6680:21:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6671:5:1"
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.)

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.)

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.)

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.)

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.)

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.)

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.)

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.)

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.)

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.)

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.)

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.)

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.)

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.)

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